MainPage.Designer.cs 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960
  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. /// 查找类似 Failed to import annotations 的本地化字符串。
  56. /// </summary>
  57. public static string Annot_ExportFailWarning {
  58. get {
  59. return ResourceManager.GetString("Annot_ExportFailWarning", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// 查找类似 Export annotations successfully 的本地化字符串。
  64. /// </summary>
  65. public static string Annot_ExportSuccess {
  66. get {
  67. return ResourceManager.GetString("Annot_ExportSuccess", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// 查找类似 Author 的本地化字符串。
  72. /// </summary>
  73. public static string Annotation_DialogAuthor {
  74. get {
  75. return ResourceManager.GetString("Annotation_DialogAuthor", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// 查找类似 Clear 的本地化字符串。
  80. /// </summary>
  81. public static string Annotation_DialogClear {
  82. get {
  83. return ResourceManager.GetString("Annotation_DialogClear", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// 查找类似 Color 的本地化字符串。
  88. /// </summary>
  89. public static string Annotation_DialogColor {
  90. get {
  91. return ResourceManager.GetString("Annotation_DialogColor", resourceCulture);
  92. }
  93. }
  94. /// <summary>
  95. /// 查找类似 Cancel 的本地化字符串。
  96. /// </summary>
  97. public static string Annotation_DialogNo {
  98. get {
  99. return ResourceManager.GetString("Annotation_DialogNo", resourceCulture);
  100. }
  101. }
  102. /// <summary>
  103. /// 查找类似 Style 的本地化字符串。
  104. /// </summary>
  105. public static string Annotation_DialogStyle {
  106. get {
  107. return ResourceManager.GetString("Annotation_DialogStyle", resourceCulture);
  108. }
  109. }
  110. /// <summary>
  111. /// 查找类似 Apply 的本地化字符串。
  112. /// </summary>
  113. public static string Annotation_DialogYes {
  114. get {
  115. return ResourceManager.GetString("Annotation_DialogYes", resourceCulture);
  116. }
  117. }
  118. /// <summary>
  119. /// 查找类似 All comments in this file will be displayed here. 的本地化字符串。
  120. /// </summary>
  121. public static string Annotation_EmptyContext {
  122. get {
  123. return ResourceManager.GetString("Annotation_EmptyContext", resourceCulture);
  124. }
  125. }
  126. /// <summary>
  127. /// 查找类似 No Annotations 的本地化字符串。
  128. /// </summary>
  129. public static string Annotation_EmptyTitle {
  130. get {
  131. return ResourceManager.GetString("Annotation_EmptyTitle", resourceCulture);
  132. }
  133. }
  134. /// <summary>
  135. /// 查找类似 Collapse All 的本地化字符串。
  136. /// </summary>
  137. public static string Annotation_MenuCollapse {
  138. get {
  139. return ResourceManager.GetString("Annotation_MenuCollapse", resourceCulture);
  140. }
  141. }
  142. /// <summary>
  143. /// 查找类似 Copy Text 的本地化字符串。
  144. /// </summary>
  145. public static string Annotation_MenuCopyText {
  146. get {
  147. return ResourceManager.GetString("Annotation_MenuCopyText", resourceCulture);
  148. }
  149. }
  150. /// <summary>
  151. /// 查找类似 Delete 的本地化字符串。
  152. /// </summary>
  153. public static string Annotation_MenuDelete {
  154. get {
  155. return ResourceManager.GetString("Annotation_MenuDelete", resourceCulture);
  156. }
  157. }
  158. /// <summary>
  159. /// 查找类似 Delete All Anntations 的本地化字符串。
  160. /// </summary>
  161. public static string Annotation_MenuDeleteAll {
  162. get {
  163. return ResourceManager.GetString("Annotation_MenuDeleteAll", resourceCulture);
  164. }
  165. }
  166. /// <summary>
  167. /// 查找类似 Expand All 的本地化字符串。
  168. /// </summary>
  169. public static string Annotation_MenuExpand {
  170. get {
  171. return ResourceManager.GetString("Annotation_MenuExpand", resourceCulture);
  172. }
  173. }
  174. /// <summary>
  175. /// 查找类似 Export Annotations to XFDX 的本地化字符串。
  176. /// </summary>
  177. public static string Annotation_MenuExport {
  178. get {
  179. return ResourceManager.GetString("Annotation_MenuExport", resourceCulture);
  180. }
  181. }
  182. /// <summary>
  183. /// 查找类似 Import Annotations 的本地化字符串。
  184. /// </summary>
  185. public static string Annotation_MenuImport {
  186. get {
  187. return ResourceManager.GetString("Annotation_MenuImport", resourceCulture);
  188. }
  189. }
  190. /// <summary>
  191. /// 查找类似 Annotation 的本地化字符串。
  192. /// </summary>
  193. public static string Annotation_Title {
  194. get {
  195. return ResourceManager.GetString("Annotation_Title", resourceCulture);
  196. }
  197. }
  198. /// <summary>
  199. /// 查找类似 Change Target Location 的本地化字符串。
  200. /// </summary>
  201. public static string Bookmark_Change {
  202. get {
  203. return ResourceManager.GetString("Bookmark_Change", resourceCulture);
  204. }
  205. }
  206. /// <summary>
  207. /// 查找类似 Delete 的本地化字符串。
  208. /// </summary>
  209. public static string Bookmark_Delete {
  210. get {
  211. return ResourceManager.GetString("Bookmark_Delete", resourceCulture);
  212. }
  213. }
  214. /// <summary>
  215. /// 查找类似 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. 的本地化字符串。
  216. /// </summary>
  217. public static string Bookmark_EmptyContext {
  218. get {
  219. return ResourceManager.GetString("Bookmark_EmptyContext", resourceCulture);
  220. }
  221. }
  222. /// <summary>
  223. /// 查找类似 No Bookmarks 的本地化字符串。
  224. /// </summary>
  225. public static string Bookmark_EmptyTitle {
  226. get {
  227. return ResourceManager.GetString("Bookmark_EmptyTitle", resourceCulture);
  228. }
  229. }
  230. /// <summary>
  231. /// 查找类似 Page {0} 的本地化字符串。
  232. /// </summary>
  233. public static string Bookmark_PageN {
  234. get {
  235. return ResourceManager.GetString("Bookmark_PageN", resourceCulture);
  236. }
  237. }
  238. /// <summary>
  239. /// 查找类似 Rename 的本地化字符串。
  240. /// </summary>
  241. public static string Bookmark_Rename {
  242. get {
  243. return ResourceManager.GetString("Bookmark_Rename", resourceCulture);
  244. }
  245. }
  246. /// <summary>
  247. /// 查找类似 Bookmark 的本地化字符串。
  248. /// </summary>
  249. public static string Bookmark_Title {
  250. get {
  251. return ResourceManager.GetString("Bookmark_Title", resourceCulture);
  252. }
  253. }
  254. /// <summary>
  255. /// 查找类似 Change Color 的本地化字符串。
  256. /// </summary>
  257. public static string ColorMenuItem_Change {
  258. get {
  259. return ResourceManager.GetString("ColorMenuItem_Change", resourceCulture);
  260. }
  261. }
  262. /// <summary>
  263. /// 查找类似 Restore Default Color 的本地化字符串。
  264. /// </summary>
  265. public static string ColorMenuItem_Restore {
  266. get {
  267. return ResourceManager.GetString("ColorMenuItem_Restore", resourceCulture);
  268. }
  269. }
  270. /// <summary>
  271. /// 查找类似 Cancel 的本地化字符串。
  272. /// </summary>
  273. public static string Compress_Cancel {
  274. get {
  275. return ResourceManager.GetString("Compress_Cancel", resourceCulture);
  276. }
  277. }
  278. /// <summary>
  279. /// 查找类似 Compress 的本地化字符串。
  280. /// </summary>
  281. public static string Compress_Compress {
  282. get {
  283. return ResourceManager.GetString("Compress_Compress", resourceCulture);
  284. }
  285. }
  286. /// <summary>
  287. /// 查找类似 High 的本地化字符串。
  288. /// </summary>
  289. public static string Compress_High {
  290. get {
  291. return ResourceManager.GetString("Compress_High", resourceCulture);
  292. }
  293. }
  294. /// <summary>
  295. /// 查找类似 Low 的本地化字符串。
  296. /// </summary>
  297. public static string Compress_Low {
  298. get {
  299. return ResourceManager.GetString("Compress_Low", resourceCulture);
  300. }
  301. }
  302. /// <summary>
  303. /// 查找类似 Minimum 的本地化字符串。
  304. /// </summary>
  305. public static string Compress_Minimum {
  306. get {
  307. return ResourceManager.GetString("Compress_Minimum", resourceCulture);
  308. }
  309. }
  310. /// <summary>
  311. /// 查找类似 Standard 的本地化字符串。
  312. /// </summary>
  313. public static string Compress_Standard {
  314. get {
  315. return ResourceManager.GetString("Compress_Standard", resourceCulture);
  316. }
  317. }
  318. /// <summary>
  319. /// 查找类似 Compress 的本地化字符串。
  320. /// </summary>
  321. public static string Compress_Title {
  322. get {
  323. return ResourceManager.GetString("Compress_Title", resourceCulture);
  324. }
  325. }
  326. /// <summary>
  327. /// 查找类似 Copy 的本地化字符串。
  328. /// </summary>
  329. public static string ContentSelection_Copy {
  330. get {
  331. return ResourceManager.GetString("ContentSelection_Copy", resourceCulture);
  332. }
  333. }
  334. /// <summary>
  335. /// 查找类似 Crop 的本地化字符串。
  336. /// </summary>
  337. public static string ContentSelection_Crop {
  338. get {
  339. return ResourceManager.GetString("ContentSelection_Crop", resourceCulture);
  340. }
  341. }
  342. /// <summary>
  343. /// 查找类似 Output 的本地化字符串。
  344. /// </summary>
  345. public static string ContentSelection_Output {
  346. get {
  347. return ResourceManager.GetString("ContentSelection_Output", resourceCulture);
  348. }
  349. }
  350. /// <summary>
  351. /// 查找类似 Print 的本地化字符串。
  352. /// </summary>
  353. public static string ContentSelection_Print {
  354. get {
  355. return ResourceManager.GetString("ContentSelection_Print", resourceCulture);
  356. }
  357. }
  358. /// <summary>
  359. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  360. /// </summary>
  361. public static string ContentSelection_ZoomArea {
  362. get {
  363. return ResourceManager.GetString("ContentSelection_ZoomArea", resourceCulture);
  364. }
  365. }
  366. /// <summary>
  367. /// 查找类似 Failed to convert files 的本地化字符串。
  368. /// </summary>
  369. public static string Convert_FailedWarning {
  370. get {
  371. return ResourceManager.GetString("Convert_FailedWarning", resourceCulture);
  372. }
  373. }
  374. /// <summary>
  375. /// 查找类似 Cancel 的本地化字符串。
  376. /// </summary>
  377. public static string Convert_No {
  378. get {
  379. return ResourceManager.GetString("Convert_No", resourceCulture);
  380. }
  381. }
  382. /// <summary>
  383. /// 查找类似 Page Range 的本地化字符串。
  384. /// </summary>
  385. public static string Convert_PDFPageRange {
  386. get {
  387. return ResourceManager.GetString("Convert_PDFPageRange", resourceCulture);
  388. }
  389. }
  390. /// <summary>
  391. /// 查找类似 Create a single worksheet for
  392. ///a document 的本地化字符串。
  393. /// </summary>
  394. public static string Convert_PDFToCSVADocment {
  395. get {
  396. return ResourceManager.GetString("Convert_PDFToCSVADocment", resourceCulture);
  397. }
  398. }
  399. /// <summary>
  400. /// 查找类似 Create worksheets for each
  401. ///form 的本地化字符串。
  402. /// </summary>
  403. public static string Convert_PDFToCSVEachForm {
  404. get {
  405. return ResourceManager.GetString("Convert_PDFToCSVEachForm", resourceCulture);
  406. }
  407. }
  408. /// <summary>
  409. /// 查找类似 Settings 的本地化字符串。
  410. /// </summary>
  411. public static string Convert_PDFToCSVSettings {
  412. get {
  413. return ResourceManager.GetString("Convert_PDFToCSVSettings", resourceCulture);
  414. }
  415. }
  416. /// <summary>
  417. /// 查找类似 PDF To CSV 的本地化字符串。
  418. /// </summary>
  419. public static string Convert_PDFToCSVTitle {
  420. get {
  421. return ResourceManager.GetString("Convert_PDFToCSVTitle", resourceCulture);
  422. }
  423. }
  424. /// <summary>
  425. /// 查找类似 All contents 的本地化字符串。
  426. /// </summary>
  427. public static string Convert_PDFToExcelAllContents {
  428. get {
  429. return ResourceManager.GetString("Convert_PDFToExcelAllContents", resourceCulture);
  430. }
  431. }
  432. /// <summary>
  433. /// 查找类似 Create sheets for each page 的本地化字符串。
  434. /// </summary>
  435. public static string Convert_PDFToExcelAllContentsEachPage {
  436. get {
  437. return ResourceManager.GetString("Convert_PDFToExcelAllContentsEachPage", resourceCulture);
  438. }
  439. }
  440. /// <summary>
  441. /// 查找类似 Create single sheet for file 的本地化字符串。
  442. /// </summary>
  443. public static string Convert_PDFToExcelAllContentsFile {
  444. get {
  445. return ResourceManager.GetString("Convert_PDFToExcelAllContentsFile", resourceCulture);
  446. }
  447. }
  448. /// <summary>
  449. /// 查找类似 Only Tables 的本地化字符串。
  450. /// </summary>
  451. public static string Convert_PDFToExcelAllOnlyTables {
  452. get {
  453. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTables", resourceCulture);
  454. }
  455. }
  456. /// <summary>
  457. /// 查找类似 Create sheet for each page 的本地化字符串。
  458. /// </summary>
  459. public static string Convert_PDFToExcelAllOnlyTablesEachPage {
  460. get {
  461. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTablesEachPage", resourceCulture);
  462. }
  463. }
  464. /// <summary>
  465. /// 查找类似 Create sheet for each table 的本地化字符串。
  466. /// </summary>
  467. public static string Convert_PDFToExcelAllOnlyTablesEachTable {
  468. get {
  469. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTablesEachTable", resourceCulture);
  470. }
  471. }
  472. /// <summary>
  473. /// 查找类似 Create single sheet for file 的本地化字符串。
  474. /// </summary>
  475. public static string Convert_PDFToExcelAllOnlyTablesFile {
  476. get {
  477. return ResourceManager.GetString("Convert_PDFToExcelAllOnlyTablesFile", resourceCulture);
  478. }
  479. }
  480. /// <summary>
  481. /// 查找类似 Only Tables 的本地化字符串。
  482. /// </summary>
  483. public static string Convert_PDFToExcelOnlyText {
  484. get {
  485. return ResourceManager.GetString("Convert_PDFToExcelOnlyText", resourceCulture);
  486. }
  487. }
  488. /// <summary>
  489. /// 查找类似 Settings 的本地化字符串。
  490. /// </summary>
  491. public static string Convert_PDFToExcelSettings {
  492. get {
  493. return ResourceManager.GetString("Convert_PDFToExcelSettings", resourceCulture);
  494. }
  495. }
  496. /// <summary>
  497. /// 查找类似 PDF To Excel 的本地化字符串。
  498. /// </summary>
  499. public static string Convert_PDFToExcelTitle {
  500. get {
  501. return ResourceManager.GetString("Convert_PDFToExcelTitle", resourceCulture);
  502. }
  503. }
  504. /// <summary>
  505. /// 查找类似 PDF To HTML 的本地化字符串。
  506. /// </summary>
  507. public static string Convert_PDFToHTMLTitle {
  508. get {
  509. return ResourceManager.GetString("Convert_PDFToHTMLTitle", resourceCulture);
  510. }
  511. }
  512. /// <summary>
  513. /// 查找类似 BMP 的本地化字符串。
  514. /// </summary>
  515. public static string Convert_PDFToImageBMP {
  516. get {
  517. return ResourceManager.GetString("Convert_PDFToImageBMP", resourceCulture);
  518. }
  519. }
  520. /// <summary>
  521. /// 查找类似 Format 的本地化字符串。
  522. /// </summary>
  523. public static string Convert_PDFToImageFormat {
  524. get {
  525. return ResourceManager.GetString("Convert_PDFToImageFormat", resourceCulture);
  526. }
  527. }
  528. /// <summary>
  529. /// 查找类似 GIF 的本地化字符串。
  530. /// </summary>
  531. public static string Convert_PDFToImageGIF {
  532. get {
  533. return ResourceManager.GetString("Convert_PDFToImageGIF", resourceCulture);
  534. }
  535. }
  536. /// <summary>
  537. /// 查找类似 JPEG 的本地化字符串。
  538. /// </summary>
  539. public static string Convert_PDFToImageJPEG {
  540. get {
  541. return ResourceManager.GetString("Convert_PDFToImageJPEG", resourceCulture);
  542. }
  543. }
  544. /// <summary>
  545. /// 查找类似 JPEG-2000 的本地化字符串。
  546. /// </summary>
  547. public static string Convert_PDFToImageJPEG_2000 {
  548. get {
  549. return ResourceManager.GetString("Convert_PDFToImageJPEG-2000", resourceCulture);
  550. }
  551. }
  552. /// <summary>
  553. /// 查找类似 JPG 的本地化字符串。
  554. /// </summary>
  555. public static string Convert_PDFToImageJPG {
  556. get {
  557. return ResourceManager.GetString("Convert_PDFToImageJPG", resourceCulture);
  558. }
  559. }
  560. /// <summary>
  561. /// 查找类似 PNG 的本地化字符串。
  562. /// </summary>
  563. public static string Convert_PDFToImagePNG {
  564. get {
  565. return ResourceManager.GetString("Convert_PDFToImagePNG", resourceCulture);
  566. }
  567. }
  568. /// <summary>
  569. /// 查找类似 TGA 的本地化字符串。
  570. /// </summary>
  571. public static string Convert_PDFToImageTGA {
  572. get {
  573. return ResourceManager.GetString("Convert_PDFToImageTGA", resourceCulture);
  574. }
  575. }
  576. /// <summary>
  577. /// 查找类似 TIFF 的本地化字符串。
  578. /// </summary>
  579. public static string Convert_PDFToImageTIFF {
  580. get {
  581. return ResourceManager.GetString("Convert_PDFToImageTIFF", resourceCulture);
  582. }
  583. }
  584. /// <summary>
  585. /// 查找类似 PDF To Image 的本地化字符串。
  586. /// </summary>
  587. public static string Convert_PDFToImageTitle {
  588. get {
  589. return ResourceManager.GetString("Convert_PDFToImageTitle", resourceCulture);
  590. }
  591. }
  592. /// <summary>
  593. /// 查找类似 PDF To PPT 的本地化字符串。
  594. /// </summary>
  595. public static string Convert_PDFToPPTTitle {
  596. get {
  597. return ResourceManager.GetString("Convert_PDFToPPTTitle", resourceCulture);
  598. }
  599. }
  600. /// <summary>
  601. /// 查找类似 PDF To RTF 的本地化字符串。
  602. /// </summary>
  603. public static string Convert_PDFToRTFTitle {
  604. get {
  605. return ResourceManager.GetString("Convert_PDFToRTFTitle", resourceCulture);
  606. }
  607. }
  608. /// <summary>
  609. /// 查找类似 PDF To Text 的本地化字符串。
  610. /// </summary>
  611. public static string Convert_PDFToTextTitle {
  612. get {
  613. return ResourceManager.GetString("Convert_PDFToTextTitle", resourceCulture);
  614. }
  615. }
  616. /// <summary>
  617. /// 查找类似 PDF To Word 的本地化字符串。
  618. /// </summary>
  619. public static string Convert_PDFToWordTitle {
  620. get {
  621. return ResourceManager.GetString("Convert_PDFToWordTitle", resourceCulture);
  622. }
  623. }
  624. /// <summary>
  625. /// 查找类似 Convert 的本地化字符串。
  626. /// </summary>
  627. public static string Convert_Yes {
  628. get {
  629. return ResourceManager.GetString("Convert_Yes", resourceCulture);
  630. }
  631. }
  632. /// <summary>
  633. /// 查找类似 Create PDF failed 的本地化字符串。
  634. /// </summary>
  635. public static string CreateFileFailedWarning {
  636. get {
  637. return ResourceManager.GetString("CreateFileFailedWarning", resourceCulture);
  638. }
  639. }
  640. /// <summary>
  641. /// 查找类似 Are you sure to delete all annotations? 的本地化字符串。
  642. /// </summary>
  643. public static string DeleteAllAnnotation_Warning {
  644. get {
  645. return ResourceManager.GetString("DeleteAllAnnotation_Warning", resourceCulture);
  646. }
  647. }
  648. /// <summary>
  649. /// 查找类似 Hint 的本地化字符串。
  650. /// </summary>
  651. public static string Dialog_Hint {
  652. get {
  653. return ResourceManager.GetString("Dialog_Hint", resourceCulture);
  654. }
  655. }
  656. /// <summary>
  657. /// 查找类似 Incorrect input format
  658. ///
  659. ///The file format you selected is not supported by this feature, please select the correct input format. 的本地化字符串。
  660. /// </summary>
  661. public static string ErrorFile_Warning {
  662. get {
  663. return ResourceManager.GetString("ErrorFile_Warning", resourceCulture);
  664. }
  665. }
  666. /// <summary>
  667. /// 查找类似 Sorry, we couldn&apos;t find this PDF file. Is it possible it was moved, renamed or deleted? 的本地化字符串。
  668. /// </summary>
  669. public static string FileNotExistWarning {
  670. get {
  671. return ResourceManager.GetString("FileNotExistWarning", resourceCulture);
  672. }
  673. }
  674. /// <summary>
  675. /// 查找类似 Fill 的本地化字符串。
  676. /// </summary>
  677. public static string FreeText_Fill {
  678. get {
  679. return ResourceManager.GetString("FreeText_Fill", resourceCulture);
  680. }
  681. }
  682. /// <summary>
  683. /// 查找类似 Font 的本地化字符串。
  684. /// </summary>
  685. public static string FreeText_Font {
  686. get {
  687. return ResourceManager.GetString("FreeText_Font", resourceCulture);
  688. }
  689. }
  690. /// <summary>
  691. /// 查找类似 Text 的本地化字符串。
  692. /// </summary>
  693. public static string FreeText_Title {
  694. get {
  695. return ResourceManager.GetString("FreeText_Title", resourceCulture);
  696. }
  697. }
  698. /// <summary>
  699. /// 查找类似 Enter Read Mode, tap ESC to exit 的本地化字符串。
  700. /// </summary>
  701. public static string GlobalTip_ESCReadMode {
  702. get {
  703. return ResourceManager.GetString("GlobalTip_ESCReadMode", resourceCulture);
  704. }
  705. }
  706. /// <summary>
  707. /// 查找类似 Exit Read Mode 的本地化字符串。
  708. /// </summary>
  709. public static string GlobalTip_ExitReadMode {
  710. get {
  711. return ResourceManager.GetString("GlobalTip_ExitReadMode", resourceCulture);
  712. }
  713. }
  714. /// <summary>
  715. /// 查找类似 Highlight 的本地化字符串。
  716. /// </summary>
  717. public static string Highlight_Title {
  718. get {
  719. return ResourceManager.GetString("Highlight_Title", resourceCulture);
  720. }
  721. }
  722. /// <summary>
  723. /// 查找类似 Add File 的本地化字符串。
  724. /// </summary>
  725. public static string ImageToPDF_AddFile {
  726. get {
  727. return ResourceManager.GetString("ImageToPDF_AddFile", resourceCulture);
  728. }
  729. }
  730. /// <summary>
  731. /// 查找类似 Add Folder 的本地化字符串。
  732. /// </summary>
  733. public static string ImageToPDF_AddFolder {
  734. get {
  735. return ResourceManager.GetString("ImageToPDF_AddFolder", resourceCulture);
  736. }
  737. }
  738. /// <summary>
  739. /// 查找类似 Create PDF for each image 的本地化字符串。
  740. /// </summary>
  741. public static string ImageToPDF_Create {
  742. get {
  743. return ResourceManager.GetString("ImageToPDF_Create", resourceCulture);
  744. }
  745. }
  746. /// <summary>
  747. /// 查找类似 Drop files here or Click “Add Files” in bottom right corner. 的本地化字符串。
  748. /// </summary>
  749. public static string ImageToPDF_EmptyContext {
  750. get {
  751. return ResourceManager.GetString("ImageToPDF_EmptyContext", resourceCulture);
  752. }
  753. }
  754. /// <summary>
  755. /// 查找类似 Export 的本地化字符串。
  756. /// </summary>
  757. public static string ImageToPDF_ExportTitle {
  758. get {
  759. return ResourceManager.GetString("ImageToPDF_ExportTitle", resourceCulture);
  760. }
  761. }
  762. /// <summary>
  763. /// 查找类似 File Name 的本地化字符串。
  764. /// </summary>
  765. public static string ImageToPDF_FileName {
  766. get {
  767. return ResourceManager.GetString("ImageToPDF_FileName", resourceCulture);
  768. }
  769. }
  770. /// <summary>
  771. /// 查找类似 Delete 的本地化字符串。
  772. /// </summary>
  773. public static string ImageToPDF_MenuDelete {
  774. get {
  775. return ResourceManager.GetString("ImageToPDF_MenuDelete", resourceCulture);
  776. }
  777. }
  778. /// <summary>
  779. /// 查找类似 Show in Folder 的本地化字符串。
  780. /// </summary>
  781. public static string ImageToPDF_MenuShowFolder {
  782. get {
  783. return ResourceManager.GetString("ImageToPDF_MenuShowFolder", resourceCulture);
  784. }
  785. }
  786. /// <summary>
  787. /// 查找类似 Merge as one PDF document 的本地化字符串。
  788. /// </summary>
  789. public static string ImageToPDF_Merge {
  790. get {
  791. return ResourceManager.GetString("ImageToPDF_Merge", resourceCulture);
  792. }
  793. }
  794. /// <summary>
  795. /// 查找类似 Save as PDF 的本地化字符串。
  796. /// </summary>
  797. public static string ImageToPDF_SaveAsPDF {
  798. get {
  799. return ResourceManager.GetString("ImageToPDF_SaveAsPDF", resourceCulture);
  800. }
  801. }
  802. /// <summary>
  803. /// 查找类似 Select files 的本地化字符串。
  804. /// </summary>
  805. public static string ImageToPDF_SelectFiles {
  806. get {
  807. return ResourceManager.GetString("ImageToPDF_SelectFiles", resourceCulture);
  808. }
  809. }
  810. /// <summary>
  811. /// 查找类似 Settings 的本地化字符串。
  812. /// </summary>
  813. public static string ImageToPDF_Settings {
  814. get {
  815. return ResourceManager.GetString("ImageToPDF_Settings", resourceCulture);
  816. }
  817. }
  818. /// <summary>
  819. /// 查找类似 Size 的本地化字符串。
  820. /// </summary>
  821. public static string ImageToPDF_Size {
  822. get {
  823. return ResourceManager.GetString("ImageToPDF_Size", resourceCulture);
  824. }
  825. }
  826. /// <summary>
  827. /// 查找类似 Status 的本地化字符串。
  828. /// </summary>
  829. public static string ImageToPDF_Status {
  830. get {
  831. return ResourceManager.GetString("ImageToPDF_Status", resourceCulture);
  832. }
  833. }
  834. /// <summary>
  835. /// 查找类似 Image To PDF 的本地化字符串。
  836. /// </summary>
  837. public static string ImageToPDF_Title {
  838. get {
  839. return ResourceManager.GetString("ImageToPDF_Title", resourceCulture);
  840. }
  841. }
  842. /// <summary>
  843. /// 查找类似 Page 的本地化字符串。
  844. /// </summary>
  845. public static string Link_Page {
  846. get {
  847. return ResourceManager.GetString("Link_Page", resourceCulture);
  848. }
  849. }
  850. /// <summary>
  851. /// 查找类似 Link 的本地化字符串。
  852. /// </summary>
  853. public static string Link_Title {
  854. get {
  855. return ResourceManager.GetString("Link_Title", resourceCulture);
  856. }
  857. }
  858. /// <summary>
  859. /// 查找类似 No longer prompt 的本地化字符串。
  860. /// </summary>
  861. public static string Main_DoNotRemindAgain {
  862. get {
  863. return ResourceManager.GetString("Main_DoNotRemindAgain", resourceCulture);
  864. }
  865. }
  866. /// <summary>
  867. /// 查找类似 Want to save your changes to &apos;{0}&apos; ?
  868. /// Your changes will be lost if you don&apos;t save them. 的本地化字符串。
  869. /// </summary>
  870. public static string Main_ModifiedFileWarning {
  871. get {
  872. return ResourceManager.GetString("Main_ModifiedFileWarning", resourceCulture);
  873. }
  874. }
  875. /// <summary>
  876. /// 查找类似 Sorry, we couldn&apos;t find this PDF file. Is it possible it was moved, renamed or deleted? 的本地化字符串。
  877. /// </summary>
  878. public static string Main_TheFileNotExistWarning {
  879. get {
  880. return ResourceManager.GetString("Main_TheFileNotExistWarning", resourceCulture);
  881. }
  882. }
  883. /// <summary>
  884. /// 查找类似 Your file is taken by another app, so we recommend that you use [Save As] to save as a copy and edit it. 的本地化字符串。
  885. /// </summary>
  886. public static string Main_TheFileOccupiedWarning {
  887. get {
  888. return ResourceManager.GetString("Main_TheFileOccupiedWarning", resourceCulture);
  889. }
  890. }
  891. /// <summary>
  892. /// 查找类似 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. 的本地化字符串。
  893. /// </summary>
  894. public static string Main_TheFileReadonlyWarning {
  895. get {
  896. return ResourceManager.GetString("Main_TheFileReadonlyWarning", resourceCulture);
  897. }
  898. }
  899. /// <summary>
  900. /// 查找类似 The current file is fixed. Please save it by Save As. 的本地化字符串。
  901. /// </summary>
  902. public static string Main_TheFileRepairedWarning {
  903. get {
  904. return ResourceManager.GetString("Main_TheFileRepairedWarning", resourceCulture);
  905. }
  906. }
  907. /// <summary>
  908. /// 查找类似 Delete 的本地化字符串。
  909. /// </summary>
  910. public static string MenuRightMenuSignatureAnnot_Delete {
  911. get {
  912. return ResourceManager.GetString("MenuRightMenuSignatureAnnot_Delete", resourceCulture);
  913. }
  914. }
  915. /// <summary>
  916. /// 查找类似 Delete All Signatures 的本地化字符串。
  917. /// </summary>
  918. public static string MenuRightMenuSignatureAnnot_DeleteAll {
  919. get {
  920. return ResourceManager.GetString("MenuRightMenuSignatureAnnot_DeleteAll", resourceCulture);
  921. }
  922. }
  923. /// <summary>
  924. /// 查找类似 Export 的本地化字符串。
  925. /// </summary>
  926. public static string MenuRightMenuSignatureAnnot_Export {
  927. get {
  928. return ResourceManager.GetString("MenuRightMenuSignatureAnnot_Export", resourceCulture);
  929. }
  930. }
  931. /// <summary>
  932. /// 查找类似 PDF 的本地化字符串。
  933. /// </summary>
  934. public static string MenuRightMenuSignatureAnnotExport_PDF {
  935. get {
  936. return ResourceManager.GetString("MenuRightMenuSignatureAnnotExport_PDF", resourceCulture);
  937. }
  938. }
  939. /// <summary>
  940. /// 查找类似 PNG 的本地化字符串。
  941. /// </summary>
  942. public static string MenuRightMenuSignatureAnnotExport_PNG {
  943. get {
  944. return ResourceManager.GetString("MenuRightMenuSignatureAnnotExport_PNG", resourceCulture);
  945. }
  946. }
  947. /// <summary>
  948. /// 查找类似 Export Stamps 的本地化字符串。
  949. /// </summary>
  950. public static string MenuRightMenuStampAnnot_Export {
  951. get {
  952. return ResourceManager.GetString("MenuRightMenuStampAnnot_Export", resourceCulture);
  953. }
  954. }
  955. /// <summary>
  956. /// 查找类似 PDF 的本地化字符串。
  957. /// </summary>
  958. public static string MenuRightMenuStampAnnotExport_PDF {
  959. get {
  960. return ResourceManager.GetString("MenuRightMenuStampAnnotExport_PDF", resourceCulture);
  961. }
  962. }
  963. /// <summary>
  964. /// 查找类似 PNG 的本地化字符串。
  965. /// </summary>
  966. public static string MenuRightMenuStampAnnotExport_PNG {
  967. get {
  968. return ResourceManager.GetString("MenuRightMenuStampAnnotExport_PNG", resourceCulture);
  969. }
  970. }
  971. /// <summary>
  972. /// 查找类似 Add Files 的本地化字符串。
  973. /// </summary>
  974. public static string Merge_AddFiles {
  975. get {
  976. return ResourceManager.GetString("Merge_AddFiles", resourceCulture);
  977. }
  978. }
  979. /// <summary>
  980. /// 查找类似 Add Folder 的本地化字符串。
  981. /// </summary>
  982. public static string Merge_AddFolder {
  983. get {
  984. return ResourceManager.GetString("Merge_AddFolder", resourceCulture);
  985. }
  986. }
  987. /// <summary>
  988. /// 查找类似 Add an Open File 的本地化字符串。
  989. /// </summary>
  990. public static string Merge_AddOpenFile {
  991. get {
  992. return ResourceManager.GetString("Merge_AddOpenFile", resourceCulture);
  993. }
  994. }
  995. /// <summary>
  996. /// 查找类似 Selected files
  997. ///Drop files here or Click “Add Files” at bottom right button.
  998. ///Drag files to reorder as you need. 的本地化字符串。
  999. /// </summary>
  1000. public static string Merge_Hint {
  1001. get {
  1002. return ResourceManager.GetString("Merge_Hint", resourceCulture);
  1003. }
  1004. }
  1005. /// <summary>
  1006. /// 查找类似 Pages 的本地化字符串。
  1007. /// </summary>
  1008. public static string Merge_ItemPages {
  1009. get {
  1010. return ResourceManager.GetString("Merge_ItemPages", resourceCulture);
  1011. }
  1012. }
  1013. /// <summary>
  1014. /// 查找类似 Cancel 的本地化字符串。
  1015. /// </summary>
  1016. public static string Merge_No {
  1017. get {
  1018. return ResourceManager.GetString("Merge_No", resourceCulture);
  1019. }
  1020. }
  1021. /// <summary>
  1022. /// 查找类似 File Name 的本地化字符串。
  1023. /// </summary>
  1024. public static string Merge_TitleFileName {
  1025. get {
  1026. return ResourceManager.GetString("Merge_TitleFileName", resourceCulture);
  1027. }
  1028. }
  1029. /// <summary>
  1030. /// 查找类似 Page Range 的本地化字符串。
  1031. /// </summary>
  1032. public static string Merge_TitlePageRange {
  1033. get {
  1034. return ResourceManager.GetString("Merge_TitlePageRange", resourceCulture);
  1035. }
  1036. }
  1037. /// <summary>
  1038. /// 查找类似 Size 的本地化字符串。
  1039. /// </summary>
  1040. public static string Merge_TitleSize {
  1041. get {
  1042. return ResourceManager.GetString("Merge_TitleSize", resourceCulture);
  1043. }
  1044. }
  1045. /// <summary>
  1046. /// 查找类似 Merge 的本地化字符串。
  1047. /// </summary>
  1048. public static string Merge_Yes {
  1049. get {
  1050. return ResourceManager.GetString("Merge_Yes", resourceCulture);
  1051. }
  1052. }
  1053. /// <summary>
  1054. /// 查找类似 Close Tab 的本地化字符串。
  1055. /// </summary>
  1056. public static string MultipleTabs__Close {
  1057. get {
  1058. return ResourceManager.GetString("MultipleTabs_ Close", resourceCulture);
  1059. }
  1060. }
  1061. /// <summary>
  1062. /// 查找类似 Close All Tabs 的本地化字符串。
  1063. /// </summary>
  1064. public static string MultipleTabs__CloseAll {
  1065. get {
  1066. return ResourceManager.GetString("MultipleTabs_ CloseAll", resourceCulture);
  1067. }
  1068. }
  1069. /// <summary>
  1070. /// 查找类似 Show in Folder 的本地化字符串。
  1071. /// </summary>
  1072. public static string MultipleTabs__Folder {
  1073. get {
  1074. return ResourceManager.GetString("MultipleTabs_ Folder", resourceCulture);
  1075. }
  1076. }
  1077. /// <summary>
  1078. /// 查找类似 Home 的本地化字符串。
  1079. /// </summary>
  1080. public static string MultipleTabs_Default {
  1081. get {
  1082. return ResourceManager.GetString("MultipleTabs_Default", resourceCulture);
  1083. }
  1084. }
  1085. /// <summary>
  1086. /// 查找类似 Rename 的本地化字符串。
  1087. /// </summary>
  1088. public static string MultipleTabs_Rename {
  1089. get {
  1090. return ResourceManager.GetString("MultipleTabs_Rename", resourceCulture);
  1091. }
  1092. }
  1093. /// <summary>
  1094. /// 查找类似 {0} file could not be open. Please try again or choose another file. 的本地化字符串。
  1095. /// </summary>
  1096. public static string NoOffice_Warning {
  1097. get {
  1098. return ResourceManager.GetString("NoOffice_Warning", resourceCulture);
  1099. }
  1100. }
  1101. /// <summary>
  1102. /// 查找类似 Opacity 的本地化字符串。
  1103. /// </summary>
  1104. public static string Opacity_Title {
  1105. get {
  1106. return ResourceManager.GetString("Opacity_Title", resourceCulture);
  1107. }
  1108. }
  1109. /// <summary>
  1110. /// 查找类似 Operation failed, try again please 的本地化字符串。
  1111. /// </summary>
  1112. public static string OperationFailWarning {
  1113. get {
  1114. return ResourceManager.GetString("OperationFailWarning", resourceCulture);
  1115. }
  1116. }
  1117. /// <summary>
  1118. /// 查找类似 Add Item 的本地化字符串。
  1119. /// </summary>
  1120. public static string Outline_Add {
  1121. get {
  1122. return ResourceManager.GetString("Outline_Add", resourceCulture);
  1123. }
  1124. }
  1125. /// <summary>
  1126. /// 查找类似 Add To Higher Level 的本地化字符串。
  1127. /// </summary>
  1128. public static string Outline_AddLevel {
  1129. get {
  1130. return ResourceManager.GetString("Outline_AddLevel", resourceCulture);
  1131. }
  1132. }
  1133. /// <summary>
  1134. /// 查找类似 Add Sub-Item 的本地化字符串。
  1135. /// </summary>
  1136. public static string Outline_AddSub {
  1137. get {
  1138. return ResourceManager.GetString("Outline_AddSub", resourceCulture);
  1139. }
  1140. }
  1141. /// <summary>
  1142. /// 查找类似 Change Destination 的本地化字符串。
  1143. /// </summary>
  1144. public static string Outline_Change {
  1145. get {
  1146. return ResourceManager.GetString("Outline_Change", resourceCulture);
  1147. }
  1148. }
  1149. /// <summary>
  1150. /// 查找类似 Are you sure you want to set the destination as the current location? 的本地化字符串。
  1151. /// </summary>
  1152. public static string Outline_ChangeDest_Tips {
  1153. get {
  1154. return ResourceManager.GetString("Outline_ChangeDest_Tips", resourceCulture);
  1155. }
  1156. }
  1157. /// <summary>
  1158. /// 查找类似 Collapse All 的本地化字符串。
  1159. /// </summary>
  1160. public static string Outline_Collapse {
  1161. get {
  1162. return ResourceManager.GetString("Outline_Collapse", resourceCulture);
  1163. }
  1164. }
  1165. /// <summary>
  1166. /// 查找类似 Delete 的本地化字符串。
  1167. /// </summary>
  1168. public static string Outline_Delete {
  1169. get {
  1170. return ResourceManager.GetString("Outline_Delete", resourceCulture);
  1171. }
  1172. }
  1173. /// <summary>
  1174. /// 查找类似 Are you sure you want to set the destination as the current location? 的本地化字符串。
  1175. /// </summary>
  1176. public static string Outline_DialogContent {
  1177. get {
  1178. return ResourceManager.GetString("Outline_DialogContent", resourceCulture);
  1179. }
  1180. }
  1181. /// <summary>
  1182. /// 查找类似 No 的本地化字符串。
  1183. /// </summary>
  1184. public static string Outline_DialogNO {
  1185. get {
  1186. return ResourceManager.GetString("Outline_DialogNO", resourceCulture);
  1187. }
  1188. }
  1189. /// <summary>
  1190. /// 查找类似 Yes 的本地化字符串。
  1191. /// </summary>
  1192. public static string Outline_DialogYes {
  1193. get {
  1194. return ResourceManager.GetString("Outline_DialogYes", resourceCulture);
  1195. }
  1196. }
  1197. /// <summary>
  1198. /// 查找类似 Demote 的本地化字符串。
  1199. /// </summary>
  1200. public static string Outline_Down {
  1201. get {
  1202. return ResourceManager.GetString("Outline_Down", resourceCulture);
  1203. }
  1204. }
  1205. /// <summary>
  1206. /// 查找类似 Expand All 的本地化字符串。
  1207. /// </summary>
  1208. public static string Outline_Expand {
  1209. get {
  1210. return ResourceManager.GetString("Outline_Expand", resourceCulture);
  1211. }
  1212. }
  1213. /// <summary>
  1214. /// 查找类似 Remove All Outlines 的本地化字符串。
  1215. /// </summary>
  1216. public static string Outline_RemoveAll {
  1217. get {
  1218. return ResourceManager.GetString("Outline_RemoveAll", resourceCulture);
  1219. }
  1220. }
  1221. /// <summary>
  1222. /// 查找类似 Rename 的本地化字符串。
  1223. /// </summary>
  1224. public static string Outline_Rename {
  1225. get {
  1226. return ResourceManager.GetString("Outline_Rename", resourceCulture);
  1227. }
  1228. }
  1229. /// <summary>
  1230. /// 查找类似 Outline 的本地化字符串。
  1231. /// </summary>
  1232. public static string Outline_Title {
  1233. get {
  1234. return ResourceManager.GetString("Outline_Title", resourceCulture);
  1235. }
  1236. }
  1237. /// <summary>
  1238. /// 查找类似 Promote 的本地化字符串。
  1239. /// </summary>
  1240. public static string Outline_Up {
  1241. get {
  1242. return ResourceManager.GetString("Outline_Up", resourceCulture);
  1243. }
  1244. }
  1245. /// <summary>
  1246. /// 查找类似 This will permanently remove all outlines. Are you sure to continue? 的本地化字符串。
  1247. /// </summary>
  1248. public static string OutlineDeleteTips {
  1249. get {
  1250. return ResourceManager.GetString("OutlineDeleteTips", resourceCulture);
  1251. }
  1252. }
  1253. /// <summary>
  1254. /// 查找类似 Can&apos;t delete all pages. Please keep at least one page 的本地化字符串。
  1255. /// </summary>
  1256. public static string PageEdit_DeleteAllPage {
  1257. get {
  1258. return ResourceManager.GetString("PageEdit_DeleteAllPage", resourceCulture);
  1259. }
  1260. }
  1261. /// <summary>
  1262. /// 查找类似 Failed to complete this operation. 的本地化字符串。
  1263. /// </summary>
  1264. public static string PageEdit_Failed {
  1265. get {
  1266. return ResourceManager.GetString("PageEdit_Failed", resourceCulture);
  1267. }
  1268. }
  1269. /// <summary>
  1270. /// 查找类似 Copy 的本地化字符串。
  1271. /// </summary>
  1272. public static string PageEdit_MenuCopy {
  1273. get {
  1274. return ResourceManager.GetString("PageEdit_MenuCopy", resourceCulture);
  1275. }
  1276. }
  1277. /// <summary>
  1278. /// 查找类似 Cut 的本地化字符串。
  1279. /// </summary>
  1280. public static string PageEdit_MenuCut {
  1281. get {
  1282. return ResourceManager.GetString("PageEdit_MenuCut", resourceCulture);
  1283. }
  1284. }
  1285. /// <summary>
  1286. /// 查找类似 Delete 的本地化字符串。
  1287. /// </summary>
  1288. public static string PageEdit_MenuDelete {
  1289. get {
  1290. return ResourceManager.GetString("PageEdit_MenuDelete", resourceCulture);
  1291. }
  1292. }
  1293. /// <summary>
  1294. /// 查找类似 Paste 的本地化字符串。
  1295. /// </summary>
  1296. public static string PageEdit_MenuPaste {
  1297. get {
  1298. return ResourceManager.GetString("PageEdit_MenuPaste", resourceCulture);
  1299. }
  1300. }
  1301. /// <summary>
  1302. /// 查找类似 Print 的本地化字符串。
  1303. /// </summary>
  1304. public static string PageEdit_MenuPrint {
  1305. get {
  1306. return ResourceManager.GetString("PageEdit_MenuPrint", resourceCulture);
  1307. }
  1308. }
  1309. /// <summary>
  1310. /// 查找类似 Rotate Clockwise 的本地化字符串。
  1311. /// </summary>
  1312. public static string PageEdit_MenuRotateClockwise {
  1313. get {
  1314. return ResourceManager.GetString("PageEdit_MenuRotateClockwise", resourceCulture);
  1315. }
  1316. }
  1317. /// <summary>
  1318. /// 查找类似 Rotate Counterclockwise 的本地化字符串。
  1319. /// </summary>
  1320. public static string PageEdit_MenuRotateCounterclockwise {
  1321. get {
  1322. return ResourceManager.GetString("PageEdit_MenuRotateCounterclockwise", resourceCulture);
  1323. }
  1324. }
  1325. /// <summary>
  1326. /// 查找类似 Display Page Size 的本地化字符串。
  1327. /// </summary>
  1328. public static string PageEdit_MenuShowPageSize {
  1329. get {
  1330. return ResourceManager.GetString("PageEdit_MenuShowPageSize", resourceCulture);
  1331. }
  1332. }
  1333. /// <summary>
  1334. /// 查找类似 Invalid page range or the page number is out of range. Please try again. 的本地化字符串。
  1335. /// </summary>
  1336. public static string PageRangeWarning {
  1337. get {
  1338. return ResourceManager.GetString("PageRangeWarning", resourceCulture);
  1339. }
  1340. }
  1341. /// <summary>
  1342. /// 查找类似 Color 的本地化字符串。
  1343. /// </summary>
  1344. public static string Palette_Color {
  1345. get {
  1346. return ResourceManager.GetString("Palette_Color", resourceCulture);
  1347. }
  1348. }
  1349. /// <summary>
  1350. /// 查找类似 More 的本地化字符串。
  1351. /// </summary>
  1352. public static string Palette_More {
  1353. get {
  1354. return ResourceManager.GetString("Palette_More", resourceCulture);
  1355. }
  1356. }
  1357. /// <summary>
  1358. /// 查找类似 Recently Used 的本地化字符串。
  1359. /// </summary>
  1360. public static string Palette_Recently {
  1361. get {
  1362. return ResourceManager.GetString("Palette_Recently", resourceCulture);
  1363. }
  1364. }
  1365. /// <summary>
  1366. /// 查找类似 Black and white 的本地化字符串。
  1367. /// </summary>
  1368. public static string Print_BlackAndWhite {
  1369. get {
  1370. return ResourceManager.GetString("Print_BlackAndWhite", resourceCulture);
  1371. }
  1372. }
  1373. /// <summary>
  1374. /// 查找类似 Copies 的本地化字符串。
  1375. /// </summary>
  1376. public static string Print_Copies {
  1377. get {
  1378. return ResourceManager.GetString("Print_Copies", resourceCulture);
  1379. }
  1380. }
  1381. /// <summary>
  1382. /// 查找类似 Orientation: 的本地化字符串。
  1383. /// </summary>
  1384. public static string Print_Orientation {
  1385. get {
  1386. return ResourceManager.GetString("Print_Orientation", resourceCulture);
  1387. }
  1388. }
  1389. /// <summary>
  1390. /// 查找类似 Page Settings 的本地化字符串。
  1391. /// </summary>
  1392. public static string Print_PageSettings {
  1393. get {
  1394. return ResourceManager.GetString("Print_PageSettings", resourceCulture);
  1395. }
  1396. }
  1397. /// <summary>
  1398. /// 查找类似 Print Contents: 的本地化字符串。
  1399. /// </summary>
  1400. public static string Print_PrintContent {
  1401. get {
  1402. return ResourceManager.GetString("Print_PrintContent", resourceCulture);
  1403. }
  1404. }
  1405. /// <summary>
  1406. /// 查找类似 Printer 的本地化字符串。
  1407. /// </summary>
  1408. public static string Print_Printer {
  1409. get {
  1410. return ResourceManager.GetString("Print_Printer", resourceCulture);
  1411. }
  1412. }
  1413. /// <summary>
  1414. /// 查找类似 Print Settings 的本地化字符串。
  1415. /// </summary>
  1416. public static string Print_PrintSettings {
  1417. get {
  1418. return ResourceManager.GetString("Print_PrintSettings", resourceCulture);
  1419. }
  1420. }
  1421. /// <summary>
  1422. /// 查找类似 Reverse pages 的本地化字符串。
  1423. /// </summary>
  1424. public static string Print_ReversePages {
  1425. get {
  1426. return ResourceManager.GetString("Print_ReversePages", resourceCulture);
  1427. }
  1428. }
  1429. /// <summary>
  1430. /// 查找类似 Print 的本地化字符串。
  1431. /// </summary>
  1432. public static string Print_Title {
  1433. get {
  1434. return ResourceManager.GetString("Print_Title", resourceCulture);
  1435. }
  1436. }
  1437. /// <summary>
  1438. /// 查找类似 Do you want to clear all files list in Recent Files? 的本地化字符串。
  1439. /// </summary>
  1440. public static string RecentFiles_AllClearMsg {
  1441. get {
  1442. return ResourceManager.GetString("RecentFiles_AllClearMsg", resourceCulture);
  1443. }
  1444. }
  1445. /// <summary>
  1446. /// 查找类似 Do you want to clear the file list in Recent Files? 的本地化字符串。
  1447. /// </summary>
  1448. public static string RecentFiles_ClearMsg {
  1449. get {
  1450. return ResourceManager.GetString("RecentFiles_ClearMsg", resourceCulture);
  1451. }
  1452. }
  1453. /// <summary>
  1454. /// 查找类似 Do you want to clear the selected files list in Recent Files 的本地化字符串。
  1455. /// </summary>
  1456. public static string RecentFiles_SelectedClearMsg {
  1457. get {
  1458. return ResourceManager.GetString("RecentFiles_SelectedClearMsg", resourceCulture);
  1459. }
  1460. }
  1461. /// <summary>
  1462. /// 查找类似 Are you sure you want to remove the security settings for”{0}” documents? 的本地化字符串。
  1463. /// </summary>
  1464. public static string RemovePassword_Context {
  1465. get {
  1466. return ResourceManager.GetString("RemovePassword_Context", resourceCulture);
  1467. }
  1468. }
  1469. /// <summary>
  1470. /// 查找类似 Cancel 的本地化字符串。
  1471. /// </summary>
  1472. public static string RemovePassword_No {
  1473. get {
  1474. return ResourceManager.GetString("RemovePassword_No", resourceCulture);
  1475. }
  1476. }
  1477. /// <summary>
  1478. /// 查找类似 Remove 的本地化字符串。
  1479. /// </summary>
  1480. public static string RemovePassword_YES {
  1481. get {
  1482. return ResourceManager.GetString("RemovePassword_YES", resourceCulture);
  1483. }
  1484. }
  1485. /// <summary>
  1486. /// 查找类似 Sample 的本地化字符串。
  1487. /// </summary>
  1488. public static string Sample {
  1489. get {
  1490. return ResourceManager.GetString("Sample", resourceCulture);
  1491. }
  1492. }
  1493. /// <summary>
  1494. /// 查找类似 Open Failed
  1495. ///Failed to load environment.
  1496. ///Some functions may not work, please restart or re-download PDF Reader Pro from our official website. 的本地化字符串。
  1497. /// </summary>
  1498. public static string SDKLoadingFailed {
  1499. get {
  1500. return ResourceManager.GetString("SDKLoadingFailed", resourceCulture);
  1501. }
  1502. }
  1503. /// <summary>
  1504. /// 查找类似 Remove Passwords 的本地化字符串。
  1505. /// </summary>
  1506. public static string Security_RemovePassword {
  1507. get {
  1508. return ResourceManager.GetString("Security_RemovePassword", resourceCulture);
  1509. }
  1510. }
  1511. /// <summary>
  1512. /// 查找类似 Set Passwords 的本地化字符串。
  1513. /// </summary>
  1514. public static string Security_SetPassword {
  1515. get {
  1516. return ResourceManager.GetString("Security_SetPassword", resourceCulture);
  1517. }
  1518. }
  1519. /// <summary>
  1520. /// 查找类似 Cancel 的本地化字符串。
  1521. /// </summary>
  1522. public static string SetPassword_No {
  1523. get {
  1524. return ResourceManager.GetString("SetPassword_No", resourceCulture);
  1525. }
  1526. }
  1527. /// <summary>
  1528. /// 查找类似 Open Password 的本地化字符串。
  1529. /// </summary>
  1530. public static string SetPassword_OpenEmptyText {
  1531. get {
  1532. return ResourceManager.GetString("SetPassword_OpenEmptyText", resourceCulture);
  1533. }
  1534. }
  1535. /// <summary>
  1536. /// 查找类似 Document Open Password 的本地化字符串。
  1537. /// </summary>
  1538. public static string SetPassword_OpenTitle {
  1539. get {
  1540. return ResourceManager.GetString("SetPassword_OpenTitle", resourceCulture);
  1541. }
  1542. }
  1543. /// <summary>
  1544. /// 查找类似 Permission Password 的本地化字符串。
  1545. /// </summary>
  1546. public static string SetPassword_PermissionEmptyText {
  1547. get {
  1548. return ResourceManager.GetString("SetPassword_PermissionEmptyText", resourceCulture);
  1549. }
  1550. }
  1551. /// <summary>
  1552. /// 查找类似 Document Permission Password 的本地化字符串。
  1553. /// </summary>
  1554. public static string SetPassword_PermissionTitle {
  1555. get {
  1556. return ResourceManager.GetString("SetPassword_PermissionTitle", resourceCulture);
  1557. }
  1558. }
  1559. /// <summary>
  1560. /// 查找类似 Restrict content copying 的本地化字符串。
  1561. /// </summary>
  1562. public static string SetPassword_RestrictCopying {
  1563. get {
  1564. return ResourceManager.GetString("SetPassword_RestrictCopying", resourceCulture);
  1565. }
  1566. }
  1567. /// <summary>
  1568. /// 查找类似 Restrict document printing 的本地化字符串。
  1569. /// </summary>
  1570. public static string SetPassword_RestrictPrinting {
  1571. get {
  1572. return ResourceManager.GetString("SetPassword_RestrictPrinting", resourceCulture);
  1573. }
  1574. }
  1575. /// <summary>
  1576. /// 查找类似 Set Passwords 的本地化字符串。
  1577. /// </summary>
  1578. public static string SetPassword_Title {
  1579. get {
  1580. return ResourceManager.GetString("SetPassword_Title", resourceCulture);
  1581. }
  1582. }
  1583. /// <summary>
  1584. /// 查找类似 Encrypt 的本地化字符串。
  1585. /// </summary>
  1586. public static string SetPassword_YES {
  1587. get {
  1588. return ResourceManager.GetString("SetPassword_YES", resourceCulture);
  1589. }
  1590. }
  1591. /// <summary>
  1592. /// 查找类似 Annotation 的本地化字符串。
  1593. /// </summary>
  1594. public static string Settings_Annotation {
  1595. get {
  1596. return ResourceManager.GetString("Settings_Annotation", resourceCulture);
  1597. }
  1598. }
  1599. /// <summary>
  1600. /// 查找类似 Annotation Default Color 的本地化字符串。
  1601. /// </summary>
  1602. public static string Settings_Annotation_Annotation {
  1603. get {
  1604. return ResourceManager.GetString("Settings_Annotation_Annotation", resourceCulture);
  1605. }
  1606. }
  1607. /// <summary>
  1608. /// 查找类似 Circle Border: 的本地化字符串。
  1609. /// </summary>
  1610. public static string Settings_Annotation_CircleBorder {
  1611. get {
  1612. return ResourceManager.GetString("Settings_Annotation_CircleBorder", resourceCulture);
  1613. }
  1614. }
  1615. /// <summary>
  1616. /// 查找类似 Circle Fill: 的本地化字符串。
  1617. /// </summary>
  1618. public static string Settings_Annotation_CircleFill {
  1619. get {
  1620. return ResourceManager.GetString("Settings_Annotation_CircleFill", resourceCulture);
  1621. }
  1622. }
  1623. /// <summary>
  1624. /// 查找类似 Freehand: 的本地化字符串。
  1625. /// </summary>
  1626. public static string Settings_Annotation_Freehand {
  1627. get {
  1628. return ResourceManager.GetString("Settings_Annotation_Freehand", resourceCulture);
  1629. }
  1630. }
  1631. /// <summary>
  1632. /// 查找类似 Highlight: 的本地化字符串。
  1633. /// </summary>
  1634. public static string Settings_Annotation_Highlight {
  1635. get {
  1636. return ResourceManager.GetString("Settings_Annotation_Highlight", resourceCulture);
  1637. }
  1638. }
  1639. /// <summary>
  1640. /// 查找类似 Line: 的本地化字符串。
  1641. /// </summary>
  1642. public static string Settings_Annotation_Line {
  1643. get {
  1644. return ResourceManager.GetString("Settings_Annotation_Line", resourceCulture);
  1645. }
  1646. }
  1647. /// <summary>
  1648. /// 查找类似 Rectangle Border: 的本地化字符串。
  1649. /// </summary>
  1650. public static string Settings_Annotation_RectangleBorder {
  1651. get {
  1652. return ResourceManager.GetString("Settings_Annotation_RectangleBorder", resourceCulture);
  1653. }
  1654. }
  1655. /// <summary>
  1656. /// 查找类似 Rectangle Fill: 的本地化字符串。
  1657. /// </summary>
  1658. public static string Settings_Annotation_RectangleFill {
  1659. get {
  1660. return ResourceManager.GetString("Settings_Annotation_RectangleFill", resourceCulture);
  1661. }
  1662. }
  1663. /// <summary>
  1664. /// 查找类似 Sticky Note: 的本地化字符串。
  1665. /// </summary>
  1666. public static string Settings_Annotation_StickyNote {
  1667. get {
  1668. return ResourceManager.GetString("Settings_Annotation_StickyNote", resourceCulture);
  1669. }
  1670. }
  1671. /// <summary>
  1672. /// 查找类似 Strikethrough: 的本地化字符串。
  1673. /// </summary>
  1674. public static string Settings_Annotation_Strikethrough {
  1675. get {
  1676. return ResourceManager.GetString("Settings_Annotation_Strikethrough", resourceCulture);
  1677. }
  1678. }
  1679. /// <summary>
  1680. /// 查找类似 Text: 的本地化字符串。
  1681. /// </summary>
  1682. public static string Settings_Annotation_Text {
  1683. get {
  1684. return ResourceManager.GetString("Settings_Annotation_Text", resourceCulture);
  1685. }
  1686. }
  1687. /// <summary>
  1688. /// 查找类似 Text Box: 的本地化字符串。
  1689. /// </summary>
  1690. public static string Settings_Annotation_TextBox {
  1691. get {
  1692. return ResourceManager.GetString("Settings_Annotation_TextBox", resourceCulture);
  1693. }
  1694. }
  1695. /// <summary>
  1696. /// 查找类似 Underline: 的本地化字符串。
  1697. /// </summary>
  1698. public static string Settings_Annotation_Underline {
  1699. get {
  1700. return ResourceManager.GetString("Settings_Annotation_Underline", resourceCulture);
  1701. }
  1702. }
  1703. /// <summary>
  1704. /// 查找类似 Display 的本地化字符串。
  1705. /// </summary>
  1706. public static string Settings_Display {
  1707. get {
  1708. return ResourceManager.GetString("Settings_Display", resourceCulture);
  1709. }
  1710. }
  1711. /// <summary>
  1712. /// 查找类似 Actual size 的本地化字符串。
  1713. /// </summary>
  1714. public static string Settings_Display_Actualsize {
  1715. get {
  1716. return ResourceManager.GetString("Settings_Display_Actualsize", resourceCulture);
  1717. }
  1718. }
  1719. /// <summary>
  1720. /// 查找类似 Auto expand 的本地化字符串。
  1721. /// </summary>
  1722. public static string Settings_Display_Auto {
  1723. get {
  1724. return ResourceManager.GetString("Settings_Display_Auto", resourceCulture);
  1725. }
  1726. }
  1727. /// <summary>
  1728. /// 查找类似 Background Color 的本地化字符串。
  1729. /// </summary>
  1730. public static string Settings_Display_Background {
  1731. get {
  1732. return ResourceManager.GetString("Settings_Display_Background", resourceCulture);
  1733. }
  1734. }
  1735. /// <summary>
  1736. /// 查找类似 Book mode 的本地化字符串。
  1737. /// </summary>
  1738. public static string Settings_Display_Bookmode {
  1739. get {
  1740. return ResourceManager.GetString("Settings_Display_Bookmode", resourceCulture);
  1741. }
  1742. }
  1743. /// <summary>
  1744. /// 查找类似 Book mode continuous 的本地化字符串。
  1745. /// </summary>
  1746. public static string Settings_Display_Bookmodecon {
  1747. get {
  1748. return ResourceManager.GetString("Settings_Display_Bookmodecon", resourceCulture);
  1749. }
  1750. }
  1751. /// <summary>
  1752. /// 查找类似 Collapse when opening a file 的本地化字符串。
  1753. /// </summary>
  1754. public static string Settings_Display_Collapse {
  1755. get {
  1756. return ResourceManager.GetString("Settings_Display_Collapse", resourceCulture);
  1757. }
  1758. }
  1759. /// <summary>
  1760. /// 查找类似 Default Display 的本地化字符串。
  1761. /// </summary>
  1762. public static string Settings_Display_Default {
  1763. get {
  1764. return ResourceManager.GetString("Settings_Display_Default", resourceCulture);
  1765. }
  1766. }
  1767. /// <summary>
  1768. /// 查找类似 Default View 的本地化字符串。
  1769. /// </summary>
  1770. public static string Settings_Display_DefaultV {
  1771. get {
  1772. return ResourceManager.GetString("Settings_Display_DefaultV", resourceCulture);
  1773. }
  1774. }
  1775. /// <summary>
  1776. /// 查找类似 Display Mode 的本地化字符串。
  1777. /// </summary>
  1778. public static string Settings_Display_Display {
  1779. get {
  1780. return ResourceManager.GetString("Settings_Display_Display", resourceCulture);
  1781. }
  1782. }
  1783. /// <summary>
  1784. /// 查找类似 Fit page 的本地化字符串。
  1785. /// </summary>
  1786. public static string Settings_Display_Fitpage {
  1787. get {
  1788. return ResourceManager.GetString("Settings_Display_Fitpage", resourceCulture);
  1789. }
  1790. }
  1791. /// <summary>
  1792. /// 查找类似 Fit width 的本地化字符串。
  1793. /// </summary>
  1794. public static string Settings_Display_Fitwidth {
  1795. get {
  1796. return ResourceManager.GetString("Settings_Display_Fitwidth", resourceCulture);
  1797. }
  1798. }
  1799. /// <summary>
  1800. /// 查找类似 Full Screen 的本地化字符串。
  1801. /// </summary>
  1802. public static string Settings_Display_Full {
  1803. get {
  1804. return ResourceManager.GetString("Settings_Display_Full", resourceCulture);
  1805. }
  1806. }
  1807. /// <summary>
  1808. /// 查找类似 Highlight link 的本地化字符串。
  1809. /// </summary>
  1810. public static string Settings_Display_Highlight {
  1811. get {
  1812. return ResourceManager.GetString("Settings_Display_Highlight", resourceCulture);
  1813. }
  1814. }
  1815. /// <summary>
  1816. /// 查找类似 Left Panel 的本地化字符串。
  1817. /// </summary>
  1818. public static string Settings_Display_LeftPanel {
  1819. get {
  1820. return ResourceManager.GetString("Settings_Display_LeftPanel", resourceCulture);
  1821. }
  1822. }
  1823. /// <summary>
  1824. /// 查找类似 Manually expand 的本地化字符串。
  1825. /// </summary>
  1826. public static string Settings_Display_Manually {
  1827. get {
  1828. return ResourceManager.GetString("Settings_Display_Manually", resourceCulture);
  1829. }
  1830. }
  1831. /// <summary>
  1832. /// 查找类似 Normal 的本地化字符串。
  1833. /// </summary>
  1834. public static string Settings_Display_Normal {
  1835. get {
  1836. return ResourceManager.GetString("Settings_Display_Normal", resourceCulture);
  1837. }
  1838. }
  1839. /// <summary>
  1840. /// 查找类似 Page Display 的本地化字符串。
  1841. /// </summary>
  1842. public static string Settings_Display_Page {
  1843. get {
  1844. return ResourceManager.GetString("Settings_Display_Page", resourceCulture);
  1845. }
  1846. }
  1847. /// <summary>
  1848. /// 查找类似 Properties Panel 的本地化字符串。
  1849. /// </summary>
  1850. public static string Settings_Display_Properties {
  1851. get {
  1852. return ResourceManager.GetString("Settings_Display_Properties", resourceCulture);
  1853. }
  1854. }
  1855. /// <summary>
  1856. /// 查找类似 Remember last option when launching APP 的本地化字符串。
  1857. /// </summary>
  1858. public static string Settings_Display_Remember {
  1859. get {
  1860. return ResourceManager.GetString("Settings_Display_Remember", resourceCulture);
  1861. }
  1862. }
  1863. /// <summary>
  1864. /// 查找类似 Show outline list by default when outlines are available 的本地化字符串。
  1865. /// </summary>
  1866. public static string Settings_Display_Show {
  1867. get {
  1868. return ResourceManager.GetString("Settings_Display_Show", resourceCulture);
  1869. }
  1870. }
  1871. /// <summary>
  1872. /// 查找类似 Single page 的本地化字符串。
  1873. /// </summary>
  1874. public static string Settings_Display_Singlepage {
  1875. get {
  1876. return ResourceManager.GetString("Settings_Display_Singlepage", resourceCulture);
  1877. }
  1878. }
  1879. /// <summary>
  1880. /// 查找类似 Single page continuous 的本地化字符串。
  1881. /// </summary>
  1882. public static string Settings_Display_Singlepagecon {
  1883. get {
  1884. return ResourceManager.GetString("Settings_Display_Singlepagecon", resourceCulture);
  1885. }
  1886. }
  1887. /// <summary>
  1888. /// 查找类似 Two page 的本地化字符串。
  1889. /// </summary>
  1890. public static string Settings_Display_Twopage {
  1891. get {
  1892. return ResourceManager.GetString("Settings_Display_Twopage", resourceCulture);
  1893. }
  1894. }
  1895. /// <summary>
  1896. /// 查找类似 Two page continuous 的本地化字符串。
  1897. /// </summary>
  1898. public static string Settings_Display_Twopagecon {
  1899. get {
  1900. return ResourceManager.GetString("Settings_Display_Twopagecon", resourceCulture);
  1901. }
  1902. }
  1903. /// <summary>
  1904. /// 查找类似 Zoom Scale 的本地化字符串。
  1905. /// </summary>
  1906. public static string Settings_Display_Zoom {
  1907. get {
  1908. return ResourceManager.GetString("Settings_Display_Zoom", resourceCulture);
  1909. }
  1910. }
  1911. /// <summary>
  1912. /// 查找类似 General 的本地化字符串。
  1913. /// </summary>
  1914. public static string Settings_General {
  1915. get {
  1916. return ResourceManager.GetString("Settings_General", resourceCulture);
  1917. }
  1918. }
  1919. /// <summary>
  1920. /// 查找类似 A &quot;Save/No Save&quot; pop-up prompt 的本地化字符串。
  1921. /// </summary>
  1922. public static string Settings_General_ASave {
  1923. get {
  1924. return ResourceManager.GetString("Settings_General_ASave", resourceCulture);
  1925. }
  1926. }
  1927. /// <summary>
  1928. /// 查找类似 Author: 的本地化字符串。
  1929. /// </summary>
  1930. public static string Settings_General_Author {
  1931. get {
  1932. return ResourceManager.GetString("Settings_General_Author", resourceCulture);
  1933. }
  1934. }
  1935. /// <summary>
  1936. /// 查找类似 Auto-save frequency 的本地化字符串。
  1937. /// </summary>
  1938. public static string Settings_General_Auto {
  1939. get {
  1940. return ResourceManager.GetString("Settings_General_Auto", resourceCulture);
  1941. }
  1942. }
  1943. /// <summary>
  1944. /// 查找类似 Close document: 的本地化字符串。
  1945. /// </summary>
  1946. public static string Settings_General_Close {
  1947. get {
  1948. return ResourceManager.GetString("Settings_General_Close", resourceCulture);
  1949. }
  1950. }
  1951. /// <summary>
  1952. /// 查找类似 Documents 的本地化字符串。
  1953. /// </summary>
  1954. public static string Settings_General_Documents {
  1955. get {
  1956. return ResourceManager.GetString("Settings_General_Documents", resourceCulture);
  1957. }
  1958. }
  1959. /// <summary>
  1960. /// 查找类似 Maximum number of recent documents: 的本地化字符串。
  1961. /// </summary>
  1962. public static string Settings_General_Maximum {
  1963. get {
  1964. return ResourceManager.GetString("Settings_General_Maximum", resourceCulture);
  1965. }
  1966. }
  1967. /// <summary>
  1968. /// 查找类似 Open the last file by default at startup 的本地化字符串。
  1969. /// </summary>
  1970. public static string Settings_General_Open {
  1971. get {
  1972. return ResourceManager.GetString("Settings_General_Open", resourceCulture);
  1973. }
  1974. }
  1975. /// <summary>
  1976. /// 查找类似 Restore the last view setting when opening a file 的本地化字符串。
  1977. /// </summary>
  1978. public static string Settings_General_Restore {
  1979. get {
  1980. return ResourceManager.GetString("Settings_General_Restore", resourceCulture);
  1981. }
  1982. }
  1983. /// <summary>
  1984. /// 查找类似 Save directly without prompt 的本地化字符串。
  1985. /// </summary>
  1986. public static string Settings_General_Savedirectly {
  1987. get {
  1988. return ResourceManager.GetString("Settings_General_Savedirectly", resourceCulture);
  1989. }
  1990. }
  1991. /// <summary>
  1992. /// 查找类似 Preferences 的本地化字符串。
  1993. /// </summary>
  1994. public static string Settings_Preferences {
  1995. get {
  1996. return ResourceManager.GetString("Settings_Preferences", resourceCulture);
  1997. }
  1998. }
  1999. /// <summary>
  2000. /// 查找类似 Reset 的本地化字符串。
  2001. /// </summary>
  2002. public static string Settings_Reset {
  2003. get {
  2004. return ResourceManager.GetString("Settings_Reset", resourceCulture);
  2005. }
  2006. }
  2007. /// <summary>
  2008. /// 查找类似 Reset All 的本地化字符串。
  2009. /// </summary>
  2010. public static string Settings_ResetAll {
  2011. get {
  2012. return ResourceManager.GetString("Settings_ResetAll", resourceCulture);
  2013. }
  2014. }
  2015. /// <summary>
  2016. /// 查找类似 Please make sure Outlook is installed. 的本地化字符串。
  2017. /// </summary>
  2018. public static string Share_NoOutLookWarning {
  2019. get {
  2020. return ResourceManager.GetString("Share_NoOutLookWarning", resourceCulture);
  2021. }
  2022. }
  2023. /// <summary>
  2024. /// 查找类似 Clear 的本地化字符串。
  2025. /// </summary>
  2026. public static string Signatur_DialogClear {
  2027. get {
  2028. return ResourceManager.GetString("Signatur_DialogClear", resourceCulture);
  2029. }
  2030. }
  2031. /// <summary>
  2032. /// 查找类似 Drawing 的本地化字符串。
  2033. /// </summary>
  2034. public static string Signatur_DialogDraw {
  2035. get {
  2036. return ResourceManager.GetString("Signatur_DialogDraw", resourceCulture);
  2037. }
  2038. }
  2039. /// <summary>
  2040. /// 查找类似 Sign here 的本地化字符串。
  2041. /// </summary>
  2042. public static string Signatur_DialogDrawHint {
  2043. get {
  2044. return ResourceManager.GetString("Signatur_DialogDrawHint", resourceCulture);
  2045. }
  2046. }
  2047. /// <summary>
  2048. /// 查找类似 Cancel 的本地化字符串。
  2049. /// </summary>
  2050. public static string Signatur_DialogNo {
  2051. get {
  2052. return ResourceManager.GetString("Signatur_DialogNo", resourceCulture);
  2053. }
  2054. }
  2055. /// <summary>
  2056. /// 查找类似 Image 的本地化字符串。
  2057. /// </summary>
  2058. public static string Signatur_DialogPicture {
  2059. get {
  2060. return ResourceManager.GetString("Signatur_DialogPicture", resourceCulture);
  2061. }
  2062. }
  2063. /// <summary>
  2064. /// 查找类似 Select image file 的本地化字符串。
  2065. /// </summary>
  2066. public static string Signatur_DialogPictureHint {
  2067. get {
  2068. return ResourceManager.GetString("Signatur_DialogPictureHint", resourceCulture);
  2069. }
  2070. }
  2071. /// <summary>
  2072. /// 查找类似 Remove Background 的本地化字符串。
  2073. /// </summary>
  2074. public static string Signatur_DialogPictureReBkg {
  2075. get {
  2076. return ResourceManager.GetString("Signatur_DialogPictureReBkg", resourceCulture);
  2077. }
  2078. }
  2079. /// <summary>
  2080. /// 查找类似 Remove white background from images 的本地化字符串。
  2081. /// </summary>
  2082. public static string Signatur_DialogPictureReBkgHint {
  2083. get {
  2084. return ResourceManager.GetString("Signatur_DialogPictureReBkgHint", resourceCulture);
  2085. }
  2086. }
  2087. /// <summary>
  2088. /// 查找类似 Reselect 的本地化字符串。
  2089. /// </summary>
  2090. public static string Signatur_DialogPictureReselect {
  2091. get {
  2092. return ResourceManager.GetString("Signatur_DialogPictureReselect", resourceCulture);
  2093. }
  2094. }
  2095. /// <summary>
  2096. /// 查找类似 Keyboard 的本地化字符串。
  2097. /// </summary>
  2098. public static string Signatur_DialogText {
  2099. get {
  2100. return ResourceManager.GetString("Signatur_DialogText", resourceCulture);
  2101. }
  2102. }
  2103. /// <summary>
  2104. /// 查找类似 Enter your signature here 的本地化字符串。
  2105. /// </summary>
  2106. public static string Signatur_DialogTextHint {
  2107. get {
  2108. return ResourceManager.GetString("Signatur_DialogTextHint", resourceCulture);
  2109. }
  2110. }
  2111. /// <summary>
  2112. /// 查找类似 Create New Signature 的本地化字符串。
  2113. /// </summary>
  2114. public static string Signatur_DialogTitle {
  2115. get {
  2116. return ResourceManager.GetString("Signatur_DialogTitle", resourceCulture);
  2117. }
  2118. }
  2119. /// <summary>
  2120. /// 查找类似 Apply 的本地化字符串。
  2121. /// </summary>
  2122. public static string Signatur_DialogYes {
  2123. get {
  2124. return ResourceManager.GetString("Signatur_DialogYes", resourceCulture);
  2125. }
  2126. }
  2127. /// <summary>
  2128. /// 查找类似 Signature 的本地化字符串。
  2129. /// </summary>
  2130. public static string Signatur_Title {
  2131. get {
  2132. return ResourceManager.GetString("Signatur_Title", resourceCulture);
  2133. }
  2134. }
  2135. /// <summary>
  2136. /// 查找类似 Do you want to delete all signatures? 的本地化字符串。
  2137. /// </summary>
  2138. public static string Signature_deleteAllWarning {
  2139. get {
  2140. return ResourceManager.GetString("Signature_deleteAllWarning", resourceCulture);
  2141. }
  2142. }
  2143. /// <summary>
  2144. /// 查找类似 Stamp 的本地化字符串。
  2145. /// </summary>
  2146. public static string Stamp_Title {
  2147. get {
  2148. return ResourceManager.GetString("Stamp_Title", resourceCulture);
  2149. }
  2150. }
  2151. /// <summary>
  2152. /// 查找类似 Strikethrough 的本地化字符串。
  2153. /// </summary>
  2154. public static string Strikethrough_Title {
  2155. get {
  2156. return ResourceManager.GetString("Strikethrough_Title", resourceCulture);
  2157. }
  2158. }
  2159. /// <summary>
  2160. /// 查找类似 Thumbnails 的本地化字符串。
  2161. /// </summary>
  2162. public static string Thumbnails_Title {
  2163. get {
  2164. return ResourceManager.GetString("Thumbnails_Title", resourceCulture);
  2165. }
  2166. }
  2167. /// <summary>
  2168. /// 查找类似 Compress 的本地化字符串。
  2169. /// </summary>
  2170. public static string ToolsBar_Compress {
  2171. get {
  2172. return ResourceManager.GetString("ToolsBar_Compress", resourceCulture);
  2173. }
  2174. }
  2175. /// <summary>
  2176. /// 查找类似 Crop 的本地化字符串。
  2177. /// </summary>
  2178. public static string ToolsBar_Crop {
  2179. get {
  2180. return ResourceManager.GetString("ToolsBar_Crop", resourceCulture);
  2181. }
  2182. }
  2183. /// <summary>
  2184. /// 查找类似 Merge 的本地化字符串。
  2185. /// </summary>
  2186. public static string ToolsBar_Merge {
  2187. get {
  2188. return ResourceManager.GetString("ToolsBar_Merge", resourceCulture);
  2189. }
  2190. }
  2191. /// <summary>
  2192. /// 查找类似 Security 的本地化字符串。
  2193. /// </summary>
  2194. public static string ToolsBar_Security {
  2195. get {
  2196. return ResourceManager.GetString("ToolsBar_Security", resourceCulture);
  2197. }
  2198. }
  2199. /// <summary>
  2200. /// 查找类似 Underline 的本地化字符串。
  2201. /// </summary>
  2202. public static string Underline_Title {
  2203. get {
  2204. return ResourceManager.GetString("Underline_Title", resourceCulture);
  2205. }
  2206. }
  2207. /// <summary>
  2208. /// 查找类似 Book Mode 的本地化字符串。
  2209. /// </summary>
  2210. public static string ViewProperties_Book {
  2211. get {
  2212. return ResourceManager.GetString("ViewProperties_Book", resourceCulture);
  2213. }
  2214. }
  2215. /// <summary>
  2216. /// 查找类似 Continuous Scroll 的本地化字符串。
  2217. /// </summary>
  2218. public static string ViewProperties_ContinuousScroll {
  2219. get {
  2220. return ResourceManager.GetString("ViewProperties_ContinuousScroll", resourceCulture);
  2221. }
  2222. }
  2223. /// <summary>
  2224. /// 查找类似 Full Screen 的本地化字符串。
  2225. /// </summary>
  2226. public static string ViewProperties_Full {
  2227. get {
  2228. return ResourceManager.GetString("ViewProperties_Full", resourceCulture);
  2229. }
  2230. }
  2231. /// <summary>
  2232. /// 查找类似 Display Mode 的本地化字符串。
  2233. /// </summary>
  2234. public static string ViewProperties_Mode {
  2235. get {
  2236. return ResourceManager.GetString("ViewProperties_Mode", resourceCulture);
  2237. }
  2238. }
  2239. /// <summary>
  2240. /// 查找类似 Page Break 的本地化字符串。
  2241. /// </summary>
  2242. public static string ViewProperties_PageBreak {
  2243. get {
  2244. return ResourceManager.GetString("ViewProperties_PageBreak", resourceCulture);
  2245. }
  2246. }
  2247. /// <summary>
  2248. /// 查找类似 Read Mode 的本地化字符串。
  2249. /// </summary>
  2250. public static string ViewProperties_Read {
  2251. get {
  2252. return ResourceManager.GetString("ViewProperties_Read", resourceCulture);
  2253. }
  2254. }
  2255. /// <summary>
  2256. /// 查找类似 Rotate 的本地化字符串。
  2257. /// </summary>
  2258. public static string ViewProperties_RotateTitle {
  2259. get {
  2260. return ResourceManager.GetString("ViewProperties_RotateTitle", resourceCulture);
  2261. }
  2262. }
  2263. /// <summary>
  2264. /// 查找类似 Single Page 的本地化字符串。
  2265. /// </summary>
  2266. public static string ViewProperties_Single {
  2267. get {
  2268. return ResourceManager.GetString("ViewProperties_Single", resourceCulture);
  2269. }
  2270. }
  2271. /// <summary>
  2272. /// 查找类似 View 的本地化字符串。
  2273. /// </summary>
  2274. public static string ViewProperties_Title {
  2275. get {
  2276. return ResourceManager.GetString("ViewProperties_Title", resourceCulture);
  2277. }
  2278. }
  2279. /// <summary>
  2280. /// 查找类似 Two Pages 的本地化字符串。
  2281. /// </summary>
  2282. public static string ViewProperties_Two {
  2283. get {
  2284. return ResourceManager.GetString("ViewProperties_Two", resourceCulture);
  2285. }
  2286. }
  2287. /// <summary>
  2288. /// 查找类似 Actual Size 的本地化字符串。
  2289. /// </summary>
  2290. public static string ViewRightMenu_ActualSize {
  2291. get {
  2292. return ResourceManager.GetString("ViewRightMenu_ActualSize", resourceCulture);
  2293. }
  2294. }
  2295. /// <summary>
  2296. /// 查找类似 Add Bookmarks 的本地化字符串。
  2297. /// </summary>
  2298. public static string ViewRightMenu_AddBookmarks {
  2299. get {
  2300. return ResourceManager.GetString("ViewRightMenu_AddBookmarks", resourceCulture);
  2301. }
  2302. }
  2303. /// <summary>
  2304. /// 查找类似 Add Comment 的本地化字符串。
  2305. /// </summary>
  2306. public static string ViewRightMenu_AddComment {
  2307. get {
  2308. return ResourceManager.GetString("ViewRightMenu_AddComment", resourceCulture);
  2309. }
  2310. }
  2311. /// <summary>
  2312. /// 查找类似 Add Link 的本地化字符串。
  2313. /// </summary>
  2314. public static string ViewRightMenu_AddLink {
  2315. get {
  2316. return ResourceManager.GetString("ViewRightMenu_AddLink", resourceCulture);
  2317. }
  2318. }
  2319. /// <summary>
  2320. /// 查找类似 Add Outline 的本地化字符串。
  2321. /// </summary>
  2322. public static string ViewRightMenu_AddOutline {
  2323. get {
  2324. return ResourceManager.GetString("ViewRightMenu_AddOutline", resourceCulture);
  2325. }
  2326. }
  2327. /// <summary>
  2328. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  2329. /// </summary>
  2330. public static string ViewRightMenu_AreaZoom {
  2331. get {
  2332. return ResourceManager.GetString("ViewRightMenu_AreaZoom", resourceCulture);
  2333. }
  2334. }
  2335. /// <summary>
  2336. /// 查找类似 Arrow 的本地化字符串。
  2337. /// </summary>
  2338. public static string ViewRightMenu_Arrow {
  2339. get {
  2340. return ResourceManager.GetString("ViewRightMenu_Arrow", resourceCulture);
  2341. }
  2342. }
  2343. /// <summary>
  2344. /// 查找类似 Book Mode 的本地化字符串。
  2345. /// </summary>
  2346. public static string ViewRightMenu_BookMode {
  2347. get {
  2348. return ResourceManager.GetString("ViewRightMenu_BookMode", resourceCulture);
  2349. }
  2350. }
  2351. /// <summary>
  2352. /// 查找类似 Content Selection 的本地化字符串。
  2353. /// </summary>
  2354. public static string ViewRightMenu_ContentSelection {
  2355. get {
  2356. return ResourceManager.GetString("ViewRightMenu_ContentSelection", resourceCulture);
  2357. }
  2358. }
  2359. /// <summary>
  2360. /// 查找类似 Copy 的本地化字符串。
  2361. /// </summary>
  2362. public static string ViewRightMenu_Copy {
  2363. get {
  2364. return ResourceManager.GetString("ViewRightMenu_Copy", resourceCulture);
  2365. }
  2366. }
  2367. /// <summary>
  2368. /// 查找类似 Extract Image 的本地化字符串。
  2369. /// </summary>
  2370. public static string ViewRightMenu_ExtractImage {
  2371. get {
  2372. return ResourceManager.GetString("ViewRightMenu_ExtractImage", resourceCulture);
  2373. }
  2374. }
  2375. /// <summary>
  2376. /// 查找类似 Fit Page 的本地化字符串。
  2377. /// </summary>
  2378. public static string ViewRightMenu_FitPage {
  2379. get {
  2380. return ResourceManager.GetString("ViewRightMenu_FitPage", resourceCulture);
  2381. }
  2382. }
  2383. /// <summary>
  2384. /// 查找类似 Fit Width 的本地化字符串。
  2385. /// </summary>
  2386. public static string ViewRightMenu_FitWidth {
  2387. get {
  2388. return ResourceManager.GetString("ViewRightMenu_FitWidth", resourceCulture);
  2389. }
  2390. }
  2391. /// <summary>
  2392. /// 查找类似 Freehand 的本地化字符串。
  2393. /// </summary>
  2394. public static string ViewRightMenu_Freehand {
  2395. get {
  2396. return ResourceManager.GetString("ViewRightMenu_Freehand", resourceCulture);
  2397. }
  2398. }
  2399. /// <summary>
  2400. /// 查找类似 Hide Annotations 的本地化字符串。
  2401. /// </summary>
  2402. public static string ViewRightMenu_HideAnnotations {
  2403. get {
  2404. return ResourceManager.GetString("ViewRightMenu_HideAnnotations", resourceCulture);
  2405. }
  2406. }
  2407. /// <summary>
  2408. /// 查找类似 Highlight 的本地化字符串。
  2409. /// </summary>
  2410. public static string ViewRightMenu_Highlight {
  2411. get {
  2412. return ResourceManager.GetString("ViewRightMenu_Highlight", resourceCulture);
  2413. }
  2414. }
  2415. /// <summary>
  2416. /// 查找类似 Link 的本地化字符串。
  2417. /// </summary>
  2418. public static string ViewRightMenu_Link {
  2419. get {
  2420. return ResourceManager.GetString("ViewRightMenu_Link", resourceCulture);
  2421. }
  2422. }
  2423. /// <summary>
  2424. /// 查找类似 Note 的本地化字符串。
  2425. /// </summary>
  2426. public static string ViewRightMenu_Note {
  2427. get {
  2428. return ResourceManager.GetString("ViewRightMenu_Note", resourceCulture);
  2429. }
  2430. }
  2431. /// <summary>
  2432. /// 查找类似 Read Mode On 的本地化字符串。
  2433. /// </summary>
  2434. public static string ViewRightMenu_OnReadMode {
  2435. get {
  2436. return ResourceManager.GetString("ViewRightMenu_OnReadMode", resourceCulture);
  2437. }
  2438. }
  2439. /// <summary>
  2440. /// 查找类似 Read Mode Off 的本地化字符串。
  2441. /// </summary>
  2442. public static string ViewRightMenu_OutReadMode {
  2443. get {
  2444. return ResourceManager.GetString("ViewRightMenu_OutReadMode", resourceCulture);
  2445. }
  2446. }
  2447. /// <summary>
  2448. /// 查找类似 Oval 的本地化字符串。
  2449. /// </summary>
  2450. public static string ViewRightMenu_Oval {
  2451. get {
  2452. return ResourceManager.GetString("ViewRightMenu_Oval", resourceCulture);
  2453. }
  2454. }
  2455. /// <summary>
  2456. /// 查找类似 Page Display 的本地化字符串。
  2457. /// </summary>
  2458. public static string ViewRightMenu_PageDisplay {
  2459. get {
  2460. return ResourceManager.GetString("ViewRightMenu_PageDisplay", resourceCulture);
  2461. }
  2462. }
  2463. /// <summary>
  2464. /// 查找类似 Paste 的本地化字符串。
  2465. /// </summary>
  2466. public static string ViewRightMenu_Paste {
  2467. get {
  2468. return ResourceManager.GetString("ViewRightMenu_Paste", resourceCulture);
  2469. }
  2470. }
  2471. /// <summary>
  2472. /// 查找类似 Print 的本地化字符串。
  2473. /// </summary>
  2474. public static string ViewRightMenu_Print {
  2475. get {
  2476. return ResourceManager.GetString("ViewRightMenu_Print", resourceCulture);
  2477. }
  2478. }
  2479. /// <summary>
  2480. /// 查找类似 Rectangle 的本地化字符串。
  2481. /// </summary>
  2482. public static string ViewRightMenu_Rectangle {
  2483. get {
  2484. return ResourceManager.GetString("ViewRightMenu_Rectangle", resourceCulture);
  2485. }
  2486. }
  2487. /// <summary>
  2488. /// 查找类似 Remove Bookmarks 的本地化字符串。
  2489. /// </summary>
  2490. public static string ViewRightMenu_RemoveBookmarks {
  2491. get {
  2492. return ResourceManager.GetString("ViewRightMenu_RemoveBookmarks", resourceCulture);
  2493. }
  2494. }
  2495. /// <summary>
  2496. /// 查找类似 Scroll Tool 的本地化字符串。
  2497. /// </summary>
  2498. public static string ViewRightMenu_ScrollTool {
  2499. get {
  2500. return ResourceManager.GetString("ViewRightMenu_ScrollTool", resourceCulture);
  2501. }
  2502. }
  2503. /// <summary>
  2504. /// 查找类似 Search 的本地化字符串。
  2505. /// </summary>
  2506. public static string ViewRightMenu_Search {
  2507. get {
  2508. return ResourceManager.GetString("ViewRightMenu_Search", resourceCulture);
  2509. }
  2510. }
  2511. /// <summary>
  2512. /// 查找类似 Show Annotations 的本地化字符串。
  2513. /// </summary>
  2514. public static string ViewRightMenu_ShowAnnotations {
  2515. get {
  2516. return ResourceManager.GetString("ViewRightMenu_ShowAnnotations", resourceCulture);
  2517. }
  2518. }
  2519. /// <summary>
  2520. /// 查找类似 Signature 的本地化字符串。
  2521. /// </summary>
  2522. public static string ViewRightMenu_Signature {
  2523. get {
  2524. return ResourceManager.GetString("ViewRightMenu_Signature", resourceCulture);
  2525. }
  2526. }
  2527. /// <summary>
  2528. /// 查找类似 Single Page 的本地化字符串。
  2529. /// </summary>
  2530. public static string ViewRightMenu_SinglePage {
  2531. get {
  2532. return ResourceManager.GetString("ViewRightMenu_SinglePage", resourceCulture);
  2533. }
  2534. }
  2535. /// <summary>
  2536. /// 查找类似 Single Page Continuous 的本地化字符串。
  2537. /// </summary>
  2538. public static string ViewRightMenu_SinglePageContinuous {
  2539. get {
  2540. return ResourceManager.GetString("ViewRightMenu_SinglePageContinuous", resourceCulture);
  2541. }
  2542. }
  2543. /// <summary>
  2544. /// 查找类似 Stamp 的本地化字符串。
  2545. /// </summary>
  2546. public static string ViewRightMenu_Stamp {
  2547. get {
  2548. return ResourceManager.GetString("ViewRightMenu_Stamp", resourceCulture);
  2549. }
  2550. }
  2551. /// <summary>
  2552. /// 查找类似 Straight Line 的本地化字符串。
  2553. /// </summary>
  2554. public static string ViewRightMenu_StraightLine {
  2555. get {
  2556. return ResourceManager.GetString("ViewRightMenu_StraightLine", resourceCulture);
  2557. }
  2558. }
  2559. /// <summary>
  2560. /// 查找类似 Strikethrough 的本地化字符串。
  2561. /// </summary>
  2562. public static string ViewRightMenu_Strikethrough {
  2563. get {
  2564. return ResourceManager.GetString("ViewRightMenu_Strikethrough", resourceCulture);
  2565. }
  2566. }
  2567. /// <summary>
  2568. /// 查找类似 Text 的本地化字符串。
  2569. /// </summary>
  2570. public static string ViewRightMenu_Text {
  2571. get {
  2572. return ResourceManager.GetString("ViewRightMenu_Text", resourceCulture);
  2573. }
  2574. }
  2575. /// <summary>
  2576. /// 查找类似 Two Pages 的本地化字符串。
  2577. /// </summary>
  2578. public static string ViewRightMenu_TwoPages {
  2579. get {
  2580. return ResourceManager.GetString("ViewRightMenu_TwoPages", resourceCulture);
  2581. }
  2582. }
  2583. /// <summary>
  2584. /// 查找类似 Two Pages Continuous 的本地化字符串。
  2585. /// </summary>
  2586. public static string ViewRightMenu_TwoPagesContinuous {
  2587. get {
  2588. return ResourceManager.GetString("ViewRightMenu_TwoPagesContinuous", resourceCulture);
  2589. }
  2590. }
  2591. /// <summary>
  2592. /// 查找类似 Underline 的本地化字符串。
  2593. /// </summary>
  2594. public static string ViewRightMenu_Underline {
  2595. get {
  2596. return ResourceManager.GetString("ViewRightMenu_Underline", resourceCulture);
  2597. }
  2598. }
  2599. /// <summary>
  2600. /// 查找类似 Zoom 的本地化字符串。
  2601. /// </summary>
  2602. public static string ViewRightMenu_Zoom {
  2603. get {
  2604. return ResourceManager.GetString("ViewRightMenu_Zoom", resourceCulture);
  2605. }
  2606. }
  2607. /// <summary>
  2608. /// 查找类似 Zoom In 的本地化字符串。
  2609. /// </summary>
  2610. public static string ViewRightMenu_ZoomIn {
  2611. get {
  2612. return ResourceManager.GetString("ViewRightMenu_ZoomIn", resourceCulture);
  2613. }
  2614. }
  2615. /// <summary>
  2616. /// 查找类似 Zoom Out 的本地化字符串。
  2617. /// </summary>
  2618. public static string ViewRightMenu_ZoomOut {
  2619. get {
  2620. return ResourceManager.GetString("ViewRightMenu_ZoomOut", resourceCulture);
  2621. }
  2622. }
  2623. /// <summary>
  2624. /// 查找类似 Note 的本地化字符串。
  2625. /// </summary>
  2626. public static string ViewRightMenuAnnot_AddNote {
  2627. get {
  2628. return ResourceManager.GetString("ViewRightMenuAnnot_AddNote", resourceCulture);
  2629. }
  2630. }
  2631. /// <summary>
  2632. /// 查找类似 Copy 的本地化字符串。
  2633. /// </summary>
  2634. public static string ViewRightMenuAnnot_Copy {
  2635. get {
  2636. return ResourceManager.GetString("ViewRightMenuAnnot_Copy", resourceCulture);
  2637. }
  2638. }
  2639. /// <summary>
  2640. /// 查找类似 Cut 的本地化字符串。
  2641. /// </summary>
  2642. public static string ViewRightMenuAnnot_Cut {
  2643. get {
  2644. return ResourceManager.GetString("ViewRightMenuAnnot_Cut", resourceCulture);
  2645. }
  2646. }
  2647. /// <summary>
  2648. /// 查找类似 Set as Default 的本地化字符串。
  2649. /// </summary>
  2650. public static string ViewRightMenuAnnot_Default {
  2651. get {
  2652. return ResourceManager.GetString("ViewRightMenuAnnot_Default", resourceCulture);
  2653. }
  2654. }
  2655. /// <summary>
  2656. /// 查找类似 Delete 的本地化字符串。
  2657. /// </summary>
  2658. public static string ViewRightMenuAnnot_Delete {
  2659. get {
  2660. return ResourceManager.GetString("ViewRightMenuAnnot_Delete", resourceCulture);
  2661. }
  2662. }
  2663. /// <summary>
  2664. /// 查找类似 Paste 的本地化字符串。
  2665. /// </summary>
  2666. public static string ViewRightMenuAnnot_Paste {
  2667. get {
  2668. return ResourceManager.GetString("ViewRightMenuAnnot_Paste", resourceCulture);
  2669. }
  2670. }
  2671. /// <summary>
  2672. /// 查找类似 Add Bookmarks 的本地化字符串。
  2673. /// </summary>
  2674. public static string ViewRightMenuBlankSpace_AddBookmarks {
  2675. get {
  2676. return ResourceManager.GetString("ViewRightMenuBlankSpace_AddBookmarks", resourceCulture);
  2677. }
  2678. }
  2679. /// <summary>
  2680. /// 查找类似 Add Comment 的本地化字符串。
  2681. /// </summary>
  2682. public static string ViewRightMenuBlankSpace_AddComment {
  2683. get {
  2684. return ResourceManager.GetString("ViewRightMenuBlankSpace_AddComment", resourceCulture);
  2685. }
  2686. }
  2687. /// <summary>
  2688. /// 查找类似 Content Selection 的本地化字符串。
  2689. /// </summary>
  2690. public static string ViewRightMenuBlankSpace_ContentSelection {
  2691. get {
  2692. return ResourceManager.GetString("ViewRightMenuBlankSpace_ContentSelection", resourceCulture);
  2693. }
  2694. }
  2695. /// <summary>
  2696. /// 查找类似 Default Tool 的本地化字符串。
  2697. /// </summary>
  2698. public static string ViewRightMenuBlankSpace_DefaultTool {
  2699. get {
  2700. return ResourceManager.GetString("ViewRightMenuBlankSpace_DefaultTool", resourceCulture);
  2701. }
  2702. }
  2703. /// <summary>
  2704. /// 查找类似 Freehand 的本地化字符串。
  2705. /// </summary>
  2706. public static string ViewRightMenuBlankSpace_Freehand {
  2707. get {
  2708. return ResourceManager.GetString("ViewRightMenuBlankSpace_Freehand", resourceCulture);
  2709. }
  2710. }
  2711. /// <summary>
  2712. /// 查找类似 Hide Annotations 的本地化字符串。
  2713. /// </summary>
  2714. public static string ViewRightMenuBlankSpace_HideAnnotations {
  2715. get {
  2716. return ResourceManager.GetString("ViewRightMenuBlankSpace_HideAnnotations", resourceCulture);
  2717. }
  2718. }
  2719. /// <summary>
  2720. /// 查找类似 Highlight Links 的本地化字符串。
  2721. /// </summary>
  2722. public static string ViewRightMenuBlankSpace_HighlightLinks {
  2723. get {
  2724. return ResourceManager.GetString("ViewRightMenuBlankSpace_HighlightLinks", resourceCulture);
  2725. }
  2726. }
  2727. /// <summary>
  2728. /// 查找类似 Page DisPlay 的本地化字符串。
  2729. /// </summary>
  2730. public static string ViewRightMenuBlankSpace_PageDisPlay {
  2731. get {
  2732. return ResourceManager.GetString("ViewRightMenuBlankSpace_PageDisPlay", resourceCulture);
  2733. }
  2734. }
  2735. /// <summary>
  2736. /// 查找类似 Paste 的本地化字符串。
  2737. /// </summary>
  2738. public static string ViewRightMenuBlankSpace_Paste {
  2739. get {
  2740. return ResourceManager.GetString("ViewRightMenuBlankSpace_Paste", resourceCulture);
  2741. }
  2742. }
  2743. /// <summary>
  2744. /// 查找类似 Print 的本地化字符串。
  2745. /// </summary>
  2746. public static string ViewRightMenuBlankSpace_Print {
  2747. get {
  2748. return ResourceManager.GetString("ViewRightMenuBlankSpace_Print", resourceCulture);
  2749. }
  2750. }
  2751. /// <summary>
  2752. /// 查找类似 Read Mode Off 的本地化字符串。
  2753. /// </summary>
  2754. public static string ViewRightMenuBlankSpace_ReadModeOff {
  2755. get {
  2756. return ResourceManager.GetString("ViewRightMenuBlankSpace_ReadModeOff", resourceCulture);
  2757. }
  2758. }
  2759. /// <summary>
  2760. /// 查找类似 Read Mode On 的本地化字符串。
  2761. /// </summary>
  2762. public static string ViewRightMenuBlankSpace_ReadModeOn {
  2763. get {
  2764. return ResourceManager.GetString("ViewRightMenuBlankSpace_ReadModeOn", resourceCulture);
  2765. }
  2766. }
  2767. /// <summary>
  2768. /// 查找类似 Remove Bookmarks 的本地化字符串。
  2769. /// </summary>
  2770. public static string ViewRightMenuBlankSpace_RemoveBookmarks {
  2771. get {
  2772. return ResourceManager.GetString("ViewRightMenuBlankSpace_RemoveBookmarks", resourceCulture);
  2773. }
  2774. }
  2775. /// <summary>
  2776. /// 查找类似 Scroll Tool 的本地化字符串。
  2777. /// </summary>
  2778. public static string ViewRightMenuBlankSpace_ScrollTool {
  2779. get {
  2780. return ResourceManager.GetString("ViewRightMenuBlankSpace_ScrollTool", resourceCulture);
  2781. }
  2782. }
  2783. /// <summary>
  2784. /// 查找类似 Search 的本地化字符串。
  2785. /// </summary>
  2786. public static string ViewRightMenuBlankSpace_Search {
  2787. get {
  2788. return ResourceManager.GetString("ViewRightMenuBlankSpace_Search", resourceCulture);
  2789. }
  2790. }
  2791. /// <summary>
  2792. /// 查找类似 Show Annotation 的本地化字符串。
  2793. /// </summary>
  2794. public static string ViewRightMenuBlankSpace_ShowAnnotations {
  2795. get {
  2796. return ResourceManager.GetString("ViewRightMenuBlankSpace_ShowAnnotations", resourceCulture);
  2797. }
  2798. }
  2799. /// <summary>
  2800. /// 查找类似 Tools 的本地化字符串。
  2801. /// </summary>
  2802. public static string ViewRightMenuBlankSpace_Tools {
  2803. get {
  2804. return ResourceManager.GetString("ViewRightMenuBlankSpace_Tools", resourceCulture);
  2805. }
  2806. }
  2807. /// <summary>
  2808. /// 查找类似 Zoom 的本地化字符串。
  2809. /// </summary>
  2810. public static string ViewRightMenuBlankSpace_Zoom {
  2811. get {
  2812. return ResourceManager.GetString("ViewRightMenuBlankSpace_Zoom", resourceCulture);
  2813. }
  2814. }
  2815. /// <summary>
  2816. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  2817. /// </summary>
  2818. public static string ViewRightMenuBlankSpace_ZoomtoSelectedArea {
  2819. get {
  2820. return ResourceManager.GetString("ViewRightMenuBlankSpace_ZoomtoSelectedArea", resourceCulture);
  2821. }
  2822. }
  2823. /// <summary>
  2824. /// 查找类似 Arrow 的本地化字符串。
  2825. /// </summary>
  2826. public static string ViewRightMenuBlankSpaceAddComment_Arrow {
  2827. get {
  2828. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Arrow", resourceCulture);
  2829. }
  2830. }
  2831. /// <summary>
  2832. /// 查找类似 Freehand 的本地化字符串。
  2833. /// </summary>
  2834. public static string ViewRightMenuBlankSpaceAddComment_Freehand {
  2835. get {
  2836. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Freehand", resourceCulture);
  2837. }
  2838. }
  2839. /// <summary>
  2840. /// 查找类似 Link 的本地化字符串。
  2841. /// </summary>
  2842. public static string ViewRightMenuBlankSpaceAddComment_Link {
  2843. get {
  2844. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Link", resourceCulture);
  2845. }
  2846. }
  2847. /// <summary>
  2848. /// 查找类似 Oval 的本地化字符串。
  2849. /// </summary>
  2850. public static string ViewRightMenuBlankSpaceAddComment_Oval {
  2851. get {
  2852. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Oval", resourceCulture);
  2853. }
  2854. }
  2855. /// <summary>
  2856. /// 查找类似 Rectangle 的本地化字符串。
  2857. /// </summary>
  2858. public static string ViewRightMenuBlankSpaceAddComment_Rectangle {
  2859. get {
  2860. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Rectangle", resourceCulture);
  2861. }
  2862. }
  2863. /// <summary>
  2864. /// 查找类似 Signature 的本地化字符串。
  2865. /// </summary>
  2866. public static string ViewRightMenuBlankSpaceAddComment_Signature {
  2867. get {
  2868. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Signature", resourceCulture);
  2869. }
  2870. }
  2871. /// <summary>
  2872. /// 查找类似 Stamp 的本地化字符串。
  2873. /// </summary>
  2874. public static string ViewRightMenuBlankSpaceAddComment_Stamp {
  2875. get {
  2876. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Stamp", resourceCulture);
  2877. }
  2878. }
  2879. /// <summary>
  2880. /// 查找类似 Sticky Note 的本地化字符串。
  2881. /// </summary>
  2882. public static string ViewRightMenuBlankSpaceAddComment_StickyNote {
  2883. get {
  2884. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_StickyNote", resourceCulture);
  2885. }
  2886. }
  2887. /// <summary>
  2888. /// 查找类似 Straight Line 的本地化字符串。
  2889. /// </summary>
  2890. public static string ViewRightMenuBlankSpaceAddComment_StraightLine {
  2891. get {
  2892. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_StraightLine", resourceCulture);
  2893. }
  2894. }
  2895. /// <summary>
  2896. /// 查找类似 Text 的本地化字符串。
  2897. /// </summary>
  2898. public static string ViewRightMenuBlankSpaceAddComment_Text {
  2899. get {
  2900. return ResourceManager.GetString("ViewRightMenuBlankSpaceAddComment_Text", resourceCulture);
  2901. }
  2902. }
  2903. /// <summary>
  2904. /// 查找类似 Book Mode 的本地化字符串。
  2905. /// </summary>
  2906. public static string ViewRightMenuBlankSpacePageDisPlay_BookMode {
  2907. get {
  2908. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_BookMode", resourceCulture);
  2909. }
  2910. }
  2911. /// <summary>
  2912. /// 查找类似 Single Page 的本地化字符串。
  2913. /// </summary>
  2914. public static string ViewRightMenuBlankSpacePageDisPlay_SinglePage {
  2915. get {
  2916. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_SinglePage", resourceCulture);
  2917. }
  2918. }
  2919. /// <summary>
  2920. /// 查找类似 Single Page Continuous 的本地化字符串。
  2921. /// </summary>
  2922. public static string ViewRightMenuBlankSpacePageDisPlay_SinglePageContinuous {
  2923. get {
  2924. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_SinglePageContinuous", resourceCulture);
  2925. }
  2926. }
  2927. /// <summary>
  2928. /// 查找类似 Two Pages 的本地化字符串。
  2929. /// </summary>
  2930. public static string ViewRightMenuBlankSpacePageDisPlay_TwoPage {
  2931. get {
  2932. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_TwoPage", resourceCulture);
  2933. }
  2934. }
  2935. /// <summary>
  2936. /// 查找类似 Two Pages Continuous 的本地化字符串。
  2937. /// </summary>
  2938. public static string ViewRightMenuBlankSpacePageDisPlay_TwoPageContinuous {
  2939. get {
  2940. return ResourceManager.GetString("ViewRightMenuBlankSpacePageDisPlay_TwoPageContinuous", resourceCulture);
  2941. }
  2942. }
  2943. /// <summary>
  2944. /// 查找类似 Actual Size 的本地化字符串。
  2945. /// </summary>
  2946. public static string ViewRightMenuBlankSpaceViewZoom_ActualSize {
  2947. get {
  2948. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_ActualSize", resourceCulture);
  2949. }
  2950. }
  2951. /// <summary>
  2952. /// 查找类似 Fit Page 的本地化字符串。
  2953. /// </summary>
  2954. public static string ViewRightMenuBlankSpaceViewZoom_FitPage {
  2955. get {
  2956. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_FitPage", resourceCulture);
  2957. }
  2958. }
  2959. /// <summary>
  2960. /// 查找类似 Fit Width 的本地化字符串。
  2961. /// </summary>
  2962. public static string ViewRightMenuBlankSpaceViewZoom_FitWidth {
  2963. get {
  2964. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_FitWidth", resourceCulture);
  2965. }
  2966. }
  2967. /// <summary>
  2968. /// 查找类似 Zoom In 的本地化字符串。
  2969. /// </summary>
  2970. public static string ViewRightMenuBlankSpaceViewZoom_ZoomIn {
  2971. get {
  2972. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_ZoomIn", resourceCulture);
  2973. }
  2974. }
  2975. /// <summary>
  2976. /// 查找类似 Zoom Out 的本地化字符串。
  2977. /// </summary>
  2978. public static string ViewRightMenuBlankSpaceViewZoom_ZoomOut {
  2979. get {
  2980. return ResourceManager.GetString("ViewRightMenuBlankSpaceViewZoom_ZoomOut", resourceCulture);
  2981. }
  2982. }
  2983. /// <summary>
  2984. /// 查找类似 Color 的本地化字符串。
  2985. /// </summary>
  2986. public static string ViewRightMenuFreehandAnnot_Color {
  2987. get {
  2988. return ResourceManager.GetString("ViewRightMenuFreehandAnnot_Color", resourceCulture);
  2989. }
  2990. }
  2991. /// <summary>
  2992. /// 查找类似 Line Style 的本地化字符串。
  2993. /// </summary>
  2994. public static string ViewRightMenuFreehandAnnot_LineStyle {
  2995. get {
  2996. return ResourceManager.GetString("ViewRightMenuFreehandAnnot_LineStyle", resourceCulture);
  2997. }
  2998. }
  2999. /// <summary>
  3000. /// 查找类似 Dotted Line 的本地化字符串。
  3001. /// </summary>
  3002. public static string ViewRightMenuFreehandAnnotLineStyle_DottedLine {
  3003. get {
  3004. return ResourceManager.GetString("ViewRightMenuFreehandAnnotLineStyle_DottedLine", resourceCulture);
  3005. }
  3006. }
  3007. /// <summary>
  3008. /// 查找类似 Solid Line 的本地化字符串。
  3009. /// </summary>
  3010. public static string ViewRightMenuFreehandAnnotLineStyle_SolidLine {
  3011. get {
  3012. return ResourceManager.GetString("ViewRightMenuFreehandAnnotLineStyle_SolidLine", resourceCulture);
  3013. }
  3014. }
  3015. /// <summary>
  3016. /// 查找类似 Fill Color 的本地化字符串。
  3017. /// </summary>
  3018. public static string ViewRightMenuFreetextAnnot_FillColor {
  3019. get {
  3020. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_FillColor", resourceCulture);
  3021. }
  3022. }
  3023. /// <summary>
  3024. /// 查找类似 Font 的本地化字符串。
  3025. /// </summary>
  3026. public static string ViewRightMenuFreetextAnnot_Font {
  3027. get {
  3028. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_Font", resourceCulture);
  3029. }
  3030. }
  3031. /// <summary>
  3032. /// 查找类似 Font Color 的本地化字符串。
  3033. /// </summary>
  3034. public static string ViewRightMenuFreetextAnnot_FontColor {
  3035. get {
  3036. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_FontColor", resourceCulture);
  3037. }
  3038. }
  3039. /// <summary>
  3040. /// 查找类似 Text Alignment 的本地化字符串。
  3041. /// </summary>
  3042. public static string ViewRightMenuFreetextAnnot_TextAlignment {
  3043. get {
  3044. return ResourceManager.GetString("ViewRightMenuFreetextAnnot_TextAlignment", resourceCulture);
  3045. }
  3046. }
  3047. /// <summary>
  3048. /// 查找类似 Courier New 的本地化字符串。
  3049. /// </summary>
  3050. public static string ViewRightMenuFreetextAnnotFont_CourierNew {
  3051. get {
  3052. return ResourceManager.GetString("ViewRightMenuFreetextAnnotFont_CourierNew", resourceCulture);
  3053. }
  3054. }
  3055. /// <summary>
  3056. /// 查找类似 Helvetica 的本地化字符串。
  3057. /// </summary>
  3058. public static string ViewRightMenuFreetextAnnotFont_Helvetica {
  3059. get {
  3060. return ResourceManager.GetString("ViewRightMenuFreetextAnnotFont_Helvetica", resourceCulture);
  3061. }
  3062. }
  3063. /// <summary>
  3064. /// 查找类似 Times New Roman 的本地化字符串。
  3065. /// </summary>
  3066. public static string ViewRightMenuFreetextAnnotFont_TimesNewRoman {
  3067. get {
  3068. return ResourceManager.GetString("ViewRightMenuFreetextAnnotFont_TimesNewRoman", resourceCulture);
  3069. }
  3070. }
  3071. /// <summary>
  3072. /// 查找类似 Align Center 的本地化字符串。
  3073. /// </summary>
  3074. public static string ViewRightMenuFreetextAnnotTextAlignment_AlignCenter {
  3075. get {
  3076. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_AlignCenter", resourceCulture);
  3077. }
  3078. }
  3079. /// <summary>
  3080. /// 查找类似 Align Left 的本地化字符串。
  3081. /// </summary>
  3082. public static string ViewRightMenuFreetextAnnotTextAlignment_AlignLeft {
  3083. get {
  3084. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_AlignLeft", resourceCulture);
  3085. }
  3086. }
  3087. /// <summary>
  3088. /// 查找类似 Align Right 的本地化字符串。
  3089. /// </summary>
  3090. public static string ViewRightMenuFreetextAnnotTextAlignment_AlignRight {
  3091. get {
  3092. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_AlignRight", resourceCulture);
  3093. }
  3094. }
  3095. /// <summary>
  3096. /// 查找类似 Fully Justified 的本地化字符串。
  3097. /// </summary>
  3098. public static string ViewRightMenuFreetextAnnotTextAlignment_FullyJustified {
  3099. get {
  3100. return ResourceManager.GetString("ViewRightMenuFreetextAnnotTextAlignment_FullyJustified", resourceCulture);
  3101. }
  3102. }
  3103. /// <summary>
  3104. /// 查找类似 Add Link 的本地化字符串。
  3105. /// </summary>
  3106. public static string ViewRightMenuSelection_AddLink {
  3107. get {
  3108. return ResourceManager.GetString("ViewRightMenuSelection_AddLink", resourceCulture);
  3109. }
  3110. }
  3111. /// <summary>
  3112. /// 查找类似 Add Outline 的本地化字符串。
  3113. /// </summary>
  3114. public static string ViewRightMenuSelection_AddOutline {
  3115. get {
  3116. return ResourceManager.GetString("ViewRightMenuSelection_AddOutline", resourceCulture);
  3117. }
  3118. }
  3119. /// <summary>
  3120. /// 查找类似 Copy 的本地化字符串。
  3121. /// </summary>
  3122. public static string ViewRightMenuSelection_Copy {
  3123. get {
  3124. return ResourceManager.GetString("ViewRightMenuSelection_Copy", resourceCulture);
  3125. }
  3126. }
  3127. /// <summary>
  3128. /// 查找类似 Extract Image 的本地化字符串。
  3129. /// </summary>
  3130. public static string ViewRightMenuSelection_ExtractImage {
  3131. get {
  3132. return ResourceManager.GetString("ViewRightMenuSelection_ExtractImage", resourceCulture);
  3133. }
  3134. }
  3135. /// <summary>
  3136. /// 查找类似 Highlight 的本地化字符串。
  3137. /// </summary>
  3138. public static string ViewRightMenuSelection_Highlight {
  3139. get {
  3140. return ResourceManager.GetString("ViewRightMenuSelection_Highlight", resourceCulture);
  3141. }
  3142. }
  3143. /// <summary>
  3144. /// 查找类似 Link 的本地化字符串。
  3145. /// </summary>
  3146. public static string ViewRightMenuSelection_Link {
  3147. get {
  3148. return ResourceManager.GetString("ViewRightMenuSelection_Link", resourceCulture);
  3149. }
  3150. }
  3151. /// <summary>
  3152. /// 查找类似 Note 的本地化字符串。
  3153. /// </summary>
  3154. public static string ViewRightMenuSelection_Note {
  3155. get {
  3156. return ResourceManager.GetString("ViewRightMenuSelection_Note", resourceCulture);
  3157. }
  3158. }
  3159. /// <summary>
  3160. /// 查找类似 Oval 的本地化字符串。
  3161. /// </summary>
  3162. public static string ViewRightMenuSelection_Oval {
  3163. get {
  3164. return ResourceManager.GetString("ViewRightMenuSelection_Oval", resourceCulture);
  3165. }
  3166. }
  3167. /// <summary>
  3168. /// 查找类似 Paste 的本地化字符串。
  3169. /// </summary>
  3170. public static string ViewRightMenuSelection_Paste {
  3171. get {
  3172. return ResourceManager.GetString("ViewRightMenuSelection_Paste", resourceCulture);
  3173. }
  3174. }
  3175. /// <summary>
  3176. /// 查找类似 Rectangle 的本地化字符串。
  3177. /// </summary>
  3178. public static string ViewRightMenuSelection_Rectangle {
  3179. get {
  3180. return ResourceManager.GetString("ViewRightMenuSelection_Rectangle", resourceCulture);
  3181. }
  3182. }
  3183. /// <summary>
  3184. /// 查找类似 Straight Line 的本地化字符串。
  3185. /// </summary>
  3186. public static string ViewRightMenuSelection_StraightLine {
  3187. get {
  3188. return ResourceManager.GetString("ViewRightMenuSelection_StraightLine", resourceCulture);
  3189. }
  3190. }
  3191. /// <summary>
  3192. /// 查找类似 Strikethrough 的本地化字符串。
  3193. /// </summary>
  3194. public static string ViewRightMenuSelection_Strikethrough {
  3195. get {
  3196. return ResourceManager.GetString("ViewRightMenuSelection_Strikethrough", resourceCulture);
  3197. }
  3198. }
  3199. /// <summary>
  3200. /// 查找类似 Text 的本地化字符串。
  3201. /// </summary>
  3202. public static string ViewRightMenuSelection_Text {
  3203. get {
  3204. return ResourceManager.GetString("ViewRightMenuSelection_Text", resourceCulture);
  3205. }
  3206. }
  3207. /// <summary>
  3208. /// 查找类似 Text 的本地化字符串。
  3209. /// </summary>
  3210. public static string ViewRightMenuSelection_Text1 {
  3211. get {
  3212. return ResourceManager.GetString("ViewRightMenuSelection_Text1", resourceCulture);
  3213. }
  3214. }
  3215. /// <summary>
  3216. /// 查找类似 Underline 的本地化字符串。
  3217. /// </summary>
  3218. public static string ViewRightMenuSelection_Underline {
  3219. get {
  3220. return ResourceManager.GetString("ViewRightMenuSelection_Underline", resourceCulture);
  3221. }
  3222. }
  3223. /// <summary>
  3224. /// 查找类似 Border Color 的本地化字符串。
  3225. /// </summary>
  3226. public static string ViewRightMenuSharpsAnnot_BorderColor {
  3227. get {
  3228. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_BorderColor", resourceCulture);
  3229. }
  3230. }
  3231. /// <summary>
  3232. /// 查找类似 Color 的本地化字符串。
  3233. /// </summary>
  3234. public static string ViewRightMenuSharpsAnnot_Color {
  3235. get {
  3236. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_Color", resourceCulture);
  3237. }
  3238. }
  3239. /// <summary>
  3240. /// 查找类似 Direction 的本地化字符串。
  3241. /// </summary>
  3242. public static string ViewRightMenuSharpsAnnot_Direction {
  3243. get {
  3244. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_Direction", resourceCulture);
  3245. }
  3246. }
  3247. /// <summary>
  3248. /// 查找类似 Fill Color 的本地化字符串。
  3249. /// </summary>
  3250. public static string ViewRightMenuSharpsAnnot_FillColor {
  3251. get {
  3252. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_FillColor", resourceCulture);
  3253. }
  3254. }
  3255. /// <summary>
  3256. /// 查找类似 Line Style 的本地化字符串。
  3257. /// </summary>
  3258. public static string ViewRightMenuSharpsAnnot_LineStyle {
  3259. get {
  3260. return ResourceManager.GetString("ViewRightMenuSharpsAnnot_LineStyle", resourceCulture);
  3261. }
  3262. }
  3263. /// <summary>
  3264. /// 查找类似 Horizontal 的本地化字符串。
  3265. /// </summary>
  3266. public static string ViewRightMenuSharpsAnnotDirection_Horizontal {
  3267. get {
  3268. return ResourceManager.GetString("ViewRightMenuSharpsAnnotDirection_Horizontal", resourceCulture);
  3269. }
  3270. }
  3271. /// <summary>
  3272. /// 查找类似 Vertical 的本地化字符串。
  3273. /// </summary>
  3274. public static string ViewRightMenuSharpsAnnotDirection_Vertical {
  3275. get {
  3276. return ResourceManager.GetString("ViewRightMenuSharpsAnnotDirection_Vertical", resourceCulture);
  3277. }
  3278. }
  3279. /// <summary>
  3280. /// 查找类似 Dotted Line 的本地化字符串。
  3281. /// </summary>
  3282. public static string ViewRightMenuSharpsAnnotLineStyle_DottedLine {
  3283. get {
  3284. return ResourceManager.GetString("ViewRightMenuSharpsAnnotLineStyle_DottedLine", resourceCulture);
  3285. }
  3286. }
  3287. /// <summary>
  3288. /// 查找类似 Solid Line 的本地化字符串。
  3289. /// </summary>
  3290. public static string ViewRightMenuSharpsAnnotLineStyle_SolidLine {
  3291. get {
  3292. return ResourceManager.GetString("ViewRightMenuSharpsAnnotLineStyle_SolidLine", resourceCulture);
  3293. }
  3294. }
  3295. /// <summary>
  3296. /// 查找类似 Export 的本地化字符串。
  3297. /// </summary>
  3298. public static string ViewRightMenuStampAnnot_Export {
  3299. get {
  3300. return ResourceManager.GetString("ViewRightMenuStampAnnot_Export", resourceCulture);
  3301. }
  3302. }
  3303. /// <summary>
  3304. /// 查找类似 PDF 的本地化字符串。
  3305. /// </summary>
  3306. public static string ViewRightMenuStampAnnotExport_PDF {
  3307. get {
  3308. return ResourceManager.GetString("ViewRightMenuStampAnnotExport_PDF", resourceCulture);
  3309. }
  3310. }
  3311. /// <summary>
  3312. /// 查找类似 PNG 的本地化字符串。
  3313. /// </summary>
  3314. public static string ViewRightMenuStampAnnotExport_PNG {
  3315. get {
  3316. return ResourceManager.GetString("ViewRightMenuStampAnnotExport_PNG", resourceCulture);
  3317. }
  3318. }
  3319. /// <summary>
  3320. /// 查找类似 Color 的本地化字符串。
  3321. /// </summary>
  3322. public static string ViewRightMenuStickyNoteAnnot_Color {
  3323. get {
  3324. return ResourceManager.GetString("ViewRightMenuStickyNoteAnnot_Color", resourceCulture);
  3325. }
  3326. }
  3327. /// <summary>
  3328. /// 查找类似 Edit 的本地化字符串。
  3329. /// </summary>
  3330. public static string ViewRightMenuStickyNoteAnnot_Edit {
  3331. get {
  3332. return ResourceManager.GetString("ViewRightMenuStickyNoteAnnot_Edit", resourceCulture);
  3333. }
  3334. }
  3335. /// <summary>
  3336. /// 查找类似 Copy Text 的本地化字符串。
  3337. /// </summary>
  3338. public static string ViewRightMenuTextAnnot_CopyText {
  3339. get {
  3340. return ResourceManager.GetString("ViewRightMenuTextAnnot_CopyText", resourceCulture);
  3341. }
  3342. }
  3343. /// <summary>
  3344. /// 查找类似 Delete 的本地化字符串。
  3345. /// </summary>
  3346. public static string ViewRightMenuTextAnnot_Delete {
  3347. get {
  3348. return ResourceManager.GetString("ViewRightMenuTextAnnot_Delete", resourceCulture);
  3349. }
  3350. }
  3351. /// <summary>
  3352. /// 查找类似 Annotation 的本地化字符串。
  3353. /// </summary>
  3354. public static string ViewTopToolbar_Annotation {
  3355. get {
  3356. return ResourceManager.GetString("ViewTopToolbar_Annotation", resourceCulture);
  3357. }
  3358. }
  3359. /// <summary>
  3360. /// 查找类似 Converter 的本地化字符串。
  3361. /// </summary>
  3362. public static string ViewTopToolbar_Converter {
  3363. get {
  3364. return ResourceManager.GetString("ViewTopToolbar_Converter", resourceCulture);
  3365. }
  3366. }
  3367. /// <summary>
  3368. /// 查找类似 File 的本地化字符串。
  3369. /// </summary>
  3370. public static string ViewTopToolbar_File {
  3371. get {
  3372. return ResourceManager.GetString("ViewTopToolbar_File", resourceCulture);
  3373. }
  3374. }
  3375. /// <summary>
  3376. /// 查找类似 Fill&amp;Sign 的本地化字符串。
  3377. /// </summary>
  3378. public static string ViewTopToolbar_Fill_Sign {
  3379. get {
  3380. return ResourceManager.GetString("ViewTopToolbar_Fill&Sign", resourceCulture);
  3381. }
  3382. }
  3383. /// <summary>
  3384. /// 查找类似 Page Edit 的本地化字符串。
  3385. /// </summary>
  3386. public static string ViewTopToolbar_PageEdit {
  3387. get {
  3388. return ResourceManager.GetString("ViewTopToolbar_PageEdit", resourceCulture);
  3389. }
  3390. }
  3391. /// <summary>
  3392. /// 查找类似 Print 的本地化字符串。
  3393. /// </summary>
  3394. public static string ViewTopToolbar_Print {
  3395. get {
  3396. return ResourceManager.GetString("ViewTopToolbar_Print", resourceCulture);
  3397. }
  3398. }
  3399. /// <summary>
  3400. /// 查找类似 Properties 的本地化字符串。
  3401. /// </summary>
  3402. public static string ViewTopToolbar_Properties {
  3403. get {
  3404. return ResourceManager.GetString("ViewTopToolbar_Properties", resourceCulture);
  3405. }
  3406. }
  3407. /// <summary>
  3408. /// 查找类似 Redo 的本地化字符串。
  3409. /// </summary>
  3410. public static string ViewTopToolbar_Redo {
  3411. get {
  3412. return ResourceManager.GetString("ViewTopToolbar_Redo", resourceCulture);
  3413. }
  3414. }
  3415. /// <summary>
  3416. /// 查找类似 Save 的本地化字符串。
  3417. /// </summary>
  3418. public static string ViewTopToolbar_Save {
  3419. get {
  3420. return ResourceManager.GetString("ViewTopToolbar_Save", resourceCulture);
  3421. }
  3422. }
  3423. /// <summary>
  3424. /// 查找类似 Share 的本地化字符串。
  3425. /// </summary>
  3426. public static string ViewTopToolbar_Share {
  3427. get {
  3428. return ResourceManager.GetString("ViewTopToolbar_Share", resourceCulture);
  3429. }
  3430. }
  3431. /// <summary>
  3432. /// 查找类似 Tools 的本地化字符串。
  3433. /// </summary>
  3434. public static string ViewTopToolbar_Tools {
  3435. get {
  3436. return ResourceManager.GetString("ViewTopToolbar_Tools", resourceCulture);
  3437. }
  3438. }
  3439. /// <summary>
  3440. /// 查找类似 Undo 的本地化字符串。
  3441. /// </summary>
  3442. public static string ViewTopToolbar_Undo {
  3443. get {
  3444. return ResourceManager.GetString("ViewTopToolbar_Undo", resourceCulture);
  3445. }
  3446. }
  3447. /// <summary>
  3448. /// 查找类似 All pages 的本地化字符串。
  3449. /// </summary>
  3450. public static string WritableComboBox_AllPage {
  3451. get {
  3452. return ResourceManager.GetString("WritableComboBox_AllPage", resourceCulture);
  3453. }
  3454. }
  3455. /// <summary>
  3456. /// 查找类似 Current Page 的本地化字符串。
  3457. /// </summary>
  3458. public static string WritableComboBox_CurrentPage {
  3459. get {
  3460. return ResourceManager.GetString("WritableComboBox_CurrentPage", resourceCulture);
  3461. }
  3462. }
  3463. /// <summary>
  3464. /// 查找类似 Custom Range 的本地化字符串。
  3465. /// </summary>
  3466. public static string WritableComboBox_CustomRange {
  3467. get {
  3468. return ResourceManager.GetString("WritableComboBox_CustomRange", resourceCulture);
  3469. }
  3470. }
  3471. /// <summary>
  3472. /// 查找类似 ege : 1,3-5, 10 的本地化字符串。
  3473. /// </summary>
  3474. public static string WritableComboBox_CustomRangeEge {
  3475. get {
  3476. return ResourceManager.GetString("WritableComboBox_CustomRangeEge", resourceCulture);
  3477. }
  3478. }
  3479. /// <summary>
  3480. /// 查找类似 Even Pages 的本地化字符串。
  3481. /// </summary>
  3482. public static string WritableComboBox_EvenPage {
  3483. get {
  3484. return ResourceManager.GetString("WritableComboBox_EvenPage", resourceCulture);
  3485. }
  3486. }
  3487. /// <summary>
  3488. /// 查找类似 Odd Pages 的本地化字符串。
  3489. /// </summary>
  3490. public static string WritableComboBox_OddPage {
  3491. get {
  3492. return ResourceManager.GetString("WritableComboBox_OddPage", resourceCulture);
  3493. }
  3494. }
  3495. /// <summary>
  3496. /// 查找类似 Actual Size 的本地化字符串。
  3497. /// </summary>
  3498. public static string Zoom_Actual {
  3499. get {
  3500. return ResourceManager.GetString("Zoom_Actual", resourceCulture);
  3501. }
  3502. }
  3503. /// <summary>
  3504. /// 查找类似 Fit Page 的本地化字符串。
  3505. /// </summary>
  3506. public static string Zoom_FitPage {
  3507. get {
  3508. return ResourceManager.GetString("Zoom_FitPage", resourceCulture);
  3509. }
  3510. }
  3511. /// <summary>
  3512. /// 查找类似 Fit Width 的本地化字符串。
  3513. /// </summary>
  3514. public static string Zoom_FitWidth {
  3515. get {
  3516. return ResourceManager.GetString("Zoom_FitWidth", resourceCulture);
  3517. }
  3518. }
  3519. }
  3520. }