vi.xml 318 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881
  1. <?xml version="1.0" encoding="utf-8" standalone="yes"?>
  2. <Localization language="Vietnamese" description="Vietnamese" cultureName="vi">
  3. <A_WebViewer>
  4. <AbbreviatedDayFriday>6</AbbreviatedDayFriday>
  5. <AbbreviatedDayMonday>2</AbbreviatedDayMonday>
  6. <AbbreviatedDaySaturday>7</AbbreviatedDaySaturday>
  7. <AbbreviatedDaySunday>CN</AbbreviatedDaySunday>
  8. <AbbreviatedDayThursday>5</AbbreviatedDayThursday>
  9. <AbbreviatedDayTuesday>3</AbbreviatedDayTuesday>
  10. <AbbreviatedDayWednesday>4</AbbreviatedDayWednesday>
  11. <Attachment>Tệp tin đính kèm:</Attachment>
  12. <ButtonNext>Tiếp</ButtonNext>
  13. <ButtonPrev>Trước</ButtonPrev>
  14. <ButtonSend>Gửi</ButtonSend>
  15. <CategoryAlreadyExists>Danh mục với tên đó đã tồn tại!</CategoryAlreadyExists>
  16. <DayFriday>Thứ 6</DayFriday>
  17. <DayMonday>Thứ 2</DayMonday>
  18. <DaySaturday>Thứ 7</DaySaturday>
  19. <DaySunday>Chủ Nhật</DaySunday>
  20. <DayThursday>Thứ 5</DayThursday>
  21. <DayTuesday>Thứ 3</DayTuesday>
  22. <DayWednesday>Thứ 4</DayWednesday>
  23. <Email>Thư điện tử:</Email>
  24. <EmailOptions>Tùy chọn thư điện tử</EmailOptions>
  25. <FirstPage>Trang đầu tiên</FirstPage>
  26. <Hours>Giờ</Hours>
  27. <LabelFrom>Từ:</LabelFrom>
  28. <LabelSelectExportFormat>Chọn định dạng mà bạn muốn lưu báo cáo:</LabelSelectExportFormat>
  29. <LabelTo>Đến:</LabelTo>
  30. <LastPage>Trang cuối</LastPage>
  31. <Loading>Đang tải...</Loading>
  32. <Message>Thông điệp:</Message>
  33. <Minutes>Phút</Minutes>
  34. <MonthApril>Tháng 4</MonthApril>
  35. <MonthAugust>Tháng 8</MonthAugust>
  36. <MonthDecember>Tháng 12</MonthDecember>
  37. <MonthFebruary>Tháng 2</MonthFebruary>
  38. <MonthJanuary>Tháng 1</MonthJanuary>
  39. <MonthJuly>Tháng 7</MonthJuly>
  40. <MonthJune>Tháng 6</MonthJune>
  41. <MonthMarch>Tháng 3</MonthMarch>
  42. <MonthMay>Tháng 5</MonthMay>
  43. <MonthNovember>Tháng 11</MonthNovember>
  44. <MonthOctober>Tháng 10</MonthOctober>
  45. <MonthSeptember>Tháng 9</MonthSeptember>
  46. <NextPage>Trang tiếp theo</NextPage>
  47. <OnePage>Từng trang</OnePage>
  48. <Page>Trang</Page>
  49. <PageOf>của</PageOf>
  50. <PreviousPage>Trang trước</PreviousPage>
  51. <PrintContinue>Nhấp vào In để tiếp tục</PrintContinue>
  52. <PrintReport>In</PrintReport>
  53. <PrintToPdf>PDF</PrintToPdf>
  54. <PrintToXps>In dạng XPS</PrintToXps>
  55. <PrintWithoutPreview>In không xem trước</PrintWithoutPreview>
  56. <PrintWithPreview>In có xem trước</PrintWithPreview>
  57. <SaveReport>Xuất</SaveReport>
  58. <Subject>Tiêu đề:</Subject>
  59. <TabItemContacts>Liên hệ</TabItemContacts>
  60. <TextComputer>Máy tính</TextComputer>
  61. <TextItemsRoot>Gốc</TextItemsRoot>
  62. <TodayDate>Hôm nay</TodayDate>
  63. <WholeReport>Toàn bộ báo cáo</WholeReport>
  64. </A_WebViewer>
  65. <Adapters>
  66. <AdapterBusinessObjects>Dữ liệu từ đối tượng công việc</AdapterBusinessObjects>
  67. <AdapterConnection>Dữ liệu từ {0}</AdapterConnection>
  68. <AdapterCrossTabDataSource>Dữ liệu từ Tab chéo</AdapterCrossTabDataSource>
  69. <AdapterCsvFiles>Dữ liệu từ tệp CSV</AdapterCsvFiles>
  70. <AdapterDataTables>Dữ liệu từ DataSet, DataTables</AdapterDataTables>
  71. <AdapterDataViews>Dữ liệu từ DataViews</AdapterDataViews>
  72. <AdapterDB2Connection>Dữ liệu từ kết nối IBM DB2</AdapterDB2Connection>
  73. <AdapterDBaseFiles>Dữ liệu từ tệp dBase</AdapterDBaseFiles>
  74. <AdapterFirebirdConnection>Dữ liệu từ kết nối Firebird</AdapterFirebirdConnection>
  75. <AdapterInformixConnection>Dữ liệu từ kết nối Informix</AdapterInformixConnection>
  76. <AdapterMySQLConnection>Dữ liệu từ kết nối MySQL</AdapterMySQLConnection>
  77. <AdapterOdbcConnection>Dữ liệu từ kết nối ODBC</AdapterOdbcConnection>
  78. <AdapterOleDbConnection>Dữ liệu từ kết nối OLE DB</AdapterOleDbConnection>
  79. <AdapterOracleConnection>Dữ liệu từ kết nối Oracle</AdapterOracleConnection>
  80. <AdapterOracleODPConnection>Dữ liệu từ kết nối Oracle ODP.NET</AdapterOracleODPConnection>
  81. <AdapterPostgreSQLConnection>Dữ liệu từ kết nối PostgreSQL</AdapterPostgreSQLConnection>
  82. <AdapterSqlCeConnection>Dữ liệu từ kết nối SQL CE</AdapterSqlCeConnection>
  83. <AdapterSqlConnection>Dữ liệu từ kết nối SQL</AdapterSqlConnection>
  84. <AdapterSQLiteConnection>Dữ liệu từ kết nối SQLite</AdapterSQLiteConnection>
  85. <AdapterTeradataConnection>Dữ liệu từ kết nối Teradata</AdapterTeradataConnection>
  86. <AdapterUniDirectConnection>Dữ liệu từ kết nối Uni Direct</AdapterUniDirectConnection>
  87. <AdapterUserSources>Dữ liệu từ nguồn người dùng</AdapterUserSources>
  88. <AdapterVirtualSource>Dữ liệu từ nguồn dữ liệu khác</AdapterVirtualSource>
  89. <AdapterVistaDBConnection>Dữ liệu từ kết nối VistaDB</AdapterVistaDBConnection>
  90. </Adapters>
  91. <BarCode>
  92. <Post>Công bố</Post>
  93. <TwoDimensional>Hai chiều</TwoDimensional>
  94. </BarCode>
  95. <Buttons>
  96. <Add>Thêm</Add>
  97. <AddAllColumns>Thêm tất cả các cột</AddAllColumns>
  98. <Attach>Đính kèm</Attach>
  99. <Build>Tạo...</Build>
  100. <Buttons>Các nút</Buttons>
  101. <Cancel>Hủy</Cancel>
  102. <Check>Kiểm tra</Check>
  103. <Close>Đóng</Close>
  104. <Delete>Xóa</Delete>
  105. <Design>Thiết kế</Design>
  106. <Down>Xuống</Down>
  107. <Duplicate>Bản sao</Duplicate>
  108. <Export>Xuất</Export>
  109. <ForceDelete>Bắt buộc xóa</ForceDelete>
  110. <Help>Trợ giúp</Help>
  111. <Install>Cài đặt</Install>
  112. <LessOptions>Ít tùy chọn</LessOptions>
  113. <LoadDataSet>Tải bộ dữ liệu (*.data)</LoadDataSet>
  114. <More>Thêm</More>
  115. <MoreApps>Thêm nhiều ứng dụng</MoreApps>
  116. <MoreOptions>Nhiều tùy chọn</MoreOptions>
  117. <MoveLeft>Di chuyển sang trái</MoveLeft>
  118. <MoveRight>Di chuyển sang phải</MoveRight>
  119. <MoveToResource>Di chuyển đến tài nguyên</MoveToResource>
  120. <No>Không</No>
  121. <Ok>Đồng ý</Ok>
  122. <Open>Mở</Open>
  123. <Print>In</Print>
  124. <Publish>Xuất bản</Publish>
  125. <QuickPrint>In nhanh</QuickPrint>
  126. <Remove>Loại bỏ</Remove>
  127. <RemoveAll>Loại bỏ hết</RemoveAll>
  128. <Rename>Đổi tên</Rename>
  129. <RestoreDefaults>Khôi phục mặc định</RestoreDefaults>
  130. <Reverse>Đảo ngược</Reverse>
  131. <Save>Lưu</Save>
  132. <SaveCopy>Lưu bản sao</SaveCopy>
  133. <SetAll>Chọn tất cả</SetAll>
  134. <ShowLess>Hiện ít hơn</ShowLess>
  135. <ShowMore>Hiển thị nhiều hơn</ShowMore>
  136. <ShowSpecific>Hiển thị '{0}'</ShowSpecific>
  137. <Submit>Gửi đi</Submit>
  138. <Test>Kiểm tra</Test>
  139. <Up>Lên</Up>
  140. <Upgrade>Nâng cấp</Upgrade>
  141. <UpgradeNow>Nâng cấp ngay bây giờ</UpgradeNow>
  142. <Upload>Tải lên</Upload>
  143. <Waiting>Đang chờ đợi</Waiting>
  144. <Yes>Có</Yes>
  145. </Buttons>
  146. <Chart>
  147. <AddCondition>Thêm điều kiện</AddCondition>
  148. <AddConstantLine>Thêm dòng cố định</AddConstantLine>
  149. <AddFilter>Thêm bộ lọc</AddFilter>
  150. <AddSeries>Thêm dòng</AddSeries>
  151. <AddStrip>Thêm dải</AddStrip>
  152. <AddTrendLine>Thêm đường xu hướng</AddTrendLine>
  153. <Area>Vùng</Area>
  154. <Axes>Trục</Axes>
  155. <AxisReverse>Đảo ngược</AxisReverse>
  156. <AxisX>Trục X</AxisX>
  157. <AxisY>Trục Y</AxisY>
  158. <BoxAndWhisker>Biểu đồ hộp</BoxAndWhisker>
  159. <Bubble>Bong bóng</Bubble>
  160. <Candlestick>Nến</Candlestick>
  161. <ChartConditionsCollectionForm>Điều kiện</ChartConditionsCollectionForm>
  162. <ChartEditorForm>Trình chỉnh sửa biểu đồ</ChartEditorForm>
  163. <ChartFiltersCollectionForm>Bộ lọc</ChartFiltersCollectionForm>
  164. <ChartType>Loại biểu đồ</ChartType>
  165. <CheckBoxAutoRotation>Xoay tự động</CheckBoxAutoRotation>
  166. <ClusteredBar>Thanh</ClusteredBar>
  167. <ClusteredColumn>Cột</ClusteredColumn>
  168. <Common>Phổ biến</Common>
  169. <ConstantLine>Đường cố định</ConstantLine>
  170. <ConstantLinesEditorForm>Trình biên soạn đường cố định</ConstantLinesEditorForm>
  171. <DataColumns>Cột dữ liệu</DataColumns>
  172. <Doughnut>Biểu đồ vành khuyên bị cắt</Doughnut>
  173. <Financial>Tài chính</Financial>
  174. <FullStackedArea>Vùng chồng dữ liệu</FullStackedArea>
  175. <FullStackedBar>Thanh ngang chồng dữ liệu</FullStackedBar>
  176. <FullStackedColumn>Cột chồng dữ liệu</FullStackedColumn>
  177. <FullStackedLine>Dòng chồng dữ liệu</FullStackedLine>
  178. <FullStackedSpline>Lưỡi gà chồng dữ liệu</FullStackedSpline>
  179. <FullStackedSplineArea>Vùng lưỡi gà chồng dữ liệu</FullStackedSplineArea>
  180. <Funnel>Phễu</Funnel>
  181. <FunnelWeightedSlices>Phễu lát trọng số</FunnelWeightedSlices>
  182. <Gantt>Gantt</Gantt>
  183. <GridInterlaced>Chéo nhau</GridInterlaced>
  184. <GridLines>Đường lưới</GridLines>
  185. <Histogram>Biểu đồ</Histogram>
  186. <LabelAlignment>Căn chỉnh:</LabelAlignment>
  187. <LabelAlignmentHorizontal>Ngang:</LabelAlignmentHorizontal>
  188. <LabelAlignmentVertical>Dọc:</LabelAlignmentVertical>
  189. <LabelAngle>Góc:</LabelAngle>
  190. <LabelArgumentDataColumn>Cột dữ liệu đối số:</LabelArgumentDataColumn>
  191. <LabelAutoRotation>Tự động xoay:</LabelAutoRotation>
  192. <LabelCloseValueDataColumn>Cột dữ liệu giá trị đóng:</LabelCloseValueDataColumn>
  193. <LabelEndValueDataColumn>Cột dữ liệu giá trị cuối:</LabelEndValueDataColumn>
  194. <LabelHighValueDataColumn>Cột dữ liệu giá trị cao:</LabelHighValueDataColumn>
  195. <LabelHorizontal>Ngang:</LabelHorizontal>
  196. <LabelLowValueDataColumn>Cột dữ liệu giá trị thấp:</LabelLowValueDataColumn>
  197. <LabelMinorCount>Số lượng phụ:</LabelMinorCount>
  198. <LabelOpenValueDataColumn>Cột dữ liệu giá trị mở:</LabelOpenValueDataColumn>
  199. <Labels>Nhãn</Labels>
  200. <LabelsCenter>Giữa</LabelsCenter>
  201. <LabelSeriesName>Tên dòng:</LabelSeriesName>
  202. <LabelsInside>Bên trong</LabelsInside>
  203. <LabelsInsideBase>Dựa vào bên trong</LabelsInsideBase>
  204. <LabelsInsideEnd>Kết thúc bên trong</LabelsInsideEnd>
  205. <LabelsNone>Không</LabelsNone>
  206. <LabelsOutside>Bên ngoài</LabelsOutside>
  207. <LabelsOutsideBase>Dựa vào bên ngoài</LabelsOutsideBase>
  208. <LabelsOutsideEnd>Kết thúc bên ngoài</LabelsOutsideEnd>
  209. <LabelsStyleCategory>Danh mục</LabelsStyleCategory>
  210. <LabelsStyleCategoryPercentOfTotal>Danh mục - Phần trăm của tổng số</LabelsStyleCategoryPercentOfTotal>
  211. <LabelsStyleCategoryValue>Danh mục - Giá trị</LabelsStyleCategoryValue>
  212. <LabelsStylePercentOfTotal>Phần trăm của tổng số</LabelsStylePercentOfTotal>
  213. <LabelsStyleValue>Giá trị</LabelsStyleValue>
  214. <LabelsTwoColumns>Hai cột</LabelsTwoColumns>
  215. <LabelTextAfter>Văn bản sau:</LabelTextAfter>
  216. <LabelTextBefore>Văn bản trước:</LabelTextBefore>
  217. <LabelTitleAlignment>Căn chỉnh:</LabelTitleAlignment>
  218. <LabelValueDataColumn>Cột dữ liệu giá trị:</LabelValueDataColumn>
  219. <LabelValueType>Loại giá trị:</LabelValueType>
  220. <LabelVertical>Dọc:</LabelVertical>
  221. <LabelVisible>Có thể nhìn thấy:</LabelVisible>
  222. <Legend>Chú thích</Legend>
  223. <LegendSpacing>Khoảng cách</LegendSpacing>
  224. <Line>Đường thẳng</Line>
  225. <ListOfValues>Danh sách giá trị</ListOfValues>
  226. <Marker>Đánh dấu</Marker>
  227. <MoveConstantLineDown>Di chuyển đường cố định xuống</MoveConstantLineDown>
  228. <MoveConstantLineUp>Di chuyển đường cố định lên</MoveConstantLineUp>
  229. <MoveSeriesDown>Di chuyển dòng xuống</MoveSeriesDown>
  230. <MoveSeriesUp>Di chuyển dòng lên</MoveSeriesUp>
  231. <MoveStripDown>Di chuyển dải xuống</MoveStripDown>
  232. <MoveStripUp>Di chuyển dải lên</MoveStripUp>
  233. <NoConditions>Không điều kiện</NoConditions>
  234. <NoFilters>Không có bộ lọc</NoFilters>
  235. <Pareto>Pareto</Pareto>
  236. <Pictorial>Hình ảnh</Pictorial>
  237. <Pie>Hình tròn</Pie>
  238. <Radar>Mạng nhện</Radar>
  239. <RadarArea>Mạng nhện vùng</RadarArea>
  240. <RadarColumn>Mạng nhện cột</RadarColumn>
  241. <RadarLine>Mạng nhện đường</RadarLine>
  242. <RadarPoint>Mạng nhện điểm</RadarPoint>
  243. <Range>Phạm vi</Range>
  244. <RangeBar>Thanh phạm vi</RangeBar>
  245. <RemoveCondition>Xóa điều kiện</RemoveCondition>
  246. <RemoveConstantLine>Xóa dòng cố định</RemoveConstantLine>
  247. <RemoveFilter>Xóa bộ lọc</RemoveFilter>
  248. <RemoveSeries>Xóa dòng</RemoveSeries>
  249. <RemoveStrip>Xóa dải</RemoveStrip>
  250. <RunChartWizard>Chạy thuật sĩ biểu đồ</RunChartWizard>
  251. <Scatter>Phân tán</Scatter>
  252. <ScatterLine>Đường phân tán</ScatterLine>
  253. <ScatterSpline>Lưỡi gà phân tán</ScatterSpline>
  254. <Series>Dòng</Series>
  255. <SeriesColorsCollectionForm>Màu dòng</SeriesColorsCollectionForm>
  256. <SeriesEditorForm>Trình chỉnh sửa dòng</SeriesEditorForm>
  257. <Serieses>Dòng</Serieses>
  258. <SparklinesArea>Vùng</SparklinesArea>
  259. <SparklinesColumn>Cột</SparklinesColumn>
  260. <SparklinesLine>Đường</SparklinesLine>
  261. <SparklinesWinLoss>Thắng / Thua</SparklinesWinLoss>
  262. <Spline>Lưỡi gà</Spline>
  263. <SplineArea>Vùng lưỡi gà</SplineArea>
  264. <SplineRange>Phạm vi lưỡi gà</SplineRange>
  265. <StackedArea>Vùng chồng dữ liệu</StackedArea>
  266. <StackedBar>Thanh ngang chồng dữ liệu</StackedBar>
  267. <StackedColumn>Cột chồng dữ liệu</StackedColumn>
  268. <StackedLine>Đường chồng dữ liệu</StackedLine>
  269. <StackedSpline>Lưỡi gà chồng dữ liệu</StackedSpline>
  270. <StackedSplineArea>Vùng lưỡi gà chồng dữ liệu</StackedSplineArea>
  271. <SteppedArea>Vùng chia bậc</SteppedArea>
  272. <SteppedLine>Đường chia bậc</SteppedLine>
  273. <SteppedRange>Phạm vi chia bậc</SteppedRange>
  274. <Stock>Chứng khoán</Stock>
  275. <Strip>Dải</Strip>
  276. <StripsEditorForm>Trình biên tập mẫu dải</StripsEditorForm>
  277. <Style>Phong cách</Style>
  278. <Sunburst>Biểu đồ Sunburst</Sunburst>
  279. <Treemap>Cây</Treemap>
  280. <TrendLinesEditorForm>Trình chỉnh sửa đường xu hướng</TrendLinesEditorForm>
  281. <Waterfall>Thác nước</Waterfall>
  282. </Chart>
  283. <CharterMapEditor>
  284. <Characters>Các ký tự</Characters>
  285. </CharterMapEditor>
  286. <ChartRibbon>
  287. <Axes>Trục</Axes>
  288. <AxesArrowStyle>Kiểu mũi tên</AxesArrowStyle>
  289. <AxesArrowStyleLines>Đường thẳng</AxesArrowStyleLines>
  290. <AxesArrowStyleNone>Không</AxesArrowStyleNone>
  291. <AxesArrowStyleTriangle>Tam giác</AxesArrowStyleTriangle>
  292. <AxesLabel>Sắp đặt nhãn</AxesLabel>
  293. <AxesLabelsNone>Không</AxesLabelsNone>
  294. <AxesLabelsOneLine>Một đường thẳng</AxesLabelsOneLine>
  295. <AxesLabelsTwoLines>Hai đường thẳng</AxesLabelsTwoLines>
  296. <AxesReverseHorizontal>Đảo ngược theo chiều ngang</AxesReverseHorizontal>
  297. <AxesReverseVertical>Đảo ngược theo chiều dọc</AxesReverseVertical>
  298. <AxesTicks>Đánh dấu</AxesTicks>
  299. <AxesTicksMajor>Chính</AxesTicksMajor>
  300. <AxesTicksMinor>Phụ</AxesTicksMinor>
  301. <AxesTicksNone>Không</AxesTicksNone>
  302. <AxesVisible>Có thể nhìn thấy</AxesVisible>
  303. <AxesXAxis>Trục X</AxesXAxis>
  304. <AxesXTopAxis>Trục X trên</AxesXTopAxis>
  305. <AxesYAxis>Trục Y</AxesYAxis>
  306. <AxesYRightAxis>Trục Y phải</AxesYRightAxis>
  307. <CenterLabels>Giữa</CenterLabels>
  308. <ChangeType>Thay đổi loại</ChangeType>
  309. <GridLines>Đường lưới</GridLines>
  310. <GridLinesHorizontal>Đường lưới ngang</GridLinesHorizontal>
  311. <GridLinesVertical>Đường lưới dọc</GridLinesVertical>
  312. <HorAlCenter>&lt;b&gt;Chú thích đè lên giữa&lt;/b&gt;&lt;br&gt;Hiển thị chú thích ở giữa biểu đồ&lt;/br&gt;&lt;br&gt;mà không thay đổi kích cỡ&lt;/br&gt;</HorAlCenter>
  313. <HorAlLeft>&lt;b&gt;Chú thích đè bên trái&lt;/b&gt;&lt;br&gt;Hiển thị chú thích ở bên trái biểu đồ&lt;/br&gt;&lt;br&gt;mà không thay đổi kích cỡ&lt;/br&gt;</HorAlLeft>
  314. <HorAlLeftOutside>&lt;b&gt;Hiển thị chú thích ở bên trái&lt;/b&gt;&lt;br&gt;Hiển thị chú thích và căn trái&lt;/br&gt;</HorAlLeftOutside>
  315. <HorAlRight>&lt;b&gt;Chú thích đè bên phải&lt;/b&gt;&lt;br&gt;Hiển thị chú thích ở bên phải biểu đồ&lt;/br&gt;&lt;br&gt;mà không thay đổi kích cỡ&lt;/br&gt;</HorAlRight>
  316. <HorAlRightOutside>&lt;b&gt;Hiển thị chú thích ở bên phải&lt;/b&gt;&lt;br&gt;Hiển thị chú thích và căn phải&lt;/br&gt;</HorAlRightOutside>
  317. <HorizontalMajor>&lt;b&gt;Chính&lt;/b&gt;&lt;br&gt;Hiển thị đường lưới ngang cho các đơn vị chính&lt;/br&gt;</HorizontalMajor>
  318. <HorizontalMajorMinor>&lt;b&gt;Chính &amp;&amp; Các đường kẻ phụ&lt;/b&gt;&lt;br&gt;Hiển thị đường lưới ngang cho các đơn vị chính và phụ&lt;/br&gt;</HorizontalMajorMinor>
  319. <HorizontalMinor>&lt;b&gt;Phụ&lt;/b&gt;&lt;br&gt;Hiển thị đường lưới ngang cho các đơn vị phụ&lt;/br&gt;</HorizontalMinor>
  320. <HorizontalNone>&lt;b&gt;Không&lt;/b&gt;&lt;br&gt;Không hiển thị đường lưới ngang&lt;/br&gt;</HorizontalNone>
  321. <InsideBaseLabels>Phụ thuộc bên trong</InsideBaseLabels>
  322. <InsideEndLabels>Kết thúc bên trong</InsideEndLabels>
  323. <Labels>Nhãn dòng</Labels>
  324. <Legend>Chú thích</Legend>
  325. <LegendHorizontalAlignment>Căn chỉnh ngang</LegendHorizontalAlignment>
  326. <LegendMarker>Đánh dấu</LegendMarker>
  327. <LegendMarkerAlignmentLeft>Trái</LegendMarkerAlignmentLeft>
  328. <LegendMarkerAlignmentRight>Phải</LegendMarkerAlignmentRight>
  329. <LegendMarkerVisible>Hiển thị</LegendMarkerVisible>
  330. <LegendVerticalAlignment>Căn chỉnh theo chiều dọc</LegendVerticalAlignment>
  331. <LegendVisible>Hiển thị</LegendVisible>
  332. <NoneLabels>Không</NoneLabels>
  333. <OutsideBaseLabels>Phụ thuộc bên ngoài</OutsideBaseLabels>
  334. <OutsideEndLabels>Kết thúc bên ngoài</OutsideEndLabels>
  335. <OutsideLabels>Bên ngoài</OutsideLabels>
  336. <ribbonBarAxis>Trục</ribbonBarAxis>
  337. <ribbonBarChartStyles>Kiểu biểu đồ</ribbonBarChartStyles>
  338. <ribbonBarChartType>Loại biểu đồ</ribbonBarChartType>
  339. <ribbonBarLabels>Nhãn</ribbonBarLabels>
  340. <ribbonBarLegend>Chú thích</ribbonBarLegend>
  341. <Style>Thay đổi kiểu dáng</Style>
  342. <TwoColumnsPieLabels>Hai cột</TwoColumnsPieLabels>
  343. <VertAlBottom>&lt;b&gt;Chú thích đè ở dưới&lt;/b&gt;&lt;br&gt;Hiển thị chú thích ở dưới biểu đồ&lt;/br&gt;&lt;br&gt;mà không thay đổi kích cỡ&lt;/br&gt;</VertAlBottom>
  344. <VertAlBottomOutside>&lt;b&gt;Hiển thị chú thích ở dưới&lt;/b&gt;&lt;br&gt;Hiển thị chú thích và căn dưới&lt;/br&gt;</VertAlBottomOutside>
  345. <VertAlCenter>&lt;b&gt;Chú thích đè lên giữa&lt;/b&gt;&lt;br&gt;Hiển thị chú thích ở giữa biểu đồ&lt;/br&gt;&lt;br&gt;mà không thay đổi kích cỡ&lt;/br&gt;</VertAlCenter>
  346. <VertAlTop>&lt;b&gt;Chú thích đè lên trái&lt;/b&gt;&lt;br&gt;Hiển thị chú thích ở trên biểu đồ&lt;/br&gt;&lt;br&gt;mà không thay đổi kích cỡ&lt;/br&gt;</VertAlTop>
  347. <VertAlTopOutside>&lt;b&gt;Hiển thị chí thích ở trên&lt;/b&gt;&lt;br&gt;Hiển thị chú thích và căn trên&lt;/br&gt;</VertAlTopOutside>
  348. <VerticalMajor>&lt;b&gt;Chính&lt;/b&gt;&lt;br&gt;Hiển thị đường lưới dọc cho các đơn vị chính&lt;/br&gt;</VerticalMajor>
  349. <VerticalMajorMinor>&lt;b&gt;Chính &amp;&amp; Đường lưới phụ&lt;/b&gt;&lt;br&gt;Hiển thị đường lưới dọc cho các đơn vị chính và phụ&lt;/br&gt;</VerticalMajorMinor>
  350. <VerticalMinor>&lt;b&gt;Phụ&lt;/b&gt;&lt;br&gt;Hiển thị đường lưới dọc cho các đơn vị phụ&lt;/br&gt;</VerticalMinor>
  351. <VerticalNone>&lt;b&gt;Không&lt;/b&gt;&lt;br&gt;Không hiển thị đường lưới dọc&lt;/br&gt;</VerticalNone>
  352. </ChartRibbon>
  353. <Cloud>
  354. <AcceptTermsAndPrivacyPolicy>Tôi đã đọc và chấp nhận {0} và {1}</AcceptTermsAndPrivacyPolicy>
  355. <Account>Tài khoản</Account>
  356. <AccountSettings>Cài đặt tài khoản</AccountSettings>
  357. <AddAPlace>Thêm địa điểm</AddAPlace>
  358. <AreYouSureYouWantDeleteReport>Bạn có chắc chắn muốn xóa báo cáo "{0}" khỏi đĩa không?</AreYouSureYouWantDeleteReport>
  359. <Authorize>Ủy quyền</Authorize>
  360. <AuthorizeWithLicenseKey>Ủy quyền với mã bản quyền</AuthorizeWithLicenseKey>
  361. <ButtonChangePassword>Đổi mật khẩu</ButtonChangePassword>
  362. <ButtonDeleteAll>Xóa tất cả</ButtonDeleteAll>
  363. <ButtonDesign>Thiết kế báo cáo</ButtonDesign>
  364. <ButtonLater>Sau</ButtonLater>
  365. <ButtonLogInWith>Đăng nhập với {0}</ButtonLogInWith>
  366. <ButtonLogout>Đăng xuất</ButtonLogout>
  367. <ButtonPublish>Xuất bản</ButtonPublish>
  368. <ButtonPurchase>Mua</ButtonPurchase>
  369. <ButtonRecover>Phục hồi</ButtonRecover>
  370. <ButtonRenew>Gia hạn</ButtonRenew>
  371. <ButtonResendEmail>Gửi lại thư điện tử</ButtonResendEmail>
  372. <ButtonResetPassword>Đặt lại mật khẩu</ButtonResetPassword>
  373. <ButtonRun>Chạy</ButtonRun>
  374. <ButtonShare>Chia sẻ</ButtonShare>
  375. <ButtonSignUp>Đăng ký</ButtonSignUp>
  376. <ButtonSignUpWith>Đăng ký với {0}</ButtonSignUpWith>
  377. <ButtonSkip>Bỏ qua</ButtonSkip>
  378. <ButtonView>Xem</ButtonView>
  379. <ButtonWhereUsed>Nơi sử dụng?</ButtonWhereUsed>
  380. <Cancel>Hủy</Cancel>
  381. <CheckBoxMoveToRecycleBin>Chuyển đến thùng rác</CheckBoxMoveToRecycleBin>
  382. <CheckBoxRememberMe>Nhớ lại</CheckBoxRememberMe>
  383. <CheckForUpdate>Kiểm tra cập nhật</CheckForUpdate>
  384. <Cloud>Đám mây</Cloud>
  385. <Collection>Bộ sưu tập</Collection>
  386. <Create>Tạo</Create>
  387. <CreateError>Lỗi khi tạo báo cáo!</CreateError>
  388. <CreateNewCollection>Tạo bộ sưu tập mới</CreateNewCollection>
  389. <CreatingReport>Đang tạo báo cáo...</CreatingReport>
  390. <DashboardWindowTitleNew>Bảng thông tin mới</DashboardWindowTitleNew>
  391. <DeleteFile>Xóa tệp</DeleteFile>
  392. <DoNotAskMe>Đừng hỏi tôi nữa</DoNotAskMe>
  393. <ExecutionError>Lỗi thực thi</ExecutionError>
  394. <ExpiredDate>Ngày hết hạn</ExpiredDate>
  395. <FileStorageWindowTitleEdit>Chỉnh sửa lưu trữ tệp</FileStorageWindowTitleEdit>
  396. <FileStorageWindowTitleNew>Tạo mới lưu trữ tệp</FileStorageWindowTitleNew>
  397. <FolderWindowTitleEdit>Chỉnh sửa thư mục</FolderWindowTitleEdit>
  398. <FolderWindowTitleNew>Tạo thư mục mới</FolderWindowTitleNew>
  399. <ForExample>Ví dụ</ForExample>
  400. <GroupBoxAttachedItems>Các mục đính kèm</GroupBoxAttachedItems>
  401. <HyperlinkAgreeToTerms>Bằng cách đăng ký bạn đồng ý với Điều khoản.</HyperlinkAgreeToTerms>
  402. <HyperlinkAlreadyHaveAccount>Đã có tài khoản</HyperlinkAlreadyHaveAccount>
  403. <HyperlinkForgotPassword>Quên mật khẩu</HyperlinkForgotPassword>
  404. <HyperlinkHavePassword>Có mật khẩu</HyperlinkHavePassword>
  405. <HyperlinkRegisterAccount>Đăng ký tài khoản MIỄN PHÍ</HyperlinkRegisterAccount>
  406. <InstallSamples>Cài đặt mẫu</InstallSamples>
  407. <LabelAddCloudFolder>Kết nối thư mục Đám mây Stimulsoft của bạn với các báo cáo và bảng điều khiển.</LabelAddCloudFolder>
  408. <LabelAddFolder>Thêm thư mục tại máy của bạn với các báo cáo và bảng điều khiển.</LabelAddFolder>
  409. <labelCollectionName>Tên bộ sưu tập:</labelCollectionName>
  410. <LabelCreated>Tạo:</LabelCreated>
  411. <LabelCreateFolder>Tạo một loại mới mà bạn có thể đặt các mục khác vào.</LabelCreateFolder>
  412. <LabelCreateNewDashboard>Tạo bảng điều khiển mới.</LabelCreateNewDashboard>
  413. <LabelCreateReportTemplate>Tạo mẫu báo cáo.</LabelCreateReportTemplate>
  414. <LabelCurrentPassword>Mật khẩu hiện tại:</LabelCurrentPassword>
  415. <LabelDataFile>Tệp dữ liệu:</LabelDataFile>
  416. <LabelDataUrl>URL dữ liệu:</LabelDataUrl>
  417. <LabelEndDate>Ngày cuối:</LabelEndDate>
  418. <labelFileName>Tên tệp:</labelFileName>
  419. <LabelForeground>Mặt trước:</LabelForeground>
  420. <LabelFromReport>Từ báo cáo</LabelFromReport>
  421. <LabelFromReportCode>Từ báo cáo (được định nghĩa trong mã)</LabelFromReportCode>
  422. <LabelLastLogin>Lần đăng nhập cuối:</LabelLastLogin>
  423. <LabelLastTime>Lần cuối cùng:</LabelLastTime>
  424. <LabelModified>Chỉnh sửa:</LabelModified>
  425. <LabelNewPassword>Mật khẩu mới:</LabelNewPassword>
  426. <LabelNextTime>Lần tới:</LabelNextTime>
  427. <labelPassword>Mật khẩu:</labelPassword>
  428. <LabelPermission>Quyền hạn:</LabelPermission>
  429. <LabelPicture>Hình ảnh:</LabelPicture>
  430. <LabelRenderedReport>Đã kết xuất báo cáo</LabelRenderedReport>
  431. <LabelResponseAsFile>Phản hồi dưới dạng tệp</LabelResponseAsFile>
  432. <LabelResultType>Loại kết quả:</LabelResultType>
  433. <LabelSeparateReport>Tách riêng biệt tệp báo cáo (và tập lệnh)</LabelSeparateReport>
  434. <LabelShowReport>Hiển thị báo cáo:</LabelShowReport>
  435. <labelUserName>Tên người dùng:</labelUserName>
  436. <License>Giấy phép</License>
  437. <LicenseInformation>Thông tin giấy phép</LicenseInformation>
  438. <LicenseKey>Mã bản quyền</LicenseKey>
  439. <Login>Đăng nhập</Login>
  440. <MyTeam>Đội của tôi</MyTeam>
  441. <NofM>{0}: {1} của {2}</NofM>
  442. <Open>Mở</Open>
  443. <OpenFile>Mở tệp</OpenFile>
  444. <OperationCreate>Tạo '{0}'</OperationCreate>
  445. <OperationDelete>Xóa '{0}' từ máy chủ</OperationDelete>
  446. <OperationDownload>Tải xuống từ máy chủ</OperationDownload>
  447. <OperationGetList>Nhận danh sách các tệp từ máy chủ</OperationGetList>
  448. <OperationLogin>Đăng nhập vào máy chủ</OperationLogin>
  449. <OperationRename>Đổi tên từ '{0}' sang '{1}'</OperationRename>
  450. <OperationUpload>Tải '{0}' lên máy chủ</OperationUpload>
  451. <page>trang</page>
  452. <Platforms>Nền tảng</Platforms>
  453. <Port>Cổng</Port>
  454. <PrivacyPolicy>Bảo mật</PrivacyPolicy>
  455. <Products>Sản phẩm</Products>
  456. <Proxy>Proxy</Proxy>
  457. <PublishMessage>Để xuất bản báo cáo này, bạn nên gửi nó đến dịch vụ của chúng tôi publish.stimulsoft.com</PublishMessage>
  458. <questionOpenThisFile>Bạn có chắc muốn mở mục '{0}' không?</questionOpenThisFile>
  459. <questionOverrideItem>Bạn có thực sự muốn ghi đè mục '{0}' không?</questionOverrideItem>
  460. <questionRemoveItem>Bạn có thực sự muốn xóa mục '{0}'?</questionRemoveItem>
  461. <RefreshList>Làm mới danh sách</RefreshList>
  462. <ReportDocumentFormatNotRecognized>Định dạng của mục '{0}' không được công nhận là định dạng báo cáo được hiển thị!</ReportDocumentFormatNotRecognized>
  463. <ReportTemplateFormatNotRecognized>Định dạng của mục '{0}' không được công nhận là định dạng mẫu báo cáo!</ReportTemplateFormatNotRecognized>
  464. <RequestChangesWhenSavingToCloud>Yêu cầu thay đổi khi lưu vào đám mây</RequestChangesWhenSavingToCloud>
  465. <RibbonButtonAddRole>Thêm vai trò</RibbonButtonAddRole>
  466. <RibbonButtonAddUser>Thêm người dùng</RibbonButtonAddUser>
  467. <RibbonButtonAddWorkspace>Thêm không gian làm việc</RibbonButtonAddWorkspace>
  468. <RibbonButtonFolder>Thư mục</RibbonButtonFolder>
  469. <RibbonTabUsers>Người dùng</RibbonTabUsers>
  470. <Root>Gốc</Root>
  471. <RootFolder>Thư mục gốc</RootFolder>
  472. <Save>Lưu</Save>
  473. <SaveAccountSettings>Lưu cài đặt tài khoản</SaveAccountSettings>
  474. <SaveAsType>Lưu dưới kiểu</SaveAsType>
  475. <SaveFile>Lưu tệp</SaveFile>
  476. <SavingToStimulsoftCloudPleaseWait>Đang lưu báo cáo lên đám mây Stimulsoft. Vui lòng đợi!</SavingToStimulsoftCloudPleaseWait>
  477. <SearchForOnlineTemplates>Tìm kiếm các mẫu trực tuyến</SearchForOnlineTemplates>
  478. <ShareWindowTitleNew>Chia sẻ</ShareWindowTitleNew>
  479. <ShowAllFiles>Xem tất cả các tệp</ShowAllFiles>
  480. <ShowNotificationMessages>Hiển thị tin nhắn thông báo</ShowNotificationMessages>
  481. <Subscriptions>Đăng ký</Subscriptions>
  482. <TabItemEmbedCode>Mã nhúng</TabItemEmbedCode>
  483. <TabItemQRCode>Mã QR</TabItemQRCode>
  484. <TabItemShare>Đường dẫn để chia sẻ</TabItemShare>
  485. <Team>Đội</Team>
  486. <TermsOfUse>Điều khoản</TermsOfUse>
  487. <TextActivated>Đã kích hoạt</TextActivated>
  488. <TextActivationDate>Ngày kích hoạt</TextActivationDate>
  489. <TextDelete>Xóa</TextDelete>
  490. <TextDeletingItems>Xóa mục...</TextDeletingItems>
  491. <TextDescriptionChanges>Vui lòng nhập một mô tả về các thay đổi:</TextDescriptionChanges>
  492. <TextFirstName>Tên</TextFirstName>
  493. <TextFromTo>Từ {0} đến {1} (Tất cả - {2})</TextFromTo>
  494. <TextItemsWorkspace>Không gian làm việc</TextItemsWorkspace>
  495. <TextLastName>Họ</TextLastName>
  496. <TextModify>Chỉnh sửa</TextModify>
  497. <TextNoFavoriteFiles>Không có tập tin yêu thích</TextNoFavoriteFiles>
  498. <TextNoFiles>Không có tập tin</TextNoFiles>
  499. <TextNoNotifications>Không có thông báo</TextNoNotifications>
  500. <TextNoRecentFiles>Không có tập tin gần đây</TextNoRecentFiles>
  501. <TextOwner>Chủ sở hữu</TextOwner>
  502. <TextProfile>Hồ sơ</TextProfile>
  503. <TextReports>Báo cáo</TextReports>
  504. <TextRestoringItems>Khôi phục mục...</TextRestoringItems>
  505. <TextRole>Vai trò</TextRole>
  506. <TextRun>Chạy</TextRun>
  507. <TextUser>Người dùng</TextUser>
  508. <TextUserName>Tên người dùng (Thư điện tử)</TextUserName>
  509. <TimeHoursAgoFive>5 tiếng trước, {0:t}</TimeHoursAgoFive>
  510. <TimeHoursAgoFour>4 tiếng trước, {0:t}</TimeHoursAgoFour>
  511. <TimeHoursAgoOne>1 tiếng trước, {0:t}</TimeHoursAgoOne>
  512. <TimeHoursAgoThree>3 tiếng trước, {0:t}</TimeHoursAgoThree>
  513. <TimeHoursAgoTwo>2 tiếng trước, {0:t}</TimeHoursAgoTwo>
  514. <TimeMinutesAgoFive>5 phút trước, {0:t}</TimeMinutesAgoFive>
  515. <TimeMinutesAgoFour>4 phút trước, {0:t}</TimeMinutesAgoFour>
  516. <TimeMinutesAgoLessOne>Ít hơn 1 phút trước</TimeMinutesAgoLessOne>
  517. <TimeMinutesAgoN>{0} phút trước, {1:t}</TimeMinutesAgoN>
  518. <TimeMinutesAgoOne>1 phút trước, {0:t}</TimeMinutesAgoOne>
  519. <TimeMinutesAgoThree>3 phút trước, {0:t}</TimeMinutesAgoThree>
  520. <TimeMinutesAgoTwo>2 phút trước, {0:t}</TimeMinutesAgoTwo>
  521. <TimeToday>Hôm nay, {0:t}</TimeToday>
  522. <TimeYesterday>Hôm qua, {0:t}</TimeYesterday>
  523. <ToolTipAddRole>Tạo một vai trò mới trong không gian làm việc.</ToolTipAddRole>
  524. <ToolTipAddUser>Tạo người dùng mới trong vai trò đã chọn.</ToolTipAddUser>
  525. <ToolTipAspNet>Xuất bản báo cáo đã chọn vào ứng dụng ASP.NET.</ToolTipAspNet>
  526. <ToolTipAspNetMvc>Xuất bản báo cáo đã chọn vào ứng dụng ASP.NET MVC.</ToolTipAspNetMvc>
  527. <ToolTipAttach>Gắn các mục vào báo cáo đã chọn.</ToolTipAttach>
  528. <ToolTipCreate>Tạo một mục mới.</ToolTipCreate>
  529. <ToolTipDelete>Xóa các mục đã chọn.</ToolTipDelete>
  530. <ToolTipDeleted>Hiển thị các mục đã xóa</ToolTipDeleted>
  531. <ToolTipDownload>Tải xuống mục đã chọn.</ToolTipDownload>
  532. <ToolTipEdit>Chỉnh sửa mục đã chọn.</ToolTipEdit>
  533. <ToolTipGridMode>Xem danh sách</ToolTipGridMode>
  534. <ToolTipInfo>Xem chi tiết</ToolTipInfo>
  535. <ToolTipJs>Xuất bản báo cáo đã chọn thành trang HTML</ToolTipJs>
  536. <ToolTipPublish>Chuẩn bị báo cáo đã chọn để triển khai trong ứng dụng của bạn.</ToolTipPublish>
  537. <ToolTipRecover>Khôi phục các mục đã chọn.</ToolTipRecover>
  538. <ToolTipRunWithoutPreview>Tạo báo cáo đã chọn mà không xem trước</ToolTipRunWithoutPreview>
  539. <ToolTipShare>Chia sẻ tệp đã chọn.</ToolTipShare>
  540. <ToolTipSort>Tùy chọn sắp xếp</ToolTipSort>
  541. <ToolTipThumbnailMode>Chế độ xem hình thu nhỏ</ToolTipThumbnailMode>
  542. <ToolTipViewFile>Hiển thị tệp tin đã chọn.</ToolTipViewFile>
  543. <ToolTipViewReport>Hiển thị báo cáo đã chọn trong trình xem.</ToolTipViewReport>
  544. <WeDidntFindAnything>Chúng tôi không tìm thấy bất cứ gì để hiển thị ở đây.</WeDidntFindAnything>
  545. <WindowDescriptionDelete>Bạn có chắc chắn muốn xóa các mục đã chọn không?</WindowDescriptionDelete>
  546. <WindowDescriptionRecover>Các mục đã chọn sẽ được khôi phục từ thùng rác.</WindowDescriptionRecover>
  547. <WindowTitleDelete>Xóa mục</WindowTitleDelete>
  548. <WindowTitleForgotPassword>Quên mật khẩu</WindowTitleForgotPassword>
  549. <WindowTitleLogin>Đăng nhập</WindowTitleLogin>
  550. <WindowTitleRecover>Khôi phục mục</WindowTitleRecover>
  551. <WindowTitleRoleEdit>Chỉnh sửa vai trò</WindowTitleRoleEdit>
  552. <WindowTitleRoleNew>Tạo vai trò mới</WindowTitleRoleNew>
  553. <WindowTitleSignUp>Đăng ký</WindowTitleSignUp>
  554. <WindowTitleUserEdit>Thay đổi người dùng</WindowTitleUserEdit>
  555. <WindowTitleUserNew>Tạo người dùng mới</WindowTitleUserNew>
  556. <WindowTitleWorkspaceEdit>Chỉnh sửa không gian làm việc</WindowTitleWorkspaceEdit>
  557. <WindowTitleWorkspaceNew>Tạo không gian làm việc mới</WindowTitleWorkspaceNew>
  558. <WizardBlankReportDescription>Tạo báo cáo trống</WizardBlankReportDescription>
  559. <WizardExcelDescription>Tạo một báo cáo với dữ liệu Excel.</WizardExcelDescription>
  560. <WizardJsonDescription>Tạo một báo cáo với dữ liệu JSON.</WizardJsonDescription>
  561. <WizardPrivateShare>Không truy cập</WizardPrivateShare>
  562. <WizardPrivateShareDescription>Truy cập bên ngoài đối với mục đã bị hạn chế.</WizardPrivateShareDescription>
  563. <WizardPublicShare>Truy cập công cộng</WizardPublicShare>
  564. <WizardPublicShareDescription>Truy cập bên ngoài cho bất kỳ người dùng trái phép nào.</WizardPublicShareDescription>
  565. <WizardRegisteredShare>Truy cập được ủy quyền</WizardRegisteredShare>
  566. <WizardRegisteredShareDescription>Truy cập bên ngoài chỉ dành cho người dùng đã đăng ký từ bất kỳ không gian làm việc nào.</WizardRegisteredShareDescription>
  567. <WizardXmlDescription>Tạo một báo cáo với dữ liệu XML.</WizardXmlDescription>
  568. </Cloud>
  569. <Components>
  570. <StiBarCode>Mã vạch</StiBarCode>
  571. <StiChart>Biểu đồ</StiChart>
  572. <StiCheckBox>Hộp chọn</StiCheckBox>
  573. <StiChildBand>Con</StiChildBand>
  574. <StiClone>Nhân bản</StiClone>
  575. <StiColumnFooterBand>Chân cột</StiColumnFooterBand>
  576. <StiColumnHeaderBand>Tiêu đề cột</StiColumnHeaderBand>
  577. <StiComboBox>Danh sách xổ xuống</StiComboBox>
  578. <StiComponent>Thành phần</StiComponent>
  579. <StiContainer>Đối tượng chứa</StiContainer>
  580. <StiContourText>Đường viền bao quanh văn bản</StiContourText>
  581. <StiCrossColumn>Cột chéo</StiCrossColumn>
  582. <StiCrossColumnTotal>Tổng số cột chéo</StiCrossColumnTotal>
  583. <StiCrossDataBand>Dữ liệu chéo</StiCrossDataBand>
  584. <StiCrossFooterBand>Chân trang chéo</StiCrossFooterBand>
  585. <StiCrossGroupFooterBand>Chân trang nhóm chéo</StiCrossGroupFooterBand>
  586. <StiCrossGroupHeaderBand>Tiêu đề nhóm chéo</StiCrossGroupHeaderBand>
  587. <StiCrossHeaderBand>Tiêu đề chéo</StiCrossHeaderBand>
  588. <StiCrossRow>Dòng chéo</StiCrossRow>
  589. <StiCrossRowTotal>Tổng số dòng chéo</StiCrossRowTotal>
  590. <StiCrossSummary>Tóm tắt chéo</StiCrossSummary>
  591. <StiCrossSummaryHeader>Tiêu đề tóm tắt chéo</StiCrossSummaryHeader>
  592. <StiCrossTab>Tab chéo</StiCrossTab>
  593. <StiCrossTitle>Tiêu đề chéo</StiCrossTitle>
  594. <StiDashboard>Bảng thông tin</StiDashboard>
  595. <StiDataBand>Dữ liệu</StiDataBand>
  596. <StiDatePicker>Bảng chọn ngày</StiDatePicker>
  597. <StiEmptyBand>Dữ liệu trống</StiEmptyBand>
  598. <StiFooterBand>Chân</StiFooterBand>
  599. <StiGauge>Thước đo</StiGauge>
  600. <StiGroupFooterBand>Chân nhóm</StiGroupFooterBand>
  601. <StiGroupHeaderBand>Tiêu đề nhóm</StiGroupHeaderBand>
  602. <StiHeaderBand>Tiêu đề</StiHeaderBand>
  603. <StiHierarchicalBand>Dữ liệu phân cấp</StiHierarchicalBand>
  604. <StiHorizontalLinePrimitive>Đường thẳng ngang</StiHorizontalLinePrimitive>
  605. <StiImage>Hình ảnh</StiImage>
  606. <StiIndicator>Chỉ số</StiIndicator>
  607. <StiListBox>Danh sách hộp</StiListBox>
  608. <StiMap>Bản đồ</StiMap>
  609. <StiOnlineMap>Bản đồ trực tuyến</StiOnlineMap>
  610. <StiOverlayBand>Lớp phủ</StiOverlayBand>
  611. <StiPage>Trang</StiPage>
  612. <StiPageFooterBand>Chân trang</StiPageFooterBand>
  613. <StiPageHeaderBand>Tiêu đề trang</StiPageHeaderBand>
  614. <StiPanel>Bảng</StiPanel>
  615. <StiPivot>Trục</StiPivot>
  616. <StiPivotColumn>Cột tổng hợp</StiPivotColumn>
  617. <StiPivotRow>Hàng tổng hợp</StiPivotRow>
  618. <StiPivotSummary>Tổng hợp tóm tắt</StiPivotSummary>
  619. <StiPivotTable>Bảng tổng hợp</StiPivotTable>
  620. <StiProgress>Tiến triển</StiProgress>
  621. <StiRectanglePrimitive>Hình chữ nhật</StiRectanglePrimitive>
  622. <StiRegionMap>Bản đồ khu vực</StiRegionMap>
  623. <StiReport>Báo cáo</StiReport>
  624. <StiReportSummaryBand>Báo cáo tóm tắt</StiReportSummaryBand>
  625. <StiReportTitleBand>Tiêu đề báo cáo</StiReportTitleBand>
  626. <StiRichText>Văn bản đa dạng</StiRichText>
  627. <StiRoundedRectanglePrimitive>Hình chữ nhật bo tròn</StiRoundedRectanglePrimitive>
  628. <StiShape>Hình dạng</StiShape>
  629. <StiSparkline>Biểu đồ Sparkline</StiSparkline>
  630. <StiSubReport>Báo cáo phụ</StiSubReport>
  631. <StiSystemText>Văn bản hệ thống</StiSystemText>
  632. <StiTable>Bảng</StiTable>
  633. <StiTableOfContents>Mục lục</StiTableOfContents>
  634. <StiText>Văn bản</StiText>
  635. <StiTextInCells>Văn bản trong các ô</StiTextInCells>
  636. <StiTreeView>Xem dạng cây</StiTreeView>
  637. <StiTreeViewBox>Hộp xem dạng cây</StiTreeViewBox>
  638. <StiVerticalLinePrimitive>Đường thẳng đứng</StiVerticalLinePrimitive>
  639. <StiWinControl>Cửa sổ điều khiển</StiWinControl>
  640. <StiZipCode>Mã bưu chính</StiZipCode>
  641. </Components>
  642. <Dashboard>
  643. <AddRange>Thêm phạm vi</AddRange>
  644. <AfterGroupingData>Áp dụng sau khi nhóm dữ liệu</AfterGroupingData>
  645. <AllowUserDrillDown>Cho phép truy cập sâu người dùng</AllowUserDrillDown>
  646. <AllowUserFiltering>Cho phép lọc người dùng</AllowUserFiltering>
  647. <AllowUserSorting>Cho phép sắp xếp người dùng</AllowUserSorting>
  648. <Blank>(Chỗ trống)</Blank>
  649. <Blanks>(Khoảng trống)</Blanks>
  650. <BooleanFilters>Bộ lọc boolean</BooleanFilters>
  651. <CannotLoadDashboard>Bạn không thể tải báo cáo với trang tổng quan.</CannotLoadDashboard>
  652. <ChangeChartType>Thay đổi loại biểu đồ</ChangeChartType>
  653. <ChangeMapType>Thay đổi kiểu bản đồ</ChangeMapType>
  654. <ClearAllFormatting>Xóa tất cả định dạng</ClearAllFormatting>
  655. <ClearFilterFrom>Xóa bộ lọc từ '{0}'</ClearFilterFrom>
  656. <ColorScale>Tỉ lệ màu</ColorScale>
  657. <ColumnInteractions>Cột tương tác</ColumnInteractions>
  658. <CustomFilter>Bộ lọc tùy chỉnh...</CustomFilter>
  659. <DashboardsNotSupportedIntheWPFDesigner>Trang tổng quan không được hỗ trợ trong trình thiết kế WPF.</DashboardsNotSupportedIntheWPFDesigner>
  660. <DataBars>Thanh dữ liệu</DataBars>
  661. <DataFilterGrouping>Thao tác này chỉ được sử dụng để nhóm các cột khác nhau.</DataFilterGrouping>
  662. <DataNotDefined>Dữ liệu không được định nghĩa</DataNotDefined>
  663. <DateFilters>Bộ lọc ngày</DateFilters>
  664. <Dimension>Kích thước</Dimension>
  665. <Dimensions>Các kích thước</Dimensions>
  666. <DragDropData>Kéo thả dữ liệu</DragDropData>
  667. <DragDropDataFromDictionary>Kéo và thả dữ liệu từ từ điển</DragDropDataFromDictionary>
  668. <DrillDown>Truy cập sâu</DrillDown>
  669. <DrillDownFiltered>Bộ lọc xuống</DrillDownFiltered>
  670. <DrillDownSelected>Đã chọn truy cập sâu</DrillDownSelected>
  671. <DrillUp>Truy cập lên</DrillUp>
  672. <DuplicateField>Trùng lặp trường</DuplicateField>
  673. <EditExpression>Chỉnh sửa biểu thức</EditExpression>
  674. <EditField>Chỉnh sửa trường</EditField>
  675. <EmptyDashboardFooter>Kéo và thả thành phần từ hộp công cụ hoặc dữ liệu từ từ điển</EmptyDashboardFooter>
  676. <EmptyDashboardHeader>Bảng điều khiển trống</EmptyDashboardHeader>
  677. <FieldInteractions>Trường tương tác</FieldInteractions>
  678. <FieldTypeRestrictionHint>Chỉ có thể sử dụng trường loại '{0}'!</FieldTypeRestrictionHint>
  679. <FirstLastPoints>Điểm đầu tiên / cuối cùng</FirstLastPoints>
  680. <FirstRowIndex>Chỉ mục hàng đầu tiên</FirstRowIndex>
  681. <FullRowSelect>Chọn hàng đầy đủ</FullRowSelect>
  682. <HighLowPoints>Điểm cao / thấp</HighLowPoints>
  683. <ImageNotSpecified>Hình ảnh không được chỉ định</ImageNotSpecified>
  684. <Indicator>Chỉ số</Indicator>
  685. <InitialValue>Giá trị ban đầu</InitialValue>
  686. <LimitRows>Bỏ qua và giới hạn hàng</LimitRows>
  687. <Measure>Cách đo</Measure>
  688. <Measures>Các cách đo</Measures>
  689. <NewDimension>Kích thước mới</NewDimension>
  690. <NewField>Lĩnh vực mới</NewField>
  691. <NewMeasure>Đo mới</NewMeasure>
  692. <NoRanges>Không có phạm vi</NoRanges>
  693. <NoResult>Không có kết quả</NoResult>
  694. <NSelected>{0} được lựa chọn</NSelected>
  695. <Nulls>(Nulls)</Nulls>
  696. <NumberFilters>Bộ lọc số</NumberFilters>
  697. <ParentElement>Thành phần chính</ParentElement>
  698. <RangeMode>Chế độ phạm vi</RangeMode>
  699. <RangeType>Loại phạm vi</RangeType>
  700. <RemoveActions>Xóa tác vụ</RemoveActions>
  701. <RemoveAllFields>Xóa tất cả các trường</RemoveAllFields>
  702. <RemoveField>Xóa trường</RemoveField>
  703. <RemoveMobileSurface>Loại bỏ bề mặt di động</RemoveMobileSurface>
  704. <ReplaceValues>Thay thế giá trị</ReplaceValues>
  705. <ReportSnapshot>Báo cáo nhanh</ReportSnapshot>
  706. <RowsCount>Số hàng</RowsCount>
  707. <RunFieldsEditor>Chạy trình soạn thảo trường</RunFieldsEditor>
  708. <RunFieldsEditorInfo>Chạy trình soạn thảo trường để thay đổi tương tác của từng cột trong bảng.</RunFieldsEditorInfo>
  709. <SelectAll>(Chọn tất cả)</SelectAll>
  710. <ShowAllValue>Hiển thị tất cả giá trị</ShowAllValue>
  711. <ShowAsPercentages>Hiển thị dưới dạng tỷ lệ phần trăm</ShowAsPercentages>
  712. <ShowBlanks>Hiển thị khoảng trống</ShowBlanks>
  713. <SkipFirstRows>Bỏ qua hàng đầu tiên</SkipFirstRows>
  714. <SortAZ>Sắp xếp từ A đến Z</SortAZ>
  715. <SortLargestToSmallest>Sắp xếp từ Lớn nhất đến Nhỏ nhất</SortLargestToSmallest>
  716. <SortNewestToOldest>Sắp xếp Mới nhất đến Cũ nhất</SortNewestToOldest>
  717. <SortOldestToNewest>Sắp xếp Cũ nhất đến Mới nhất</SortOldestToNewest>
  718. <SortSmallestToLargest>Sắp xếp từ Nhỏ nhất đến Lớn nhất</SortSmallestToLargest>
  719. <SortZA>Sắp xếp từ Z đến A</SortZA>
  720. <Sparklines>Biểu đồ trong ô</Sparklines>
  721. <StringFilters>Bộ lọc chuỗi ký tự</StringFilters>
  722. <TransformationHint>Nhấp vào tiêu đề bảng để áp dụng sắp xếp, lọc hoặc thay đổi dữ liệu. Chuyển đổi này sẽ chỉ được áp dụng cho dữ liệu của mục này.</TransformationHint>
  723. <Trend>Xu thế</Trend>
  724. <ViewEditCompilationNotice>Bạn không thể chỉnh sửa báo cáo có thuộc tính 'Report.CalculationMode' bằng giá trị 'Compilation'. Vui lòng đặt thuộc tính đó thành giá trị 'Interpretation'.</ViewEditCompilationNotice>
  725. <ViewModeDesktop>Máy tính để bàn</ViewModeDesktop>
  726. <ViewModeMobile>Di động</ViewModeMobile>
  727. </Dashboard>
  728. <Database>
  729. <Connection>Kết nối</Connection>
  730. <Database>{0} Kết nối</Database>
  731. <DatabaseDB2>Kết nối IBM DB2</DatabaseDB2>
  732. <DatabaseFirebird>Kết nối Firebird</DatabaseFirebird>
  733. <DatabaseInformix>Kết nối Informix</DatabaseInformix>
  734. <DatabaseJson>Dữ liệu JSON</DatabaseJson>
  735. <DatabaseMySQL>Kết nối MySQL</DatabaseMySQL>
  736. <DatabaseOdbc>Kết nối ODBC</DatabaseOdbc>
  737. <DatabaseOleDb>Kết nối OLE DB</DatabaseOleDb>
  738. <DatabaseOracle>Kết nối Oracle</DatabaseOracle>
  739. <DatabaseOracleODP>Kết nối Oracle ODP.NET</DatabaseOracleODP>
  740. <DatabasePostgreSQL>Kết nối PostgreSQL</DatabasePostgreSQL>
  741. <DatabaseSql>Kết nối SQL</DatabaseSql>
  742. <DatabaseSqlCe>Kết nối SQLServerCE</DatabaseSqlCe>
  743. <DatabaseSQLite>Kết nối SQLite</DatabaseSQLite>
  744. <DatabaseTeradata>Kết nối Teradata</DatabaseTeradata>
  745. <DatabaseUniDirect>Kết nối Uni Direct</DatabaseUniDirect>
  746. <DatabaseVistaDB>Kết nối VistaDB</DatabaseVistaDB>
  747. <DatabaseXml>Dữ liệu XML</DatabaseXml>
  748. </Database>
  749. <DatePickerRanges>
  750. <CurrentMonth>Tháng hiện tại</CurrentMonth>
  751. <CurrentQuarter>Quý hiện tại</CurrentQuarter>
  752. <CurrentWeek>Tuần hiện tại</CurrentWeek>
  753. <CurrentYear>Năm hiện tại</CurrentYear>
  754. <FirstQuarter>Quý I</FirstQuarter>
  755. <FourthQuarter>Quý IV</FourthQuarter>
  756. <Index>Chỉ số</Index>
  757. <Last14Days>14 ngày trước</Last14Days>
  758. <Last30Days>30 ngày trước</Last30Days>
  759. <Last7Days>7 ngày trước</Last7Days>
  760. <MonthToDate>Từ đầu tháng đến ngày hiện tại</MonthToDate>
  761. <NextMonth>Tháng sau</NextMonth>
  762. <NextQuarter>Quý sau</NextQuarter>
  763. <NextWeek>Tuần sau</NextWeek>
  764. <NextYear>Năm sau</NextYear>
  765. <PreviousMonth>Tháng trước</PreviousMonth>
  766. <PreviousQuarter>Quý trước</PreviousQuarter>
  767. <PreviousWeek>Tuần trước</PreviousWeek>
  768. <PreviousYear>Năm trước</PreviousYear>
  769. <Quarter>Quý</Quarter>
  770. <QuarterToDate>Từ đầu quý đến ngày hiện tại</QuarterToDate>
  771. <SecondQuarter>Quý II</SecondQuarter>
  772. <ThirdQuarter>Quý III</ThirdQuarter>
  773. <Today>Hôm nay</Today>
  774. <Tomorrow>Ngày mai</Tomorrow>
  775. <WeekToDate>Từ đầu tuần đến ngày hiện tại</WeekToDate>
  776. <Year>Năm</Year>
  777. <YearToDate>Từ đầu năm đến ngày hiện tại</YearToDate>
  778. <Yesterday>Hôm qua</Yesterday>
  779. </DatePickerRanges>
  780. <DesignerFx>
  781. <AlreadyExists>'{0}' đã tồn tại.</AlreadyExists>
  782. <CanNotLoadThisReportTemplate>Không thể tải mẫu báo cáo này.</CanNotLoadThisReportTemplate>
  783. <CloseDataSourceEditor>Bạn có muốn đóng trình chỉnh sửa nguồn dữ liệu không?</CloseDataSourceEditor>
  784. <CloseEditor>Bạn có muốn đóng trình chỉnh sửa không?</CloseEditor>
  785. <CompilingReport>Biên dịch báo cáo</CompilingReport>
  786. <Connecting>Kết nối tới máy chủ</Connecting>
  787. <ConnectionError>Lỗi kết nối</ConnectionError>
  788. <ConnectionSuccessfull>Kết nối đã thành công</ConnectionSuccessfull>
  789. <Continue>Tiếp tục</Continue>
  790. <DecryptionError>Lỗi giải mã: Sai mật khẩu hoặc tệp bị hỏng.</DecryptionError>
  791. <EmailSuccessfullySent>Thư điện tử đã được gửi thành công.</EmailSuccessfullySent>
  792. <ErrorAtSaving>Lỗi khi lưu</ErrorAtSaving>
  793. <ErrorCode>Lỗi khi lưu. Mã lỗi: {0}</ErrorCode>
  794. <ErrorServer>Lỗi khi lưu. Máy chủ không phản hồi.</ErrorServer>
  795. <ExportingReport>Xuất báo cáo</ExportingReport>
  796. <LoadingCode>Đang tải mã</LoadingCode>
  797. <LoadingConfiguration>Đang tải cấu hình</LoadingConfiguration>
  798. <LoadingData>Đang tải dữ liệu</LoadingData>
  799. <LoadingDocument>Đang tải tài liệu</LoadingDocument>
  800. <LoadingImages>Đang tải hình ảnh</LoadingImages>
  801. <LoadingLanguage>Đang tải ngôn ngữ</LoadingLanguage>
  802. <LoadingReport>Đang tải báo cáo</LoadingReport>
  803. <PreviewAs>Xem trước như là {0}</PreviewAs>
  804. <RenderingReport>Đang kết xuất báo cáo</RenderingReport>
  805. <ReportSuccessfullySaved>Báo cáo đã được lưu thành công.</ReportSuccessfullySaved>
  806. <RetrieveError>Lấy danh sách cột lỗi</RetrieveError>
  807. <RetrievingColumns>Đang lấy danh sách cột</RetrievingColumns>
  808. <SavingConfiguration>Đang lưu cấu hình</SavingConfiguration>
  809. <SavingReport>Đang lưu báo cáo</SavingReport>
  810. <TestConnection>Kiểm tra kết nối</TestConnection>
  811. <TextNotFound>Không tìm thấy văn bản được chỉ định. Văn bản: {0}</TextNotFound>
  812. </DesignerFx>
  813. <Desktop>
  814. <Beginner>Người bắt đầu</Beginner>
  815. <ButtonAddCloud>Thêm thư mục đám mây</ButtonAddCloud>
  816. <ButtonAddFolder>Thêm thư mục</ButtonAddFolder>
  817. <ButtonCreateDashboard>Tạo bảng điều khiển</ButtonCreateDashboard>
  818. <ButtonCreateReport>Tạo báo cáo</ButtonCreateReport>
  819. <ChooseYourSkillLevel>Chọn cấp độ kỹ năng của bạn</ChooseYourSkillLevel>
  820. <Creator>Người sáng tạo</Creator>
  821. <Developer>Nhà phát triển </Developer>
  822. <DoYouWantToInstallReports>Bạn có muốn cài đặt các mẫu báo cáo và bảng điều khiển?</DoYouWantToInstallReports>
  823. <InstallSamplesDesc>Hãy cài đặt các dự án mẫu của chúng tôi. Chúng sẽ giúp bạn tìm hiểu những điều cơ bản khi làm việc với phần mềm của chúng tôi.</InstallSamplesDesc>
  824. <PleaseAnswerWhoAreYou>Vui lòng trả lời bạn là ai?</PleaseAnswerWhoAreYou>
  825. <SkillLevel>Cấp độ kỹ năng</SkillLevel>
  826. <WhoAreYou>Bạn là ai?</WhoAreYou>
  827. <WhoAreYouBeginnerDescription>Hoàn toàn phù hợp nếu bạn đang thực hiện lần chạy đầu tiên của nhà thiết kế.</WhoAreYouBeginnerDescription>
  828. <WhoAreYouCreatorDescription>Hoàn toàn phù hợp để tạo báo cáo. Các chức năng cần thiết cho thiết kế có sẵn.</WhoAreYouCreatorDescription>
  829. <WhoAreYouDeveloperDescription>Hoàn toàn phù hợp để tạo các ứng dụng. Bao gồm hoàn thành chức năng cho thiết kế báo cáo và các thành phần nhúng.</WhoAreYouDeveloperDescription>
  830. </Desktop>
  831. <Dialogs>
  832. <StiButtonControl>Nút</StiButtonControl>
  833. <StiCheckBoxControl>Hộp chọn</StiCheckBoxControl>
  834. <StiCheckedListBoxControl>Hộp danh sách chọn</StiCheckedListBoxControl>
  835. <StiComboBoxControl>Danh sách xổ xuống</StiComboBoxControl>
  836. <StiDateTimePickerControl>Bộ chọn thời gian</StiDateTimePickerControl>
  837. <StiForm>Biểu mẫu</StiForm>
  838. <StiGridControl>Lưới</StiGridControl>
  839. <StiGroupBoxControl>Nhóm hộp</StiGroupBoxControl>
  840. <StiLabelControl>Nhãn</StiLabelControl>
  841. <StiListBoxControl>Danh sách hộp</StiListBoxControl>
  842. <StiListViewControl>Chế độ xem dạng danh sách</StiListViewControl>
  843. <StiLookUpBoxControl>Hộp tìm kiếm</StiLookUpBoxControl>
  844. <StiNumericUpDownControl>Tăng giảm số</StiNumericUpDownControl>
  845. <StiPanelControl>Bảng điều khiển</StiPanelControl>
  846. <StiPictureBoxControl>Hộp hình ảnh</StiPictureBoxControl>
  847. <StiRadioButtonControl>Nút radio</StiRadioButtonControl>
  848. <StiReportControl>Kiểm soát báo cáo</StiReportControl>
  849. <StiRichTextBoxControl>Hộp văn bản đa dạng</StiRichTextBoxControl>
  850. <StiTextBoxControl>Hộp văn bản</StiTextBoxControl>
  851. <StiTreeViewControl>Chế độ xem dạng cây</StiTreeViewControl>
  852. </Dialogs>
  853. <Editor>
  854. <CantFind>Không thể tìm thấy dữ liệu bạn đang tìm kiếm.</CantFind>
  855. <CollapseToDefinitions>Thu gọn để định nghĩa</CollapseToDefinitions>
  856. <Column>Cột: {0}</Column>
  857. <EntireScope>Toàn bộ phạm vi</EntireScope>
  858. <Find>Tìm kiếm</Find>
  859. <FindNext>Tìm tiếp theo</FindNext>
  860. <FindWhat>Tìm gì:</FindWhat>
  861. <FromCursor>Từ con trỏ</FromCursor>
  862. <GotoLine>Đi tới dòng</GotoLine>
  863. <InsertLink>Chèn đường dẫn</InsertLink>
  864. <InsertSymbol>Chèn biểu tượng</InsertSymbol>
  865. <Line>Dòng: {0}</Line>
  866. <LineNumber>Số dòng:</LineNumber>
  867. <LineNumberIndex>Số dòng ({0} - {1})</LineNumberIndex>
  868. <MarkAll>Đánh dấu tất cả</MarkAll>
  869. <MatchCase>Phù hợp với trường hợp</MatchCase>
  870. <MatchWholeWord>Phù hợp với toàn bộ từ</MatchWholeWord>
  871. <Outlining>Phác thảo</Outlining>
  872. <PromptOnReplace>Nhắc khi thay thế</PromptOnReplace>
  873. <Replace>Thay thế</Replace>
  874. <ReplaceAll>Thay thế tất cả</ReplaceAll>
  875. <ReplaceWith>Thay thế bằng:</ReplaceWith>
  876. <Search>Tìm kiếm</Search>
  877. <SearchHiddenText>Văn bản ẩn</SearchHiddenText>
  878. <SearchUp>Tìm lên</SearchUp>
  879. <SelectionOnly>Chỉ lựa chọn</SelectionOnly>
  880. <ShowAutoGeneratedCode>Hiển thị mã được tạo tự động</ShowAutoGeneratedCode>
  881. <ShowLineNumbers>Hiển thị số dòng</ShowLineNumbers>
  882. <StopOutlining>Dừng phác thảo</StopOutlining>
  883. <titleFind>Tìm kiếm</titleFind>
  884. <titleGotoLine>Đi tới dòng</titleGotoLine>
  885. <titleReplace>Thay thế</titleReplace>
  886. <ToggleAllOutlining>Chuyển đổi tất cả phác thảo</ToggleAllOutlining>
  887. <ToggleOutliningExpansion>Chuyển đổi tất cả mở rộng phác thảo</ToggleOutliningExpansion>
  888. <TypeToSearch>Nhập để tìm kiếm</TypeToSearch>
  889. <UseRegularExpressions>Sử dụng biểu thức chính quy</UseRegularExpressions>
  890. </Editor>
  891. <Errors>
  892. <ComponentIsNotRelease>Thành phần không được phát hành "{0}".</ComponentIsNotRelease>
  893. <ContainerIsNotValidForComponent>Đối tượng chứa {0} không hợp lệ cho thành phần {1}.</ContainerIsNotValidForComponent>
  894. <DataNotFound>Dữ liệu không tồn tại.</DataNotFound>
  895. <DataNotLoaded>Không có dữ liệu nào được tải.</DataNotLoaded>
  896. <Error>Lỗi!</Error>
  897. <ErrorsList>Danh sách lỗi</ErrorsList>
  898. <FieldRequire>Trường "{0}" yêu cầu điền.</FieldRequire>
  899. <FileNotFound>Tệp "{0}" không tồn tại.</FileNotFound>
  900. <IdentifierIsNotValid>Định danh '{0}' không hợp lệ.</IdentifierIsNotValid>
  901. <ImpossibleFindDataSource>Không thể tìm nguồn dữ liệu.</ImpossibleFindDataSource>
  902. <NameExists>Đã có một đối tượng có tên '{0}'. Đối tượng phải có tên duy nhất.</NameExists>
  903. <NoServices>Dịch vụ không được tìm thấy trong '{0}'</NoServices>
  904. <NotAssign>Nguồn dữ liệu không được chỉ định.</NotAssign>
  905. <NotCorrectFormat>Chuỗi đầu vào không đúng định dạng.</NotCorrectFormat>
  906. <OneTableOfContentsAllowed>Chỉ có thể sử dụng một thành phần 'Mục lục' trong báo cáo cùng một lúc!</OneTableOfContentsAllowed>
  907. <PrimaryColumnAction>Không thể áp dụng tác vụ này vào cột chính của '{0}'.</PrimaryColumnAction>
  908. <RelationsNotFound>Quan hệ không được tìm thấy.</RelationsNotFound>
  909. <ReportCannotBeSaveDueToErrors>Không thể lưu báo cáo do lỗi!</ReportCannotBeSaveDueToErrors>
  910. <ServiceNotFound>Dịch vụ '{0}' không tìm thấy.</ServiceNotFound>
  911. </Errors>
  912. <ExceptionProvider>
  913. <Assemblies>Lắp ráp</Assemblies>
  914. <Exception>Ngoại lệ</Exception>
  915. <ExceptionReport>Báo cáo ngoại lệ</ExceptionReport>
  916. <Framework>Khung</Framework>
  917. <General>Chung</General>
  918. <Message>Thông điệp</Message>
  919. <Number>Con số</Number>
  920. <PleaseEnterDetailedInformation>Vui lòng nhập thông tin chi tiết về các sự kiện gây ra ngoại lệ này.</PleaseEnterDetailedInformation>
  921. <SaveToFile>Lưu vào tệp</SaveToFile>
  922. <SendErrorFailed>Không gửi được thông báo lỗi.</SendErrorFailed>
  923. <SendErrorSuccess>Đã gửi thông báo lỗi thành công.</SendErrorSuccess>
  924. <Source>Nguồn</Source>
  925. <StackTrace>Ngăn xếp dấu vết</StackTrace>
  926. </ExceptionProvider>
  927. <Export>
  928. <AddPageBreaks>Thêm ngắt trang</AddPageBreaks>
  929. <AllBands>Tất cả các dải</AllBands>
  930. <AllowAddOrModifyTextAnnotations>Cho phép thêm hoặc chỉnh sửa chú thích văn bản</AllowAddOrModifyTextAnnotations>
  931. <AllowCopyTextAndGraphics>Cho phép sao chép văn bản và đồ họa</AllowCopyTextAndGraphics>
  932. <AllowEditable>Cho phép chỉnh sửa:</AllowEditable>
  933. <AllowModifyContents>Cho phép thay đổi nội dung</AllowModifyContents>
  934. <AllowPrintDocument>Cho phép in văn bản</AllowPrintDocument>
  935. <Auto>Tự động</Auto>
  936. <BandsFilter>Lọc dải:</BandsFilter>
  937. <CancelExport>Hủy Xuất</CancelExport>
  938. <Color>Màu sắc</Color>
  939. <Compressed>Nén</Compressed>
  940. <CompressToArchive>Nén vào tệp lưu trữ</CompressToArchive>
  941. <ContinuousPages>Trang liên tục</ContinuousPages>
  942. <DataAndHeaders>Dữ liệu và tiêu đề</DataAndHeaders>
  943. <DataAndHeadersFooters>Dữ liệu và tiêu đề/chân trang</DataAndHeadersFooters>
  944. <DataOnly>Chỉ dữ liệu</DataOnly>
  945. <DigitalSignature>Chữ ký số</DigitalSignature>
  946. <DigitalSignatureCertificateNotSelected>Chứng chỉ không được chọn</DigitalSignatureCertificateNotSelected>
  947. <DigitalSignatureError>Lỗi chữ ký số ở bước</DigitalSignatureError>
  948. <DocumentSecurity>Bảo mật tài liệu</DocumentSecurity>
  949. <DotMatrixMode>Chế độ ma trận điểm</DotMatrixMode>
  950. <EmbeddedFonts>Phông chữ nhúng</EmbeddedFonts>
  951. <EmbeddedImageData>Dữ liệu hình ảnh nhúng</EmbeddedImageData>
  952. <Encoding>Mã hóa:</Encoding>
  953. <EncryptionError>Lỗi mã hóa ở bước</EncryptionError>
  954. <EscapeCodes>Chuỗi thoát</EscapeCodes>
  955. <Exactly>Chính xác</Exactly>
  956. <ExceptEditableFields>Ngoại trừ trường có thể chỉnh sửa</ExceptEditableFields>
  957. <ExportDataOnly>Chỉ xuất dữ liệu</ExportDataOnly>
  958. <ExportEachPageToSheet>Xuất mỗi trang thành trang tính</ExportEachPageToSheet>
  959. <Exporting>Xuất khẩu</Exporting>
  960. <ExportingCalculatingCoordinates>Tính tọa độ</ExportingCalculatingCoordinates>
  961. <ExportingCreatingDocument>Tạo tài liệu</ExportingCreatingDocument>
  962. <ExportingFormatingObjects>Định dạng đối tượng</ExportingFormatingObjects>
  963. <ExportingReport>Xuất báo cáo</ExportingReport>
  964. <ExportMode>Chế độ xuất:</ExportMode>
  965. <ExportModeFrame>Khung</ExportModeFrame>
  966. <ExportModeTable>Bảng</ExportModeTable>
  967. <ExportObjectFormatting>Xuất định dạng đối tượng</ExportObjectFormatting>
  968. <ExportPageBreaks>Xuất ngắt trang</ExportPageBreaks>
  969. <ExportRtfTextAsImage>Xuất văn bản đa dạng như hình ảnh</ExportRtfTextAsImage>
  970. <ExportTypeBmpFile>Ảnh BMP...</ExportTypeBmpFile>
  971. <ExportTypeCalcFile>Tệp OpenDocument Calc...</ExportTypeCalcFile>
  972. <ExportTypeCsvFile>Tệp CSV...</ExportTypeCsvFile>
  973. <ExportTypeDataFile>Tệp dữ liệu...</ExportTypeDataFile>
  974. <ExportTypeDbfFile>Tệp dBase DBF...</ExportTypeDbfFile>
  975. <ExportTypeDifFile>Tệp Data Interchange Format (DIF)...</ExportTypeDifFile>
  976. <ExportTypeExcel2007File>Tệp Microsoft Excel 2007...</ExportTypeExcel2007File>
  977. <ExportTypeExcelFile>Định dạng tệp Excel...</ExportTypeExcelFile>
  978. <ExportTypeExcelXmlFile>Tệp Microsoft Excel XML...</ExportTypeExcelXmlFile>
  979. <ExportTypeGifFile>Ảnh GIF...</ExportTypeGifFile>
  980. <ExportTypeHtml5File>Tệp HTML5...</ExportTypeHtml5File>
  981. <ExportTypeHtmlFile>Định dạng tệp HTML...</ExportTypeHtmlFile>
  982. <ExportTypeImageFile>Tệp hình ảnh...</ExportTypeImageFile>
  983. <ExportTypeJpegFile>Ảnh JPEG...</ExportTypeJpegFile>
  984. <ExportTypeJsonFile>Tệp JSON...</ExportTypeJsonFile>
  985. <ExportTypeMetafile>Windows Metafile...</ExportTypeMetafile>
  986. <ExportTypeMhtFile>MHT Web Archive...</ExportTypeMhtFile>
  987. <ExportTypePcxFile>Ảnh PCX...</ExportTypePcxFile>
  988. <ExportTypePdfFile>Định dạng tệp PDF...</ExportTypePdfFile>
  989. <ExportTypePngFile>Ảnh PNG...</ExportTypePngFile>
  990. <ExportTypePpt2007File>Tệp Microsoft PowerPoint...</ExportTypePpt2007File>
  991. <ExportTypeRtfFile>Tệp Rich Text...</ExportTypeRtfFile>
  992. <ExportTypeSvgFile>Tệp Scalable Vector Graphics (SVG)...</ExportTypeSvgFile>
  993. <ExportTypeSvgzFile>Tệp Compressed SVG (SVGZ)...</ExportTypeSvgzFile>
  994. <ExportTypeSylkFile>Tệp Symbolic Link (SYLK)...</ExportTypeSylkFile>
  995. <ExportTypeTiffFile>Ảnh TIFF...</ExportTypeTiffFile>
  996. <ExportTypeTxtFile>Tệp văn bản...</ExportTypeTxtFile>
  997. <ExportTypeWord2007File>Tệp Microsoft Word...</ExportTypeWord2007File>
  998. <ExportTypeWriterFile>Tệp OpenDocument Writer...</ExportTypeWriterFile>
  999. <ExportTypeXmlFile>Tệp XML...</ExportTypeXmlFile>
  1000. <ExportTypeXpsFile>Tệp Microsoft XPS...</ExportTypeXpsFile>
  1001. <GetCertificateFromCryptoUI>Nhận chứng chỉ từ Crypto UI</GetCertificateFromCryptoUI>
  1002. <ImageCompressionMethod>Phương pháp nén hình ảnh:</ImageCompressionMethod>
  1003. <ImageCutEdges>Cắt góc</ImageCutEdges>
  1004. <ImageFormat>Định dạng hình ảnh:</ImageFormat>
  1005. <ImageGrayscale>Màu xám</ImageGrayscale>
  1006. <ImageMonochrome>Đơn sắc</ImageMonochrome>
  1007. <ImageQuality>Chất lượng hình ảnh:</ImageQuality>
  1008. <ImageResolution>Độ phân giải hình ảnh:</ImageResolution>
  1009. <ImageResolutionMode>Chế độ phân giải hình ảnh</ImageResolutionMode>
  1010. <ImageType>Loại hình ảnh</ImageType>
  1011. <labelEncryptionKeyLength>Độ dài khóa mã hóa:</labelEncryptionKeyLength>
  1012. <labelOwnerPassword>Mật khẩu chủ sở hữu:</labelOwnerPassword>
  1013. <labelSubjectNameString>Chuỗi ký tự tên chủ đề:</labelSubjectNameString>
  1014. <labelUserPassword>Mật khẩu người dùng:</labelUserPassword>
  1015. <MonochromeDitheringType>Loại ảnh phối màu đơn sắc:</MonochromeDitheringType>
  1016. <MoreSettings>Cài đặt khác</MoreSettings>
  1017. <MultipleFiles>Nhiều tệp tin</MultipleFiles>
  1018. <NoMoreThan>Không nhiều hơn</NoMoreThan>
  1019. <OpenAfterExport>Mở sau khi xuất</OpenAfterExport>
  1020. <PdfACompliance>Phù hợp với PDF/A</PdfACompliance>
  1021. <PrintingReport>Báo cáo in</PrintingReport>
  1022. <RemoveEmptySpaceAtBottom>Xóa không gian trống ở cuối trang</RemoveEmptySpaceAtBottom>
  1023. <RestrictEditing>Hạn chế chỉnh sửa:</RestrictEditing>
  1024. <Scale>Tỉ lệ:</Scale>
  1025. <Separator>Phân cách:</Separator>
  1026. <Settings>Cài đặt</Settings>
  1027. <SkipColumnHeaders>Bỏ qua tiêu đề cột</SkipColumnHeaders>
  1028. <StandardPDFFonts>Phông chữ chuẩn PDF</StandardPDFFonts>
  1029. <TiffCompressionScheme>Tiến trình nén TIFF:</TiffCompressionScheme>
  1030. <title>Cài đặt tùy chọn xuất</title>
  1031. <TxtBorderType>Loại viền</TxtBorderType>
  1032. <TxtBorderTypeDouble>Unicode kép</TxtBorderTypeDouble>
  1033. <TxtBorderTypeSimple>Đơn giản</TxtBorderTypeSimple>
  1034. <TxtBorderTypeSingle>Unicode đơn</TxtBorderTypeSingle>
  1035. <TxtCutLongLines>Cắt dòng dài</TxtCutLongLines>
  1036. <TxtDrawBorder>Vẽ đường viền</TxtDrawBorder>
  1037. <TxtKillSpaceGraphLines>Bỏ các đường đồ thị trống</TxtKillSpaceGraphLines>
  1038. <TxtKillSpaceLines>Bỏ các đường trống</TxtKillSpaceLines>
  1039. <TxtPutFeedPageCode>Đặt mã nguồn cấp dữ liệu trang</TxtPutFeedPageCode>
  1040. <Type>Loại:</Type>
  1041. <UseDefaultSystemEncoding>Sử dụng hệ thống mã hoá mặc định</UseDefaultSystemEncoding>
  1042. <UseDigitalSignature>Sử dụng chữ ký số</UseDigitalSignature>
  1043. <UseEscapeCodes>Sử dụng chuỗi thoát</UseEscapeCodes>
  1044. <UseOnePageHeaderAndFooter>Chỉ sử dụng một tiêu đề và chân trang</UseOnePageHeaderAndFooter>
  1045. <UsePageHeadersAndFooters>Sử dụng tiêu đề và chân trang</UsePageHeadersAndFooters>
  1046. <UseUnicode>Sử dụng Unicode</UseUnicode>
  1047. <X>X:</X>
  1048. <Y>Y:</Y>
  1049. <Zoom>Thu phóng:</Zoom>
  1050. </Export>
  1051. <FileFilters>
  1052. <AllFiles>Tất cả các tệp tin</AllFiles>
  1053. <AllImageFiles>Tất cả các tệp hình ảnh</AllImageFiles>
  1054. <BitmapFiles>Tệp Bitmap</BitmapFiles>
  1055. <BmpFiles>BMP Images (*.bmp)|*.bmp</BmpFiles>
  1056. <CalcFiles>Tệp OpenDocument Calc (*.ods)|*.ods</CalcFiles>
  1057. <CsvFiles>Tệp CSV (*.csv)|*.csv</CsvFiles>
  1058. <DashboardTemplates>Mẫu bảng thông tin (*.sbi)|*.sbi</DashboardTemplates>
  1059. <DataSetXmlData>Tập dữ liệu XML (*.xml)|*.xml</DataSetXmlData>
  1060. <DataSetXmlSchema>Tập dữ liệu lược đồ XML (*.xsd)|*.xsd</DataSetXmlSchema>
  1061. <DbfFiles>Tệp DBF (*.dbf)|*.dbf</DbfFiles>
  1062. <DictionaryFiles>Từ điển báo cáo (*.dct)|*.dct</DictionaryFiles>
  1063. <DifFiles>Tệp DIF (*.dif)|*.dif</DifFiles>
  1064. <DllFiles>Tệp DLL (*.dll)|*.dll</DllFiles>
  1065. <DocumentFiles>Tài liệu báo cáo (*.mdc)|*.mdc</DocumentFiles>
  1066. <EmfFiles>Siêu tệp tin (*.emf)|*.emf</EmfFiles>
  1067. <EncryptedDocumentFiles>Tài liệu báo cáo được mã hóa (*.mdx)|*.mdx</EncryptedDocumentFiles>
  1068. <EncryptedReportFiles>Mẫu báo cáo được mã hóa (*.mrx)|*.mrx</EncryptedReportFiles>
  1069. <Excel2007Files>Tệp Microsoft Excel (*.xlsx)|*.xlsx</Excel2007Files>
  1070. <ExcelAllFiles>Tệp Microsoft Excel (*.xlsx;*.xls)|*.xlsx;*.xls</ExcelAllFiles>
  1071. <ExcelFiles>Tệp Microsoft Excel 97-2003 (*.xls)|*.xls</ExcelFiles>
  1072. <ExcelXmlFiles>Tệp Microsoft Excel XML (*.xml)|*.xml</ExcelXmlFiles>
  1073. <ExeFiles>Tệp EXE (*.exe)|*.exe</ExeFiles>
  1074. <GifFiles>Ảnh GIF (*.gif)|*.gif</GifFiles>
  1075. <HtmlFiles>Tệp HTML (*.html)|*.html</HtmlFiles>
  1076. <InheritedLanguageFiles>{0} lớp cho các báo cáo kế thừa (*.{1})|*.{2}</InheritedLanguageFiles>
  1077. <JpegFiles>Ảnh JPEG (*.jpg;*.jpeg)|*.jpg;*.jpeg</JpegFiles>
  1078. <JsonDocumentFiles>Tài liệu báo cáo JSON (*.mdc)|*.mdc</JsonDocumentFiles>
  1079. <JsonFiles>Tệp JSON (*.json)|*.json</JsonFiles>
  1080. <JsonReportFiles>Mẫu báo cáo JSON (*.mrt)|*.mrt</JsonReportFiles>
  1081. <LanguageFiles>{0} phân loại (*.{1})|*.{2}</LanguageFiles>
  1082. <LanguageForSilverlightFiles>{0} phân loại cho báo cáo Silverlight (*.{1})|*.{2}</LanguageForSilverlightFiles>
  1083. <MetaFiles>Siêu tập tin</MetaFiles>
  1084. <MhtFiles>MHT Web Archives (*.mht)|*.mht</MhtFiles>
  1085. <PackedDocumentFiles>Đóng gói tài liệu báo cáo (*.mdz)|*.mdz</PackedDocumentFiles>
  1086. <PackedReportFiles>Đóng gói mẫu báo cáo (*.mrz)|*.mrz</PackedReportFiles>
  1087. <PageFiles>Trang báo cáo (*.pg)|*.pg</PageFiles>
  1088. <PcxFiles>Ảnh PCX (*.pcx)|*.pcx</PcxFiles>
  1089. <PdfFiles>Tệp Adobe PDF (*.pdf)|*.pdf</PdfFiles>
  1090. <PngFiles>Ảnh PNG (*.png)|*.png</PngFiles>
  1091. <Ppt2007Files>Tệp Microsoft PowerPoint 2007/2013 (*.pptx)|*.pptx</Ppt2007Files>
  1092. <ReportEmbededDataFiles>Mẫu báo cáo với dữ liệu nhúng (*.mrt)|*.mrt</ReportEmbededDataFiles>
  1093. <ReportFiles>Mẫu báo cáo (*.mrt)|*.mrt</ReportFiles>
  1094. <RtfFiles>Văn bản đa dạng (*.rtf)|*.rtf</RtfFiles>
  1095. <StandaloneReportFiles>Báo cáo độc lập (*.exe)|*.exe</StandaloneReportFiles>
  1096. <StylesFiles>Kiểu báo cáo (*.sts)|*.sts</StylesFiles>
  1097. <SvgFiles>Ảnh SVG (*.svg)|*.svg</SvgFiles>
  1098. <SvgzFiles>Ảnh nén SVG (*.svgz)|*.svgz</SvgzFiles>
  1099. <SylkFiles>Tệp SYLK (*.slk)|*.slk</SylkFiles>
  1100. <TiffFiles>Ảnh TIFF (*.tiff)|*.tiff</TiffFiles>
  1101. <TxtFiles>Tệp văn bản thuần túy (*.txt)|*.txt</TxtFiles>
  1102. <Word2007Files>Tệp Microsoft Word 2007-2016 (*.docx)|*.docx</Word2007Files>
  1103. <WordFiles>Tệp Microsoft Word 97-2003 (*.doc)|*.doc</WordFiles>
  1104. <WriterFiles>Tệp OpenDocument Writer (*.odt)|*.odt</WriterFiles>
  1105. <XmlFiles>Tệp XML (*.xml)|*.xml</XmlFiles>
  1106. <XpsFiles>Tệp Microsoft XPS (*.xps)|*.xps</XpsFiles>
  1107. <ZipArchives>Tập nén ZIP (*.zip)|*.zip</ZipArchives>
  1108. </FileFilters>
  1109. <Formats>
  1110. <custom01>d</custom01>
  1111. <custom02>D</custom02>
  1112. <custom03>f</custom03>
  1113. <custom04>F</custom04>
  1114. <custom05>yy/MM/dd</custom05>
  1115. <custom06>yyyy/MM/dd</custom06>
  1116. <custom07>G</custom07>
  1117. <custom08>$0.00</custom08>
  1118. <custom09>$0</custom09>
  1119. <custom10>c</custom10>
  1120. <custom11>c1</custom11>
  1121. <custom12>c2</custom12>
  1122. <custom13>#.00</custom13>
  1123. <custom14>#,#</custom14>
  1124. <custom15>n</custom15>
  1125. <custom16>n1</custom16>
  1126. <custom17>n2</custom17>
  1127. <custom18>(###) ### - ####</custom18>
  1128. <date01>*d</date01>
  1129. <date02>*D</date02>
  1130. <date03>M.dd</date03>
  1131. <date04>yy.M.dd</date04>
  1132. <date05>yy.MM.dd</date05>
  1133. <date06>MMM.dd</date06>
  1134. <date07>yy.MMM.dd</date07>
  1135. <date08>yyyy, MMMM</date08>
  1136. <date09>*f</date09>
  1137. <date10>*F</date10>
  1138. <date11>MM.dd.yyyy</date11>
  1139. <date12>dd/MM/yyyy</date12>
  1140. <date13>*g</date13>
  1141. <date14>*G</date14>
  1142. <date15>*y</date15>
  1143. <date16>*m</date16>
  1144. <date17>s</date17>
  1145. <date18>u</date18>
  1146. <date19>*Q</date19>
  1147. <date20>*YQ</date20>
  1148. <date21>QI</date21>
  1149. <date22>YQI</date22>
  1150. <time01>*t</time01>
  1151. <time02>*T</time02>
  1152. <time03>HH:mm</time03>
  1153. <time04>H:mm</time04>
  1154. <time06>HH:mm:ss</time06>
  1155. </Formats>
  1156. <FormBand>
  1157. <AddFilter>Thêm bộ lọc</AddFilter>
  1158. <AddGroup>Thêm nhóm</AddGroup>
  1159. <AddResult>Thêm kết quả</AddResult>
  1160. <AddSort>Thêm sắp xếp</AddSort>
  1161. <And>và</And>
  1162. <Ascending>Tăng dần</Ascending>
  1163. <Descending>Giảm dần</Descending>
  1164. <NoFilters>Không bộ lọc</NoFilters>
  1165. <NoSort>Không sắp xếp</NoSort>
  1166. <RemoveFilter>Xóa bộ lọc</RemoveFilter>
  1167. <RemoveGroup>Xóa nhóm</RemoveGroup>
  1168. <RemoveResult>Xóa kết quả</RemoveResult>
  1169. <RemoveSort>Xóa sắp xếp</RemoveSort>
  1170. <SortBy>Sắp xếp theo</SortBy>
  1171. <ThenBy>Sau đó theo</ThenBy>
  1172. <title>Thiết lập dữ liệu</title>
  1173. </FormBand>
  1174. <FormColorBoxPopup>
  1175. <Color>Màu sắc</Color>
  1176. <Custom>Tùy chỉnh</Custom>
  1177. <NoColor>Không màu</NoColor>
  1178. <Others>Khác...</Others>
  1179. <System>Hệ thống</System>
  1180. <Web>Web</Web>
  1181. </FormColorBoxPopup>
  1182. <FormConditions>
  1183. <AaBbCcYyZz>AaBbCcYyZz</AaBbCcYyZz>
  1184. <AddCondition>Thêm điều kiện</AddCondition>
  1185. <AddLevel>Thêm cấp</AddLevel>
  1186. <AssignExpression>Gán biểu thức</AssignExpression>
  1187. <BreakIfTrue>Ngắt nếu đúng</BreakIfTrue>
  1188. <BreakIfTrueToolTip>Ngắt xử lý điều kiện hiện tại nếu nếu thỏa mãn</BreakIfTrueToolTip>
  1189. <ChangeFont>Thay đổi phông chữ...</ChangeFont>
  1190. <ComponentIsEnabled>Thành phần được kích hoạt</ComponentIsEnabled>
  1191. <NoConditions>Không điều kiện</NoConditions>
  1192. <RemoveCondition>Xóa điều kiện</RemoveCondition>
  1193. <SelectStyle>Chọn kiểu</SelectStyle>
  1194. <title>Điều kiện</title>
  1195. </FormConditions>
  1196. <FormCrossTabDesigner>
  1197. <Columns>Cột:</Columns>
  1198. <DataSource>Nguồn dữ liệu:</DataSource>
  1199. <Properties>Thuộc tính:</Properties>
  1200. <Rows>Hàng:</Rows>
  1201. <Summary>Tóm tắt:</Summary>
  1202. <Swap>Đảo hàng/cột</Swap>
  1203. <title>Trình thiết kế Tab chéo</title>
  1204. </FormCrossTabDesigner>
  1205. <FormDatabaseEdit>
  1206. <AccessToken>Mã thông báo truy cập</AccessToken>
  1207. <AuthorizationCode>Mã ủy quyền</AuthorizationCode>
  1208. <ClientId>Mã khách hàng</ClientId>
  1209. <ClientSecret>Mã bí mật khách hàng</ClientSecret>
  1210. <ConnectionString>Chuỗi kết nối:</ConnectionString>
  1211. <DashboardConnections>Bảng thông tin kết nối</DashboardConnections>
  1212. <DatabaseSecret>Mã bí mật cơ sở dữ liệu</DatabaseSecret>
  1213. <DB2Edit>Chỉnh sửa kết nối IBM DB2</DB2Edit>
  1214. <DB2New>Tạo mới kết nối IBM DB2</DB2New>
  1215. <EditConnection>Chỉnh sửa {0} kết nối</EditConnection>
  1216. <Favorites>Yêu thích</Favorites>
  1217. <FirebirdEdit>Chỉnh sửa kết nối Firebird</FirebirdEdit>
  1218. <FirebirdNew>Tạo mới kết nối Firebird</FirebirdNew>
  1219. <FirstRowIsHeader>Dòng đầu tiên là tiêu đề</FirstRowIsHeader>
  1220. <GetAuthorizationCode>Nhận mã ủy quyền</GetAuthorizationCode>
  1221. <GetTokens>Nhận mã</GetTokens>
  1222. <GisEdit>Chỉnh sửa dữ liệu GIS</GisEdit>
  1223. <GisNew>Dữ liệu GIS mới</GisNew>
  1224. <ImportData>Nhập dữ liệu</ImportData>
  1225. <InformixEdit>Chỉnh sửa kết nối Informix</InformixEdit>
  1226. <InformixNew>Tạo mới kết nối Informix</InformixNew>
  1227. <InitialCatalog>Mục ban đầu:</InitialCatalog>
  1228. <JsonEdit>Chỉnh sửa dữ liệu JSON</JsonEdit>
  1229. <JsonNew>Tạo mới dữ liệu JSON</JsonNew>
  1230. <MySQLEdit>Chỉnh sửa kết nối MySQL</MySQLEdit>
  1231. <MySQLNew>Tạo mới kết nối MySQL</MySQLNew>
  1232. <NewConnection>Tạo mới {0} kết nối</NewConnection>
  1233. <OdbcEdit>Chỉnh sửa kết nối ODBC</OdbcEdit>
  1234. <OdbcNew>Tạo mới kết nối ODBC</OdbcNew>
  1235. <OleDbEdit>Chỉnh sửa kết nối OLE DB</OleDbEdit>
  1236. <OleDbNew>Tạo mới kết nối OLE DB</OleDbNew>
  1237. <OracleEdit>Chỉnh sửa kết nối Oracle</OracleEdit>
  1238. <OracleNew>Tạo mới kết nối Oracle</OracleNew>
  1239. <OracleODPEdit>Chỉnh sửa kết nối Oracle ODP.NET</OracleODPEdit>
  1240. <OracleODPNew>Tạo mới kết nối Oracle ODP.NET</OracleODPNew>
  1241. <PathData>Đường dẫn tới dữ liệu XML:</PathData>
  1242. <PathGisData>Đường dẫn đến Dữ liệu Gis:</PathGisData>
  1243. <PathJsonData>Đường dẫn tới dữ liệu JSON:</PathJsonData>
  1244. <PathSchema>Đường dẫn tới lược đồ XSD:</PathSchema>
  1245. <PathToData>Đường dẫn tới dữ liệu:</PathToData>
  1246. <Pin>Ghim</Pin>
  1247. <PostgreSQLEdit>Chỉnh sửa kết nối PostgreSQL</PostgreSQLEdit>
  1248. <PostgreSQLNew>Tạo mới kết nối PostgreSQL</PostgreSQLNew>
  1249. <PromptUserNameAndPassword>Nhắc nhở người dùng và mật khẩu</PromptUserNameAndPassword>
  1250. <RecentConnections>Gần đây</RecentConnections>
  1251. <RedirectUrl>Chuyển hướng URL</RedirectUrl>
  1252. <RefreshAccessToken>Làm mới mã thông báo truy cập</RefreshAccessToken>
  1253. <RefreshToken>Làm mới mã thông báo</RefreshToken>
  1254. <RelationDirection>Hướng quan hệ:</RelationDirection>
  1255. <ReportConnections>Kết nối báo cáo</ReportConnections>
  1256. <SelectData>Chọn dữ liệu</SelectData>
  1257. <SpreadsheetId>Mã bảng tính</SpreadsheetId>
  1258. <SqlCeEdit>Chỉnh sửa kết nối SQLServerCE</SqlCeEdit>
  1259. <SqlCeNew>Tạo mới kết nối SQLServerCE</SqlCeNew>
  1260. <SqlEdit>Chỉnh sửa kết nối SQL</SqlEdit>
  1261. <SQLiteEdit>Chỉnh sửa kết nối SQLite</SQLiteEdit>
  1262. <SQLiteNew>Tạo mới kết nối SQLite</SQLiteNew>
  1263. <SqlNew>Tạo mới kết nối SQL</SqlNew>
  1264. <TeradataEdit>Chỉnh sửa kết nối Teradata</TeradataEdit>
  1265. <TeradataNew>Tạo mới kết nối Teradata</TeradataNew>
  1266. <Token>Mã thông báo</Token>
  1267. <UniDirectEdit>Chỉnh sửa kết nối Uni Direct</UniDirectEdit>
  1268. <UniDirectNew>Tạo mới kết nối Uni Direct</UniDirectNew>
  1269. <Unpin>Bỏ ghim</Unpin>
  1270. <UseBearerAuthentication>Sử dụng xác thực Bearer</UseBearerAuthentication>
  1271. <UseOwnClientID>Sử dụng "ID khách hàng" và "Bí mật khách hàng"</UseOwnClientID>
  1272. <UseToken>Sử dụng mã thông báo</UseToken>
  1273. <VistaDBEdit>Chỉnh sửa kết nối VistaDB</VistaDBEdit>
  1274. <VistaDBNew>Tạo mới kết nối VistaDB</VistaDBNew>
  1275. <XmlEdit>Chỉnh sửa dữ liệu XML</XmlEdit>
  1276. <XmlNew>Tạo mới dữ liệu XML</XmlNew>
  1277. <XmlType>Kiểu XML:</XmlType>
  1278. </FormDatabaseEdit>
  1279. <FormDesigner>
  1280. <Code>Mã</Code>
  1281. <ColumnsOne>Một</ColumnsOne>
  1282. <ColumnsThree>Ba</ColumnsThree>
  1283. <ColumnsTwo>Hai</ColumnsTwo>
  1284. <CompilingReport>Biên dịch báo cáo</CompilingReport>
  1285. <DockingPanels>Bảng điều khiển</DockingPanels>
  1286. <HtmlPreview>Xem trước HTML</HtmlPreview>
  1287. <JsPreview>Xem trước JS</JsPreview>
  1288. <labelPleaseSelectTypeOfInterface>Vui lòng chọn loại giao diện</labelPleaseSelectTypeOfInterface>
  1289. <LoadImage>Tải hình ảnh...</LoadImage>
  1290. <LocalizePropertyGrid>Dịch thuộc tính lưới</LocalizePropertyGrid>
  1291. <MarginsNarrow>Hẹp</MarginsNarrow>
  1292. <MarginsNormal>Bình thường</MarginsNormal>
  1293. <MarginsWide>Rộng</MarginsWide>
  1294. <OrderToolbars>Sắp xếp thanh công cự</OrderToolbars>
  1295. <Others>Khác</Others>
  1296. <Pages>Trang</Pages>
  1297. <Preview>Xem trước</Preview>
  1298. <PropertyChange>Thay đổi thuộc tính '{0}'</PropertyChange>
  1299. <RTPreview>Xem trước WinRT</RTPreview>
  1300. <SetupToolbox>Thiết lập hộp công cụ</SetupToolbox>
  1301. <ShowDescription>Hiển thị mô tả</ShowDescription>
  1302. <SLPreview>Xem trước Silverlight</SLPreview>
  1303. <title>Trình thiết kế</title>
  1304. <WebPreview>Xem trước Flash</WebPreview>
  1305. </FormDesigner>
  1306. <FormDictionaryDesigner>
  1307. <Actions>Hành động</Actions>
  1308. <AutoSort>Tự động sắp xếp</AutoSort>
  1309. <BusinessObjectEdit>Chỉnh sửa đối tượng công việc</BusinessObjectEdit>
  1310. <CalcColumnEdit>Chỉnh sửa cột đã tính toán</CalcColumnEdit>
  1311. <CalcColumnNew>Tạo mới cột đã tính toán</CalcColumnNew>
  1312. <CategoryEdit>Chỉnh sửa danh mục</CategoryEdit>
  1313. <CategoryNew>Tạo danh mục mới</CategoryNew>
  1314. <Child>Con</Child>
  1315. <ChildOfBusinessObject>Con của đối tượng công việc</ChildOfBusinessObject>
  1316. <ChildSource>Nguồn dữ liệu con:</ChildSource>
  1317. <ClickHere>Bấm vào đây</ClickHere>
  1318. <ColumnEdit>Chỉnh sửa cột</ColumnEdit>
  1319. <ColumnNew>Tạo mới cột</ColumnNew>
  1320. <CreateNewDataSource>để tạo nguồn dữ liệu mới</CreateNewDataSource>
  1321. <CreateNewReport>để tạo báo cáo mới</CreateNewReport>
  1322. <CsvSeparatorComma>Dấu phẩy</CsvSeparatorComma>
  1323. <CsvSeparatorOther>Khác</CsvSeparatorOther>
  1324. <CsvSeparatorSemicolon>Dấu chấm phẩy</CsvSeparatorSemicolon>
  1325. <CsvSeparatorSpace>Dấu cách</CsvSeparatorSpace>
  1326. <CsvSeparatorSystem>Hệ thống</CsvSeparatorSystem>
  1327. <CsvSeparatorTab>Tab</CsvSeparatorTab>
  1328. <DatabaseEdit>Chỉnh sửa cơ sở dữ liệu</DatabaseEdit>
  1329. <DatabaseNew>Tạo cơ sở dữ liệu mới</DatabaseNew>
  1330. <DataParameterEdit>Sửa thông số</DataParameterEdit>
  1331. <DataParameterNew>Tạo thông số mới</DataParameterNew>
  1332. <DataSetToBusinessObjects>Tập dữ liệu cho đối tượng công việc</DataSetToBusinessObjects>
  1333. <DataSourceEdit>Chỉnh sửa nguồn dữ liệu</DataSourceEdit>
  1334. <DataSourceNew>Tạo nguồn dữ liệu mới</DataSourceNew>
  1335. <DataSourcesNew>Tạo các nguồn dữ liệu mới</DataSourcesNew>
  1336. <DataTransformationEdit>Chỉnh sửa chuyển đổi dữ liệu</DataTransformationEdit>
  1337. <DataTransformationNew>Tạo mới chuyển đổi dữ liệu</DataTransformationNew>
  1338. <Delete>Xóa</Delete>
  1339. <DesignTimeQueryText>Văn bản truy vấn thời gian thiết kế</DesignTimeQueryText>
  1340. <DictionaryMerge>Hợp nhất từ điển...</DictionaryMerge>
  1341. <DictionaryNew>Tạo từ điển mới...</DictionaryNew>
  1342. <DictionaryOpen>Mở từ điển...</DictionaryOpen>
  1343. <DictionarySaveAs>Lưu từ điển thành...</DictionarySaveAs>
  1344. <DragNewDataSource>kéo trực tiếp dữ liệu của bạn vào bảng điều khiển này</DragNewDataSource>
  1345. <DragNewReport>kéo trực tiếp báo cáo của bạn vào bảng điều khiển này</DragNewReport>
  1346. <EditQuery>Chỉnh sửa truy vấn</EditQuery>
  1347. <ExecutedSQLStatementSuccessfully>Thực hiện câu lệnh SQL thành công</ExecutedSQLStatementSuccessfully>
  1348. <ExpressionNew>Tạo biểu thức mới</ExpressionNew>
  1349. <GetColumnsFromAssembly>Lấy cột từ kết cấu</GetColumnsFromAssembly>
  1350. <ImportRelations>Nạp quan hệ</ImportRelations>
  1351. <LabelSeparator>Phân cách:</LabelSeparator>
  1352. <MarkUsedItems>Đánh dấu mục đã dùng</MarkUsedItems>
  1353. <NewBusinessObject>Tạo mới đối tượng công việc</NewBusinessObject>
  1354. <NewItem>Tạo mục mới</NewItem>
  1355. <OpenAssembly>Mở kết cấu</OpenAssembly>
  1356. <Parent>Cha</Parent>
  1357. <ParentSource>Nguồn dữ liệu cha:</ParentSource>
  1358. <Queries>Truy vấn</Queries>
  1359. <QueryNew>Tạo truy vấn mới</QueryNew>
  1360. <QueryText>Văn bản truy vấn</QueryText>
  1361. <QueryTimeout>Thời gian chờ truy vấn</QueryTimeout>
  1362. <RelationEdit>Chỉnh sửa quan hệ</RelationEdit>
  1363. <RelationNew>Tạo quan hệ mới</RelationNew>
  1364. <ResourceEdit>Chỉnh sửa tài nguyên</ResourceEdit>
  1365. <ResourceNew>Tạo tài nguyên mới</ResourceNew>
  1366. <RetrieveColumns>Lấy cột</RetrieveColumns>
  1367. <RetrieveColumnsAllowRun>Cho phép thực thi StoredProc</RetrieveColumnsAllowRun>
  1368. <RetrieveColumnsAndParameters>Lấy cột và tham số</RetrieveColumnsAndParameters>
  1369. <RetrieveParameters>Lấy tham số</RetrieveParameters>
  1370. <RetrievingDatabaseInformation>Lấy thông tin cơ sở dữ liệu...</RetrievingDatabaseInformation>
  1371. <Run>Thực thi</Run>
  1372. <SelectTypeOfBusinessObject>Chọn loại đối tượng công việc</SelectTypeOfBusinessObject>
  1373. <SkipSchemaWizard>Bỏ qua thuật sĩ lược đồ</SkipSchemaWizard>
  1374. <SortItems>Sắp xếp các mục</SortItems>
  1375. <Synchronize>Đồng bộ hóa</Synchronize>
  1376. <SynchronizeHint>Đồng bộ hóa nội dung của kho dữ liệu và nội dung của từ điển</SynchronizeHint>
  1377. <TextDropDataFileHere>Thả tệp dữ liệu ở đây</TextDropDataFileHere>
  1378. <TextDropFileHere>Thả tệp ở đây</TextDropFileHere>
  1379. <TextDropImageHere>Thả tệp hình ảnh ở đây</TextDropImageHere>
  1380. <title>Trình thiết kế từ điển</title>
  1381. <ValueNew>Giá trị mới</ValueNew>
  1382. <VariableEdit>Chỉnh sửa biến</VariableEdit>
  1383. <VariableNew>Tạo biến mới</VariableNew>
  1384. <ViewData>Xem dữ liệu</ViewData>
  1385. <ViewQuery>Xem truy vấn</ViewQuery>
  1386. </FormDictionaryDesigner>
  1387. <FormFormatEditor>
  1388. <Boolean>Boolean</Boolean>
  1389. <BooleanDisplay>Hiển thị:</BooleanDisplay>
  1390. <BooleanValue>Giá trị:</BooleanValue>
  1391. <Currency>Tiền tệ</Currency>
  1392. <CurrencySymbol>Ký hiệu tiền tệ:</CurrencySymbol>
  1393. <Custom>Tùy chỉnh</Custom>
  1394. <Date>Ngày</Date>
  1395. <DateTimeFormat>Định dạng thời gian</DateTimeFormat>
  1396. <DecimalDigits>Chữ số thập phân:</DecimalDigits>
  1397. <DecimalSeparator>Dấu phân cách thập phân:</DecimalSeparator>
  1398. <FormatMask>Mặt nạ định dạng:</FormatMask>
  1399. <Formats>Định dạng</Formats>
  1400. <General>Chung</General>
  1401. <GroupSeparator>Phân cách nhóm:</GroupSeparator>
  1402. <GroupSize>Quy mô nhóm:</GroupSize>
  1403. <nameFalse>Sai</nameFalse>
  1404. <nameNo>Không</nameNo>
  1405. <nameOff>Tắt</nameOff>
  1406. <nameOn>Bật</nameOn>
  1407. <nameTrue>Đúng</nameTrue>
  1408. <nameYes>Có</nameYes>
  1409. <NegativeInRed>Giá trị âm màu đỏ</NegativeInRed>
  1410. <NegativePattern>Mẫu tiêu cực:</NegativePattern>
  1411. <Number>Số</Number>
  1412. <Percentage>Tỉ lệ phần trăm</Percentage>
  1413. <PercentageSymbol>Ký tự phần trăm:</PercentageSymbol>
  1414. <PositivePattern>Mẫu dương:</PositivePattern>
  1415. <Properties>Thuộc tính</Properties>
  1416. <Sample>Mẫu</Sample>
  1417. <SampleText>Văn bản mẫu</SampleText>
  1418. <TextFormat>Định dạng văn bản</TextFormat>
  1419. <Time>Thời gian</Time>
  1420. <title>Định dạng</title>
  1421. <UseAbbreviation>Sử dụng viết tắt</UseAbbreviation>
  1422. <UseGroupSeparator>Sử dụng phân cách nhóm</UseGroupSeparator>
  1423. <UseLocalSetting>Sử dụng cài đặt cục bộ</UseLocalSetting>
  1424. </FormFormatEditor>
  1425. <FormGlobalizationEditor>
  1426. <AddCulture>Thêm văn hoá</AddCulture>
  1427. <AutoLocalizeReportOnRun>Tự động dịch báo cáo khi thực thi</AutoLocalizeReportOnRun>
  1428. <CreateNewCulture>để tạo văn hóa mới</CreateNewCulture>
  1429. <GetCulture>Lấy cài đặt văn hoá từ báo cáo</GetCulture>
  1430. <qnGetCulture>Bạn có thực sự muốn lấy cài đặt văn hoá từ báo cáo và ghi đè cài đặt văn hoá hiện tại không?</qnGetCulture>
  1431. <qnSetCulture>Bạn có thực sự muốn thiết lập cài đặt văn bản cho báo cáo các thành phần không?</qnSetCulture>
  1432. <RemoveCulture>Xóa văn hóa</RemoveCulture>
  1433. <SetCulture>Đặt cài đặt văn bản cho báo cáo</SetCulture>
  1434. <title>Trình chỉnh sửa toàn cầu hóa</title>
  1435. </FormGlobalizationEditor>
  1436. <FormInteraction>
  1437. <HyperlinkExternalDocuments>Liên kết tới tài liệu bên ngoài</HyperlinkExternalDocuments>
  1438. <HyperlinkUsingInteractionBookmark>Liên kết bằng cách sử dụng đánh dấu trang</HyperlinkUsingInteractionBookmark>
  1439. <HyperlinkUsingInteractionTag>Liên kết bằng cách sử dụng thẻ</HyperlinkUsingInteractionTag>
  1440. </FormInteraction>
  1441. <FormOptions>
  1442. <AutoSave>Tự động lưu</AutoSave>
  1443. <AutoSaveReportToReportClass>Tự động lưu báo cáo thành tệp C # hoặc VB.NET</AutoSaveReportToReportClass>
  1444. <BlankDashboard>Bảng điều khiển trống</BlankDashboard>
  1445. <BlankReport>Báo cáo trống</BlankReport>
  1446. <Default>Mặc định</Default>
  1447. <Drawing>Vẽ</Drawing>
  1448. <DrawMarkersWhenMoving>Vẽ đánh dấu khi di chuyển</DrawMarkersWhenMoving>
  1449. <EditAfterInsert>Chỉnh sửa sau khi chèn</EditAfterInsert>
  1450. <EnableAutoSaveMode>Bật chế độ tự động lưu</EnableAutoSaveMode>
  1451. <FillBands>Điền vào dải</FillBands>
  1452. <FillComponents>Điền vào thành phần</FillComponents>
  1453. <FillContainers>Điền vào thành phần chứa</FillContainers>
  1454. <FillCrossBands>Điền vào dải chứa</FillCrossBands>
  1455. <GenerateLocalizedName>Tạo tên nội địa hóa</GenerateLocalizedName>
  1456. <Grid>Lưới</Grid>
  1457. <GridDots>Chấm</GridDots>
  1458. <GridLines>Đường</GridLines>
  1459. <GridMode>Chế độ lưới</GridMode>
  1460. <GridSize>Kích cỡ lưới</GridSize>
  1461. <groupAutoSaveOptions>Tùy chọn lưu tự động</groupAutoSaveOptions>
  1462. <groupColorScheme>Vui lòng chọn bảng màu của giao diện</groupColorScheme>
  1463. <groupGridDrawingOptions>Tùy chọn vẽ lưới</groupGridDrawingOptions>
  1464. <groupGridOptions>Tùy chọn lưới</groupGridOptions>
  1465. <groupGridSize>Kích cỡ lưới</groupGridSize>
  1466. <groupMainOptions>Các lựa chọn chính để làm việc với trình thiết kế báo cáo</groupMainOptions>
  1467. <groupMarkersStyle>Kiểu đánh dấu</groupMarkersStyle>
  1468. <groupOptionsOfQuickInfo>Tùy chọn thông tin nhanh</groupOptionsOfQuickInfo>
  1469. <groupPleaseSelectTypeOfGui>Vui lòng chọn loại giao diện</groupPleaseSelectTypeOfGui>
  1470. <groupReportDisplayOptions>Báo cáo tùy chọn hiển thị</groupReportDisplayOptions>
  1471. <labelColorScheme>Bảng màu:</labelColorScheme>
  1472. <labelInfoAutoSave>Thay đổi các tham số của tự động lưu báo cáo</labelInfoAutoSave>
  1473. <labelInfoDrawing>Thiết lập các tham số của bản vẽ báo cáo</labelInfoDrawing>
  1474. <labelInfoGrid>Lưới được hiển thị và sử dụng như thế nào trong báo cáo</labelInfoGrid>
  1475. <labelInfoGui>Chọn chế độ sử dụng giao diện trong trình thiết kế báo cáo</labelInfoGui>
  1476. <labelInfoMain>Cài đặt các tham số cơ bản của trình thiết kế báo cáo</labelInfoMain>
  1477. <labelInfoQuickInfo>Thành phần thông tin nhanh trên một trang</labelInfoQuickInfo>
  1478. <Main>Chính</Main>
  1479. <MarkersStyle>Kiểu đánh dấu</MarkersStyle>
  1480. <MarkersStyleCorners>Góc</MarkersStyleCorners>
  1481. <MarkersStyleDashedRectangle>Hình chữ nhật kẻ vạch</MarkersStyleDashedRectangle>
  1482. <MarkersStyleNone>Không</MarkersStyleNone>
  1483. <MessageLeftRightNotValid>Giá trị trái và phải không hợp lệ</MessageLeftRightNotValid>
  1484. <MessageTopBottomNotValid>Giá trị trên và dưới không hợp lệ</MessageTopBottomNotValid>
  1485. <Minutes>{0} phút</Minutes>
  1486. <SaveReportEvery>Lưu báo cáo mỗi:</SaveReportEvery>
  1487. <ScaleMode>Chế độ tỷ lệ</ScaleMode>
  1488. <SelectUILanguage>Lựa chọn ngôn ngữ giao diện</SelectUILanguage>
  1489. <ShowDialogForms>Hiển thị hộp thoại</ShowDialogForms>
  1490. <ShowDimensionLines>Hiển thị các dòng kích thước</ShowDimensionLines>
  1491. <ShowOldGaugeEditor>Hiển thị trình chỉnh sửa thước đo cũ</ShowOldGaugeEditor>
  1492. <StartScreen>Màn hình bắt đầu</StartScreen>
  1493. <title>Tùy chọn</title>
  1494. <UseComponentColor>Sử dụng màu của thành phần để đổ đầy</UseComponentColor>
  1495. <UseLastFormat>Sử dụng định dạng cuối cùng</UseLastFormat>
  1496. <Welcome>Chào mừng</Welcome>
  1497. </FormOptions>
  1498. <FormPageSetup>
  1499. <ApplyTo>Áp dụng cho</ApplyTo>
  1500. <Bottom>Dưới:</Bottom>
  1501. <Columns>Cột</Columns>
  1502. <groupColumns>Cột trang</groupColumns>
  1503. <groupImage>Hình thủy ấn</groupImage>
  1504. <groupMargins>Lề trang</groupMargins>
  1505. <groupOrientation>Hướng trang</groupOrientation>
  1506. <groupPaper>Kích cỡ trang</groupPaper>
  1507. <groupPaperSource>Nguồn giấy</groupPaperSource>
  1508. <groupText>Chữ thủy ấn</groupText>
  1509. <Height>Chiều cao:</Height>
  1510. <labelAngle>Góc:</labelAngle>
  1511. <labelColumnGaps>Khoảng cách cột:</labelColumnGaps>
  1512. <labelColumnWidth>Chiều rộng cột:</labelColumnWidth>
  1513. <labelImageAlignment>Căn chỉnh hình ảnh:</labelImageAlignment>
  1514. <labelImageTransparency>Độ trong suốt của hình ảnh:</labelImageTransparency>
  1515. <labelInfoColumns>Cài đặt cột của trang</labelInfoColumns>
  1516. <labelInfoPaper>Đặt kích thước và hướng cho trang hiện tại</labelInfoPaper>
  1517. <labelInfoUnit>Lề trang được chỉ định trong đơn vị đo hiện tại</labelInfoUnit>
  1518. <labelInfoWatermark>Thiết lập các tham số cho hiển thị thủy ấn</labelInfoWatermark>
  1519. <labelMultipleFactor>Nhiều yếu tố:</labelMultipleFactor>
  1520. <labelPaperSourceOfFirstPage>Nguồn giấy của trang đầu tiên:</labelPaperSourceOfFirstPage>
  1521. <labelPaperSourceOfOtherPages>Nguồn giấy của các trang khác:</labelPaperSourceOfOtherPages>
  1522. <labelSelectBrush>Chọn cọ vẽ:</labelSelectBrush>
  1523. <labelSelectColor>Chọn màu:</labelSelectColor>
  1524. <labelSelectFont>Chọn phông chữ:</labelSelectFont>
  1525. <labelSelectImage>Chọn ảnh:</labelSelectImage>
  1526. <labelText>Chữ:</labelText>
  1527. <Left>Trái:</Left>
  1528. <Margins>Lề</Margins>
  1529. <NumberOfColumns>Số cột:</NumberOfColumns>
  1530. <Orientation>Hướng</Orientation>
  1531. <PageOrientationLandscape>Ngang</PageOrientationLandscape>
  1532. <PageOrientationPortrait>Dọc</PageOrientationPortrait>
  1533. <Paper>Giấy:</Paper>
  1534. <RebuildReport>Xây dựng lại báo cáo</RebuildReport>
  1535. <Right>Phải:</Right>
  1536. <ScaleContent>Tỉ lệ nội dung</ScaleContent>
  1537. <Size>Kích thước:</Size>
  1538. <title>Thiết lập trang</title>
  1539. <Top>Trên:</Top>
  1540. <Width>Chiều rộng:</Width>
  1541. </FormPageSetup>
  1542. <FormReportSetup>
  1543. <groupDates>Ngày tạo báo cáo và ngày thay đổi báo cáo mới nhất</groupDates>
  1544. <groupDescription>Mô tả báo cáo</groupDescription>
  1545. <groupMainParameters>Các tham số có ảnh hưởng đến việc kết xuất báo cáo</groupMainParameters>
  1546. <groupNames>Tên báo cáo, bí danh báo cáo, và tác giả báo cáo</groupNames>
  1547. <groupScript>Ngôn ngữ kịch bản của báo cáo của bạn</groupScript>
  1548. <groupUnits>Kích cỡ và tọa độ trong một báo cáo sẽ nằm trong các đơn vị quy định</groupUnits>
  1549. <labelInfoDescription>Cho biết thông tin của một báo cáo</labelInfoDescription>
  1550. <labelInfoMain>Thay đổi các tham số báo cáo cơ bản</labelInfoMain>
  1551. <labelNumberOfPass>Số lần vượt qua:</labelNumberOfPass>
  1552. <labelReportCacheMode>Chế độ vùng nhớ đệm báo cáo:</labelReportCacheMode>
  1553. <ReportChanged>Báo cáo đã thay đổi:</ReportChanged>
  1554. <ReportCreated>Báo cáo đã tạo:</ReportCreated>
  1555. <title>Tùy chọn báo cáo</title>
  1556. </FormReportSetup>
  1557. <FormRichTextEditor>
  1558. <Bullets>Viên đạn</Bullets>
  1559. <FontName>Tên phông</FontName>
  1560. <FontSize>Kích cỡ phông</FontSize>
  1561. <Insert>Chèn biểu thức</Insert>
  1562. <title>Trình soạn thảo văn bản</title>
  1563. </FormRichTextEditor>
  1564. <FormStyleDesigner>
  1565. <Add>Thêm kiểu</Add>
  1566. <AddCollectionName>Thêm tên bộ sưu tập</AddCollectionName>
  1567. <ApplyStyleCollectionToReportComponents>Áp dụng bộ sưu tập phong cách vào báo cáo thành phần</ApplyStyleCollectionToReportComponents>
  1568. <ApplyStyles>Áp dụng kiểu</ApplyStyles>
  1569. <ColorCollectionEditor>Trình chỉnh sửa bộ sưu tập màu</ColorCollectionEditor>
  1570. <CreateNewComponentStyle>để tạo kiểu thành phần mới</CreateNewComponentStyle>
  1571. <CreateStyleCollection>Tạo bộ sưu tập phong cách</CreateStyleCollection>
  1572. <CreateStyleOnBase>Tạo một phong cách dựa trên một phong cách khác</CreateStyleOnBase>
  1573. <Duplicate>Trùng lặp kiểu</Duplicate>
  1574. <EditColors>[Chỉnh sửa màu sắc]</EditColors>
  1575. <FromStyle>Từ phong cách</FromStyle>
  1576. <GetStyle>Lấy phong cách từ thành phần đã chọn</GetStyle>
  1577. <MoreStyles>Kiểu khác</MoreStyles>
  1578. <NotSpecified>Không xác định</NotSpecified>
  1579. <Open>Mở kiểu</Open>
  1580. <Predefined>Được xác định trước</Predefined>
  1581. <qnApplyStyleCollection>Bạn có muốn áp dụng bộ sưu tập phong cách vào các thành phần báo cáo?</qnApplyStyleCollection>
  1582. <Remove>Xóa kiểu</Remove>
  1583. <RemoveExistingStyles>Xóa các kiểu hiện tại</RemoveExistingStyles>
  1584. <Save>Lưu kiểu</Save>
  1585. <Style>Kiểu</Style>
  1586. <StyleCollectionsNotFound>Không tìm thấy bộ sưu tập kiểu!</StyleCollectionsNotFound>
  1587. <title>Trình thiết kế kiểu</title>
  1588. </FormStyleDesigner>
  1589. <FormSystemTextEditor>
  1590. <Condition>Điều kiện</Condition>
  1591. <LabelDataBand>Dải dữ liệu:</LabelDataBand>
  1592. <LabelDataColumn>Cột dữ liệu:</LabelDataColumn>
  1593. <LabelShowInsteadNullValues>Hiển thị thay vì giá trị null:</LabelShowInsteadNullValues>
  1594. <LabelSummaryFunction>Chức năng tóm tắt:</LabelSummaryFunction>
  1595. <pageExpression>Biểu thức</pageExpression>
  1596. <pageSummary>Tóm tắt</pageSummary>
  1597. <pageSystemVariable>Biến hệ thống</pageSystemVariable>
  1598. <RunningTotal>Tổng số thực thi</RunningTotal>
  1599. <SummaryRunning>Thực thi tóm tắt</SummaryRunning>
  1600. <SummaryRunningByColumn>Cột</SummaryRunningByColumn>
  1601. <SummaryRunningByPage>Trang</SummaryRunningByPage>
  1602. <SummaryRunningByReport>Báo cáo</SummaryRunningByReport>
  1603. </FormSystemTextEditor>
  1604. <FormTitles>
  1605. <ChartWizardForm>Thuật sĩ biểu đồ</ChartWizardForm>
  1606. <ConditionEditorForm>Điều kiện</ConditionEditorForm>
  1607. <ConnectionSelectForm>Chọn loại kết nối</ConnectionSelectForm>
  1608. <ContainerSelectForm>Chọn thành phần chứa</ContainerSelectForm>
  1609. <DataAdapterServiceSelectForm>Chọn loại dữ liệu</DataAdapterServiceSelectForm>
  1610. <DataRelationSelectForm>Chọn quan hệ dữ liệu</DataRelationSelectForm>
  1611. <DataSetName>Nhập tên tập dữ liệu</DataSetName>
  1612. <DataSourceSelectForm>Chọn nguồn dữ liệu</DataSourceSelectForm>
  1613. <DataSourcesNewForm>Tạo mới nguồn dữ liệu</DataSourcesNewForm>
  1614. <DataStoreViewerForm>Trình xem kho dữ liệu</DataStoreViewerForm>
  1615. <DesignerApplication>Trình thiết kế báo cáo</DesignerApplication>
  1616. <EventEditorForm>Trình chỉnh sửa sự kiện</EventEditorForm>
  1617. <ExpressionEditorForm>Trình chỉnh sửa biểu thức</ExpressionEditorForm>
  1618. <GroupConditionForm>Nhóm</GroupConditionForm>
  1619. <InteractionDrillDownPageSelectForm>Chọn trang tìm kiếm qua các tầng thông tin</InteractionDrillDownPageSelectForm>
  1620. <MasterComponentSelectForm>Chọn thành phần chính</MasterComponentSelectForm>
  1621. <PageAddForm>Thêm trang</PageAddForm>
  1622. <PageSizeForm>Kích cỡ trang</PageSizeForm>
  1623. <PagesManagerForm>Trình quản lý trang</PagesManagerForm>
  1624. <PromptForm>Nhập thông tin để đăng nhập vào cơ sở dữ liệu</PromptForm>
  1625. <ReportWizard>Thuật sĩ báo cáo</ReportWizard>
  1626. <ServiceSelectForm>Chọn dịch vụ</ServiceSelectForm>
  1627. <SqlExpressionsForm>Các biểu thức SQL</SqlExpressionsForm>
  1628. <SubReportPageSelectForm>Chọn trang báo cáo phụ</SubReportPageSelectForm>
  1629. <TextEditorForm>Trình chỉnh sửa văn bản</TextEditorForm>
  1630. <ViewDataForm>Xem dữ liệu</ViewDataForm>
  1631. <ViewerApplication>Trình xem báo cáo</ViewerApplication>
  1632. </FormTitles>
  1633. <FormViewer>
  1634. <Bookmarks>Đánh dấu trang</Bookmarks>
  1635. <Close>Đóng</Close>
  1636. <CollapseAll>Thu gọn tất cả</CollapseAll>
  1637. <CompressedDocumentFile>Nén tệp tài liệu</CompressedDocumentFile>
  1638. <ContextMenu>Bảng kê ngữ cảnh</ContextMenu>
  1639. <DocumentFile>Tệp tài liệu...</DocumentFile>
  1640. <Editor>Trình chỉnh sửa</Editor>
  1641. <EncryptedDocumentFile>Tệp tài liệu đã mã hóa</EncryptedDocumentFile>
  1642. <ExpandAll>Mở rộng tất cả</ExpandAll>
  1643. <Export>Xuất...</Export>
  1644. <Find>Tìm kiếm</Find>
  1645. <FirstPage>Trang đầu tiên</FirstPage>
  1646. <FullScreen>Toàn màn hình</FullScreen>
  1647. <GoToPage>Đi tới trang</GoToPage>
  1648. <HorScrollBar>Thanh cuộn ngang</HorScrollBar>
  1649. <LabelPageN>Trang:</LabelPageN>
  1650. <LastPage>Trang cuối</LastPage>
  1651. <NextPage>Trang tiếp theo</NextPage>
  1652. <Open>Mở...</Open>
  1653. <PageControl>Kiểm soát trang</PageControl>
  1654. <PageDelete>Xóa trang</PageDelete>
  1655. <PageDesign>Chỉnh sửa trang...</PageDesign>
  1656. <PageNew>Tạo trang mới</PageNew>
  1657. <PageNofM>Trang {0} của {1}</PageNofM>
  1658. <PageofM>của {0}</PageofM>
  1659. <PageSize>Kích thước trang...</PageSize>
  1660. <PageViewModeContinuous>Liên tiếp</PageViewModeContinuous>
  1661. <PageViewModeMultiplePages>Nhiều trang</PageViewModeMultiplePages>
  1662. <PageViewModeSinglePage>Trang đơn</PageViewModeSinglePage>
  1663. <Parameters>Các tham số</Parameters>
  1664. <PrevPage>Trang trước</PrevPage>
  1665. <Print>In...</Print>
  1666. <qnPageDelete>Bạn có muốn xóa trang không?</qnPageDelete>
  1667. <Save>Lưu...</Save>
  1668. <SendEMail>Gửi thư điện tử...</SendEMail>
  1669. <StatusBar>Thanh trạng thái</StatusBar>
  1670. <Thumbnails>Hình thu nhỏ</Thumbnails>
  1671. <title>Trình xem</title>
  1672. <titlePageSettings>Cài đặt trang</titlePageSettings>
  1673. <Toolbar>Thanh công cụ</Toolbar>
  1674. <VerScrollBar>Thanh cuộn dọc</VerScrollBar>
  1675. <ViewMode>Chế độ xem</ViewMode>
  1676. <Zoom>Thu nhỏ / Phóng to</Zoom>
  1677. <ZoomMultiplePages>Nhiều trang</ZoomMultiplePages>
  1678. <ZoomOnePage>Từng trang</ZoomOnePage>
  1679. <ZoomPageWidth>Chiều rộng trang</ZoomPageWidth>
  1680. <ZoomTwoPages>Hai trang</ZoomTwoPages>
  1681. <ZoomXXPages>{0} X {1} Trang</ZoomXXPages>
  1682. <ZoomXXPagesCancel>Hủy</ZoomXXPagesCancel>
  1683. </FormViewer>
  1684. <FormViewerFind>
  1685. <Close>Đóng</Close>
  1686. <FindNext>Tìm tiếp theo</FindNext>
  1687. <FindPrevious>Tìm trước đó</FindPrevious>
  1688. <FindWhat>Tìm gì:</FindWhat>
  1689. </FormViewerFind>
  1690. <Gauge>
  1691. <AddNewItem>Thêm mục mới</AddNewItem>
  1692. <BarRangeList>Danh sách thanh phạm vi</BarRangeList>
  1693. <GaugeEditorForm>Trình chỉnh sửa thước đo</GaugeEditorForm>
  1694. <Kind>Loại</Kind>
  1695. <LinearBar>Thanh thuyến tính</LinearBar>
  1696. <LinearMarker>Đánh dấu tuyến tính</LinearMarker>
  1697. <LinearRange>Phạm vi tuyến tính</LinearRange>
  1698. <LinearRangeList>Danh sách phạm vi tuyến tính</LinearRangeList>
  1699. <LinearScale>Thang đo tuyến tính</LinearScale>
  1700. <LinearTickLabelCustom>Nhãn đánh dấu tuyến tính tùy chọn</LinearTickLabelCustom>
  1701. <LinearTickLabelMajor>Nhãn đánh dấu tuyến tính chính</LinearTickLabelMajor>
  1702. <LinearTickLabelMinor>Nhãn đánh dấu tuyến tính phụ</LinearTickLabelMinor>
  1703. <LinearTickMarkCustom>Thanh đánh dấu tuyến tính tùy chọn</LinearTickMarkCustom>
  1704. <LinearTickMarkMajor>Thanh đánh dấu tuyến tính chính</LinearTickMarkMajor>
  1705. <LinearTickMarkMinor>Thanh đánh dấu tuyến tính phụ</LinearTickMarkMinor>
  1706. <Needle>Kim</Needle>
  1707. <RadialBar>Thanh hướng tâm</RadialBar>
  1708. <RadialMarker>Đánh dấu hướng tâm</RadialMarker>
  1709. <RadialRange>Phạm vi hướng tâm</RadialRange>
  1710. <RadialRangeList>Danh sách phạm vi hướng tâm</RadialRangeList>
  1711. <RadialScale>Thang đo hướng tâm</RadialScale>
  1712. <RadialTickLabelCustom>Nhãn đánh dấu hướng tâm tùy chọn</RadialTickLabelCustom>
  1713. <RadialTickLabelMajor>Nhãn đánh dấu hướng tâm chính</RadialTickLabelMajor>
  1714. <RadialTickLabelMinor>Nhãn đánh dấu hướng tâm phụ</RadialTickLabelMinor>
  1715. <RadialTickMarkCustom>Thanh đánh dấu hướng tâm tùy chọn</RadialTickMarkCustom>
  1716. <RadialTickMarkMajor>Thanh đánh dấu hướng tâm chính</RadialTickMarkMajor>
  1717. <RadialTickMarkMinor>Thanh đánh dấu hướng tâm phụ</RadialTickMarkMinor>
  1718. <StateIndicator>Chỉ số trạng thái</StateIndicator>
  1719. <StateIndicatorFilter>Bộ lọc chỉ số trạng thái</StateIndicatorFilter>
  1720. <TickCustomValue>Tùy chọn giá trị đánh dấu</TickCustomValue>
  1721. </Gauge>
  1722. <Gui>
  1723. <barname_cancel>Hủy</barname_cancel>
  1724. <barname_caption>Tạo mới tên công cụ</barname_caption>
  1725. <barname_msginvalidname>Tên thanh công cụ không được để trống.</barname_msginvalidname>
  1726. <barname_name>Tên thanh công cụ:</barname_name>
  1727. <barname_ok>Đồng ý</barname_ok>
  1728. <barrename_caption>Đổi tên thanh công cụ</barrename_caption>
  1729. <barsys_autohide_tooltip>Tự ẩn</barsys_autohide_tooltip>
  1730. <barsys_close_tooltip>Đóng</barsys_close_tooltip>
  1731. <barsys_customize_tooltip>Tùy chỉnh</barsys_customize_tooltip>
  1732. <colorpicker_morecolors>Thêm màu sắc...</colorpicker_morecolors>
  1733. <colorpicker_nofill>Không đổ màu</colorpicker_nofill>
  1734. <colorpicker_standardcolorslabel>Màu sắc tiêu chuẩn</colorpicker_standardcolorslabel>
  1735. <colorpicker_themecolorslabel>Màu sắc chủ đề</colorpicker_themecolorslabel>
  1736. <colorpickerdialog_alphalabel>&amp;Alpha:</colorpickerdialog_alphalabel>
  1737. <colorpickerdialog_bluelabel>Xanh da trời:</colorpickerdialog_bluelabel>
  1738. <colorpickerdialog_cancelbutton>Hủy</colorpickerdialog_cancelbutton>
  1739. <colorpickerdialog_caption>Màu sắc</colorpickerdialog_caption>
  1740. <colorpickerdialog_colormodellabel>Mô hình màu:</colorpickerdialog_colormodellabel>
  1741. <colorpickerdialog_currentcolorlabel>Hiện tại</colorpickerdialog_currentcolorlabel>
  1742. <colorpickerdialog_customcolorslabel>Màu sắc:</colorpickerdialog_customcolorslabel>
  1743. <colorpickerdialog_greenlabel>Xanh lá cây:</colorpickerdialog_greenlabel>
  1744. <colorpickerdialog_newcolorlabel>Mới</colorpickerdialog_newcolorlabel>
  1745. <colorpickerdialog_okbutton>Đồng ý</colorpickerdialog_okbutton>
  1746. <colorpickerdialog_redlabel>Đỏ:</colorpickerdialog_redlabel>
  1747. <colorpickerdialog_rgblabel>RGB</colorpickerdialog_rgblabel>
  1748. <colorpickerdialog_standardcolorslabel>Màu sắc:</colorpickerdialog_standardcolorslabel>
  1749. <colorpickerdialog_tabcustom>Tùy chỉnh</colorpickerdialog_tabcustom>
  1750. <colorpickerdialog_tabstandard>Tiêu chuẩn</colorpickerdialog_tabstandard>
  1751. <cust_btn_close>Đóng</cust_btn_close>
  1752. <cust_btn_delete>Xóa</cust_btn_delete>
  1753. <cust_btn_keyboard>Bàn phím...</cust_btn_keyboard>
  1754. <cust_btn_new>Mới...</cust_btn_new>
  1755. <cust_btn_rename>Đổi tên...</cust_btn_rename>
  1756. <cust_btn_reset>Cài đặt lại...</cust_btn_reset>
  1757. <cust_btn_resetusage> Cài đặt lại dữ liệu sử dụng của tôi</cust_btn_resetusage>
  1758. <cust_caption>Tùy chỉnh</cust_caption>
  1759. <cust_cbo_fade>Mờ</cust_cbo_fade>
  1760. <cust_cbo_none>(Không)</cust_cbo_none>
  1761. <cust_cbo_random>Ngẫu nhiên</cust_cbo_random>
  1762. <cust_cbo_slide>Trượt</cust_cbo_slide>
  1763. <cust_cbo_system>Mặc định hệ thống</cust_cbo_system>
  1764. <cust_cbo_unfold>Mở ra</cust_cbo_unfold>
  1765. <cust_chk_delay>Hiển thị toàn bộ bảng kê sau một khoảng chờ ngắn</cust_chk_delay>
  1766. <cust_chk_fullmenus>Luôn luôn hiển thị toàn bộ bảng kê</cust_chk_fullmenus>
  1767. <cust_chk_showsk>Hiển thị phím tắt trong mẹo màn hình</cust_chk_showsk>
  1768. <cust_chk_showst>Hiển thị các mẹo màn hình trên thanh công cụ</cust_chk_showst>
  1769. <cust_lbl_cats>Danh mục:</cust_lbl_cats>
  1770. <cust_lbl_cmds>Lệnh:</cust_lbl_cmds>
  1771. <cust_lbl_cmdsins>Để thêm một lệnh vào thanh, chọn danh mục và kéo lệnh ra khỏi hộp này vào thanh công cụ.</cust_lbl_cmdsins>
  1772. <cust_lbl_menuan>Hiệu ứng bảng kê:</cust_lbl_menuan>
  1773. <cust_lbl_other>Khác:</cust_lbl_other>
  1774. <cust_lbl_pmt>Cá nhân hóa bảng kê và thanh công cụ</cust_lbl_pmt>
  1775. <cust_lbl_tlbs>Thanh công cụ:</cust_lbl_tlbs>
  1776. <cust_mnu_addremove>Thêm hoặc xoá nút</cust_mnu_addremove>
  1777. <cust_mnu_cust>Tùy chỉnh...</cust_mnu_cust>
  1778. <cust_mnu_reset>Đặt lại thanh</cust_mnu_reset>
  1779. <cust_mnu_tooltip>Tùy chỉnh thanh</cust_mnu_tooltip>
  1780. <cust_msg_delete>Bạn có chắc chắn muốn xóa thanh công cụ &lt;barname&gt; không?</cust_msg_delete>
  1781. <cust_pm_begingroup>Nhóm bắt đầu</cust_pm_begingroup>
  1782. <cust_pm_delete>Xóa</cust_pm_delete>
  1783. <cust_pm_name>Tên:</cust_pm_name>
  1784. <cust_pm_reset>Cài đặt lại</cust_pm_reset>
  1785. <cust_pm_stydef>Phong cách mặc định</cust_pm_stydef>
  1786. <cust_pm_styimagetext>Hình ảnh và văn bản (luôn luôn)</cust_pm_styimagetext>
  1787. <cust_pm_stytextonly>Chỉ văn bản (luôn luôn)</cust_pm_stytextonly>
  1788. <cust_tab_commands>Lệnh</cust_tab_commands>
  1789. <cust_tab_options>Tùy chọn</cust_tab_options>
  1790. <cust_tab_toolbars>Thanh công cụ</cust_tab_toolbars>
  1791. <mdisysmenu_close>Đóng</mdisysmenu_close>
  1792. <mdisysmenu_maximize>Phóng to</mdisysmenu_maximize>
  1793. <mdisysmenu_minimize>Thu nhỏ</mdisysmenu_minimize>
  1794. <mdisysmenu_move>Di chuyển</mdisysmenu_move>
  1795. <mdisysmenu_next>Tiếp</mdisysmenu_next>
  1796. <mdisysmenu_restore>Khôi phục</mdisysmenu_restore>
  1797. <mdisysmenu_size>Kích thước</mdisysmenu_size>
  1798. <mdisystt_close>Đóng</mdisystt_close>
  1799. <mdisystt_minimize>Thu nhỏ</mdisystt_minimize>
  1800. <mdisystt_restore>Khôi phục</mdisystt_restore>
  1801. <monthcalendar_clearbutton>Xóa</monthcalendar_clearbutton>
  1802. <monthcalendar_todaybutton>Hôm nay</monthcalendar_todaybutton>
  1803. <navbar_navpaneoptions>Tuỳ chọn bảng điều hướng...</navbar_navpaneoptions>
  1804. <navbar_showfewerbuttons>Hiển thị ít nút hơn</navbar_showfewerbuttons>
  1805. <navbar_showmorebuttons>Hiển thị nhiều nút hơn</navbar_showmorebuttons>
  1806. <navPaneCollapseTooltip>Thu gọn bảng điều khiển</navPaneCollapseTooltip>
  1807. <navPaneExpandTooltip>Mở rộng bảng điều khiển</navPaneExpandTooltip>
  1808. <sys_custombar>Thanh tùy chỉnh</sys_custombar>
  1809. <sys_morebuttons>Thêm nút</sys_morebuttons>
  1810. </Gui>
  1811. <HelpComponents>
  1812. <StiBarCode>Thành phần này cho phép hiển thị mã vạch trong một báo cáo. Dữ liệu mã vạch được gửi đến một đối tượng dưới dạng một chuỗi. Chuỗi có thể chứa bất kỳ ký hiệu nào nhưng chỉ ký hiệu được cho phép của biểu đồ đã chọn có thể được hiển thị.</StiBarCode>
  1813. <StiChart>Thành phần này cho phép hiển thị biểu đồ trong một báo cáo. Các loại biểu đồ khác nhau đã sẵn. Trong số đó có biểu đồ thanh, đường thanh, đường, vùng, Gantt, biểu đồ tán xạ... </StiChart>
  1814. <StiChartElement>Phần tử này cho phép hiển thị biểu đồ trong trang tổng quan. Có nhiều loại biểu đồ khác nhau có sẵn.</StiChartElement>
  1815. <StiCheckBox>Thành phần này cho phép hiển thị một hộp chọn trong một báo cáo. Nó có thể hiển thị hai chế độ: "cho phép" hoặc "vô hiệu hóa".</StiCheckBox>
  1816. <StiChildBand>Dải con có thể được sử dụng để xuất ra hai dải trên một hàng dữ liệu.</StiChildBand>
  1817. <StiClone>Thành phần này được sử dụng để nhân bản các phần của một báo cáo vào một phần yêu cầu của một báo cáo. Nhân bản chỉ có thể được áp dụng cho nội dung của bảng điều khiển.</StiClone>
  1818. <StiColumnFooterBand>Dải này được sử dụng để xuất ra các chân trang của các cột trên dải dữ liệu. Dải chân cột được xuất ra một lần dưới mỗi cột. Tất cả các thành phần được đặt trên dải này cũng sẽ được xuất ra dưới mỗi cột.</StiColumnFooterBand>
  1819. <StiColumnHeaderBand>Dải này được sử dụng để xuất tiêu đề cột. Dải tiêu đề cột được sử dụng để chỉ xuất ra một lần. Tất cả các thành phần được đặt trên dải có thể được xuất ở trên mỗi cột.</StiColumnHeaderBand>
  1820. <StiComboBoxElement>Đại diện cho Danh sách sổ xuống được sử dụng để nhập giá trị trực tiếp vào điều khiển hoặc chọn từ danh sách các tùy chọn hiện có.</StiComboBoxElement>
  1821. <StiContainer>Đây là vùng hình chữ nhật mà các thành phần khác, bao gồm cả dải có thể đặt lên. Khi di chuyển đối tượng chứa các thành phần trong nó sẽ được di chuyển quá. Đối tượng chứa có thể được đặt cả trên băng và trên một trang.</StiContainer>
  1822. <StiCrossDataBand>Dải này được kết nối với nguồn dữ liệu. Nó được xuất ra số lần bằng số hàng trong nguồn dữ liệu. Một dải chéo được xuất ra từ trái sang phải.</StiCrossDataBand>
  1823. <StiCrossFooterBand>Dải này được sử dụng để xuất chân của dải dữ liệu chéo. Dải được xuất ra một lần sau tất cả các hàng của dải dữ liệu. Một dải chéo được xuất ra từ trái sang phải.</StiCrossFooterBand>
  1824. <StiCrossGroupFooterBand>Dải này được sử dụng để xuất ra chân trang của một nhóm. Nó được đặt dưới dải dữ liệu chéo. Mỗi chân trang chéo thuộc về dải tiêu đề chéo được chỉ định. Một dải chéo được xuất ra từ trái sang phải.</StiCrossGroupFooterBand>
  1825. <StiCrossGroupHeaderBand>Dải này là cơ bản cho báo cáo kết xuất bằng nhóm, khi sử dụng dữ liệu chéo. Không thể tạo nhóm mà không có dải này. Các thành phần để hiển thị thông tin theo nhóm được đặt trên tiêu đề nhóm. Thông tin có thể là tên nhóm, ngày tháng, điều kiện nhóm, dải được xuất ra ở đầu mỗi nhóm. Một dải chéo được xuất ra từ trái sang phải.</StiCrossGroupHeaderBand>
  1826. <StiCrossHeaderBand>Dải này được sử dụng để xuất tiêu đề. Nó được sử dụng kết hợp với dải chéo. Một dải chéo được xuất ra từ trái sang phải.</StiCrossHeaderBand>
  1827. <StiCrossTab>Thành phần tab chéo được sử dụng để biểu diễn dữ liệu có cấu trúc dưới dạng bảng.</StiCrossTab>
  1828. <StiDataBand>Dải dữ liệu được kết nối với nguồn dữ liệu và được xuất ra số lần bằng số hàng trong nguồn dữ liệu.</StiDataBand>
  1829. <StiDatePickerElement>Phần tử được sử dụng để chọn ngày giờ.</StiDatePickerElement>
  1830. <StiEmptyBand>Dải này được sử dụng để lấp đầy không gian trống ở cuối trang. Dải này làm đầy không gian trống trên mỗi trang của một báo cáo.</StiEmptyBand>
  1831. <StiFilterCategory>Nhóm các phần tử được sử dụng để lựa chọn và lọc các giá trị.</StiFilterCategory>
  1832. <StiFooterBand>Dải này được sử dụng để xuất ra tóm tắt bởi dải dữ liệu. Nó được đặt dưới dải dữ liệu và được xuất ra một lần sau tất cả các dòng dữ liệu được xuất ra bởi dải dữ liệu.</StiFooterBand>
  1833. <StiGauge>Thành phần này cho phép bạn hiển thị một giá trị trong phạm vi được xác định trước. Nó có thể có đại diện đồ họa khác nhau.</StiGauge>
  1834. <StiGaugeElement>Phần tử cho phép bạn hiển thị một giá trị trong phạm vi được xác định trước. Nó có thể có biểu diễn đồ họa khác nhau.</StiGaugeElement>
  1835. <StiGroupFooterBand>Dải nhóm chân trang được sử dụng để xuất ra nhóm chân trang. Dải này được đặt sau dải dữ liệu. Và đây chính là dải dữ liệu mà dải nhóm tiêu đề bị ràng buộc. Mỗi nhóm chân trang phụ thuộc một nhóm tiêu đề nhất định. Dãi nhóm chân trang sẽ không được xuất ra mà không có dải nhóm tiêu đề.</StiGroupFooterBand>
  1836. <StiGroupHeaderBand>Dải này là dải cơ bản để hiển thị các báo cáo có nhóm. Các thành phần để hiển thị thông tin theo nhóm này được đặt trên tiêu đề nhóm. Nó có thể là tên nhóm, ngày tháng, điều kiện nhóm ... Dải này được xuất ra một lần ở đầu mỗi nhóm.</StiGroupHeaderBand>
  1837. <StiHeaderBand>Dải này được sử dụng để xuất tiêu đề. Nó được sử dụng cùng với dải dữ liệu.</StiHeaderBand>
  1838. <StiHierarchicalBand>Dải này được kết nối với nguồn dữ liệu và số lượng xuất ra bằng số hàng trong nguồn dữ liệu. Dữ liệu được xuất ra dưới dạng cây.</StiHierarchicalBand>
  1839. <StiHorizontalLinePrimitive>Thành phần này được sử dụng để xuất ra một đường thẳng.</StiHorizontalLinePrimitive>
  1840. <StiImage>Thành phần này được sử dụng để xuất hình ảnh. Nó hỗ trợ các định dạng đồ họa, ví dụ như BMP, JPG, JPEG, GIF, TIFF, PNG, ICO, WMF, EMF.</StiImage>
  1841. <StiImageElement>Phần tử này được sử dụng để xuất hình ảnh. Nó hỗ trợ các định dạng đồ họa sau: BMP, JPG, JPEG, GIF, TIFF, PNG, ICO, WMF, EMF.</StiImageElement>
  1842. <StiIndicatorElement>Phần tử hiển thị sự khác biệt về giá trị giữa dữ liệu đầu vào.</StiIndicatorElement>
  1843. <StiListBoxElement>Phần tử cho phép chọn các mục từ danh sách.</StiListBoxElement>
  1844. <StiMap>Thành phần này được sử dụng để hiển thị dữ liệu được nhắm mục tiêu theo địa lý.</StiMap>
  1845. <StiMapCategory>Nhóm các phần tử để làm việc với bản đồ và dữ liệu.</StiMapCategory>
  1846. <StiMapElement>Phần tử này được sử dụng để hiển thị dữ liệu có mục tiêu theo địa lý.</StiMapElement>
  1847. <StiOnlineMapElement>Phần tử này được sử dụng để hiển thị các điểm đánh dấu địa lý trên bản đồ trực tuyến.</StiOnlineMapElement>
  1848. <StiOverlayBand>Dải này được sử dụng để xuất các thủy ấn trên một trang.</StiOverlayBand>
  1849. <StiPageFooterBand>Dải này được sử dụng để xuất ra thông tin ở cuối mỗi trang như số trang, ngày, và các thông tin bổ sung khác.</StiPageFooterBand>
  1850. <StiPageHeaderBand>Dải này được sử dụng để xuất ra tiêu đề trang như số trang, ngày, và các thông tin bổ sung khác. Nó được xuất ra ở đầu mỗi trang.</StiPageHeaderBand>
  1851. <StiPanel>Vùng chữ nhật có thể chứa các thành phần khác, bao gồm các dải. Khi bảng điều khiển được di chuyển, các thành phần trong nó cũng được di chuyển. Bảng điều khiển có thể được đặt trên dải hoặc trên một trang.</StiPanel>
  1852. <StiPanelElement>Một vùng hình chữ nhật có thể chứa các phần tử khác. Khi bảng điều khiển được di chuyển, các phần tử trong đó cũng được di chuyển.</StiPanelElement>
  1853. <StiPivotTableElement>Phần tử bảng tổng hợp được sử dụng cho biểu diễn dữ liệu có cấu trúc dưới dạng bảng.</StiPivotTableElement>
  1854. <StiProgressElement>Phần tử hiển thị tỷ lệ dữ liệu đầu vào. Nó có thể được trình bày trong các chế độ khác nhau - biểu đồ tròn , hình tròn, thanh.</StiProgressElement>
  1855. <StiRectanglePrimitive>Thành phần này được sử dụng để xuất các hình chữ nhật.</StiRectanglePrimitive>
  1856. <StiRegionMapElement>Phần tử này được sử dụng để hiển thị dữ liệu có mục tiêu theo địa lý.</StiRegionMapElement>
  1857. <StiReportSummaryBand>Dải này được sử dụng để xuất ra tóm tắt thông qua toàn bộ báo cáo. Nó được xuất ra một lần ở cuối của một báo cáo.</StiReportSummaryBand>
  1858. <StiReportTitleBand>Dải này được sử dụng để xuất ra tiêu đề báo cáo. Nó được xuất ra trong phần đầu của một báo cáo.</StiReportTitleBand>
  1859. <StiRichText>Thành phần này được sử dụng để xuất và chỉnh sửa văn bản RTF. Nó cũng hỗ trợ tải và lưu các tệp ở định dạng RTF.</StiRichText>
  1860. <StiRoundedRectanglePrimitive>Thành phần này được sử dụng để xuất các hình chữ nhật bo tròn.</StiRoundedRectanglePrimitive>
  1861. <StiShape>Thành phần này được sử dụng để chèn các hình dạng đã làm sẵn, chẳng hạn như các mũi tên, đường chéo xuống, đường chéo lên, đường ngang, các đường bên trái và bên phải, hình bầu dục, hình chữ nhật, hình chữ nhật tròn, đường trên cùng và dưới cùng, tam giác, đường thẳng đứng.</StiShape>
  1862. <StiShapeElement>Phần tử này được sử dụng để chèn các hình dạng sẵn có, như mũi tên, đường chéo lên, đường chéo xuống, đường ngang, đường trái và phải, hình bầu dục, hình chữ nhật, hình chữ nhật tròn, đường trên cùng và dưới cùng, hình tam giác, đường thẳng đứng.</StiShapeElement>
  1863. <StiSubReport>Thành phần này được sử dụng để xuất dữ liệu bổ sung ở các vị trí khác nhau của báo cáo.</StiSubReport>
  1864. <StiTable>Thành phần này là tập hợp các phần tử dữ liệu được tổ chức sử dụng mô hình cột dọc và các hàng ngang.</StiTable>
  1865. <StiTableElement>Phần tử này là tập hợp các phần tử dữ liệu được sắp xếp bằng cách sử dụng mô hình cột dọc và hàng ngang.</StiTableElement>
  1866. <StiText>Thành phần này là một đối tượng cơ bản để xuất dữ liệu dưới dạng văn bản.</StiText>
  1867. <StiTextElement>Phần tử này là một đối tượng cơ bản để xuất dữ liệu dưới dạng văn bản.</StiTextElement>
  1868. <StiTextInCells>Thành phần này được sử dụng để xuất ra một văn bản trong các ô. Nó thường được sử dụng để tạo các biểu mẫu.</StiTextInCells>
  1869. <StiTreeViewBoxElement>Phần tử được sử dụng để chọn các giá trị có danh sách thả xuống dưới dạng cây.</StiTreeViewBoxElement>
  1870. <StiTreeViewElement>Đại diện cho phần tử được sử dụng để hiển thị dữ liệu phân cấp dưới dạng cây.</StiTreeViewElement>
  1871. <StiVerticalLinePrimitive>Thành phần này được sử dụng để xuất các đường thẳng đứng.</StiVerticalLinePrimitive>
  1872. <StiWinControl>Thành phần cho phép hiển thị điều khiển trực quan từ. NET Framework.</StiWinControl>
  1873. <StiZipCode>Thành phần này được sử dụng để xuất ra mã bưu điện.</StiZipCode>
  1874. </HelpComponents>
  1875. <HelpDesigner>
  1876. <ActiveRelation>Đặt mối quan hệ ưu tiên để liên kết hai bảng. Nó được sử dụng trong chuyển đổi dữ liệu và bảng điều khiển. Chỉ một quan hệ trong mỗi nguồn dữ liệu có thể hoạt động.</ActiveRelation>
  1877. <Align>Thay đổi vị trí của các thành phần đã chọn.</Align>
  1878. <AlignBottom>Căn chỉnh nội dung của một thành phần xuống dưới.</AlignBottom>
  1879. <AlignCenter>Căn chỉnh nội dung của một thành phần đến trung tâm.</AlignCenter>
  1880. <AlignComponentBottom>Cho phép bạn căn chỉnh các đối tượng theo chiều ngang dọc theo cạnh dưới cùng của các thành phần được chọn.</AlignComponentBottom>
  1881. <AlignComponentCenter>Cho phép bạn căn chỉnh các đối tượng theo chiều ngang dọc theo cạnh giữa của các thành phần được chọn.</AlignComponentCenter>
  1882. <AlignComponentLeft>Cho phép bạn căn chỉnh các đối tượng theo chiều dọc dọc theo cạnh trái của các thành phần đã chọn.</AlignComponentLeft>
  1883. <AlignComponentMiddle>Cho phép bạn căn chỉnh các đối tượng theo chiều dọc dọc theo cạnh giữa của các thành phần được chọn.</AlignComponentMiddle>
  1884. <AlignComponentRight>Cho phép bạn căn chỉnh các đối tượng theo chiều dọc dọc theo cạnh phải của các thành phần được chọn.</AlignComponentRight>
  1885. <AlignComponentTop>Cho phép bạn căn chỉnh các đối tượng theo chiều ngang dọc theo cạnh trên của các thành phần được chọn.</AlignComponentTop>
  1886. <AlignLeft>Căn chỉnh nội dung của một thành phần sang trái.</AlignLeft>
  1887. <AlignMiddle>Tập trung các nội dung bằng các đường viền trên và dưới của một thành phần.</AlignMiddle>
  1888. <AlignRight>Căn chỉnh nội dung của một thành phần sang phải.</AlignRight>
  1889. <AlignToGrid>Căn chỉnh các thành phần đã chọn vào các nút lưới.</AlignToGrid>
  1890. <AlignTop>Căn chỉnh nội dung của một thành phần lên trên.</AlignTop>
  1891. <AlignWidth>Căn chỉnh nội dung của mội thành phần.</AlignWidth>
  1892. <Angle>Xoay nội dung của các thành phần.</Angle>
  1893. <AngleWatermark>Góc quay văn bản thủy ấn.</AngleWatermark>
  1894. <Background>Thay đổi nền của các thành phần đã chọn.</Background>
  1895. <biConditions>Kiểm soát danh sách các điều kiện của các thành phần được lựa chọn.</biConditions>
  1896. <BorderColor>Chọn màu đường viền của thành phần được chọn.</BorderColor>
  1897. <BorderSidesAll>Hiển thị tất cả đường viền của các thành phần được chọn.</BorderSidesAll>
  1898. <BorderSidesBottom>Hiển thị đường viền bên dưới của các thành phần được chọn.</BorderSidesBottom>
  1899. <BorderSidesLeft>Hiển thị đường viền bên trái của các thành phần được chọn.</BorderSidesLeft>
  1900. <BorderSidesNone>Không hiển thị tất cả các đường viền của các thành phần được chọn.</BorderSidesNone>
  1901. <BorderSidesRight>Hiển thị đường viền bên phải của các thành phần được chọn.</BorderSidesRight>
  1902. <BorderSidesTop>Hiển thị đường viền bên trên của các thành phần được chọn.</BorderSidesTop>
  1903. <BorderStyle>Chọn kiểu đường viền của các thành phần được chọn.</BorderStyle>
  1904. <BringToFront>Đưa thành phần đã chọn lên trước.</BringToFront>
  1905. <CenterHorizontally>Cho phép bạn căn chỉnh một thành phần theo chiều ngang tương đối so với các cạnh của đối tượng chứa thành phần đó.</CenterHorizontally>
  1906. <CenterVertically>Cho phép bạn căn chỉnh một thành phần theo chiều dọc tương đối so với các cạnh của đối tượng chứa thành phần đó.</CenterVertically>
  1907. <Close>Đóng trình thiết kế báo cáo.</Close>
  1908. <Columns>Chia một trang thành các cột.</Columns>
  1909. <ComponentSize>Thay đổi kích thước của các thành phần đã chọn.</ComponentSize>
  1910. <CopyStyle>Sao chép kiểu</CopyStyle>
  1911. <CopyToClipboard>Sao chép vào bộ nhớ tạm</CopyToClipboard>
  1912. <CurrencySymbol>Chọn biểu tượng tiền tệ.</CurrencySymbol>
  1913. <DashboardNew>Tạo một bảng điều khiển mới.</DashboardNew>
  1914. <DataStore>Hiển thị dữ liệu, đã đăng ký trong báo cáo.</DataStore>
  1915. <DateTimeFormat>Chọn định dạng ngày tháng và thời gian cho các thành phần đã chọn.</DateTimeFormat>
  1916. <DockingPanels>Cài đặt bảng điều khiển.</DockingPanels>
  1917. <DockStyleBottom>Gắn các thành phần đã chọn vào phía bên dưới.</DockStyleBottom>
  1918. <DockStyleFill>Gắn các thành phần đã chọn vào tất cả các phía.</DockStyleFill>
  1919. <DockStyleLeft>Gắn các thành phần đã chọn vào phía bên trái.</DockStyleLeft>
  1920. <DockStyleNone>Không gắn các thành phần đã chọn.</DockStyleNone>
  1921. <DockStyleRight>Gắn các thành phần đã chọn vào phía bên phải.</DockStyleRight>
  1922. <DockStyleTop>Gắn các thành phần đã chọn vào phía bên trên.</DockStyleTop>
  1923. <FontGrow>Làm cho kích thước văn bản lớn hơn.</FontGrow>
  1924. <FontName>Phông chữ.</FontName>
  1925. <FontNameWatermark>Phông chữ thủy ấn.</FontNameWatermark>
  1926. <FontShrink>Làm cho kích thước chữ nhỏ hơn.</FontShrink>
  1927. <FontSize>Cỡ chữ</FontSize>
  1928. <FontSizeWatermark>Thay đổi kích cỡ phông chữ.</FontSizeWatermark>
  1929. <FontStyleBold>Làm cho chữ đậm.</FontStyleBold>
  1930. <FontStyleBoldWatermark>Làm cho văn bản của thủy ấn đậm.</FontStyleBoldWatermark>
  1931. <FontStyleItalic>Làm cho chữ nghiêng.</FontStyleItalic>
  1932. <FontStyleItalicWatermark>Làm cho văn bản của thủy ấn nghiêng.</FontStyleItalicWatermark>
  1933. <FontStyleUnderline>Làm cho chữ gạch dưới.</FontStyleUnderline>
  1934. <FontStyleUnderlineWatermark>Làm cho văn bản của thủy ấn gạch chân.</FontStyleUnderlineWatermark>
  1935. <FormatBoolean>Định dạng này được sử dụng để định dạng các giá trị của kiểu boolean.</FormatBoolean>
  1936. <FormatCurrency>Hiển thị giá trị bằng đơn vị tiền tệ. Nó cho phép bạn hiển thị một số với ký hiệu tiền tệ mặc định.</FormatCurrency>
  1937. <FormatCustom>Kiểu này được sử dụng để hiển thị giá trị theo yêu cầu tùy chỉnh. Loại này cho phép định dạng dữ liệu trong định dạng mặt nạ.</FormatCustom>
  1938. <FormatDate>Hiển thị giá trị theo ngày. Định dạng ngày được dựa trên cài đặt ngày của khu vực.</FormatDate>
  1939. <FormatGeneral>Hiển thị giá trị không có định dạng cụ thể.</FormatGeneral>
  1940. <FormatNumber>Nó được sử dụng để hiển thị số.</FormatNumber>
  1941. <FormatPercentage>Hiển thị giá trị theo tỷ lệ phần trăm. Số được nhân với 100 để chuyển đổi chúng thành phần trăm.</FormatPercentage>
  1942. <FormatTime>Hiển thị một giá trị theo thời gian. Định dạng thời gian được dựa trên cài đặt thời gian khu vực.</FormatTime>
  1943. <FormNew>Tạo một hộp thoại mới.</FormNew>
  1944. <GridMode>Hiển thị lưới trong các đường kẻ hoặc chấm.</GridMode>
  1945. <ImageAlignment>Đặt thủy ấn trên một trang.</ImageAlignment>
  1946. <ImageTransparency>Thay đổi độ trong suốt của thủy ấn.</ImageTransparency>
  1947. <Interaction>Kiểm soát sự tương tác của các thành phần được chọn.</Interaction>
  1948. <LineSpacing>Chọn khoảng cách không gian xuất hiện giữa các dòng văn bản hoặc giữa các đoạn văn.</LineSpacing>
  1949. <Link>Liên kết thành phần vào thành phần chứa hiện tại.</Link>
  1950. <LoadImage>Nạp thủy ấn từ tệp tin.</LoadImage>
  1951. <Lock>Khóa thành phần. Không thể di chuyển và thay đổi kích thước thành phần.</Lock>
  1952. <MainMenu>Nhấp vào đây để xem danh sách các hoạt động có thể thực hiện với báo cáo, bao gồm mở, đóng và xem trước.</MainMenu>
  1953. <MakeHorizontalSpacingEqual>Cho phép bạn thiết lập khoảng cách ngang bằng nhau giữa các thành phần được chọn.</MakeHorizontalSpacingEqual>
  1954. <MakeVerticalSpacingEqual>Cho phép bạn đặt khoảng trắng bằng nhau giữa các thành phần được chọn.</MakeVerticalSpacingEqual>
  1955. <Margins>Chọn lề của trang hiện tại.</Margins>
  1956. <menuCheckIssues>Kiểm tra thông qua một báo cáo để tìm lỗi, cảnh báo và nhận được đề xuất.</menuCheckIssues>
  1957. <menuDesignerOptions>Thiết lập các tùy chọn thiết kế báo cáo.</menuDesignerOptions>
  1958. <menuEditClearContents>Xóa nội dung.</menuEditClearContents>
  1959. <menuEditCopy>Sao chép các thành phần đã chọn và đặt chúng vào bộ nhớ tạm.</menuEditCopy>
  1960. <menuEditCut>Cắt các thành phần đã chọn từ một báo cáo và đặt chúng vào bộ nhớ tạm.</menuEditCut>
  1961. <menuEditDelete>Xóa các thành phần đã chọn.</menuEditDelete>
  1962. <menuEditPaste>Dán nội dung của bộ nhớ tạm vào báo cáo.</menuEditPaste>
  1963. <menuFAQPage>Vào trang web với các câu hỏi thường gặp.</menuFAQPage>
  1964. <menuGlobalizationStrings>Gọi cho trình chỉnh sửa lược đồ toàn cầu hoá của báo cáo hiện tại.</menuGlobalizationStrings>
  1965. <menuHelpAboutProgramm>Nhận thông tin về phiên bản của trình tạo báo cáo và phiên bản của .NET Framework.</menuHelpAboutProgramm>
  1966. <menuHomePage>Đi tới trang chủ của sản phẩm.</menuHomePage>
  1967. <menuPageOptions>Thiết lập các thông số cơ bản của trang hiện tại. Tất cả các tùy chọn trang có thể được thay đổi bằng cách sử dụng bảng điều khiển thuộc tính.</menuPageOptions>
  1968. <menuPagesManager>Chạy trình quản lý trang. Nó cho phép di chuyển các trang, xóa các trang, và tạo các trang mới.</menuPagesManager>
  1969. <menuPreviewSettings>Gọi trình chỉnh sửa cài đặt xem trước của báo cáo hiện tại. Cài đặt sẽ chỉ được áp dụng khi xem báo cáo hiện tại.</menuPreviewSettings>
  1970. <menuPrint>Chọn máy in, số bản sao, và các tùy chọn in khác trước khi in.</menuPrint>
  1971. <menuPrintPreview>Xem trước báo cáo trước khi in.</menuPrintPreview>
  1972. <menuPrintQuick>In báo cáo trực tiếp đến máy in mặc định. Hộp thoại in không được hiển thị.</menuPrintQuick>
  1973. <menuReportOptions>Thiết lập các tùy chọn báo cáo cơ bản. Tất cả tùy chọn có thể được thay đổi bằng bảng thuộc tính.</menuReportOptions>
  1974. <menuStyleDesigner>Gọi cho trình thiết kế phong cách của báo cáo hiện tại.</menuStyleDesigner>
  1975. <menuSupport>Truy cập trang hỗ trợ để đặt câu hỏi.</menuSupport>
  1976. <menuViewAlignToGrid>Căn chỉnh các thành phần vào lưới.</menuViewAlignToGrid>
  1977. <menuViewNormal>Chế độ xem bình thường của một trang.</menuViewNormal>
  1978. <menuViewPageBreakPreview>Chế độ hiển thị trang có đường viền của các phân đoạn.</menuViewPageBreakPreview>
  1979. <menuViewQuickInfo>Hiển thị thông tin nhanh về các thành phần: tên thành phần, bí danh, nội dung, sự kiện...</menuViewQuickInfo>
  1980. <menuViewShowGrid>Bật các đường lưới để bạn có thể căn chỉnh các đối tượng trong một báo cáo.</menuViewShowGrid>
  1981. <menuViewShowHeaders>Hiển thị tiêu đề các dải.</menuViewShowHeaders>
  1982. <menuViewShowOrder>Hiển thị thứ tự các thành phần trên một trang.</menuViewShowOrder>
  1983. <menuViewShowRulers>Xem thước đo, được sử dụng để đo và xếp các đối tượng trên một trang.</menuViewShowRulers>
  1984. <MoveBackward>Di chuyển một thành phần đến một cấp độ cao hơn theo thứ tự đặt các thành phần trên một trang.</MoveBackward>
  1985. <MoveForward>Di chuyển một thành phần đến một cấp độ thấp hơn theo thứ tự đặt các thành phần trên một trang.</MoveForward>
  1986. <Orientation>Chuyển đổi các trang giữa bố cục dọc và ngang.</Orientation>
  1987. <PageDelete>Xóa trang hiện tại khỏi một báo cáo.</PageDelete>
  1988. <PageNew>Tạo một trang mới.</PageNew>
  1989. <PageSetup>Hiển thị hộp thoại cài đặt trang.</PageSetup>
  1990. <PageSize>Chọn kích thước giấy cho trang hiện tại của một báo cáo.</PageSize>
  1991. <PagesManager>Chạy trình quản lý trang.</PagesManager>
  1992. <PressF1>Nhấn F1 để biết thêm chi tiết</PressF1>
  1993. <Redo>Hoàn tác thay đổi đã hủy trước đó trong báo cáo.</Redo>
  1994. <ReportNew>Tạo một báo cáo mới.</ReportNew>
  1995. <ReportOpen>Mở một báo cáo trong trình thiết kế.</ReportOpen>
  1996. <ReportPreview>Xem trước báo cáo đã chỉnh sửa trong trình xem.</ReportPreview>
  1997. <ReportSave>Lưu báo cáo đã chỉnh sửa hiện tại.</ReportSave>
  1998. <SelectAll>Chọn tất cả các thành phần trên trang hiện tại.</SelectAll>
  1999. <SelectUILanguage>Chọn ngôn ngữ giao diện người dùng.</SelectUILanguage>
  2000. <SendToBack>Di chuyển thành phần đã chọn xuống dưới các thành phần liên quan khác.</SendToBack>
  2001. <ServicesConfigurator>Chạy trình cấu hình dịch vụ.</ServicesConfigurator>
  2002. <Shadow>Hiển thị bóng của một thành phần.</Shadow>
  2003. <ShowBehind>Hiển thị văn bản thủy ấn phía sau các thành phần.</ShowBehind>
  2004. <ShowImageBehind>Đặt thủy ấn dưới tất cả các thành phần trên một trang.</ShowImageBehind>
  2005. <ShowToolbox>Hiển thị hộp công cụ.</ShowToolbox>
  2006. <StimulsoftHelp>Trợ giúp Stimulsoft</StimulsoftHelp>
  2007. <StyleDesigner>Thực hiện thiết kế kiểu dáng.</StyleDesigner>
  2008. <TellMeMore>Xem thêm</TellMeMore>
  2009. <Text>Chữ thủy ấn.</Text>
  2010. <TextBrush>Thay đổi màu văn bản.</TextBrush>
  2011. <TextBrushWatermark>Thay đổi màu văn bản thủy ấn.</TextBrushWatermark>
  2012. <TextColor>Thay đổi màu văn bản.</TextColor>
  2013. <TextFormat>Chọn định dạng giá trị.</TextFormat>
  2014. <ToolbarStyle>Đặt kiểu đã chọn cho tất cả các thành phần đã chọn.</ToolbarStyle>
  2015. <Undo>Hoàn tác thay đổi mới nhất trong báo cáo.</Undo>
  2016. <WordWrap>Bao bọc văn bản của một thành phần.</WordWrap>
  2017. <Zoom>Chỉ định mức thu phóng của báo cáo.</Zoom>
  2018. </HelpDesigner>
  2019. <HelpDialogs>
  2020. <StiButtonControl>Đại diện cho điều khiển nút.</StiButtonControl>
  2021. <StiCheckBoxControl>Đại diện cho điều khiển cờ.</StiCheckBoxControl>
  2022. <StiCheckedListBoxControl>Đại diện cho điều khiển hiển thị danh sách đối tượng, trong đó một lá cờ ở bên trái được hiển thị cho mỗi phần tử.</StiCheckedListBoxControl>
  2023. <StiComboBoxControl>Đại diện cho điều khiển danh sách xổ xuống được sử dụng để nhập giá trị trực tiếp hoặc chọn từ danh sách các tùy chọn hiện có.</StiComboBoxControl>
  2024. <StiDateTimePickerControl>Đại diện cho điều khiển cho phép chọn ngày tháng và thời gian. Nó cũng cho phép bạn xuất ra ngày tháng và thời gian ở định dạng được chỉ định.</StiDateTimePickerControl>
  2025. <StiGridControl>Biểu diễn điều khiển bảng bao gồm các hàng và cột.</StiGridControl>
  2026. <StiGroupBoxControl>Đại diện cho điều khiển tạo vùng chứa có đường viền và tiêu đề cho nội dung UI.</StiGroupBoxControl>
  2027. <StiLabelControl>Đại diện cho điều khiển giao diện người dùng hiển thị văn bản trên một biểu mẫu. Nó thường là một thành phần tĩnh không có tương tác.</StiLabelControl>
  2028. <StiListBoxControl>Chứa danh sách các yếu tố để lựa chọn.</StiListBoxControl>
  2029. <StiListViewControl>Đại diện cho danh sách để hiển thị danh sách các phần tử dữ liệu.</StiListViewControl>
  2030. <StiLookUpBoxControl>Chứa danh sách các yếu tố để lựa chọn.</StiLookUpBoxControl>
  2031. <StiNumericUpDownControl>Đại diện cho điều khiển hiển thị các giá trị số.</StiNumericUpDownControl>
  2032. <StiPanelControl>Các phần tử bảng được sử dụng để đặt và sắp xếp các đối tượng.</StiPanelControl>
  2033. <StiPictureBoxControl>Đại diện cho điều khiển hiển thị hình ảnh.</StiPictureBoxControl>
  2034. <StiRadioButtonControl>Đại diện cho điều khiển nút radio cho phép người dùng chỉ chọn một trong các bộ tùy chọn được xác định trước.</StiRadioButtonControl>
  2035. <StiRichTextBoxControl>Đại diện cho điều khiển văn bản phong phú với mở rộng chỉnh sửa.</StiRichTextBoxControl>
  2036. <StiTextBoxControl>Đại diện cho điều khiển văn bản được sử dụng để hiển thị hoặc chỉnh sửa văn bản.</StiTextBoxControl>
  2037. <StiTreeViewControl>Đại diện cho điều khiển được sử dụng để hiển thị dữ liệu có tính phân cấp như một cây.</StiTreeViewControl>
  2038. </HelpDialogs>
  2039. <HelpViewer>
  2040. <AddPageBreaks>Phân tách trực quan các trang báo cáo.</AddPageBreaks>
  2041. <AllowAddOrModifyTextAnnotations>Truy cập hạn chế để làm việc với các chú thích trong tài liệu.</AllowAddOrModifyTextAnnotations>
  2042. <AllowCopyTextAndGraphics>Truy cập hạn chế để sao chép thông tin.</AllowCopyTextAndGraphics>
  2043. <AllowEditable>Cho phép thay đổi các thành phần với tính năng chỉnh sửa được bật.</AllowEditable>
  2044. <AllowModifyContents>Hạn chế quyền truy cập vào việc chỉnh sửa văn bản.</AllowModifyContents>
  2045. <AllowPrintDocument>Hạn chế quyền truy cập vào hoạt động in.</AllowPrintDocument>
  2046. <Bookmarks>Hiển thị bảng đánh dấu trang được sử dụng để điều hướng nhanh để chuyển trực tiếp đến vị trí được đánh dấu.</Bookmarks>
  2047. <BorderType>Kiểu viền của các thành phần: đơn giản - vẽ viền của các thành phần có ký tự +, -, |; Unicode đơn - vẽ viền với các ký tự vẽ hộp đơn, Unicode hai lần - vẽ viền với các ký tự vẽ hộp kép.</BorderType>
  2048. <Close>Đóng xem trước báo cáo.</Close>
  2049. <CloseDotMatrix>Đóng trình xem ma trận điểm.</CloseDotMatrix>
  2050. <Compressed>Nén các tài liệu đã sẵn sàng. Nên luôn luôn bao gồm tệp nén.</Compressed>
  2051. <CompressToArchive>Nén tất cả các tệp và thư mục thành lưu trữ zip.</CompressToArchive>
  2052. <ContinuousPages>Chế độ đặt các trang báo cáo dưới dạng dải dọc.</ContinuousPages>
  2053. <CurrentPage>Xử lý trang hiện tại. Nếu tùy chọn này được chọn, thì một trang báo cáo đã chọn sẽ được xử lý.</CurrentPage>
  2054. <CutEdges>Cắt viền của các trang báo cáo.</CutEdges>
  2055. <CutLongLines>Cắt các dòng dài (dòng văn bản) bằng các đường biên của các thành phần.</CutLongLines>
  2056. <DigitalSignature>Chữ ký số của tệp.</DigitalSignature>
  2057. <DitheringType>Loại phối màu: Không - Không phối màu, Đã sắp xếp, FloydSt. - với phối màu.</DitheringType>
  2058. <DotMatrixMode>Chế độ này cho phép bạn xem báo cáo sẽ như thế nào nếu in nó trên một máy in ma trận điểm.</DotMatrixMode>
  2059. <DrawBorder>Vẽ đường viền của các thành phần có các ký tự đồ hoạ.</DrawBorder>
  2060. <Edit>Chỉnh sửa các thành phần.</Edit>
  2061. <EmbeddedFonts>Nhúng các tệp tin phông chữ vào một tệp tin PDF.</EmbeddedFonts>
  2062. <EmbeddedImageData>Nhúng hình ảnh trực tiếp vào tệp HTML.</EmbeddedImageData>
  2063. <Encoding>Mã hóa văn bản báo cáo sau khi xuất.</Encoding>
  2064. <EncodingData>Mã hóa tệp dữ liệu.</EncodingData>
  2065. <EncryptionKeyLength>Chiều dài của khoá mã hóa. Chiều dài càng dài, càng khó giải mã tài liệu, và do đó, bảo mật tài liệu được ưu tiên cao hơn.</EncryptionKeyLength>
  2066. <ExportDataOnly>Chỉ xuất dải dữ liệu (thành phần bảng, dải phân đoạn).</ExportDataOnly>
  2067. <ExportEachPageToSheet>Xuất mỗi trang báo cáo ra một bảng tính Excel riêng biệt.</ExportEachPageToSheet>
  2068. <ExportMode>Áp dụng điều kiện lọc khi xuất. Chỉ dữ liệu - chỉ các dải dữ liệu (thành phần bảng, dải phân đoạn) mới được xuất. Dữ liệu và tiêu đề / chân trang - các dải dữ liệu (thành phần bảng, dải phân đoạn) và tiêu đề / chân trang của chúng sẽ được xuất. Tất cả các dải - Tất cả dải báo cáo sẽ được xuất.</ExportMode>
  2069. <ExportModeHtml>Cách đánh dấu trang HTML.</ExportModeHtml>
  2070. <ExportModeRtf>Trình bày dữ liệu báo cáo sau khi xuất. Bảng - báo cáo sẽ giống như một bảng, trong đó mỗi thành phần báo cáo là một ô trong bảng. Khung - mỗi thành phần sẽ giống như một khung đơn, nhưng không có mối quan hệ nào giữa chúng.</ExportModeRtf>
  2071. <ExportObjectFormatting>Áp dụng định dạng để xuất dữ liệu từ dải dữ liệu (thành phần bảng, dải phân đoạn).</ExportObjectFormatting>
  2072. <ExportPageBreaks>Hiển thị đường viền của các trang báo cáo trên bảng tính Excel.</ExportPageBreaks>
  2073. <ExportRtfTextAsImage>Chuyển đổi văn bản RTF vào hình ảnh. Nếu tùy chọn được kích hoạt, sau đó, khi xuất khẩu, RichText phân hủy thành các nguyên thủy đơn giản được hỗ trợ bởi định dạng PDF. Không thể luôn luôn chuyển đổi RichText với định dạng phức tạp (hình ảnh, bảng). Trong trường hợp này, bạn nên bật tùy chọn này.</ExportRtfTextAsImage>
  2074. <Find>Tìm kiếm trong báo cáo.</Find>
  2075. <FullScreen>Đọc toàn màn hình.</FullScreen>
  2076. <GetCertificateFromCryptoUI>Sử dụng giao diện của thư viện mật mã hệ thống.</GetCertificateFromCryptoUI>
  2077. <ImageCompressionMethod>Phương pháp nén: JPEG - điều này có thể làm mất chất lượng, Flate - không mất chất lượng, Đơn giản, Đã sắp xếp, FloydSt. - hình ảnh được xuất ra đơn sắc.</ImageCompressionMethod>
  2078. <ImageFormat>Định dạng hình ảnh trong tệp tin đã hoàn tất.</ImageFormat>
  2079. <ImageQuality>Cho phép bạn chọn tỷ lệ chất lượng hình ảnh / kích thước của tệp tin. Chất lượng càng cao thì kích thước của tệp tin đã hoàn tất càng lớn.</ImageQuality>
  2080. <ImageQualityPdf>Tùy chọn này chỉ có sẵn trong nén JPEG, và cho phép bạn chọn tỷ lệ chất lượng hình ảnh / kích thước của tệp. hất lượng càng cao thì kích thước của tệp tin đã hoàn tất càng lớn.</ImageQualityPdf>
  2081. <ImageResolution>Số điểm ảnh trên mỗi inch. Số lượng điểm ảnh càng lớn càng tốt, chất lượng hình ảnh càng tốt. Kích thước của tệp hoàn chỉnh sẽ glớn hơn nhiều.</ImageResolution>
  2082. <ImageType>Phông màu của hình ảnh: màu - hình ảnh sau khi xuất hoàn toàn khớp với hình ảnh trong trình xem; xám - hình ảnh sau khi xuất sẽ có màu xám; đơn sắc - hình ảnh sẽ hoàn toàn đen trắng. Đồng thời, cần lưu ý rằng đơn sắc có ba chế độ Không, Đã sắp xếp, FloydSt.</ImageType>
  2083. <KillSpaceLines>Xóa dòng trống (hàng) trong tài liệu.</KillSpaceLines>
  2084. <MultipleFiles>Mỗi trang báo cáo có thể là một tệp riêng biệt.</MultipleFiles>
  2085. <Open>Mở báo cáo đã lưu trước đó trong cửa sổ xem trước.</Open>
  2086. <OpenAfterExport>Tự động mở tài liệu được tạo ra (sau khi xuất) bởi chương trình đã đặt cho các loại tệp này.</OpenAfterExport>
  2087. <OwnerPassword>Mật khẩu để truy cập hoạt động với các tệp tin.</OwnerPassword>
  2088. <PageAll>Xử lý tất cả các trang báo cáo.</PageAll>
  2089. <PageDelete>Xóa trang báo cáo đã chọn.</PageDelete>
  2090. <PageDesign>Chỉnh sửa trang được chọn trong trình thiết kế báo cáo.</PageDesign>
  2091. <PageFirst>Chuyển đến trang báo cáo đầu tiên.</PageFirst>
  2092. <PageGoTo>Chuyển đến trang báo cáo cụ thể.</PageGoTo>
  2093. <PageLast>Chuyển đến trang báo cáo mới nhất.</PageLast>
  2094. <PageNew>Thêm trang mới vào báo cáo.</PageNew>
  2095. <PageNext>Chuyển đến trang báo cáo tiếp theo.</PageNext>
  2096. <PagePrevious>Chuyển đến trang báo cáo trước.</PagePrevious>
  2097. <PageSize>Thay đổi các tham số trang trong một báo cáo.</PageSize>
  2098. <Parameters>Hiển thị bảng tham số được sử dụng khi xuất báo cáo.</Parameters>
  2099. <PdfACompliance>Hỗ trợ tiêu chuẩn nén và lưu trữ tài liệu điện tử dài hạn.</PdfACompliance>
  2100. <Print>In báo cáo.</Print>
  2101. <PutFeedPageCode>Các trang nguồn cấp dữ liệu trong tài liệu cuối cùng với một ký tự đặc biệt.</PutFeedPageCode>
  2102. <RangePages>Các số trang sẽ được xử lý. Bạn có thể chỉ định một trang duy nhất, một danh sách các trang (sử dụng dấu phẩy làm dấu tách), cũng như chỉ định phạm vi bằng cách đặt trang đầu tiên của phạm vi phân cách với trang cuối của phạm vi bằng dấu "-". Ví dụ: 1,3,5-12.</RangePages>
  2103. <RemoveEmptySpaceAtBottom>Giảm thiểu khoảng trống ở cuối trang.</RemoveEmptySpaceAtBottom>
  2104. <Resources>Hiển thị bảng tài nguyên</Resources>
  2105. <RestrictEditing>Giới hạn về thay đổi trong một tài liệu Word.</RestrictEditing>
  2106. <Save>Lưu báo cáo để tiếp tục sử dụng.</Save>
  2107. <ScaleHtml>Kích thước (tỉ lệ) của các trang báo cáo và các mục sau khi xuất.</ScaleHtml>
  2108. <ScaleImage>Kích thước (tỉ lệ) của báo cáo sau khi xuất. Tỉ lệ càng thấp, thì số lượng điểm ảnh trên mỗi inch càng lớn, và ngược lại.</ScaleImage>
  2109. <SendEMail>Gửi báo cáo qua thư điện tử.</SendEMail>
  2110. <Separator>Phân cách giữa dữ liệu trong tệp CSV.</Separator>
  2111. <SkipColumnHeaders>Bật / tắt tiêu đề cột.</SkipColumnHeaders>
  2112. <StandardPdfFonts>14 phông chữ Adobe tiêu chuẩn. Nếu tùy chọn này được kích hoạt, sau đó chỉ có 14 phông chữ tiêu chuẩn sẽ được sử dụng trong tệp PDF. Tất cả các phông chữ báo cáo được chuyển đổi thành chúng.</StandardPdfFonts>
  2113. <SubjectNameString>Chứng chỉ nhận dạng. Tên nhận dạng là tên của chủ sở hữu chứng chỉ (dòng đầy đủ) hoặc một phần của tên (chuỗi con).</SubjectNameString>
  2114. <Thumbnails>Hiển thị các hình thu nhỏ có thể được sử dụng để điều hướng nhanh để tìm phần của báo cáo mà bạn muốn chuyển đến.</Thumbnails>
  2115. <TiffCompressionScheme>Lược đồ nén cho các tệp TIFF.</TiffCompressionScheme>
  2116. <ToolEditor>Công cụ này cho phép bạn chỉnh sửa nội dung của các thành phần văn bản trực tiếp trong trình xem báo cáo.</ToolEditor>
  2117. <TypeExport>Tệp báo cáo sẽ được chuyển đổi thành.</TypeExport>
  2118. <UseDefaultSystemEncoding>Sử dụng mã hóa hệ thống theo mặc định hoặc chỉ định mã hóa theo tiêu chuẩn.</UseDefaultSystemEncoding>
  2119. <UseOnePageHeaderAndFooter>Định nghĩa dải tiêu đề trang và chân trang làm tiêu đề và chân trang của tài liệu Microsoft Word.</UseOnePageHeaderAndFooter>
  2120. <UsePageHeadersAndFooters>Định nghĩa dải tiêu đề trang và chân trang làm tiêu đề và chân trang của tài liệu trong Microsoft Word</UsePageHeadersAndFooters>
  2121. <UserPassword>Mật khẩu được yêu cầu để mở tài liệu.</UserPassword>
  2122. <UseUnicode>Hỗ trợ mở rộng cho các ký tự mã hóa. Nó ảnh hưởng đến bộ mã hóa ký tự bên trong tệp PDF và cải thiện việc sao chép văn bản từ tệp PDF.</UseUnicode>
  2123. <ViewModeContinuous>Hiển thị tất cả các trang báo cáo dưới dạng ruy băng dọc.</ViewModeContinuous>
  2124. <ViewModeMultiplePages>Thu phóng báo cáo để có thể hiển thị nhiều trang nhất trong cửa sổ.</ViewModeMultiplePages>
  2125. <ViewModeSinglePage>Hiển thị một trang duy nhất trong cửa sổ xem trước.</ViewModeSinglePage>
  2126. <ZoomMultiplePages>Thu phóng báo cáo để các trang được chọn phù hợp với cửa sổ.</ZoomMultiplePages>
  2127. <ZoomOnePage>Thu phóng báo cáo để toàn bộ trang phù hợp trong cửa sổ.</ZoomOnePage>
  2128. <ZoomPageWidth>Thu phóng báo cáo để chiều rộng trang phù hợp với chiều rộng của cửa sổ.</ZoomPageWidth>
  2129. <ZoomTwoPages>Thu phóng báo cáo để hai trang phù hợp với cửa sổ.</ZoomTwoPages>
  2130. <ZoomTxt>Kích thước báo cáo (tỉ lệ): X - thay đổi tỉ lệ ngang, Y - để thay đổi tỉ lệ dọc.</ZoomTxt>
  2131. </HelpViewer>
  2132. <Interface>
  2133. <Mouse>Chuột</Mouse>
  2134. <MouseDescription>Được tối ưu hóa để sử dụng với chuột</MouseDescription>
  2135. <Touch>Chạm</Touch>
  2136. <TouchDescription>Tối ưu cho sử dụng với chạm</TouchDescription>
  2137. </Interface>
  2138. <MainMenu>
  2139. <menuCheckIssues>Kiểm tra các vấn đề</menuCheckIssues>
  2140. <menuContextClone>Đóng...</menuContextClone>
  2141. <menuContextDesign>Thiết kế...</menuContextDesign>
  2142. <menuContextTextFormat>Định dạng văn bản...</menuContextTextFormat>
  2143. <menuConvertToCheckBox>Chuyển đổi sang hộp kiểm</menuConvertToCheckBox>
  2144. <menuConvertToImage>Chuyển đổi sang hình ảnh</menuConvertToImage>
  2145. <MenuConvertToRichText>Chuyển đổi sang văn bản đa dạng</MenuConvertToRichText>
  2146. <menuConvertToText>Chuyển đổi sang văn bản</menuConvertToText>
  2147. <menuDeleteColumn>Xóa cột</menuDeleteColumn>
  2148. <menuDeleteRow>Xóa hàng</menuDeleteRow>
  2149. <menuEdit>Chỉnh sửa</menuEdit>
  2150. <menuEditBusinessObjectFromDataSetNew>Đối tượng công việc mới từ bộ dữ liệu...</menuEditBusinessObjectFromDataSetNew>
  2151. <menuEditBusinessObjectNew>Tạo mới đối tượng công việc...</menuEditBusinessObjectNew>
  2152. <menuEditCalcColumnNew>Tạo mới cột tính toán...</menuEditCalcColumnNew>
  2153. <menuEditCantRedo>Không thể làm lại</menuEditCantRedo>
  2154. <menuEditCantUndo>Không thể hoàn tác</menuEditCantUndo>
  2155. <menuEditCategoryNew>Tạo danh mục mới...</menuEditCategoryNew>
  2156. <menuEditClearContents>Xóa nội dung</menuEditClearContents>
  2157. <menuEditColumnNew>Tạo cột mới...</menuEditColumnNew>
  2158. <menuEditConnectionNew>Tạo kết nối mới...</menuEditConnectionNew>
  2159. <menuEditCopy>Sao chép</menuEditCopy>
  2160. <menuEditCut>Cắt</menuEditCut>
  2161. <menuEditDataParameterNew>Tạo tham số mới...</menuEditDataParameterNew>
  2162. <menuEditDataSourceNew>Tạo nguồn dữ liệu mới...</menuEditDataSourceNew>
  2163. <menuEditDataSourcesNew>Tạo nhiều nguồn dữ liệu mới...</menuEditDataSourcesNew>
  2164. <menuEditDataTransformationNew>Tạo mới chuyển đổi dữ liệu...</menuEditDataTransformationNew>
  2165. <menuEditDelete>Xóa</menuEditDelete>
  2166. <menuEditEdit>Chỉnh sửa</menuEditEdit>
  2167. <menuEditImportRelations>Nhập các quan hệ...</menuEditImportRelations>
  2168. <menuEditPaste>Dán</menuEditPaste>
  2169. <menuEditRedo>Hoàn tác</menuEditRedo>
  2170. <menuEditRedoText>Hoàn tác {0}</menuEditRedoText>
  2171. <menuEditRelationNew>Tạo mới quan hệ...</menuEditRelationNew>
  2172. <menuEditRemoveUnused>Xóa mục không sử dụng</menuEditRemoveUnused>
  2173. <menuEditResourceNew>Tạo tài nguyên mới...</menuEditResourceNew>
  2174. <menuEditSelectAll>Chọn tất cả</menuEditSelectAll>
  2175. <menuEditSynchronize>Đồng bộ hóa</menuEditSynchronize>
  2176. <menuEditUndo>Hoàn tác</menuEditUndo>
  2177. <menuEditUndoText>Hoàn tác {0}</menuEditUndoText>
  2178. <menuEditVariableNew>Tạo biến mới...</menuEditVariableNew>
  2179. <menuEditViewData>Xem dữ liệu...</menuEditViewData>
  2180. <menuEmbedAllDataToResources>Nhúng tất cả dữ liệu vào tài nguyên</menuEmbedAllDataToResources>
  2181. <menuFile>Tệp</menuFile>
  2182. <menuFileClose>Đóng</menuFileClose>
  2183. <menuFileDashboardDelete>Xóa trang tổng quan</menuFileDashboardDelete>
  2184. <menuFileDashboardNew>Tạo bảng thông tin mới</menuFileDashboardNew>
  2185. <menuFileDashboardOpen>Mở bảng thông tin...</menuFileDashboardOpen>
  2186. <menuFileDashboardSaveAs>Lưu bảng thông tin thành...</menuFileDashboardSaveAs>
  2187. <menuFileExit>Thoát</menuFileExit>
  2188. <menuFileExportXMLSchema>Xuất lược đồ XML...</menuFileExportXMLSchema>
  2189. <menuFileFormNew>Tạo biểu mẫu mới</menuFileFormNew>
  2190. <menuFileImportXMLSchema>Nạp lược đồ XML...</menuFileImportXMLSchema>
  2191. <menuFileMerge>Hợp nhất...</menuFileMerge>
  2192. <menuFileMergeXMLSchema>Hợp nhất lược đồ XML...</menuFileMergeXMLSchema>
  2193. <menuFileNew>Tạo mới</menuFileNew>
  2194. <menuFileOpen>Mở...</menuFileOpen>
  2195. <menuFilePageDelete>Xóa trang</menuFilePageDelete>
  2196. <menuFilePageNew>Tạo trang mới</menuFilePageNew>
  2197. <menuFilePageOpen>Mở trang...</menuFilePageOpen>
  2198. <menuFilePageSaveAs>Lưu trang thành...</menuFilePageSaveAs>
  2199. <menuFilePageSetup>Thiết lập trang...</menuFilePageSetup>
  2200. <menuFileRecentDocuments>Các tài liệu gần đây</menuFileRecentDocuments>
  2201. <menuFileRecentLocations>Các vị trí gần đây </menuFileRecentLocations>
  2202. <menuFileReportNew>Tạo báo cáo mới...</menuFileReportNew>
  2203. <menuFileReportOpen>Mở báo cáo...</menuFileReportOpen>
  2204. <menuFileReportOpenFromGoogleDocs>Mở báo cáo từ Google Docs...</menuFileReportOpenFromGoogleDocs>
  2205. <menuFileReportPreview>Xem trước</menuFileReportPreview>
  2206. <menuFileReportSave>Lưu báo cáo</menuFileReportSave>
  2207. <menuFileReportSaveAs>Lưu báo cáo thành...</menuFileReportSaveAs>
  2208. <menuFileReportSaveAsToGoogleDocs>Lưu báo cáo như là tới Google Docs...</menuFileReportSaveAsToGoogleDocs>
  2209. <menuFileReportSetup>Thiết lập báo cáo...</menuFileReportSetup>
  2210. <menuFileReportWizardNew>Tạo báo cáo mới với thuật sĩ...</menuFileReportWizardNew>
  2211. <menuFileSave>Lưu</menuFileSave>
  2212. <menuFileSaveAs>Lưu thành...</menuFileSaveAs>
  2213. <menuHelp>Trợ giúp</menuHelp>
  2214. <menuHelpAboutProgramm>Về chúng tôi...</menuHelpAboutProgramm>
  2215. <menuHelpContents>Nội dung</menuHelpContents>
  2216. <menuHelpDemos>Trình diễn</menuHelpDemos>
  2217. <menuHelpDocumentation>Tài liệu</menuHelpDocumentation>
  2218. <menuHelpFAQPage>Câu hỏi thường gặp</menuHelpFAQPage>
  2219. <menuHelpForum>Diễn đàn</menuHelpForum>
  2220. <menuHelpHowToRegister>Cách đăng ký</menuHelpHowToRegister>
  2221. <menuHelpProductHomePage>Trang chủ sản phẩm</menuHelpProductHomePage>
  2222. <menuHelpSamples>Mẫu</menuHelpSamples>
  2223. <menuHelpSupport>Hỗ trợ</menuHelpSupport>
  2224. <menuHelpTrainingCourses>Khóa huấn luyện</menuHelpTrainingCourses>
  2225. <menuHelpVideos>Phim</menuHelpVideos>
  2226. <menuInsertColumnToLeft>Thêm cột vào bên trái</menuInsertColumnToLeft>
  2227. <menuInsertColumnToRight>Thêm cột vào bên phải</menuInsertColumnToRight>
  2228. <menuInsertRowAbove>Thêm cột vào đằng trước</menuInsertRowAbove>
  2229. <menuInsertRowBelow>Thêm cột vào đằng sau</menuInsertRowBelow>
  2230. <menuJoinCells>Ghép ô</menuJoinCells>
  2231. <menuMakeThisRelationActive>Làm cho mối quan hệ này hoạt động</menuMakeThisRelationActive>
  2232. <menuSelectColumn>Chọn cột</menuSelectColumn>
  2233. <menuSelectRow>Chọn hàng</menuSelectRow>
  2234. <menuTable>Bảng</menuTable>
  2235. <menuTools>Công cụ</menuTools>
  2236. <menuToolsDataStore>Kho dữ liệu...</menuToolsDataStore>
  2237. <menuToolsDictionary>Từ điển...</menuToolsDictionary>
  2238. <menuToolsOptions>Tùy chọn...</menuToolsOptions>
  2239. <menuToolsPagesManager>Quản lý trang...</menuToolsPagesManager>
  2240. <menuToolsServicesConfigurator>Trình cấu hình dịch vụ...</menuToolsServicesConfigurator>
  2241. <menuToolsStyleDesigner>Trình thiết kế phong cách...</menuToolsStyleDesigner>
  2242. <menuView>Xem</menuView>
  2243. <menuViewAlignToGrid>Căn chỉnh với lưới</menuViewAlignToGrid>
  2244. <menuViewNormal>Bình thường</menuViewNormal>
  2245. <menuViewOptions>Tùy chọn</menuViewOptions>
  2246. <menuViewPageBreakPreview>Xem trước ngắt trang</menuViewPageBreakPreview>
  2247. <menuViewQuickInfo>Thông tin nhanh</menuViewQuickInfo>
  2248. <menuViewQuickInfoNone>Không</menuViewQuickInfoNone>
  2249. <menuViewQuickInfoOverlay>Hiển thị qua các thành phần</menuViewQuickInfoOverlay>
  2250. <menuViewQuickInfoShowAliases>Hiển thị bí danh</menuViewQuickInfoShowAliases>
  2251. <menuViewQuickInfoShowComponentsNames>Hiển thị tên thành phần</menuViewQuickInfoShowComponentsNames>
  2252. <menuViewQuickInfoShowContent>Hiển thị nội dung</menuViewQuickInfoShowContent>
  2253. <menuViewQuickInfoShowEvents>Hiển thị sự kiện</menuViewQuickInfoShowEvents>
  2254. <menuViewQuickInfoShowFields>Hiển thị trường</menuViewQuickInfoShowFields>
  2255. <menuViewQuickInfoShowFieldsOnly>Chỉ hiển thị trường</menuViewQuickInfoShowFieldsOnly>
  2256. <menuViewShowGrid>Hiển thị lưới</menuViewShowGrid>
  2257. <menuViewShowHeaders>Hiển thị tiêu đề</menuViewShowHeaders>
  2258. <menuViewShowInsertTab>Hiển thị tab 'Chèn'</menuViewShowInsertTab>
  2259. <menuViewShowOrder>Hiển thị sắp xếp</menuViewShowOrder>
  2260. <menuViewShowRulers>Hiển thị thước kẻ</menuViewShowRulers>
  2261. <menuViewShowToolbox>Hiển thị hộp công cụ</menuViewShowToolbox>
  2262. <menuViewToolbars>Thanh công cụ</menuViewToolbars>
  2263. </MainMenu>
  2264. <Map>
  2265. <GroupAsia>Châu Á</GroupAsia>
  2266. <GroupEurope>Châu Âu</GroupEurope>
  2267. <GroupNorthAmerica>Bắc Mỹ</GroupNorthAmerica>
  2268. <GroupOceania>Châu Đại Dương</GroupOceania>
  2269. <GroupSouthAmerica>Nam Mỹ</GroupSouthAmerica>
  2270. <GroupWorld>Toàn thế giới</GroupWorld>
  2271. <LinkDataForm>Liên kết dữ liệu</LinkDataForm>
  2272. <MapEditorForm>Trình chỉnh sửa bản đồ</MapEditorForm>
  2273. </Map>
  2274. <Messages>
  2275. <ChangeRequestTimeout>Thời gian chờ yêu cầu cho các truy vấn SQL vượt quá thời gian chờ yêu cầu của trình thiết kế báo cáo. Đặt thời gian chờ yêu cầu cho thành phần thiết kế không quá {0} giây.</ChangeRequestTimeout>
  2276. <DoNotShowAgain>Không hiển thị trở lại</DoNotShowAgain>
  2277. <MessageTimeOutExpired>Thời gian chờ của lệnh đã hết hạn!</MessageTimeOutExpired>
  2278. <RenderingWillOccurInTheInterpretationMode>Khi xem báo cáo được chia sẻ, kết xuất sẽ xảy ra ở chế độ giải thích</RenderingWillOccurInTheInterpretationMode>
  2279. <ResourceCannotBeDeleted>Tài nguyên "{0}" không thể bị xóa vì nó được sử dụng trong báo cáo!</ResourceCannotBeDeleted>
  2280. <ShareURLOfTheItemHasBeenUpdated>URL chia sẻ của mục đã được cập nhật!</ShareURLOfTheItemHasBeenUpdated>
  2281. <ShareYourReportYouShouldSave>Để chia sẻ báo cáo của bạn, bạn nên lưu báo cáo vào đám mây Stimulsoft!</ShareYourReportYouShouldSave>
  2282. <TextRegistrationSuccessfully>
  2283. Đăng ký thành công!
  2284. Thư điện tử đã được gửi tới "{0}".
  2285. Nó chứa một liên kết để xác nhận đăng ký của bạn. Để hoàn tất việc đăng ký, hãy làm theo liên kết từ thư điện tử mà bạn nhận được.
  2286. </TextRegistrationSuccessfully>
  2287. <ThisFieldIsNotSpecified>Trường này không được chỉ định!</ThisFieldIsNotSpecified>
  2288. <ThisFunctionEmbedsAllReportDataToTheReport>Hàm này nhúng tất cả dữ liệu báo cáo vào tài nguyên báo cáo và làm cho báo cáo của bạn trở nên độc lập. Hãy cẩn thận! Tất cả các dữ liệu cài đặt của bạn sẽ được thay đổi và không thể khôi phục. Vui lòng tạo bản sao lưu báo cáo của bạn trước tiên. {0} Bạn có chắc không?</ThisFunctionEmbedsAllReportDataToTheReport>
  2289. <YouNeedToLoginFirstToStartUsingTheSoftware>Bạn cần đăng nhập trước để bắt đầu sử dụng phần mềm. Ứng dụng sẽ đóng nếu bạn thoát khỏi màn hình đăng nhập.</YouNeedToLoginFirstToStartUsingTheSoftware>
  2290. </Messages>
  2291. <Notices>
  2292. <AccessDenied>Truy cập bị từ chối!</AccessDenied>
  2293. <AccountLocked>Tài khoản của bạn đã bị khóa! Để giải quyết vấn đề, vui lòng gửi yêu cầu của bạn tới sales@stimulsoft.com!</AccountLocked>
  2294. <ActivationExpiriedBeforeFirstRelease>Thuê bao Stimulsoft Reports.Ultimate của bạn hết hạn sớm hơn phiên bản đầu tiên của Stimulsoft Server của chúng tôi đã được phát hành!</ActivationExpiriedBeforeFirstRelease>
  2295. <ActivationLicenseIsNotCorrect>Giấy phép không đúng! Vui lòng liên hệ bộ phận kinh doanh của chúng tôi tại sales@stimulsoft.com!</ActivationLicenseIsNotCorrect>
  2296. <ActivationLockedAccount>Tài khoản của bạn đã bị khóa. Vui lòng liên hệ phòng bán hàng của chúng tôi tại sales@stimulsoft.com!</ActivationLockedAccount>
  2297. <ActivationLockedAccountExt>Tài khoản của bạn bị khóa.</ActivationLockedAccountExt>
  2298. <ActivationMaxActivationsReached>Bạn đã đạt số lần kích hoạt tối đa. Vui lòng liên hệ phòng bán hàng của chúng tôi tại sales@stimulsoft.com!</ActivationMaxActivationsReached>
  2299. <ActivationMaxComputersReached>Bạn đã đăng ký số lượng máy tính tối đa có sẵn cho loại tài khoản của mình.</ActivationMaxComputersReached>
  2300. <ActivationServerIsNotAvailableNow>Máy chủ kích hoạt Stimulsoft hiện không có sẵn! Vui lòng thử lại sau.</ActivationServerIsNotAvailableNow>
  2301. <ActivationServerVersionNotAllowed>Bạn không thể kích hoạt phiên bản này của Stimulsoft Server bởi vì thời gian sử dụng của bạn đã hết hạn! Vui lòng đăng nhập vào tài khoản của bạn và kiểm tra phiên bản nào của Stimulsoft Server bạn có thể cài đặt và kích hoạt.</ActivationServerVersionNotAllowed>
  2302. <ActivationSomeTroublesOccurred>Đã xảy ra lỗi khi kích hoạt. Vui lòng thử lại sau.</ActivationSomeTroublesOccurred>
  2303. <ActivationTrialExpired>Bạn có thể tiếp tục sử dụng Stimulsoft Designer bằng cách mua phần mềm.</ActivationTrialExpired>
  2304. <ActivationUserNameOrPasswordIsWrong>Tên người dùng (thư điện tử) hoặc mật khẩu của bạn sai!</ActivationUserNameOrPasswordIsWrong>
  2305. <ActivationWrongAccountType>Loại tài khoản của bạn không được cho phép kích hoạt Stimulsoft Server!</ActivationWrongAccountType>
  2306. <Alert>Cảnh báo</Alert>
  2307. <AuthAccountCantBeUsedNow>Không thể sử dụng tài khoản ngay bây giờ!</AuthAccountCantBeUsedNow>
  2308. <AuthAccountIsNotActivated>Tài khoản chưa được kích hoạt! Vui lòng làm theo các hướng dẫn được gửi đến thư điện tử trong quá trình đăng ký.</AuthAccountIsNotActivated>
  2309. <AuthCantChangeRoleBecauseLastAdministratorUser>Không thể thay đổi vai trò người dùng vì đây là người dùng quản trị cuối cùng trong không gian làm việc này!</AuthCantChangeRoleBecauseLastAdministratorUser>
  2310. <AuthCantChangeRoleBecauseLastSupervisorUser>Không thể thay đổi vai trò người dùng bởi vì đây là người giám sát cuối cùng ở máy chủ này!</AuthCantChangeRoleBecauseLastSupervisorUser>
  2311. <AuthCantChangeSystemRole>Không thể thay đổi vai trò hệ thống!</AuthCantChangeSystemRole>
  2312. <AuthCantDeleteHimselfUser>Người dùng không thể tự xóa!</AuthCantDeleteHimselfUser>
  2313. <AuthCantDeleteLastAdministratorUser>Không thể xóa người dùng vì đây là người dùng quản trị cuối cùng trong không gian làm việc này!</AuthCantDeleteLastAdministratorUser>
  2314. <AuthCantDeleteLastSupervisorUser>Không thể xóa người dùng vì đây là người giám sát cuối cùng của người dùng tại máy chủ này!</AuthCantDeleteLastSupervisorUser>
  2315. <AuthCantDeleteSystemRole>Không thể xóa vai trò này, vì đó là vai trò của hệ thống!</AuthCantDeleteSystemRole>
  2316. <AuthCantDisableUserBecauseLastAdministratorUser>Người dùng không thể bị vô hiệu vì đây là người dùng quản trị cuối cùng trong không gian làm việc này!</AuthCantDisableUserBecauseLastAdministratorUser>
  2317. <AuthCantDisableUserBecauseLastSupervisorUser>Người dùng không thể bị vô hiệu vì đây là người giám sát cuối cùng ở máy chủ này!</AuthCantDisableUserBecauseLastSupervisorUser>
  2318. <AuthFirstNameIsNotSpecified>Tên không được chỉ định!</AuthFirstNameIsNotSpecified>
  2319. <AuthLastNameIsNotSpecified>Họ không được chỉ định!</AuthLastNameIsNotSpecified>
  2320. <AuthOAuthIdNotSpecified>Bộ xác thực OAuth không được chỉ định!</AuthOAuthIdNotSpecified>
  2321. <AuthPasswordIsNotCorrect>Sai mật khẩu!</AuthPasswordIsNotCorrect>
  2322. <AuthPasswordIsNotSpecified>Mật khẩu không được chỉ định!</AuthPasswordIsNotSpecified>
  2323. <AuthPasswordIsTooShort>Mật khẩu quá ngắn (chiều dài tối thiểu là 6 ký tự)!</AuthPasswordIsTooShort>
  2324. <AuthRoleCantBeDeletedBecauseUsedByUsers>Bạn không thể xóa vai trò vì nó đang được sử dụng bởi những người dùng khác.</AuthRoleCantBeDeletedBecauseUsedByUsers>
  2325. <AuthRoleNameAlreadyExists>Vai trò với tên được chỉ định "{0}" đã tồn tại!</AuthRoleNameAlreadyExists>
  2326. <AuthRoleNameIsSystemRole>Vai trò với tên được chỉ định "{0}" là vai trò của hệ thống!</AuthRoleNameIsSystemRole>
  2327. <AuthSendMessageWithInstructions>Thông báo với hướng dẫn thêm được gửi tới "{0}"!</AuthSendMessageWithInstructions>
  2328. <AuthTokenIsNotCorrect>Mã thông báo không đúng!</AuthTokenIsNotCorrect>
  2329. <AuthUserHasLoggedOut>Bạn đã đăng xuất!</AuthUserHasLoggedOut>
  2330. <AuthUserNameAlreadyExists>Tên người dùng (thư điện tử) đã được sử dụng!</AuthUserNameAlreadyExists>
  2331. <AuthUserNameEmailIsBlocked>Địa chỉ Email này không thể được sử dụng!</AuthUserNameEmailIsBlocked>
  2332. <AuthUserNameIsNotSpecified>Tên người dùng (thư điện tử) chưa được chỉ định!</AuthUserNameIsNotSpecified>
  2333. <AuthUserNameNotAssociatedWithYourAccount>Tên người dùng (thư điện tử) {0} không được liên kết với tài khoản {1} của bạn!</AuthUserNameNotAssociatedWithYourAccount>
  2334. <AuthUserNameOrPasswordIsNotCorrect>Tên người dùng (thư điện tử) hoặc mật khẩu sai!</AuthUserNameOrPasswordIsNotCorrect>
  2335. <AuthUserNameShouldLookLikeAnEmailAddress>Tên người dùng phải giống với địa chỉ thư điện tử!</AuthUserNameShouldLookLikeAnEmailAddress>
  2336. <AuthWorkspaceNameAlreadyInUse>Tên không gian làm việc đã được sử dụng!</AuthWorkspaceNameAlreadyInUse>
  2337. <CommandTimeOut>Thời gian chờ xử lý lệnh đã trôi qua!</CommandTimeOut>
  2338. <Congratulations>Xin chúc mừng!</Congratulations>
  2339. <EndDateShouldBeGreaterThanCurrentDate>Ngày kết thúc phải lớn hơn ngày hiện tại!</EndDateShouldBeGreaterThanCurrentDate>
  2340. <EndDateShouldBeGreaterThanStartDate>Ngày kết thúc phải lớn hơn ngày bắt đầu!</EndDateShouldBeGreaterThanStartDate>
  2341. <ExecutionError>Lỗi thực thi</ExecutionError>
  2342. <IsIdentical>"{0}" và "{1}" là giống nhau."</IsIdentical>
  2343. <IsNotAuthorized>Không có quyền truy cập vào "{0}"!</IsNotAuthorized>
  2344. <IsNotCorrect>"{0}" không chính xác!</IsNotCorrect>
  2345. <IsNotDeleted>"{0}" không bị xóa!</IsNotDeleted>
  2346. <IsNotEqual>"{0}" không bằng nhau!</IsNotEqual>
  2347. <IsNotFound>"{0}" không được tìm thấy!</IsNotFound>
  2348. <IsNotRecognized>"{0}" không được công nhận!</IsNotRecognized>
  2349. <IsNotSpecified>"{0}" không được chỉ định!</IsNotSpecified>
  2350. <IsRequiredFile>Bạn nên thêm ít nhất một tệp tin!</IsRequiredFile>
  2351. <ItemCantBeAttachedToItself>Mục không thể gắn với chính nó!</ItemCantBeAttachedToItself>
  2352. <ItemCantBeDeletedBecauseItemIsAttachedToOtherItems>Không thể xóa các phần tử "{0}" vì chúng được gắn với các phần tử khác!</ItemCantBeDeletedBecauseItemIsAttachedToOtherItems>
  2353. <ItemCantBeMovedToSpecifiedPlace>Mục này không thể di chuyển đến một nơi nhất định!</ItemCantBeMovedToSpecifiedPlace>
  2354. <ItemDoesNotSupport>Mục không hỗ trợ "{0}"!</ItemDoesNotSupport>
  2355. <KeyAndToKeyAreEqual>Key và ToKey giống nhau!</KeyAndToKeyAreEqual>
  2356. <MaximumComputers>Số lượng máy tính tối đa</MaximumComputers>
  2357. <MessageMaximumFileSizeExceeded>Chú ý! Kích thước của tệp bạn đang thêm vượt quá kích thước tối đa cho phép. Bạn có muốn thêm tệp này không (xử lý báo cáo có thể chậm đi đáng kể)?</MessageMaximumFileSizeExceeded>
  2358. <NewDesignerAvailable>Stimulsoft Designer {0} có sẵn.</NewDesignerAvailable>
  2359. <NewProduct>Một sản phẩm mới được thêm vào thuê bao của bạn!</NewProduct>
  2360. <NewVersionsAvailable>Có phiên bản mới!</NewVersionsAvailable>
  2361. <NotificationFailed>Kết quả không thành công!</NotificationFailed>
  2362. <NotificationFailedAddFollowingFiles>Không thêm được các tệp sau. Vượt quá kích thước {0} MB.</NotificationFailedAddFollowingFiles>
  2363. <NotificationFilesUploadingComplete>Các tập tin được tải lên thành công.</NotificationFilesUploadingComplete>
  2364. <NotificationFileUploading>Tệp "{0}" đang được tải.</NotificationFileUploading>
  2365. <NotificationItemDelete>Các mục đang xóa.</NotificationItemDelete>
  2366. <NotificationItemDeleteComplete>Các mục đã được xóa thành công.</NotificationItemDeleteComplete>
  2367. <NotificationItemRestore>Các mục đang khôi phục.</NotificationItemRestore>
  2368. <NotificationItemRestoreComplete>Các mục được khôi phục thành công.</NotificationItemRestoreComplete>
  2369. <NotificationItemTransfer>Các mục đang chuyển.</NotificationItemTransfer>
  2370. <NotificationItemTransferComplete>Các mục được chuyển thành công.</NotificationItemTransferComplete>
  2371. <NotificationItemWaitingProcessing>Các mục đang chờ xử lý.</NotificationItemWaitingProcessing>
  2372. <NotificationMailing>Gửi</NotificationMailing>
  2373. <NotificationMailingComplete>Việc gửi thư "{0}" đã hoàn tất.</NotificationMailingComplete>
  2374. <NotificationMailingWaitingProcessing>Việc gửi thư "{0}" đang chờ xử lý.</NotificationMailingWaitingProcessing>
  2375. <NotificationOperationAborted>Thao tác bị hủy!</NotificationOperationAborted>
  2376. <NotificationRecycleBinCleaning>Thùng rác đang làm sạch.</NotificationRecycleBinCleaning>
  2377. <NotificationRecycleBinCleaningComplete>Thùng rác được làm sạch thành công.</NotificationRecycleBinCleaningComplete>
  2378. <NotificationRecycleBinWaitingProcessing>Thùng rác đang chờ xử lý.</NotificationRecycleBinWaitingProcessing>
  2379. <NotificationReportExporting>Báo cáo "{0}" đang được xuất</NotificationReportExporting>
  2380. <NotificationReportExportingComplete>Báo cáo "{0}" được xuất thành công.</NotificationReportExportingComplete>
  2381. <NotificationReportRendering>Báo cáo "{0}" đang được kết xuất.</NotificationReportRendering>
  2382. <NotificationReportRenderingComplete>Báo cáo "{0}" đã được kết xuất.</NotificationReportRenderingComplete>
  2383. <NotificationReportWaitingProcessing>Báo cáo "{0}" đang chờ xử lý.</NotificationReportWaitingProcessing>
  2384. <NotificationSchedulerRunning>Trình lên lịch "{0}" đang chạy.</NotificationSchedulerRunning>
  2385. <NotificationSchedulerRunningComplete>Trình lên lịch "{0}" đã chạy hoàn chỉnh.</NotificationSchedulerRunningComplete>
  2386. <NotificationSchedulerWaitingProcessing>Trình lên lịch "{0}" đang chờ xử lý.</NotificationSchedulerWaitingProcessing>
  2387. <NotificationTitleFilesUploading>Tải tệp lên</NotificationTitleFilesUploading>
  2388. <NotificationTitleItemRefreshing>Làm mới mục "{0}"</NotificationTitleItemRefreshing>
  2389. <NotificationTitleItemTransferring>Chuyển mục "{0}"</NotificationTitleItemTransferring>
  2390. <NotificationTitleMailing>Gửi thư "{0}"</NotificationTitleMailing>
  2391. <NotificationTitleReportExporting>Xuất báo cáo "{0}"</NotificationTitleReportExporting>
  2392. <NotificationTitleReportRendering>Kết xuất báo cáo "{0}"</NotificationTitleReportRendering>
  2393. <NotificationTitleSchedulerRunning>Chạy chương trình lập lịch "{0}"</NotificationTitleSchedulerRunning>
  2394. <NotificationTransferring>"{0}" đang chuyển đến "{1}".</NotificationTransferring>
  2395. <NotificationTransferringComplete>"{0}" được chuyển thành công đến "{1}".</NotificationTransferringComplete>
  2396. <NotificationValueIsNotCorrect>Giá trị này không chính xác cho loại {0}</NotificationValueIsNotCorrect>
  2397. <OutOfRange>Ngoài phạm vi ("{0}")!</OutOfRange>
  2398. <ParsingCommandException>Một ngoại lệ xử lý lệnh trong xml được chỉ định: {0}</ParsingCommandException>
  2399. <PleaseLogin>Vui lòng đăng nhập bằng thông tin xác thực tài khoản Stimulsoft của bạn hoặc đăng ký tài khoản mới trước khi xuất bản báo cáo.</PleaseLogin>
  2400. <QuotaMaximumComputingCyclesCountExceeded>Số chu kỳ tính toán tối đa đã vượt quá.</QuotaMaximumComputingCyclesCountExceeded>
  2401. <QuotaMaximumDataRowsCountExceeded>Đã vượt quá số lượng hàng dữ liệu tối đa trong một nguồn dữ liệu.</QuotaMaximumDataRowsCountExceeded>
  2402. <QuotaMaximumFileSizeExceeded>Đã vượt quá dung lượng tệp tin tối đa.</QuotaMaximumFileSizeExceeded>
  2403. <QuotaMaximumItemsCountExceeded>Đã vượt quá số lượng mục tối đa.</QuotaMaximumItemsCountExceeded>
  2404. <QuotaMaximumRefreshCountExceeded>Đã vượt quá số lượng làm mới tối đa</QuotaMaximumRefreshCountExceeded>
  2405. <QuotaMaximumReportPagesCountExceeded>Đã vượt quá số trang báo cáo tối đa.</QuotaMaximumReportPagesCountExceeded>
  2406. <QuotaMaximumResourcesCountExceeded>Đã vượt quá số người dùng tối đa.</QuotaMaximumResourcesCountExceeded>
  2407. <QuotaMaximumResourceSizeExceeded>Đã vượt quá kích thước tài nguyên tối đa.</QuotaMaximumResourceSizeExceeded>
  2408. <QuotaMaximumUsersCountExceeded>Đã vượt quá số lượng tài nguyên tối đa.</QuotaMaximumUsersCountExceeded>
  2409. <QuotaMaximumWorkspacesCountExceeded>Đã vượt quá phạm vi làm việc tối đa.</QuotaMaximumWorkspacesCountExceeded>
  2410. <SchedulerCantRunItSelf>Trình lên lịch không thể chạy chính nó!</SchedulerCantRunItSelf>
  2411. <SessionTimeOut>Hết thời gian chờ phiên</SessionTimeOut>
  2412. <SnapshotAlreadyProcessed>Bản chụp báo cáo đã được xử lý!</SnapshotAlreadyProcessed>
  2413. <SpecifiedItemIsNot>Mục được chỉ định không "{0}"!</SpecifiedItemIsNot>
  2414. <SubscriptionExpired>Đăng ký của bạn đã hết hạn!</SubscriptionExpired>
  2415. <SubscriptionExpiredDate>Đăng ký của bạn sẽ hết hạn vào {0}</SubscriptionExpiredDate>
  2416. <SubscriptionExpiredExt>Đăng ký của bạn đã hết hạn. Cập nhật đăng ký của bạn để có phiên bản mới nhất.</SubscriptionExpiredExt>
  2417. <SubscriptionsOut10>Còn 10 ngày khi đăng ký hết hạn!</SubscriptionsOut10>
  2418. <SubscriptionsOut20>Thời hạn thuê bao sẽ hết hạn trong 20 ngày!</SubscriptionsOut20>
  2419. <SuccessfullyRenewed>Đăng ký của bạn đã được cập nhật thành công!</SuccessfullyRenewed>
  2420. <TrialToLicense>Cảm ơn bạn đã lựa chọn Stimulsoft!</TrialToLicense>
  2421. <VersionCopyFromItem>Sao chép từ mục "{0}".</VersionCopyFromItem>
  2422. <VersionCreatedFromFile>Được tạo từ tệp"{0}".</VersionCreatedFromFile>
  2423. <VersionCreatedFromItem>Được tạo từ mục "{0}".</VersionCreatedFromItem>
  2424. <VersionLoadedFromFile>Đã tải từ tệp "{0}".</VersionLoadedFromFile>
  2425. <VersionNewItemCreation>Tạo mục mới.</VersionNewItemCreation>
  2426. <Warning>Cảnh báo</Warning>
  2427. <WindowClosePreventWhileUploading>Một số tệp đang được tải lên ngay bây giờ, nếu bạn đóng trang chúng sẽ bị mất. Bạn có chắc chắn muốn đóng trang không?</WindowClosePreventWhileUploading>
  2428. <WithSpecifiedKeyIsNotFound>"{0}" với các phím được chỉ định không được tìm thấy!</WithSpecifiedKeyIsNotFound>
  2429. <WouldYouLikeToUpdateNow>Bạn có muốn cập nhật ngay bây giờ không?</WouldYouLikeToUpdateNow>
  2430. <YourTimeSessionHasExpired>Thời gian của bạn đã hết hạn!</YourTimeSessionHasExpired>
  2431. <YourTrialHasExpired>Dùng thử của bạn đã hết hạn</YourTrialHasExpired>
  2432. <YourTrialWillExpire>Bản dùng thử của bạn sẽ hết hạn sau {0} ngày.</YourTrialWillExpire>
  2433. <YouUsingTrialVersion>Bạn đang sử dụng phiên bản dùng thử!</YouUsingTrialVersion>
  2434. </Notices>
  2435. <NuGet>
  2436. <AlreadyDownloaded>Đã tải về</AlreadyDownloaded>
  2437. <AssemblyLoadedSuccessfully>Kết cấu đã được nạp thành công.</AssemblyLoadedSuccessfully>
  2438. <AssemblyNotFound>Không thể tìm {0} kết cấu sử dụng kết nối {1}!</AssemblyNotFound>
  2439. <Author>Tác giả</Author>
  2440. <Dependencies>Sự phụ thuộc:</Dependencies>
  2441. <Download>Tải</Download>
  2442. <DownloadAll>Tải tất cả</DownloadAll>
  2443. <DownloadAndInstall>Tải và cài đặt</DownloadAndInstall>
  2444. <DownloadDataAdapter>Tải xuống bộ điều hợp dữ liệu</DownloadDataAdapter>
  2445. <Downloads>Tải:</Downloads>
  2446. <IAccept>Tôi đồng ý</IAccept>
  2447. <IDecline>Tôi từ chối</IDecline>
  2448. <LicenceFormDesc>Gói sau yêu cầu bạn phải chấp nhận các điều khoản cấp phép trước khi cài đặt.</LicenceFormDesc>
  2449. <LicenceFormDesc1>Bằng cách nhấp vào "Tôi đồng ý", bạn đồng ý với các điều khoản cấp phép cho gói được liệt kê ở trên. Nếu bạn không đồng ý với điều khoản cấp phép, hãy nhấp vào "Tôi từ chối".</LicenceFormDesc1>
  2450. <LicenceFormTitle>Chấp nhận giấy phép</LicenceFormTitle>
  2451. <License>Giấy phép:</License>
  2452. <ProjectUrl>URL dự án:</ProjectUrl>
  2453. <ReportAbuse>Báo cáo lạm quyền:</ReportAbuse>
  2454. <RetrievingInformation>Lấy thông tin...</RetrievingInformation>
  2455. <Tags>Thẻ:</Tags>
  2456. <Title>Bộ điều hợp dữ liệu từ NuGet</Title>
  2457. <ViewLicense>Xem giấy phép</ViewLicense>
  2458. </NuGet>
  2459. <Panels>
  2460. <Dictionary>Từ điển</Dictionary>
  2461. <Messages>Thông báo</Messages>
  2462. <Properties>Thuộc tính</Properties>
  2463. <ReportTree>Cây báo cáo</ReportTree>
  2464. </Panels>
  2465. <Password>
  2466. <gbPassword>Mã hóa tệp tin</gbPassword>
  2467. <lbPasswordLoad>Nhập mật khẩu để mở tệp tin</lbPasswordLoad>
  2468. <lbPasswordSave>Mật khẩu:</lbPasswordSave>
  2469. <PasswordNotEntered>Không nhập mật khẩu</PasswordNotEntered>
  2470. <StiLoadPasswordForm>Tài liệu mã hóa </StiLoadPasswordForm>
  2471. <StiSavePasswordForm>Mật khẩu</StiSavePasswordForm>
  2472. </Password>
  2473. <Permissions>
  2474. <AdminAPI>API</AdminAPI>
  2475. <AdminBackgroundTasks>Ứng dụng ngầm</AdminBackgroundTasks>
  2476. <AdminPermissions>Quyền</AdminPermissions>
  2477. <AdminRecycleBin>Thùng rác</AdminRecycleBin>
  2478. <AdminShare>Chia sẻ</AdminShare>
  2479. <AdminTransfers>Chuyển nhượng</AdminTransfers>
  2480. <ItemCalendars>Lịch</ItemCalendars>
  2481. <ItemCloudStorages>Kho chứa đám mây</ItemCloudStorages>
  2482. <ItemContactLists>Danh sách liên hệ</ItemContactLists>
  2483. <ItemDashboards>Bảng thông tin</ItemDashboards>
  2484. <ItemDataSources>Nguồn dữ liệu</ItemDataSources>
  2485. <ItemFiles>Tệp tin</ItemFiles>
  2486. <ItemFolders>Thư mục</ItemFolders>
  2487. <ItemReportSnapshots>Bản sao lưu báo cáo</ItemReportSnapshots>
  2488. <ItemReportTemplates>Mẫu báo cáo</ItemReportTemplates>
  2489. <ItemSchedulers>Lập kế hoạch</ItemSchedulers>
  2490. <ReportDesignerBusinessObjects>Đối tượng công việc</ReportDesignerBusinessObjects>
  2491. <ReportDesignerDataColumns>Cột dữ liệu</ReportDesignerDataColumns>
  2492. <ReportDesignerDataConnections>Dữ liệu kết nối</ReportDesignerDataConnections>
  2493. <ReportDesignerDataRelations>Dữ liệu quan hệ</ReportDesignerDataRelations>
  2494. <ReportDesignerDataSources>Nguồn dữ liệu</ReportDesignerDataSources>
  2495. <ReportDesignerDictionaryActions>Từ điển hành động</ReportDesignerDictionaryActions>
  2496. <ReportDesignerRestrictions>Hạn chế</ReportDesignerRestrictions>
  2497. <ReportDesignerVariables>Biến số</ReportDesignerVariables>
  2498. <SystemBackupRestore>Sao lưu &amp; Khôi phục</SystemBackupRestore>
  2499. <SystemEmailTemplates>Mẫu thư điện tử</SystemEmailTemplates>
  2500. <SystemLicensing>Cấp giấy phép</SystemLicensing>
  2501. <SystemMonitoring>Giám sát</SystemMonitoring>
  2502. <SystemUpdate>Cập nhật</SystemUpdate>
  2503. <SystemWorkspaces>Không gian làm việc</SystemWorkspaces>
  2504. <TextAdministration>Quản trị</TextAdministration>
  2505. <TextItems>Mục</TextItems>
  2506. <TextReportDesigner>Trình thiết kế báo cáo</TextReportDesigner>
  2507. <TextSystem>Hệ thống</TextSystem>
  2508. <TextUsers>Người sử dụng</TextUsers>
  2509. <UserHimself>người đó</UserHimself>
  2510. <UserRoles>Vai trò</UserRoles>
  2511. <Users>Người sử dụng</Users>
  2512. <UserWorkspace>Không gian làm việc</UserWorkspace>
  2513. </Permissions>
  2514. <PlacementComponent>
  2515. <MoveLeftFreeSpace>Di chuyển một thành phần đến phía bên trái của một không gian trống, tăng chiều cao của thành phần lên chiều cao của không gian trống.</MoveLeftFreeSpace>
  2516. <MoveRightFreeSpace>Di chuyển một thành phần đến phía bên phải của một không gian trống, tăng chiều cao của thành phần lên chiều cao của không gian trống.</MoveRightFreeSpace>
  2517. </PlacementComponent>
  2518. <PropertyCategory>
  2519. <AppearanceCategory>Hình thức</AppearanceCategory>
  2520. <AreaCategory>Vùng</AreaCategory>
  2521. <ArgumentCategory>Đối số</ArgumentCategory>
  2522. <AxisCategory>Trục</AxisCategory>
  2523. <BarCodeAdditionalCategory>Mã vạch bổ sung</BarCodeAdditionalCategory>
  2524. <BarCodeCategory>Mã vạch</BarCodeCategory>
  2525. <BehaviorCategory>Thuộc tính</BehaviorCategory>
  2526. <CapNeedle>Nắp chụp kim</CapNeedle>
  2527. <CellCategory>Ô</CellCategory>
  2528. <ChartAdditionalCategory>Biểu đồ bổ sung</ChartAdditionalCategory>
  2529. <ChartCategory>Biểu đồ</ChartCategory>
  2530. <ChartMap>Bản đồ</ChartMap>
  2531. <CheckCategory>Kiểm tra</CheckCategory>
  2532. <ColorsCategory>Màu</ColorsCategory>
  2533. <ColumnsCategory>Cột</ColumnsCategory>
  2534. <ComboBoxCategory>Danh sách xổ xuống</ComboBoxCategory>
  2535. <CommonCategory>Chung</CommonCategory>
  2536. <ControlCategory>Điều khiển</ControlCategory>
  2537. <ControlsEventsCategory>Kiểm soát sự kiện</ControlsEventsCategory>
  2538. <CrossTabCategory>Tab chéo</CrossTabCategory>
  2539. <DashboardCategory>Bảng điều khiển</DashboardCategory>
  2540. <DataCategory>Dữ liệu</DataCategory>
  2541. <DataCells>Các ô dữ liệu</DataCells>
  2542. <DatePickerCategory>Bảng chọn ngày</DatePickerCategory>
  2543. <DescriptionCategory>Mô tả</DescriptionCategory>
  2544. <DesignCategory>Thiết kế</DesignCategory>
  2545. <DisplayCategory>Hiển thị</DisplayCategory>
  2546. <EngineCategory>Động cơ</EngineCategory>
  2547. <ExportCategory>Xuất</ExportCategory>
  2548. <ExportEventsCategory>Xuất sự kiện</ExportEventsCategory>
  2549. <FooterTableCategory>Chân bảng</FooterTableCategory>
  2550. <GaugeCategory>Thước đo</GaugeCategory>
  2551. <GlobalizationCategory>Toàn cầu hóa</GlobalizationCategory>
  2552. <GridLinesCategory>Đường lưới</GridLinesCategory>
  2553. <HeaderTableCategory>Tiêu đề bảng</HeaderTableCategory>
  2554. <HierarchicalCategory>Thứ bậc</HierarchicalCategory>
  2555. <ImageAdditionalCategory>Hình ảnh bổ sung</ImageAdditionalCategory>
  2556. <ImageCategory>Hình ảnh</ImageCategory>
  2557. <IndicatorCategory>Chỉ số</IndicatorCategory>
  2558. <InterlacingCategory>Xem kẽ nhau</InterlacingCategory>
  2559. <LabelsCategory>Nhãn</LabelsCategory>
  2560. <LegendCategory>Chú thích</LegendCategory>
  2561. <ListBoxCategory>Danh sách hộp</ListBoxCategory>
  2562. <MainCategory>Chính</MainCategory>
  2563. <MarkerCategory>Đánh dấu</MarkerCategory>
  2564. <MiscCategory>Các thức khác</MiscCategory>
  2565. <MouseEventsCategory>Sự kiện chuột</MouseEventsCategory>
  2566. <NavigationCategory>Điều hướng</NavigationCategory>
  2567. <NavigationEventsCategory>Sự kiện điều hướng</NavigationEventsCategory>
  2568. <Needle>Kim</Needle>
  2569. <OnlineMapCategory>Bản đồ trực tuyến</OnlineMapCategory>
  2570. <OptionsCategory>Tùy chọn</OptionsCategory>
  2571. <PageAdditionalCategory>Trang bổ sung</PageAdditionalCategory>
  2572. <PageCategory>Trang</PageCategory>
  2573. <PageColumnBreakCategory>Ngắt trang và cột</PageColumnBreakCategory>
  2574. <ParametersCategory>Tham số</ParametersCategory>
  2575. <PivotTableCategory>Bảng tổng hợp</PivotTableCategory>
  2576. <PositionCategory>Vị trí</PositionCategory>
  2577. <PrimitiveCategory>Nguyên thủy</PrimitiveCategory>
  2578. <PrintEventsCategory>Sự kiện in</PrintEventsCategory>
  2579. <ProgressCategory>Tiến trình</ProgressCategory>
  2580. <RegionMapCategory>Bản đồ khu vực</RegionMapCategory>
  2581. <RenderEventsCategory>Sự kiện kết xuất</RenderEventsCategory>
  2582. <SeriesCategory>Dòng</SeriesCategory>
  2583. <SeriesLabelsCategory>Nhãn dòng</SeriesLabelsCategory>
  2584. <ShapeCategory>Hình dáng</ShapeCategory>
  2585. <Size>Kích cỡ</Size>
  2586. <SubReportCategory>Báo cáo phụ</SubReportCategory>
  2587. <TableCategory>Bảng</TableCategory>
  2588. <TableOfContents>Mục lục</TableOfContents>
  2589. <TextAdditionalCategory>Văn bản bổ sung</TextAdditionalCategory>
  2590. <TextCategory>Văn bản</TextCategory>
  2591. <TitleCategory>Tiêu đề</TitleCategory>
  2592. <TreeViewBoxCategory>Hộp xem dạng cây</TreeViewBoxCategory>
  2593. <TreeViewCategory>Xem dạng cây</TreeViewCategory>
  2594. <TrendLineCategory>Đường xu thế</TrendLineCategory>
  2595. <ValueCategory>Giá trị</ValueCategory>
  2596. <ValueCloseCategory>Giá trị đóng</ValueCloseCategory>
  2597. <ValueEndCategory>Giá trị kết thúc</ValueEndCategory>
  2598. <ValueEventsCategory>Giá trị sự kiện</ValueEventsCategory>
  2599. <ValueHighCategory>Giá trị cao</ValueHighCategory>
  2600. <ValueLowCategory>Giá trị thấp</ValueLowCategory>
  2601. <ValueOpenCategory>Giá trị mở</ValueOpenCategory>
  2602. <ViewCategory>Xem</ViewCategory>
  2603. <WeightCategory>Trọng số</WeightCategory>
  2604. <WinControlCategory>Cửa sổ điều khiển</WinControlCategory>
  2605. <ZipCodeCategory>Mã bưu chính</ZipCodeCategory>
  2606. </PropertyCategory>
  2607. <PropertyColor>
  2608. <AliceBlue>Xanh Alice</AliceBlue>
  2609. <AntiqueWhite>Trắng Antique</AntiqueWhite>
  2610. <Aqua>Xanh thiên thanh</Aqua>
  2611. <Aquamarine>Xanh nước biển</Aquamarine>
  2612. <Azure>Xanh da trời</Azure>
  2613. <Beige>Màu be</Beige>
  2614. <Bisque>Màu bisque</Bisque>
  2615. <Black>Đen</Black>
  2616. <BlanchedAlmond>Hạnh nhân</BlanchedAlmond>
  2617. <Blue>Xanh da trời</Blue>
  2618. <BlueViolet>Xanh tím</BlueViolet>
  2619. <Brown>Nâu</Brown>
  2620. <BurlyWood>Gỗ burly</BurlyWood>
  2621. <CadetBlue>Xanh chói</CadetBlue>
  2622. <Carmine>Đỏ tươi</Carmine>
  2623. <Chartreuse>Xanh vàng</Chartreuse>
  2624. <Chocolate>Sô cô la</Chocolate>
  2625. <Coral>San hô</Coral>
  2626. <CornflowerBlue>Xanh hoa ngô đồng</CornflowerBlue>
  2627. <Cornsilk>Râu ngô</Cornsilk>
  2628. <Crimson>Đỏ thắm</Crimson>
  2629. <Cyan>Xanh lam</Cyan>
  2630. <DarkBlue>Xanh đậm</DarkBlue>
  2631. <DarkCyan>Xanh lơ đậm</DarkCyan>
  2632. <DarkGoldenrod>Vàng đậm</DarkGoldenrod>
  2633. <DarkGray>Xám đậm</DarkGray>
  2634. <DarkGreen>Xanh lá đậm</DarkGreen>
  2635. <DarkKhaki>Vàng hung đậm</DarkKhaki>
  2636. <DarkMagenta>Đỏ tươi đậm</DarkMagenta>
  2637. <DarkOliveGreen>Xanh ôliu đậm</DarkOliveGreen>
  2638. <DarkOrange>Cam đậm</DarkOrange>
  2639. <DarkOrchid>Lan đậm</DarkOrchid>
  2640. <DarkRed>Đỏ đậm</DarkRed>
  2641. <DarkSalmon>Thịt cá hồi đậm</DarkSalmon>
  2642. <DarkSeaGreen>Xanh nước biển đậm</DarkSeaGreen>
  2643. <DarkSlateBlue>Xanh lam tối</DarkSlateBlue>
  2644. <DarkSlateGray>Xám tối</DarkSlateGray>
  2645. <DarkTurquoise>Ngọc lam đậm</DarkTurquoise>
  2646. <DarkViolet>Tím đậm</DarkViolet>
  2647. <DeepPink>Hồng đậm</DeepPink>
  2648. <DeepSkyBlue>Xanh da trời đậm</DeepSkyBlue>
  2649. <DimGray>Xám mờ</DimGray>
  2650. <DodgerBlue>Màu xám Dodger</DodgerBlue>
  2651. <Firebrick>Lửa</Firebrick>
  2652. <FloralWhite>Hoa trắng</FloralWhite>
  2653. <ForestGreen>Xanh rừng</ForestGreen>
  2654. <Fuchsia>Hoa hồng đăng</Fuchsia>
  2655. <Gainsboro>Xám Gainsboro</Gainsboro>
  2656. <GhostWhite>Trắng ma</GhostWhite>
  2657. <Gold>Vàng</Gold>
  2658. <Goldenrod>Vàng nhạt</Goldenrod>
  2659. <Gray>Xám</Gray>
  2660. <Green>Xanh lá cây</Green>
  2661. <GreenYellow>Vàng xanh</GreenYellow>
  2662. <Honeydew>Dưa tây</Honeydew>
  2663. <HotPink>Hồng nóng</HotPink>
  2664. <IndianRed>Đỏ Ấn Độ</IndianRed>
  2665. <Indigo>Chàm</Indigo>
  2666. <Ivory>Ngà</Ivory>
  2667. <Khaki>Vàng hung</Khaki>
  2668. <Lavender>Oải hương</Lavender>
  2669. <LavenderBlush>Hồng oải hương</LavenderBlush>
  2670. <LawnGreen>Cỏ xanh</LawnGreen>
  2671. <LemonChiffon>Vàng chanh</LemonChiffon>
  2672. <LightBlue>Xanh nhạt</LightBlue>
  2673. <LightCoral>San hô nhạt</LightCoral>
  2674. <LightCyan>Xanh lơ nhạt</LightCyan>
  2675. <LightGoldenrodYellow>Vàng nhạt</LightGoldenrodYellow>
  2676. <LightGray>Xám nhạt</LightGray>
  2677. <LightGreen>Xanh nhạt</LightGreen>
  2678. <LightPink>Hồng nhạt</LightPink>
  2679. <LightSalmon>Thịt cá hồi nhạt</LightSalmon>
  2680. <LightSeaGreen>Xanh nước biển nhạt</LightSeaGreen>
  2681. <LightSkyBlue>Xanh da trời nhạt</LightSkyBlue>
  2682. <LightSlateGray>Xanh lam nhạt</LightSlateGray>
  2683. <LightSteelBlue>Xanh thép nhạt</LightSteelBlue>
  2684. <LightYellow>Vàng nhạt</LightYellow>
  2685. <Lime>Chanh</Lime>
  2686. <LimeGreen>Xanh chanh</LimeGreen>
  2687. <Linen>Vải lanh</Linen>
  2688. <Magenta>Đỏ tươi</Magenta>
  2689. <Maroon>Nâu sẫm</Maroon>
  2690. <MediumAquamarine>Xanh ngọc trung bình</MediumAquamarine>
  2691. <MediumBlue>Xanh trung bình</MediumBlue>
  2692. <MediumOrchid>Lan trung bình</MediumOrchid>
  2693. <MediumPurple>Tím trung bình</MediumPurple>
  2694. <MediumSeaGreen>Xanh nước biển trung bình</MediumSeaGreen>
  2695. <MediumSlateBlue>Xanh lam trung bình</MediumSlateBlue>
  2696. <MediumSpringGreen>Xanh xuân trung bình</MediumSpringGreen>
  2697. <MediumTurquoise>Ngọc lam trung bình</MediumTurquoise>
  2698. <MediumVioletRed>Đỏ tím trung bình</MediumVioletRed>
  2699. <MidnightBlue>Xanh nửa đêm</MidnightBlue>
  2700. <MintCream>Kem bạc hà</MintCream>
  2701. <MistyRose>Hồng sẫm</MistyRose>
  2702. <Moccasin>Da</Moccasin>
  2703. <NavajoWhite>Trắng Navajo</NavajoWhite>
  2704. <Navy>Xanh hải quân</Navy>
  2705. <OldLace>Ren cổ</OldLace>
  2706. <Olive>Ôliu</Olive>
  2707. <OliveDrab>Xám ôliu</OliveDrab>
  2708. <Orange>Da cam</Orange>
  2709. <OrangeRed>Đỏ cam</OrangeRed>
  2710. <Orchid>Lan</Orchid>
  2711. <PaleGoldenrod>Vàng nhạt</PaleGoldenrod>
  2712. <PaleGreen>Xanh nhạt</PaleGreen>
  2713. <PaleTurquoise>Ngọc nhạt</PaleTurquoise>
  2714. <PaleVioletRed>Đỏ tím nhạt</PaleVioletRed>
  2715. <PapayaWhip>Đu đủ đánh</PapayaWhip>
  2716. <PeachPuff>Hồng đào</PeachPuff>
  2717. <Peru>Peru</Peru>
  2718. <Pink>Hồng</Pink>
  2719. <Plum>Mận</Plum>
  2720. <PowderBlue>Xanh bột</PowderBlue>
  2721. <Purple>Tím</Purple>
  2722. <Red>Đỏ</Red>
  2723. <RosyBrown>Nâu hồng</RosyBrown>
  2724. <RoyalBlue>Xanh đậm</RoyalBlue>
  2725. <SaddleBrown>Da nâu</SaddleBrown>
  2726. <Salmon>Thịt cá hồi</Salmon>
  2727. <SandyBrown>Nâu cát</SandyBrown>
  2728. <SeaGreen>Xanh nước biển</SeaGreen>
  2729. <SeaShell>Vỏ sò</SeaShell>
  2730. <Sienna>Đất vàng</Sienna>
  2731. <Silver>Bạc</Silver>
  2732. <SkyBlue>Xanh da trời</SkyBlue>
  2733. <SlateBlue>Xanh lam</SlateBlue>
  2734. <SlateGray>Xám đá</SlateGray>
  2735. <Snow>Tuyết</Snow>
  2736. <SpringGreen>Xanh xuân</SpringGreen>
  2737. <SteelBlue>Xanh thép</SteelBlue>
  2738. <Tan>Da</Tan>
  2739. <Teal>Xanh mòng két</Teal>
  2740. <Thistle>Kế sữa</Thistle>
  2741. <Tomato>Cà chua</Tomato>
  2742. <Transparent>Trong suốt</Transparent>
  2743. <Turquoise>Ngọc lam</Turquoise>
  2744. <VeryDarkGray>Rất đậm</VeryDarkGray>
  2745. <Violet>Tím</Violet>
  2746. <Wheat>Lúa mì</Wheat>
  2747. <White>Trắng</White>
  2748. <WhiteSmoke>Trắng khói</WhiteSmoke>
  2749. <Yellow>Vàng</Yellow>
  2750. <YellowGreen>Xanh lục vàng</YellowGreen>
  2751. </PropertyColor>
  2752. <PropertyEnum>
  2753. <boolFalse>Sai</boolFalse>
  2754. <boolTrue>Đúng</boolTrue>
  2755. <BorderStyleFixed3D>3D cố định</BorderStyleFixed3D>
  2756. <BorderStyleFixedSingle>Đơn cố định</BorderStyleFixedSingle>
  2757. <BorderStyleNone>Không</BorderStyleNone>
  2758. <ChartAxesTicksAll>Tất cả</ChartAxesTicksAll>
  2759. <ChartAxesTicksMajor>Chính</ChartAxesTicksMajor>
  2760. <ChartAxesTicksNone>Không</ChartAxesTicksNone>
  2761. <ChartGridLinesAll>Tất cả</ChartGridLinesAll>
  2762. <ChartGridLinesMajor>Chính</ChartGridLinesMajor>
  2763. <ChartGridLinesNone>Không</ChartGridLinesNone>
  2764. <ComboBoxStyleDropDown>Thả xuống</ComboBoxStyleDropDown>
  2765. <ComboBoxStyleDropDownList>Danh sách thả xuống</ComboBoxStyleDropDownList>
  2766. <ComboBoxStyleSimple>Đơn giản</ComboBoxStyleSimple>
  2767. <ContentAlignmentBottomCenter>Dưới giữa</ContentAlignmentBottomCenter>
  2768. <ContentAlignmentBottomLeft>Dưới trái</ContentAlignmentBottomLeft>
  2769. <ContentAlignmentBottomRight>Dưới phải</ContentAlignmentBottomRight>
  2770. <ContentAlignmentMiddleCenter>Giữa</ContentAlignmentMiddleCenter>
  2771. <ContentAlignmentMiddleLeft>Giữa trái</ContentAlignmentMiddleLeft>
  2772. <ContentAlignmentMiddleRight>Giữa phải</ContentAlignmentMiddleRight>
  2773. <ContentAlignmentTopCenter>Trên giữa</ContentAlignmentTopCenter>
  2774. <ContentAlignmentTopLeft>Trên trái</ContentAlignmentTopLeft>
  2775. <ContentAlignmentTopRight>Trên phải</ContentAlignmentTopRight>
  2776. <DataGridLineStyleNone>Không</DataGridLineStyleNone>
  2777. <DataGridLineStyleSolid>Đặc</DataGridLineStyleSolid>
  2778. <DateTimePickerFormatCustom>Chỉnh sửa</DateTimePickerFormatCustom>
  2779. <DateTimePickerFormatLong>Dài</DateTimePickerFormatLong>
  2780. <DateTimePickerFormatShort>Ngắn</DateTimePickerFormatShort>
  2781. <DateTimePickerFormatTime>Thời gian</DateTimePickerFormatTime>
  2782. <DialogResultAbort>Hủy bỏ</DialogResultAbort>
  2783. <DialogResultCancel>Hủy</DialogResultCancel>
  2784. <DialogResultIgnore>Bỏ qua</DialogResultIgnore>
  2785. <DialogResultNo>Không</DialogResultNo>
  2786. <DialogResultNone>Không</DialogResultNone>
  2787. <DialogResultOK>Đồng ý</DialogResultOK>
  2788. <DialogResultRetry>Thử lại</DialogResultRetry>
  2789. <DialogResultYes>Có</DialogResultYes>
  2790. <DuplexDefault>Mặc định</DuplexDefault>
  2791. <DuplexHorizontal>Chiều ngang</DuplexHorizontal>
  2792. <DuplexSimplex>Đơn giản</DuplexSimplex>
  2793. <DuplexVertical>Chiều dọc</DuplexVertical>
  2794. <FormStartPositionCenterParent>Giữa đối tượng cha</FormStartPositionCenterParent>
  2795. <FormStartPositionCenterScreen>Giữa màn hình</FormStartPositionCenterScreen>
  2796. <FormStartPositionManual>Sổ tay</FormStartPositionManual>
  2797. <FormStartPositionWindowsDefaultBounds>Giới hạn mặc định của cửa sổ</FormStartPositionWindowsDefaultBounds>
  2798. <FormStartPositionWindowsDefaultLocation>Vị trí mặc định của cửa sổ</FormStartPositionWindowsDefaultLocation>
  2799. <FormWindowStateMaximized>Phóng to</FormWindowStateMaximized>
  2800. <FormWindowStateMinimized>Thu nhỏ</FormWindowStateMinimized>
  2801. <FormWindowStateNormal>Bình thường</FormWindowStateNormal>
  2802. <HorizontalAlignmentCenter>Giữa</HorizontalAlignmentCenter>
  2803. <HorizontalAlignmentLeft>Trái</HorizontalAlignmentLeft>
  2804. <HorizontalAlignmentRight>Phải</HorizontalAlignmentRight>
  2805. <HotkeyPrefixHide>Ẩn</HotkeyPrefixHide>
  2806. <HotkeyPrefixNone>Không</HotkeyPrefixNone>
  2807. <HotkeyPrefixShow>Hiển thị</HotkeyPrefixShow>
  2808. <LeftRightAlignmentLeft>Trái</LeftRightAlignmentLeft>
  2809. <LeftRightAlignmentRight>Phải</LeftRightAlignmentRight>
  2810. <PictureBoxSizeModeAutoSize>Kích cỡ tự động</PictureBoxSizeModeAutoSize>
  2811. <PictureBoxSizeModeCenterImage>Giữa ảnh</PictureBoxSizeModeCenterImage>
  2812. <PictureBoxSizeModeNormal>Bình thường</PictureBoxSizeModeNormal>
  2813. <PictureBoxSizeModeStretchImage>Giãn hình ảnh</PictureBoxSizeModeStretchImage>
  2814. <RelationDirectionChildToParent>Con-Đến-Cha</RelationDirectionChildToParent>
  2815. <RelationDirectionParentToChild>Cha-Đến-Con</RelationDirectionParentToChild>
  2816. <RightToLeftInherit>Thừa kế</RightToLeftInherit>
  2817. <RightToLeftNo>Không</RightToLeftNo>
  2818. <RightToLeftYes>Có</RightToLeftYes>
  2819. <SelectionModeMultiExtended>Đa mở rộng</SelectionModeMultiExtended>
  2820. <SelectionModeMultiSimple>Đa đơn giản</SelectionModeMultiSimple>
  2821. <SelectionModeNone>Không</SelectionModeNone>
  2822. <SelectionModeOne>Một</SelectionModeOne>
  2823. <StiAnchorModeBottom>Dưới</StiAnchorModeBottom>
  2824. <StiAnchorModeLeft>Trái</StiAnchorModeLeft>
  2825. <StiAnchorModeRight>Phải</StiAnchorModeRight>
  2826. <StiAnchorModeTop>Trên</StiAnchorModeTop>
  2827. <StiAngleAngle0>0 Độ</StiAngleAngle0>
  2828. <StiAngleAngle180>180 Độ</StiAngleAngle180>
  2829. <StiAngleAngle270>270 Độ</StiAngleAngle270>
  2830. <StiAngleAngle45>45 Độ</StiAngleAngle45>
  2831. <StiAngleAngle90>90 Độ</StiAngleAngle90>
  2832. <StiArrowStyleArc>Vòng cung</StiArrowStyleArc>
  2833. <StiArrowStyleArcAndCircle>Vòng cung và vòng tròn</StiArrowStyleArcAndCircle>
  2834. <StiArrowStyleCircle>Tròn</StiArrowStyleCircle>
  2835. <StiArrowStyleLines>Đường thẳng</StiArrowStyleLines>
  2836. <StiArrowStyleNone>Không</StiArrowStyleNone>
  2837. <StiArrowStyleTriangle>Tam giác</StiArrowStyleTriangle>
  2838. <StiBorderSidesAll>Tất cả</StiBorderSidesAll>
  2839. <StiBorderSidesBottom>Dưới</StiBorderSidesBottom>
  2840. <StiBorderSidesLeft>Trái</StiBorderSidesLeft>
  2841. <StiBorderSidesNone>Không</StiBorderSidesNone>
  2842. <StiBorderSidesRight>Phải</StiBorderSidesRight>
  2843. <StiBorderSidesTop>Trên</StiBorderSidesTop>
  2844. <StiBorderStyleBump>Băng</StiBorderStyleBump>
  2845. <StiBorderStyleEtched>Khắc</StiBorderStyleEtched>
  2846. <StiBorderStyleFlat>Phẳng</StiBorderStyleFlat>
  2847. <StiBorderStyleNone>Không</StiBorderStyleNone>
  2848. <StiBorderStyleRaised>Nâng lên</StiBorderStyleRaised>
  2849. <StiBorderStyleRaisedInner>Nâng bên trong</StiBorderStyleRaisedInner>
  2850. <StiBorderStyleRaisedOuter>Nâng bên ngoài</StiBorderStyleRaisedOuter>
  2851. <StiBorderStyleSunken>Chìm xuống</StiBorderStyleSunken>
  2852. <StiBorderStyleSunkenInner>Chìm bên trong</StiBorderStyleSunkenInner>
  2853. <StiBorderStyleSunkenOuter>Chìm bên ngoài</StiBorderStyleSunkenOuter>
  2854. <StiBrushTypeGlare>Cọ ánh sáng chói</StiBrushTypeGlare>
  2855. <StiBrushTypeGradient0>Cọ đổ dốc màu, Góc 0</StiBrushTypeGradient0>
  2856. <StiBrushTypeGradient180>Cọ đổ dốc màu, Góc 180</StiBrushTypeGradient180>
  2857. <StiBrushTypeGradient270>Cọ đổ dốc màu, Góc 270</StiBrushTypeGradient270>
  2858. <StiBrushTypeGradient45>Cọ đổ dốc màu, Góc 45</StiBrushTypeGradient45>
  2859. <StiBrushTypeGradient90>Cọ đổ dốc màu, Góc 90</StiBrushTypeGradient90>
  2860. <StiBrushTypeSolid>Cọ đặc</StiBrushTypeSolid>
  2861. <StiCalculationModeCompilation>Biên dịch</StiCalculationModeCompilation>
  2862. <StiCalculationModeInterpretation>Thông dịch</StiCalculationModeInterpretation>
  2863. <StiCapStyleArrow>Mũi tên</StiCapStyleArrow>
  2864. <StiCapStyleDiamond>Kim cương</StiCapStyleDiamond>
  2865. <StiCapStyleNone>Không</StiCapStyleNone>
  2866. <StiCapStyleOpen>Mở</StiCapStyleOpen>
  2867. <StiCapStyleOval>Trái xoan</StiCapStyleOval>
  2868. <StiCapStyleSquare>Vuông</StiCapStyleSquare>
  2869. <StiCapStyleStealth>Lõm</StiCapStyleStealth>
  2870. <StiChartLabelsStyleCategory>Danh mục</StiChartLabelsStyleCategory>
  2871. <StiChartLabelsStyleCategoryPercentOfTotal>Danh mục - Phần trăm của tổng số</StiChartLabelsStyleCategoryPercentOfTotal>
  2872. <StiChartLabelsStyleCategoryValue>Danh mục - Giá trị</StiChartLabelsStyleCategoryValue>
  2873. <StiChartLabelsStylePercentOfTotal>Phần trăm của tổng số</StiChartLabelsStylePercentOfTotal>
  2874. <StiChartLabelsStyleValue>Giá trị</StiChartLabelsStyleValue>
  2875. <StiChartTitleDockBottom>Dưới</StiChartTitleDockBottom>
  2876. <StiChartTitleDockLeft>Trái</StiChartTitleDockLeft>
  2877. <StiChartTitleDockRight>Phải</StiChartTitleDockRight>
  2878. <StiChartTitleDockTop>Trên</StiChartTitleDockTop>
  2879. <StiChartTrendLineTypeExponential>Số mũ</StiChartTrendLineTypeExponential>
  2880. <StiChartTrendLineTypeLinear>Tuyến tính</StiChartTrendLineTypeLinear>
  2881. <StiChartTrendLineTypeLogarithmic>Lôgarit</StiChartTrendLineTypeLogarithmic>
  2882. <StiChartTrendLineTypeNone>Không</StiChartTrendLineTypeNone>
  2883. <StiCheckStyleCheck>Kiểm tra</StiCheckStyleCheck>
  2884. <StiCheckStyleCheckRectangle>Chữ nhật kiểm tra</StiCheckStyleCheckRectangle>
  2885. <StiCheckStyleCross>Chữ thập</StiCheckStyleCross>
  2886. <StiCheckStyleCrossCircle>Tròn chữ thập</StiCheckStyleCrossCircle>
  2887. <StiCheckStyleCrossRectangle>Chữ nhật chữ thập</StiCheckStyleCrossRectangle>
  2888. <StiCheckStyleDotCircle>Hình tròn chấm</StiCheckStyleDotCircle>
  2889. <StiCheckStyleDotRectangle>Hình chữ nhật chấm</StiCheckStyleDotRectangle>
  2890. <StiCheckStyleNone>Không</StiCheckStyleNone>
  2891. <StiCheckStyleNoneCircle>Không có hình tròn</StiCheckStyleNoneCircle>
  2892. <StiCheckStyleNoneRectangle>Không có hình chữ nhật</StiCheckStyleNoneRectangle>
  2893. <StiCheckSumNo>Không</StiCheckSumNo>
  2894. <StiCheckSumYes>Có</StiCheckSumYes>
  2895. <StiCode11CheckSumAuto>Tự động</StiCode11CheckSumAuto>
  2896. <StiCode11CheckSumNone>Không</StiCode11CheckSumNone>
  2897. <StiCode11CheckSumOneDigit>Một chữ số</StiCode11CheckSumOneDigit>
  2898. <StiCode11CheckSumTwoDigits>Hai chữ số</StiCode11CheckSumTwoDigits>
  2899. <StiColorScaleTypeColor2>Tỉ lệ 2-Màu</StiColorScaleTypeColor2>
  2900. <StiColorScaleTypeColor3>Tỉ lệ 3-Màu</StiColorScaleTypeColor3>
  2901. <StiColumnDirectionAcrossThenDown>Qua rồi xuống</StiColumnDirectionAcrossThenDown>
  2902. <StiColumnDirectionDownThenAcross>Xuống rồi qua</StiColumnDirectionDownThenAcross>
  2903. <StiCrossHorAlignmentCenter>Giữa</StiCrossHorAlignmentCenter>
  2904. <StiCrossHorAlignmentLeft>Trái</StiCrossHorAlignmentLeft>
  2905. <StiCrossHorAlignmentNone>Không</StiCrossHorAlignmentNone>
  2906. <StiCrossHorAlignmentRight>Phải</StiCrossHorAlignmentRight>
  2907. <StiDateSelectionModeAutoRange>Phạm vi tự động</StiDateSelectionModeAutoRange>
  2908. <StiDateSelectionModeRange>Phạm vi</StiDateSelectionModeRange>
  2909. <StiDateSelectionModeSingle>Cá nhân</StiDateSelectionModeSingle>
  2910. <StiDateTimeTypeDate>Ngày</StiDateTimeTypeDate>
  2911. <StiDateTimeTypeDateAndTime>Ngày và giờ</StiDateTimeTypeDateAndTime>
  2912. <StiDateTimeTypeTime>Giờ</StiDateTimeTypeTime>
  2913. <StiDesignerScaleModeAutomaticScaling>Tự động mở rộng quy mô</StiDesignerScaleModeAutomaticScaling>
  2914. <StiDesignerScaleModeScaling100>Thu nhỏ 100%</StiDesignerScaleModeScaling100>
  2915. <StiDesignerSpecificationAuto>Xác định tự động</StiDesignerSpecificationAuto>
  2916. <StiDesignerSpecificationBeginner>Tôi mới bắt đầu</StiDesignerSpecificationBeginner>
  2917. <StiDesignerSpecificationBICreator>Tôi là người tạo BI</StiDesignerSpecificationBICreator>
  2918. <StiDesignerSpecificationDeveloper>Tôi là nhà phát triển</StiDesignerSpecificationDeveloper>
  2919. <StiDisplayNameTypeFull>Đầy đủ</StiDisplayNameTypeFull>
  2920. <StiDisplayNameTypeNone>Không</StiDisplayNameTypeNone>
  2921. <StiDisplayNameTypeShort>Ngắn</StiDisplayNameTypeShort>
  2922. <StiDockStyleBottom>Dưới</StiDockStyleBottom>
  2923. <StiDockStyleFill>Đầy</StiDockStyleFill>
  2924. <StiDockStyleLeft>Trái</StiDockStyleLeft>
  2925. <StiDockStyleNone>Không</StiDockStyleNone>
  2926. <StiDockStyleRight>Phải</StiDockStyleRight>
  2927. <StiDockStyleTop>Trên</StiDockStyleTop>
  2928. <StiDrillDownModeMultiPage>Nhiều trang</StiDrillDownModeMultiPage>
  2929. <StiDrillDownModeSinglePage>Một trang</StiDrillDownModeSinglePage>
  2930. <StiEanSupplementTypeFiveDigit>Năm chữ số</StiEanSupplementTypeFiveDigit>
  2931. <StiEanSupplementTypeNone>Không</StiEanSupplementTypeNone>
  2932. <StiEanSupplementTypeTwoDigit>Hai chữ số</StiEanSupplementTypeTwoDigit>
  2933. <StiEmptyCellsAsConnectPointsWithLine>Kết nối điểm với đường</StiEmptyCellsAsConnectPointsWithLine>
  2934. <StiEmptyCellsAsGap>Lỗ hổng</StiEmptyCellsAsGap>
  2935. <StiEmptyCellsAsZero>Số không</StiEmptyCellsAsZero>
  2936. <StiEmptySizeModeAlignFooterToBottom>Căn chỉnh chân trang xuống dưới</StiEmptySizeModeAlignFooterToBottom>
  2937. <StiEmptySizeModeAlignFooterToTop>Căn chỉnh chân trang lên trên</StiEmptySizeModeAlignFooterToTop>
  2938. <StiEmptySizeModeDecreaseLastRow>Giảm hàng cuối</StiEmptySizeModeDecreaseLastRow>
  2939. <StiEmptySizeModeIncreaseLastRow>Tăng hàng cuối</StiEmptySizeModeIncreaseLastRow>
  2940. <StiEnumeratorTypeABC>ABC</StiEnumeratorTypeABC>
  2941. <StiEnumeratorTypeArabic>Ả Rập</StiEnumeratorTypeArabic>
  2942. <StiEnumeratorTypeNone>Không</StiEnumeratorTypeNone>
  2943. <StiEnumeratorTypeRoman>La Mã</StiEnumeratorTypeRoman>
  2944. <StiExtendedStyleBoolFalse>Sai</StiExtendedStyleBoolFalse>
  2945. <StiExtendedStyleBoolFromStyle>Từ phong cách</StiExtendedStyleBoolFromStyle>
  2946. <StiExtendedStyleBoolTrue>Đúng</StiExtendedStyleBoolTrue>
  2947. <StiFilterConditionBeginningWith>bắt đầu bằng</StiFilterConditionBeginningWith>
  2948. <StiFilterConditionBetween>giữa</StiFilterConditionBetween>
  2949. <StiFilterConditionContaining>có chứa</StiFilterConditionContaining>
  2950. <StiFilterConditionEndingWith>kết thúc bằng</StiFilterConditionEndingWith>
  2951. <StiFilterConditionEqualTo>bằng</StiFilterConditionEqualTo>
  2952. <StiFilterConditionGreaterThan>lớn hơn</StiFilterConditionGreaterThan>
  2953. <StiFilterConditionGreaterThanOrEqualTo>lớn hơn hoặc bằng</StiFilterConditionGreaterThanOrEqualTo>
  2954. <StiFilterConditionIsBlank>trống</StiFilterConditionIsBlank>
  2955. <StiFilterConditionIsNotBlank>không trống</StiFilterConditionIsNotBlank>
  2956. <StiFilterConditionIsNotNull>là không vô giá trị</StiFilterConditionIsNotNull>
  2957. <StiFilterConditionIsNull>là vô giá trị</StiFilterConditionIsNull>
  2958. <StiFilterConditionLessThan>nhỏ hơn</StiFilterConditionLessThan>
  2959. <StiFilterConditionLessThanOrEqualTo>nhỏ hơn hoặc bằng</StiFilterConditionLessThanOrEqualTo>
  2960. <StiFilterConditionNotBetween>không nằm giữa</StiFilterConditionNotBetween>
  2961. <StiFilterConditionNotContaining>không chứa</StiFilterConditionNotContaining>
  2962. <StiFilterConditionNotEqualTo>không bằng</StiFilterConditionNotEqualTo>
  2963. <StiFilterDataTypeBoolean>Boolean</StiFilterDataTypeBoolean>
  2964. <StiFilterDataTypeDateTime>Ngày giờ</StiFilterDataTypeDateTime>
  2965. <StiFilterDataTypeExpression>Biểu thức</StiFilterDataTypeExpression>
  2966. <StiFilterDataTypeNumeric>Số</StiFilterDataTypeNumeric>
  2967. <StiFilterDataTypeString>Chuỗi ký tự</StiFilterDataTypeString>
  2968. <StiFilterEngineReportEngine>Công cụ báo cáo</StiFilterEngineReportEngine>
  2969. <StiFilterEngineSQLQuery>Truy vấn SQL</StiFilterEngineSQLQuery>
  2970. <StiFilterItemArgument>Đối số</StiFilterItemArgument>
  2971. <StiFilterItemExpression>Biểu hiện</StiFilterItemExpression>
  2972. <StiFilterItemValue>Giá trị</StiFilterItemValue>
  2973. <StiFilterItemValueClose>Giá trị đóng</StiFilterItemValueClose>
  2974. <StiFilterItemValueEnd>Giá trị kết thúc</StiFilterItemValueEnd>
  2975. <StiFilterItemValueHigh>Giá trị cao</StiFilterItemValueHigh>
  2976. <StiFilterItemValueLow>Giá trị thấp</StiFilterItemValueLow>
  2977. <StiFilterItemValueOpen>Giá trị mở</StiFilterItemValueOpen>
  2978. <StiFilterModeAnd>Và</StiFilterModeAnd>
  2979. <StiFilterModeOr>Hoặc</StiFilterModeOr>
  2980. <StiFontIconGroupAccessibilityIcons>Khả năng tiếp cận</StiFontIconGroupAccessibilityIcons>
  2981. <StiFontIconGroupBrandIcons>Nhãn hiệu</StiFontIconGroupBrandIcons>
  2982. <StiFontIconGroupDirectionalIcons>Định hướng</StiFontIconGroupDirectionalIcons>
  2983. <StiFontIconGroupGenderIcons>Giới tính</StiFontIconGroupGenderIcons>
  2984. <StiFontIconGroupMedicalIcons>Y khoa</StiFontIconGroupMedicalIcons>
  2985. <StiFontIconGroupPaymentIcons>Thanh toán</StiFontIconGroupPaymentIcons>
  2986. <StiFontIconGroupSpinnerIcons>Con quay</StiFontIconGroupSpinnerIcons>
  2987. <StiFontIconGroupTransportationIcons>Phương tiện vận chuyển</StiFontIconGroupTransportationIcons>
  2988. <StiFontIconGroupVideoPlayerIcons>Phim</StiFontIconGroupVideoPlayerIcons>
  2989. <StiFontIconGroupWebApplicationIcons>Ứng dụng</StiFontIconGroupWebApplicationIcons>
  2990. <StiFontSizeModeAuto>Tự động</StiFontSizeModeAuto>
  2991. <StiFontSizeModeTarget>Mục tiêu</StiFontSizeModeTarget>
  2992. <StiFontSizeModeValue>Giá trị</StiFontSizeModeValue>
  2993. <StiFormStartModeOnEnd>Khi kết thúc</StiFormStartModeOnEnd>
  2994. <StiFormStartModeOnPreview>Khi xem trước</StiFormStartModeOnPreview>
  2995. <StiFormStartModeOnStart>Khi bắt đầu</StiFormStartModeOnStart>
  2996. <StiGaugeCalculationModeAuto>Tự động</StiGaugeCalculationModeAuto>
  2997. <StiGaugeCalculationModeCustom>Chỉnh sửa</StiGaugeCalculationModeCustom>
  2998. <StiGaugeRangeModePercentage>Tỷ lệ phần trăm</StiGaugeRangeModePercentage>
  2999. <StiGaugeRangeModeValue>Giá trị</StiGaugeRangeModeValue>
  3000. <StiGaugeRangeTypeColor>Màu</StiGaugeRangeTypeColor>
  3001. <StiGaugeRangeTypeNone>Không</StiGaugeRangeTypeNone>
  3002. <StiGaugeTypeBullet>Đạn</StiGaugeTypeBullet>
  3003. <StiGaugeTypeFullCircular>Vòng tròn đầy đủ</StiGaugeTypeFullCircular>
  3004. <StiGaugeTypeHalfCircular>Nửa vòng tròn</StiGaugeTypeHalfCircular>
  3005. <StiGaugeTypeHorizontalLinear>Tuyến tính ngang</StiGaugeTypeHorizontalLinear>
  3006. <StiGaugeTypeLinear>Tuyến tính</StiGaugeTypeLinear>
  3007. <StiGroupSortDirectionAscending>Tăng dần</StiGroupSortDirectionAscending>
  3008. <StiGroupSortDirectionDescending>Giảm dần</StiGroupSortDirectionDescending>
  3009. <StiGroupSortDirectionNone>Không</StiGroupSortDirectionNone>
  3010. <StiHorAlignmentCenter>Giữa</StiHorAlignmentCenter>
  3011. <StiHorAlignmentLeft>Trái</StiHorAlignmentLeft>
  3012. <StiHorAlignmentRight>Phải</StiHorAlignmentRight>
  3013. <StiIconAlignmentBottom>Dưới</StiIconAlignmentBottom>
  3014. <StiIconAlignmentLeft>Trái</StiIconAlignmentLeft>
  3015. <StiIconAlignmentNone>Không</StiIconAlignmentNone>
  3016. <StiIconAlignmentRight>Phải</StiIconAlignmentRight>
  3017. <StiIconAlignmentTop>Trên</StiIconAlignmentTop>
  3018. <StiImageProcessingDuplicatesTypeGlobalHide>Ẩn toàn cầu</StiImageProcessingDuplicatesTypeGlobalHide>
  3019. <StiImageProcessingDuplicatesTypeGlobalMerge>Hợp nhất toàn cầu</StiImageProcessingDuplicatesTypeGlobalMerge>
  3020. <StiImageProcessingDuplicatesTypeGlobalRemoveImage>Xóa ảnh toàn cầu</StiImageProcessingDuplicatesTypeGlobalRemoveImage>
  3021. <StiImageProcessingDuplicatesTypeHide>Ẩn</StiImageProcessingDuplicatesTypeHide>
  3022. <StiImageProcessingDuplicatesTypeMerge>Hợp nhất</StiImageProcessingDuplicatesTypeMerge>
  3023. <StiImageProcessingDuplicatesTypeNone>Không</StiImageProcessingDuplicatesTypeNone>
  3024. <StiImageProcessingDuplicatesTypeRemoveImage>Xóa ảnh</StiImageProcessingDuplicatesTypeRemoveImage>
  3025. <StiImageRotationFlipHorizontal>Lật ngang</StiImageRotationFlipHorizontal>
  3026. <StiImageRotationFlipVertical>Lật dọc</StiImageRotationFlipVertical>
  3027. <StiImageRotationNone>Không</StiImageRotationNone>
  3028. <StiImageRotationRotate180>Xoay 180°</StiImageRotationRotate180>
  3029. <StiImageRotationRotate90CCW>Xoay 90° CCW</StiImageRotationRotate90CCW>
  3030. <StiImageRotationRotate90CW>Xoay 90° CW</StiImageRotationRotate90CW>
  3031. <StiInteractionOnClick>Không</StiInteractionOnClick>
  3032. <StiInteractionOnClickApplyFilter>Áp dụng bộ lọc</StiInteractionOnClickApplyFilter>
  3033. <StiInteractionOnClickDrillDown>Truy cập sâu</StiInteractionOnClickDrillDown>
  3034. <StiInteractionOnClickOpenHyperlink>Mở siêu liên kết</StiInteractionOnClickOpenHyperlink>
  3035. <StiInteractionOnClickShowDashboard>Hiển thị bảng điều khiển</StiInteractionOnClickShowDashboard>
  3036. <StiInteractionOnHoverNone>Không</StiInteractionOnHoverNone>
  3037. <StiInteractionOnHoverShowHyperlink>Hiển thị siêu liên kết</StiInteractionOnHoverShowHyperlink>
  3038. <StiInteractionOnHoverShowToolTip>Hiển thị mẹo công cụ</StiInteractionOnHoverShowToolTip>
  3039. <StiInteractionOpenHyperlinkDestinationCurrentTab>Thẻ hiện tại</StiInteractionOpenHyperlinkDestinationCurrentTab>
  3040. <StiInteractionOpenHyperlinkDestinationNewTab>Thẻ mới</StiInteractionOpenHyperlinkDestinationNewTab>
  3041. <StiItemSelectionModeMulti>Nhiều</StiItemSelectionModeMulti>
  3042. <StiItemSelectionModeOne>Một</StiItemSelectionModeOne>
  3043. <StiKeepDetailsKeepDetailsTogether>Giữ chi tiết cùng nhau</StiKeepDetailsKeepDetailsTogether>
  3044. <StiKeepDetailsKeepFirstDetailTogether>Giữ chi tiết đầu tiên cùng nhau</StiKeepDetailsKeepFirstDetailTogether>
  3045. <StiKeepDetailsKeepFirstRowTogether>Giữ hàng đầu cùng nhau</StiKeepDetailsKeepFirstRowTogether>
  3046. <StiKeepDetailsNone>Không</StiKeepDetailsNone>
  3047. <StiLabelsPlacementAutoRotation>Xoay tự động</StiLabelsPlacementAutoRotation>
  3048. <StiLabelsPlacementNone>Không</StiLabelsPlacementNone>
  3049. <StiLabelsPlacementOneLine>Một dòng</StiLabelsPlacementOneLine>
  3050. <StiLabelsPlacementTwoLines>Hai dòng</StiLabelsPlacementTwoLines>
  3051. <StiLegendDirectionBottomToTop>Dưới lên trên</StiLegendDirectionBottomToTop>
  3052. <StiLegendDirectionLeftToRight>Trái sang phải</StiLegendDirectionLeftToRight>
  3053. <StiLegendDirectionRightToLeft>Phải sang trái</StiLegendDirectionRightToLeft>
  3054. <StiLegendDirectionTopToBottom>Trên xuống dưới</StiLegendDirectionTopToBottom>
  3055. <StiLegendHorAlignmentCenter>Giữa</StiLegendHorAlignmentCenter>
  3056. <StiLegendHorAlignmentLeft>Trái</StiLegendHorAlignmentLeft>
  3057. <StiLegendHorAlignmentLeftOutside>Trái ngoài</StiLegendHorAlignmentLeftOutside>
  3058. <StiLegendHorAlignmentRight>Phải</StiLegendHorAlignmentRight>
  3059. <StiLegendHorAlignmentRightOutside>Phải ngoài</StiLegendHorAlignmentRightOutside>
  3060. <StiLegendVertAlignmentBottom>Dưới</StiLegendVertAlignmentBottom>
  3061. <StiLegendVertAlignmentBottomOutside>Dưới ngoài</StiLegendVertAlignmentBottomOutside>
  3062. <StiLegendVertAlignmentCenter>Giữa</StiLegendVertAlignmentCenter>
  3063. <StiLegendVertAlignmentTop>Trên</StiLegendVertAlignmentTop>
  3064. <StiLegendVertAlignmentTopOutside>Trên ngoài</StiLegendVertAlignmentTopOutside>
  3065. <StiMapIDAustralia>Úc</StiMapIDAustralia>
  3066. <StiMapIDAustria>Áo</StiMapIDAustria>
  3067. <StiMapIDBrazil>Brazil</StiMapIDBrazil>
  3068. <StiMapIDCanada>Canada</StiMapIDCanada>
  3069. <StiMapIDChina>Trung Quốc</StiMapIDChina>
  3070. <StiMapIDEU>EU</StiMapIDEU>
  3071. <StiMapIDEurope>Châu Âu</StiMapIDEurope>
  3072. <StiMapIDFrance>Pháp</StiMapIDFrance>
  3073. <StiMapIDGermany>Đức</StiMapIDGermany>
  3074. <StiMapIDItaly>Ý</StiMapIDItaly>
  3075. <StiMapIDNetherlands>Hà Lan</StiMapIDNetherlands>
  3076. <StiMapIDRussia>Nga</StiMapIDRussia>
  3077. <StiMapIDUK>Anh</StiMapIDUK>
  3078. <StiMapIDUSA>Mỹ</StiMapIDUSA>
  3079. <StiMapIDWorld>Thế giới</StiMapIDWorld>
  3080. <StiMapModeChoropleth>Đồ giải</StiMapModeChoropleth>
  3081. <StiMapModeOnline>Trực tuyến</StiMapModeOnline>
  3082. <StiMapTypeGroup>Nhóm</StiMapTypeGroup>
  3083. <StiMapTypeHeatmap>Bản đồ nhiệt</StiMapTypeHeatmap>
  3084. <StiMapTypeHeatmapWithGroup>Bản đồ nhiệt với nhóm</StiMapTypeHeatmapWithGroup>
  3085. <StiMapTypeIndividual>Cá nhân</StiMapTypeIndividual>
  3086. <StiMapTypeNone>Không</StiMapTypeNone>
  3087. <StiMapTypePoints>Điểm</StiMapTypePoints>
  3088. <StiMarkerAlignmentCenter>Giữa</StiMarkerAlignmentCenter>
  3089. <StiMarkerAlignmentLeft>Trái</StiMarkerAlignmentLeft>
  3090. <StiMarkerAlignmentRight>Phải</StiMarkerAlignmentRight>
  3091. <StiMarkerTypeCircle>Vòng tròn</StiMarkerTypeCircle>
  3092. <StiMarkerTypeHalfCircle>Một nửa vòng tròn</StiMarkerTypeHalfCircle>
  3093. <StiMarkerTypeHexagon>Lục giác</StiMarkerTypeHexagon>
  3094. <StiMarkerTypeRectangle>Chữ nhật</StiMarkerTypeRectangle>
  3095. <StiMarkerTypeStar5>Ngôi sao 5 cánh</StiMarkerTypeStar5>
  3096. <StiMarkerTypeStar6>Ngôi sao 6 cánh</StiMarkerTypeStar6>
  3097. <StiMarkerTypeStar7>Ngôi sao 7 cánh</StiMarkerTypeStar7>
  3098. <StiMarkerTypeStar8>Ngôi sao 8 cánh</StiMarkerTypeStar8>
  3099. <StiMarkerTypeTriangle>Tam giác</StiMarkerTypeTriangle>
  3100. <StiNestedFactorHigh>Cao</StiNestedFactorHigh>
  3101. <StiNestedFactorLow>Thấp</StiNestedFactorLow>
  3102. <StiNestedFactorNormal>Bình thường</StiNestedFactorNormal>
  3103. <StiNumberOfPassDoublePass>Truyền hai lần</StiNumberOfPassDoublePass>
  3104. <StiNumberOfPassSinglePass>Truyền một lần</StiNumberOfPassSinglePass>
  3105. <StiOnlineMapHeatmapColorGradientTypeBlackAquaWhite>Đen trắng</StiOnlineMapHeatmapColorGradientTypeBlackAquaWhite>
  3106. <StiOnlineMapHeatmapColorGradientTypeBlueRed>Xanh đỏ</StiOnlineMapHeatmapColorGradientTypeBlueRed>
  3107. <StiOnlineMapHeatmapColorGradientTypeColorSpectrum>Phổ màu</StiOnlineMapHeatmapColorGradientTypeColorSpectrum>
  3108. <StiOnlineMapHeatmapColorGradientTypeDeepSea>Biển sâu</StiOnlineMapHeatmapColorGradientTypeDeepSea>
  3109. <StiOnlineMapHeatmapColorGradientTypeHeatedMetal>Kim loại được nung nóng</StiOnlineMapHeatmapColorGradientTypeHeatedMetal>
  3110. <StiOnlineMapHeatmapColorGradientTypeIncandescent>Chói sáng</StiOnlineMapHeatmapColorGradientTypeIncandescent>
  3111. <StiOnlineMapHeatmapColorGradientTypeSteppedColors>Các bước màu</StiOnlineMapHeatmapColorGradientTypeSteppedColors>
  3112. <StiOnlineMapHeatmapColorGradientTypeSunrise>Bình minh</StiOnlineMapHeatmapColorGradientTypeSunrise>
  3113. <StiOnlineMapHeatmapColorGradientTypeVisibleSpectrum>Quang phổ nhìn thấy được</StiOnlineMapHeatmapColorGradientTypeVisibleSpectrum>
  3114. <StiOnlineMapLocationTypeAdminDivision1>Quản trị viên 1</StiOnlineMapLocationTypeAdminDivision1>
  3115. <StiOnlineMapLocationTypeAdminDivision2>Quản trị viên 2</StiOnlineMapLocationTypeAdminDivision2>
  3116. <StiOnlineMapLocationTypeAuto>Tự động</StiOnlineMapLocationTypeAuto>
  3117. <StiOnlineMapLocationTypeCountryRegion>Quốc gia</StiOnlineMapLocationTypeCountryRegion>
  3118. <StiOnlineMapLocationTypeNeighborhood>Khu vực lân cận</StiOnlineMapLocationTypeNeighborhood>
  3119. <StiOnlineMapLocationTypePopulatedPlace>Nơi đông dân cư</StiOnlineMapLocationTypePopulatedPlace>
  3120. <StiOnlineMapLocationTypePostcode1>Mã bưu điện 1</StiOnlineMapLocationTypePostcode1>
  3121. <StiOnlineMapLocationTypePostcode2>Mã bưu điện 2</StiOnlineMapLocationTypePostcode2>
  3122. <StiOnlineMapLocationTypePostcode3>Mã bưu điện 3</StiOnlineMapLocationTypePostcode3>
  3123. <StiOnlineMapLocationTypePostcode4>Mã bưu điện 4</StiOnlineMapLocationTypePostcode4>
  3124. <StiOrientationHorizontal>Ngang</StiOrientationHorizontal>
  3125. <StiOrientationHorizontalRight>Ngang phải</StiOrientationHorizontalRight>
  3126. <StiOrientationVertical>Dọc</StiOrientationVertical>
  3127. <StiPageOrientationLandscape>Ngang</StiPageOrientationLandscape>
  3128. <StiPageOrientationPortrait>Dọc</StiPageOrientationPortrait>
  3129. <StiPenStyleDash>Vạch</StiPenStyleDash>
  3130. <StiPenStyleDashDot>Vạch chấm</StiPenStyleDashDot>
  3131. <StiPenStyleDashDotDot>Vạch chấm chấm</StiPenStyleDashDotDot>
  3132. <StiPenStyleDot>Chấm</StiPenStyleDot>
  3133. <StiPenStyleDouble>Gấp đôi</StiPenStyleDouble>
  3134. <StiPenStyleNone>Không</StiPenStyleNone>
  3135. <StiPenStyleSolid>Đặc</StiPenStyleSolid>
  3136. <StiPlesseyCheckSumModulo10>Modulo10</StiPlesseyCheckSumModulo10>
  3137. <StiPlesseyCheckSumModulo11>Modulo11</StiPlesseyCheckSumModulo11>
  3138. <StiPlesseyCheckSumNone>Không</StiPlesseyCheckSumNone>
  3139. <StiPreviewModeDotMatrix>Ma trận điểm</StiPreviewModeDotMatrix>
  3140. <StiPreviewModeStandard>Tiêu chuẩn</StiPreviewModeStandard>
  3141. <StiPreviewModeStandardAndDotMatrix>Tiêu chuẩn và ma trận điểm</StiPreviewModeStandardAndDotMatrix>
  3142. <StiPrintOnEvenOddPagesTypeIgnore>Bỏ qua</StiPrintOnEvenOddPagesTypeIgnore>
  3143. <StiPrintOnEvenOddPagesTypePrintOnEvenPages>In những trang chẵn</StiPrintOnEvenOddPagesTypePrintOnEvenPages>
  3144. <StiPrintOnEvenOddPagesTypePrintOnOddPages>In những trang lẻ</StiPrintOnEvenOddPagesTypePrintOnOddPages>
  3145. <StiPrintOnTypeAllPages>Tất cả các trang</StiPrintOnTypeAllPages>
  3146. <StiPrintOnTypeExceptFirstAndLastPage>Trừ trang đầu tiên và trang cuối</StiPrintOnTypeExceptFirstAndLastPage>
  3147. <StiPrintOnTypeExceptFirstPage>Trừ trang đầu tiên</StiPrintOnTypeExceptFirstPage>
  3148. <StiPrintOnTypeExceptLastPage>Trừ trang cuối</StiPrintOnTypeExceptLastPage>
  3149. <StiPrintOnTypeOnlyFirstAndLastPage>Chỉ trang đầu tiên và cuối cùng</StiPrintOnTypeOnlyFirstAndLastPage>
  3150. <StiPrintOnTypeOnlyFirstPage>Chỉ trang đầu tiên</StiPrintOnTypeOnlyFirstPage>
  3151. <StiPrintOnTypeOnlyLastPage>Chỉ trang cuối</StiPrintOnTypeOnlyLastPage>
  3152. <StiProcessAtEndOfPage>Kết thúc trang</StiProcessAtEndOfPage>
  3153. <StiProcessAtEndOfReport>Kết thúc báo cáo</StiProcessAtEndOfReport>
  3154. <StiProcessAtNone>Không</StiProcessAtNone>
  3155. <StiProcessingDuplicatesTypeBasedOnTagHide>Ẩn dựa trên thẻ</StiProcessingDuplicatesTypeBasedOnTagHide>
  3156. <StiProcessingDuplicatesTypeBasedOnTagMerge>Hợp nhất dựa trên thẻ</StiProcessingDuplicatesTypeBasedOnTagMerge>
  3157. <StiProcessingDuplicatesTypeBasedOnTagRemoveText>Xóa văn bản dựa trên thẻ</StiProcessingDuplicatesTypeBasedOnTagRemoveText>
  3158. <StiProcessingDuplicatesTypeBasedOnValueAndTagHide>Ẩn dựa trên giá trị và thẻ</StiProcessingDuplicatesTypeBasedOnValueAndTagHide>
  3159. <StiProcessingDuplicatesTypeBasedOnValueAndTagMerge>Hợp nhất dựa trên giá trị và thẻ</StiProcessingDuplicatesTypeBasedOnValueAndTagMerge>
  3160. <StiProcessingDuplicatesTypeBasedOnValueRemoveText>Xóa dựa trên giá trị văn bản</StiProcessingDuplicatesTypeBasedOnValueRemoveText>
  3161. <StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagHide>Ẩn toàn cầu dựa trên giá trị và thẻ</StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagHide>
  3162. <StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagMerge>Hợp nhất toàn cầu dựa trên giá trị và thẻ</StiProcessingDuplicatesTypeGlobalBasedOnValueAndTagMerge>
  3163. <StiProcessingDuplicatesTypeGlobalBasedOnValueRemoveText>Xóa toàn cầu dựa trên văn bản giá trị</StiProcessingDuplicatesTypeGlobalBasedOnValueRemoveText>
  3164. <StiProcessingDuplicatesTypeGlobalHide>Ẩn toàn cầu</StiProcessingDuplicatesTypeGlobalHide>
  3165. <StiProcessingDuplicatesTypeGlobalMerge>Hợp nhất toàn cầu</StiProcessingDuplicatesTypeGlobalMerge>
  3166. <StiProcessingDuplicatesTypeGlobalRemoveText>Xóa văn bản toàn cầu</StiProcessingDuplicatesTypeGlobalRemoveText>
  3167. <StiProcessingDuplicatesTypeHide>Ẩn</StiProcessingDuplicatesTypeHide>
  3168. <StiProcessingDuplicatesTypeMerge>Hợp nhất</StiProcessingDuplicatesTypeMerge>
  3169. <StiProcessingDuplicatesTypeNone>Không</StiProcessingDuplicatesTypeNone>
  3170. <StiProcessingDuplicatesTypeRemoveText>Xóa chữ</StiProcessingDuplicatesTypeRemoveText>
  3171. <StiProgressElementModeCircle>Vòng tròn</StiProgressElementModeCircle>
  3172. <StiProgressElementModeDataBars>Thanh dữ liệu</StiProgressElementModeDataBars>
  3173. <StiProgressElementModePie>Hình tròn</StiProgressElementModePie>
  3174. <StiRadarStyleXFCircle>Tròn</StiRadarStyleXFCircle>
  3175. <StiRadarStyleXFPolygon>Đa giác</StiRadarStyleXFPolygon>
  3176. <StiReportCacheModeAuto>Tự động</StiReportCacheModeAuto>
  3177. <StiReportCacheModeOff>Tắt</StiReportCacheModeOff>
  3178. <StiReportCacheModeOn>Bật</StiReportCacheModeOn>
  3179. <StiReportUnitTypeCentimeters>Centimet</StiReportUnitTypeCentimeters>
  3180. <StiReportUnitTypeHundredthsOfInch>Trăm phần trăm của Inch</StiReportUnitTypeHundredthsOfInch>
  3181. <StiReportUnitTypeInches>Inch</StiReportUnitTypeInches>
  3182. <StiReportUnitTypeMillimeters>Millimet</StiReportUnitTypeMillimeters>
  3183. <StiReportUnitTypePixels>Điểm ảnh</StiReportUnitTypePixels>
  3184. <StiRestrictionsAll>Tất cả</StiRestrictionsAll>
  3185. <StiRestrictionsAllowChange>Cho phép thay đổi</StiRestrictionsAllowChange>
  3186. <StiRestrictionsAllowDelete>Cho phép xóa</StiRestrictionsAllowDelete>
  3187. <StiRestrictionsAllowMove>Cho phép di chuyển</StiRestrictionsAllowMove>
  3188. <StiRestrictionsAllowResize>Cho phép thay đổi kích cỡ</StiRestrictionsAllowResize>
  3189. <StiRestrictionsAllowSelect>Cho phép chọn</StiRestrictionsAllowSelect>
  3190. <StiRestrictionsNone>Không</StiRestrictionsNone>
  3191. <StiSelectionModeFirst>Đầu tiên</StiSelectionModeFirst>
  3192. <StiSelectionModeFromVariable>Từ biến</StiSelectionModeFromVariable>
  3193. <StiSelectionModeNothing>Không có gì</StiSelectionModeNothing>
  3194. <StiSeriesLabelsValueTypeArgument>Đối số</StiSeriesLabelsValueTypeArgument>
  3195. <StiSeriesLabelsValueTypeArgumentValue>Đối số - Giá trị</StiSeriesLabelsValueTypeArgumentValue>
  3196. <StiSeriesLabelsValueTypeSeriesTitle>Tiêu đề dòng</StiSeriesLabelsValueTypeSeriesTitle>
  3197. <StiSeriesLabelsValueTypeSeriesTitleArgument>Tiêu đề dòng - Đối số</StiSeriesLabelsValueTypeSeriesTitleArgument>
  3198. <StiSeriesLabelsValueTypeSeriesTitleValue>Tiêu đề dòng - Giá trị</StiSeriesLabelsValueTypeSeriesTitleValue>
  3199. <StiSeriesLabelsValueTypeTag>Thẻ</StiSeriesLabelsValueTypeTag>
  3200. <StiSeriesLabelsValueTypeValue>Giá trị</StiSeriesLabelsValueTypeValue>
  3201. <StiSeriesLabelsValueTypeValueArgument>Giá trị - Đối số</StiSeriesLabelsValueTypeValueArgument>
  3202. <StiSeriesLabelsValueTypeWeight>Trọng số</StiSeriesLabelsValueTypeWeight>
  3203. <StiSeriesSortDirectionAscending>Tăng dần</StiSeriesSortDirectionAscending>
  3204. <StiSeriesSortDirectionDescending>Giảm dần</StiSeriesSortDirectionDescending>
  3205. <StiSeriesSortTypeArgument>Đối số</StiSeriesSortTypeArgument>
  3206. <StiSeriesSortTypeNone>Không</StiSeriesSortTypeNone>
  3207. <StiSeriesSortTypeValue>Giá trị</StiSeriesSortTypeValue>
  3208. <StiSeriesXAxisBottomXAxis>Trục X dưới</StiSeriesXAxisBottomXAxis>
  3209. <StiSeriesXAxisTopXAxis>Trục X trên</StiSeriesXAxisTopXAxis>
  3210. <StiSeriesYAxisLeftYAxis>Trục Y trái</StiSeriesYAxisLeftYAxis>
  3211. <StiSeriesYAxisRightYAxis>Trục Y phải</StiSeriesYAxisRightYAxis>
  3212. <StiShapeDirectionDown>Xuống</StiShapeDirectionDown>
  3213. <StiShapeDirectionLeft>Trái</StiShapeDirectionLeft>
  3214. <StiShapeDirectionRight>Phải</StiShapeDirectionRight>
  3215. <StiShapeDirectionUp>Lên</StiShapeDirectionUp>
  3216. <StiShiftModeDecreasingSize>Giảm kích cỡ</StiShiftModeDecreasingSize>
  3217. <StiShiftModeIncreasingSize>Tăng kích cỡ</StiShiftModeIncreasingSize>
  3218. <StiShiftModeNone>Không</StiShiftModeNone>
  3219. <StiShiftModeOnlyInWidthOfComponent>Chỉ trong chiều rộng của thành phần</StiShiftModeOnlyInWidthOfComponent>
  3220. <StiShowSeriesLabelsFromChart>Từ biểu đồ</StiShowSeriesLabelsFromChart>
  3221. <StiShowSeriesLabelsFromSeries>Từ dải</StiShowSeriesLabelsFromSeries>
  3222. <StiShowSeriesLabelsNone>Không</StiShowSeriesLabelsNone>
  3223. <StiShowXAxisBoth>Cả hai</StiShowXAxisBoth>
  3224. <StiShowXAxisBottom>Dưới</StiShowXAxisBottom>
  3225. <StiShowXAxisCenter>Giữa</StiShowXAxisCenter>
  3226. <StiShowYAxisBoth>Cả hai</StiShowYAxisBoth>
  3227. <StiShowYAxisCenter>Giữa</StiShowYAxisCenter>
  3228. <StiShowYAxisLeft>Trái</StiShowYAxisLeft>
  3229. <StiSizeModeAutoSize>Kích thước tự động</StiSizeModeAutoSize>
  3230. <StiSizeModeFit>Phù hợp</StiSizeModeFit>
  3231. <StiSortDirectionAsc>Tăng dần</StiSortDirectionAsc>
  3232. <StiSortDirectionDesc>Giảm dần</StiSortDirectionDesc>
  3233. <StiSortDirectionNone>Không</StiSortDirectionNone>
  3234. <StiSortTypeByDisplayValue>theo giá trị hiển thị</StiSortTypeByDisplayValue>
  3235. <StiSortTypeByValue>theo giá trị</StiSortTypeByValue>
  3236. <StiSqlSourceTypeStoredProcedure>Thủ tục lưu trữ</StiSqlSourceTypeStoredProcedure>
  3237. <StiSqlSourceTypeTable>Truy vấn</StiSqlSourceTypeTable>
  3238. <StiStyleComponentTypeChart>Biểu đồ</StiStyleComponentTypeChart>
  3239. <StiStyleComponentTypeCheckBox>Hộp chọn</StiStyleComponentTypeCheckBox>
  3240. <StiStyleComponentTypeCrossTab>Truy vấn chéo</StiStyleComponentTypeCrossTab>
  3241. <StiStyleComponentTypeImage>Hình ảnh</StiStyleComponentTypeImage>
  3242. <StiStyleComponentTypePrimitive>Nguyên thủy</StiStyleComponentTypePrimitive>
  3243. <StiStyleComponentTypeText>Văn bản</StiStyleComponentTypeText>
  3244. <StiStyleConditionTypeComponentName>Tên thành phần</StiStyleConditionTypeComponentName>
  3245. <StiStyleConditionTypeComponentType>Kiểu thành phần</StiStyleConditionTypeComponentType>
  3246. <StiStyleConditionTypeLocation>Vị trí</StiStyleConditionTypeLocation>
  3247. <StiStyleConditionTypePlacement>Sắp xếp</StiStyleConditionTypePlacement>
  3248. <StiSummaryValuesAllValues>Tất cả các giá trị</StiSummaryValuesAllValues>
  3249. <StiSummaryValuesSkipNulls>Bỏ qua giá trị null</StiSummaryValuesSkipNulls>
  3250. <StiSummaryValuesSkipZerosAndNulls>Bỏ qua 0 và null</StiSummaryValuesSkipZerosAndNulls>
  3251. <StiTablceCellTypeCheckBox>Hộp chọn</StiTablceCellTypeCheckBox>
  3252. <StiTablceCellTypeImage>Hình ảnh</StiTablceCellTypeImage>
  3253. <StiTablceCellTypeRichText>Văn bản đa dạng</StiTablceCellTypeRichText>
  3254. <StiTablceCellTypeText>Văn bản</StiTablceCellTypeText>
  3255. <StiTableAutoWidthNone>Không</StiTableAutoWidthNone>
  3256. <StiTableAutoWidthPage>Trang</StiTableAutoWidthPage>
  3257. <StiTableAutoWidthTable>Bảng</StiTableAutoWidthTable>
  3258. <StiTableAutoWidthTypeFullTable>Bảng đầy đủ</StiTableAutoWidthTypeFullTable>
  3259. <StiTableAutoWidthTypeLastColumns>Cột cuối cùng</StiTableAutoWidthTypeLastColumns>
  3260. <StiTableAutoWidthTypeNone>Không</StiTableAutoWidthTypeNone>
  3261. <StiTargetModePercentage>Phần trăm</StiTargetModePercentage>
  3262. <StiTargetModeVariation>Biến thể</StiTargetModeVariation>
  3263. <StiTextHorAlignmentCenter>Giữa</StiTextHorAlignmentCenter>
  3264. <StiTextHorAlignmentLeft>Trái</StiTextHorAlignmentLeft>
  3265. <StiTextHorAlignmentRight>Phải</StiTextHorAlignmentRight>
  3266. <StiTextHorAlignmentWidth>Rộng</StiTextHorAlignmentWidth>
  3267. <StiTextPositionCenterBottom>Giữa dưới</StiTextPositionCenterBottom>
  3268. <StiTextPositionCenterTop>Giữa trên</StiTextPositionCenterTop>
  3269. <StiTextPositionLeftBottom>Trái dưới</StiTextPositionLeftBottom>
  3270. <StiTextPositionLeftTop>Trái trên</StiTextPositionLeftTop>
  3271. <StiTextPositionRightBottom>Phải dưới</StiTextPositionRightBottom>
  3272. <StiTextPositionRightTop>Phải trên</StiTextPositionRightTop>
  3273. <StiTextQualityStandard>Tiêu chuẩn</StiTextQualityStandard>
  3274. <StiTextQualityTypographic>In</StiTextQualityTypographic>
  3275. <StiTextQualityWysiwyg>Wysiwyg</StiTextQualityWysiwyg>
  3276. <StiTitlePositionInside>Bên trong</StiTitlePositionInside>
  3277. <StiTitlePositionOutside>Bên ngoài</StiTitlePositionOutside>
  3278. <StiTypeModeList>Danh sách</StiTypeModeList>
  3279. <StiTypeModeNullableValue>Giá trị có thể null</StiTypeModeNullableValue>
  3280. <StiTypeModeRange>Phạm vi</StiTypeModeRange>
  3281. <StiTypeModeValue>Giá trị</StiTypeModeValue>
  3282. <StiVertAlignmentBottom>Dưới</StiVertAlignmentBottom>
  3283. <StiVertAlignmentCenter>Giữa</StiVertAlignmentCenter>
  3284. <StiVertAlignmentTop>Trên</StiVertAlignmentTop>
  3285. <StiViewModeNormal>Bình thường</StiViewModeNormal>
  3286. <StiViewModePageBreakPreview>Xem trước ngắt trang</StiViewModePageBreakPreview>
  3287. <StiXmlTypeAdoNetXml>ADO.NET XML</StiXmlTypeAdoNetXml>
  3288. <StiXmlTypeXml>XML</StiXmlTypeXml>
  3289. <StringAlignmentCenter>Giữa</StringAlignmentCenter>
  3290. <StringAlignmentFar>Xa</StringAlignmentFar>
  3291. <StringAlignmentNear>Gần</StringAlignmentNear>
  3292. <StringTrimmingCharacter>Ký tự</StringTrimmingCharacter>
  3293. <StringTrimmingEllipsisCharacter>Lược từ ký tự</StringTrimmingEllipsisCharacter>
  3294. <StringTrimmingEllipsisPath>Lược từ đường dẫn</StringTrimmingEllipsisPath>
  3295. <StringTrimmingEllipsisWord>Lược từ từ</StringTrimmingEllipsisWord>
  3296. <StringTrimmingNone>Không</StringTrimmingNone>
  3297. <StringTrimmingWord>Từ</StringTrimmingWord>
  3298. </PropertyEnum>
  3299. <PropertyEvents>
  3300. <AfterPrintEvent>Sau khi in</AfterPrintEvent>
  3301. <AfterSelectEvent>Sau khi lựa chọn</AfterSelectEvent>
  3302. <BeforePrintEvent>Trước khi in</BeforePrintEvent>
  3303. <BeginRenderEvent>Trước khi kết xuất</BeginRenderEvent>
  3304. <CheckedChangedEvent>Đã thay đổi đã kiểm tra</CheckedChangedEvent>
  3305. <ClickEvent>Nhấp chuột</ClickEvent>
  3306. <ClosedFormEvent>Mẫu đã đóng</ClosedFormEvent>
  3307. <ClosingFormEvent>Mẫu kết thúc</ClosingFormEvent>
  3308. <ColumnBeginRenderEvent>Cột bắt đầu kết xuất</ColumnBeginRenderEvent>
  3309. <ColumnEndRenderEvent>Cột bắt kết thúc xuất</ColumnEndRenderEvent>
  3310. <ConnectedEvent>Sự kiện đã kết nối</ConnectedEvent>
  3311. <ConnectingEvent>Sự kiện đang kết nối</ConnectingEvent>
  3312. <DisconnectedEvent>Đã ngắt kết nối</DisconnectedEvent>
  3313. <DisconnectingEvent>Ngắt kết nối</DisconnectingEvent>
  3314. <DoubleClickEvent>Nhấn đúp chuột</DoubleClickEvent>
  3315. <EndRenderEvent>Kết thúc kết xuất</EndRenderEvent>
  3316. <EnterEvent>Đi vào</EnterEvent>
  3317. <ExportedEvent>Đã xuất</ExportedEvent>
  3318. <ExportingEvent>Đang xuấy</ExportingEvent>
  3319. <GetArgumentEvent>Lấy đối số</GetArgumentEvent>
  3320. <GetBookmarkEvent>Lấy đánh dấu</GetBookmarkEvent>
  3321. <GetCollapsedEvent>Lấy thu gọn</GetCollapsedEvent>
  3322. <GetCrossValueEvent>Lấy giá trị chéo</GetCrossValueEvent>
  3323. <GetCutPieListEvent>Nhận danh sách hình tròn cắt</GetCutPieListEvent>
  3324. <GetDataUrlEvent>Lấy dữ liệu URL</GetDataUrlEvent>
  3325. <GetDisplayCrossValueEvent>Lấy giá trị chéo hiển thị</GetDisplayCrossValueEvent>
  3326. <GetDrillDownReportEvent>Lấy báo cáo tầng thông tin</GetDrillDownReportEvent>
  3327. <GetExcelSheetEvent>Lấy bảng Excel</GetExcelSheetEvent>
  3328. <GetExcelValueEvent>Lấy giá trị Excel</GetExcelValueEvent>
  3329. <GetHyperlinkEvent>Lấy đường dẫn liên kết</GetHyperlinkEvent>
  3330. <GetImageDataEvent>Lấy dữ liệu ảnh</GetImageDataEvent>
  3331. <GetImageURLEvent>Lấy URL ảnh</GetImageURLEvent>
  3332. <GetListOfArgumentsEvent>Lấy danh sách đối số</GetListOfArgumentsEvent>
  3333. <GetListOfHyperlinksEvent>Lấy danh sách đường dẫn liên kết</GetListOfHyperlinksEvent>
  3334. <GetListOfTagsEvent>Lấy danh sách thẻ</GetListOfTagsEvent>
  3335. <GetListOfToolTipsEvent>Lấy danh sách mẹo hướng dẫn</GetListOfToolTipsEvent>
  3336. <GetListOfValuesEndEvent>Lấy danh sách giá trị kết thúc</GetListOfValuesEndEvent>
  3337. <GetListOfValuesEvent>Lấy danh sách giá trị</GetListOfValuesEvent>
  3338. <GetListOfWeights>Lấy danh sách trọng số</GetListOfWeights>
  3339. <GetListOfWeightsEvent>Lấy danh sách trọng số</GetListOfWeightsEvent>
  3340. <GetSummaryExpressionEvent>Lấy biểu thức tóm tắt</GetSummaryExpressionEvent>
  3341. <GetTagEvent>Lấy thẻ</GetTagEvent>
  3342. <GetTitleEvent>Lấy tiêu đề</GetTitleEvent>
  3343. <GetToolTipEvent>Lấy mẹo hướng dẫn</GetToolTipEvent>
  3344. <GetValueEndEvent>Lấy giá trị kết thúc</GetValueEndEvent>
  3345. <GetValueEvent>Lấy giá trị</GetValueEvent>
  3346. <GetWeightEvent>Lấy trọng số</GetWeightEvent>
  3347. <LeaveEvent>Rời khỏi</LeaveEvent>
  3348. <LoadFormEvent>Nạp biểu mẫu</LoadFormEvent>
  3349. <MouseDownEvent>Di chuột xuống</MouseDownEvent>
  3350. <MouseEnterEvent>Chuột đi vào</MouseEnterEvent>
  3351. <MouseLeaveEvent>Chuột đi ra</MouseLeaveEvent>
  3352. <MouseMoveEvent>Di chuyển chuột</MouseMoveEvent>
  3353. <MouseUpEvent>Di chuột lên</MouseUpEvent>
  3354. <NewAutoSeriesEvent>Tạo mới dịch vụ tự động</NewAutoSeriesEvent>
  3355. <PositionChangedEvent>Vị trí thay đổi</PositionChangedEvent>
  3356. <PrintedEvent>Đã in</PrintedEvent>
  3357. <PrintingEvent>In</PrintingEvent>
  3358. <ProcessCellEvent>Ô quá trình</ProcessCellEvent>
  3359. <ProcessChartEvent>Sơ đồ quá trình</ProcessChartEvent>
  3360. <RenderingEvent>Kết xuất</RenderingEvent>
  3361. <ReportCacheProcessingEvent>Báo cáo xử lý bộ đệm</ReportCacheProcessingEvent>
  3362. <SelectedIndexChangedEvent>Chỉ mục đã chọn đã thay đổi</SelectedIndexChangedEvent>
  3363. <StateRestoreEvent>Khôi phục trạng thái</StateRestoreEvent>
  3364. <StateSaveEvent>Lưu trạng thái</StateSaveEvent>
  3365. <ValueChangedEvent>Giá trị đã thay đổi</ValueChangedEvent>
  3366. </PropertyEvents>
  3367. <PropertyHatchStyle>
  3368. <BackwardDiagonal>Đường chéo ngược</BackwardDiagonal>
  3369. <Cross>Chéo nhau</Cross>
  3370. <DarkDownwardDiagonal>Đường chéo tối hướng xuống</DarkDownwardDiagonal>
  3371. <DarkHorizontal>Đường tối ngang</DarkHorizontal>
  3372. <DarkUpwardDiagonal>Đường chéo tối hướng lên</DarkUpwardDiagonal>
  3373. <DarkVertical>Đường tối dọc</DarkVertical>
  3374. <DashedDownwardDiagonal>Đường chéo gạch hướng xuống</DashedDownwardDiagonal>
  3375. <DashedHorizontal>Đường gạch ngang</DashedHorizontal>
  3376. <DashedUpwardDiagonal>Đường chéo gạch hướng lên</DashedUpwardDiagonal>
  3377. <DashedVertical>Đường gạch dọc</DashedVertical>
  3378. <DiagonalBrick>Đường chéo viên gạch</DiagonalBrick>
  3379. <DiagonalCross>Đường chéo lẫn lộn</DiagonalCross>
  3380. <Divot>Mảng nhỏ</Divot>
  3381. <DottedDiamond>Kim cương chấm</DottedDiamond>
  3382. <DottedGrid>Lưới chấm</DottedGrid>
  3383. <ForwardDiagonal>Đường chéo xuôi</ForwardDiagonal>
  3384. <Horizontal>Ngang</Horizontal>
  3385. <HorizontalBrick>Viên gạch ngang</HorizontalBrick>
  3386. <LargeCheckerBoard>Bảng ô vuông lớn</LargeCheckerBoard>
  3387. <LargeConfetti>Hoa giấy lớn</LargeConfetti>
  3388. <LargeGrid>Lưới to</LargeGrid>
  3389. <LightDownwardDiagonal>Đường chéo sáng hướng xuống</LightDownwardDiagonal>
  3390. <LightHorizontal>Đường sáng ngang</LightHorizontal>
  3391. <LightUpwardDiagonal>Đường chéo sáng hướng lên</LightUpwardDiagonal>
  3392. <LightVertical>Đường sáng dọc</LightVertical>
  3393. <NarrowHorizontal>Thu hẹp ngang</NarrowHorizontal>
  3394. <NarrowVertical>Thu hẹp dọc</NarrowVertical>
  3395. <OutlinedDiamond>Kim cương rỗng</OutlinedDiamond>
  3396. <Percent05>05 phần trăm</Percent05>
  3397. <Percent10>10 phần trăm</Percent10>
  3398. <Percent20>20 phần trăm</Percent20>
  3399. <Percent25>25 phần trăm</Percent25>
  3400. <Percent30>30 phần trăm</Percent30>
  3401. <Percent40>40 phần trăm</Percent40>
  3402. <Percent50>50 phần trăm</Percent50>
  3403. <Percent60>60 phần trăm</Percent60>
  3404. <Percent70>70 phần trăm</Percent70>
  3405. <Percent75>75 phần trăm</Percent75>
  3406. <Percent80>80 phần trăm</Percent80>
  3407. <Percent90>90 phần trăm</Percent90>
  3408. <Plaid>Sọc ca rô</Plaid>
  3409. <Shingle>Vết lợp</Shingle>
  3410. <SmallCheckerBoard>Bảng ô vuông nhỏ</SmallCheckerBoard>
  3411. <SmallConfetti>Hoa giấy nhỏ</SmallConfetti>
  3412. <SmallGrid>Lưới nhỏ</SmallGrid>
  3413. <SolidDiamond>Kim cương đặc</SolidDiamond>
  3414. <Sphere>Quả cầu</Sphere>
  3415. <Trellis>Lưới</Trellis>
  3416. <Vertical>Dọc</Vertical>
  3417. <Wave>Làn sóng</Wave>
  3418. <Weave>Đan xen</Weave>
  3419. <WideDownwardDiagonal>Đường chéo rộng hướng xuống</WideDownwardDiagonal>
  3420. <WideUpwardDiagonal>Đường chéo rộng hướng lên</WideUpwardDiagonal>
  3421. <ZigZag>Zig Zag</ZigZag>
  3422. </PropertyHatchStyle>
  3423. <PropertyMain>
  3424. <AcceptsReturn>Chấp nhận trả về</AcceptsReturn>
  3425. <AcceptsTab>Chấp nhận Tab</AcceptsTab>
  3426. <Actual>Thực tế</Actual>
  3427. <AddClearZone>Thêm vùng xóa</AddClearZone>
  3428. <Advanced>Nâng cao</Advanced>
  3429. <AggregateFunction>Chức năng tổng hợp</AggregateFunction>
  3430. <AggregateFunctions>Các chức năng tổng hợp</AggregateFunctions>
  3431. <Alias>Bí danh</Alias>
  3432. <Alignment>Căn chỉnh</Alignment>
  3433. <AllowApplyBorderColor>Cho phép áp dụng màu đường viền</AllowApplyBorderColor>
  3434. <AllowApplyBrush>Cho phép áp dụng cọ</AllowApplyBrush>
  3435. <AllowApplyBrushNegative>Cho phép áp dụng cọ âm</AllowApplyBrushNegative>
  3436. <AllowApplyColorNegative>Cho phép áp dụng màu âm</AllowApplyColorNegative>
  3437. <AllowApplyLineColor>Cho phép áp dụng màu đường kẻ</AllowApplyLineColor>
  3438. <AllowApplyStyle>Cho phép áp dụng phong cách</AllowApplyStyle>
  3439. <AllowExpressions>Cho phép biểu thức</AllowExpressions>
  3440. <AllowHtmlTags>Cho phép các thẻ HTML</AllowHtmlTags>
  3441. <AllowSeries>Cho phép dòng</AllowSeries>
  3442. <AllowSeriesElements>Cho phép phần tử dòng</AllowSeriesElements>
  3443. <AllowSorting>Cho phép phân loại</AllowSorting>
  3444. <AllowUseBackColor>Cho phép sử dụng màu nề</AllowUseBackColor>
  3445. <AllowUseBorder>Cho phép sử dụng viền</AllowUseBorder>
  3446. <AllowUseBorderFormatting>Cho phép sử dụng định dạng viền</AllowUseBorderFormatting>
  3447. <AllowUseBorderSides>Cho phép sử dụng mặt viền</AllowUseBorderSides>
  3448. <AllowUseBorderSidesFromLocation>Cho phép sử dụng mặt viền từ vị trí</AllowUseBorderSidesFromLocation>
  3449. <AllowUseBrush>Cho phép sử dụng cọ</AllowUseBrush>
  3450. <AllowUseFont>Cho phép sử dụng phông</AllowUseFont>
  3451. <AllowUseForeColor>Cho phép sử dụng màu đằng trước</AllowUseForeColor>
  3452. <AllowUseHorAlignment>Cho phép sử dụng căn chỉnh Hor</AllowUseHorAlignment>
  3453. <AllowUseImage>Cho phép sử dụng hình ảnh</AllowUseImage>
  3454. <AllowUseNegativeTextBrush>Cho phép sử dụng cọ văn bản phủ định</AllowUseNegativeTextBrush>
  3455. <AllowUserValues>Cho phép giá trị người dùng</AllowUserValues>
  3456. <AllowUseTextBrush>Cho phép sử dụng cọ văn bản</AllowUseTextBrush>
  3457. <AllowUseTextFormat>Cho phép sử dụng định dạng văn bản</AllowUseTextFormat>
  3458. <AllowUseTextOptions>Cho phép sử dụng văn bản tùy chọn</AllowUseTextOptions>
  3459. <AllowUseVertAlignment>Cho phép sử dụng căn chỉnh theo chiều dọc</AllowUseVertAlignment>
  3460. <AllowUsingAsSqlParameter>Cho phép sử dụng như tham số SQL</AllowUsingAsSqlParameter>
  3461. <AlternatingBackColor>Màu nền luân phiên</AlternatingBackColor>
  3462. <AlternatingCellBackColor>Màu thay thế nền ô</AlternatingCellBackColor>
  3463. <AlternatingCellForeColor>Màu thay thế viền ô</AlternatingCellForeColor>
  3464. <AlternatingDataColor>Màu dữ liệu thay thế</AlternatingDataColor>
  3465. <AlternatingDataForeground>Tiền cảnh dữ liệu thay thế</AlternatingDataForeground>
  3466. <Always>Luôn luôn</Always>
  3467. <Anchor>Mỏ neo</Anchor>
  3468. <Angle>Góc</Angle>
  3469. <Antialiasing>Khử răng cưa</Antialiasing>
  3470. <Area>Vùng</Area>
  3471. <Argument>Đối số</Argument>
  3472. <ArgumentDataColumn>Đối số cột dữ liệu</ArgumentDataColumn>
  3473. <ArgumentFormat>Định dạng đối số</ArgumentFormat>
  3474. <Arguments>Các đối số</Arguments>
  3475. <ArrowHeight>Chiều cao mũi tên</ArrowHeight>
  3476. <ArrowStyle>Phong cách mũi tên</ArrowStyle>
  3477. <ArrowWidth>Chiều rộng mũi tên</ArrowWidth>
  3478. <AspectRatio>Tỷ lệ cạnh</AspectRatio>
  3479. <Author>Tác giả</Author>
  3480. <Auto>Tự động</Auto>
  3481. <AutoCalculateCenterPoint>Tự động tính điểm trung tâm</AutoCalculateCenterPoint>
  3482. <AutoDataColumns>Cột dữ liệu tự động</AutoDataColumns>
  3483. <AutoDataRows>Hàng dữ liệu tự động</AutoDataRows>
  3484. <AutoLocalizeReportOnRun>Tự động cá nhân hóa báo cáo khi chạy</AutoLocalizeReportOnRun>
  3485. <AutoRefresh>Tự động làm mới</AutoRefresh>
  3486. <AutoRotate>Xoay tự động</AutoRotate>
  3487. <AutoScale>Tỉ lệ tự động</AutoScale>
  3488. <AutoSeriesColorDataColumn>Cột dữ liệu dòng màu tự động</AutoSeriesColorDataColumn>
  3489. <AutoSeriesKeyDataColumn>Cột dữ liệu dòng khóa tự động</AutoSeriesKeyDataColumn>
  3490. <AutoSeriesTitleDataColumn>Cột dữ liệu dòng tiêu đề tự động</AutoSeriesTitleDataColumn>
  3491. <AutoWidth>Chiều rộng tự động</AutoWidth>
  3492. <AutoWidthType>Loại chiều rộng tự động</AutoWidthType>
  3493. <AvailableInTheViewer>Có sẵn trong trình xem</AvailableInTheViewer>
  3494. <AxisLabelsColor>Màu nhãn</AxisLabelsColor>
  3495. <AxisLineColor>Màu đường thẳng</AxisLineColor>
  3496. <AxisTitleColor>Màu tiêu đề</AxisTitleColor>
  3497. <AxisValue>Giá trị trục</AxisValue>
  3498. <BackColor>Màu nền</BackColor>
  3499. <Background>Nền</Background>
  3500. <BackgroundColor>Màu nền</BackgroundColor>
  3501. <BandColor>Bảng màu</BandColor>
  3502. <BarCodeType>Loại mã vạch</BarCodeType>
  3503. <BasicStyleColor>Màu kiểu cơ bản</BasicStyleColor>
  3504. <Blend>Trộn</Blend>
  3505. <Bold>Đậm</Bold>
  3506. <Bookmark>Đánh dấu</Bookmark>
  3507. <Border>Viền</Border>
  3508. <BorderBrush>Cọ viền</BorderBrush>
  3509. <BorderColor>Màu viền</BorderColor>
  3510. <BorderColorNegative>Màu viền âm</BorderColorNegative>
  3511. <Borders>Đường viền</Borders>
  3512. <BorderSize>Kích cỡ đường viền</BorderSize>
  3513. <BorderStyle>Kiểu đường viền</BorderStyle>
  3514. <BorderWidth>Chiều rộng đường viền</BorderWidth>
  3515. <Bottom>Dưới</Bottom>
  3516. <BottomSide>Mặt dưới</BottomSide>
  3517. <BreakIfLessThan>Ngắt nếu nhỏ hơn</BreakIfLessThan>
  3518. <Brush>Cọ</Brush>
  3519. <BrushNegative>Cọ âm</BrushNegative>
  3520. <BrushType>Kiểu cọ</BrushType>
  3521. <BubbleBackColor>Màu nền bong bóng</BubbleBackColor>
  3522. <BubbleBorderColor>Màu viền bong bóng</BubbleBorderColor>
  3523. <BusinessObject>Đối tượng công việc</BusinessObject>
  3524. <CacheAllData>Lưu tạm tất cả dữ liệu</CacheAllData>
  3525. <CacheTotals>Tổng số bộ nhớ tạm</CacheTotals>
  3526. <CalcInvisible>Tính toán mức độ ẩn</CalcInvisible>
  3527. <CalculatedDataColumn>Cột dữ liệu tính toán</CalculatedDataColumn>
  3528. <CalculationMode>Chế độ tính toán</CalculationMode>
  3529. <CanBreak>Có thể ngắt</CanBreak>
  3530. <Cancel>Hủy</Cancel>
  3531. <CanGrow>Có thể phát triển</CanGrow>
  3532. <CanShrink>Có thể co lại</CanShrink>
  3533. <Categories>Các thể loại</Categories>
  3534. <Category>Thể loại</Category>
  3535. <CategoryConnections>Các kết nối</CategoryConnections>
  3536. <CellBackColor>Màu nền ô</CellBackColor>
  3537. <CellDockStyle>Phông cách ô chứa</CellDockStyle>
  3538. <CellForeColor>Màu viền ô</CellForeColor>
  3539. <CellHeight>Chiều cao ô</CellHeight>
  3540. <CellType>Loại ô</CellType>
  3541. <CellWidth>Chiều rộng ô</CellWidth>
  3542. <Center>Giữa</Center>
  3543. <CenterPoint>Điểm trung tâm</CenterPoint>
  3544. <ChartAreaBorderColor>Màu viền</ChartAreaBorderColor>
  3545. <ChartAreaBrush>Khung cọ</ChartAreaBrush>
  3546. <ChartAreaShowShadow>Hiện bóng</ChartAreaShowShadow>
  3547. <ChartType>Kiểu biểu đồ</ChartType>
  3548. <Checked>Đã kiểm tra</Checked>
  3549. <CheckOnClick>Kiểm tra khi nhấp chuột</CheckOnClick>
  3550. <CheckStyle>Phong cách kiểm tra</CheckStyle>
  3551. <CheckStyleForFalse>Phong cách kiểm tra cho sai</CheckStyleForFalse>
  3552. <CheckStyleForTrue>Phong cách kiểm tra cho đúng</CheckStyleForTrue>
  3553. <Checksum>Checksum</Checksum>
  3554. <CheckSum>CheckSum</CheckSum>
  3555. <CheckSum1>CheckSum1</CheckSum1>
  3556. <CheckSum2>CheckSum2</CheckSum2>
  3557. <Child>Con</Child>
  3558. <ChildColumns>Cột con</ChildColumns>
  3559. <ChildSource>Nguồn dữ liệu con</ChildSource>
  3560. <ClearFormat>Xóa định dạnh</ClearFormat>
  3561. <CloneContainer>Nhân bản thành phần chứa</CloneContainer>
  3562. <CloseValues>Giá trị đóng</CloseValues>
  3563. <Code>Mã</Code>
  3564. <CodePage>Mã trang</CodePage>
  3565. <Collapsed>Đã thu gọn</Collapsed>
  3566. <CollapseGroupFooter>Thu gọn nhóm chân trang</CollapseGroupFooter>
  3567. <CollapsingEnabled>Thu gọn được bật</CollapsingEnabled>
  3568. <Collate>Đối chiếu</Collate>
  3569. <CollectionName>Tên bộ sưu tập</CollectionName>
  3570. <Color>Màu sắc</Color>
  3571. <ColorDataColumn>Cột dữ liệu màu</ColorDataColumn>
  3572. <ColorEach>Mỗi màu</ColorEach>
  3573. <ColorMeter>Màu</ColorMeter>
  3574. <Colors>Màu sắc</Colors>
  3575. <ColorScaleCondition>Điều kiện tỉ lệ màu sắc</ColorScaleCondition>
  3576. <ColorScaleType>Kiểu tỉ lệ màu sắc</ColorScaleType>
  3577. <Column>Cột</Column>
  3578. <ColumnCount>Số lượng cột</ColumnCount>
  3579. <ColumnDirection>Hướng cột</ColumnDirection>
  3580. <ColumnGaps>Khoảng cách cột</ColumnGaps>
  3581. <ColumnHeaderBackColor>Màu nền tiêu đề cột</ColumnHeaderBackColor>
  3582. <ColumnHeaderForeColor>Màu viền tiêu đề cột</ColumnHeaderForeColor>
  3583. <ColumnHeadersVisible>Có thể nhìn thấy tiêu đề cột</ColumnHeadersVisible>
  3584. <Columns>Cột</Columns>
  3585. <ColumnWidth>Chiều rộng cột</ColumnWidth>
  3586. <CommandTimeout>Thời gian chờ lệnh</CommandTimeout>
  3587. <CompanyPrefix>Tiền tố của công ty</CompanyPrefix>
  3588. <ComponentStyle>Kiểu thành phần</ComponentStyle>
  3589. <Condition>Điều kiện</Condition>
  3590. <ConditionOptions>Tùy chọn điều kiện</ConditionOptions>
  3591. <Conditions>Các điều kiện</Conditions>
  3592. <ConnectionString>Chuỗi kết nối</ConnectionString>
  3593. <ConnectOnStart>Kết nối khi bắt đầu</ConnectOnStart>
  3594. <ConstantLines>Đường cố định</ConstantLines>
  3595. <Container>Thành phần chứa</Container>
  3596. <ContinuousText>Chữ đường viền</ContinuousText>
  3597. <ContourColor>Màu đường viền</ContourColor>
  3598. <Converting>Chuyển đổi</Converting>
  3599. <ConvertNulls>Chuyển đổi null</ConvertNulls>
  3600. <Copies>Sao chép</Copies>
  3601. <Count>Số lượng</Count>
  3602. <CountData>Đếm dữ liệu</CountData>
  3603. <Create>Tạo</Create>
  3604. <CreateFieldOnDoubleClick>Tạo trường bằng nhấp đúp chuột</CreateFieldOnDoubleClick>
  3605. <CreateLabel>Tạo nhãn</CreateLabel>
  3606. <CrossFiltering>Lọc chéo</CrossFiltering>
  3607. <Culture>Văn hóa</Culture>
  3608. <CustomFonts>Phông tùy chỉnh</CustomFonts>
  3609. <CustomFormat>Tùy chỉnh định dạng</CustomFormat>
  3610. <CutPieList>Danh sách hình tròn cắt</CutPieList>
  3611. <Data>Dữ liệu</Data>
  3612. <DataAdapter>Bộ điều hợp dữ liệu</DataAdapter>
  3613. <DataAdapters>Các bộ điều hợp dữ liệu</DataAdapters>
  3614. <DataBarCondition>Điều kiện thanh dữ liệu</DataBarCondition>
  3615. <DataBindings>Liên kết dữ liệu</DataBindings>
  3616. <DataColor>Màu dữ liệu</DataColor>
  3617. <DataColumn>Cột dữ liệu</DataColumn>
  3618. <DataColumns>Các cột dữ liệu</DataColumns>
  3619. <DataField>Trường dữ liệu</DataField>
  3620. <DataForeground>Dữ liệu tiền cảnh</DataForeground>
  3621. <DataRelation>Quan hệ dữ liệu</DataRelation>
  3622. <DataRows>Hàng dữ liệu</DataRows>
  3623. <DataSource>Nguồn dữ liệu</DataSource>
  3624. <DataSources>Các nguồn dữ liệu</DataSources>
  3625. <DataTextField>Trường dữ liệu văn bản</DataTextField>
  3626. <DataTransformation>Chuyển đổi dữ liệu</DataTransformation>
  3627. <DataType>Kiểu dữ liệu</DataType>
  3628. <DataUrl>URL dữ liệu</DataUrl>
  3629. <DateInfo>Thông tin ngày tháng</DateInfo>
  3630. <DateTimeStep>Bước nhảy thời gian</DateTimeStep>
  3631. <Default>Mặc định</Default>
  3632. <DefaultColor>Màu mặc định</DefaultColor>
  3633. <DefaultHeightCell>Chiều cao mặc định của ô</DefaultHeightCell>
  3634. <DefaultNamespace>Tên không gian mặc định</DefaultNamespace>
  3635. <DependentColumn>Cột phụ thuộc</DependentColumn>
  3636. <DependentValue>Giá trị phụ thuộc</DependentValue>
  3637. <Description>Mô tả</Description>
  3638. <Destination>Điểm đến</Destination>
  3639. <DetectUrls>Phát hiện URLs</DetectUrls>
  3640. <DeviceWidth>Chiều rộng thiết bị</DeviceWidth>
  3641. <DialogResult>Hộp thoại kết quả</DialogResult>
  3642. <Diameter>Đường kính</Diameter>
  3643. <Direction>Hướng</Direction>
  3644. <Disabled>Vô hiệu hóa</Disabled>
  3645. <DisplayNameType>Loại tên hiển thị</DisplayNameType>
  3646. <DisplayValue>Giá trị hiển thị</DisplayValue>
  3647. <Distance>Khoảng cách</Distance>
  3648. <DistanceBetweenTabs>Khoảng cách giữa các tab</DistanceBetweenTabs>
  3649. <Dock>Gắn</Dock>
  3650. <DockableTable>Bảng gắn</DockableTable>
  3651. <DockStyle>Phong cách gắn</DockStyle>
  3652. <DrawBorder>Vẽ viền</DrawBorder>
  3653. <DrawHatch>Vẽ đường bóng</DrawHatch>
  3654. <DrawLine>Vẽ đường thẳng</DrawLine>
  3655. <DrillDown>Tầng thông tin</DrillDown>
  3656. <DrillDownEnabled>Kích hoạt tầng thông tin</DrillDownEnabled>
  3657. <DrillDownMode>Chế độ tầng thông tin</DrillDownMode>
  3658. <DrillDownPage>Trang tầng thông tin</DrillDownPage>
  3659. <DrillDownParameter1>Tham số tầng thông tin 1</DrillDownParameter1>
  3660. <DrillDownParameter2>Tham số tầng thông tin 2</DrillDownParameter2>
  3661. <DrillDownParameter3>Tham số tầng thông tin 3</DrillDownParameter3>
  3662. <DrillDownParameter4>Tham số tầng thông tin 4</DrillDownParameter4>
  3663. <DrillDownParameter5>Tham số tầng thông tin 5</DrillDownParameter5>
  3664. <DrillDownParameters>Tham số tầng thông tin</DrillDownParameters>
  3665. <DrillDownReport>Báo cáo các tầng thông tin</DrillDownReport>
  3666. <DropDownAlign>Căn lề thả xuống</DropDownAlign>
  3667. <DropDownStyle>Phong cách thả xuống</DropDownStyle>
  3668. <DropDownWidth>Chiều rộng thả xuống</DropDownWidth>
  3669. <DropShadow>Đổ bóng</DropShadow>
  3670. <Duplex>Đôi</Duplex>
  3671. <Editable>Có thể chỉnh sửa</Editable>
  3672. <Effects>Các hiệu ứng</Effects>
  3673. <EmptyBorderBrush>Làm trống viền cọ</EmptyBorderBrush>
  3674. <EmptyBorderWidth>Làm trống chiều rộng viền</EmptyBorderWidth>
  3675. <EmptyBrush>Làm trống cọ</EmptyBrush>
  3676. <EmptyValue>Làm trống giá trị</EmptyValue>
  3677. <Enabled>Đã bật</Enabled>
  3678. <EnableLog>Nhật ký được bật</EnableLog>
  3679. <EncodingMode>Chế độ mã hóa</EncodingMode>
  3680. <EncodingType>Loại mã hóa</EncodingType>
  3681. <EndCap>Nắp</EndCap>
  3682. <EndColor>Màu kết thúc</EndColor>
  3683. <EndValue>Giá trị kết thúc</EndValue>
  3684. <EndValues>Giá trị kết thúc</EndValues>
  3685. <EndWidth>Chiều rộng kết thúc</EndWidth>
  3686. <EngineVersion>Phiên bản động cơ</EngineVersion>
  3687. <EnumeratorSeparator>Phân cách bộ đếm</EnumeratorSeparator>
  3688. <EnumeratorType>Loại bộ đếm</EnumeratorType>
  3689. <ErrorCorrectionLevel>Mức hiệu chỉnh lỗi</ErrorCorrectionLevel>
  3690. <ErrorsCorrectionLevel>Các mức hiệu chỉnh lỗi</ErrorsCorrectionLevel>
  3691. <EvenStyle>Phong cách trang chẵn</EvenStyle>
  3692. <ExcelSheet>Bảng tính Excel</ExcelSheet>
  3693. <ExcelValue>Giá trị Excel</ExcelValue>
  3694. <Exponential>Lũy thừa</Exponential>
  3695. <ExportAsImage>Xuất như hình ảnh</ExportAsImage>
  3696. <Expression>Biểu thức</Expression>
  3697. <ExtensionDigit>Số phần mở rộng</ExtensionDigit>
  3698. <FaqPage>Trang FAQ</FaqPage>
  3699. <Field>Trường</Field>
  3700. <FieldIs>Trường là</FieldIs>
  3701. <File>Tệp tin</File>
  3702. <Fill>Đặc</Fill>
  3703. <FillColor>Màu đặc</FillColor>
  3704. <Filter>Bộ lọc</Filter>
  3705. <FilterElements>Thành phần bộ lọc</FilterElements>
  3706. <FilterEngine>Công cụ lọc</FilterEngine>
  3707. <FilterMode>Chế độ bộ lọc</FilterMode>
  3708. <FilterOn>Bật bộ lọc</FilterOn>
  3709. <Filters>Bộ lọc</Filters>
  3710. <FirstTabOffset>Khoảng cách trống Tab đầu tiên</FirstTabOffset>
  3711. <FixedWidth>Chiều rộng cố định</FixedWidth>
  3712. <Flat>Phẳng</Flat>
  3713. <FlatMode>Chế độ phẳng</FlatMode>
  3714. <Focus>Tập trung</Focus>
  3715. <Font>Phông</Font>
  3716. <FontBold>Phông đậm</FontBold>
  3717. <FontItalic>Phông nghiêng</FontItalic>
  3718. <FontName>Tên phông chữ</FontName>
  3719. <FontSize>Kích cỡ phông chữ</FontSize>
  3720. <FontSizeMode>Chế độ kích thước phông chữ</FontSizeMode>
  3721. <FontStrikeout>Phông gạch ngang chữ</FontStrikeout>
  3722. <FontSubscript>Chữ viết ở dưới</FontSubscript>
  3723. <FontSuperscript>Chữ viết lên trên</FontSuperscript>
  3724. <FontUnderline>Phông gạch chân</FontUnderline>
  3725. <FontUnit>Đơn vị phông chữ</FontUnit>
  3726. <FooterCanBreak>Chân trang có thể ngắt</FooterCanBreak>
  3727. <FooterCanGrow>Chân trang có thể phát triển</FooterCanGrow>
  3728. <FooterCanShrink>Chân trang có thể co lại</FooterCanShrink>
  3729. <FooterColor>Màu chân trang</FooterColor>
  3730. <FooterFont>Phông chữ chân trang</FooterFont>
  3731. <FooterForeColor>Màu chân trang</FooterForeColor>
  3732. <FooterForeground>Chân trang tiền cảnh</FooterForeground>
  3733. <FooterPrintAtBottom>In chân trang ở dưới</FooterPrintAtBottom>
  3734. <FooterPrintIfEmpty>In chân trang nếu trống</FooterPrintIfEmpty>
  3735. <FooterPrintOn>Bật in chân trang</FooterPrintOn>
  3736. <FooterPrintOnAllPages>In chân trang ở tất cả các trang</FooterPrintOnAllPages>
  3737. <FooterPrintOnEvenOddPages>In chân trang ở các trang chẵn lẻ</FooterPrintOnEvenOddPages>
  3738. <FooterRowsCount>Số lần chân trang</FooterRowsCount>
  3739. <Footers>Chân trang</Footers>
  3740. <ForeColor>Màu mặt trước</ForeColor>
  3741. <Format>Định dạng</Format>
  3742. <From>Từ</From>
  3743. <FrozenColumns>Cột đông lạnh</FrozenColumns>
  3744. <FullConvertExpression>Biểu thức chuyển đổi đầy đủ</FullConvertExpression>
  3745. <Function>Chức năng</Function>
  3746. <Functions>Các chức năng</Functions>
  3747. <GlobalizationStrings>Chuỗi ký tự toàn cầu hóa</GlobalizationStrings>
  3748. <GlobalizedName>Tên toàn cầu hoá</GlobalizedName>
  3749. <GlyphColor>Màu nét</GlyphColor>
  3750. <GridColor>Màu lưới</GridColor>
  3751. <GridLineColor>Màu đường lưới</GridLineColor>
  3752. <GridLinesHor>Đường lưới ngang</GridLinesHor>
  3753. <GridLinesHorColor>Màu đường lưới ngang</GridLinesHorColor>
  3754. <GridLinesHorRight>Đường lưới ngang phải</GridLinesHorRight>
  3755. <GridLineStyle>Phong cách đường lưới</GridLineStyle>
  3756. <GridLinesVert>Đường lưới dọc</GridLinesVert>
  3757. <GridLinesVertColor>Màu đường lưới dọc</GridLinesVertColor>
  3758. <GridOutline>Khung lưới</GridOutline>
  3759. <Group>Nhóm</Group>
  3760. <GroupDataColumn>Cột dữ liệu nhóm</GroupDataColumn>
  3761. <GroupMeter>Nhóm</GroupMeter>
  3762. <GrowToHeight>Phát triển đến chiều cao</GrowToHeight>
  3763. <HeaderBackColor>Màu nền tiêu đề</HeaderBackColor>
  3764. <HeaderCanBreak>Tiêu đề có thể ngắt</HeaderCanBreak>
  3765. <HeaderCanGrow>Tiêu đề có thể phát triển</HeaderCanGrow>
  3766. <HeaderCanShrink>Tiêu đề có thể co lại</HeaderCanShrink>
  3767. <HeaderColor>Màu tiêu đề</HeaderColor>
  3768. <HeaderFont>Phông tiêu đề</HeaderFont>
  3769. <HeaderForeColor>Màu trước tiêu đề</HeaderForeColor>
  3770. <HeaderForeground>Tiêu đề tiền cảnh</HeaderForeground>
  3771. <HeaderPrintAtBottom>In tiêu đề ở cuối</HeaderPrintAtBottom>
  3772. <HeaderPrintIfEmpty>In tiêu đề nếu trống</HeaderPrintIfEmpty>
  3773. <HeaderPrintOn>Bật in tiêu đề</HeaderPrintOn>
  3774. <HeaderPrintOnAllPages>In tiêu đề trên tất cả các trang</HeaderPrintOnAllPages>
  3775. <HeaderPrintOnEvenOddPages>In tiêu đề trên các trang chẵn lẻ</HeaderPrintOnEvenOddPages>
  3776. <HeaderRowsCount>Số lượt tiêu đề hàng</HeaderRowsCount>
  3777. <Headers>Tiêu đề</Headers>
  3778. <HeaderText>Tiêu đề văn bản</HeaderText>
  3779. <Heading>Phần mở đầu</Heading>
  3780. <HeatmapColors>Màu bản đồ nhiệt</HeatmapColors>
  3781. <Height>Chiều cao</Height>
  3782. <HideSeriesWithEmptyTitle>Ẩn dòng với tiêu đề trống</HideSeriesWithEmptyTitle>
  3783. <HideZeros>Ẩn số 0</HideZeros>
  3784. <High>Cao</High>
  3785. <HighlightCondition>Điều kiện nổi bật</HighlightCondition>
  3786. <HighValues>Giá trị cao</HighValues>
  3787. <HorAlignment>Căn chỉnh ngang</HorAlignment>
  3788. <HorSpacing>Khoảng cách ngang</HorSpacing>
  3789. <HotBackColor>Màu nền ấm</HotBackColor>
  3790. <HotColumnHeaderBackColor>Màu nền tiêu đề cột ấm</HotColumnHeaderBackColor>
  3791. <HotForeColor>Màu viền ấm</HotForeColor>
  3792. <HotGlyphColor>Màu nét ấm</HotGlyphColor>
  3793. <HotHeaderColor>Màu tiêu đề ấm</HotHeaderColor>
  3794. <HotkeyPrefix>Tiền tố phím nóng</HotkeyPrefix>
  3795. <HotRowHeaderBackColor>Màu nền tiêu đề hàng ấm</HotRowHeaderBackColor>
  3796. <HotSelectedBackColor>Màu nền nóng được chọn</HotSelectedBackColor>
  3797. <HotSelectedForeColor>Màu viền nóng được chọn</HotSelectedForeColor>
  3798. <HotSelectedGlyphColor>Màu nét nóng được chọn</HotSelectedGlyphColor>
  3799. <HtmlTags>Thẻ HTML</HtmlTags>
  3800. <Hyperlink>Liên kết</Hyperlink>
  3801. <HyperlinkDataColumn>Cột dữ liệu liên kết</HyperlinkDataColumn>
  3802. <Icon>Biểu tượng</Icon>
  3803. <IconAlignment>Sắp xếp biểu tượng</IconAlignment>
  3804. <IconColor>Màu biểu tượng</IconColor>
  3805. <IconSet>Bộ biểu tượng</IconSet>
  3806. <IconSetCondition>Điều kiện bộ biểu tượng</IconSetCondition>
  3807. <Idents>Thụt lề</Idents>
  3808. <Image>Hình ảnh</Image>
  3809. <ImageAlign>Căn chỉnh hình ảnh</ImageAlign>
  3810. <ImageAlignment>Căn chỉnh hình ảnh</ImageAlignment>
  3811. <ImageData>Dữ liệu hình ảnh</ImageData>
  3812. <ImageHorAlignment>Căn chỉnh ảnh ngang</ImageHorAlignment>
  3813. <ImageMultipleFactor>Hình ảnh nhiều yếu tố</ImageMultipleFactor>
  3814. <ImageRotation>Xoay hình ảnh</ImageRotation>
  3815. <ImageStretch>Kéo dãn hình ảnh</ImageStretch>
  3816. <ImageTiling>Ảnh xếp lớp</ImageTiling>
  3817. <ImageTransparency>Độ trong suốt của hình ảnh</ImageTransparency>
  3818. <ImageURL>URL của hình ảnh</ImageURL>
  3819. <ImageVertAlignment>Căn chỉnh hình ảnh theo chiều dọc</ImageVertAlignment>
  3820. <ImportRelations>Nạp quan hệ</ImportRelations>
  3821. <Increment>Tăng</Increment>
  3822. <Indent>Thụt lề</Indent>
  3823. <IndividualColor>Màu cá nhân</IndividualColor>
  3824. <InitBy>Khởi đầu bởi</InitBy>
  3825. <InitialSelection>Lựa chọn ban đầu</InitialSelection>
  3826. <InitialSelectionSource>Nguồn lựa chọn ban đầu</InitialSelectionSource>
  3827. <Insert>Chèn</Insert>
  3828. <Interaction>Tương tác</Interaction>
  3829. <InterlacedBrush>Cọ đan xen</InterlacedBrush>
  3830. <InterlacingHor>Đan xen ngang</InterlacingHor>
  3831. <InterlacingHorBrush>Cọ đan xen ngang</InterlacingHorBrush>
  3832. <InterlacingVert>Đan xen dọc</InterlacingVert>
  3833. <InterlacingVertBrush>Cọ đan xen dọc</InterlacingVertBrush>
  3834. <Interpolation>Nội suy</Interpolation>
  3835. <IsReversed>Đảo ngược</IsReversed>
  3836. <Italic>Nghiêng</Italic>
  3837. <Item>Mục</Item>
  3838. <ItemHeight>Chiều cao mục</ItemHeight>
  3839. <Items>Các mục</Items>
  3840. <KeepChildTogether>Giữ thành phần con cùng nhau</KeepChildTogether>
  3841. <KeepCrossTabTogether>Giữ tab chéo cùng nhau</KeepCrossTabTogether>
  3842. <KeepDetails>Giữ chi tiết</KeepDetails>
  3843. <KeepDetailsTogether>Giữ chi tiết cùng nhau</KeepDetailsTogether>
  3844. <KeepFooterTogether>Giữ chân trang cùng nhau</KeepFooterTogether>
  3845. <KeepGroupFooterTogether>Giữ chân trang nhóm cùng nhau</KeepGroupFooterTogether>
  3846. <KeepGroupHeaderTogether>Giữ tiêu đề nhóm cùng nhau</KeepGroupHeaderTogether>
  3847. <KeepGroupTogether>Giữ nhóm cùng nhau</KeepGroupTogether>
  3848. <KeepHeaderTogether>Giữ tiêu đề cùng nhau</KeepHeaderTogether>
  3849. <KeepMergedCellsTogether>Giữ các ô hợp nhất với nhau</KeepMergedCellsTogether>
  3850. <KeepReportSummaryTogether>Giữ báo cáo tóm tắt cùng nhau</KeepReportSummaryTogether>
  3851. <KeepSubReportTogether>Giữ báo cáo phụ cùng nhau</KeepSubReportTogether>
  3852. <Key>Khóa</Key>
  3853. <KeyDataColumn>Cột dữ liệu khóa</KeyDataColumn>
  3854. <KeyMeter>Chìa khóa</KeyMeter>
  3855. <KeyMeters>Chìa khóa</KeyMeters>
  3856. <Keys>Các khóa</Keys>
  3857. <Label>Nhãn</Label>
  3858. <LabelColor>Màu nhãn</LabelColor>
  3859. <LabelForeground>Nhãn tiền cảnh</LabelForeground>
  3860. <LabelRotationMode>Chế độ xoay nhãn</LabelRotationMode>
  3861. <Labels>Nhãn</Labels>
  3862. <LabelsColor>Màu nhãn</LabelsColor>
  3863. <LabelShadowForeground>Bóng nhãn tiền cảnh</LabelShadowForeground>
  3864. <LabelsOffset>Khoảng cách nhãn</LabelsOffset>
  3865. <Language>Ngôn ngữ</Language>
  3866. <LargeHeight>Chiều cao lớn</LargeHeight>
  3867. <LargeHeightFactor>Hệ số chiều cao lớn</LargeHeightFactor>
  3868. <Latitude>Vĩ độ</Latitude>
  3869. <Layout>Bố trí</Layout>
  3870. <Left>Trái</Left>
  3871. <LeftSide>Bên trái</LeftSide>
  3872. <Legend>Chú thích</Legend>
  3873. <LegendBorderColor>Màsu viền</LegendBorderColor>
  3874. <LegendBrush>Cọ chú thích</LegendBrush>
  3875. <LegendLabelsColor>Màu nhãn</LegendLabelsColor>
  3876. <LegendTitleColor>Màu tiêu đề</LegendTitleColor>
  3877. <LegendValueType>Kiểu giá trị chú thích</LegendValueType>
  3878. <Length>Chiều dài</Length>
  3879. <LengthUnderLabels>Chiều dài dưới nhãn</LengthUnderLabels>
  3880. <Lighting>Sáng</Lighting>
  3881. <LimitRows>Giới hạn hàng</LimitRows>
  3882. <Linear>Tuyến tính</Linear>
  3883. <LinearBarBorderBrush>Cọ viền thanh tuyến tính</LinearBarBorderBrush>
  3884. <LinearBarBrush>Cọ thanh tuyến tính</LinearBarBrush>
  3885. <LinearBarEmptyBorderBrush>Cọ viền thanh tuyến tính rỗng</LinearBarEmptyBorderBrush>
  3886. <LinearBarEmptyBrush>Cọ thanh tuyến tính rỗng</LinearBarEmptyBrush>
  3887. <LineColor>Màu đường thẳng</LineColor>
  3888. <LineColorNegative>Màu dòng âm</LineColorNegative>
  3889. <LineLimit>Giới hạn dòng</LineLimit>
  3890. <LineMarker>Dòng đánh dấu</LineMarker>
  3891. <LinesOfUnderline>Các đường gạch chân</LinesOfUnderline>
  3892. <LineSpacing>Khoảng cách dòng</LineSpacing>
  3893. <LineStyle>Phong cách dòng</LineStyle>
  3894. <LineWidth>Chiều rộng đường thẳng</LineWidth>
  3895. <Linked>Đã liên kết</Linked>
  3896. <ListOfArguments>Danh sách đối số</ListOfArguments>
  3897. <ListOfHyperlinks>Danh sách liên kết</ListOfHyperlinks>
  3898. <ListOfTags>Danh sách thẻ</ListOfTags>
  3899. <ListOfToolTips>Danh sách chú thích</ListOfToolTips>
  3900. <ListOfValues>Danh sách giá trị</ListOfValues>
  3901. <ListOfValuesClose>Danh sách giá trị đóng</ListOfValuesClose>
  3902. <ListOfValuesEnd>Danh sách giá trị kết thúc</ListOfValuesEnd>
  3903. <ListOfValuesHigh>Danh sách giá trị cao</ListOfValuesHigh>
  3904. <ListOfValuesLow>Danh sách giá trị thấp</ListOfValuesLow>
  3905. <ListOfValuesOpen>Danh sách giá trị mở</ListOfValuesOpen>
  3906. <ListOfWeights>Danh sách trọng số </ListOfWeights>
  3907. <Localizable>Cá nhân hóa</Localizable>
  3908. <Location>Vị trí</Location>
  3909. <Locked>Khóa</Locked>
  3910. <Logarithmic>Lôgarit</Logarithmic>
  3911. <LogarithmicScale>Quy mô lôgarít</LogarithmicScale>
  3912. <Longitude>Kinh độ</Longitude>
  3913. <Low>Thấp</Low>
  3914. <LowValues>Giá trị thấp</LowValues>
  3915. <MajorInterval>Khoảng cách chính</MajorInterval>
  3916. <MapID>ID bản đồ</MapID>
  3917. <Maps>Bản đồ</Maps>
  3918. <MapStyle>Kiểu</MapStyle>
  3919. <MapType>Kiểu bản đồ</MapType>
  3920. <Margin>Lề ngoài</Margin>
  3921. <Margins>Lề</Margins>
  3922. <Marker>Đánh dấu</Marker>
  3923. <MarkerAlignment>Căn chỉnh đánh dấu</MarkerAlignment>
  3924. <MarkerAngle>Góc đánh dấu</MarkerAngle>
  3925. <MarkerBorder>Viền đánh dấu</MarkerBorder>
  3926. <MarkerBrush>Cọ đánh dấu</MarkerBrush>
  3927. <MarkerColor>Màu đánh dấu</MarkerColor>
  3928. <MarkerSize>Kích cỡ đánh dấu</MarkerSize>
  3929. <MarkerType>Kiểu đánh dấu</MarkerType>
  3930. <MarkerVisible>Có thể nhìn thấy đánh dấu</MarkerVisible>
  3931. <MasterComponent>Thành phần chính</MasterComponent>
  3932. <MasterKeyDataColumn>Cột dữ liệu khóa chính</MasterKeyDataColumn>
  3933. <MatrixSize>Kích cỡ ma trận</MatrixSize>
  3934. <MaxDate>Ngày lớn nhất</MaxDate>
  3935. <MaxDropDownItems>Mục thả xuống tối đa</MaxDropDownItems>
  3936. <MaxHeight>Chiều cao lớn nhất</MaxHeight>
  3937. <Maximum>Lớn nhất</Maximum>
  3938. <MaximumValue>Giá trị lớn nhất</MaximumValue>
  3939. <MaxLength>Chiều dài lớn nhất</MaxLength>
  3940. <MaxNumberOfLines>Số dòng tối đa</MaxNumberOfLines>
  3941. <MaxSize>Kích cỡ lớn nhất</MaxSize>
  3942. <MaxValue>Giá trị lớn nhất</MaxValue>
  3943. <MaxWidth>Chiều rộng lớn nhất</MaxWidth>
  3944. <MergeDuplicates>Hợp nhất các bản sao</MergeDuplicates>
  3945. <MergeHeaders>Hợp nhất các tiêu đề</MergeHeaders>
  3946. <Mid>Trung bình</Mid>
  3947. <MinDate>Ngày nhỏ nhất</MinDate>
  3948. <MinHeight>Chiều cao thấp nhất</MinHeight>
  3949. <Minimum>Nhỏ nhất</Minimum>
  3950. <MinimumFontSize>Phông chữ nhỏ nhất</MinimumFontSize>
  3951. <MinimumValue>Giá trị nhỏ nhất</MinimumValue>
  3952. <MinorColor>Màu phụ</MinorColor>
  3953. <MinorCount>Số lượng phụ</MinorCount>
  3954. <MinorInterval>Khoảng thời gian phụ</MinorInterval>
  3955. <MinorLength>Chiều dài phụ</MinorLength>
  3956. <MinorStyle>Phong cách phụ</MinorStyle>
  3957. <MinorVisible>Có thể nhìn thấy đường</MinorVisible>
  3958. <MinRowsInColumn>Hàng nhỏ nhất trong cột</MinRowsInColumn>
  3959. <MinSize>Kích cỡ nhỏ nhất</MinSize>
  3960. <MinValue>Giá trị nhỏ nhất</MinValue>
  3961. <MinWidth>Chiều rộng nhỏ nhất</MinWidth>
  3962. <MirrorMargins>Lề gương</MirrorMargins>
  3963. <Mode>Chế độ</Mode>
  3964. <Module>Mô đun</Module>
  3965. <Move>Di chuyển</Move>
  3966. <Multiline>Nhiều dòng</Multiline>
  3967. <MultipleFactor>Nhiều yếu tố</MultipleFactor>
  3968. <Name>Tên</Name>
  3969. <NameDataColumn>Tên cột dữ liệu</NameDataColumn>
  3970. <NameInSource>Trên trong nguồn</NameInSource>
  3971. <NameMeter>Tên</NameMeter>
  3972. <NameParent>Tên cha</NameParent>
  3973. <Namespaces>Tên không gian</Namespaces>
  3974. <NeedleBorderBrush>Viền cọ kim</NeedleBorderBrush>
  3975. <NeedleBorderWidth>Chiều rộng đường viền kim</NeedleBorderWidth>
  3976. <NeedleBrush>Cọ kim</NeedleBrush>
  3977. <NeedleCapBorderBrush>Cọ viền nắp kim</NeedleCapBorderBrush>
  3978. <NeedleCapBrush>Cọ nắp kim</NeedleCapBrush>
  3979. <Negative>Âm</Negative>
  3980. <NegativeColor>Màu âm tính</NegativeColor>
  3981. <NegativeSeriesColors>Màu sắc âm tính</NegativeSeriesColors>
  3982. <NegativeTextBrush>Cọ văn bản âm tính</NegativeTextBrush>
  3983. <NestedLevel>Mức độ lồng nhau</NestedLevel>
  3984. <NewColumnAfter>Tạo cột mới sau</NewColumnAfter>
  3985. <NewColumnBefore>Tạo cột mới trước</NewColumnBefore>
  3986. <NewPageAfter>Tạo trang sau</NewPageAfter>
  3987. <NewPageBefore>Tạo trang trước</NewPageBefore>
  3988. <NextPage>Trang tiếp theo</NextPage>
  3989. <NoElements>Không có phần tử</NoElements>
  3990. <NoIcon>Không có biểu tượng</NoIcon>
  3991. <NullText>Văn bản null</NullText>
  3992. <NumberOfColumns>Số lượng cột</NumberOfColumns>
  3993. <NumberOfCopies>Số bản sao</NumberOfCopies>
  3994. <NumberOfPass>Số lượng truyền vào</NumberOfPass>
  3995. <NumberOfValues>Số lượng giá trị</NumberOfValues>
  3996. <OddStyle>Phong cách lạ</OddStyle>
  3997. <Offset>Độ lệch</Offset>
  3998. <OffsetAngle>Góc lệch</OffsetAngle>
  3999. <OnClick>Trong một cái nhấp chuột</OnClick>
  4000. <OnDataManipulation>Thao tác dữ liệu</OnDataManipulation>
  4001. <OnHover>Trong một cái di chuột</OnHover>
  4002. <OnlyText>Chỉ chữ</OnlyText>
  4003. <OpenValues>Giá trị mở</OpenValues>
  4004. <Operation>Hoạt động</Operation>
  4005. <Options>Tùy chọn</Options>
  4006. <Orientation>Hướng</Orientation>
  4007. <OthersText>Văn bản khác</OthersText>
  4008. <Padding>Lề trong</Padding>
  4009. <PageHeight>Chiều cao trang</PageHeight>
  4010. <PageNumbers>Số trang</PageNumbers>
  4011. <PageWidth>Chiều rộng trang</PageWidth>
  4012. <Paper>Trang</Paper>
  4013. <PaperSize>Kích cỡ trang</PaperSize>
  4014. <PaperSourceOfFirstPage>Nguồn giấy của trang đầu tiên</PaperSourceOfFirstPage>
  4015. <PaperSourceOfOtherPages>Nguồn giấy của các trang khác</PaperSourceOfOtherPages>
  4016. <Parameter>Tham số</Parameter>
  4017. <Parameters>Các tham số</Parameters>
  4018. <ParametersDateFormat>Tham số định dạng ngày</ParametersDateFormat>
  4019. <ParametersOrientation>Các tham số hướng</ParametersOrientation>
  4020. <ParentColumns>Cột cha</ParentColumns>
  4021. <ParentSource>Nguồn dữ liệu cha</ParentSource>
  4022. <ParentValue>Giá trị cha</ParentValue>
  4023. <ParetoSeriesColors>Màu sắc dòng Pareto</ParetoSeriesColors>
  4024. <PasswordChar>Mật khẩu ký tự</PasswordChar>
  4025. <Path>Đường dẫn</Path>
  4026. <PathData>Dữ liệu đường dẫn </PathData>
  4027. <PathSchema>Lược đồ đường dẫn</PathSchema>
  4028. <Pattern>Mẫu</Pattern>
  4029. <Placement>Vị trí</Placement>
  4030. <PlaceOnToolbox>Đặt trên hộp công cụ</PlaceOnToolbox>
  4031. <PointAtCenter>Điểm tại trung tâm</PointAtCenter>
  4032. <Position>Vị trí</Position>
  4033. <Positive>Dương</Positive>
  4034. <PositiveColor>Màu dương tính</PositiveColor>
  4035. <PreferredColumnWidth>Chiều rộng cột ưa thích</PreferredColumnWidth>
  4036. <PreferredRowHeight>Chiều cao hàng ưa thích</PreferredRowHeight>
  4037. <PreventIntersection>Ngăn chặn giao nhau</PreventIntersection>
  4038. <PreviewMode>Chế độ xem trước</PreviewMode>
  4039. <PreviewSettings>Cài đặt xem trước</PreviewSettings>
  4040. <Printable>Có thể in</Printable>
  4041. <PrintAtBottom>In ở dưới</PrintAtBottom>
  4042. <PrinterName>Tên máy in</PrinterName>
  4043. <PrinterSettings>Cài đặt máy in</PrinterSettings>
  4044. <PrintHeadersFootersFromPreviousPage>In đầu trang và chân trang từ trang trước</PrintHeadersFootersFromPreviousPage>
  4045. <PrintIfDetailEmpty>In nếu chi tiết trống</PrintIfDetailEmpty>
  4046. <PrintIfEmpty>In nếu trống</PrintIfEmpty>
  4047. <PrintIfParentDisabled>In nếu cha bị vô hiệu hóa</PrintIfParentDisabled>
  4048. <PrintOn>In trên</PrintOn>
  4049. <PrintOnAllPages>In trên tất cả các trang</PrintOnAllPages>
  4050. <PrintOnEvenOddPages>In trên trang chẵn lẻ</PrintOnEvenOddPages>
  4051. <PrintOnPreviousPage>In trên trang trước</PrintOnPreviousPage>
  4052. <PrintTitleOnAllPages>In tiêu đề trên tất cả các trang</PrintTitleOnAllPages>
  4053. <PrintVerticalBars>In thanh dọc</PrintVerticalBars>
  4054. <ProcessAt>Xử lý tại</ProcessAt>
  4055. <ProcessAtEnd>Xử lý tại kết thúc</ProcessAtEnd>
  4056. <ProcessingDuplicates>Đang xử lý nhân bản</ProcessingDuplicates>
  4057. <ProcessTilde>Đang xử lý dấu ngã</ProcessTilde>
  4058. <ProductHomePage>Trang chủ sản phẩm</ProductHomePage>
  4059. <RadarStyle>Phong cách mạng nhện</RadarStyle>
  4060. <RadialBarBorderBrush>Cọ viền thanh xuyên tâm</RadialBarBorderBrush>
  4061. <RadialBarBrush>Cọ thanh xuyên tâm</RadialBarBrush>
  4062. <RadialBarEmptyBorderBrush>Cọ viền thanh xuyên tâm rỗng</RadialBarEmptyBorderBrush>
  4063. <RadialBarEmptyBrush>Cọ thanh xuyên tâm rỗng</RadialBarEmptyBrush>
  4064. <Radius>Bán kính</Radius>
  4065. <RadiusMode>Chế độ bán kính</RadiusMode>
  4066. <Range>Phạm vi</Range>
  4067. <RangeColorMode>Chế độ phạm vi màu</RangeColorMode>
  4068. <RangeFrom>Từ</RangeFrom>
  4069. <RangeMode>Chế độ phạm vi</RangeMode>
  4070. <RangeScrollEnabled>Đã bật phạm vi cuộn</RangeScrollEnabled>
  4071. <RangeTo>Đến</RangeTo>
  4072. <RangeType>Loại phạm vi</RangeType>
  4073. <Ratio>Tỉ lệ</Ratio>
  4074. <RatioY>Tỉ lệ Y</RatioY>
  4075. <ReadOnly>Chỉ đọc</ReadOnly>
  4076. <RecentFonts>Phông chữ gần đây</RecentFonts>
  4077. <ReconnectOnEachRow>Kết nối lại trên mỗi hàng</ReconnectOnEachRow>
  4078. <ReferencedAssemblies>Các hội đồng tham khảo</ReferencedAssemblies>
  4079. <Refresh>Làm tươi</Refresh>
  4080. <RefreshTime>Thời gian làm tươi</RefreshTime>
  4081. <Regular>Thường xuyên</Regular>
  4082. <Relation>Quan hệ</Relation>
  4083. <RelationName>Tên quan hệ</RelationName>
  4084. <Relations>Quan hệ</Relations>
  4085. <RelativeHeight>Chiều cao tương đối</RelativeHeight>
  4086. <RelativeWidth>Chiều rộng tương đối</RelativeWidth>
  4087. <RemoveUnusedDataBeforeStart>Xóa dữ liệu chưa sử dụng trước khi bắt đầu</RemoveUnusedDataBeforeStart>
  4088. <RenderTo>Kết xuất đến</RenderTo>
  4089. <ReportAlias>Bí danh báo cáo</ReportAlias>
  4090. <ReportAuthor>Tác giả báo cáo</ReportAuthor>
  4091. <ReportCacheMode>Chế độ lưu trữ tạm báo cáo</ReportCacheMode>
  4092. <ReportDescription>Mô tả báo cáo</ReportDescription>
  4093. <ReportIcon>Biểu tượng báo cáo</ReportIcon>
  4094. <ReportImage>Hình ảnh báo cáo</ReportImage>
  4095. <ReportName>Tên báo cáo</ReportName>
  4096. <ReportUnit>Đơn vị báo cáo</ReportUnit>
  4097. <RequestFromUser>Yêu cầu từ người dùng</RequestFromUser>
  4098. <RequestParameters>Tham số yêu cầu</RequestParameters>
  4099. <ResetDataSource>Đặt lại nguồn dữ liệu</ResetDataSource>
  4100. <ResetPageNumber>Đặt lại số trang</ResetPageNumber>
  4101. <Resize>Thay đổi kích cỡ</Resize>
  4102. <Resource>Nguồn</Resource>
  4103. <Resources>Các nguồn</Resources>
  4104. <Restrictions>Hạn chế</Restrictions>
  4105. <RetrieveOnlyUsedData>Chỉ truy xuất dữ liệu đã sử dụng</RetrieveOnlyUsedData>
  4106. <ReturnValue>Giá trị trả về</ReturnValue>
  4107. <ReverseHor>Ngang ngược</ReverseHor>
  4108. <ReverseVert>Dọc ngược</ReverseVert>
  4109. <Right>Phải</Right>
  4110. <RightSide>Bên phải</RightSide>
  4111. <RightToLeft>Phải sang trái</RightToLeft>
  4112. <Rotation>Xoay</Rotation>
  4113. <RotationLabels>Nhãn xoay</RotationLabels>
  4114. <RotationMode>Chế độ xoay</RotationMode>
  4115. <Round>Tròn</Round>
  4116. <RoundValues>Giá trị làm tròn</RoundValues>
  4117. <RowCount>Đếm số hàng</RowCount>
  4118. <RowHeaderBackColor>Màu nền tiêu đề hàng</RowHeaderBackColor>
  4119. <RowHeaderForeColor>Màu viền tiêu đề hàng</RowHeaderForeColor>
  4120. <RowHeadersVisible>Có thể nhìn thấy tiêu đề hàng</RowHeadersVisible>
  4121. <RowHeaderWidth>Chiều rộng đầu hàng</RowHeaderWidth>
  4122. <Rows>Hàng</Rows>
  4123. <Scale>Tỉ lệ</Scale>
  4124. <ScaleHor>Tỉ lệ ngang</ScaleHor>
  4125. <ScriptLanguage>Ngôn ngữ kịch bản</ScriptLanguage>
  4126. <SegmentPerHeight>Phân đoạn trên chiều cao</SegmentPerHeight>
  4127. <SegmentPerWidth>Phân đoạn trên chiều rộng</SegmentPerWidth>
  4128. <SelectedBackColor>Màu nền được chọn</SelectedBackColor>
  4129. <SelectedCellBackColor>Màu nền ô được chọn</SelectedCellBackColor>
  4130. <SelectedCellForeColor>Màu viên ô được chọn</SelectedCellForeColor>
  4131. <SelectedDataColor>Màu dữ liệu được chọn</SelectedDataColor>
  4132. <SelectedDataForeground>Dữ liệu nền được chọn</SelectedDataForeground>
  4133. <SelectedForeColor>Màu viền được chọn</SelectedForeColor>
  4134. <SelectedGlyphColor>Màu nét được chọn</SelectedGlyphColor>
  4135. <SelectedIndex>Mục lục được chọn</SelectedIndex>
  4136. <SelectedItem>Các mục được chọn</SelectedItem>
  4137. <SelectedKey>Khóa được chọn</SelectedKey>
  4138. <SelectedValue>Giá trị được chọn</SelectedValue>
  4139. <Selection>Lựa chọn</Selection>
  4140. <SelectionBackColor>Chọn màu phía dưới</SelectionBackColor>
  4141. <SelectionEnabled>Kích hoạt lựa chọn</SelectionEnabled>
  4142. <SelectionForeColor>Chọn màu phía trên</SelectionForeColor>
  4143. <SelectionMode>Chế độ lựa chọn</SelectionMode>
  4144. <SeparatorColor>Màu phân cách</SeparatorColor>
  4145. <SerialNumber>Số dòng</SerialNumber>
  4146. <Series>Dòng</Series>
  4147. <SeriesColors>Màu sắc dải</SeriesColors>
  4148. <SeriesLabels>Nhãn dòng</SeriesLabels>
  4149. <SeriesLabelsBorderColor>Màu khung</SeriesLabelsBorderColor>
  4150. <SeriesLabelsBrush>Cọ nhãn</SeriesLabelsBrush>
  4151. <SeriesLabelsColor>Màu nhãn</SeriesLabelsColor>
  4152. <SeriesLabelsLineColor>Màu dòng nhãn</SeriesLabelsLineColor>
  4153. <SeriesLighting>Dải sáng</SeriesLighting>
  4154. <SeriesShowBorder>Viền của chuỗi</SeriesShowBorder>
  4155. <SeriesShowShadow>Dòng hiển thị bóng</SeriesShowShadow>
  4156. <SeriesTitle>Tiêu đề dải</SeriesTitle>
  4157. <Shadow>Bóng mờ</Shadow>
  4158. <ShadowBrush>Cọ bóng</ShadowBrush>
  4159. <ShadowColor>Màu bóng</ShadowColor>
  4160. <ShadowSize>Kích cỡ bóng</ShadowSize>
  4161. <ShapeType>Hiểu hình dạng</ShapeType>
  4162. <Shift>Ca</Shift>
  4163. <ShiftMode>Chế độ ca</ShiftMode>
  4164. <ShortName>Tên ngắn</ShortName>
  4165. <ShortValue>Giá trị ngắn</ShortValue>
  4166. <ShowAllValue>Hiển thị tất cả giá trị</ShowAllValue>
  4167. <ShowBehind>Hiển thị đằng sau</ShowBehind>
  4168. <ShowBubble>Hiển thị bong bóng</ShowBubble>
  4169. <ShowDialog>Hiển thị hộp thoại</ShowDialog>
  4170. <ShowEdgeValues>Hiển thị giá trị cạnh</ShowEdgeValues>
  4171. <ShowImageBehind>Hiển thị ảnh đằng sau</ShowImageBehind>
  4172. <ShowInLegend>Hiển thị bằng chú thích</ShowInLegend>
  4173. <ShowInnerPoints>Hiển thị các điểm bên trong</ShowInnerPoints>
  4174. <ShowInPercent>Hiển thị bằng phần trăm</ShowInPercent>
  4175. <ShowLabels>Hiển thị nhãn</ShowLabels>
  4176. <ShowLabelText>Hiển thị nhãn văn bản</ShowLabelText>
  4177. <ShowLegend>Hiển thị chú thích</ShowLegend>
  4178. <ShowMarker>Hiển thị đánh dấu</ShowMarker>
  4179. <ShowMeanMarkers>Hiển thị điểm đánh dấu trung bình</ShowMeanMarkers>
  4180. <ShowNulls>Hiển thị nulls</ShowNulls>
  4181. <ShowOthers>Hiển thị khác</ShowOthers>
  4182. <ShowPercents>Hiển thị phần trăm</ShowPercents>
  4183. <ShowQuietZoneIndicator>Hiển thị chỉ số khu yên tĩnh</ShowQuietZoneIndicator>
  4184. <ShowQuietZones>Hiển thị các khu yên tĩnh</ShowQuietZones>
  4185. <ShowScrollBar>Hiển thị thanh cuộn</ShowScrollBar>
  4186. <ShowSelectAll>Hiển thị Chọn tất cả</ShowSelectAll>
  4187. <ShowSeriesLabels>Hiển thị dòng nhãn</ShowSeriesLabels>
  4188. <ShowShadow>Hiển thị bóng</ShowShadow>
  4189. <ShowTotal>Hiển thị tổng</ShowTotal>
  4190. <ShowUpDown>Hiển thị lên xuống</ShowUpDown>
  4191. <ShowValue>Hiển thị giá trị</ShowValue>
  4192. <ShowXAxis>Hiển thị trục X</ShowXAxis>
  4193. <ShowYAxis>Hiển thị trục Y</ShowYAxis>
  4194. <ShowZeros>Hiển thị số không</ShowZeros>
  4195. <ShrinkFontToFit>Co nhỏ phông chữ để phù hợp</ShrinkFontToFit>
  4196. <ShrinkFontToFitMinimumSize>Co nhỏ phông chữ để phù hợp với kích cỡ nhỏ nhất</ShrinkFontToFitMinimumSize>
  4197. <Side>Bên</Side>
  4198. <Sides>Các bên</Sides>
  4199. <Simple>Đơn giản</Simple>
  4200. <Size>Kích cỡ</Size>
  4201. <SizeMode>Chế độ kích cỡ</SizeMode>
  4202. <Skin>Lớp bên ngoài</Skin>
  4203. <SkipFirst>Bỏ qua đầu tiên</SkipFirst>
  4204. <SkipIndices>Bỏ qua chỉ số</SkipIndices>
  4205. <SkipIndicesObj>Bỏ qua các chỉ số</SkipIndicesObj>
  4206. <SkipMajorValues>Bỏ qua các giá trị chính</SkipMajorValues>
  4207. <SkipValues>Bỏ qua các giá trị</SkipValues>
  4208. <SkipValuesObj>Bỏ qua các giá trị</SkipValuesObj>
  4209. <Smoothing>Làm mượt</Smoothing>
  4210. <Sort>Sắp xếp</Sort>
  4211. <SortBy>Sắp xếp theo</SortBy>
  4212. <SortDirection>Hướng sắp xếp</SortDirection>
  4213. <Sorted>Phân loại</Sorted>
  4214. <SortingColumn>Sắp xếp cột</SortingColumn>
  4215. <SortingEnabled>Bật sắp xếp</SortingEnabled>
  4216. <SortType>Kiểu sắp xếp</SortType>
  4217. <Space>Không gian</Space>
  4218. <SpaceRatio>Tỷ lệ không gian</SpaceRatio>
  4219. <Spacing>Khoảng cách</Spacing>
  4220. <SqlCommand>Lệnh Sql</SqlCommand>
  4221. <StartAngle>Góc bắt đầu</StartAngle>
  4222. <StartCap>Chữ in hoa bắt đầu</StartCap>
  4223. <StartColor>Màu bắt đầu</StartColor>
  4224. <StartFromZero>Bắt đầu từ không</StartFromZero>
  4225. <StartMode>Chế độ bắt đầu</StartMode>
  4226. <StartNewPage>Bắt đầu trang mới</StartNewPage>
  4227. <StartNewPageIfLessThan>Bắt đầu trang mới nếu ít hơn</StartNewPageIfLessThan>
  4228. <StartPosition>Vị trí bắt đầu</StartPosition>
  4229. <StartValue>Giá trị bắt đầu</StartValue>
  4230. <StartWidth>Chiều rộng bắt đầu</StartWidth>
  4231. <Step>Bước</Step>
  4232. <Stop>Dừng</Stop>
  4233. <StopBeforePage>Dừng trước trang</StopBeforePage>
  4234. <StopBeforePrint>Dừng trước khi in</StopBeforePrint>
  4235. <StoreImagesInResources>Lưu trữ hình ảnh trong tài nguyên</StoreImagesInResources>
  4236. <Stretch>Giãn ra</Stretch>
  4237. <StretchToPrintArea>Giãn ra tới khu vực in</StretchToPrintArea>
  4238. <Strikeout>Gạch ngang</Strikeout>
  4239. <StripBrush>Cọ dải</StripBrush>
  4240. <Strips>Dải</Strips>
  4241. <Stroke>Gạch gang</Stroke>
  4242. <StructuredAppendPosition>Vị trí cấu trúc kết nối</StructuredAppendPosition>
  4243. <StructuredAppendTotal>Số lượng cấu trúc kết nối</StructuredAppendTotal>
  4244. <Style>Kiểu</Style>
  4245. <StyleColors>Màu kiểu</StyleColors>
  4246. <Styles>Các kiểu</Styles>
  4247. <SubReportPage>Báo cáo phụ</SubReportPage>
  4248. <Summaries>Tóm tắt</Summaries>
  4249. <Summary>Tóm tắt</Summary>
  4250. <SummaryExpression>Biểu thức tóm tắt</SummaryExpression>
  4251. <SummarySortDirection>Hướng sắp xếp tóm tắt</SummarySortDirection>
  4252. <SummaryType>Loại tóm tắt</SummaryType>
  4253. <SummaryValues>Giá trị tóm tắt</SummaryValues>
  4254. <SupplementCode>Mã bổ sung</SupplementCode>
  4255. <SupplementType>Loại bổ sung</SupplementType>
  4256. <SweepAngle>Góc quét</SweepAngle>
  4257. <SystemFonts>Phông chữ hệ thống</SystemFonts>
  4258. <SystemVariable>Biến hệ thống</SystemVariable>
  4259. <SystemVariables>Các biến hệ thống</SystemVariables>
  4260. <Table>Bảng</Table>
  4261. <Tag>Thẻ</Tag>
  4262. <TagDataColumn>Cột dữ liệu thẻ</TagDataColumn>
  4263. <TagValue>Giá trị thẻ</TagValue>
  4264. <Target>Mục tiêu</Target>
  4265. <TargetIcon>Biểu tượng mục tiêu</TargetIcon>
  4266. <TargetMode>Chế độ mục tiêu</TargetMode>
  4267. <Tension>Sức căng</Tension>
  4268. <Text>Văn bản</Text>
  4269. <TextAfter>Văn bản sau</TextAfter>
  4270. <TextAlign>Căn chỉnh văn bản</TextAlign>
  4271. <TextAlignment>Căn chỉnh văn bản</TextAlignment>
  4272. <TextBefore>Văn bản trước</TextBefore>
  4273. <TextBrush>Cọ văn bản</TextBrush>
  4274. <TextColor>Màu văn bản</TextColor>
  4275. <TextFormat>Định dạng văn bản</TextFormat>
  4276. <TextOnly>Chỉ văn bản</TextOnly>
  4277. <TextOptions>Tùy chọn văn bản</TextOptions>
  4278. <TextQuality>Chất lượng văn bản</TextQuality>
  4279. <TickLabelMajorFont>Phông chữ chính nhãn đánh dấu</TickLabelMajorFont>
  4280. <TickLabelMajorTextBrush>Cọ chữ chính nhãn đánh dấu</TickLabelMajorTextBrush>
  4281. <TickLabelMinorFont>Phông chữ phụ nhãn đánh dấu</TickLabelMinorFont>
  4282. <TickLabelMinorTextBrush>Cọ chữ phụ nhãn đánh dấu</TickLabelMinorTextBrush>
  4283. <TickMarkMajorBorder>Viền chính đánh dấu</TickMarkMajorBorder>
  4284. <TickMarkMajorBorderWidth>Chiều rộng viền chính đánh dấu</TickMarkMajorBorderWidth>
  4285. <TickMarkMajorBrush>Cọ chính đánh dấu</TickMarkMajorBrush>
  4286. <TickMarkMinorBorder>Viền phụ đánh dấu</TickMarkMinorBorder>
  4287. <TickMarkMinorBorderWidth>Chiều rộng viền phụ đánh dấu</TickMarkMinorBorderWidth>
  4288. <TickMarkMinorBrush>Cọ phụ đánh dấu</TickMarkMinorBrush>
  4289. <Ticks>Đường thẳng hiển thị đơn vị, tỷ lệ</Ticks>
  4290. <Title>Tiêu đề</Title>
  4291. <TitleBeforeHeader>Tên báo cáo trước tiêu đề</TitleBeforeHeader>
  4292. <TitleColor>Màu tiêu đề</TitleColor>
  4293. <TitleDirection>Hướng tiêu đề</TitleDirection>
  4294. <TitleFont>Phông tiêu đề</TitleFont>
  4295. <TitleVisible>Hiển thị tiêu đề</TitleVisible>
  4296. <To>Tới</To>
  4297. <Today>Hôm nay</Today>
  4298. <ToolTip>Chú thích</ToolTip>
  4299. <ToolTipDataColumn>Chú thích dữ liệu cột</ToolTipDataColumn>
  4300. <Top>Trên</Top>
  4301. <Topmost>Trên cùng</Topmost>
  4302. <TopmostLine>Dòng trên cùng</TopmostLine>
  4303. <TopN>Top N</TopN>
  4304. <TopSide>Phía trên</TopSide>
  4305. <Total>Toàn bộ</Total>
  4306. <TotalLabel>Tổng nhãn</TotalLabel>
  4307. <Totals>Toàn bộ</Totals>
  4308. <TrackColor>Theo dõi màu</TrackColor>
  4309. <TransparentColor>Màu trong suốt</TransparentColor>
  4310. <TrendLine>Đường xu thế</TrendLine>
  4311. <TrendLineColor>Màu sắc</TrendLineColor>
  4312. <TrendLines>Đường xu hướng</TrendLines>
  4313. <TrendLineShowShadow>Hiển thị bóng</TrendLineShowShadow>
  4314. <TrimExcessData>Cắt dữ liệu dư thừa</TrimExcessData>
  4315. <Trimming>Cắt</Trimming>
  4316. <Type>Kiểu</Type>
  4317. <TypeName>Tên kiểu</TypeName>
  4318. <Types>Các kiểu</Types>
  4319. <Underline>Gạch chân</Underline>
  4320. <UndoLimit>Giới hạn hoàn tác</UndoLimit>
  4321. <Unit>Đơn vị</Unit>
  4322. <UnlimitedBreakable>Không giới hạn ngắt</UnlimitedBreakable>
  4323. <UnlimitedHeight>Chiều cao không giới hạn</UnlimitedHeight>
  4324. <UnlimitedWidth>Chiều rộng không giới hạn</UnlimitedWidth>
  4325. <UpperMarks>Dấu trên</UpperMarks>
  4326. <UseAliases>Sử dụng bí danh</UseAliases>
  4327. <UseExternalReport>Sử dụng báo cáo bên ngoài</UseExternalReport>
  4328. <UseParentStyles>Sử dụng phong cách cha</UseParentStyles>
  4329. <UseRangeColor>Sử dụng dải màu</UseRangeColor>
  4330. <UseRectangularSymbols>Sử dụng biểu tượng hình chữ nhật</UseRectangularSymbols>
  4331. <UseSeriesColor>Sử dụng dòng màu</UseSeriesColor>
  4332. <UseStyleOfSummaryInColumnTotal>Sử dụng kiểu tổng kết trong tổng số cột</UseStyleOfSummaryInColumnTotal>
  4333. <UseStyleOfSummaryInRowTotal>Sử dụng kiểu tổng kết trong tổng số hàng</UseStyleOfSummaryInRowTotal>
  4334. <UseValuesFromTheSpecifiedRange>Sử dụng các giá trị từ phạm vi xác định</UseValuesFromTheSpecifiedRange>
  4335. <Value>Giá trị</Value>
  4336. <ValueClose>Giá trị đóng</ValueClose>
  4337. <ValueDataColumn>Cột giá trị dữ liệu</ValueDataColumn>
  4338. <ValueDataColumnClose>Cột giá trị dữ liệu đóng</ValueDataColumnClose>
  4339. <ValueDataColumnEnd>Cột giá trị dữ liệu kết thúc</ValueDataColumnEnd>
  4340. <ValueDataColumnHigh>Cột giá trị dữ liệu cao</ValueDataColumnHigh>
  4341. <ValueDataColumnLow>Cột giá trị dữ liệu thấp</ValueDataColumnLow>
  4342. <ValueDataColumnOpen>Cột giá trị dữ liệu mở</ValueDataColumnOpen>
  4343. <ValueEnd>Giá trị kết thúc</ValueEnd>
  4344. <ValueFormat>Định dạng giá trị</ValueFormat>
  4345. <ValueHigh>Giá trị cao</ValueHigh>
  4346. <ValueLow>Giá trị thấp</ValueLow>
  4347. <ValueMeter>Giá trị</ValueMeter>
  4348. <ValueOpen>Giá trị mở</ValueOpen>
  4349. <Values>Giá trị</Values>
  4350. <ValueType>Kiểu giá trị</ValueType>
  4351. <ValueTypeSeparator>Phân loại loại giá trị</ValueTypeSeparator>
  4352. <Variable>Biến</Variable>
  4353. <Variables>Các biến</Variables>
  4354. <Variation>Sự biến đổi</Variation>
  4355. <Version>Phiên bản</Version>
  4356. <VertAlignment>Căn chỉnh theo chiều dọc</VertAlignment>
  4357. <VertSpacing>Khoảng cách dọc</VertSpacing>
  4358. <ViewMode>Chế độ xem</ViewMode>
  4359. <Visible>Có thể nhìn thấy</Visible>
  4360. <Watermark>Thủy ấn</Watermark>
  4361. <Weight>Trọng số</Weight>
  4362. <WeightDataColumn>Trọng số dữ liệu cột</WeightDataColumn>
  4363. <Weights>Các trọng số</Weights>
  4364. <Width>Chiều rộng</Width>
  4365. <WindowState>Trạng thái cửa sổ</WindowState>
  4366. <WordWrap>Ngắt từ</WordWrap>
  4367. <Wrap>Bao bọc</Wrap>
  4368. <WrapGap>Khoảng cách dòng bao bọc</WrapGap>
  4369. <XAxis>Trục X</XAxis>
  4370. <XTopAxis>Trục X trên</XTopAxis>
  4371. <YAxis>Trục Y</YAxis>
  4372. <YRightAxis>Trục Y phải</YRightAxis>
  4373. <Zoom>Thu phóng</Zoom>
  4374. </PropertyMain>
  4375. <PropertySystemColors>
  4376. <ActiveBorder>Kích hoạt khung</ActiveBorder>
  4377. <ActiveCaption>Kích hoạt phụ đề</ActiveCaption>
  4378. <ActiveCaptionText>Kích hoạt văn bản phụ đề</ActiveCaptionText>
  4379. <AppWorkspace>Không gian làm việc ứng dụng</AppWorkspace>
  4380. <Control>Điều khiển</Control>
  4381. <ControlDark>Điều khiển màu bóng</ControlDark>
  4382. <ControlDarkDark>Điều khiển màu bóng tối</ControlDarkDark>
  4383. <ControlLight>Điều khiển màu sáng</ControlLight>
  4384. <ControlLightLight>Điều khiển màu nổi bật</ControlLightLight>
  4385. <ControlText>Điều khiển văn bản</ControlText>
  4386. <Desktop>Màn hình làm việc</Desktop>
  4387. <GrayText>Văn bản xám</GrayText>
  4388. <Highlight>Nổi bật</Highlight>
  4389. <HighlightText>Văn bản nổi bật</HighlightText>
  4390. <HotTrack>Theo dõi nóng</HotTrack>
  4391. <InactiveBorder>Không kích hoạt khung</InactiveBorder>
  4392. <InactiveCaption>Không kích hoạt phụ đề</InactiveCaption>
  4393. <InactiveCaptionText>Không kích hoạt văn bản phụ đề</InactiveCaptionText>
  4394. <Info>Thông tin</Info>
  4395. <InfoText>Chữ thông tin</InfoText>
  4396. <Menu>Bảng kê</Menu>
  4397. <MenuText>Bảng kê văn bản</MenuText>
  4398. <ScrollBar>Thanh trượt</ScrollBar>
  4399. <Window>Cửa sổ</Window>
  4400. <WindowFrame>Khung cửa sổ</WindowFrame>
  4401. <WindowText>Chữ cửa sổ</WindowText>
  4402. </PropertySystemColors>
  4403. <QueryBuilder>
  4404. <AddObject>Thêm đối tượng</AddObject>
  4405. <AddSubQuery>Thêm Derived Table</AddSubQuery>
  4406. <AllObjects>(Tất cả các đối tượng)</AllObjects>
  4407. <BadFromObjectExpression>Biểu thức FROM không hợp lệ!</BadFromObjectExpression>
  4408. <BadObjectName>Tên đối tượng không hợp lệ!</BadObjectName>
  4409. <BadSelectStatement>Câu lệnh SELECT không hợp lệ!</BadSelectStatement>
  4410. <Collections>Bộ sưu tập</Collections>
  4411. <CreateLinksFromForeignKeys>Tạo liên kết từ các khóa ngoại</CreateLinksFromForeignKeys>
  4412. <CriteriaAlias>Bí danh</CriteriaAlias>
  4413. <CriteriaCriteria>Tiêu chí</CriteriaCriteria>
  4414. <CriteriaExpression>Biểu thức</CriteriaExpression>
  4415. <CriteriaGroupBy>Nhóm theo</CriteriaGroupBy>
  4416. <CriteriaOr>Hoặc...</CriteriaOr>
  4417. <CriteriaOutput>Đầu ra</CriteriaOutput>
  4418. <CriteriaSortOrder>Thứ tự sắp xếp</CriteriaSortOrder>
  4419. <CriteriaSortType>Loại sắp xếp</CriteriaSortType>
  4420. <Database>Cơ sở dữ liệu</Database>
  4421. <DataSourceProperties>Thuộc tính nguồn dữ liệu</DataSourceProperties>
  4422. <DialectDontSupportDatabases>Máy chủ không hỗ trợ các truy vấn với các đối tượng từ các cơ sở dữ liệu khác nhau.</DialectDontSupportDatabases>
  4423. <DialectDontSupportSchemas>Máy chủ không hỗ trợ các lược đồ.</DialectDontSupportSchemas>
  4424. <DialectDontSupportUnions>Máy chủ này không hỗ trợ unions.</DialectDontSupportUnions>
  4425. <DialectDontSupportUnionsBrackets>Máy chủ này không hỗ trợ dấu ngoặc đơn trong unions.</DialectDontSupportUnionsBrackets>
  4426. <DialectDontSupportUnionsBracketsInSubQuery>Máy chủ này không hỗ trợ dấu ngoặc đơn trong các truy vấn phụ.</DialectDontSupportUnionsBracketsInSubQuery>
  4427. <DialectDontSupportUnionsInSubQueries>Máy chủ này không hỗ trợ hợp nhất trong các truy vấn phụ.</DialectDontSupportUnionsInSubQueries>
  4428. <Edit>Chỉnh sửa</Edit>
  4429. <EncloseWithBrackets>Kèm theo với dấu ngoặc đơn</EncloseWithBrackets>
  4430. <Expressions>Biểu thức</Expressions>
  4431. <InsertEmptyItem>Chèn hàng trống</InsertEmptyItem>
  4432. <JoinExpression>Biểu thức nhập</JoinExpression>
  4433. <LabelAlias>Bí danh:</LabelAlias>
  4434. <LabelFilterObjectsBySchemaName>Lọc các đối tượng theo tên lược đồ:</LabelFilterObjectsBySchemaName>
  4435. <LabelJoinExpression>Biểu thức nhập:</LabelJoinExpression>
  4436. <LabelLeftColumn>Cột bên trái:</LabelLeftColumn>
  4437. <LabelLeftObject>Đối tượng bên trái:</LabelLeftObject>
  4438. <LabelObject>Đối tượng:</LabelObject>
  4439. <LabelRightColumn>Cột bên phải:</LabelRightColumn>
  4440. <LabelRightObject>Đối tượng bên phải:</LabelRightObject>
  4441. <LinkProperties>Thuộc tính liên kết</LinkProperties>
  4442. <MetadataProviderCantExecSQL>Nhà cung cấp siêu dữ liệu đã sử dụng không thể thực hiện truy vấn SQL.</MetadataProviderCantExecSQL>
  4443. <MetaProviderCantLoadMetadata>Nhà cung cấp siêu dữ liệu đã sử dụng không thể tự động tải siêu dữ liệu.</MetaProviderCantLoadMetadata>
  4444. <MetaProviderCantLoadMetadataForDatabase>Nhà cung cấp siêu dữ liệu đã sử dụng không thể tự động tải siêu dữ liệu cho cơ sở dữ liệu: {0}</MetaProviderCantLoadMetadataForDatabase>
  4445. <MoveDown>Di chuyển xuống</MoveDown>
  4446. <MoveUp>Di chuyển lên</MoveUp>
  4447. <NewUnionSubQuery>Tạo mới truy vấn phụ hợp nhất</NewUnionSubQuery>
  4448. <NoConnectionObject>Không có đối tượng kết nối (thuộc tính {0} không được chỉ định).</NoConnectionObject>
  4449. <NoTransactionObject>Không có đối tượng giao dịch (thuộc tính {0} không được chỉ định).</NoTransactionObject>
  4450. <Objects>Các đối tượng</Objects>
  4451. <ProcedureParameters>Các tham số thủ tục</ProcedureParameters>
  4452. <Procedures>Thủ tục</Procedures>
  4453. <qnSaveChanges>Bạn có muốn lưu thay đổi của truy vấn không?</qnSaveChanges>
  4454. <Query>Truy vấn</Query>
  4455. <QueryBuilder>Trình tạo truy vấn</QueryBuilder>
  4456. <QueryParameters>Tham số truy vấn</QueryParameters>
  4457. <QueryProperties>Thuộc tính truy vấn</QueryProperties>
  4458. <Remove>Xóa</Remove>
  4459. <RemoveBrackets>Xóa dấu ngoặc</RemoveBrackets>
  4460. <RunQueryBuilder>Chạy trình tạo truy vấn</RunQueryBuilder>
  4461. <SelectAllFromLeft>Chọn tất cả từ trái sang</SelectAllFromLeft>
  4462. <SelectAllFromRight>Chọn tất cả từ phải sang</SelectAllFromRight>
  4463. <SwitchToDerivedTable>Chuyển sang Derived Table</SwitchToDerivedTable>
  4464. <Tables>Bảng</Tables>
  4465. <UnexpectedTokenAt>Có lỗi xảy ra "{0}" tại dòng {1}, vị trí {2}!</UnexpectedTokenAt>
  4466. <Unions>Hợp nhất</Unions>
  4467. <UnionSubMenu>Hợp nhất</UnionSubMenu>
  4468. <ViewQuery>Xem truy vấn</ViewQuery>
  4469. <Views>Lượt xem</Views>
  4470. </QueryBuilder>
  4471. <Questions>
  4472. <qnConfiguration>Vui lòng chọn loại cấu hình cho bảng thuộc tính. Loại cấu hình được chọn phụ thuộc vào số lượng thuộc tính có thể nhìn thấy và sự phức tạp của chúng đối với nhà phát triển báo cáo. Bạn luôn có thể thay đổi kiểu cấu hình từ trình đơn ngữ cảnh của bảng thuộc tính.</qnConfiguration>
  4473. <qnDictionaryNew>Bạn có muốn tạo từ điển mới không?</qnDictionaryNew>
  4474. <qnLanguageNew>Bạn đã thay đổi ngôn ngữ của báo cáo. Điều này sẽ dẫn tới việc tạo mã báo cáo mới. Bạn có chắc chắn muốn lưu ngôn ngữ mới?</qnLanguageNew>
  4475. <qnPageDelete>Bạn có muốn xóa trang không?</qnPageDelete>
  4476. <qnRemove>Bạn có muốn xóa không?</qnRemove>
  4477. <qnRemoveService>Bạn có muốn xóa dịch vụ không?</qnRemoveService>
  4478. <qnRemoveServiceCategory>Bạn có muốn loại bỏ danh mục không?</qnRemoveServiceCategory>
  4479. <qnRemoveUnused>Bạn có muốn loại bỏ không sử dụng không?</qnRemoveUnused>
  4480. <qnReplace>Bạn có muốn thay thế mục {0} hiện có không?</qnReplace>
  4481. <qnRestoreDefault>Khôi phục mặc định?</qnRestoreDefault>
  4482. <qnSaveChanges>Lưu thay đổi trong {0} không?</qnSaveChanges>
  4483. <qnSaveChangesToPreviewPage>Bạn có muốn lưu thay đổi trang không?</qnSaveChangesToPreviewPage>
  4484. <qnSynchronize>Đồng bộ hóa nội dung của kho dữ liệu và nội dung của từ điển?</qnSynchronize>
  4485. <qnSynchronizeServices>Đồng bộ dịch vụ?</qnSynchronizeServices>
  4486. </Questions>
  4487. <Report>
  4488. <ActiveRelation>Kích hoạt quan hệ</ActiveRelation>
  4489. <Address>Địa chỉ</Address>
  4490. <Alphabetical>Theo thứ tự chữ cái</Alphabetical>
  4491. <Bands>Dải</Bands>
  4492. <Basic>Cơ bản</Basic>
  4493. <BasicConfiguration>Số lượng tối thiểu các thuộc tính đối tượng, cần thiết cho việc hiển thị các loại báo cáo cơ bản.</BasicConfiguration>
  4494. <BusinessObjects>Đối tượng công việc</BusinessObjects>
  4495. <Categorized>Phân loại</Categorized>
  4496. <Charts>Biểu đồ</Charts>
  4497. <Checking>Kiểm tra...</Checking>
  4498. <ClickForMoreDetails>Nhấp để biết thêm chi tiết</ClickForMoreDetails>
  4499. <CollapseAll>Thu gọn tất cả</CollapseAll>
  4500. <Collection>Bộ sưu tập</Collection>
  4501. <CompilingReport>Biên dịch báo cáo</CompilingReport>
  4502. <Complete>Hoàn thành</Complete>
  4503. <Components>Các thành phần</Components>
  4504. <ConnectingToData>Kết nối với dữ liệu</ConnectingToData>
  4505. <CopyOf>Sao chép</CopyOf>
  4506. <CreateNewReportPageForm>Tạo báo cáo mới, thêm trang, thêm biểu mẫu</CreateNewReportPageForm>
  4507. <CreatingReport>Tạo báo cáo</CreatingReport>
  4508. <CrossBands>Chéo</CrossBands>
  4509. <Dialogs>Hộp thoại</Dialogs>
  4510. <EditStyles>[Chỉnh sửa kiểu]</EditStyles>
  4511. <Enhancements>Cải tiến</Enhancements>
  4512. <Errors>Lỗi</Errors>
  4513. <EventsTab>Tab sự kiện</EventsTab>
  4514. <ExpandAll>Mở rộng tất cả</ExpandAll>
  4515. <FilterAnd>Và</FilterAnd>
  4516. <FilterOr>Hoặc</FilterOr>
  4517. <FinishingReport>Hoàn thành báo cáo</FinishingReport>
  4518. <FirstPass>Truyền đầu tiên</FirstPass>
  4519. <FixedBugs>Các lỗi đã được sửa</FixedBugs>
  4520. <Gallery>Bộ sưu tập</Gallery>
  4521. <GenerateNewCode>Tạo mã mới</GenerateNewCode>
  4522. <History>Lịch sử</History>
  4523. <Infographics>Biểu đồ thông tin</Infographics>
  4524. <InfoMessage>{0} - {1} đã được tìm thấy.</InfoMessage>
  4525. <InformationMessages>Thông báo thông tin</InformationMessages>
  4526. <LabelAlias>Bí danh:</LabelAlias>
  4527. <LabelAuthor>Tác giả:</LabelAuthor>
  4528. <LabelBackground>Phía sau:</LabelBackground>
  4529. <LabelCategory>Danh mục:</LabelCategory>
  4530. <LabelCentimeters>Centimet:</LabelCentimeters>
  4531. <LabelCollectionName>Tên bộ sưu tập:</LabelCollectionName>
  4532. <LabelColor>Màu:</LabelColor>
  4533. <LabelCountData>Đếm dữ liệu:</LabelCountData>
  4534. <LabelDataBand>Dải dữ liệu:</LabelDataBand>
  4535. <LabelDataColumn>Cột dữ liệu:</LabelDataColumn>
  4536. <LabelDefaultValue>Giá trị mặc định:</LabelDefaultValue>
  4537. <LabelExpression>Biểu thức:</LabelExpression>
  4538. <LabelFactorLevel>Yếu tố lồng nhau:</LabelFactorLevel>
  4539. <LabelFontName>Tên phông chữ:</LabelFontName>
  4540. <LabelFunction>Chức năng:</LabelFunction>
  4541. <LabelHundredthsOfInch>Phần trăm của Inch:</LabelHundredthsOfInch>
  4542. <LabelInches>Inch:</LabelInches>
  4543. <LabelMillimeters>Millimet:</LabelMillimeters>
  4544. <LabelName>Tên:</LabelName>
  4545. <LabelNameInSource>Tên trong nguồn:</LabelNameInSource>
  4546. <LabelNestedLevel>Mức lồng nhau:</LabelNestedLevel>
  4547. <LabelPassword>Mật khẩu:</LabelPassword>
  4548. <LabelPixels>Điểm ảnh:</LabelPixels>
  4549. <LabelQueryTimeout>Thời gian chờ truy vấn:</LabelQueryTimeout>
  4550. <LabelSystemVariable>Biến hệ thống:</LabelSystemVariable>
  4551. <LabelTableOfContentsHint>Vui lòng kiểm tra các thành phần sẽ tạo thành mục lục. Một thành phần tương đương với một cấp tiêu đề.</LabelTableOfContentsHint>
  4552. <LabelTotals>Tổng cộng</LabelTotals>
  4553. <LabelType>Loại:</LabelType>
  4554. <LabelUserName>Tên người dùng:</LabelUserName>
  4555. <LabelValue>Giá trị:</LabelValue>
  4556. <LoadingReport>Đang tải báo cáo</LoadingReport>
  4557. <nameAssembly>Kết cấu</nameAssembly>
  4558. <NewFeatures>Các tính năng mới</NewFeatures>
  4559. <No>Không</No>
  4560. <NoFixes>Không có bản sửa lỗi hoặc cập nhật cho phiên bản này!</NoFixes>
  4561. <NoIssues>Không vấn đề</NoIssues>
  4562. <NoNewVersions>Không có phiên bản mới nào!</NoNewVersions>
  4563. <NotAssigned>Không được chỉ định</NotAssigned>
  4564. <Null>Null</Null>
  4565. <Office2010Back>Quay lại</Office2010Back>
  4566. <PageNofM>Trang {0} của {1}</PageNofM>
  4567. <PreparingReport>Chuẩn bị báo cáo</PreparingReport>
  4568. <Professional>Chuyên nghiệp</Professional>
  4569. <ProfessionalConfiguration>Tất cả thuộc tính của đối tượng.</ProfessionalConfiguration>
  4570. <PropertiesTab>Tab thuộc tính</PropertiesTab>
  4571. <RangeAll>Tất cả</RangeAll>
  4572. <RangeCurrentPage>Trang hiện tại</RangeCurrentPage>
  4573. <RangeInfo>Nhập số trang và/hoặc phạm vi trang phân cách bởi dấu phẩy. Ví dụ: 1, 3, 5-12</RangeInfo>
  4574. <RangePage>Phạm vi trang</RangePage>
  4575. <RangePages>Trang:</RangePages>
  4576. <ReportChecker>Trình kiểm tra báo cáo</ReportChecker>
  4577. <ReportRenderingMessages>Thông báo báo cáo kết xuất</ReportRenderingMessages>
  4578. <RestartDesigner>Bạn cần phải khởi động lại trình thiết kế báo cáo</RestartDesigner>
  4579. <SaveReportPagesOrFormsFromReport>Lưu báo cáo, trang hoặc biểu mẫu</SaveReportPagesOrFormsFromReport>
  4580. <SavingReport>Lưu báo cáo</SavingReport>
  4581. <SecondPass>Lần truyền thứ 2</SecondPass>
  4582. <Shapes>Hình dạng</Shapes>
  4583. <Standard>Tiêu chuẩn</Standard>
  4584. <StandardConfiguration>Các thuộc tính đối tượng chính trừ những thuộc tính hiếm khi được sử dụng.</StandardConfiguration>
  4585. <StiEmptyBrush>Trống</StiEmptyBrush>
  4586. <StiGlareBrush>Lóa</StiGlareBrush>
  4587. <StiGlassBrush>Kính</StiGlassBrush>
  4588. <StiGradientBrush>Tuyến tính</StiGradientBrush>
  4589. <StiHatchBrush>Đường gạch bóng</StiHatchBrush>
  4590. <StiSolidBrush>Đồng màu</StiSolidBrush>
  4591. <StyleBad>Xấu</StyleBad>
  4592. <StyleGood>Tốt</StyleGood>
  4593. <StyleNeutral>Trung lập</StyleNeutral>
  4594. <StyleNormal>Bình thường</StyleNormal>
  4595. <StyleNote>Chú thích</StyleNote>
  4596. <StyleWarning>Cảnh báo</StyleWarning>
  4597. <Warnings>Cảnh báo</Warnings>
  4598. <WhatsNewInVersion>Có gì mới trong {0}</WhatsNewInVersion>
  4599. <When>khi {0} {1}</When>
  4600. <WhenAnd>khi {0} {1} và</WhenAnd>
  4601. <WhenValueIs>khi giá trị là</WhenValueIs>
  4602. </Report>
  4603. <ReportInfo>
  4604. <CheckIssuesAdditionalDescription>Kiểm tra bản báo cáo để tìm lỗi và tìm ra sự không chính xác trong đó.</CheckIssuesAdditionalDescription>
  4605. <EncryptWithPassword>Mã hóa bằng mật khẩu</EncryptWithPassword>
  4606. <EncryptWithPasswordAdditionalDescription>Đặt mật khẩu để ngăn người không có thẩm quyền làm việc với báo cáo.</EncryptWithPasswordAdditionalDescription>
  4607. <EncryptWithPasswordDescription>Bảo vệ báo cáo</EncryptWithPasswordDescription>
  4608. <Info>Thông tin</Info>
  4609. <ReportOptions>Tùy chọn báo cáo</ReportOptions>
  4610. <ReportOptionsAdditionalDescription>Thiết lập thông tin cơ bản và các tham số trong báo cáo.</ReportOptionsAdditionalDescription>
  4611. </ReportInfo>
  4612. <ReportOpen>
  4613. <Browse>Duyệt</Browse>
  4614. <Import>Nhập vào</Import>
  4615. </ReportOpen>
  4616. <Services>
  4617. <categoryContextTools>Công cụ ngữ cảnh</categoryContextTools>
  4618. <categoryDesigner>Trình thiết kế</categoryDesigner>
  4619. <categoryDictionary>Từ điển</categoryDictionary>
  4620. <categoryExport>Xuất</categoryExport>
  4621. <categoryLanguages>Ngôn ngữ</categoryLanguages>
  4622. <categoryPanels>Bảng điều khiển</categoryPanels>
  4623. <categoryRender>Kết xuất</categoryRender>
  4624. <categoryShapes>Hình dạng</categoryShapes>
  4625. <categorySL>Lưu / Tải</categorySL>
  4626. <categorySystem>Hệ thống</categorySystem>
  4627. <categoryTextFormat>Định dạng văn bản</categoryTextFormat>
  4628. </Services>
  4629. <Shapes>
  4630. <Arrow>Mũi tên</Arrow>
  4631. <BasicShapes>Hình dạng cơ bản</BasicShapes>
  4632. <BentArrow>Mũi tên cong</BentArrow>
  4633. <BlockArrows>Mũi tên khối</BlockArrows>
  4634. <Chevron>Hình sóng zích zắc</Chevron>
  4635. <ComplexArrow>Mũi tên phức tạp</ComplexArrow>
  4636. <DiagonalDownLine>Đường chéo hướng xuống</DiagonalDownLine>
  4637. <DiagonalUpLine>Đường chéo hướng lên</DiagonalUpLine>
  4638. <Division>Dấu chia</Division>
  4639. <Equal>Dấu bằng</Equal>
  4640. <EquationShapes>Hình dạng phương trình</EquationShapes>
  4641. <Flowchart>Sơ đồ</Flowchart>
  4642. <FlowchartCard>Sơ đồ: Thẻ</FlowchartCard>
  4643. <FlowchartCollate>Sơ đồ: Đối chiếu</FlowchartCollate>
  4644. <FlowchartDecision>Sơ đồ: Quyết định</FlowchartDecision>
  4645. <FlowchartManualInput>Sơ đồ: Nhập bằng tay</FlowchartManualInput>
  4646. <FlowchartOffPageConnector>Sơ đồ: Trình kết nối trang</FlowchartOffPageConnector>
  4647. <FlowchartPreparation>Sơ đồ: Chuẩn bị</FlowchartPreparation>
  4648. <FlowchartSort>Sơ đồ: Sắp xếp</FlowchartSort>
  4649. <Frame>Khung</Frame>
  4650. <HorizontalLine>Đường thẳng ngang</HorizontalLine>
  4651. <InsertShapes>Chèn hình dạng</InsertShapes>
  4652. <LeftAndRightLine>Đường thẳng bên trái và bên phải</LeftAndRightLine>
  4653. <Lines>Đường thẳng</Lines>
  4654. <Minus>Dấu trừ</Minus>
  4655. <Multiply>Dấu nhân</Multiply>
  4656. <Octagon>Hình bát giác</Octagon>
  4657. <Oval>Hình trái xoan</Oval>
  4658. <Parallelogram>Hình bình hành</Parallelogram>
  4659. <Plus>Dấu cộng</Plus>
  4660. <Rectangle>Hình chữ nhật</Rectangle>
  4661. <Rectangles>Các hình chữ nhật</Rectangles>
  4662. <RegularPentagon>Hình ngũ giác đều</RegularPentagon>
  4663. <RoundedRectangle>Hình chữ nhật bo tròn</RoundedRectangle>
  4664. <ServiceCategory>Hình dạng</ServiceCategory>
  4665. <ShapeStyles>Kiểu dáng</ShapeStyles>
  4666. <SnipDiagonalSideCornerRectangle>Hình chữ nhật cắt góc chéo chiều</SnipDiagonalSideCornerRectangle>
  4667. <SnipSameSideCornerRectangle>Hình chữ nhật cắt góc cùng chiều</SnipSameSideCornerRectangle>
  4668. <TopAndBottomLine>Đường thẳng trên và dưới</TopAndBottomLine>
  4669. <Trapezoid>Hình thang</Trapezoid>
  4670. <Triangle>Hình tam giác</Triangle>
  4671. <VerticalLine>Đường thẳng đứng</VerticalLine>
  4672. </Shapes>
  4673. <SystemVariables>
  4674. <Column>Trả về số cột hiện tại (bắt đầu từ 1).</Column>
  4675. <GroupLine>Trả về số dòng nhóm hiện tại (bắt đầu từ 1).</GroupLine>
  4676. <IsFirstPage>Trả về đúng, nếu trong thời điểm hiện tại, trang đầu tiên của báo cáo được in.</IsFirstPage>
  4677. <IsFirstPageThrough>Trả về đúng, nếu trong thời điểm hiện tại, trang đầu tiên của báo cáo được in. Khi tính toán IsFirstPageThrough, tất cả thuộc tính ResetPageNumber sẽ bị bỏ qua và đánh số bắt đầu từ đầu báo cáo. Để tính chính xác một biến, nó cần phải thực hiện hai lần truyền.</IsFirstPageThrough>
  4678. <IsLastPage>Trả về đúng, nếu trong thời điểm hiện tại, trang cuối cùng của báo cáo được in. Để tính chính xác một biến, nó cần phải thực hiện hai lần truyền.</IsLastPage>
  4679. <IsLastPageThrough>Trả về đúng, nếu trong thời điểm hiện tại, trang cuối cùng của báo cáo được in. Khi tính toán IsLastPageThrough, tất cả các thuộc tính ResetPageNumber sẽ bị bỏ qua và đánh số bắt đầu từ đầu báo cáo. Để tính chính xác một biến, nó cần phải thực hiện hai lần truyền.</IsLastPageThrough>
  4680. <Line>Trả về số dòng hiện tại (bắt đầu từ 1).</Line>
  4681. <LineABC>Trả về thứ tự chữ cái của dòng hiện tại.</LineABC>
  4682. <LineRoman>Trả về số dòng hiện tại bằng chữ số La Mã.</LineRoman>
  4683. <LineThrough>Trả về số dòng hiện tại (bắt đầu từ 1). Khi tính toán số lượng, tất cả các nhóm đều bị bỏ qua và đánh số bắt đầu từ khi bắt đầu in.</LineThrough>
  4684. <PageCopyNumber>Trả về số bản sao hiện tại của một trang (bắt đầu từ 1).</PageCopyNumber>
  4685. <PageNofM>Trả về một chuỗi ký tự, hiển thị "Trang N của M" trong đó N là số trang hiện tại và M là TotalPageCount của báo cáo.</PageNofM>
  4686. <PageNofMThrough>Trả về một chuỗi ký tự, hiển thị "Trang N của M" trong đó N là số trang hiện tại và M là TotalPageCount của báo cáo. Khi tính toán PageNofMThrough, tất cả các thuộc tính ResetPageNumber sẽ bị bỏ qua và đánh số bắt đầu từ đầu báo cáo.</PageNofMThrough>
  4687. <PageNumber>Trả về số trang hiện tại (bắt đầu từ 1).</PageNumber>
  4688. <PageNumberThrough>Trả về số trang hiện tại (bắt đầu từ 1). Khi tính TotalPageCountThrough, tất cả các thuộc tính ResetPageNumber sẽ bị bỏ qua và đánh số bắt đầu từ đầu báo cáo.</PageNumberThrough>
  4689. <ReportAlias>Trả về bí danh của báo cáo. Bạn có thể thay đổi ReportAlias với sự trợ giúp của thuộc tính ReportAlias của báo cáo.</ReportAlias>
  4690. <ReportAuthor>Trả về tác giả báo cáo. Bạn có thể thay đổi ReportAuthor với sự trợ giúp của thuộc tính ReportAuthor của báo cáo.</ReportAuthor>
  4691. <ReportChanged>Ngày thay đổi báo cáo.</ReportChanged>
  4692. <ReportCreated>Ngày tạo báo cáo.</ReportCreated>
  4693. <ReportDescription>Trả về mô tả báo cáo. Bạn có thể thay đổi ReportName với sự trợ giúp của thuộc tính ReportDescription của báo cáo.</ReportDescription>
  4694. <ReportName>Trả về tên báo cáo. Bạn có thể thay đổi ReportName với sự trợ giúp của thuộc tính ReportName của báo cáo.</ReportName>
  4695. <Time>Trả về thời gian hiện tại.</Time>
  4696. <Today>Trả về ngày hiện tại.</Today>
  4697. <TotalPageCount>Trả về số trang trong báo cáo.</TotalPageCount>
  4698. <TotalPageCountThrough>Trả về số trang trong một báo cáo. Khi tính TotalPageCountThrough, tất cả các thuộc tính ResetPageNumber sẽ bị bỏ qua và đánh số bắt đầu từ đầu báo cáo.</TotalPageCountThrough>
  4699. </SystemVariables>
  4700. <TableRibbon>
  4701. <BuiltIn>Tích hợp</BuiltIn>
  4702. <Delete>Xóa</Delete>
  4703. <DeleteColumns>Xóa cột</DeleteColumns>
  4704. <DeleteRows>Xóa hàng</DeleteRows>
  4705. <DeleteTable>Xóa bảng</DeleteTable>
  4706. <DistributeColumns>Phân phối các cột</DistributeColumns>
  4707. <DistributeRows>Phân phối các hàng</DistributeRows>
  4708. <InsertAbove>Chèn lên trên</InsertAbove>
  4709. <InsertBelow>Chèn xuống dưới</InsertBelow>
  4710. <InsertLeft>Chèn sang trái</InsertLeft>
  4711. <InsertRight>Chèn sang phải</InsertRight>
  4712. <PlainTables>Bảng thô</PlainTables>
  4713. <ribbonBarRowsColumns>Hàng và cột</ribbonBarRowsColumns>
  4714. <ribbonBarTable>Bảng</ribbonBarTable>
  4715. <ribbonBarTableStyles>Kiểu bảng</ribbonBarTableStyles>
  4716. <Select>Lựa chọn</Select>
  4717. <SelectColumn>Chọn cột</SelectColumn>
  4718. <SelectRow>Chọn hàng</SelectRow>
  4719. <SelectTable>Chọn bảng</SelectTable>
  4720. </TableRibbon>
  4721. <Toolbars>
  4722. <Align>Căn chỉnh</Align>
  4723. <AlignBottom>Căn dưới</AlignBottom>
  4724. <AlignCenter>Căn giữa tâm</AlignCenter>
  4725. <AlignLeft>Căn trái</AlignLeft>
  4726. <AlignMiddle>Căn giữa</AlignMiddle>
  4727. <AlignRight>Căn phải</AlignRight>
  4728. <AlignToGrid>Căn theo dạng lưới</AlignToGrid>
  4729. <AlignTop>Căn trên</AlignTop>
  4730. <AlignWidth>Căn đều</AlignWidth>
  4731. <BringToFront>Đưa ra phía trước</BringToFront>
  4732. <CenterHorizontally>Căn giữa theo chiều ngang</CenterHorizontally>
  4733. <CenterVertically>Căn giữa theo chiều dọc</CenterVertically>
  4734. <Conditions>Điều kiện</Conditions>
  4735. <FontGrow>Tăng kích cỡ chữ</FontGrow>
  4736. <FontName>Tên phông chữ</FontName>
  4737. <FontShrink>Giảm kích cỡ chữ</FontShrink>
  4738. <FontSize>Cỡ chữ</FontSize>
  4739. <FontStyleBold>Phông chữ kiểu đậm</FontStyleBold>
  4740. <FontStyleItalic>Phông chữ kiểu nghiêng</FontStyleItalic>
  4741. <FontStyleUnderline>Phông chữ kiểu gạch dưới</FontStyleUnderline>
  4742. <Link>Liên kết</Link>
  4743. <Lock>Khóa</Lock>
  4744. <MakeHorizontalSpacingEqual>Tạo khoảng cách ngang bằng nhau</MakeHorizontalSpacingEqual>
  4745. <MakeSameHeight>Tạo chiều cao bằng nhau là {0}</MakeSameHeight>
  4746. <MakeSameSize>Tạo kích cỡ bằng nhau là {0}</MakeSameSize>
  4747. <MakeSameWidth>Tạo chiều rộng bằng nhau là {0}</MakeSameWidth>
  4748. <MakeVerticalSpacingEqual>Tạo khoảng cách dọc bằng nhau</MakeVerticalSpacingEqual>
  4749. <MoveBackward>Tiến về phía sau</MoveBackward>
  4750. <MoveForward>Tiến về phía trước</MoveForward>
  4751. <Order>Sắp xếp</Order>
  4752. <SendToBack>Đưa ra phía sau</SendToBack>
  4753. <Size>Kích cỡ</Size>
  4754. <StyleDesigner>Thiết kế kiểu dáng</StyleDesigner>
  4755. <Styles>Danh sách các kiểu dáng</Styles>
  4756. <TabHome>Trang chủ</TabHome>
  4757. <TabLayout>Bố cục</TabLayout>
  4758. <TabPage>Trang</TabPage>
  4759. <TabView>Xem</TabView>
  4760. <TextBrush>Cọ văn bản</TextBrush>
  4761. <ToolbarAlignment>Căn chỉnh</ToolbarAlignment>
  4762. <ToolbarArrange>Sắp xếp</ToolbarArrange>
  4763. <ToolbarBorders>Đường viền</ToolbarBorders>
  4764. <ToolbarClipboard>Bộ nhớ tạm</ToolbarClipboard>
  4765. <ToolbarDockStyle>Kiểu thanh công cụ</ToolbarDockStyle>
  4766. <ToolbarFont>Phông chữ</ToolbarFont>
  4767. <ToolbarFormatting>Định dạng</ToolbarFormatting>
  4768. <ToolbarLayout>Bố cục</ToolbarLayout>
  4769. <ToolbarPageSetup>Thiết lập trang</ToolbarPageSetup>
  4770. <ToolbarStandard>Tiêu chuẩn</ToolbarStandard>
  4771. <ToolbarStyle>Kiểu</ToolbarStyle>
  4772. <ToolbarTextFormat>Định dạng văn bản</ToolbarTextFormat>
  4773. <ToolbarTools>Công cụ</ToolbarTools>
  4774. <ToolbarViewOptions>Tùy chọn xem</ToolbarViewOptions>
  4775. <ToolbarWatermarkImage>Ảnh thủy ấn</ToolbarWatermarkImage>
  4776. <ToolbarWatermarkText>Chữ thủy ấn</ToolbarWatermarkText>
  4777. </Toolbars>
  4778. <Toolbox>
  4779. <Create>Thành phần tạo</Create>
  4780. <Hand>Tay</Hand>
  4781. <Select>Lựa chọn</Select>
  4782. <Style>Sao chép kiểu dáng</Style>
  4783. <TextEditor>Trình soạn thảo văn bản</TextEditor>
  4784. <title>Hộp công cụ</title>
  4785. </Toolbox>
  4786. <WelcomeScreen>
  4787. <AllDownloadsWillCanceled>Bạn có chắc chắn muốn đóng cửa sổ này? Tất cả các tải xuống sẽ bị hủy bỏ.</AllDownloadsWillCanceled>
  4788. <Description>Chúng tôi đã chọn cho bạn các báo cáo mà chúng tôi nghĩ là tốt nhất để bắt đầu nhanh.</Description>
  4789. <GetStarted>Bắt đầu</GetStarted>
  4790. <GetStartedWithDashboards>Bắt đầu với bảng điều khiển</GetStartedWithDashboards>
  4791. <GetStartedWithReports>Bắt đầu với các báo cáo</GetStartedWithReports>
  4792. <MoreReports>Báo cáo khác</MoreReports>
  4793. <ShowNextTime>Hiển thị '{0}' vào lần tiếp theo</ShowNextTime>
  4794. <Title>Chào mừng bạn đến với bản giới thiệu chương trình Stimulsoft</Title>
  4795. </WelcomeScreen>
  4796. <Wizards>
  4797. <BlankDashboard>Bảng thông tin trống</BlankDashboard>
  4798. <BlankReport>Báo cáo trống</BlankReport>
  4799. <ButtonBack>Quay lại</ButtonBack>
  4800. <ButtonCancel>Hủy</ButtonCancel>
  4801. <ButtonFinish>Hoàn thành</ButtonFinish>
  4802. <ButtonNext>Tiếp</ButtonNext>
  4803. <ColumnsOrder>Thứ tự cột</ColumnsOrder>
  4804. <Company>Công ty</Company>
  4805. <Custom>Tùy chỉnh</Custom>
  4806. <DataRelation>Quan hệ</DataRelation>
  4807. <DataSource>Nguồn dữ liệu</DataSource>
  4808. <DataSources>Các nguồn dữ liệu</DataSources>
  4809. <DefaultThemes>Chủ đề mặc định</DefaultThemes>
  4810. <Filters>Bộ lọc</Filters>
  4811. <FromReportTemplate>Từ mẫu báo cáo</FromReportTemplate>
  4812. <GetData>Lấy dữ liệu</GetData>
  4813. <groupCreateNewDashboard>Tạo bảng thông tin mới</groupCreateNewDashboard>
  4814. <groupCreateNewPageOrForm>Tạo trang mới hoặc mẫu mới</groupCreateNewPageOrForm>
  4815. <groupCreateNewReport>Tạo báo cáo mới</groupCreateNewReport>
  4816. <Groups>Các nhóm</Groups>
  4817. <groupTemplates>Các mẫu</groupTemplates>
  4818. <groupWizards>Thuật sĩ</groupWizards>
  4819. <infoColumnsOrder>Sắp xếp các cột theo thứ tự cần thiết.</infoColumnsOrder>
  4820. <infoCompanyInfo>Nhập thông tin công ty của bạn.</infoCompanyInfo>
  4821. <infoDataSource>Chọn một nguồn dữ liệu sẵn có.</infoDataSource>
  4822. <infoDataSources>Chọn nguồn dữ liệu sẵn có. Cái được chọn đầu tiên sẽ là nguồn dữ liệu chính.</infoDataSources>
  4823. <infoFilters>Lọc dữ liệu cho báo cáo của bạn</infoFilters>
  4824. <infoGroups>Chọn các cột cần thiết để nhóm.</infoGroups>
  4825. <infoLabelSettings>Đặt cài đặt nhãn.</infoLabelSettings>
  4826. <infoLanguages>Chọn văn hoá báo cáo.</infoLanguages>
  4827. <infoLayout>Chỉ định bố cục của báo cáo.</infoLayout>
  4828. <infoRelation>Chọn một quan hệ dữ liệu sẵn có.</infoRelation>
  4829. <infoSelectColumns>Chọn cột mà thông tin sẽ được hiển thị.</infoSelectColumns>
  4830. <infoSelectTemplate>Chọn mẫu thích hợp cho nhu cầu của bạn.</infoSelectTemplate>
  4831. <infoSort>Đặt sắp xếp dữ liệu. Bạn có thể sắp xếp ngay cho nhiều cột.</infoSort>
  4832. <infoThemes>Chọn chủ đề cho báo cáo của bạn.</infoThemes>
  4833. <infoTotals>Thêm thông tin tóm tắt vào báo cáo của bạn.</infoTotals>
  4834. <LabelDirection>Phương hướng:</LabelDirection>
  4835. <LabelHeight>Chiều cao:</LabelHeight>
  4836. <LabelHorizontalGap>Khoảng cách ngang:</LabelHorizontalGap>
  4837. <LabelLabelType>Loại nhãn:</LabelLabelType>
  4838. <LabelLeftMargin>Lề trái:</LabelLeftMargin>
  4839. <LabelNumberOfColumns>Số cột:</LabelNumberOfColumns>
  4840. <LabelNumberOfRows>Số hàng:</LabelNumberOfRows>
  4841. <LabelPageHeight>Chiều cao trang:</LabelPageHeight>
  4842. <LabelPageWidth>Chiều rộng trang:</LabelPageWidth>
  4843. <LabelReport>Báo cáo nhãn</LabelReport>
  4844. <LabelSettings>Cài đặt nhãn</LabelSettings>
  4845. <LabelSize>Kích cỡ:</LabelSize>
  4846. <LabelTopMargin>Lề trên:</LabelTopMargin>
  4847. <LabelVerticalGap>Khoảng cách dọc:</LabelVerticalGap>
  4848. <LabelWidth>Chiều rộng:</LabelWidth>
  4849. <Layout>Bố cục</Layout>
  4850. <Mapping>Ánh xạ</Mapping>
  4851. <MarkAll>Đánh dấu tất cả</MarkAll>
  4852. <MasterDetailReport>Báo cáo Tổng quan - Chi tiết</MasterDetailReport>
  4853. <NoFunction>[Không]</NoFunction>
  4854. <OpenExistingReport>Mở tệp hiện có</OpenExistingReport>
  4855. <OpenFrom>Mở từ {0}</OpenFrom>
  4856. <Preview>Xem trước</Preview>
  4857. <Reset>Cài lại</Reset>
  4858. <Results>Kết quả</Results>
  4859. <RunWizard>Chạy thuật sĩ</RunWizard>
  4860. <SelectColumns>Chọn cột</SelectColumns>
  4861. <SelectTemplate>Bản mẫu</SelectTemplate>
  4862. <Sort>Sắp xếp</Sort>
  4863. <StandardReport>Báo cáo tiêu chuẩn</StandardReport>
  4864. <Themes>Chủ đề</Themes>
  4865. <title>Báo cáo mới</title>
  4866. <Totals>Tất cả</Totals>
  4867. <UseDemoData>Sử dụng dữ liệu mẫu</UseDemoData>
  4868. <UsingReportWizard>Sử dụng thuật sỹ báo cáo</UsingReportWizard>
  4869. <YouHaveNotOpenedAnyReportRecently>Bạn đã không mở bất kỳ báo cáo gần đây. Để duyệt báo cáo, hãy bắt đầu bằng cách nhấp vào Mở tệp hiện có.</YouHaveNotOpenedAnyReportRecently>
  4870. </Wizards>
  4871. <Zoom>
  4872. <EmptyValue>Giá trị trống</EmptyValue>
  4873. <MultiplePages>Nhiều trang</MultiplePages>
  4874. <OnePage>Từng trang</OnePage>
  4875. <PageHeight>Chiều cao trang</PageHeight>
  4876. <PageWidth>Chiều rộng trang</PageWidth>
  4877. <TwoPages>2 trang</TwoPages>
  4878. <ZoomTo100>Phóng to đến 100%</ZoomTo100>
  4879. </Zoom>
  4880. </Localization>