MainPage.Designer.cs 177 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace PDF_Master.Strings.MainPage {
  11. using System;
  12. /// <summary>
  13. /// 一个强类型的资源类,用于查找本地化的字符串等。
  14. /// </summary>
  15. // 此类是由 StronglyTypedResourceBuilder
  16. // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
  17. // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
  18. // (以 /str 作为命令选项),或重新生成 VS 项目。
  19. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
  20. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  21. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  22. public class MainPage {
  23. private static global::System.Resources.ResourceManager resourceMan;
  24. private static global::System.Globalization.CultureInfo resourceCulture;
  25. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  26. internal MainPage() {
  27. }
  28. /// <summary>
  29. /// 返回此类使用的缓存的 ResourceManager 实例。
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. public static global::System.Resources.ResourceManager ResourceManager {
  33. get {
  34. if (object.ReferenceEquals(resourceMan, null)) {
  35. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PDF_Master.Strings.MainPage.MainPage", typeof(MainPage).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// 重写当前线程的 CurrentUICulture 属性,对
  43. /// 使用此强类型资源类的所有资源查找执行重写。
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. public static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// 查找类似 Copyright © {0}-{1} PDF Technologies,Inc. All Rights Reserved. 的本地化字符串。
  56. /// </summary>
  57. public static string About_Copyright {
  58. get {
  59. return ResourceManager.GetString("About_Copyright", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// 查找类似 Privacy Policy 的本地化字符串。
  64. /// </summary>
  65. public static string About_PrivacyAgreement {
  66. get {
  67. return ResourceManager.GetString("About_PrivacyAgreement", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// 查找类似 Terms of Service 的本地化字符串。
  72. /// </summary>
  73. public static string About_TermsOfService {
  74. get {
  75. return ResourceManager.GetString("About_TermsOfService", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// 查找类似 Version 的本地化字符串。
  80. /// </summary>
  81. public static string About_Version {
  82. get {
  83. return ResourceManager.GetString("About_Version", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// 查找类似 Failed to import annotations 的本地化字符串。
  88. /// </summary>
  89. public static string Annot_ExportFailWarning {
  90. get {
  91. return ResourceManager.GetString("Annot_ExportFailWarning", resourceCulture);
  92. }
  93. }
  94. /// <summary>
  95. /// 查找类似 Export annotations successfully 的本地化字符串。
  96. /// </summary>
  97. public static string Annot_ExportSuccess {
  98. get {
  99. return ResourceManager.GetString("Annot_ExportSuccess", resourceCulture);
  100. }
  101. }
  102. /// <summary>
  103. /// 查找类似 Circle 的本地化字符串。
  104. /// </summary>
  105. public static string Annotation_Circle {
  106. get {
  107. return ResourceManager.GetString("Annotation-Circle", resourceCulture);
  108. }
  109. }
  110. /// <summary>
  111. /// 查找类似 Author 的本地化字符串。
  112. /// </summary>
  113. public static string Annotation_DialogAuthor {
  114. get {
  115. return ResourceManager.GetString("Annotation_DialogAuthor", resourceCulture);
  116. }
  117. }
  118. /// <summary>
  119. /// 查找类似 Clear 的本地化字符串。
  120. /// </summary>
  121. public static string Annotation_DialogClear {
  122. get {
  123. return ResourceManager.GetString("Annotation_DialogClear", resourceCulture);
  124. }
  125. }
  126. /// <summary>
  127. /// 查找类似 Color 的本地化字符串。
  128. /// </summary>
  129. public static string Annotation_DialogColor {
  130. get {
  131. return ResourceManager.GetString("Annotation_DialogColor", resourceCulture);
  132. }
  133. }
  134. /// <summary>
  135. /// 查找类似 Cancel 的本地化字符串。
  136. /// </summary>
  137. public static string Annotation_DialogNo {
  138. get {
  139. return ResourceManager.GetString("Annotation_DialogNo", resourceCulture);
  140. }
  141. }
  142. /// <summary>
  143. /// 查找类似 Style 的本地化字符串。
  144. /// </summary>
  145. public static string Annotation_DialogStyle {
  146. get {
  147. return ResourceManager.GetString("Annotation_DialogStyle", resourceCulture);
  148. }
  149. }
  150. /// <summary>
  151. /// 查找类似 Apply 的本地化字符串。
  152. /// </summary>
  153. public static string Annotation_DialogYes {
  154. get {
  155. return ResourceManager.GetString("Annotation_DialogYes", resourceCulture);
  156. }
  157. }
  158. /// <summary>
  159. /// 查找类似 All comments in this file will be displayed here. 的本地化字符串。
  160. /// </summary>
  161. public static string Annotation_EmptyContext {
  162. get {
  163. return ResourceManager.GetString("Annotation_EmptyContext", resourceCulture);
  164. }
  165. }
  166. /// <summary>
  167. /// 查找类似 No Annotations 的本地化字符串。
  168. /// </summary>
  169. public static string Annotation_EmptyTitle {
  170. get {
  171. return ResourceManager.GetString("Annotation_EmptyTitle", resourceCulture);
  172. }
  173. }
  174. /// <summary>
  175. /// 查找类似 Collapse All 的本地化字符串。
  176. /// </summary>
  177. public static string Annotation_MenuCollapse {
  178. get {
  179. return ResourceManager.GetString("Annotation_MenuCollapse", resourceCulture);
  180. }
  181. }
  182. /// <summary>
  183. /// 查找类似 Copy Text 的本地化字符串。
  184. /// </summary>
  185. public static string Annotation_MenuCopyText {
  186. get {
  187. return ResourceManager.GetString("Annotation_MenuCopyText", resourceCulture);
  188. }
  189. }
  190. /// <summary>
  191. /// 查找类似 Delete 的本地化字符串。
  192. /// </summary>
  193. public static string Annotation_MenuDelete {
  194. get {
  195. return ResourceManager.GetString("Annotation_MenuDelete", resourceCulture);
  196. }
  197. }
  198. /// <summary>
  199. /// 查找类似 Delete All Anntations 的本地化字符串。
  200. /// </summary>
  201. public static string Annotation_MenuDeleteAll {
  202. get {
  203. return ResourceManager.GetString("Annotation_MenuDeleteAll", resourceCulture);
  204. }
  205. }
  206. /// <summary>
  207. /// 查找类似 Expand All 的本地化字符串。
  208. /// </summary>
  209. public static string Annotation_MenuExpand {
  210. get {
  211. return ResourceManager.GetString("Annotation_MenuExpand", resourceCulture);
  212. }
  213. }
  214. /// <summary>
  215. /// 查找类似 Export Annotations to XFDF 的本地化字符串。
  216. /// </summary>
  217. public static string Annotation_MenuExport {
  218. get {
  219. return ResourceManager.GetString("Annotation_MenuExport", resourceCulture);
  220. }
  221. }
  222. /// <summary>
  223. /// 查找类似 Import Annotations 的本地化字符串。
  224. /// </summary>
  225. public static string Annotation_MenuImport {
  226. get {
  227. return ResourceManager.GetString("Annotation_MenuImport", resourceCulture);
  228. }
  229. }
  230. /// <summary>
  231. /// 查找类似 Line Width 的本地化字符串。
  232. /// </summary>
  233. public static string Annotation_Thickness {
  234. get {
  235. return ResourceManager.GetString("Annotation_Thickness", resourceCulture);
  236. }
  237. }
  238. /// <summary>
  239. /// 查找类似 Annotation 的本地化字符串。
  240. /// </summary>
  241. public static string Annotation_Title {
  242. get {
  243. return ResourceManager.GetString("Annotation_Title", resourceCulture);
  244. }
  245. }
  246. /// <summary>
  247. /// 查找类似 Change Target Location 的本地化字符串。
  248. /// </summary>
  249. public static string Bookmark_Change {
  250. get {
  251. return ResourceManager.GetString("Bookmark_Change", resourceCulture);
  252. }
  253. }
  254. /// <summary>
  255. /// 查找类似 Delete 的本地化字符串。
  256. /// </summary>
  257. public static string Bookmark_Delete {
  258. get {
  259. return ResourceManager.GetString("Bookmark_Delete", resourceCulture);
  260. }
  261. }
  262. /// <summary>
  263. /// 查找类似 Please right-click on the selected page and select &quot;Add Bookmark&quot;, or click the &quot;Add&quot; button on the upper right to create a bookmark. 的本地化字符串。
  264. /// </summary>
  265. public static string Bookmark_EmptyContext {
  266. get {
  267. return ResourceManager.GetString("Bookmark_EmptyContext", resourceCulture);
  268. }
  269. }
  270. /// <summary>
  271. /// 查找类似 No Bookmarks 的本地化字符串。
  272. /// </summary>
  273. public static string Bookmark_EmptyTitle {
  274. get {
  275. return ResourceManager.GetString("Bookmark_EmptyTitle", resourceCulture);
  276. }
  277. }
  278. /// <summary>
  279. /// 查找类似 Page {0} 的本地化字符串。
  280. /// </summary>
  281. public static string Bookmark_PageN {
  282. get {
  283. return ResourceManager.GetString("Bookmark_PageN", resourceCulture);
  284. }
  285. }
  286. /// <summary>
  287. /// 查找类似 Rename 的本地化字符串。
  288. /// </summary>
  289. public static string Bookmark_Rename {
  290. get {
  291. return ResourceManager.GetString("Bookmark_Rename", resourceCulture);
  292. }
  293. }
  294. /// <summary>
  295. /// 查找类似 Bookmark 的本地化字符串。
  296. /// </summary>
  297. public static string Bookmark_Title {
  298. get {
  299. return ResourceManager.GetString("Bookmark_Title", resourceCulture);
  300. }
  301. }
  302. /// <summary>
  303. /// 查找类似 Change Color 的本地化字符串。
  304. /// </summary>
  305. public static string ColorMenuItem_Change {
  306. get {
  307. return ResourceManager.GetString("ColorMenuItem_Change", resourceCulture);
  308. }
  309. }
  310. /// <summary>
  311. /// 查找类似 Restore Default Color 的本地化字符串。
  312. /// </summary>
  313. public static string ColorMenuItem_Restore {
  314. get {
  315. return ResourceManager.GetString("ColorMenuItem_Restore", resourceCulture);
  316. }
  317. }
  318. /// <summary>
  319. /// 查找类似 Cancel 的本地化字符串。
  320. /// </summary>
  321. public static string Compress_Cancel {
  322. get {
  323. return ResourceManager.GetString("Compress_Cancel", resourceCulture);
  324. }
  325. }
  326. /// <summary>
  327. /// 查找类似 Compress 的本地化字符串。
  328. /// </summary>
  329. public static string Compress_Compress {
  330. get {
  331. return ResourceManager.GetString("Compress_Compress", resourceCulture);
  332. }
  333. }
  334. /// <summary>
  335. /// 查找类似 High 的本地化字符串。
  336. /// </summary>
  337. public static string Compress_High {
  338. get {
  339. return ResourceManager.GetString("Compress_High", resourceCulture);
  340. }
  341. }
  342. /// <summary>
  343. /// 查找类似 Low 的本地化字符串。
  344. /// </summary>
  345. public static string Compress_Low {
  346. get {
  347. return ResourceManager.GetString("Compress_Low", resourceCulture);
  348. }
  349. }
  350. /// <summary>
  351. /// 查找类似 Minimum 的本地化字符串。
  352. /// </summary>
  353. public static string Compress_Minimum {
  354. get {
  355. return ResourceManager.GetString("Compress_Minimum", resourceCulture);
  356. }
  357. }
  358. /// <summary>
  359. /// 查找类似 Standard 的本地化字符串。
  360. /// </summary>
  361. public static string Compress_Standard {
  362. get {
  363. return ResourceManager.GetString("Compress_Standard", resourceCulture);
  364. }
  365. }
  366. /// <summary>
  367. /// 查找类似 Compress 的本地化字符串。
  368. /// </summary>
  369. public static string Compress_Title {
  370. get {
  371. return ResourceManager.GetString("Compress_Title", resourceCulture);
  372. }
  373. }
  374. /// <summary>
  375. /// 查找类似 Copy 的本地化字符串。
  376. /// </summary>
  377. public static string ContentSelection_Copy {
  378. get {
  379. return ResourceManager.GetString("ContentSelection_Copy", resourceCulture);
  380. }
  381. }
  382. /// <summary>
  383. /// 查找类似 Crop 的本地化字符串。
  384. /// </summary>
  385. public static string ContentSelection_Crop {
  386. get {
  387. return ResourceManager.GetString("ContentSelection_Crop", resourceCulture);
  388. }
  389. }
  390. /// <summary>
  391. /// 查找类似 Export 的本地化字符串。
  392. /// </summary>
  393. public static string ContentSelection_Output {
  394. get {
  395. return ResourceManager.GetString("ContentSelection_Output", resourceCulture);
  396. }
  397. }
  398. /// <summary>
  399. /// 查找类似 Print 的本地化字符串。
  400. /// </summary>
  401. public static string ContentSelection_Print {
  402. get {
  403. return ResourceManager.GetString("ContentSelection_Print", resourceCulture);
  404. }
  405. }
  406. /// <summary>
  407. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  408. /// </summary>
  409. public static string ContentSelection_ZoomArea {
  410. get {
  411. return ResourceManager.GetString("ContentSelection_ZoomArea", resourceCulture);
  412. }
  413. }
  414. /// <summary>
  415. /// 查找类似 Failed to convert files 的本地化字符串。
  416. /// </summary>
  417. public static string Convert_FailedWarning {
  418. get {
  419. return ResourceManager.GetString("Convert_FailedWarning", resourceCulture);
  420. }
  421. }
  422. /// <summary>
  423. /// 查找类似 Cancel 的本地化字符串。
  424. /// </summary>
  425. public static string Convert_No {
  426. get {
  427. return ResourceManager.GetString("Convert_No", resourceCulture);
  428. }
  429. }
  430. /// <summary>
  431. /// 查找类似 Page Range 的本地化字符串。
  432. /// </summary>
  433. public static string Convert_PDFPageRange {
  434. get {
  435. return ResourceManager.GetString("Convert_PDFPageRange", resourceCulture);
  436. }
  437. }
  438. /// <summary>
  439. /// 查找类似 Create a single worksheet for
  440. ///a document 的本地化字符串。
  441. /// </summary>
  442. public static string Convert_PDFToCSVADocment {
  443. get {
  444. return ResourceManager.GetString("Convert_PDFToCSVADocment", resourceCulture);
  445. }
  446. }
  447. /// <summary>
  448. /// 查找类似 Create worksheets for each
  449. ///table 的本地化字符串。
  450. /// </summary>
  451. public static string Convert_PDFToCSVEachForm {
  452. get {
  453. return ResourceManager.GetString("Convert_PDFToCSVEachForm", resourceCulture);
  454. }
  455. }
  456. /// <summary>
  457. /// 查找类似 Settings 的本地化字符串。
  458. /// </summary>
  459. public static string Convert_PDFToCSVSettings {
  460. get {
  461. return ResourceManager.GetString("Convert_PDFToCSVSettings", resourceCulture);
  462. }
  463. }
  464. /// <summary>
  465. /// 查找类似 PDF To CSV 的本地化字符串。
  466. /// </summary>
  467. public static string Convert_PDFToCSVTitle {
  468. get {
  469. return ResourceManager.GetString("Convert_PDFToCSVTitle", resourceCulture);
  470. }
  471. }
  472. /// <summary>
  473. /// 查找类似 All Contents 的本地化字符串。
  474. /// </summary>
  475. public static string Convert_PDFToExcelAllContents {
  476. get {
  477. return ResourceManager.GetString("Convert_PDFToExcelAllContents", resourceCulture);
  478. }
  479. }
  480. /// <summary>
  481. /// 查找类似 Create sheets for each page 的本地化字符串。
  482. /// </summary>
  483. public static string Convert_PDFToExcelAllContentsEachPage {
  484. get {
  485. return ResourceManager.GetString("Convert_PDFToExcelAllContentsEachPage", resourceCulture);
  486. }
  487. }
  488. /// <summary>
  489. /// 查找类似 Create single sheet for file 的本地化字符串。
  490. /// </summary>
  491. public static string Convert_PDFToExcelAllContentsFile {
  492. get {
  493. return ResourceManager.GetString("Convert_PDFToExcelAllContentsFile", resourceCulture);
  494. }
  495. }
  496. /// <summary>
  497. /// 查找类似 Only Tables 的本地化字符串。
  498. /// </summary>
  499. public static string Convert_PDFToExcelAllOnlyTables {
  500. get {
  501. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTables", resourceCulture);
  502. }
  503. }
  504. /// <summary>
  505. /// 查找类似 Create sheet for each page 的本地化字符串。
  506. /// </summary>
  507. public static string Convert_PDFToExcelAllOnlyTablesEachPage {
  508. get {
  509. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTablesEachPage", resourceCulture);
  510. }
  511. }
  512. /// <summary>
  513. /// 查找类似 Create sheet for each table 的本地化字符串。
  514. /// </summary>
  515. public static string Convert_PDFToExcelAllOnlyTablesEachTable {
  516. get {
  517. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTablesEachTable", resourceCulture);
  518. }
  519. }
  520. /// <summary>
  521. /// 查找类似 Create single sheet for file 的本地化字符串。
  522. /// </summary>
  523. public static string Convert_PDFToExcelAllOnlyTablesFile {
  524. get {
  525. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTablesFile", resourceCulture);
  526. }
  527. }
  528. /// <summary>
  529. /// 查找类似 Only Texts 的本地化字符串。
  530. /// </summary>
  531. public static string Convert_PDFToExcelOnlyText {
  532. get {
  533. return ResourceManager.GetString("Convert_PDFToExcelOnlyText", resourceCulture);
  534. }
  535. }
  536. /// <summary>
  537. /// 查找类似 Settings 的本地化字符串。
  538. /// </summary>
  539. public static string Convert_PDFToExcelSettings {
  540. get {
  541. return ResourceManager.GetString("Convert_PDFToExcelSettings", resourceCulture);
  542. }
  543. }
  544. /// <summary>
  545. /// 查找类似 PDF To Excel 的本地化字符串。
  546. /// </summary>
  547. public static string Convert_PDFToExcelTitle {
  548. get {
  549. return ResourceManager.GetString("Convert_PDFToExcelTitle", resourceCulture);
  550. }
  551. }
  552. /// <summary>
  553. /// 查找类似 PDF To HTML 的本地化字符串。
  554. /// </summary>
  555. public static string Convert_PDFToHTMLTitle {
  556. get {
  557. return ResourceManager.GetString("Convert_PDFToHTMLTitle", resourceCulture);
  558. }
  559. }
  560. /// <summary>
  561. /// 查找类似 BMP 的本地化字符串。
  562. /// </summary>
  563. public static string Convert_PDFToImageBMP {
  564. get {
  565. return ResourceManager.GetString("Convert_PDFToImageBMP", resourceCulture);
  566. }
  567. }
  568. /// <summary>
  569. /// 查找类似 Format 的本地化字符串。
  570. /// </summary>
  571. public static string Convert_PDFToImageFormat {
  572. get {
  573. return ResourceManager.GetString("Convert_PDFToImageFormat", resourceCulture);
  574. }
  575. }
  576. /// <summary>
  577. /// 查找类似 GIF 的本地化字符串。
  578. /// </summary>
  579. public static string Convert_PDFToImageGIF {
  580. get {
  581. return ResourceManager.GetString("Convert_PDFToImageGIF", resourceCulture);
  582. }
  583. }
  584. /// <summary>
  585. /// 查找类似 JPEG 的本地化字符串。
  586. /// </summary>
  587. public static string Convert_PDFToImageJPEG {
  588. get {
  589. return ResourceManager.GetString("Convert_PDFToImageJPEG", resourceCulture);
  590. }
  591. }
  592. /// <summary>
  593. /// 查找类似 JPEG-2000 的本地化字符串。
  594. /// </summary>
  595. public static string Convert_PDFToImageJPEG_2000 {
  596. get {
  597. return ResourceManager.GetString("Convert_PDFToImageJPEG-2000", resourceCulture);
  598. }
  599. }
  600. /// <summary>
  601. /// 查找类似 JPG 的本地化字符串。
  602. /// </summary>
  603. public static string Convert_PDFToImageJPG {
  604. get {
  605. return ResourceManager.GetString("Convert_PDFToImageJPG", resourceCulture);
  606. }
  607. }
  608. /// <summary>
  609. /// 查找类似 PNG 的本地化字符串。
  610. /// </summary>
  611. public static string Convert_PDFToImagePNG {
  612. get {
  613. return ResourceManager.GetString("Convert_PDFToImagePNG", resourceCulture);
  614. }
  615. }
  616. /// <summary>
  617. /// 查找类似 TGA 的本地化字符串。
  618. /// </summary>
  619. public static string Convert_PDFToImageTGA {
  620. get {
  621. return ResourceManager.GetString("Convert_PDFToImageTGA", resourceCulture);
  622. }
  623. }
  624. /// <summary>
  625. /// 查找类似 TIFF 的本地化字符串。
  626. /// </summary>
  627. public static string Convert_PDFToImageTIFF {
  628. get {
  629. return ResourceManager.GetString("Convert_PDFToImageTIFF", resourceCulture);
  630. }
  631. }
  632. /// <summary>
  633. /// 查找类似 PDF To Image 的本地化字符串。
  634. /// </summary>
  635. public static string Convert_PDFToImageTitle {
  636. get {
  637. return ResourceManager.GetString("Convert_PDFToImageTitle", resourceCulture);
  638. }
  639. }
  640. /// <summary>
  641. /// 查找类似 PDF To PPT 的本地化字符串。
  642. /// </summary>
  643. public static string Convert_PDFToPPTTitle {
  644. get {
  645. return ResourceManager.GetString("Convert_PDFToPPTTitle", resourceCulture);
  646. }
  647. }
  648. /// <summary>
  649. /// 查找类似 PDF To RTF 的本地化字符串。
  650. /// </summary>
  651. public static string Convert_PDFToRTFTitle {
  652. get {
  653. return ResourceManager.GetString("Convert_PDFToRTFTitle", resourceCulture);
  654. }
  655. }
  656. /// <summary>
  657. /// 查找类似 PDF To Text 的本地化字符串。
  658. /// </summary>
  659. public static string Convert_PDFToTextTitle {
  660. get {
  661. return ResourceManager.GetString("Convert_PDFToTextTitle", resourceCulture);
  662. }
  663. }
  664. /// <summary>
  665. /// 查找类似 PDF To Word 的本地化字符串。
  666. /// </summary>
  667. public static string Convert_PDFToWordTitle {
  668. get {
  669. return ResourceManager.GetString("Convert_PDFToWordTitle", resourceCulture);
  670. }
  671. }
  672. /// <summary>
  673. /// 查找类似 Convert 的本地化字符串。
  674. /// </summary>
  675. public static string Convert_Yes {
  676. get {
  677. return ResourceManager.GetString("Convert_Yes", resourceCulture);
  678. }
  679. }
  680. /// <summary>
  681. /// 查找类似 Create PDF failed 的本地化字符串。
  682. /// </summary>
  683. public static string CreateFileFailedWarning {
  684. get {
  685. return ResourceManager.GetString("CreateFileFailedWarning", resourceCulture);
  686. }
  687. }
  688. /// <summary>
  689. /// 查找类似 Are you sure to delete all annotations? 的本地化字符串。
  690. /// </summary>
  691. public static string DeleteAllAnnotation_Warning {
  692. get {
  693. return ResourceManager.GetString("DeleteAllAnnotation_Warning", resourceCulture);
  694. }
  695. }
  696. /// <summary>
  697. /// 查找类似 Hint 的本地化字符串。
  698. /// </summary>
  699. public static string Dialog_Hint {
  700. get {
  701. return ResourceManager.GetString("Dialog_Hint", resourceCulture);
  702. }
  703. }
  704. /// <summary>
  705. /// 查找类似 Incorrect input format
  706. ///
  707. ///The file format you selected is not supported by this feature, please select the correct input format. 的本地化字符串。
  708. /// </summary>
  709. public static string ErrorFile_Warning {
  710. get {
  711. return ResourceManager.GetString("ErrorFile_Warning", resourceCulture);
  712. }
  713. }
  714. /// <summary>
  715. /// 查找类似 Sorry, we couldn&apos;t find this PDF file. Is it possible it was moved, renamed or deleted? 的本地化字符串。
  716. /// </summary>
  717. public static string FileNotExistWarning {
  718. get {
  719. return ResourceManager.GetString("FileNotExistWarning", resourceCulture);
  720. }
  721. }
  722. /// <summary>
  723. /// 查找类似 Fill 的本地化字符串。
  724. /// </summary>
  725. public static string FreeText_Fill {
  726. get {
  727. return ResourceManager.GetString("FreeText_Fill", resourceCulture);
  728. }
  729. }
  730. /// <summary>
  731. /// 查找类似 Font 的本地化字符串。
  732. /// </summary>
  733. public static string FreeText_Font {
  734. get {
  735. return ResourceManager.GetString("FreeText_Font", resourceCulture);
  736. }
  737. }
  738. /// <summary>
  739. /// 查找类似 Text 的本地化字符串。
  740. /// </summary>
  741. public static string FreeText_Title {
  742. get {
  743. return ResourceManager.GetString("FreeText_Title", resourceCulture);
  744. }
  745. }
  746. /// <summary>
  747. /// 查找类似 Enter Read Mode, tap ESC to exit 的本地化字符串。
  748. /// </summary>
  749. public static string GlobalTip_ESCReadMode {
  750. get {
  751. return ResourceManager.GetString("GlobalTip_ESCReadMode", resourceCulture);
  752. }
  753. }
  754. /// <summary>
  755. /// 查找类似 Exit Read Mode 的本地化字符串。
  756. /// </summary>
  757. public static string GlobalTip_ExitReadMode {
  758. get {
  759. return ResourceManager.GetString("GlobalTip_ExitReadMode", resourceCulture);
  760. }
  761. }
  762. /// <summary>
  763. /// 查找类似 Highlight 的本地化字符串。
  764. /// </summary>
  765. public static string Highlight_Title {
  766. get {
  767. return ResourceManager.GetString("Highlight_Title", resourceCulture);
  768. }
  769. }
  770. /// <summary>
  771. /// 查找类似 Add File 的本地化字符串。
  772. /// </summary>
  773. public static string ImageToPDF_AddFile {
  774. get {
  775. return ResourceManager.GetString("ImageToPDF_AddFile", resourceCulture);
  776. }
  777. }
  778. /// <summary>
  779. /// 查找类似 Add Folder 的本地化字符串。
  780. /// </summary>
  781. public static string ImageToPDF_AddFolder {
  782. get {
  783. return ResourceManager.GetString("ImageToPDF_AddFolder", resourceCulture);
  784. }
  785. }
  786. /// <summary>
  787. /// 查找类似 Create PDF for each image 的本地化字符串。
  788. /// </summary>
  789. public static string ImageToPDF_Create {
  790. get {
  791. return ResourceManager.GetString("ImageToPDF_Create", resourceCulture);
  792. }
  793. }
  794. /// <summary>
  795. /// 查找类似 Drop files here or Click “Add Files” in bottom right corner. 的本地化字符串。
  796. /// </summary>
  797. public static string ImageToPDF_EmptyContext {
  798. get {
  799. return ResourceManager.GetString("ImageToPDF_EmptyContext", resourceCulture);
  800. }
  801. }
  802. /// <summary>
  803. /// 查找类似 Export 的本地化字符串。
  804. /// </summary>
  805. public static string ImageToPDF_ExportTitle {
  806. get {
  807. return ResourceManager.GetString("ImageToPDF_ExportTitle", resourceCulture);
  808. }
  809. }
  810. /// <summary>
  811. /// 查找类似 File Name 的本地化字符串。
  812. /// </summary>
  813. public static string ImageToPDF_FileName {
  814. get {
  815. return ResourceManager.GetString("ImageToPDF_FileName", resourceCulture);
  816. }
  817. }
  818. /// <summary>
  819. /// 查找类似 Delete 的本地化字符串。
  820. /// </summary>
  821. public static string ImageToPDF_MenuDelete {
  822. get {
  823. return ResourceManager.GetString("ImageToPDF_MenuDelete", resourceCulture);
  824. }
  825. }
  826. /// <summary>
  827. /// 查找类似 Show in Folder 的本地化字符串。
  828. /// </summary>
  829. public static string ImageToPDF_MenuShowFolder {
  830. get {
  831. return ResourceManager.GetString("ImageToPDF_MenuShowFolder", resourceCulture);
  832. }
  833. }
  834. /// <summary>
  835. /// 查找类似 Merge as one PDF document 的本地化字符串。
  836. /// </summary>
  837. public static string ImageToPDF_Merge {
  838. get {
  839. return ResourceManager.GetString("ImageToPDF_Merge", resourceCulture);
  840. }
  841. }
  842. /// <summary>
  843. /// 查找类似 Save as PDF 的本地化字符串。
  844. /// </summary>
  845. public static string ImageToPDF_SaveAsPDF {
  846. get {
  847. return ResourceManager.GetString("ImageToPDF_SaveAsPDF", resourceCulture);
  848. }
  849. }
  850. /// <summary>
  851. /// 查找类似 Select files 的本地化字符串。
  852. /// </summary>
  853. public static string ImageToPDF_SelectFiles {
  854. get {
  855. return ResourceManager.GetString("ImageToPDF_SelectFiles", resourceCulture);
  856. }
  857. }
  858. /// <summary>
  859. /// 查找类似 Settings 的本地化字符串。
  860. /// </summary>
  861. public static string ImageToPDF_Settings {
  862. get {
  863. return ResourceManager.GetString("ImageToPDF_Settings", resourceCulture);
  864. }
  865. }
  866. /// <summary>
  867. /// 查找类似 Size 的本地化字符串。
  868. /// </summary>
  869. public static string ImageToPDF_Size {
  870. get {
  871. return ResourceManager.GetString("ImageToPDF_Size", resourceCulture);
  872. }
  873. }
  874. /// <summary>
  875. /// 查找类似 Status 的本地化字符串。
  876. /// </summary>
  877. public static string ImageToPDF_Status {
  878. get {
  879. return ResourceManager.GetString("ImageToPDF_Status", resourceCulture);
  880. }
  881. }
  882. /// <summary>
  883. /// 查找类似 Image To PDF 的本地化字符串。
  884. /// </summary>
  885. public static string ImageToPDF_Title {
  886. get {
  887. return ResourceManager.GetString("ImageToPDF_Title", resourceCulture);
  888. }
  889. }
  890. /// <summary>
  891. /// 查找类似 Page 的本地化字符串。
  892. /// </summary>
  893. public static string Link_Page {
  894. get {
  895. return ResourceManager.GetString("Link_Page", resourceCulture);
  896. }
  897. }
  898. /// <summary>
  899. /// 查找类似 Link 的本地化字符串。
  900. /// </summary>
  901. public static string Link_Title {
  902. get {
  903. return ResourceManager.GetString("Link_Title", resourceCulture);
  904. }
  905. }
  906. /// <summary>
  907. /// 查找类似 No longer prompt 的本地化字符串。
  908. /// </summary>
  909. public static string Main_DoNotRemindAgain {
  910. get {
  911. return ResourceManager.GetString("Main_DoNotRemindAgain", resourceCulture);
  912. }
  913. }
  914. /// <summary>
  915. /// 查找类似 Want to save your changes to &apos;{0}&apos; ?
  916. /// Your changes will be lost if you don&apos;t save them. 的本地化字符串。
  917. /// </summary>
  918. public static string Main_ModifiedFileWarning {
  919. get {
  920. return ResourceManager.GetString("Main_ModifiedFileWarning", resourceCulture);
  921. }
  922. }
  923. /// <summary>
  924. /// 查找类似 The file cannot be opened because the file format or file extension is invalid. Please make sure the file is not damaged and the file extension matches the file format. 的本地化字符串。
  925. /// </summary>
  926. public static string Main_OpenFileFailedWarning {
  927. get {
  928. return ResourceManager.GetString("Main_OpenFileFailedWarning", resourceCulture);
  929. }
  930. }
  931. /// <summary>
  932. /// 查找类似 Save Failed 的本地化字符串。
  933. /// </summary>
  934. public static string Main_SaveFailed {
  935. get {
  936. return ResourceManager.GetString("Main_SaveFailed", resourceCulture);
  937. }
  938. }
  939. /// <summary>
  940. /// 查找类似 Sorry, we couldn&apos;t find this PDF file. Is it possible it was moved, renamed or deleted? 的本地化字符串。
  941. /// </summary>
  942. public static string Main_TheFileNotExistWarning {
  943. get {
  944. return ResourceManager.GetString("Main_TheFileNotExistWarning", resourceCulture);
  945. }
  946. }
  947. /// <summary>
  948. /// 查找类似 The file is opened in another program. Please save the document with a different name or in a different folder. 的本地化字符串。
  949. /// </summary>
  950. public static string Main_TheFileOccupiedWarning {
  951. get {
  952. return ResourceManager.GetString("Main_TheFileOccupiedWarning", resourceCulture);
  953. }
  954. }
  955. /// <summary>
  956. /// 查找类似 Your file is in Read-Only mode. If you want to edit this file, we recommend that you use [Save As] to save your file and edit it. 的本地化字符串。
  957. /// </summary>
  958. public static string Main_TheFileReadonlyWarning {
  959. get {
  960. return ResourceManager.GetString("Main_TheFileReadonlyWarning", resourceCulture);
  961. }
  962. }
  963. /// <summary>
  964. /// 查找类似 The current file is fixed. Please save it by Save As. 的本地化字符串。
  965. /// </summary>
  966. public static string Main_TheFileRepairedWarning {
  967. get {
  968. return ResourceManager.GetString("Main_TheFileRepairedWarning", resourceCulture);
  969. }
  970. }
  971. /// <summary>
  972. /// 查找类似 Book Mode 的本地化字符串。
  973. /// </summary>
  974. public static string MainPage_BookMode {
  975. get {
  976. return ResourceManager.GetString("MainPage_BookMode", resourceCulture);
  977. }
  978. }
  979. /// <summary>
  980. /// 查找类似 Show cover page on its own line while using two-page view 的本地化字符串。
  981. /// </summary>
  982. public static string MainPage_BookModeTip {
  983. get {
  984. return ResourceManager.GetString("MainPage_BookModeTip", resourceCulture);
  985. }
  986. }
  987. /// <summary>
  988. /// 查找类似 Continuous 的本地化字符串。
  989. /// </summary>
  990. public static string MainPage_Continuous {
  991. get {
  992. return ResourceManager.GetString("MainPage_Continuous", resourceCulture);
  993. }
  994. }
  995. /// <summary>
  996. /// 查找类似 Two Pages 的本地化字符串。
  997. /// </summary>
  998. public static string MainPage_Facing {
  999. get {
  1000. return ResourceManager.GetString("MainPage_Facing", resourceCulture);
  1001. }
  1002. }
  1003. /// <summary>
  1004. /// 查找类似 View two pages side-by-side 的本地化字符串。
  1005. /// </summary>
  1006. public static string MainPage_FacingTip {
  1007. get {
  1008. return ResourceManager.GetString("MainPage_FacingTip", resourceCulture);
  1009. }
  1010. }
  1011. /// <summary>
  1012. /// 查找类似 View Settings 的本地化字符串。
  1013. /// </summary>
  1014. public static string MainPage_ShowViewModular {
  1015. get {
  1016. return ResourceManager.GetString("MainPage_ShowViewModular", resourceCulture);
  1017. }
  1018. }
  1019. /// <summary>
  1020. /// 查找类似 Single Page 的本地化字符串。
  1021. /// </summary>
  1022. public static string MainPage_SinglePage {
  1023. get {
  1024. return ResourceManager.GetString("MainPage_SinglePage", resourceCulture);
  1025. }
  1026. }
  1027. /// <summary>
  1028. /// 查找类似 View one page at a time 的本地化字符串。
  1029. /// </summary>
  1030. public static string MainPage_SinglePageTip {
  1031. get {
  1032. return ResourceManager.GetString("MainPage_SinglePageTip", resourceCulture);
  1033. }
  1034. }
  1035. /// <summary>
  1036. /// 查找类似 View pages continuously with scrolling enabled 的本地化字符串。
  1037. /// </summary>
  1038. public static string MainPage_ViewPageContinousTip {
  1039. get {
  1040. return ResourceManager.GetString("MainPage_ViewPageContinousTip", resourceCulture);
  1041. }
  1042. }
  1043. /// <summary>
  1044. /// 查找类似 Delete 的本地化字符串。
  1045. /// </summary>
  1046. public static string MenuRightMenuSignatureAnnot_Delete {
  1047. get {
  1048. return ResourceManager.GetString("MenuRightMenuSignatureAnnot_Delete", resourceCulture);
  1049. }
  1050. }
  1051. /// <summary>
  1052. /// 查找类似 Delete All Signatures 的本地化字符串。
  1053. /// </summary>
  1054. public static string MenuRightMenuSignatureAnnot_DeleteAll {
  1055. get {
  1056. return ResourceManager.GetString("MenuRightMenuSignatureAnnot_DeleteAll", resourceCulture);
  1057. }
  1058. }
  1059. /// <summary>
  1060. /// 查找类似 Export 的本地化字符串。
  1061. /// </summary>
  1062. public static string MenuRightMenuSignatureAnnot_Export {
  1063. get {
  1064. return ResourceManager.GetString("MenuRightMenuSignatureAnnot_Export", resourceCulture);
  1065. }
  1066. }
  1067. /// <summary>
  1068. /// 查找类似 PDF 的本地化字符串。
  1069. /// </summary>
  1070. public static string MenuRightMenuSignatureAnnotExport_PDF {
  1071. get {
  1072. return ResourceManager.GetString("MenuRightMenuSignatureAnnotExport_PDF", resourceCulture);
  1073. }
  1074. }
  1075. /// <summary>
  1076. /// 查找类似 PNG 的本地化字符串。
  1077. /// </summary>
  1078. public static string MenuRightMenuSignatureAnnotExport_PNG {
  1079. get {
  1080. return ResourceManager.GetString("MenuRightMenuSignatureAnnotExport_PNG", resourceCulture);
  1081. }
  1082. }
  1083. /// <summary>
  1084. /// 查找类似 Export Stamps 的本地化字符串。
  1085. /// </summary>
  1086. public static string MenuRightMenuStampAnnot_Export {
  1087. get {
  1088. return ResourceManager.GetString("MenuRightMenuStampAnnot_Export", resourceCulture);
  1089. }
  1090. }
  1091. /// <summary>
  1092. /// 查找类似 PDF 的本地化字符串。
  1093. /// </summary>
  1094. public static string MenuRightMenuStampAnnotExport_PDF {
  1095. get {
  1096. return ResourceManager.GetString("MenuRightMenuStampAnnotExport_PDF", resourceCulture);
  1097. }
  1098. }
  1099. /// <summary>
  1100. /// 查找类似 PNG 的本地化字符串。
  1101. /// </summary>
  1102. public static string MenuRightMenuStampAnnotExport_PNG {
  1103. get {
  1104. return ResourceManager.GetString("MenuRightMenuStampAnnotExport_PNG", resourceCulture);
  1105. }
  1106. }
  1107. /// <summary>
  1108. /// 查找类似 Add Files 的本地化字符串。
  1109. /// </summary>
  1110. public static string Merge_AddFiles {
  1111. get {
  1112. return ResourceManager.GetString("Merge_AddFiles", resourceCulture);
  1113. }
  1114. }
  1115. /// <summary>
  1116. /// 查找类似 Add Folder 的本地化字符串。
  1117. /// </summary>
  1118. public static string Merge_AddFolder {
  1119. get {
  1120. return ResourceManager.GetString("Merge_AddFolder", resourceCulture);
  1121. }
  1122. }
  1123. /// <summary>
  1124. /// 查找类似 Add an Open File 的本地化字符串。
  1125. /// </summary>
  1126. public static string Merge_AddOpenFile {
  1127. get {
  1128. return ResourceManager.GetString("Merge_AddOpenFile", resourceCulture);
  1129. }
  1130. }
  1131. /// <summary>
  1132. /// 查找类似 Selected files
  1133. ///Drop files here or Click “+”. Drag files to reorder as you need.
  1134. ///You can also add files or folders via the lower left button. 的本地化字符串。
  1135. /// </summary>
  1136. public static string Merge_Hint {
  1137. get {
  1138. return ResourceManager.GetString("Merge_Hint", resourceCulture);
  1139. }
  1140. }
  1141. /// <summary>
  1142. /// 查找类似 Page 的本地化字符串。
  1143. /// </summary>
  1144. public static string Merge_ItemPage {
  1145. get {
  1146. return ResourceManager.GetString("Merge_ItemPage", resourceCulture);
  1147. }
  1148. }
  1149. /// <summary>
  1150. /// 查找类似 Pages 的本地化字符串。
  1151. /// </summary>
  1152. public static string Merge_ItemPages {
  1153. get {
  1154. return ResourceManager.GetString("Merge_ItemPages", resourceCulture);
  1155. }
  1156. }
  1157. /// <summary>
  1158. /// 查找类似 Cancel 的本地化字符串。
  1159. /// </summary>
  1160. public static string Merge_No {
  1161. get {
  1162. return ResourceManager.GetString("Merge_No", resourceCulture);
  1163. }
  1164. }
  1165. /// <summary>
  1166. /// 查找类似 File Name 的本地化字符串。
  1167. /// </summary>
  1168. public static string Merge_TitleFileName {
  1169. get {
  1170. return ResourceManager.GetString("Merge_TitleFileName", resourceCulture);
  1171. }
  1172. }
  1173. /// <summary>
  1174. /// 查找类似 Page Range 的本地化字符串。
  1175. /// </summary>
  1176. public static string Merge_TitlePageRange {
  1177. get {
  1178. return ResourceManager.GetString("Merge_TitlePageRange", resourceCulture);
  1179. }
  1180. }
  1181. /// <summary>
  1182. /// 查找类似 Size 的本地化字符串。
  1183. /// </summary>
  1184. public static string Merge_TitleSize {
  1185. get {
  1186. return ResourceManager.GetString("Merge_TitleSize", resourceCulture);
  1187. }
  1188. }
  1189. /// <summary>
  1190. /// 查找类似 Merge 的本地化字符串。
  1191. /// </summary>
  1192. public static string Merge_Yes {
  1193. get {
  1194. return ResourceManager.GetString("Merge_Yes", resourceCulture);
  1195. }
  1196. }
  1197. /// <summary>
  1198. /// 查找类似 Close Tab 的本地化字符串。
  1199. /// </summary>
  1200. public static string MultipleTabs__Close {
  1201. get {
  1202. return ResourceManager.GetString("MultipleTabs_ Close", resourceCulture);
  1203. }
  1204. }
  1205. /// <summary>
  1206. /// 查找类似 Close All Tabs 的本地化字符串。
  1207. /// </summary>
  1208. public static string MultipleTabs__CloseAll {
  1209. get {
  1210. return ResourceManager.GetString("MultipleTabs_ CloseAll", resourceCulture);
  1211. }
  1212. }
  1213. /// <summary>
  1214. /// 查找类似 Show in Folder 的本地化字符串。
  1215. /// </summary>
  1216. public static string MultipleTabs__Folder {
  1217. get {
  1218. return ResourceManager.GetString("MultipleTabs_ Folder", resourceCulture);
  1219. }
  1220. }
  1221. /// <summary>
  1222. /// 查找类似 Home 的本地化字符串。
  1223. /// </summary>
  1224. public static string MultipleTabs_Default {
  1225. get {
  1226. return ResourceManager.GetString("MultipleTabs_Default", resourceCulture);
  1227. }
  1228. }
  1229. /// <summary>
  1230. /// 查找类似 Rename 的本地化字符串。
  1231. /// </summary>
  1232. public static string MultipleTabs_Rename {
  1233. get {
  1234. return ResourceManager.GetString("MultipleTabs_Rename", resourceCulture);
  1235. }
  1236. }
  1237. /// <summary>
  1238. /// 查找类似 Please install Microsoft Office to create PDFs from Office files 的本地化字符串。
  1239. /// </summary>
  1240. public static string NoOffice_Warning {
  1241. get {
  1242. return ResourceManager.GetString("NoOffice_Warning", resourceCulture);
  1243. }
  1244. }
  1245. /// <summary>
  1246. /// 查找类似 This file is not password protected. No password needs to be removed. 的本地化字符串。
  1247. /// </summary>
  1248. public static string NoPasswrod_Waring {
  1249. get {
  1250. return ResourceManager.GetString("NoPasswrod_Waring", resourceCulture);
  1251. }
  1252. }
  1253. /// <summary>
  1254. /// 查找类似 Printer busy or error 的本地化字符串。
  1255. /// </summary>
  1256. public static string NoPrinter_Warning {
  1257. get {
  1258. return ResourceManager.GetString("NoPrinter_Warning", resourceCulture);
  1259. }
  1260. }
  1261. /// <summary>
  1262. /// 查找类似 Cancel 的本地化字符串。
  1263. /// </summary>
  1264. public static string OCR_CancelDownload {
  1265. get {
  1266. return ResourceManager.GetString("OCR_CancelDownload", resourceCulture);
  1267. }
  1268. }
  1269. /// <summary>
  1270. /// 查找类似 Download 的本地化字符串。
  1271. /// </summary>
  1272. public static string OCR_Download {
  1273. get {
  1274. return ResourceManager.GetString("OCR_Download", resourceCulture);
  1275. }
  1276. }
  1277. /// <summary>
  1278. /// 查找类似 Download failed 的本地化字符串。
  1279. /// </summary>
  1280. public static string OCR_DownloadError {
  1281. get {
  1282. return ResourceManager.GetString("OCR_DownloadError", resourceCulture);
  1283. }
  1284. }
  1285. /// <summary>
  1286. /// 查找类似 Downloading OCR, please wait... 的本地化字符串。
  1287. /// </summary>
  1288. public static string OCR_Downloading {
  1289. get {
  1290. return ResourceManager.GetString("OCR_Downloading", resourceCulture);
  1291. }
  1292. }
  1293. /// <summary>
  1294. /// 查找类似 Redownload 的本地化字符串。
  1295. /// </summary>
  1296. public static string OCR_DownloadRedownload {
  1297. get {
  1298. return ResourceManager.GetString("OCR_DownloadRedownload", resourceCulture);
  1299. }
  1300. }
  1301. /// <summary>
  1302. /// 查找类似 Please download OCR component first 的本地化字符串。
  1303. /// </summary>
  1304. public static string OCR_PleaseDownload {
  1305. get {
  1306. return ResourceManager.GetString("OCR_PleaseDownload", resourceCulture);
  1307. }
  1308. }
  1309. /// <summary>
  1310. /// 查找类似 Opacity 的本地化字符串。
  1311. /// </summary>
  1312. public static string Opacity_Title {
  1313. get {
  1314. return ResourceManager.GetString("Opacity_Title", resourceCulture);
  1315. }
  1316. }
  1317. /// <summary>
  1318. /// 查找类似 Operation failed, try again please 的本地化字符串。
  1319. /// </summary>
  1320. public static string OpentonFail_Warning {
  1321. get {
  1322. return ResourceManager.GetString("OpentonFail_Warning", resourceCulture);
  1323. }
  1324. }
  1325. /// <summary>
  1326. /// 查找类似 Operation failed, try again please 的本地化字符串。
  1327. /// </summary>
  1328. public static string OperationFailWarning {
  1329. get {
  1330. return ResourceManager.GetString("OperationFailWarning", resourceCulture);
  1331. }
  1332. }
  1333. /// <summary>
  1334. /// 查找类似 Add Item 的本地化字符串。
  1335. /// </summary>
  1336. public static string Outline_Add {
  1337. get {
  1338. return ResourceManager.GetString("Outline_Add", resourceCulture);
  1339. }
  1340. }
  1341. /// <summary>
  1342. /// 查找类似 Add To Higher Level 的本地化字符串。
  1343. /// </summary>
  1344. public static string Outline_AddLevel {
  1345. get {
  1346. return ResourceManager.GetString("Outline_AddLevel", resourceCulture);
  1347. }
  1348. }
  1349. /// <summary>
  1350. /// 查找类似 Add Sub-Item 的本地化字符串。
  1351. /// </summary>
  1352. public static string Outline_AddSub {
  1353. get {
  1354. return ResourceManager.GetString("Outline_AddSub", resourceCulture);
  1355. }
  1356. }
  1357. /// <summary>
  1358. /// 查找类似 Change Destination 的本地化字符串。
  1359. /// </summary>
  1360. public static string Outline_Change {
  1361. get {
  1362. return ResourceManager.GetString("Outline_Change", resourceCulture);
  1363. }
  1364. }
  1365. /// <summary>
  1366. /// 查找类似 Are you sure you want to set the destination as the current location? 的本地化字符串。
  1367. /// </summary>
  1368. public static string Outline_ChangeDest_Tips {
  1369. get {
  1370. return ResourceManager.GetString("Outline_ChangeDest_Tips", resourceCulture);
  1371. }
  1372. }
  1373. /// <summary>
  1374. /// 查找类似 Collapse All 的本地化字符串。
  1375. /// </summary>
  1376. public static string Outline_Collapse {
  1377. get {
  1378. return ResourceManager.GetString("Outline_Collapse", resourceCulture);
  1379. }
  1380. }
  1381. /// <summary>
  1382. /// 查找类似 Delete 的本地化字符串。
  1383. /// </summary>
  1384. public static string Outline_Delete {
  1385. get {
  1386. return ResourceManager.GetString("Outline_Delete", resourceCulture);
  1387. }
  1388. }
  1389. /// <summary>
  1390. /// 查找类似 Are you sure you want to set the destination as the current location? 的本地化字符串。
  1391. /// </summary>
  1392. public static string Outline_DialogContent {
  1393. get {
  1394. return ResourceManager.GetString("Outline_DialogContent", resourceCulture);
  1395. }
  1396. }
  1397. /// <summary>
  1398. /// 查找类似 No 的本地化字符串。
  1399. /// </summary>
  1400. public static string Outline_DialogNO {
  1401. get {
  1402. return ResourceManager.GetString("Outline_DialogNO", resourceCulture);
  1403. }
  1404. }
  1405. /// <summary>
  1406. /// 查找类似 Yes 的本地化字符串。
  1407. /// </summary>
  1408. public static string Outline_DialogYes {
  1409. get {
  1410. return ResourceManager.GetString("Outline_DialogYes", resourceCulture);
  1411. }
  1412. }
  1413. /// <summary>
  1414. /// 查找类似 Demote 的本地化字符串。
  1415. /// </summary>
  1416. public static string Outline_Down {
  1417. get {
  1418. return ResourceManager.GetString("Outline_Down", resourceCulture);
  1419. }
  1420. }
  1421. /// <summary>
  1422. /// 查找类似 Expand All 的本地化字符串。
  1423. /// </summary>
  1424. public static string Outline_Expand {
  1425. get {
  1426. return ResourceManager.GetString("Outline_Expand", resourceCulture);
  1427. }
  1428. }
  1429. /// <summary>
  1430. /// 查找类似 The target page is invalid, please relocate it. 的本地化字符串。
  1431. /// </summary>
  1432. public static string Outline_NoPage {
  1433. get {
  1434. return ResourceManager.GetString("Outline_NoPage", resourceCulture);
  1435. }
  1436. }
  1437. /// <summary>
  1438. /// 查找类似 Remove All Outlines 的本地化字符串。
  1439. /// </summary>
  1440. public static string Outline_RemoveAll {
  1441. get {
  1442. return ResourceManager.GetString("Outline_RemoveAll", resourceCulture);
  1443. }
  1444. }
  1445. /// <summary>
  1446. /// 查找类似 Rename 的本地化字符串。
  1447. /// </summary>
  1448. public static string Outline_Rename {
  1449. get {
  1450. return ResourceManager.GetString("Outline_Rename", resourceCulture);
  1451. }
  1452. }
  1453. /// <summary>
  1454. /// 查找类似 Outline 的本地化字符串。
  1455. /// </summary>
  1456. public static string Outline_Title {
  1457. get {
  1458. return ResourceManager.GetString("Outline_Title", resourceCulture);
  1459. }
  1460. }
  1461. /// <summary>
  1462. /// 查找类似 Promote 的本地化字符串。
  1463. /// </summary>
  1464. public static string Outline_Up {
  1465. get {
  1466. return ResourceManager.GetString("Outline_Up", resourceCulture);
  1467. }
  1468. }
  1469. /// <summary>
  1470. /// 查找类似 This will permanently remove all outlines. Are you sure to continue? 的本地化字符串。
  1471. /// </summary>
  1472. public static string OutlineDeleteTips {
  1473. get {
  1474. return ResourceManager.GetString("OutlineDeleteTips", resourceCulture);
  1475. }
  1476. }
  1477. /// <summary>
  1478. /// 查找类似 #10 Envelope 的本地化字符串。
  1479. /// </summary>
  1480. public static string PageEdit_10Envelope {
  1481. get {
  1482. return ResourceManager.GetString("PageEdit_10Envelope", resourceCulture);
  1483. }
  1484. }
  1485. /// <summary>
  1486. /// 查找类似 Cancel 的本地化字符串。
  1487. /// </summary>
  1488. public static string PageEdit_Cancel {
  1489. get {
  1490. return ResourceManager.GetString("PageEdit_Cancel", resourceCulture);
  1491. }
  1492. }
  1493. /// <summary>
  1494. /// 查找类似 Choukei #3 Envelope 的本地化字符串。
  1495. /// </summary>
  1496. public static string PageEdit_Choukei3 {
  1497. get {
  1498. return ResourceManager.GetString("PageEdit_Choukei3", resourceCulture);
  1499. }
  1500. }
  1501. /// <summary>
  1502. /// 查找类似 Current Page 的本地化字符串。
  1503. /// </summary>
  1504. public static string PageEdit_CurrentPage {
  1505. get {
  1506. return ResourceManager.GetString("PageEdit_CurrentPage", resourceCulture);
  1507. }
  1508. }
  1509. /// <summary>
  1510. /// 查找类似 Customize 的本地化字符串。
  1511. /// </summary>
  1512. public static string PageEdit_Customize {
  1513. get {
  1514. return ResourceManager.GetString("PageEdit_Customize", resourceCulture);
  1515. }
  1516. }
  1517. /// <summary>
  1518. /// 查找类似 Custom Range 的本地化字符串。
  1519. /// </summary>
  1520. public static string PageEdit_CustomRange {
  1521. get {
  1522. return ResourceManager.GetString("PageEdit_CustomRange", resourceCulture);
  1523. }
  1524. }
  1525. /// <summary>
  1526. /// 查找类似 Can&apos;t delete all pages. Please keep at least one page 的本地化字符串。
  1527. /// </summary>
  1528. public static string PageEdit_DeleteAllPage {
  1529. get {
  1530. return ResourceManager.GetString("PageEdit_DeleteAllPage", resourceCulture);
  1531. }
  1532. }
  1533. /// <summary>
  1534. /// 查找类似 DL Envelope 的本地化字符串。
  1535. /// </summary>
  1536. public static string PageEdit_DLEnvelope {
  1537. get {
  1538. return ResourceManager.GetString("PageEdit_DLEnvelope", resourceCulture);
  1539. }
  1540. }
  1541. /// <summary>
  1542. /// 查找类似 Even Pages 的本地化字符串。
  1543. /// </summary>
  1544. public static string PageEdit_EvenPages {
  1545. get {
  1546. return ResourceManager.GetString("PageEdit_EvenPages", resourceCulture);
  1547. }
  1548. }
  1549. /// <summary>
  1550. /// 查找类似 Extract 的本地化字符串。
  1551. /// </summary>
  1552. public static string PageEdit_Extract {
  1553. get {
  1554. return ResourceManager.GetString("PageEdit_Extract", resourceCulture);
  1555. }
  1556. }
  1557. /// <summary>
  1558. /// 查找类似 Delete page after extraction 的本地化字符串。
  1559. /// </summary>
  1560. public static string PageEdit_ExtractDel {
  1561. get {
  1562. return ResourceManager.GetString("PageEdit_ExtractDel", resourceCulture);
  1563. }
  1564. }
  1565. /// <summary>
  1566. /// 查找类似 Extract Page 的本地化字符串。
  1567. /// </summary>
  1568. public static string PageEdit_ExtractPage {
  1569. get {
  1570. return ResourceManager.GetString("PageEdit_ExtractPage", resourceCulture);
  1571. }
  1572. }
  1573. /// <summary>
  1574. /// 查找类似 Extract each page in a separate file 的本地化字符串。
  1575. /// </summary>
  1576. public static string PageEdit_ExtractTip {
  1577. get {
  1578. return ResourceManager.GetString("PageEdit_ExtractTip", resourceCulture);
  1579. }
  1580. }
  1581. /// <summary>
  1582. /// 查找类似 Failed to complete this operation. 的本地化字符串。
  1583. /// </summary>
  1584. public static string PageEdit_Failed {
  1585. get {
  1586. return ResourceManager.GetString("PageEdit_Failed", resourceCulture);
  1587. }
  1588. }
  1589. /// <summary>
  1590. /// 查找类似 Horizontal Page 的本地化字符串。
  1591. /// </summary>
  1592. public static string PageEdit_HorizontalPage {
  1593. get {
  1594. return ResourceManager.GetString("PageEdit_HorizontalPage", resourceCulture);
  1595. }
  1596. }
  1597. /// <summary>
  1598. /// 查找类似 Insert 的本地化字符串。
  1599. /// </summary>
  1600. public static string PageEdit_Insert {
  1601. get {
  1602. return ResourceManager.GetString("PageEdit_Insert", resourceCulture);
  1603. }
  1604. }
  1605. /// <summary>
  1606. /// 查找类似 Insert a Blank Page 的本地化字符串。
  1607. /// </summary>
  1608. public static string PageEdit_InsertaBlankPage {
  1609. get {
  1610. return ResourceManager.GetString("PageEdit_InsertaBlankPage", resourceCulture);
  1611. }
  1612. }
  1613. /// <summary>
  1614. /// 查找类似 Insert a Custom Page 的本地化字符串。
  1615. /// </summary>
  1616. public static string PageEdit_InsertaCustomPage {
  1617. get {
  1618. return ResourceManager.GetString("PageEdit_InsertaCustomPage", resourceCulture);
  1619. }
  1620. }
  1621. /// <summary>
  1622. /// 查找类似 Insert File 的本地化字符串。
  1623. /// </summary>
  1624. public static string PageEdit_InsertFile {
  1625. get {
  1626. return ResourceManager.GetString("PageEdit_InsertFile", resourceCulture);
  1627. }
  1628. }
  1629. /// <summary>
  1630. /// 查找类似 Insert Page 的本地化字符串。
  1631. /// </summary>
  1632. public static string PageEdit_InsertPage {
  1633. get {
  1634. return ResourceManager.GetString("PageEdit_InsertPage", resourceCulture);
  1635. }
  1636. }
  1637. /// <summary>
  1638. /// 查找类似 Copy 的本地化字符串。
  1639. /// </summary>
  1640. public static string PageEdit_MenuCopy {
  1641. get {
  1642. return ResourceManager.GetString("PageEdit_MenuCopy", resourceCulture);
  1643. }
  1644. }
  1645. /// <summary>
  1646. /// 查找类似 Cut 的本地化字符串。
  1647. /// </summary>
  1648. public static string PageEdit_MenuCut {
  1649. get {
  1650. return ResourceManager.GetString("PageEdit_MenuCut", resourceCulture);
  1651. }
  1652. }
  1653. /// <summary>
  1654. /// 查找类似 Delete 的本地化字符串。
  1655. /// </summary>
  1656. public static string PageEdit_MenuDelete {
  1657. get {
  1658. return ResourceManager.GetString("PageEdit_MenuDelete", resourceCulture);
  1659. }
  1660. }
  1661. /// <summary>
  1662. /// 查找类似 Paste 的本地化字符串。
  1663. /// </summary>
  1664. public static string PageEdit_MenuPaste {
  1665. get {
  1666. return ResourceManager.GetString("PageEdit_MenuPaste", resourceCulture);
  1667. }
  1668. }
  1669. /// <summary>
  1670. /// 查找类似 Print 的本地化字符串。
  1671. /// </summary>
  1672. public static string PageEdit_MenuPrint {
  1673. get {
  1674. return ResourceManager.GetString("PageEdit_MenuPrint", resourceCulture);
  1675. }
  1676. }
  1677. /// <summary>
  1678. /// 查找类似 Rotate Clockwise 的本地化字符串。
  1679. /// </summary>
  1680. public static string PageEdit_MenuRotateClockwise {
  1681. get {
  1682. return ResourceManager.GetString("PageEdit_MenuRotateClockwise", resourceCulture);
  1683. }
  1684. }
  1685. /// <summary>
  1686. /// 查找类似 Rotate Counterclockwise 的本地化字符串。
  1687. /// </summary>
  1688. public static string PageEdit_MenuRotateCounterclockwise {
  1689. get {
  1690. return ResourceManager.GetString("PageEdit_MenuRotateCounterclockwise", resourceCulture);
  1691. }
  1692. }
  1693. /// <summary>
  1694. /// 查找类似 Display Page Size 的本地化字符串。
  1695. /// </summary>
  1696. public static string PageEdit_MenuShowPageSize {
  1697. get {
  1698. return ResourceManager.GetString("PageEdit_MenuShowPageSize", resourceCulture);
  1699. }
  1700. }
  1701. /// <summary>
  1702. /// 查找类似 Odd Pages 的本地化字符串。
  1703. /// </summary>
  1704. public static string PageEdit_OddPages {
  1705. get {
  1706. return ResourceManager.GetString("PageEdit_OddPages", resourceCulture);
  1707. }
  1708. }
  1709. /// <summary>
  1710. /// 查找类似 Page Size 的本地化字符串。
  1711. /// </summary>
  1712. public static string PageEdit_PageSize {
  1713. get {
  1714. return ResourceManager.GetString("PageEdit_PageSize", resourceCulture);
  1715. }
  1716. }
  1717. /// <summary>
  1718. /// 查找类似 Replace 的本地化字符串。
  1719. /// </summary>
  1720. public static string PageEdit_Replace {
  1721. get {
  1722. return ResourceManager.GetString("PageEdit_Replace", resourceCulture);
  1723. }
  1724. }
  1725. /// <summary>
  1726. /// 查找类似 Replace Page 的本地化字符串。
  1727. /// </summary>
  1728. public static string PageEdit_ReplacePage {
  1729. get {
  1730. return ResourceManager.GetString("PageEdit_ReplacePage", resourceCulture);
  1731. }
  1732. }
  1733. /// <summary>
  1734. /// 查找类似 Reverse 的本地化字符串。
  1735. /// </summary>
  1736. public static string PageEdit_Reverse {
  1737. get {
  1738. return ResourceManager.GetString("PageEdit_Reverse", resourceCulture);
  1739. }
  1740. }
  1741. /// <summary>
  1742. /// 查找类似 Show original file name in front 的本地化字符串。
  1743. /// </summary>
  1744. public static string PageEdit_ShowOriginalFileNameInFront {
  1745. get {
  1746. return ResourceManager.GetString("PageEdit_ShowOriginalFileNameInFront", resourceCulture);
  1747. }
  1748. }
  1749. /// <summary>
  1750. /// 查找类似 Split 的本地化字符串。
  1751. /// </summary>
  1752. public static string PageEdit_Split {
  1753. get {
  1754. return ResourceManager.GetString("PageEdit_Split", resourceCulture);
  1755. }
  1756. }
  1757. /// <summary>
  1758. /// 查找类似 Split averagely to 的本地化字符串。
  1759. /// </summary>
  1760. public static string PageEdit_SplitAveragelyToXfiles {
  1761. get {
  1762. return ResourceManager.GetString("PageEdit_SplitAveragelyToXfiles", resourceCulture);
  1763. }
  1764. }
  1765. /// <summary>
  1766. /// 查找类似 Split by every 的本地化字符串。
  1767. /// </summary>
  1768. public static string PageEdit_SplitByEvery {
  1769. get {
  1770. return ResourceManager.GetString("PageEdit_SplitByEvery", resourceCulture);
  1771. }
  1772. }
  1773. /// <summary>
  1774. /// 查找类似 Split by page range 的本地化字符串。
  1775. /// </summary>
  1776. public static string PageEdit_SplitByPageRange {
  1777. get {
  1778. return ResourceManager.GetString("PageEdit_SplitByPageRange", resourceCulture);
  1779. }
  1780. }
  1781. /// <summary>
  1782. /// 查找类似 Out of page range 的本地化字符串。
  1783. /// </summary>
  1784. public static string PageEdit_SplitErrorContent {
  1785. get {
  1786. return ResourceManager.GetString("PageEdit_SplitErrorContent", resourceCulture);
  1787. }
  1788. }
  1789. /// <summary>
  1790. /// 查找类似 Page range must between 1 and 的本地化字符串。
  1791. /// </summary>
  1792. public static string PageEdit_SplitErrorTile {
  1793. get {
  1794. return ResourceManager.GetString("PageEdit_SplitErrorTile", resourceCulture);
  1795. }
  1796. }
  1797. /// <summary>
  1798. /// 查找类似 File Name 的本地化字符串。
  1799. /// </summary>
  1800. public static string PageEdit_SplitFileName {
  1801. get {
  1802. return ResourceManager.GetString("PageEdit_SplitFileName", resourceCulture);
  1803. }
  1804. }
  1805. /// <summary>
  1806. /// 查找类似 Label 的本地化字符串。
  1807. /// </summary>
  1808. public static string PageEdit_SplitLabel {
  1809. get {
  1810. return ResourceManager.GetString("PageEdit_SplitLabel", resourceCulture);
  1811. }
  1812. }
  1813. /// <summary>
  1814. /// 查找类似 Split Method 的本地化字符串。
  1815. /// </summary>
  1816. public static string PageEdit_SplitMethod {
  1817. get {
  1818. return ResourceManager.GetString("PageEdit_SplitMethod", resourceCulture);
  1819. }
  1820. }
  1821. /// <summary>
  1822. /// 查找类似 Split Page 的本地化字符串。
  1823. /// </summary>
  1824. public static string PageEdit_SplitPage {
  1825. get {
  1826. return ResourceManager.GetString("PageEdit_SplitPage", resourceCulture);
  1827. }
  1828. }
  1829. /// <summary>
  1830. /// 查找类似 Separator 的本地化字符串。
  1831. /// </summary>
  1832. public static string PageEdit_SplitSeparator {
  1833. get {
  1834. return ResourceManager.GetString("PageEdit_SplitSeparator", resourceCulture);
  1835. }
  1836. }
  1837. /// <summary>
  1838. /// 查找类似 Standard 的本地化字符串。
  1839. /// </summary>
  1840. public static string PageEdit_Standard {
  1841. get {
  1842. return ResourceManager.GetString("PageEdit_Standard", resourceCulture);
  1843. }
  1844. }
  1845. /// <summary>
  1846. /// 查找类似 Super B/A3 (330*483mm) 的本地化字符串。
  1847. /// </summary>
  1848. public static string PageEdit_SuperB {
  1849. get {
  1850. return ResourceManager.GetString("PageEdit_SuperB", resourceCulture);
  1851. }
  1852. }
  1853. /// <summary>
  1854. /// 查找类似 Tabloid Paper 的本地化字符串。
  1855. /// </summary>
  1856. public static string PageEdit_TabloidPaper {
  1857. get {
  1858. return ResourceManager.GetString("PageEdit_TabloidPaper", resourceCulture);
  1859. }
  1860. }
  1861. /// <summary>
  1862. /// 查找类似 Tabloid Paper 的本地化字符串。
  1863. /// </summary>
  1864. public static string PageEdit_TabloidPaperBig {
  1865. get {
  1866. return ResourceManager.GetString("PageEdit_TabloidPaperBig", resourceCulture);
  1867. }
  1868. }
  1869. /// <summary>
  1870. /// 查找类似 U.S. Legal Paper 的本地化字符串。
  1871. /// </summary>
  1872. public static string PageEdit_USLegalPaper {
  1873. get {
  1874. return ResourceManager.GetString("PageEdit_USLegalPaper", resourceCulture);
  1875. }
  1876. }
  1877. /// <summary>
  1878. /// 查找类似 U.S. Letter Paper 的本地化字符串。
  1879. /// </summary>
  1880. public static string PageEdit_USLetterPaper {
  1881. get {
  1882. return ResourceManager.GetString("PageEdit_USLetterPaper", resourceCulture);
  1883. }
  1884. }
  1885. /// <summary>
  1886. /// 查找类似 Vertical Page 的本地化字符串。
  1887. /// </summary>
  1888. public static string PageEdit_VerticalPage {
  1889. get {
  1890. return ResourceManager.GetString("PageEdit_VerticalPage", resourceCulture);
  1891. }
  1892. }
  1893. /// <summary>
  1894. /// 查找类似 files 的本地化字符串。
  1895. /// </summary>
  1896. public static string PageEdit_Xfiles {
  1897. get {
  1898. return ResourceManager.GetString("PageEdit_Xfiles", resourceCulture);
  1899. }
  1900. }
  1901. /// <summary>
  1902. /// 查找类似 page(s) 的本地化字符串。
  1903. /// </summary>
  1904. public static string PageEdit_Xpage {
  1905. get {
  1906. return ResourceManager.GetString("PageEdit_Xpage", resourceCulture);
  1907. }
  1908. }
  1909. /// <summary>
  1910. /// 查找类似 Display Page Size 的本地化字符串。
  1911. /// </summary>
  1912. public static string PageEdite_DisplayPageSize {
  1913. get {
  1914. return ResourceManager.GetString("PageEdite_DisplayPageSize", resourceCulture);
  1915. }
  1916. }
  1917. /// <summary>
  1918. /// 查找类似 Hide Page Size 的本地化字符串。
  1919. /// </summary>
  1920. public static string PageEdite_HidePageSize {
  1921. get {
  1922. return ResourceManager.GetString("PageEdite_HidePageSize", resourceCulture);
  1923. }
  1924. }
  1925. /// <summary>
  1926. /// 查找类似 File name contains invalid characters... 的本地化字符串。
  1927. /// </summary>
  1928. public static string PageEdite_SplitErroContent {
  1929. get {
  1930. return ResourceManager.GetString("PageEdite_SplitErroContent", resourceCulture);
  1931. }
  1932. }
  1933. /// <summary>
  1934. /// 查找类似 Invalid Characters 的本地化字符串。
  1935. /// </summary>
  1936. public static string PageEdite_SplitErroTitle {
  1937. get {
  1938. return ResourceManager.GetString("PageEdite_SplitErroTitle", resourceCulture);
  1939. }
  1940. }
  1941. /// <summary>
  1942. /// 查找类似 Invalid page range or the page number is out of range. Please try again. 的本地化字符串。
  1943. /// </summary>
  1944. public static string PageRangeWarning {
  1945. get {
  1946. return ResourceManager.GetString("PageRangeWarning", resourceCulture);
  1947. }
  1948. }
  1949. /// <summary>
  1950. /// 查找类似 Color 的本地化字符串。
  1951. /// </summary>
  1952. public static string Palette_Color {
  1953. get {
  1954. return ResourceManager.GetString("Palette_Color", resourceCulture);
  1955. }
  1956. }
  1957. /// <summary>
  1958. /// 查找类似 More 的本地化字符串。
  1959. /// </summary>
  1960. public static string Palette_More {
  1961. get {
  1962. return ResourceManager.GetString("Palette_More", resourceCulture);
  1963. }
  1964. }
  1965. /// <summary>
  1966. /// 查找类似 Recently Used 的本地化字符串。
  1967. /// </summary>
  1968. public static string Palette_Recently {
  1969. get {
  1970. return ResourceManager.GetString("Palette_Recently", resourceCulture);
  1971. }
  1972. }
  1973. /// <summary>
  1974. /// 查找类似 Please add your note 的本地化字符串。
  1975. /// </summary>
  1976. public static string PlaceText_AddNote {
  1977. get {
  1978. return ResourceManager.GetString("PlaceText_AddNote", resourceCulture);
  1979. }
  1980. }
  1981. /// <summary>
  1982. /// 查找类似 Powered by ComPDFKit 的本地化字符串。
  1983. /// </summary>
  1984. public static string Powered_by_ComPDFKit {
  1985. get {
  1986. return ResourceManager.GetString("Powered_by_ComPDFKit", resourceCulture);
  1987. }
  1988. }
  1989. /// <summary>
  1990. /// 查找类似 B1 Normal Text (Standard) 的本地化字符串。
  1991. /// </summary>
  1992. public static string PresetTextStyle_B1NormalTextStandard {
  1993. get {
  1994. return ResourceManager.GetString("PresetTextStyle_B1NormalTextStandard", resourceCulture);
  1995. }
  1996. }
  1997. /// <summary>
  1998. /// 查找类似 B2 Normal Text (Small) 的本地化字符串。
  1999. /// </summary>
  2000. public static string PresetTextStyle_B2NormalTextSmall {
  2001. get {
  2002. return ResourceManager.GetString("PresetTextStyle_B2NormalTextSmall", resourceCulture);
  2003. }
  2004. }
  2005. /// <summary>
  2006. /// 查找类似 B3 Description 的本地化字符串。
  2007. /// </summary>
  2008. public static string PresetTextStyle_B3Description {
  2009. get {
  2010. return ResourceManager.GetString("PresetTextStyle_B3Description", resourceCulture);
  2011. }
  2012. }
  2013. /// <summary>
  2014. /// 查找类似 Customize 的本地化字符串。
  2015. /// </summary>
  2016. public static string PresetTextStyle_Customize {
  2017. get {
  2018. return ResourceManager.GetString("PresetTextStyle_Customize", resourceCulture);
  2019. }
  2020. }
  2021. /// <summary>
  2022. /// 查找类似 H1 Title 的本地化字符串。
  2023. /// </summary>
  2024. public static string PresetTextStyle_H1Title {
  2025. get {
  2026. return ResourceManager.GetString("PresetTextStyle_H1Title", resourceCulture);
  2027. }
  2028. }
  2029. /// <summary>
  2030. /// 查找类似 H2 Title 的本地化字符串。
  2031. /// </summary>
  2032. public static string PresetTextStyle_H2Title {
  2033. get {
  2034. return ResourceManager.GetString("PresetTextStyle_H2Title", resourceCulture);
  2035. }
  2036. }
  2037. /// <summary>
  2038. /// 查找类似 H3 Title 的本地化字符串。
  2039. /// </summary>
  2040. public static string PresetTextStyle_H3Title {
  2041. get {
  2042. return ResourceManager.GetString("PresetTextStyle_H3Title", resourceCulture);
  2043. }
  2044. }
  2045. /// <summary>
  2046. /// 查找类似 Black and white 的本地化字符串。
  2047. /// </summary>
  2048. public static string Print_BlackAndWhite {
  2049. get {
  2050. return ResourceManager.GetString("Print_BlackAndWhite", resourceCulture);
  2051. }
  2052. }
  2053. /// <summary>
  2054. /// 查找类似 Copies 的本地化字符串。
  2055. /// </summary>
  2056. public static string Print_Copies {
  2057. get {
  2058. return ResourceManager.GetString("Print_Copies", resourceCulture);
  2059. }
  2060. }
  2061. /// <summary>
  2062. /// 查找类似 Landscape 的本地化字符串。
  2063. /// </summary>
  2064. public static string Print_Landscape {
  2065. get {
  2066. return ResourceManager.GetString("Print_Landscape", resourceCulture);
  2067. }
  2068. }
  2069. /// <summary>
  2070. /// 查找类似 Orientation: 的本地化字符串。
  2071. /// </summary>
  2072. public static string Print_Orientation {
  2073. get {
  2074. return ResourceManager.GetString("Print_Orientation", resourceCulture);
  2075. }
  2076. }
  2077. /// <summary>
  2078. /// 查找类似 Page Settings 的本地化字符串。
  2079. /// </summary>
  2080. public static string Print_PageSettings {
  2081. get {
  2082. return ResourceManager.GetString("Print_PageSettings", resourceCulture);
  2083. }
  2084. }
  2085. /// <summary>
  2086. /// 查找类似 Portrait 的本地化字符串。
  2087. /// </summary>
  2088. public static string Print_Portrait {
  2089. get {
  2090. return ResourceManager.GetString("Print_Portrait", resourceCulture);
  2091. }
  2092. }
  2093. /// <summary>
  2094. /// 查找类似 Print Contents: 的本地化字符串。
  2095. /// </summary>
  2096. public static string Print_PrintContent {
  2097. get {
  2098. return ResourceManager.GetString("Print_PrintContent", resourceCulture);
  2099. }
  2100. }
  2101. /// <summary>
  2102. /// 查找类似 Printer 的本地化字符串。
  2103. /// </summary>
  2104. public static string Print_Printer {
  2105. get {
  2106. return ResourceManager.GetString("Print_Printer", resourceCulture);
  2107. }
  2108. }
  2109. /// <summary>
  2110. /// 查找类似 Print Settings 的本地化字符串。
  2111. /// </summary>
  2112. public static string Print_PrintSettings {
  2113. get {
  2114. return ResourceManager.GetString("Print_PrintSettings", resourceCulture);
  2115. }
  2116. }
  2117. /// <summary>
  2118. /// 查找类似 Reverse pages 的本地化字符串。
  2119. /// </summary>
  2120. public static string Print_ReversePages {
  2121. get {
  2122. return ResourceManager.GetString("Print_ReversePages", resourceCulture);
  2123. }
  2124. }
  2125. /// <summary>
  2126. /// 查找类似 Print 的本地化字符串。
  2127. /// </summary>
  2128. public static string Print_Title {
  2129. get {
  2130. return ResourceManager.GetString("Print_Title", resourceCulture);
  2131. }
  2132. }
  2133. /// <summary>
  2134. /// 查找类似 Document 的本地化字符串。
  2135. /// </summary>
  2136. public static string PrintContents_Document {
  2137. get {
  2138. return ResourceManager.GetString("PrintContents_Document", resourceCulture);
  2139. }
  2140. }
  2141. /// <summary>
  2142. /// 查找类似 Document &amp; Comment 的本地化字符串。
  2143. /// </summary>
  2144. public static string PrintContents_DocumentAndFComment {
  2145. get {
  2146. return ResourceManager.GetString("PrintContents_DocumentAndFComment", resourceCulture);
  2147. }
  2148. }
  2149. /// <summary>
  2150. /// 查找类似 Document &amp; Form 的本地化字符串。
  2151. /// </summary>
  2152. public static string PrintContents_DocumentAndForm {
  2153. get {
  2154. return ResourceManager.GetString("PrintContents_DocumentAndForm", resourceCulture);
  2155. }
  2156. }
  2157. /// <summary>
  2158. /// 查找类似 Document &amp; Comment &amp; Form 的本地化字符串。
  2159. /// </summary>
  2160. public static string PrintContents_DocumentAndMarkups {
  2161. get {
  2162. return ResourceManager.GetString("PrintContents_DocumentAndMarkups", resourceCulture);
  2163. }
  2164. }
  2165. /// <summary>
  2166. /// 查找类似 Do you want to clear all files list in Recent Files? 的本地化字符串。
  2167. /// </summary>
  2168. public static string RecentFiles_AllClearMsg {
  2169. get {
  2170. return ResourceManager.GetString("RecentFiles_AllClearMsg", resourceCulture);
  2171. }
  2172. }
  2173. /// <summary>
  2174. /// 查找类似 Do you want to clear the file list in Recent Files? 的本地化字符串。
  2175. /// </summary>
  2176. public static string RecentFiles_ClearMsg {
  2177. get {
  2178. return ResourceManager.GetString("RecentFiles_ClearMsg", resourceCulture);
  2179. }
  2180. }
  2181. /// <summary>
  2182. /// 查找类似 Do you want to clear the selected files list in Recent Files 的本地化字符串。
  2183. /// </summary>
  2184. public static string RecentFiles_SelectedClearMsg {
  2185. get {
  2186. return ResourceManager.GetString("RecentFiles_SelectedClearMsg", resourceCulture);
  2187. }
  2188. }
  2189. /// <summary>
  2190. /// 查找类似 Are you sure you want to remove the security settings for”{0}” documents? 的本地化字符串。
  2191. /// </summary>
  2192. public static string RemovePassword_Context {
  2193. get {
  2194. return ResourceManager.GetString("RemovePassword_Context", resourceCulture);
  2195. }
  2196. }
  2197. /// <summary>
  2198. /// 查找类似 Cancel 的本地化字符串。
  2199. /// </summary>
  2200. public static string RemovePassword_No {
  2201. get {
  2202. return ResourceManager.GetString("RemovePassword_No", resourceCulture);
  2203. }
  2204. }
  2205. /// <summary>
  2206. /// 查找类似 Remove 的本地化字符串。
  2207. /// </summary>
  2208. public static string RemovePassword_YES {
  2209. get {
  2210. return ResourceManager.GetString("RemovePassword_YES", resourceCulture);
  2211. }
  2212. }
  2213. /// <summary>
  2214. /// 查找类似 Redefine 的本地化字符串。
  2215. /// </summary>
  2216. public static string RighMenuText_Redefine {
  2217. get {
  2218. return ResourceManager.GetString("RighMenuText_Redefine", resourceCulture);
  2219. }
  2220. }
  2221. /// <summary>
  2222. /// 查找类似 Restore Default Settings 的本地化字符串。
  2223. /// </summary>
  2224. public static string RighMenuText_RestoreDefaultSettings {
  2225. get {
  2226. return ResourceManager.GetString("RighMenuText_RestoreDefaultSettings", resourceCulture);
  2227. }
  2228. }
  2229. /// <summary>
  2230. /// 查找类似 Sample 的本地化字符串。
  2231. /// </summary>
  2232. public static string Sample {
  2233. get {
  2234. return ResourceManager.GetString("Sample", resourceCulture);
  2235. }
  2236. }
  2237. /// <summary>
  2238. /// 查找类似 Open Failed
  2239. ///Failed to load environment.
  2240. ///Some functions may not work, please restart or re-download PDF Reader Pro from our official website. 的本地化字符串。
  2241. /// </summary>
  2242. public static string SDKLoadingFailed {
  2243. get {
  2244. return ResourceManager.GetString("SDKLoadingFailed", resourceCulture);
  2245. }
  2246. }
  2247. /// <summary>
  2248. /// 查找类似 Remove Passwords 的本地化字符串。
  2249. /// </summary>
  2250. public static string Security_RemovePassword {
  2251. get {
  2252. return ResourceManager.GetString("Security_RemovePassword", resourceCulture);
  2253. }
  2254. }
  2255. /// <summary>
  2256. /// 查找类似 Set Passwords 的本地化字符串。
  2257. /// </summary>
  2258. public static string Security_SetPassword {
  2259. get {
  2260. return ResourceManager.GetString("Security_SetPassword", resourceCulture);
  2261. }
  2262. }
  2263. /// <summary>
  2264. /// 查找类似 Cancel 的本地化字符串。
  2265. /// </summary>
  2266. public static string SetPassword_No {
  2267. get {
  2268. return ResourceManager.GetString("SetPassword_No", resourceCulture);
  2269. }
  2270. }
  2271. /// <summary>
  2272. /// 查找类似 Open Password 的本地化字符串。
  2273. /// </summary>
  2274. public static string SetPassword_OpenEmptyText {
  2275. get {
  2276. return ResourceManager.GetString("SetPassword_OpenEmptyText", resourceCulture);
  2277. }
  2278. }
  2279. /// <summary>
  2280. /// 查找类似 Document Open Password 的本地化字符串。
  2281. /// </summary>
  2282. public static string SetPassword_OpenTitle {
  2283. get {
  2284. return ResourceManager.GetString("SetPassword_OpenTitle", resourceCulture);
  2285. }
  2286. }
  2287. /// <summary>
  2288. /// 查找类似 Permission Password 的本地化字符串。
  2289. /// </summary>
  2290. public static string SetPassword_PermissionEmptyText {
  2291. get {
  2292. return ResourceManager.GetString("SetPassword_PermissionEmptyText", resourceCulture);
  2293. }
  2294. }
  2295. /// <summary>
  2296. /// 查找类似 Document Permission Password 的本地化字符串。
  2297. /// </summary>
  2298. public static string SetPassword_PermissionTitle {
  2299. get {
  2300. return ResourceManager.GetString("SetPassword_PermissionTitle", resourceCulture);
  2301. }
  2302. }
  2303. /// <summary>
  2304. /// 查找类似 Restrict content copying 的本地化字符串。
  2305. /// </summary>
  2306. public static string SetPassword_RestrictCopying {
  2307. get {
  2308. return ResourceManager.GetString("SetPassword_RestrictCopying", resourceCulture);
  2309. }
  2310. }
  2311. /// <summary>
  2312. /// 查找类似 Restrict document printing 的本地化字符串。
  2313. /// </summary>
  2314. public static string SetPassword_RestrictPrinting {
  2315. get {
  2316. return ResourceManager.GetString("SetPassword_RestrictPrinting", resourceCulture);
  2317. }
  2318. }
  2319. /// <summary>
  2320. /// 查找类似 Set Passwords 的本地化字符串。
  2321. /// </summary>
  2322. public static string SetPassword_Title {
  2323. get {
  2324. return ResourceManager.GetString("SetPassword_Title", resourceCulture);
  2325. }
  2326. }
  2327. /// <summary>
  2328. /// 查找类似 Encrypt 的本地化字符串。
  2329. /// </summary>
  2330. public static string SetPassword_YES {
  2331. get {
  2332. return ResourceManager.GetString("SetPassword_YES", resourceCulture);
  2333. }
  2334. }
  2335. /// <summary>
  2336. /// 查找类似 Annotation 的本地化字符串。
  2337. /// </summary>
  2338. public static string Settings_Annotation {
  2339. get {
  2340. return ResourceManager.GetString("Settings_Annotation", resourceCulture);
  2341. }
  2342. }
  2343. /// <summary>
  2344. /// 查找类似 Annotation Default Color 的本地化字符串。
  2345. /// </summary>
  2346. public static string Settings_Annotation_Annotation {
  2347. get {
  2348. return ResourceManager.GetString("Settings_Annotation_Annotation", resourceCulture);
  2349. }
  2350. }
  2351. /// <summary>
  2352. /// 查找类似 Annotation Default Font 的本地化字符串。
  2353. /// </summary>
  2354. public static string Settings_Annotation_Annotation_Font {
  2355. get {
  2356. return ResourceManager.GetString("Settings_Annotation_Annotation_Font", resourceCulture);
  2357. }
  2358. }
  2359. /// <summary>
  2360. /// 查找类似 Circle Border: 的本地化字符串。
  2361. /// </summary>
  2362. public static string Settings_Annotation_CircleBorder {
  2363. get {
  2364. return ResourceManager.GetString("Settings_Annotation_CircleBorder", resourceCulture);
  2365. }
  2366. }
  2367. /// <summary>
  2368. /// 查找类似 Circle Fill: 的本地化字符串。
  2369. /// </summary>
  2370. public static string Settings_Annotation_CircleFill {
  2371. get {
  2372. return ResourceManager.GetString("Settings_Annotation_CircleFill", resourceCulture);
  2373. }
  2374. }
  2375. /// <summary>
  2376. /// 查找类似 Freehand: 的本地化字符串。
  2377. /// </summary>
  2378. public static string Settings_Annotation_Freehand {
  2379. get {
  2380. return ResourceManager.GetString("Settings_Annotation_Freehand", resourceCulture);
  2381. }
  2382. }
  2383. /// <summary>
  2384. /// 查找类似 Highlight: 的本地化字符串。
  2385. /// </summary>
  2386. public static string Settings_Annotation_Highlight {
  2387. get {
  2388. return ResourceManager.GetString("Settings_Annotation_Highlight", resourceCulture);
  2389. }
  2390. }
  2391. /// <summary>
  2392. /// 查找类似 Line: 的本地化字符串。
  2393. /// </summary>
  2394. public static string Settings_Annotation_Line {
  2395. get {
  2396. return ResourceManager.GetString("Settings_Annotation_Line", resourceCulture);
  2397. }
  2398. }
  2399. /// <summary>
  2400. /// 查找类似 Rectangle Border: 的本地化字符串。
  2401. /// </summary>
  2402. public static string Settings_Annotation_RectangleBorder {
  2403. get {
  2404. return ResourceManager.GetString("Settings_Annotation_RectangleBorder", resourceCulture);
  2405. }
  2406. }
  2407. /// <summary>
  2408. /// 查找类似 Rectangle Fill: 的本地化字符串。
  2409. /// </summary>
  2410. public static string Settings_Annotation_RectangleFill {
  2411. get {
  2412. return ResourceManager.GetString("Settings_Annotation_RectangleFill", resourceCulture);
  2413. }
  2414. }
  2415. /// <summary>
  2416. /// 查找类似 Sticky Note: 的本地化字符串。
  2417. /// </summary>
  2418. public static string Settings_Annotation_StickyNote {
  2419. get {
  2420. return ResourceManager.GetString("Settings_Annotation_StickyNote", resourceCulture);
  2421. }
  2422. }
  2423. /// <summary>
  2424. /// 查找类似 Strikethrough: 的本地化字符串。
  2425. /// </summary>
  2426. public static string Settings_Annotation_Strikethrough {
  2427. get {
  2428. return ResourceManager.GetString("Settings_Annotation_Strikethrough", resourceCulture);
  2429. }
  2430. }
  2431. /// <summary>
  2432. /// 查找类似 Text: 的本地化字符串。
  2433. /// </summary>
  2434. public static string Settings_Annotation_Text {
  2435. get {
  2436. return ResourceManager.GetString("Settings_Annotation_Text", resourceCulture);
  2437. }
  2438. }
  2439. /// <summary>
  2440. /// 查找类似 Text: 的本地化字符串。
  2441. /// </summary>
  2442. public static string Settings_Annotation_TextBox {
  2443. get {
  2444. return ResourceManager.GetString("Settings_Annotation_TextBox", resourceCulture);
  2445. }
  2446. }
  2447. /// <summary>
  2448. /// 查找类似 Underline: 的本地化字符串。
  2449. /// </summary>
  2450. public static string Settings_Annotation_Underline {
  2451. get {
  2452. return ResourceManager.GetString("Settings_Annotation_Underline", resourceCulture);
  2453. }
  2454. }
  2455. /// <summary>
  2456. /// 查找类似 Display 的本地化字符串。
  2457. /// </summary>
  2458. public static string Settings_Display {
  2459. get {
  2460. return ResourceManager.GetString("Settings_Display", resourceCulture);
  2461. }
  2462. }
  2463. /// <summary>
  2464. /// 查找类似 Actual size 的本地化字符串。
  2465. /// </summary>
  2466. public static string Settings_Display_Actualsize {
  2467. get {
  2468. return ResourceManager.GetString("Settings_Display_Actualsize", resourceCulture);
  2469. }
  2470. }
  2471. /// <summary>
  2472. /// 查找类似 Auto expand 的本地化字符串。
  2473. /// </summary>
  2474. public static string Settings_Display_Auto {
  2475. get {
  2476. return ResourceManager.GetString("Settings_Display_Auto", resourceCulture);
  2477. }
  2478. }
  2479. /// <summary>
  2480. /// 查找类似 Background Color 的本地化字符串。
  2481. /// </summary>
  2482. public static string Settings_Display_Background {
  2483. get {
  2484. return ResourceManager.GetString("Settings_Display_Background", resourceCulture);
  2485. }
  2486. }
  2487. /// <summary>
  2488. /// 查找类似 Book mode 的本地化字符串。
  2489. /// </summary>
  2490. public static string Settings_Display_Bookmode {
  2491. get {
  2492. return ResourceManager.GetString("Settings_Display_Bookmode", resourceCulture);
  2493. }
  2494. }
  2495. /// <summary>
  2496. /// 查找类似 Book mode continuous 的本地化字符串。
  2497. /// </summary>
  2498. public static string Settings_Display_Bookmodecon {
  2499. get {
  2500. return ResourceManager.GetString("Settings_Display_Bookmodecon", resourceCulture);
  2501. }
  2502. }
  2503. /// <summary>
  2504. /// 查找类似 Collapse when opening a file 的本地化字符串。
  2505. /// </summary>
  2506. public static string Settings_Display_Collapse {
  2507. get {
  2508. return ResourceManager.GetString("Settings_Display_Collapse", resourceCulture);
  2509. }
  2510. }
  2511. /// <summary>
  2512. /// 查找类似 Default Display 的本地化字符串。
  2513. /// </summary>
  2514. public static string Settings_Display_Default {
  2515. get {
  2516. return ResourceManager.GetString("Settings_Display_Default", resourceCulture);
  2517. }
  2518. }
  2519. /// <summary>
  2520. /// 查找类似 Default View 的本地化字符串。
  2521. /// </summary>
  2522. public static string Settings_Display_DefaultV {
  2523. get {
  2524. return ResourceManager.GetString("Settings_Display_DefaultV", resourceCulture);
  2525. }
  2526. }
  2527. /// <summary>
  2528. /// 查找类似 Display Mode 的本地化字符串。
  2529. /// </summary>
  2530. public static string Settings_Display_Display {
  2531. get {
  2532. return ResourceManager.GetString("Settings_Display_Display", resourceCulture);
  2533. }
  2534. }
  2535. /// <summary>
  2536. /// 查找类似 Fit page 的本地化字符串。
  2537. /// </summary>
  2538. public static string Settings_Display_Fitpage {
  2539. get {
  2540. return ResourceManager.GetString("Settings_Display_Fitpage", resourceCulture);
  2541. }
  2542. }
  2543. /// <summary>
  2544. /// 查找类似 Fit width 的本地化字符串。
  2545. /// </summary>
  2546. public static string Settings_Display_Fitwidth {
  2547. get {
  2548. return ResourceManager.GetString("Settings_Display_Fitwidth", resourceCulture);
  2549. }
  2550. }
  2551. /// <summary>
  2552. /// 查找类似 Full Screen 的本地化字符串。
  2553. /// </summary>
  2554. public static string Settings_Display_Full {
  2555. get {
  2556. return ResourceManager.GetString("Settings_Display_Full", resourceCulture);
  2557. }
  2558. }
  2559. /// <summary>
  2560. /// 查找类似 Highlight link 的本地化字符串。
  2561. /// </summary>
  2562. public static string Settings_Display_Highlight {
  2563. get {
  2564. return ResourceManager.GetString("Settings_Display_Highlight", resourceCulture);
  2565. }
  2566. }
  2567. /// <summary>
  2568. /// 查找类似 Left Panel 的本地化字符串。
  2569. /// </summary>
  2570. public static string Settings_Display_LeftPanel {
  2571. get {
  2572. return ResourceManager.GetString("Settings_Display_LeftPanel", resourceCulture);
  2573. }
  2574. }
  2575. /// <summary>
  2576. /// 查找类似 Manually expand 的本地化字符串。
  2577. /// </summary>
  2578. public static string Settings_Display_Manually {
  2579. get {
  2580. return ResourceManager.GetString("Settings_Display_Manually", resourceCulture);
  2581. }
  2582. }
  2583. /// <summary>
  2584. /// 查找类似 Normal 的本地化字符串。
  2585. /// </summary>
  2586. public static string Settings_Display_Normal {
  2587. get {
  2588. return ResourceManager.GetString("Settings_Display_Normal", resourceCulture);
  2589. }
  2590. }
  2591. /// <summary>
  2592. /// 查找类似 Page Display 的本地化字符串。
  2593. /// </summary>
  2594. public static string Settings_Display_Page {
  2595. get {
  2596. return ResourceManager.GetString("Settings_Display_Page", resourceCulture);
  2597. }
  2598. }
  2599. /// <summary>
  2600. /// 查找类似 Properties Panel 的本地化字符串。
  2601. /// </summary>
  2602. public static string Settings_Display_Properties {
  2603. get {
  2604. return ResourceManager.GetString("Settings_Display_Properties", resourceCulture);
  2605. }
  2606. }
  2607. /// <summary>
  2608. /// 查找类似 Remember last option when launching APP 的本地化字符串。
  2609. /// </summary>
  2610. public static string Settings_Display_Remember {
  2611. get {
  2612. return ResourceManager.GetString("Settings_Display_Remember", resourceCulture);
  2613. }
  2614. }
  2615. /// <summary>
  2616. /// 查找类似 Show outline list by default when outlines are available 的本地化字符串。
  2617. /// </summary>
  2618. public static string Settings_Display_Show {
  2619. get {
  2620. return ResourceManager.GetString("Settings_Display_Show", resourceCulture);
  2621. }
  2622. }
  2623. /// <summary>
  2624. /// 查找类似 Single page 的本地化字符串。
  2625. /// </summary>
  2626. public static string Settings_Display_Singlepage {
  2627. get {
  2628. return ResourceManager.GetString("Settings_Display_Singlepage", resourceCulture);
  2629. }
  2630. }
  2631. /// <summary>
  2632. /// 查找类似 Single page continuous 的本地化字符串。
  2633. /// </summary>
  2634. public static string Settings_Display_Singlepagecon {
  2635. get {
  2636. return ResourceManager.GetString("Settings_Display_Singlepagecon", resourceCulture);
  2637. }
  2638. }
  2639. /// <summary>
  2640. /// 查找类似 Two page 的本地化字符串。
  2641. /// </summary>
  2642. public static string Settings_Display_Twopage {
  2643. get {
  2644. return ResourceManager.GetString("Settings_Display_Twopage", resourceCulture);
  2645. }
  2646. }
  2647. /// <summary>
  2648. /// 查找类似 Two page continuous 的本地化字符串。
  2649. /// </summary>
  2650. public static string Settings_Display_Twopagecon {
  2651. get {
  2652. return ResourceManager.GetString("Settings_Display_Twopagecon", resourceCulture);
  2653. }
  2654. }
  2655. /// <summary>
  2656. /// 查找类似 Zoom Scale 的本地化字符串。
  2657. /// </summary>
  2658. public static string Settings_Display_Zoom {
  2659. get {
  2660. return ResourceManager.GetString("Settings_Display_Zoom", resourceCulture);
  2661. }
  2662. }
  2663. /// <summary>
  2664. /// 查找类似 General 的本地化字符串。
  2665. /// </summary>
  2666. public static string Settings_General {
  2667. get {
  2668. return ResourceManager.GetString("Settings_General", resourceCulture);
  2669. }
  2670. }
  2671. /// <summary>
  2672. /// 查找类似 A &quot;Save/No Save&quot; pop-up prompt 的本地化字符串。
  2673. /// </summary>
  2674. public static string Settings_General_ASave {
  2675. get {
  2676. return ResourceManager.GetString("Settings_General_ASave", resourceCulture);
  2677. }
  2678. }
  2679. /// <summary>
  2680. /// 查找类似 Author: 的本地化字符串。
  2681. /// </summary>
  2682. public static string Settings_General_Author {
  2683. get {
  2684. return ResourceManager.GetString("Settings_General_Author", resourceCulture);
  2685. }
  2686. }
  2687. /// <summary>
  2688. /// 查找类似 Auto-save frequency 的本地化字符串。
  2689. /// </summary>
  2690. public static string Settings_General_Auto {
  2691. get {
  2692. return ResourceManager.GetString("Settings_General_Auto", resourceCulture);
  2693. }
  2694. }
  2695. /// <summary>
  2696. /// 查找类似 Close document: 的本地化字符串。
  2697. /// </summary>
  2698. public static string Settings_General_Close {
  2699. get {
  2700. return ResourceManager.GetString("Settings_General_Close", resourceCulture);
  2701. }
  2702. }
  2703. /// <summary>
  2704. /// 查找类似 Documents 的本地化字符串。
  2705. /// </summary>
  2706. public static string Settings_General_Documents {
  2707. get {
  2708. return ResourceManager.GetString("Settings_General_Documents", resourceCulture);
  2709. }
  2710. }
  2711. /// <summary>
  2712. /// 查找类似 Maximum number of recent documents: 的本地化字符串。
  2713. /// </summary>
  2714. public static string Settings_General_Maximum {
  2715. get {
  2716. return ResourceManager.GetString("Settings_General_Maximum", resourceCulture);
  2717. }
  2718. }
  2719. /// <summary>
  2720. /// 查找类似 Open the last file by default at startup 的本地化字符串。
  2721. /// </summary>
  2722. public static string Settings_General_Open {
  2723. get {
  2724. return ResourceManager.GetString("Settings_General_Open", resourceCulture);
  2725. }
  2726. }
  2727. /// <summary>
  2728. /// 查找类似 Restore the last view setting when opening a file 的本地化字符串。
  2729. /// </summary>
  2730. public static string Settings_General_Restore {
  2731. get {
  2732. return ResourceManager.GetString("Settings_General_Restore", resourceCulture);
  2733. }
  2734. }
  2735. /// <summary>
  2736. /// 查找类似 Save directly without prompt 的本地化字符串。
  2737. /// </summary>
  2738. public static string Settings_General_Savedirectly {
  2739. get {
  2740. return ResourceManager.GetString("Settings_General_Savedirectly", resourceCulture);
  2741. }
  2742. }
  2743. /// <summary>
  2744. /// 查找类似 Preferences 的本地化字符串。
  2745. /// </summary>
  2746. public static string Settings_Preferences {
  2747. get {
  2748. return ResourceManager.GetString("Settings_Preferences", resourceCulture);
  2749. }
  2750. }
  2751. /// <summary>
  2752. /// 查找类似 Reset 的本地化字符串。
  2753. /// </summary>
  2754. public static string Settings_Reset {
  2755. get {
  2756. return ResourceManager.GetString("Settings_Reset", resourceCulture);
  2757. }
  2758. }
  2759. /// <summary>
  2760. /// 查找类似 Reset All 的本地化字符串。
  2761. /// </summary>
  2762. public static string Settings_ResetAll {
  2763. get {
  2764. return ResourceManager.GetString("Settings_ResetAll", resourceCulture);
  2765. }
  2766. }
  2767. /// <summary>
  2768. /// 查找类似 Please make sure Outlook is installed. 的本地化字符串。
  2769. /// </summary>
  2770. public static string Share_NoOutLookWarning {
  2771. get {
  2772. return ResourceManager.GetString("Share_NoOutLookWarning", resourceCulture);
  2773. }
  2774. }
  2775. /// <summary>
  2776. /// 查找类似 Clear 的本地化字符串。
  2777. /// </summary>
  2778. public static string Signatur_DialogClear {
  2779. get {
  2780. return ResourceManager.GetString("Signatur_DialogClear", resourceCulture);
  2781. }
  2782. }
  2783. /// <summary>
  2784. /// 查找类似 Trackpad 的本地化字符串。
  2785. /// </summary>
  2786. public static string Signatur_DialogDraw {
  2787. get {
  2788. return ResourceManager.GetString("Signatur_DialogDraw", resourceCulture);
  2789. }
  2790. }
  2791. /// <summary>
  2792. /// 查找类似 Sign here 的本地化字符串。
  2793. /// </summary>
  2794. public static string Signatur_DialogDrawHint {
  2795. get {
  2796. return ResourceManager.GetString("Signatur_DialogDrawHint", resourceCulture);
  2797. }
  2798. }
  2799. /// <summary>
  2800. /// 查找类似 Cancel 的本地化字符串。
  2801. /// </summary>
  2802. public static string Signatur_DialogNo {
  2803. get {
  2804. return ResourceManager.GetString("Signatur_DialogNo", resourceCulture);
  2805. }
  2806. }
  2807. /// <summary>
  2808. /// 查找类似 Image 的本地化字符串。
  2809. /// </summary>
  2810. public static string Signatur_DialogPicture {
  2811. get {
  2812. return ResourceManager.GetString("Signatur_DialogPicture", resourceCulture);
  2813. }
  2814. }
  2815. /// <summary>
  2816. /// 查找类似 Select image file 的本地化字符串。
  2817. /// </summary>
  2818. public static string Signatur_DialogPictureHint {
  2819. get {
  2820. return ResourceManager.GetString("Signatur_DialogPictureHint", resourceCulture);
  2821. }
  2822. }
  2823. /// <summary>
  2824. /// 查找类似 Remove Background 的本地化字符串。
  2825. /// </summary>
  2826. public static string Signatur_DialogPictureReBkg {
  2827. get {
  2828. return ResourceManager.GetString("Signatur_DialogPictureReBkg", resourceCulture);
  2829. }
  2830. }
  2831. /// <summary>
  2832. /// 查找类似 Remove white background from images 的本地化字符串。
  2833. /// </summary>
  2834. public static string Signatur_DialogPictureReBkgHint {
  2835. get {
  2836. return ResourceManager.GetString("Signatur_DialogPictureReBkgHint", resourceCulture);
  2837. }
  2838. }
  2839. /// <summary>
  2840. /// 查找类似 Reselect 的本地化字符串。
  2841. /// </summary>
  2842. public static string Signatur_DialogPictureReselect {
  2843. get {
  2844. return ResourceManager.GetString("Signatur_DialogPictureReselect", resourceCulture);
  2845. }
  2846. }
  2847. /// <summary>
  2848. /// 查找类似 Keyboard 的本地化字符串。
  2849. /// </summary>
  2850. public static string Signatur_DialogText {
  2851. get {
  2852. return ResourceManager.GetString("Signatur_DialogText", resourceCulture);
  2853. }
  2854. }
  2855. /// <summary>
  2856. /// 查找类似 Enter your signature here 的本地化字符串。
  2857. /// </summary>
  2858. public static string Signatur_DialogTextHint {
  2859. get {
  2860. return ResourceManager.GetString("Signatur_DialogTextHint", resourceCulture);
  2861. }
  2862. }
  2863. /// <summary>
  2864. /// 查找类似 Create New Signature 的本地化字符串。
  2865. /// </summary>
  2866. public static string Signatur_DialogTitle {
  2867. get {
  2868. return ResourceManager.GetString("Signatur_DialogTitle", resourceCulture);
  2869. }
  2870. }
  2871. /// <summary>
  2872. /// 查找类似 Apply 的本地化字符串。
  2873. /// </summary>
  2874. public static string Signatur_DialogYes {
  2875. get {
  2876. return ResourceManager.GetString("Signatur_DialogYes", resourceCulture);
  2877. }
  2878. }
  2879. /// <summary>
  2880. /// 查找类似 Signature 的本地化字符串。
  2881. /// </summary>
  2882. public static string Signatur_Title {
  2883. get {
  2884. return ResourceManager.GetString("Signatur_Title", resourceCulture);
  2885. }
  2886. }
  2887. /// <summary>
  2888. /// 查找类似 Do you want to delete all signatures? 的本地化字符串。
  2889. /// </summary>
  2890. public static string Signature_deleteAllWarning {
  2891. get {
  2892. return ResourceManager.GetString("Signature_deleteAllWarning", resourceCulture);
  2893. }
  2894. }
  2895. /// <summary>
  2896. /// 查找类似 Stamp 的本地化字符串。
  2897. /// </summary>
  2898. public static string Stamp_Title {
  2899. get {
  2900. return ResourceManager.GetString("Stamp_Title", resourceCulture);
  2901. }
  2902. }
  2903. /// <summary>
  2904. /// 查找类似 Strikethrough 的本地化字符串。
  2905. /// </summary>
  2906. public static string Strikethrough_Title {
  2907. get {
  2908. return ResourceManager.GetString("Strikethrough_Title", resourceCulture);
  2909. }
  2910. }
  2911. /// <summary>
  2912. /// 查找类似 You cannot undo this action. Are you sure you want to delete this page permanently? 的本地化字符串。
  2913. /// </summary>
  2914. public static string T_DeleteLook {
  2915. get {
  2916. return ResourceManager.GetString("T_DeleteLook", resourceCulture);
  2917. }
  2918. }
  2919. /// <summary>
  2920. /// 查找类似 Thumbnail 的本地化字符串。
  2921. /// </summary>
  2922. public static string Thumbnails_Title {
  2923. get {
  2924. return ResourceManager.GetString("Thumbnails_Title", resourceCulture);
  2925. }
  2926. }
  2927. /// <summary>
  2928. /// 查找类似 Please turn the stack over, and click &quot;OK&quot; to print the second side. 的本地化字符串。
  2929. /// </summary>
  2930. public static string Tip_ReversePage {
  2931. get {
  2932. return ResourceManager.GetString("Tip_ReversePage", resourceCulture);
  2933. }
  2934. }
  2935. /// <summary>
  2936. /// 查找类似 Enter Password 的本地化字符串。
  2937. /// </summary>
  2938. public static string TipContent_ReleaseRestricted {
  2939. get {
  2940. return ResourceManager.GetString("TipContent_ReleaseRestricted", resourceCulture);
  2941. }
  2942. }
  2943. /// <summary>
  2944. /// 查找类似 The file is protected with a password. 的本地化字符串。
  2945. /// </summary>
  2946. public static string TipContent_RestrictedContent {
  2947. get {
  2948. return ResourceManager.GetString("TipContent_RestrictedContent", resourceCulture);
  2949. }
  2950. }
  2951. /// <summary>
  2952. /// 查找类似 File Restricted 的本地化字符串。
  2953. /// </summary>
  2954. public static string TipContent_RestrictedTitle {
  2955. get {
  2956. return ResourceManager.GetString("TipContent_RestrictedTitle", resourceCulture);
  2957. }
  2958. }
  2959. /// <summary>
  2960. /// 查找类似 Compress 的本地化字符串。
  2961. /// </summary>
  2962. public static string ToolsBar_Compress {
  2963. get {
  2964. return ResourceManager.GetString("ToolsBar_Compress", resourceCulture);
  2965. }
  2966. }
  2967. /// <summary>
  2968. /// 查找类似 Crop 的本地化字符串。
  2969. /// </summary>
  2970. public static string ToolsBar_Crop {
  2971. get {
  2972. return ResourceManager.GetString("ToolsBar_Crop", resourceCulture);
  2973. }
  2974. }
  2975. /// <summary>
  2976. /// 查找类似 Merge 的本地化字符串。
  2977. /// </summary>
  2978. public static string ToolsBar_Merge {
  2979. get {
  2980. return ResourceManager.GetString("ToolsBar_Merge", resourceCulture);
  2981. }
  2982. }
  2983. /// <summary>
  2984. /// 查找类似 Security 的本地化字符串。
  2985. /// </summary>
  2986. public static string ToolsBar_Security {
  2987. get {
  2988. return ResourceManager.GetString("ToolsBar_Security", resourceCulture);
  2989. }
  2990. }
  2991. /// <summary>
  2992. /// 查找类似 Content Selection 的本地化字符串。
  2993. /// </summary>
  2994. public static string ToolTipsAonnot_ContentSelection {
  2995. get {
  2996. return ResourceManager.GetString("ToolTipsAonnot_ContentSelection", resourceCulture);
  2997. }
  2998. }
  2999. /// <summary>
  3000. /// 查找类似 Draw freely as you do with a pen 的本地化字符串。
  3001. /// </summary>
  3002. public static string ToolTipsAonnot_Freehand {
  3003. get {
  3004. return ResourceManager.GetString("ToolTipsAonnot_Freehand", resourceCulture);
  3005. }
  3006. }
  3007. /// <summary>
  3008. /// 查找类似 HighLight(Ctrl+Alt+H) 的本地化字符串。
  3009. /// </summary>
  3010. public static string ToolTipsAonnot_HighLight {
  3011. get {
  3012. return ResourceManager.GetString("ToolTipsAonnot_HighLight", resourceCulture);
  3013. }
  3014. }
  3015. /// <summary>
  3016. /// 查找类似 Link 的本地化字符串。
  3017. /// </summary>
  3018. public static string ToolTipsAonnot_Link {
  3019. get {
  3020. return ResourceManager.GetString("ToolTipsAonnot_Link", resourceCulture);
  3021. }
  3022. }
  3023. /// <summary>
  3024. /// 查找类似 Magnify Tool 的本地化字符串。
  3025. /// </summary>
  3026. public static string ToolTipsAonnot_MagnifyTool {
  3027. get {
  3028. return ResourceManager.GetString("ToolTipsAonnot_MagnifyTool", resourceCulture);
  3029. }
  3030. }
  3031. /// <summary>
  3032. /// 查找类似 Scroll Tool 的本地化字符串。
  3033. /// </summary>
  3034. public static string ToolTipsAonnot_ScrollTool {
  3035. get {
  3036. return ResourceManager.GetString("ToolTipsAonnot_ScrollTool", resourceCulture);
  3037. }
  3038. }
  3039. /// <summary>
  3040. /// 查找类似 Hold shift to draw square/circle/straight arrow/line 的本地化字符串。
  3041. /// </summary>
  3042. public static string ToolTipsAonnot_Sharps {
  3043. get {
  3044. return ResourceManager.GetString("ToolTipsAonnot_Sharps", resourceCulture);
  3045. }
  3046. }
  3047. /// <summary>
  3048. /// 查找类似 Hide Annotation 的本地化字符串。
  3049. /// </summary>
  3050. public static string ToolTipsAonnot_ShowAnnot {
  3051. get {
  3052. return ResourceManager.GetString("ToolTipsAonnot_ShowAnnot", resourceCulture);
  3053. }
  3054. }
  3055. /// <summary>
  3056. /// 查找类似 Add a handwritten signature or create a signature via the trackpad 的本地化字符串。
  3057. /// </summary>
  3058. public static string ToolTipsAonnot_Signature {
  3059. get {
  3060. return ResourceManager.GetString("ToolTipsAonnot_Signature", resourceCulture);
  3061. }
  3062. }
  3063. /// <summary>
  3064. /// 查找类似 Squiggly 的本地化字符串。
  3065. /// </summary>
  3066. public static string ToolTipsAonnot_Squiggly {
  3067. get {
  3068. return ResourceManager.GetString("ToolTipsAonnot_Squiggly", resourceCulture);
  3069. }
  3070. }
  3071. /// <summary>
  3072. /// 查找类似 Add Stamp 的本地化字符串。
  3073. /// </summary>
  3074. public static string ToolTipsAonnot_Stamp {
  3075. get {
  3076. return ResourceManager.GetString("ToolTipsAonnot_Stamp", resourceCulture);
  3077. }
  3078. }
  3079. /// <summary>
  3080. /// 查找类似 Sticky Note(Ctrl+Alt+N) 的本地化字符串。
  3081. /// </summary>
  3082. public static string ToolTipsAonnot_StickyNote {
  3083. get {
  3084. return ResourceManager.GetString("ToolTipsAonnot_StickyNote", resourceCulture);
  3085. }
  3086. }
  3087. /// <summary>
  3088. /// 查找类似 Strikethrough(Ctrl+Alt+S) 的本地化字符串。
  3089. /// </summary>
  3090. public static string ToolTipsAonnot_Strikeout {
  3091. get {
  3092. return ResourceManager.GetString("ToolTipsAonnot_Strikeout", resourceCulture);
  3093. }
  3094. }
  3095. /// <summary>
  3096. /// 查找类似 Text(Ctrl+Alt+T) 的本地化字符串。
  3097. /// </summary>
  3098. public static string ToolTipsAonnot_Text {
  3099. get {
  3100. return ResourceManager.GetString("ToolTipsAonnot_Text", resourceCulture);
  3101. }
  3102. }
  3103. /// <summary>
  3104. /// 查找类似 UnderLine(Ctrl+Alt+U) 的本地化字符串。
  3105. /// </summary>
  3106. public static string ToolTipsAonnot_UnderLine {
  3107. get {
  3108. return ResourceManager.GetString("ToolTipsAonnot_UnderLine", resourceCulture);
  3109. }
  3110. }
  3111. /// <summary>
  3112. /// 查找类似 Delete 的本地化字符串。
  3113. /// </summary>
  3114. public static string ToolTipsPageEdit_Delete {
  3115. get {
  3116. return ResourceManager.GetString("ToolTipsPageEdit_Delete", resourceCulture);
  3117. }
  3118. }
  3119. /// <summary>
  3120. /// 查找类似 Rotate Left 的本地化字符串。
  3121. /// </summary>
  3122. public static string ToolTipsPageEdit_RotateLeft {
  3123. get {
  3124. return ResourceManager.GetString("ToolTipsPageEdit_RotateLeft", resourceCulture);
  3125. }
  3126. }
  3127. /// <summary>
  3128. /// 查找类似 Rotate Right 的本地化字符串。
  3129. /// </summary>
  3130. public static string ToolTipsPageEdit_RotateRight {
  3131. get {
  3132. return ResourceManager.GetString("ToolTipsPageEdit_RotateRight", resourceCulture);
  3133. }
  3134. }
  3135. /// <summary>
  3136. /// 查找类似 Underline 的本地化字符串。
  3137. /// </summary>
  3138. public static string Underline_Title {
  3139. get {
  3140. return ResourceManager.GetString("Underline_Title", resourceCulture);
  3141. }
  3142. }
  3143. /// <summary>
  3144. /// 查找类似 Book Mode 的本地化字符串。
  3145. /// </summary>
  3146. public static string ViewProperties_Book {
  3147. get {
  3148. return ResourceManager.GetString("ViewProperties_Book", resourceCulture);
  3149. }
  3150. }
  3151. /// <summary>
  3152. /// 查找类似 Continuous Scroll 的本地化字符串。
  3153. /// </summary>
  3154. public static string ViewProperties_ContinuousScroll {
  3155. get {
  3156. return ResourceManager.GetString("ViewProperties_ContinuousScroll", resourceCulture);
  3157. }
  3158. }
  3159. /// <summary>
  3160. /// 查找类似 Full Screen 的本地化字符串。
  3161. /// </summary>
  3162. public static string ViewProperties_Full {
  3163. get {
  3164. return ResourceManager.GetString("ViewProperties_Full", resourceCulture);
  3165. }
  3166. }
  3167. /// <summary>
  3168. /// 查找类似 Display Mode 的本地化字符串。
  3169. /// </summary>
  3170. public static string ViewProperties_Mode {
  3171. get {
  3172. return ResourceManager.GetString("ViewProperties_Mode", resourceCulture);
  3173. }
  3174. }
  3175. /// <summary>
  3176. /// 查找类似 Page Break 的本地化字符串。
  3177. /// </summary>
  3178. public static string ViewProperties_PageBreak {
  3179. get {
  3180. return ResourceManager.GetString("ViewProperties_PageBreak", resourceCulture);
  3181. }
  3182. }
  3183. /// <summary>
  3184. /// 查找类似 Read Mode 的本地化字符串。
  3185. /// </summary>
  3186. public static string ViewProperties_Read {
  3187. get {
  3188. return ResourceManager.GetString("ViewProperties_Read", resourceCulture);
  3189. }
  3190. }
  3191. /// <summary>
  3192. /// 查找类似 Rotate 的本地化字符串。
  3193. /// </summary>
  3194. public static string ViewProperties_RotateTitle {
  3195. get {
  3196. return ResourceManager.GetString("ViewProperties_RotateTitle", resourceCulture);
  3197. }
  3198. }
  3199. /// <summary>
  3200. /// 查找类似 Single Page 的本地化字符串。
  3201. /// </summary>
  3202. public static string ViewProperties_Single {
  3203. get {
  3204. return ResourceManager.GetString("ViewProperties_Single", resourceCulture);
  3205. }
  3206. }
  3207. /// <summary>
  3208. /// 查找类似 View 的本地化字符串。
  3209. /// </summary>
  3210. public static string ViewProperties_Title {
  3211. get {
  3212. return ResourceManager.GetString("ViewProperties_Title", resourceCulture);
  3213. }
  3214. }
  3215. /// <summary>
  3216. /// 查找类似 Two Pages 的本地化字符串。
  3217. /// </summary>
  3218. public static string ViewProperties_Two {
  3219. get {
  3220. return ResourceManager.GetString("ViewProperties_Two", resourceCulture);
  3221. }
  3222. }
  3223. /// <summary>
  3224. /// 查找类似 Actual Size 的本地化字符串。
  3225. /// </summary>
  3226. public static string ViewRightMenu_ActualSize {
  3227. get {
  3228. return ResourceManager.GetString("ViewRightMenu_ActualSize", resourceCulture);
  3229. }
  3230. }
  3231. /// <summary>
  3232. /// 查找类似 Add Bookmarks 的本地化字符串。
  3233. /// </summary>
  3234. public static string ViewRightMenu_AddBookmarks {
  3235. get {
  3236. return ResourceManager.GetString("ViewRightMenu_AddBookmarks", resourceCulture);
  3237. }
  3238. }
  3239. /// <summary>
  3240. /// 查找类似 Add Comment 的本地化字符串。
  3241. /// </summary>
  3242. public static string ViewRightMenu_AddComment {
  3243. get {
  3244. return ResourceManager.GetString("ViewRightMenu_AddComment", resourceCulture);
  3245. }
  3246. }
  3247. /// <summary>
  3248. /// 查找类似 Add Link 的本地化字符串。
  3249. /// </summary>
  3250. public static string ViewRightMenu_AddLink {
  3251. get {
  3252. return ResourceManager.GetString("ViewRightMenu_AddLink", resourceCulture);
  3253. }
  3254. }
  3255. /// <summary>
  3256. /// 查找类似 Add Outline 的本地化字符串。
  3257. /// </summary>
  3258. public static string ViewRightMenu_AddOutline {
  3259. get {
  3260. return ResourceManager.GetString("ViewRightMenu_AddOutline", resourceCulture);
  3261. }
  3262. }
  3263. /// <summary>
  3264. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  3265. /// </summary>
  3266. public static string ViewRightMenu_AreaZoom {
  3267. get {
  3268. return ResourceManager.GetString("ViewRightMenu_AreaZoom", resourceCulture);
  3269. }
  3270. }
  3271. /// <summary>
  3272. /// 查找类似 Arrow 的本地化字符串。
  3273. /// </summary>
  3274. public static string ViewRightMenu_Arrow {
  3275. get {
  3276. return ResourceManager.GetString("ViewRightMenu_Arrow", resourceCulture);
  3277. }
  3278. }
  3279. /// <summary>
  3280. /// 查找类似 Book Mode 的本地化字符串。
  3281. /// </summary>
  3282. public static string ViewRightMenu_BookMode {
  3283. get {
  3284. return ResourceManager.GetString("ViewRightMenu_BookMode", resourceCulture);
  3285. }
  3286. }
  3287. /// <summary>
  3288. /// 查找类似 Content Selection 的本地化字符串。
  3289. /// </summary>
  3290. public static string ViewRightMenu_ContentSelection {
  3291. get {
  3292. return ResourceManager.GetString("ViewRightMenu_ContentSelection", resourceCulture);
  3293. }
  3294. }
  3295. /// <summary>
  3296. /// 查找类似 Copy 的本地化字符串。
  3297. /// </summary>
  3298. public static string ViewRightMenu_Copy {
  3299. get {
  3300. return ResourceManager.GetString("ViewRightMenu_Copy", resourceCulture);
  3301. }
  3302. }
  3303. /// <summary>
  3304. /// 查找类似 Extract Image 的本地化字符串。
  3305. /// </summary>
  3306. public static string ViewRightMenu_ExtractImage {
  3307. get {
  3308. return ResourceManager.GetString("ViewRightMenu_ExtractImage", resourceCulture);
  3309. }
  3310. }
  3311. /// <summary>
  3312. /// 查找类似 Fit Page 的本地化字符串。
  3313. /// </summary>
  3314. public static string ViewRightMenu_FitPage {
  3315. get {
  3316. return ResourceManager.GetString("ViewRightMenu_FitPage", resourceCulture);
  3317. }
  3318. }
  3319. /// <summary>
  3320. /// 查找类似 Fit Width 的本地化字符串。
  3321. /// </summary>
  3322. public static string ViewRightMenu_FitWidth {
  3323. get {
  3324. return ResourceManager.GetString("ViewRightMenu_FitWidth", resourceCulture);
  3325. }
  3326. }
  3327. /// <summary>
  3328. /// 查找类似 Freehand 的本地化字符串。
  3329. /// </summary>
  3330. public static string ViewRightMenu_Freehand {
  3331. get {
  3332. return ResourceManager.GetString("ViewRightMenu_Freehand", resourceCulture);
  3333. }
  3334. }
  3335. /// <summary>
  3336. /// 查找类似 Hide Annotations 的本地化字符串。
  3337. /// </summary>
  3338. public static string ViewRightMenu_HideAnnotations {
  3339. get {
  3340. return ResourceManager.GetString("ViewRightMenu_HideAnnotations", resourceCulture);
  3341. }
  3342. }
  3343. /// <summary>
  3344. /// 查找类似 Highlight 的本地化字符串。
  3345. /// </summary>
  3346. public static string ViewRightMenu_Highlight {
  3347. get {
  3348. return ResourceManager.GetString("ViewRightMenu_Highlight", resourceCulture);
  3349. }
  3350. }
  3351. /// <summary>
  3352. /// 查找类似 Link 的本地化字符串。
  3353. /// </summary>
  3354. public static string ViewRightMenu_Link {
  3355. get {
  3356. return ResourceManager.GetString("ViewRightMenu_Link", resourceCulture);
  3357. }
  3358. }
  3359. /// <summary>
  3360. /// 查找类似 Note 的本地化字符串。
  3361. /// </summary>
  3362. public static string ViewRightMenu_Note {
  3363. get {
  3364. return ResourceManager.GetString("ViewRightMenu_Note", resourceCulture);
  3365. }
  3366. }
  3367. /// <summary>
  3368. /// 查找类似 Read Mode On 的本地化字符串。
  3369. /// </summary>
  3370. public static string ViewRightMenu_OnReadMode {
  3371. get {
  3372. return ResourceManager.GetString("ViewRightMenu_OnReadMode", resourceCulture);
  3373. }
  3374. }
  3375. /// <summary>
  3376. /// 查找类似 Read Mode Off 的本地化字符串。
  3377. /// </summary>
  3378. public static string ViewRightMenu_OutReadMode {
  3379. get {
  3380. return ResourceManager.GetString("ViewRightMenu_OutReadMode", resourceCulture);
  3381. }
  3382. }
  3383. /// <summary>
  3384. /// 查找类似 Oval 的本地化字符串。
  3385. /// </summary>
  3386. public static string ViewRightMenu_Oval {
  3387. get {
  3388. return ResourceManager.GetString("ViewRightMenu_Oval", resourceCulture);
  3389. }
  3390. }
  3391. /// <summary>
  3392. /// 查找类似 Page Display 的本地化字符串。
  3393. /// </summary>
  3394. public static string ViewRightMenu_PageDisplay {
  3395. get {
  3396. return ResourceManager.GetString("ViewRightMenu_PageDisplay", resourceCulture);
  3397. }
  3398. }
  3399. /// <summary>
  3400. /// 查找类似 Paste 的本地化字符串。
  3401. /// </summary>
  3402. public static string ViewRightMenu_Paste {
  3403. get {
  3404. return ResourceManager.GetString("ViewRightMenu_Paste", resourceCulture);
  3405. }
  3406. }
  3407. /// <summary>
  3408. /// 查找类似 Print 的本地化字符串。
  3409. /// </summary>
  3410. public static string ViewRightMenu_Print {
  3411. get {
  3412. return ResourceManager.GetString("ViewRightMenu_Print", resourceCulture);
  3413. }
  3414. }
  3415. /// <summary>
  3416. /// 查找类似 Rectangle 的本地化字符串。
  3417. /// </summary>
  3418. public static string ViewRightMenu_Rectangle {
  3419. get {
  3420. return ResourceManager.GetString("ViewRightMenu_Rectangle", resourceCulture);
  3421. }
  3422. }
  3423. /// <summary>
  3424. /// 查找类似 Remove Bookmarks 的本地化字符串。
  3425. /// </summary>
  3426. public static string ViewRightMenu_RemoveBookmarks {
  3427. get {
  3428. return ResourceManager.GetString("ViewRightMenu_RemoveBookmarks", resourceCulture);
  3429. }
  3430. }
  3431. /// <summary>
  3432. /// 查找类似 Scroll Tool 的本地化字符串。
  3433. /// </summary>
  3434. public static string ViewRightMenu_ScrollTool {
  3435. get {
  3436. return ResourceManager.GetString("ViewRightMenu_ScrollTool", resourceCulture);
  3437. }
  3438. }
  3439. /// <summary>
  3440. /// 查找类似 Search 的本地化字符串。
  3441. /// </summary>
  3442. public static string ViewRightMenu_Search {
  3443. get {
  3444. return ResourceManager.GetString("ViewRightMenu_Search", resourceCulture);
  3445. }
  3446. }
  3447. /// <summary>
  3448. /// 查找类似 Show Annotations 的本地化字符串。
  3449. /// </summary>
  3450. public static string ViewRightMenu_ShowAnnotations {
  3451. get {
  3452. return ResourceManager.GetString("ViewRightMenu_ShowAnnotations", resourceCulture);
  3453. }
  3454. }
  3455. /// <summary>
  3456. /// 查找类似 Signature 的本地化字符串。
  3457. /// </summary>
  3458. public static string ViewRightMenu_Signature {
  3459. get {
  3460. return ResourceManager.GetString("ViewRightMenu_Signature", resourceCulture);
  3461. }
  3462. }
  3463. /// <summary>
  3464. /// 查找类似 Single Page 的本地化字符串。
  3465. /// </summary>
  3466. public static string ViewRightMenu_SinglePage {
  3467. get {
  3468. return ResourceManager.GetString("ViewRightMenu_SinglePage", resourceCulture);
  3469. }
  3470. }
  3471. /// <summary>
  3472. /// 查找类似 Single Page Continuous 的本地化字符串。
  3473. /// </summary>
  3474. public static string ViewRightMenu_SinglePageContinuous {
  3475. get {
  3476. return ResourceManager.GetString("ViewRightMenu_SinglePageContinuous", resourceCulture);
  3477. }
  3478. }
  3479. /// <summary>
  3480. /// 查找类似 Stamp 的本地化字符串。
  3481. /// </summary>
  3482. public static string ViewRightMenu_Stamp {
  3483. get {
  3484. return ResourceManager.GetString("ViewRightMenu_Stamp", resourceCulture);
  3485. }
  3486. }
  3487. /// <summary>
  3488. /// 查找类似 Straight Line 的本地化字符串。
  3489. /// </summary>
  3490. public static string ViewRightMenu_StraightLine {
  3491. get {
  3492. return ResourceManager.GetString("ViewRightMenu_StraightLine", resourceCulture);
  3493. }
  3494. }
  3495. /// <summary>
  3496. /// 查找类似 Strikethrough 的本地化字符串。
  3497. /// </summary>
  3498. public static string ViewRightMenu_Strikethrough {
  3499. get {
  3500. return ResourceManager.GetString("ViewRightMenu_Strikethrough", resourceCulture);
  3501. }
  3502. }
  3503. /// <summary>
  3504. /// 查找类似 Text 的本地化字符串。
  3505. /// </summary>
  3506. public static string ViewRightMenu_Text {
  3507. get {
  3508. return ResourceManager.GetString("ViewRightMenu_Text", resourceCulture);
  3509. }
  3510. }
  3511. /// <summary>
  3512. /// 查找类似 Two Pages 的本地化字符串。
  3513. /// </summary>
  3514. public static string ViewRightMenu_TwoPages {
  3515. get {
  3516. return ResourceManager.GetString("ViewRightMenu_TwoPages", resourceCulture);
  3517. }
  3518. }
  3519. /// <summary>
  3520. /// 查找类似 Two Pages Continuous 的本地化字符串。
  3521. /// </summary>
  3522. public static string ViewRightMenu_TwoPagesContinuous {
  3523. get {
  3524. return ResourceManager.GetString("ViewRightMenu_TwoPagesContinuous", resourceCulture);
  3525. }
  3526. }
  3527. /// <summary>
  3528. /// 查找类似 Underline 的本地化字符串。
  3529. /// </summary>
  3530. public static string ViewRightMenu_Underline {
  3531. get {
  3532. return ResourceManager.GetString("ViewRightMenu_Underline", resourceCulture);
  3533. }
  3534. }
  3535. /// <summary>
  3536. /// 查找类似 Zoom 的本地化字符串。
  3537. /// </summary>
  3538. public static string ViewRightMenu_Zoom {
  3539. get {
  3540. return ResourceManager.GetString("ViewRightMenu_Zoom", resourceCulture);
  3541. }
  3542. }
  3543. /// <summary>
  3544. /// 查找类似 Zoom In 的本地化字符串。
  3545. /// </summary>
  3546. public static string ViewRightMenu_ZoomIn {
  3547. get {
  3548. return ResourceManager.GetString("ViewRightMenu_ZoomIn", resourceCulture);
  3549. }
  3550. }
  3551. /// <summary>
  3552. /// 查找类似 Zoom Out 的本地化字符串。
  3553. /// </summary>
  3554. public static string ViewRightMenu_ZoomOut {
  3555. get {
  3556. return ResourceManager.GetString("ViewRightMenu_ZoomOut", resourceCulture);
  3557. }
  3558. }
  3559. /// <summary>
  3560. /// 查找类似 Note 的本地化字符串。
  3561. /// </summary>
  3562. public static string ViewRightMenuAnnot_AddNote {
  3563. get {
  3564. return ResourceManager.GetString("ViewRightMenuAnnot_AddNote", resourceCulture);
  3565. }
  3566. }
  3567. /// <summary>
  3568. /// 查找类似 Copy 的本地化字符串。
  3569. /// </summary>
  3570. public static string ViewRightMenuAnnot_Copy {
  3571. get {
  3572. return ResourceManager.GetString("ViewRightMenuAnnot_Copy", resourceCulture);
  3573. }
  3574. }
  3575. /// <summary>
  3576. /// 查找类似 Cut 的本地化字符串。
  3577. /// </summary>
  3578. public static string ViewRightMenuAnnot_Cut {
  3579. get {
  3580. return ResourceManager.GetString("ViewRightMenuAnnot_Cut", resourceCulture);
  3581. }
  3582. }
  3583. /// <summary>
  3584. /// 查找类似 Set as Default 的本地化字符串。
  3585. /// </summary>
  3586. public static string ViewRightMenuAnnot_Default {
  3587. get {
  3588. return ResourceManager.GetString("ViewRightMenuAnnot_Default", resourceCulture);
  3589. }
  3590. }
  3591. /// <summary>
  3592. /// 查找类似 Delete 的本地化字符串。
  3593. /// </summary>
  3594. public static string ViewRightMenuAnnot_Delete {
  3595. get {
  3596. return ResourceManager.GetString("ViewRightMenuAnnot_Delete", resourceCulture);
  3597. }
  3598. }
  3599. /// <summary>
  3600. /// 查找类似 Paste 的本地化字符串。
  3601. /// </summary>
  3602. public static string ViewRightMenuAnnot_Paste {
  3603. get {
  3604. return ResourceManager.GetString("ViewRightMenuAnnot_Paste", resourceCulture);
  3605. }
  3606. }
  3607. /// <summary>
  3608. /// 查找类似 Add Bookmarks 的本地化字符串。
  3609. /// </summary>
  3610. public static string ViewRightMenuBlankSpace_AddBookmarks {
  3611. get {
  3612. return ResourceManager.GetString("ViewRightMenuBlankSpace_AddBookmarks", resourceCulture);
  3613. }
  3614. }
  3615. /// <summary>
  3616. /// 查找类似 Add Comment 的本地化字符串。
  3617. /// </summary>
  3618. public static string ViewRightMenuBlankSpace_AddComment {
  3619. get {
  3620. return ResourceManager.GetString("ViewRightMenuBlankSpace_AddComment", resourceCulture);
  3621. }
  3622. }
  3623. /// <summary>
  3624. /// 查找类似 Content Selection 的本地化字符串。
  3625. /// </summary>
  3626. public static string ViewRightMenuBlankSpace_ContentSelection {
  3627. get {
  3628. return ResourceManager.GetString("ViewRightMenuBlankSpace_ContentSelection", resourceCulture);
  3629. }
  3630. }
  3631. /// <summary>
  3632. /// 查找类似 Default Tool 的本地化字符串。
  3633. /// </summary>
  3634. public static string ViewRightMenuBlankSpace_DefaultTool {
  3635. get {
  3636. return ResourceManager.GetString("ViewRightMenuBlankSpace_DefaultTool", resourceCulture);
  3637. }
  3638. }
  3639. /// <summary>
  3640. /// 查找类似 Freehand 的本地化字符串。
  3641. /// </summary>
  3642. public static string ViewRightMenuBlankSpace_Freehand {
  3643. get {
  3644. return ResourceManager.GetString("ViewRightMenuBlankSpace_Freehand", resourceCulture);
  3645. }
  3646. }
  3647. /// <summary>
  3648. /// 查找类似 Hide Annotations 的本地化字符串。
  3649. /// </summary>
  3650. public static string ViewRightMenuBlankSpace_HideAnnotations {
  3651. get {
  3652. return ResourceManager.GetString("ViewRightMenuBlankSpace_HideAnnotations", resourceCulture);
  3653. }
  3654. }
  3655. /// <summary>
  3656. /// 查找类似 Highlight Links 的本地化字符串。
  3657. /// </summary>
  3658. public static string ViewRightMenuBlankSpace_HighlightLinks {
  3659. get {
  3660. return ResourceManager.GetString("ViewRightMenuBlankSpace_HighlightLinks", resourceCulture);
  3661. }
  3662. }
  3663. /// <summary>
  3664. /// 查找类似 Page DisPlay 的本地化字符串。
  3665. /// </summary>
  3666. public static string ViewRightMenuBlankSpace_PageDisPlay {
  3667. get {
  3668. return ResourceManager.GetString("ViewRightMenuBlankSpace_PageDisPlay", resourceCulture);
  3669. }
  3670. }
  3671. /// <summary>
  3672. /// 查找类似 Paste 的本地化字符串。
  3673. /// </summary>
  3674. public static string ViewRightMenuBlankSpace_Paste {
  3675. get {
  3676. return ResourceManager.GetString("ViewRightMenuBlankSpace_Paste", resourceCulture);
  3677. }
  3678. }
  3679. /// <summary>
  3680. /// 查找类似 Print 的本地化字符串。
  3681. /// </summary>
  3682. public static string ViewRightMenuBlankSpace_Print {
  3683. get {
  3684. return ResourceManager.GetString("ViewRightMenuBlankSpace_Print", resourceCulture);
  3685. }
  3686. }
  3687. /// <summary>
  3688. /// 查找类似 Read Mode Off 的本地化字符串。
  3689. /// </summary>
  3690. public static string ViewRightMenuBlankSpace_ReadModeOff {
  3691. get {
  3692. return ResourceManager.GetString("ViewRightMenuBlankSpace_ReadModeOff", resourceCulture);
  3693. }
  3694. }
  3695. /// <summary>
  3696. /// 查找类似 Read Mode On 的本地化字符串。
  3697. /// </summary>
  3698. public static string ViewRightMenuBlankSpace_ReadModeOn {
  3699. get {
  3700. return ResourceManager.GetString("ViewRightMenuBlankSpace_ReadModeOn", resourceCulture);
  3701. }
  3702. }
  3703. /// <summary>
  3704. /// 查找类似 Remove Bookmarks 的本地化字符串。
  3705. /// </summary>
  3706. public static string ViewRightMenuBlankSpace_RemoveBookmarks {
  3707. get {
  3708. return ResourceManager.GetString("ViewRightMenuBlankSpace_RemoveBookmarks", resourceCulture);
  3709. }
  3710. }
  3711. /// <summary>
  3712. /// 查找类似 Scroll Tool 的本地化字符串。
  3713. /// </summary>
  3714. public static string ViewRightMenuBlankSpace_ScrollTool {
  3715. get {
  3716. return ResourceManager.GetString("ViewRightMenuBlankSpace_ScrollTool", resourceCulture);
  3717. }
  3718. }
  3719. /// <summary>
  3720. /// 查找类似 Search 的本地化字符串。
  3721. /// </summary>
  3722. public static string ViewRightMenuBlankSpace_Search {
  3723. get {
  3724. return ResourceManager.GetString("ViewRightMenuBlankSpace_Search", resourceCulture);
  3725. }
  3726. }
  3727. /// <summary>
  3728. /// 查找类似 Show Annotation 的本地化字符串。
  3729. /// </summary>
  3730. public static string ViewRightMenuBlankSpace_ShowAnnotations {
  3731. get {
  3732. return ResourceManager.GetString("ViewRightMenuBlankSpace_ShowAnnotations", resourceCulture);
  3733. }
  3734. }
  3735. /// <summary>
  3736. /// 查找类似 Tools 的本地化字符串。
  3737. /// </summary>
  3738. public static string ViewRightMenuBlankSpace_Tools {
  3739. get {
  3740. return ResourceManager.GetString("ViewRightMenuBlankSpace_Tools", resourceCulture);
  3741. }
  3742. }
  3743. /// <summary>
  3744. /// 查找类似 Zoom 的本地化字符串。
  3745. /// </summary>
  3746. public static string ViewRightMenuBlankSpace_Zoom {
  3747. get {
  3748. return ResourceManager.GetString("ViewRightMenuBlankSpace_Zoom", resourceCulture);
  3749. }
  3750. }
  3751. /// <summary>
  3752. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  3753. /// </summary>
  3754. public static string ViewRightMenuBlankSpace_ZoomtoSelectedArea {
  3755. get {
  3756. return ResourceManager.GetString("ViewRightMenuBlankSpace_ZoomtoSelectedArea", resourceCulture);
  3757. }
  3758. }
  3759. /// <summary>
  3760. /// 查找类似 Arrow 的本地化字符串。
  3761. /// </summary>
  3762. public static string ViewRightMenuBlankSpaceAddComment_Arrow {
  3763. get {
  3764. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Arrow", resourceCulture);
  3765. }
  3766. }
  3767. /// <summary>
  3768. /// 查找类似 Freehand 的本地化字符串。
  3769. /// </summary>
  3770. public static string ViewRightMenuBlankSpaceAddComment_Freehand {
  3771. get {
  3772. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Freehand", resourceCulture);
  3773. }
  3774. }
  3775. /// <summary>
  3776. /// 查找类似 Link 的本地化字符串。
  3777. /// </summary>
  3778. public static string ViewRightMenuBlankSpaceAddComment_Link {
  3779. get {
  3780. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Link", resourceCulture);
  3781. }
  3782. }
  3783. /// <summary>
  3784. /// 查找类似 Oval 的本地化字符串。
  3785. /// </summary>
  3786. public static string ViewRightMenuBlankSpaceAddComment_Oval {
  3787. get {
  3788. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Oval", resourceCulture);
  3789. }
  3790. }
  3791. /// <summary>
  3792. /// 查找类似 Rectangle 的本地化字符串。
  3793. /// </summary>
  3794. public static string ViewRightMenuBlankSpaceAddComment_Rectangle {
  3795. get {
  3796. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Rectangle", resourceCulture);
  3797. }
  3798. }
  3799. /// <summary>
  3800. /// 查找类似 Signature 的本地化字符串。
  3801. /// </summary>
  3802. public static string ViewRightMenuBlankSpaceAddComment_Signature {
  3803. get {
  3804. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Signature", resourceCulture);
  3805. }
  3806. }
  3807. /// <summary>
  3808. /// 查找类似 Stamp 的本地化字符串。
  3809. /// </summary>
  3810. public static string ViewRightMenuBlankSpaceAddComment_Stamp {
  3811. get {
  3812. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Stamp", resourceCulture);
  3813. }
  3814. }
  3815. /// <summary>
  3816. /// 查找类似 Sticky Note 的本地化字符串。
  3817. /// </summary>
  3818. public static string ViewRightMenuBlankSpaceAddComment_StickyNote {
  3819. get {
  3820. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_StickyNote", resourceCulture);
  3821. }
  3822. }
  3823. /// <summary>
  3824. /// 查找类似 Straight Line 的本地化字符串。
  3825. /// </summary>
  3826. public static string ViewRightMenuBlankSpaceAddComment_StraightLine {
  3827. get {
  3828. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_StraightLine", resourceCulture);
  3829. }
  3830. }
  3831. /// <summary>
  3832. /// 查找类似 Text 的本地化字符串。
  3833. /// </summary>
  3834. public static string ViewRightMenuBlankSpaceAddComment_Text {
  3835. get {
  3836. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Text", resourceCulture);
  3837. }
  3838. }
  3839. /// <summary>
  3840. /// 查找类似 Book Mode 的本地化字符串。
  3841. /// </summary>
  3842. public static string ViewRightMenuBlankSpacePageDisPlay_BookMode {
  3843. get {
  3844. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_BookMode", resourceCulture);
  3845. }
  3846. }
  3847. /// <summary>
  3848. /// 查找类似 Single Page 的本地化字符串。
  3849. /// </summary>
  3850. public static string ViewRightMenuBlankSpacePageDisPlay_SinglePage {
  3851. get {
  3852. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_SinglePage", resourceCulture);
  3853. }
  3854. }
  3855. /// <summary>
  3856. /// 查找类似 Single Page Continuous 的本地化字符串。
  3857. /// </summary>
  3858. public static string ViewRightMenuBlankSpacePageDisPlay_SinglePageContinuous {
  3859. get {
  3860. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_SinglePageContinuous", resourceCulture);
  3861. }
  3862. }
  3863. /// <summary>
  3864. /// 查找类似 Two Pages 的本地化字符串。
  3865. /// </summary>
  3866. public static string ViewRightMenuBlankSpacePageDisPlay_TwoPage {
  3867. get {
  3868. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_TwoPage", resourceCulture);
  3869. }
  3870. }
  3871. /// <summary>
  3872. /// 查找类似 Two Pages Continuous 的本地化字符串。
  3873. /// </summary>
  3874. public static string ViewRightMenuBlankSpacePageDisPlay_TwoPageContinuous {
  3875. get {
  3876. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_TwoPageContinuous", resourceCulture);
  3877. }
  3878. }
  3879. /// <summary>
  3880. /// 查找类似 Actual Size 的本地化字符串。
  3881. /// </summary>
  3882. public static string ViewRightMenuBlankSpaceViewZoom_ActualSize {
  3883. get {
  3884. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_ActualSize", resourceCulture);
  3885. }
  3886. }
  3887. /// <summary>
  3888. /// 查找类似 Fit Page 的本地化字符串。
  3889. /// </summary>
  3890. public static string ViewRightMenuBlankSpaceViewZoom_FitPage {
  3891. get {
  3892. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_FitPage", resourceCulture);
  3893. }
  3894. }
  3895. /// <summary>
  3896. /// 查找类似 Fit Width 的本地化字符串。
  3897. /// </summary>
  3898. public static string ViewRightMenuBlankSpaceViewZoom_FitWidth {
  3899. get {
  3900. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_FitWidth", resourceCulture);
  3901. }
  3902. }
  3903. /// <summary>
  3904. /// 查找类似 Zoom In 的本地化字符串。
  3905. /// </summary>
  3906. public static string ViewRightMenuBlankSpaceViewZoom_ZoomIn {
  3907. get {
  3908. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_ZoomIn", resourceCulture);
  3909. }
  3910. }
  3911. /// <summary>
  3912. /// 查找类似 Zoom Out 的本地化字符串。
  3913. /// </summary>
  3914. public static string ViewRightMenuBlankSpaceViewZoom_ZoomOut {
  3915. get {
  3916. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_ZoomOut", resourceCulture);
  3917. }
  3918. }
  3919. /// <summary>
  3920. /// 查找类似 Color 的本地化字符串。
  3921. /// </summary>
  3922. public static string ViewRightMenuFreehandAnnot_Color {
  3923. get {
  3924. return ResourceManager.GetString("ViewRightMenuFreehandAnnot_Color", resourceCulture);
  3925. }
  3926. }
  3927. /// <summary>
  3928. /// 查找类似 Line Style 的本地化字符串。
  3929. /// </summary>
  3930. public static string ViewRightMenuFreehandAnnot_LineStyle {
  3931. get {
  3932. return ResourceManager.GetString("ViewRightMenuFreehandAnnot_LineStyle", resourceCulture);
  3933. }
  3934. }
  3935. /// <summary>
  3936. /// 查找类似 Dotted Line 的本地化字符串。
  3937. /// </summary>
  3938. public static string ViewRightMenuFreehandAnnotLineStyle_DottedLine {
  3939. get {
  3940. return ResourceManager.GetString("ViewRightMenuFreehandAnnotLineStyle_DottedLine", resourceCulture);
  3941. }
  3942. }
  3943. /// <summary>
  3944. /// 查找类似 Solid Line 的本地化字符串。
  3945. /// </summary>
  3946. public static string ViewRightMenuFreehandAnnotLineStyle_SolidLine {
  3947. get {
  3948. return ResourceManager.GetString("ViewRightMenuFreehandAnnotLineStyle_SolidLine", resourceCulture);
  3949. }
  3950. }
  3951. /// <summary>
  3952. /// 查找类似 Fill Color 的本地化字符串。
  3953. /// </summary>
  3954. public static string ViewRightMenuFreetextAnnot_FillColor {
  3955. get {
  3956. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_FillColor", resourceCulture);
  3957. }
  3958. }
  3959. /// <summary>
  3960. /// 查找类似 Font 的本地化字符串。
  3961. /// </summary>
  3962. public static string ViewRightMenuFreetextAnnot_Font {
  3963. get {
  3964. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_Font", resourceCulture);
  3965. }
  3966. }
  3967. /// <summary>
  3968. /// 查找类似 Font Color 的本地化字符串。
  3969. /// </summary>
  3970. public static string ViewRightMenuFreetextAnnot_FontColor {
  3971. get {
  3972. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_FontColor", resourceCulture);
  3973. }
  3974. }
  3975. /// <summary>
  3976. /// 查找类似 Text Alignment 的本地化字符串。
  3977. /// </summary>
  3978. public static string ViewRightMenuFreetextAnnot_TextAlignment {
  3979. get {
  3980. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_TextAlignment", resourceCulture);
  3981. }
  3982. }
  3983. /// <summary>
  3984. /// 查找类似 Courier New 的本地化字符串。
  3985. /// </summary>
  3986. public static string ViewRightMenuFreetextAnnotFont_CourierNew {
  3987. get {
  3988. return ResourceManager.GetString("ViewRightMenuFreetextAnnotFont_CourierNew", resourceCulture);
  3989. }
  3990. }
  3991. /// <summary>
  3992. /// 查找类似 Helvetica 的本地化字符串。
  3993. /// </summary>
  3994. public static string ViewRightMenuFreetextAnnotFont_Helvetica {
  3995. get {
  3996. return ResourceManager.GetString("ViewRightMenuFreetextAnnotFont_Helvetica", resourceCulture);
  3997. }
  3998. }
  3999. /// <summary>
  4000. /// 查找类似 Times New Roman 的本地化字符串。
  4001. /// </summary>
  4002. public static string ViewRightMenuFreetextAnnotFont_TimesNewRoman {
  4003. get {
  4004. return ResourceManager.GetString("ViewRightMenuFreetextAnnotFont_TimesNewRoman", resourceCulture);
  4005. }
  4006. }
  4007. /// <summary>
  4008. /// 查找类似 Align Center 的本地化字符串。
  4009. /// </summary>
  4010. public static string ViewRightMenuFreetextAnnotTextAlignment_AlignCenter {
  4011. get {
  4012. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_AlignCenter", resourceCulture);
  4013. }
  4014. }
  4015. /// <summary>
  4016. /// 查找类似 Align Left 的本地化字符串。
  4017. /// </summary>
  4018. public static string ViewRightMenuFreetextAnnotTextAlignment_AlignLeft {
  4019. get {
  4020. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_AlignLeft", resourceCulture);
  4021. }
  4022. }
  4023. /// <summary>
  4024. /// 查找类似 Align Right 的本地化字符串。
  4025. /// </summary>
  4026. public static string ViewRightMenuFreetextAnnotTextAlignment_AlignRight {
  4027. get {
  4028. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_AlignRight", resourceCulture);
  4029. }
  4030. }
  4031. /// <summary>
  4032. /// 查找类似 Fully Justified 的本地化字符串。
  4033. /// </summary>
  4034. public static string ViewRightMenuFreetextAnnotTextAlignment_FullyJustified {
  4035. get {
  4036. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_FullyJustified", resourceCulture);
  4037. }
  4038. }
  4039. /// <summary>
  4040. /// 查找类似 Add Link 的本地化字符串。
  4041. /// </summary>
  4042. public static string ViewRightMenuSelection_AddLink {
  4043. get {
  4044. return ResourceManager.GetString("ViewRightMenuSelection_AddLink", resourceCulture);
  4045. }
  4046. }
  4047. /// <summary>
  4048. /// 查找类似 Add Outline 的本地化字符串。
  4049. /// </summary>
  4050. public static string ViewRightMenuSelection_AddOutline {
  4051. get {
  4052. return ResourceManager.GetString("ViewRightMenuSelection_AddOutline", resourceCulture);
  4053. }
  4054. }
  4055. /// <summary>
  4056. /// 查找类似 Copy 的本地化字符串。
  4057. /// </summary>
  4058. public static string ViewRightMenuSelection_Copy {
  4059. get {
  4060. return ResourceManager.GetString("ViewRightMenuSelection_Copy", resourceCulture);
  4061. }
  4062. }
  4063. /// <summary>
  4064. /// 查找类似 Extract Image 的本地化字符串。
  4065. /// </summary>
  4066. public static string ViewRightMenuSelection_ExtractImage {
  4067. get {
  4068. return ResourceManager.GetString("ViewRightMenuSelection_ExtractImage", resourceCulture);
  4069. }
  4070. }
  4071. /// <summary>
  4072. /// 查找类似 Highlight 的本地化字符串。
  4073. /// </summary>
  4074. public static string ViewRightMenuSelection_Highlight {
  4075. get {
  4076. return ResourceManager.GetString("ViewRightMenuSelection_Highlight", resourceCulture);
  4077. }
  4078. }
  4079. /// <summary>
  4080. /// 查找类似 Link 的本地化字符串。
  4081. /// </summary>
  4082. public static string ViewRightMenuSelection_Link {
  4083. get {
  4084. return ResourceManager.GetString("ViewRightMenuSelection_Link", resourceCulture);
  4085. }
  4086. }
  4087. /// <summary>
  4088. /// 查找类似 Note 的本地化字符串。
  4089. /// </summary>
  4090. public static string ViewRightMenuSelection_Note {
  4091. get {
  4092. return ResourceManager.GetString("ViewRightMenuSelection_Note", resourceCulture);
  4093. }
  4094. }
  4095. /// <summary>
  4096. /// 查找类似 oval 的本地化字符串。
  4097. /// </summary>
  4098. public static string ViewRightMenuSelection_Oval {
  4099. get {
  4100. return ResourceManager.GetString("ViewRightMenuSelection_Oval", resourceCulture);
  4101. }
  4102. }
  4103. /// <summary>
  4104. /// 查找类似 Paste 的本地化字符串。
  4105. /// </summary>
  4106. public static string ViewRightMenuSelection_Paste {
  4107. get {
  4108. return ResourceManager.GetString("ViewRightMenuSelection_Paste", resourceCulture);
  4109. }
  4110. }
  4111. /// <summary>
  4112. /// 查找类似 Rectangle 的本地化字符串。
  4113. /// </summary>
  4114. public static string ViewRightMenuSelection_Rectangle {
  4115. get {
  4116. return ResourceManager.GetString("ViewRightMenuSelection_Rectangle", resourceCulture);
  4117. }
  4118. }
  4119. /// <summary>
  4120. /// 查找类似 Straight Line 的本地化字符串。
  4121. /// </summary>
  4122. public static string ViewRightMenuSelection_StraightLine {
  4123. get {
  4124. return ResourceManager.GetString("ViewRightMenuSelection_StraightLine", resourceCulture);
  4125. }
  4126. }
  4127. /// <summary>
  4128. /// 查找类似 Strikethrough 的本地化字符串。
  4129. /// </summary>
  4130. public static string ViewRightMenuSelection_Strikethrough {
  4131. get {
  4132. return ResourceManager.GetString("ViewRightMenuSelection_Strikethrough", resourceCulture);
  4133. }
  4134. }
  4135. /// <summary>
  4136. /// 查找类似 Text 的本地化字符串。
  4137. /// </summary>
  4138. public static string ViewRightMenuSelection_Text {
  4139. get {
  4140. return ResourceManager.GetString("ViewRightMenuSelection_Text", resourceCulture);
  4141. }
  4142. }
  4143. /// <summary>
  4144. /// 查找类似 Text 的本地化字符串。
  4145. /// </summary>
  4146. public static string ViewRightMenuSelection_Text1 {
  4147. get {
  4148. return ResourceManager.GetString("ViewRightMenuSelection_Text1", resourceCulture);
  4149. }
  4150. }
  4151. /// <summary>
  4152. /// 查找类似 Underline 的本地化字符串。
  4153. /// </summary>
  4154. public static string ViewRightMenuSelection_Underline {
  4155. get {
  4156. return ResourceManager.GetString("ViewRightMenuSelection_Underline", resourceCulture);
  4157. }
  4158. }
  4159. /// <summary>
  4160. /// 查找类似 Border Color 的本地化字符串。
  4161. /// </summary>
  4162. public static string ViewRightMenuSharpsAnnot_BorderColor {
  4163. get {
  4164. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_BorderColor", resourceCulture);
  4165. }
  4166. }
  4167. /// <summary>
  4168. /// 查找类似 Color 的本地化字符串。
  4169. /// </summary>
  4170. public static string ViewRightMenuSharpsAnnot_Color {
  4171. get {
  4172. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_Color", resourceCulture);
  4173. }
  4174. }
  4175. /// <summary>
  4176. /// 查找类似 Direction 的本地化字符串。
  4177. /// </summary>
  4178. public static string ViewRightMenuSharpsAnnot_Direction {
  4179. get {
  4180. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_Direction", resourceCulture);
  4181. }
  4182. }
  4183. /// <summary>
  4184. /// 查找类似 Fill Color 的本地化字符串。
  4185. /// </summary>
  4186. public static string ViewRightMenuSharpsAnnot_FillColor {
  4187. get {
  4188. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_FillColor", resourceCulture);
  4189. }
  4190. }
  4191. /// <summary>
  4192. /// 查找类似 Line Style 的本地化字符串。
  4193. /// </summary>
  4194. public static string ViewRightMenuSharpsAnnot_LineStyle {
  4195. get {
  4196. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_LineStyle", resourceCulture);
  4197. }
  4198. }
  4199. /// <summary>
  4200. /// 查找类似 Horizontal 的本地化字符串。
  4201. /// </summary>
  4202. public static string ViewRightMenuSharpsAnnotDirection_Horizontal {
  4203. get {
  4204. return ResourceManager.GetString("ViewRightMenuSharpsAnnotDirection_Horizontal", resourceCulture);
  4205. }
  4206. }
  4207. /// <summary>
  4208. /// 查找类似 Vertical 的本地化字符串。
  4209. /// </summary>
  4210. public static string ViewRightMenuSharpsAnnotDirection_Vertical {
  4211. get {
  4212. return ResourceManager.GetString("ViewRightMenuSharpsAnnotDirection_Vertical", resourceCulture);
  4213. }
  4214. }
  4215. /// <summary>
  4216. /// 查找类似 Dotted Line 的本地化字符串。
  4217. /// </summary>
  4218. public static string ViewRightMenuSharpsAnnotLineStyle_DottedLine {
  4219. get {
  4220. return ResourceManager.GetString("ViewRightMenuSharpsAnnotLineStyle_DottedLine", resourceCulture);
  4221. }
  4222. }
  4223. /// <summary>
  4224. /// 查找类似 Solid Line 的本地化字符串。
  4225. /// </summary>
  4226. public static string ViewRightMenuSharpsAnnotLineStyle_SolidLine {
  4227. get {
  4228. return ResourceManager.GetString("ViewRightMenuSharpsAnnotLineStyle_SolidLine", resourceCulture);
  4229. }
  4230. }
  4231. /// <summary>
  4232. /// 查找类似 Export 的本地化字符串。
  4233. /// </summary>
  4234. public static string ViewRightMenuStampAnnot_Export {
  4235. get {
  4236. return ResourceManager.GetString("ViewRightMenuStampAnnot_Export", resourceCulture);
  4237. }
  4238. }
  4239. /// <summary>
  4240. /// 查找类似 PDF 的本地化字符串。
  4241. /// </summary>
  4242. public static string ViewRightMenuStampAnnotExport_PDF {
  4243. get {
  4244. return ResourceManager.GetString("ViewRightMenuStampAnnotExport_PDF", resourceCulture);
  4245. }
  4246. }
  4247. /// <summary>
  4248. /// 查找类似 PNG 的本地化字符串。
  4249. /// </summary>
  4250. public static string ViewRightMenuStampAnnotExport_PNG {
  4251. get {
  4252. return ResourceManager.GetString("ViewRightMenuStampAnnotExport_PNG", resourceCulture);
  4253. }
  4254. }
  4255. /// <summary>
  4256. /// 查找类似 Color 的本地化字符串。
  4257. /// </summary>
  4258. public static string ViewRightMenuStickyNoteAnnot_Color {
  4259. get {
  4260. return ResourceManager.GetString("ViewRightMenuStickyNoteAnnot_Color", resourceCulture);
  4261. }
  4262. }
  4263. /// <summary>
  4264. /// 查找类似 Edit 的本地化字符串。
  4265. /// </summary>
  4266. public static string ViewRightMenuStickyNoteAnnot_Edit {
  4267. get {
  4268. return ResourceManager.GetString("ViewRightMenuStickyNoteAnnot_Edit", resourceCulture);
  4269. }
  4270. }
  4271. /// <summary>
  4272. /// 查找类似 Copy Text 的本地化字符串。
  4273. /// </summary>
  4274. public static string ViewRightMenuTextAnnot_CopyText {
  4275. get {
  4276. return ResourceManager.GetString("ViewRightMenuTextAnnot_CopyText", resourceCulture);
  4277. }
  4278. }
  4279. /// <summary>
  4280. /// 查找类似 Delete 的本地化字符串。
  4281. /// </summary>
  4282. public static string ViewRightMenuTextAnnot_Delete {
  4283. get {
  4284. return ResourceManager.GetString("ViewRightMenuTextAnnot_Delete", resourceCulture);
  4285. }
  4286. }
  4287. /// <summary>
  4288. /// 查找类似 Annotation 的本地化字符串。
  4289. /// </summary>
  4290. public static string ViewTopToolbar_Annotation {
  4291. get {
  4292. return ResourceManager.GetString("ViewTopToolbar_Annotation", resourceCulture);
  4293. }
  4294. }
  4295. /// <summary>
  4296. /// 查找类似 Converter 的本地化字符串。
  4297. /// </summary>
  4298. public static string ViewTopToolbar_Converter {
  4299. get {
  4300. return ResourceManager.GetString("ViewTopToolbar_Converter", resourceCulture);
  4301. }
  4302. }
  4303. /// <summary>
  4304. /// 查找类似 File 的本地化字符串。
  4305. /// </summary>
  4306. public static string ViewTopToolbar_File {
  4307. get {
  4308. return ResourceManager.GetString("ViewTopToolbar_File", resourceCulture);
  4309. }
  4310. }
  4311. /// <summary>
  4312. /// 查找类似 Fill&amp;Sign 的本地化字符串。
  4313. /// </summary>
  4314. public static string ViewTopToolbar_Fill_Sign {
  4315. get {
  4316. return ResourceManager.GetString("ViewTopToolbar_Fill&Sign", resourceCulture);
  4317. }
  4318. }
  4319. /// <summary>
  4320. /// 查找类似 Page Edit 的本地化字符串。
  4321. /// </summary>
  4322. public static string ViewTopToolbar_PageEdit {
  4323. get {
  4324. return ResourceManager.GetString("ViewTopToolbar_PageEdit", resourceCulture);
  4325. }
  4326. }
  4327. /// <summary>
  4328. /// 查找类似 Print 的本地化字符串。
  4329. /// </summary>
  4330. public static string ViewTopToolbar_Print {
  4331. get {
  4332. return ResourceManager.GetString("ViewTopToolbar_Print", resourceCulture);
  4333. }
  4334. }
  4335. /// <summary>
  4336. /// 查找类似 Properties 的本地化字符串。
  4337. /// </summary>
  4338. public static string ViewTopToolbar_Properties {
  4339. get {
  4340. return ResourceManager.GetString("ViewTopToolbar_Properties", resourceCulture);
  4341. }
  4342. }
  4343. /// <summary>
  4344. /// 查找类似 Redo 的本地化字符串。
  4345. /// </summary>
  4346. public static string ViewTopToolbar_Redo {
  4347. get {
  4348. return ResourceManager.GetString("ViewTopToolbar_Redo", resourceCulture);
  4349. }
  4350. }
  4351. /// <summary>
  4352. /// 查找类似 Save 的本地化字符串。
  4353. /// </summary>
  4354. public static string ViewTopToolbar_Save {
  4355. get {
  4356. return ResourceManager.GetString("ViewTopToolbar_Save", resourceCulture);
  4357. }
  4358. }
  4359. /// <summary>
  4360. /// 查找类似 Share 的本地化字符串。
  4361. /// </summary>
  4362. public static string ViewTopToolbar_Share {
  4363. get {
  4364. return ResourceManager.GetString("ViewTopToolbar_Share", resourceCulture);
  4365. }
  4366. }
  4367. /// <summary>
  4368. /// 查找类似 Edit PDF 的本地化字符串。
  4369. /// </summary>
  4370. public static string ViewTopToolbar_T_EditPDF {
  4371. get {
  4372. return ResourceManager.GetString("ViewTopToolbar_T_EditPDF", resourceCulture);
  4373. }
  4374. }
  4375. /// <summary>
  4376. /// 查找类似 Tools 的本地化字符串。
  4377. /// </summary>
  4378. public static string ViewTopToolbar_Tools {
  4379. get {
  4380. return ResourceManager.GetString("ViewTopToolbar_Tools", resourceCulture);
  4381. }
  4382. }
  4383. /// <summary>
  4384. /// 查找类似 Undo 的本地化字符串。
  4385. /// </summary>
  4386. public static string ViewTopToolbar_Undo {
  4387. get {
  4388. return ResourceManager.GetString("ViewTopToolbar_Undo", resourceCulture);
  4389. }
  4390. }
  4391. /// <summary>
  4392. /// 查找类似 All Pages 的本地化字符串。
  4393. /// </summary>
  4394. public static string WritableComboBox_AllPage {
  4395. get {
  4396. return ResourceManager.GetString("WritableComboBox_AllPage", resourceCulture);
  4397. }
  4398. }
  4399. /// <summary>
  4400. /// 查找类似 Current Page 的本地化字符串。
  4401. /// </summary>
  4402. public static string WritableComboBox_CurrentPage {
  4403. get {
  4404. return ResourceManager.GetString("WritableComboBox_CurrentPage", resourceCulture);
  4405. }
  4406. }
  4407. /// <summary>
  4408. /// 查找类似 Custom Range 的本地化字符串。
  4409. /// </summary>
  4410. public static string WritableComboBox_CustomRange {
  4411. get {
  4412. return ResourceManager.GetString("WritableComboBox_CustomRange", resourceCulture);
  4413. }
  4414. }
  4415. /// <summary>
  4416. /// 查找类似 eg.1,3-5,10 的本地化字符串。
  4417. /// </summary>
  4418. public static string WritableComboBox_CustomRangeEge {
  4419. get {
  4420. return ResourceManager.GetString("WritableComboBox_CustomRangeEge", resourceCulture);
  4421. }
  4422. }
  4423. /// <summary>
  4424. /// 查找类似 Even Pages 的本地化字符串。
  4425. /// </summary>
  4426. public static string WritableComboBox_EvenPage {
  4427. get {
  4428. return ResourceManager.GetString("WritableComboBox_EvenPage", resourceCulture);
  4429. }
  4430. }
  4431. /// <summary>
  4432. /// 查找类似 Odd Pages 的本地化字符串。
  4433. /// </summary>
  4434. public static string WritableComboBox_OddPage {
  4435. get {
  4436. return ResourceManager.GetString("WritableComboBox_OddPage", resourceCulture);
  4437. }
  4438. }
  4439. /// <summary>
  4440. /// 查找类似 Actual Size 的本地化字符串。
  4441. /// </summary>
  4442. public static string Zoom_Actual {
  4443. get {
  4444. return ResourceManager.GetString("Zoom_Actual", resourceCulture);
  4445. }
  4446. }
  4447. /// <summary>
  4448. /// 查找类似 Fit Page 的本地化字符串。
  4449. /// </summary>
  4450. public static string Zoom_FitPage {
  4451. get {
  4452. return ResourceManager.GetString("Zoom_FitPage", resourceCulture);
  4453. }
  4454. }
  4455. /// <summary>
  4456. /// 查找类似 Fit Width 的本地化字符串。
  4457. /// </summary>
  4458. public static string Zoom_FitWidth {
  4459. get {
  4460. return ResourceManager.GetString("Zoom_FitWidth", resourceCulture);
  4461. }
  4462. }
  4463. }
  4464. }