MainPage.Designer.cs 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace PDF_Office.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", "16.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_Office.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. /// 查找类似 Author 的本地化字符串。
  56. /// </summary>
  57. public static string Annotation_DialogAuthor {
  58. get {
  59. return ResourceManager.GetString("Annotation_DialogAuthor", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// 查找类似 Clear 的本地化字符串。
  64. /// </summary>
  65. public static string Annotation_DialogClear {
  66. get {
  67. return ResourceManager.GetString("Annotation_DialogClear", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// 查找类似 Color 的本地化字符串。
  72. /// </summary>
  73. public static string Annotation_DialogColor {
  74. get {
  75. return ResourceManager.GetString("Annotation_DialogColor", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// 查找类似 Cancel 的本地化字符串。
  80. /// </summary>
  81. public static string Annotation_DialogNo {
  82. get {
  83. return ResourceManager.GetString("Annotation_DialogNo", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// 查找类似 Style 的本地化字符串。
  88. /// </summary>
  89. public static string Annotation_DialogStyle {
  90. get {
  91. return ResourceManager.GetString("Annotation_DialogStyle", resourceCulture);
  92. }
  93. }
  94. /// <summary>
  95. /// 查找类似 Apply 的本地化字符串。
  96. /// </summary>
  97. public static string Annotation_DialogYes {
  98. get {
  99. return ResourceManager.GetString("Annotation_DialogYes", resourceCulture);
  100. }
  101. }
  102. /// <summary>
  103. /// 查找类似 All comments in this file will be displayed here. 的本地化字符串。
  104. /// </summary>
  105. public static string Annotation_EmptyContext {
  106. get {
  107. return ResourceManager.GetString("Annotation_EmptyContext", resourceCulture);
  108. }
  109. }
  110. /// <summary>
  111. /// 查找类似 No Annotations 的本地化字符串。
  112. /// </summary>
  113. public static string Annotation_EmptyTitle {
  114. get {
  115. return ResourceManager.GetString("Annotation_EmptyTitle", resourceCulture);
  116. }
  117. }
  118. /// <summary>
  119. /// 查找类似 Collapse All 的本地化字符串。
  120. /// </summary>
  121. public static string Annotation_MenuCollapse {
  122. get {
  123. return ResourceManager.GetString("Annotation_MenuCollapse", resourceCulture);
  124. }
  125. }
  126. /// <summary>
  127. /// 查找类似 Copy Text 的本地化字符串。
  128. /// </summary>
  129. public static string Annotation_MenuCopyText {
  130. get {
  131. return ResourceManager.GetString("Annotation_MenuCopyText", resourceCulture);
  132. }
  133. }
  134. /// <summary>
  135. /// 查找类似 Delete 的本地化字符串。
  136. /// </summary>
  137. public static string Annotation_MenuDelete {
  138. get {
  139. return ResourceManager.GetString("Annotation_MenuDelete", resourceCulture);
  140. }
  141. }
  142. /// <summary>
  143. /// 查找类似 Delete All Anntations 的本地化字符串。
  144. /// </summary>
  145. public static string Annotation_MenuDeleteAll {
  146. get {
  147. return ResourceManager.GetString("Annotation_MenuDeleteAll", resourceCulture);
  148. }
  149. }
  150. /// <summary>
  151. /// 查找类似 Expand All 的本地化字符串。
  152. /// </summary>
  153. public static string Annotation_MenuExpand {
  154. get {
  155. return ResourceManager.GetString("Annotation_MenuExpand", resourceCulture);
  156. }
  157. }
  158. /// <summary>
  159. /// 查找类似 Export Annotations to XFDX 的本地化字符串。
  160. /// </summary>
  161. public static string Annotation_MenuExport {
  162. get {
  163. return ResourceManager.GetString("Annotation_MenuExport", resourceCulture);
  164. }
  165. }
  166. /// <summary>
  167. /// 查找类似 Import Annotations 的本地化字符串。
  168. /// </summary>
  169. public static string Annotation_MenuImport {
  170. get {
  171. return ResourceManager.GetString("Annotation_MenuImport", resourceCulture);
  172. }
  173. }
  174. /// <summary>
  175. /// 查找类似 Annotation 的本地化字符串。
  176. /// </summary>
  177. public static string Annotation_Title {
  178. get {
  179. return ResourceManager.GetString("Annotation_Title", resourceCulture);
  180. }
  181. }
  182. /// <summary>
  183. /// 查找类似 Change Target Location 的本地化字符串。
  184. /// </summary>
  185. public static string Bookmark_Change {
  186. get {
  187. return ResourceManager.GetString("Bookmark_Change", resourceCulture);
  188. }
  189. }
  190. /// <summary>
  191. /// 查找类似 Delete 的本地化字符串。
  192. /// </summary>
  193. public static string Bookmark_Delete {
  194. get {
  195. return ResourceManager.GetString("Bookmark_Delete", resourceCulture);
  196. }
  197. }
  198. /// <summary>
  199. /// 查找类似 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. 的本地化字符串。
  200. /// </summary>
  201. public static string Bookmark_EmptyContext {
  202. get {
  203. return ResourceManager.GetString("Bookmark_EmptyContext", resourceCulture);
  204. }
  205. }
  206. /// <summary>
  207. /// 查找类似 No Bookmarks 的本地化字符串。
  208. /// </summary>
  209. public static string Bookmark_EmptyTitle {
  210. get {
  211. return ResourceManager.GetString("Bookmark_EmptyTitle", resourceCulture);
  212. }
  213. }
  214. /// <summary>
  215. /// 查找类似 Page {0} 的本地化字符串。
  216. /// </summary>
  217. public static string Bookmark_PageN {
  218. get {
  219. return ResourceManager.GetString("Bookmark_PageN", resourceCulture);
  220. }
  221. }
  222. /// <summary>
  223. /// 查找类似 Rename 的本地化字符串。
  224. /// </summary>
  225. public static string Bookmark_Rename {
  226. get {
  227. return ResourceManager.GetString("Bookmark_Rename", resourceCulture);
  228. }
  229. }
  230. /// <summary>
  231. /// 查找类似 Bookmark 的本地化字符串。
  232. /// </summary>
  233. public static string Bookmark_Title {
  234. get {
  235. return ResourceManager.GetString("Bookmark_Title", resourceCulture);
  236. }
  237. }
  238. /// <summary>
  239. /// 查找类似 Change Color 的本地化字符串。
  240. /// </summary>
  241. public static string ColorMenuItem_Change {
  242. get {
  243. return ResourceManager.GetString("ColorMenuItem_Change", resourceCulture);
  244. }
  245. }
  246. /// <summary>
  247. /// 查找类似 Restore Default Color 的本地化字符串。
  248. /// </summary>
  249. public static string ColorMenuItem_Restore {
  250. get {
  251. return ResourceManager.GetString("ColorMenuItem_Restore", resourceCulture);
  252. }
  253. }
  254. /// <summary>
  255. /// 查找类似 Cancel 的本地化字符串。
  256. /// </summary>
  257. public static string Compress_Cancel {
  258. get {
  259. return ResourceManager.GetString("Compress_Cancel", resourceCulture);
  260. }
  261. }
  262. /// <summary>
  263. /// 查找类似 Compress 的本地化字符串。
  264. /// </summary>
  265. public static string Compress_Compress {
  266. get {
  267. return ResourceManager.GetString("Compress_Compress", resourceCulture);
  268. }
  269. }
  270. /// <summary>
  271. /// 查找类似 High 的本地化字符串。
  272. /// </summary>
  273. public static string Compress_High {
  274. get {
  275. return ResourceManager.GetString("Compress_High", resourceCulture);
  276. }
  277. }
  278. /// <summary>
  279. /// 查找类似 Low 的本地化字符串。
  280. /// </summary>
  281. public static string Compress_Low {
  282. get {
  283. return ResourceManager.GetString("Compress_Low", resourceCulture);
  284. }
  285. }
  286. /// <summary>
  287. /// 查找类似 Minimum 的本地化字符串。
  288. /// </summary>
  289. public static string Compress_Minimum {
  290. get {
  291. return ResourceManager.GetString("Compress_Minimum", resourceCulture);
  292. }
  293. }
  294. /// <summary>
  295. /// 查找类似 Standard 的本地化字符串。
  296. /// </summary>
  297. public static string Compress_Standard {
  298. get {
  299. return ResourceManager.GetString("Compress_Standard", resourceCulture);
  300. }
  301. }
  302. /// <summary>
  303. /// 查找类似 Compress 的本地化字符串。
  304. /// </summary>
  305. public static string Compress_Title {
  306. get {
  307. return ResourceManager.GetString("Compress_Title", resourceCulture);
  308. }
  309. }
  310. /// <summary>
  311. /// 查找类似 Copy 的本地化字符串。
  312. /// </summary>
  313. public static string ContentSelection_Copy {
  314. get {
  315. return ResourceManager.GetString("ContentSelection_Copy", resourceCulture);
  316. }
  317. }
  318. /// <summary>
  319. /// 查找类似 Crop 的本地化字符串。
  320. /// </summary>
  321. public static string ContentSelection_Crop {
  322. get {
  323. return ResourceManager.GetString("ContentSelection_Crop", resourceCulture);
  324. }
  325. }
  326. /// <summary>
  327. /// 查找类似 Output 的本地化字符串。
  328. /// </summary>
  329. public static string ContentSelection_Output {
  330. get {
  331. return ResourceManager.GetString("ContentSelection_Output", resourceCulture);
  332. }
  333. }
  334. /// <summary>
  335. /// 查找类似 Print 的本地化字符串。
  336. /// </summary>
  337. public static string ContentSelection_Print {
  338. get {
  339. return ResourceManager.GetString("ContentSelection_Print", resourceCulture);
  340. }
  341. }
  342. /// <summary>
  343. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  344. /// </summary>
  345. public static string ContentSelection_ZoomArea {
  346. get {
  347. return ResourceManager.GetString("ContentSelection_ZoomArea", resourceCulture);
  348. }
  349. }
  350. /// <summary>
  351. /// 查找类似 Cancel 的本地化字符串。
  352. /// </summary>
  353. public static string Convert_No {
  354. get {
  355. return ResourceManager.GetString("Convert_No", resourceCulture);
  356. }
  357. }
  358. /// <summary>
  359. /// 查找类似 PDF To CSV 的本地化字符串。
  360. /// </summary>
  361. public static string Convert_PDFToCSVTitle {
  362. get {
  363. return ResourceManager.GetString("Convert_PDFToCSVTitle", resourceCulture);
  364. }
  365. }
  366. /// <summary>
  367. /// 查找类似 PDF To Excel 的本地化字符串。
  368. /// </summary>
  369. public static string Convert_PDFToExcelTitle {
  370. get {
  371. return ResourceManager.GetString("Convert_PDFToExcelTitle", resourceCulture);
  372. }
  373. }
  374. /// <summary>
  375. /// 查找类似 PDF To HTML 的本地化字符串。
  376. /// </summary>
  377. public static string Convert_PDFToHTMLTitle {
  378. get {
  379. return ResourceManager.GetString("Convert_PDFToHTMLTitle", resourceCulture);
  380. }
  381. }
  382. /// <summary>
  383. /// 查找类似 BMP 的本地化字符串。
  384. /// </summary>
  385. public static string Convert_PDFToImageBMP {
  386. get {
  387. return ResourceManager.GetString("Convert_PDFToImageBMP", resourceCulture);
  388. }
  389. }
  390. /// <summary>
  391. /// 查找类似 GIF 的本地化字符串。
  392. /// </summary>
  393. public static string Convert_PDFToImageGIF {
  394. get {
  395. return ResourceManager.GetString("Convert_PDFToImageGIF", resourceCulture);
  396. }
  397. }
  398. /// <summary>
  399. /// 查找类似 JPEG 的本地化字符串。
  400. /// </summary>
  401. public static string Convert_PDFToImageJPEG {
  402. get {
  403. return ResourceManager.GetString("Convert_PDFToImageJPEG", resourceCulture);
  404. }
  405. }
  406. /// <summary>
  407. /// 查找类似 JPEG-2000 的本地化字符串。
  408. /// </summary>
  409. public static string Convert_PDFToImageJPEG_2000 {
  410. get {
  411. return ResourceManager.GetString("Convert_PDFToImageJPEG-2000", resourceCulture);
  412. }
  413. }
  414. /// <summary>
  415. /// 查找类似 JPG 的本地化字符串。
  416. /// </summary>
  417. public static string Convert_PDFToImageJPG {
  418. get {
  419. return ResourceManager.GetString("Convert_PDFToImageJPG", resourceCulture);
  420. }
  421. }
  422. /// <summary>
  423. /// 查找类似 PNG 的本地化字符串。
  424. /// </summary>
  425. public static string Convert_PDFToImagePNG {
  426. get {
  427. return ResourceManager.GetString("Convert_PDFToImagePNG", resourceCulture);
  428. }
  429. }
  430. /// <summary>
  431. /// 查找类似 TGA 的本地化字符串。
  432. /// </summary>
  433. public static string Convert_PDFToImageTGA {
  434. get {
  435. return ResourceManager.GetString("Convert_PDFToImageTGA", resourceCulture);
  436. }
  437. }
  438. /// <summary>
  439. /// 查找类似 TIFF 的本地化字符串。
  440. /// </summary>
  441. public static string Convert_PDFToImageTIFF {
  442. get {
  443. return ResourceManager.GetString("Convert_PDFToImageTIFF", resourceCulture);
  444. }
  445. }
  446. /// <summary>
  447. /// 查找类似 PDF To Image 的本地化字符串。
  448. /// </summary>
  449. public static string Convert_PDFToImageTitle {
  450. get {
  451. return ResourceManager.GetString("Convert_PDFToImageTitle", resourceCulture);
  452. }
  453. }
  454. /// <summary>
  455. /// 查找类似 PDF To PPT 的本地化字符串。
  456. /// </summary>
  457. public static string Convert_PDFToPPTTitle {
  458. get {
  459. return ResourceManager.GetString("Convert_PDFToPPTTitle", resourceCulture);
  460. }
  461. }
  462. /// <summary>
  463. /// 查找类似 PDF To RTF 的本地化字符串。
  464. /// </summary>
  465. public static string Convert_PDFToRTFTitle {
  466. get {
  467. return ResourceManager.GetString("Convert_PDFToRTFTitle", resourceCulture);
  468. }
  469. }
  470. /// <summary>
  471. /// 查找类似 PDF To Text 的本地化字符串。
  472. /// </summary>
  473. public static string Convert_PDFToTextTitle {
  474. get {
  475. return ResourceManager.GetString("Convert_PDFToTextTitle", resourceCulture);
  476. }
  477. }
  478. /// <summary>
  479. /// 查找类似 PDF To Word 的本地化字符串。
  480. /// </summary>
  481. public static string Convert_PDFToWordTitle {
  482. get {
  483. return ResourceManager.GetString("Convert_PDFToWordTitle", resourceCulture);
  484. }
  485. }
  486. /// <summary>
  487. /// 查找类似 Convert 的本地化字符串。
  488. /// </summary>
  489. public static string Convert_Yes {
  490. get {
  491. return ResourceManager.GetString("Convert_Yes", resourceCulture);
  492. }
  493. }
  494. /// <summary>
  495. /// 查找类似 Fill 的本地化字符串。
  496. /// </summary>
  497. public static string FreeText_Fill {
  498. get {
  499. return ResourceManager.GetString("FreeText_Fill", resourceCulture);
  500. }
  501. }
  502. /// <summary>
  503. /// 查找类似 Font 的本地化字符串。
  504. /// </summary>
  505. public static string FreeText_Font {
  506. get {
  507. return ResourceManager.GetString("FreeText_Font", resourceCulture);
  508. }
  509. }
  510. /// <summary>
  511. /// 查找类似 Text 的本地化字符串。
  512. /// </summary>
  513. public static string FreeText_Title {
  514. get {
  515. return ResourceManager.GetString("FreeText_Title", resourceCulture);
  516. }
  517. }
  518. /// <summary>
  519. /// 查找类似 Enter Read Mode, tap ESC to exit 的本地化字符串。
  520. /// </summary>
  521. public static string GlobalTip_ESCReadMode {
  522. get {
  523. return ResourceManager.GetString("GlobalTip_ESCReadMode", resourceCulture);
  524. }
  525. }
  526. /// <summary>
  527. /// 查找类似 Exit Read Mode 的本地化字符串。
  528. /// </summary>
  529. public static string GlobalTip_ExitReadMode {
  530. get {
  531. return ResourceManager.GetString("GlobalTip_ExitReadMode", resourceCulture);
  532. }
  533. }
  534. /// <summary>
  535. /// 查找类似 Highlight 的本地化字符串。
  536. /// </summary>
  537. public static string Highlight_Title {
  538. get {
  539. return ResourceManager.GetString("Highlight_Title", resourceCulture);
  540. }
  541. }
  542. /// <summary>
  543. /// 查找类似 Add File 的本地化字符串。
  544. /// </summary>
  545. public static string ImageToPDF_AddFile {
  546. get {
  547. return ResourceManager.GetString("ImageToPDF_AddFile", resourceCulture);
  548. }
  549. }
  550. /// <summary>
  551. /// 查找类似 Add Folder 的本地化字符串。
  552. /// </summary>
  553. public static string ImageToPDF_AddFolder {
  554. get {
  555. return ResourceManager.GetString("ImageToPDF_AddFolder", resourceCulture);
  556. }
  557. }
  558. /// <summary>
  559. /// 查找类似 Creat PDF for each image 的本地化字符串。
  560. /// </summary>
  561. public static string ImageToPDF_Create {
  562. get {
  563. return ResourceManager.GetString("ImageToPDF_Create", resourceCulture);
  564. }
  565. }
  566. /// <summary>
  567. /// 查找类似 Select files
  568. ///Drop files here or Click “Add Files” in bottom right corner. 的本地化字符串。
  569. /// </summary>
  570. public static string ImageToPDF_EmptyContext {
  571. get {
  572. return ResourceManager.GetString("ImageToPDF_EmptyContext", resourceCulture);
  573. }
  574. }
  575. /// <summary>
  576. /// 查找类似 Export 的本地化字符串。
  577. /// </summary>
  578. public static string ImageToPDF_ExportTitle {
  579. get {
  580. return ResourceManager.GetString("ImageToPDF_ExportTitle", resourceCulture);
  581. }
  582. }
  583. /// <summary>
  584. /// 查找类似 File Name 的本地化字符串。
  585. /// </summary>
  586. public static string ImageToPDF_FileName {
  587. get {
  588. return ResourceManager.GetString("ImageToPDF_FileName", resourceCulture);
  589. }
  590. }
  591. /// <summary>
  592. /// 查找类似 Delete 的本地化字符串。
  593. /// </summary>
  594. public static string ImageToPDF_MenuDelete {
  595. get {
  596. return ResourceManager.GetString("ImageToPDF_MenuDelete", resourceCulture);
  597. }
  598. }
  599. /// <summary>
  600. /// 查找类似 Show in Folder 的本地化字符串。
  601. /// </summary>
  602. public static string ImageToPDF_MenuShowFolder {
  603. get {
  604. return ResourceManager.GetString("ImageToPDF_MenuShowFolder", resourceCulture);
  605. }
  606. }
  607. /// <summary>
  608. /// 查找类似 Merge as one PDF document 的本地化字符串。
  609. /// </summary>
  610. public static string ImageToPDF_Merge {
  611. get {
  612. return ResourceManager.GetString("ImageToPDF_Merge", resourceCulture);
  613. }
  614. }
  615. /// <summary>
  616. /// 查找类似 Settings 的本地化字符串。
  617. /// </summary>
  618. public static string ImageToPDF_Settings {
  619. get {
  620. return ResourceManager.GetString("ImageToPDF_Settings", resourceCulture);
  621. }
  622. }
  623. /// <summary>
  624. /// 查找类似 Size 的本地化字符串。
  625. /// </summary>
  626. public static string ImageToPDF_Size {
  627. get {
  628. return ResourceManager.GetString("ImageToPDF_Size", resourceCulture);
  629. }
  630. }
  631. /// <summary>
  632. /// 查找类似 Status 的本地化字符串。
  633. /// </summary>
  634. public static string ImageToPDF_Status {
  635. get {
  636. return ResourceManager.GetString("ImageToPDF_Status", resourceCulture);
  637. }
  638. }
  639. /// <summary>
  640. /// 查找类似 Image To PDF 的本地化字符串。
  641. /// </summary>
  642. public static string ImageToPDF_Title {
  643. get {
  644. return ResourceManager.GetString("ImageToPDF_Title", resourceCulture);
  645. }
  646. }
  647. /// <summary>
  648. /// 查找类似 Page 的本地化字符串。
  649. /// </summary>
  650. public static string Link_Page {
  651. get {
  652. return ResourceManager.GetString("Link_Page", resourceCulture);
  653. }
  654. }
  655. /// <summary>
  656. /// 查找类似 Link 的本地化字符串。
  657. /// </summary>
  658. public static string Link_Title {
  659. get {
  660. return ResourceManager.GetString("Link_Title", resourceCulture);
  661. }
  662. }
  663. /// <summary>
  664. /// 查找类似 Add Files 的本地化字符串。
  665. /// </summary>
  666. public static string Merge_AddFiles {
  667. get {
  668. return ResourceManager.GetString("Merge_AddFiles", resourceCulture);
  669. }
  670. }
  671. /// <summary>
  672. /// 查找类似 Add Folder 的本地化字符串。
  673. /// </summary>
  674. public static string Merge_AddFolder {
  675. get {
  676. return ResourceManager.GetString("Merge_AddFolder", resourceCulture);
  677. }
  678. }
  679. /// <summary>
  680. /// 查找类似 Add an Open File 的本地化字符串。
  681. /// </summary>
  682. public static string Merge_AddOpenFile {
  683. get {
  684. return ResourceManager.GetString("Merge_AddOpenFile", resourceCulture);
  685. }
  686. }
  687. /// <summary>
  688. /// 查找类似 Selected files
  689. ///Drop files here or Click “Add Files” at bottom right button.
  690. ///Drag files to reorder as you need. 的本地化字符串。
  691. /// </summary>
  692. public static string Merge_Hint {
  693. get {
  694. return ResourceManager.GetString("Merge_Hint", resourceCulture);
  695. }
  696. }
  697. /// <summary>
  698. /// 查找类似 Pages 的本地化字符串。
  699. /// </summary>
  700. public static string Merge_ItemPages {
  701. get {
  702. return ResourceManager.GetString("Merge_ItemPages", resourceCulture);
  703. }
  704. }
  705. /// <summary>
  706. /// 查找类似 Cancel 的本地化字符串。
  707. /// </summary>
  708. public static string Merge_No {
  709. get {
  710. return ResourceManager.GetString("Merge_No", resourceCulture);
  711. }
  712. }
  713. /// <summary>
  714. /// 查找类似 File Name 的本地化字符串。
  715. /// </summary>
  716. public static string Merge_TitleFileName {
  717. get {
  718. return ResourceManager.GetString("Merge_TitleFileName", resourceCulture);
  719. }
  720. }
  721. /// <summary>
  722. /// 查找类似 Page Range 的本地化字符串。
  723. /// </summary>
  724. public static string Merge_TitlePageRange {
  725. get {
  726. return ResourceManager.GetString("Merge_TitlePageRange", resourceCulture);
  727. }
  728. }
  729. /// <summary>
  730. /// 查找类似 Size 的本地化字符串。
  731. /// </summary>
  732. public static string Merge_TitleSize {
  733. get {
  734. return ResourceManager.GetString("Merge_TitleSize", resourceCulture);
  735. }
  736. }
  737. /// <summary>
  738. /// 查找类似 Merge 的本地化字符串。
  739. /// </summary>
  740. public static string Merge_Yes {
  741. get {
  742. return ResourceManager.GetString("Merge_Yes", resourceCulture);
  743. }
  744. }
  745. /// <summary>
  746. /// 查找类似 Close Tab 的本地化字符串。
  747. /// </summary>
  748. public static string MultipleTabs__Close {
  749. get {
  750. return ResourceManager.GetString("MultipleTabs_ Close", resourceCulture);
  751. }
  752. }
  753. /// <summary>
  754. /// 查找类似 Close All Tabs 的本地化字符串。
  755. /// </summary>
  756. public static string MultipleTabs__CloseAll {
  757. get {
  758. return ResourceManager.GetString("MultipleTabs_ CloseAll", resourceCulture);
  759. }
  760. }
  761. /// <summary>
  762. /// 查找类似 Show in Folder 的本地化字符串。
  763. /// </summary>
  764. public static string MultipleTabs__Folder {
  765. get {
  766. return ResourceManager.GetString("MultipleTabs_ Folder", resourceCulture);
  767. }
  768. }
  769. /// <summary>
  770. /// 查找类似 Home 的本地化字符串。
  771. /// </summary>
  772. public static string MultipleTabs_Default {
  773. get {
  774. return ResourceManager.GetString("MultipleTabs_Default", resourceCulture);
  775. }
  776. }
  777. /// <summary>
  778. /// 查找类似 Rename 的本地化字符串。
  779. /// </summary>
  780. public static string MultipleTabs_Rename {
  781. get {
  782. return ResourceManager.GetString("MultipleTabs_Rename", resourceCulture);
  783. }
  784. }
  785. /// <summary>
  786. /// 查找类似 Opacity 的本地化字符串。
  787. /// </summary>
  788. public static string Opacity_Title {
  789. get {
  790. return ResourceManager.GetString("Opacity_Title", resourceCulture);
  791. }
  792. }
  793. /// <summary>
  794. /// 查找类似 Add Item 的本地化字符串。
  795. /// </summary>
  796. public static string Outline_Add {
  797. get {
  798. return ResourceManager.GetString("Outline_Add", resourceCulture);
  799. }
  800. }
  801. /// <summary>
  802. /// 查找类似 Add To Higher Level 的本地化字符串。
  803. /// </summary>
  804. public static string Outline_AddLevel {
  805. get {
  806. return ResourceManager.GetString("Outline_AddLevel", resourceCulture);
  807. }
  808. }
  809. /// <summary>
  810. /// 查找类似 Add Sub-Item 的本地化字符串。
  811. /// </summary>
  812. public static string Outline_AddSub {
  813. get {
  814. return ResourceManager.GetString("Outline_AddSub", resourceCulture);
  815. }
  816. }
  817. /// <summary>
  818. /// 查找类似 Change Destination 的本地化字符串。
  819. /// </summary>
  820. public static string Outline_Change {
  821. get {
  822. return ResourceManager.GetString("Outline_Change", resourceCulture);
  823. }
  824. }
  825. /// <summary>
  826. /// 查找类似 Collapse All 的本地化字符串。
  827. /// </summary>
  828. public static string Outline_Collapse {
  829. get {
  830. return ResourceManager.GetString("Outline_Collapse", resourceCulture);
  831. }
  832. }
  833. /// <summary>
  834. /// 查找类似 Delete 的本地化字符串。
  835. /// </summary>
  836. public static string Outline_Delete {
  837. get {
  838. return ResourceManager.GetString("Outline_Delete", resourceCulture);
  839. }
  840. }
  841. /// <summary>
  842. /// 查找类似 Are you sure you want to set the destination as the current location? 的本地化字符串。
  843. /// </summary>
  844. public static string Outline_DialogContent {
  845. get {
  846. return ResourceManager.GetString("Outline_DialogContent", resourceCulture);
  847. }
  848. }
  849. /// <summary>
  850. /// 查找类似 No 的本地化字符串。
  851. /// </summary>
  852. public static string Outline_DialogNO {
  853. get {
  854. return ResourceManager.GetString("Outline_DialogNO", resourceCulture);
  855. }
  856. }
  857. /// <summary>
  858. /// 查找类似 Yes 的本地化字符串。
  859. /// </summary>
  860. public static string Outline_DialogYes {
  861. get {
  862. return ResourceManager.GetString("Outline_DialogYes", resourceCulture);
  863. }
  864. }
  865. /// <summary>
  866. /// 查找类似 Demote 的本地化字符串。
  867. /// </summary>
  868. public static string Outline_Down {
  869. get {
  870. return ResourceManager.GetString("Outline_Down", resourceCulture);
  871. }
  872. }
  873. /// <summary>
  874. /// 查找类似 Expand All 的本地化字符串。
  875. /// </summary>
  876. public static string Outline_Expand {
  877. get {
  878. return ResourceManager.GetString("Outline_Expand", resourceCulture);
  879. }
  880. }
  881. /// <summary>
  882. /// 查找类似 Remove All Outlines 的本地化字符串。
  883. /// </summary>
  884. public static string Outline_RemoveAll {
  885. get {
  886. return ResourceManager.GetString("Outline_RemoveAll", resourceCulture);
  887. }
  888. }
  889. /// <summary>
  890. /// 查找类似 Rename 的本地化字符串。
  891. /// </summary>
  892. public static string Outline_Rename {
  893. get {
  894. return ResourceManager.GetString("Outline_Rename", resourceCulture);
  895. }
  896. }
  897. /// <summary>
  898. /// 查找类似 Outline 的本地化字符串。
  899. /// </summary>
  900. public static string Outline_Title {
  901. get {
  902. return ResourceManager.GetString("Outline_Title", resourceCulture);
  903. }
  904. }
  905. /// <summary>
  906. /// 查找类似 Promote 的本地化字符串。
  907. /// </summary>
  908. public static string Outline_Up {
  909. get {
  910. return ResourceManager.GetString("Outline_Up", resourceCulture);
  911. }
  912. }
  913. /// <summary>
  914. /// 查找类似 Failed to complete this operation. 的本地化字符串。
  915. /// </summary>
  916. public static string PageEdit_Failed {
  917. get {
  918. return ResourceManager.GetString("PageEdit_Failed", resourceCulture);
  919. }
  920. }
  921. /// <summary>
  922. /// 查找类似 Copy 的本地化字符串。
  923. /// </summary>
  924. public static string PageEdit_MenuCopy {
  925. get {
  926. return ResourceManager.GetString("PageEdit_MenuCopy", resourceCulture);
  927. }
  928. }
  929. /// <summary>
  930. /// 查找类似 Cut 的本地化字符串。
  931. /// </summary>
  932. public static string PageEdit_MenuCut {
  933. get {
  934. return ResourceManager.GetString("PageEdit_MenuCut", resourceCulture);
  935. }
  936. }
  937. /// <summary>
  938. /// 查找类似 Delete 的本地化字符串。
  939. /// </summary>
  940. public static string PageEdit_MenuDelete {
  941. get {
  942. return ResourceManager.GetString("PageEdit_MenuDelete", resourceCulture);
  943. }
  944. }
  945. /// <summary>
  946. /// 查找类似 Paste 的本地化字符串。
  947. /// </summary>
  948. public static string PageEdit_MenuPaste {
  949. get {
  950. return ResourceManager.GetString("PageEdit_MenuPaste", resourceCulture);
  951. }
  952. }
  953. /// <summary>
  954. /// 查找类似 Print 的本地化字符串。
  955. /// </summary>
  956. public static string PageEdit_MenuPrint {
  957. get {
  958. return ResourceManager.GetString("PageEdit_MenuPrint", resourceCulture);
  959. }
  960. }
  961. /// <summary>
  962. /// 查找类似 Rotate Clockwise 的本地化字符串。
  963. /// </summary>
  964. public static string PageEdit_MenuRotateClockwise {
  965. get {
  966. return ResourceManager.GetString("PageEdit_MenuRotateClockwise", resourceCulture);
  967. }
  968. }
  969. /// <summary>
  970. /// 查找类似 Rotate Counterclockwise 的本地化字符串。
  971. /// </summary>
  972. public static string PageEdit_MenuRotateCounterclockwise {
  973. get {
  974. return ResourceManager.GetString("PageEdit_MenuRotateCounterclockwise", resourceCulture);
  975. }
  976. }
  977. /// <summary>
  978. /// 查找类似 Display Page Size 的本地化字符串。
  979. /// </summary>
  980. public static string PageEdit_MenuShowPageSize {
  981. get {
  982. return ResourceManager.GetString("PageEdit_MenuShowPageSize", resourceCulture);
  983. }
  984. }
  985. /// <summary>
  986. /// 查找类似 Color 的本地化字符串。
  987. /// </summary>
  988. public static string Palette_Color {
  989. get {
  990. return ResourceManager.GetString("Palette_Color", resourceCulture);
  991. }
  992. }
  993. /// <summary>
  994. /// 查找类似 More 的本地化字符串。
  995. /// </summary>
  996. public static string Palette_More {
  997. get {
  998. return ResourceManager.GetString("Palette_More", resourceCulture);
  999. }
  1000. }
  1001. /// <summary>
  1002. /// 查找类似 Recently Used 的本地化字符串。
  1003. /// </summary>
  1004. public static string Palette_Recently {
  1005. get {
  1006. return ResourceManager.GetString("Palette_Recently", resourceCulture);
  1007. }
  1008. }
  1009. /// <summary>
  1010. /// 查找类似 Black and white 的本地化字符串。
  1011. /// </summary>
  1012. public static string Print_BlackAndWhite {
  1013. get {
  1014. return ResourceManager.GetString("Print_BlackAndWhite", resourceCulture);
  1015. }
  1016. }
  1017. /// <summary>
  1018. /// 查找类似 Copies 的本地化字符串。
  1019. /// </summary>
  1020. public static string Print_Copies {
  1021. get {
  1022. return ResourceManager.GetString("Print_Copies", resourceCulture);
  1023. }
  1024. }
  1025. /// <summary>
  1026. /// 查找类似 Orientation: 的本地化字符串。
  1027. /// </summary>
  1028. public static string Print_Orientation {
  1029. get {
  1030. return ResourceManager.GetString("Print_Orientation", resourceCulture);
  1031. }
  1032. }
  1033. /// <summary>
  1034. /// 查找类似 Page Settings 的本地化字符串。
  1035. /// </summary>
  1036. public static string Print_PageSettings {
  1037. get {
  1038. return ResourceManager.GetString("Print_PageSettings", resourceCulture);
  1039. }
  1040. }
  1041. /// <summary>
  1042. /// 查找类似 Print Contents: 的本地化字符串。
  1043. /// </summary>
  1044. public static string Print_PrintContent {
  1045. get {
  1046. return ResourceManager.GetString("Print_PrintContent", resourceCulture);
  1047. }
  1048. }
  1049. /// <summary>
  1050. /// 查找类似 Printer 的本地化字符串。
  1051. /// </summary>
  1052. public static string Print_Printer {
  1053. get {
  1054. return ResourceManager.GetString("Print_Printer", resourceCulture);
  1055. }
  1056. }
  1057. /// <summary>
  1058. /// 查找类似 Print Settings 的本地化字符串。
  1059. /// </summary>
  1060. public static string Print_PrintSettings {
  1061. get {
  1062. return ResourceManager.GetString("Print_PrintSettings", resourceCulture);
  1063. }
  1064. }
  1065. /// <summary>
  1066. /// 查找类似 Reverse pages 的本地化字符串。
  1067. /// </summary>
  1068. public static string Print_ReversePages {
  1069. get {
  1070. return ResourceManager.GetString("Print_ReversePages", resourceCulture);
  1071. }
  1072. }
  1073. /// <summary>
  1074. /// 查找类似 Print 的本地化字符串。
  1075. /// </summary>
  1076. public static string Print_Title {
  1077. get {
  1078. return ResourceManager.GetString("Print_Title", resourceCulture);
  1079. }
  1080. }
  1081. /// <summary>
  1082. /// 查找类似 Are you sure you want to remove the security settings for”{0}” documents? 的本地化字符串。
  1083. /// </summary>
  1084. public static string RemovePassword_Context {
  1085. get {
  1086. return ResourceManager.GetString("RemovePassword_Context", resourceCulture);
  1087. }
  1088. }
  1089. /// <summary>
  1090. /// 查找类似 Cancel 的本地化字符串。
  1091. /// </summary>
  1092. public static string RemovePassword_No {
  1093. get {
  1094. return ResourceManager.GetString("RemovePassword_No", resourceCulture);
  1095. }
  1096. }
  1097. /// <summary>
  1098. /// 查找类似 Remove 的本地化字符串。
  1099. /// </summary>
  1100. public static string RemovePassword_YES {
  1101. get {
  1102. return ResourceManager.GetString("RemovePassword_YES", resourceCulture);
  1103. }
  1104. }
  1105. /// <summary>
  1106. /// 查找类似 Sample 的本地化字符串。
  1107. /// </summary>
  1108. public static string Sample {
  1109. get {
  1110. return ResourceManager.GetString("Sample", resourceCulture);
  1111. }
  1112. }
  1113. /// <summary>
  1114. /// 查找类似 Remove Passwords 的本地化字符串。
  1115. /// </summary>
  1116. public static string Security_RemovePassword {
  1117. get {
  1118. return ResourceManager.GetString("Security_RemovePassword", resourceCulture);
  1119. }
  1120. }
  1121. /// <summary>
  1122. /// 查找类似 Set Passwords 的本地化字符串。
  1123. /// </summary>
  1124. public static string Security_SetPassword {
  1125. get {
  1126. return ResourceManager.GetString("Security_SetPassword", resourceCulture);
  1127. }
  1128. }
  1129. /// <summary>
  1130. /// 查找类似 Cancel 的本地化字符串。
  1131. /// </summary>
  1132. public static string SetPassword_No {
  1133. get {
  1134. return ResourceManager.GetString("SetPassword_No", resourceCulture);
  1135. }
  1136. }
  1137. /// <summary>
  1138. /// 查找类似 Open Password 的本地化字符串。
  1139. /// </summary>
  1140. public static string SetPassword_OpenEmptyText {
  1141. get {
  1142. return ResourceManager.GetString("SetPassword_OpenEmptyText", resourceCulture);
  1143. }
  1144. }
  1145. /// <summary>
  1146. /// 查找类似 Document Open Password 的本地化字符串。
  1147. /// </summary>
  1148. public static string SetPassword_OpenTitle {
  1149. get {
  1150. return ResourceManager.GetString("SetPassword_OpenTitle", resourceCulture);
  1151. }
  1152. }
  1153. /// <summary>
  1154. /// 查找类似 Permission Password 的本地化字符串。
  1155. /// </summary>
  1156. public static string SetPassword_PermissionEmptyText {
  1157. get {
  1158. return ResourceManager.GetString("SetPassword_PermissionEmptyText", resourceCulture);
  1159. }
  1160. }
  1161. /// <summary>
  1162. /// 查找类似 Document Permission Password 的本地化字符串。
  1163. /// </summary>
  1164. public static string SetPassword_PermissionTitle {
  1165. get {
  1166. return ResourceManager.GetString("SetPassword_PermissionTitle", resourceCulture);
  1167. }
  1168. }
  1169. /// <summary>
  1170. /// 查找类似 Restrict content copying 的本地化字符串。
  1171. /// </summary>
  1172. public static string SetPassword_RestrictCopying {
  1173. get {
  1174. return ResourceManager.GetString("SetPassword_RestrictCopying", resourceCulture);
  1175. }
  1176. }
  1177. /// <summary>
  1178. /// 查找类似 Restrict document printing 的本地化字符串。
  1179. /// </summary>
  1180. public static string SetPassword_RestrictPrinting {
  1181. get {
  1182. return ResourceManager.GetString("SetPassword_RestrictPrinting", resourceCulture);
  1183. }
  1184. }
  1185. /// <summary>
  1186. /// 查找类似 Set Passwords 的本地化字符串。
  1187. /// </summary>
  1188. public static string SetPassword_Title {
  1189. get {
  1190. return ResourceManager.GetString("SetPassword_Title", resourceCulture);
  1191. }
  1192. }
  1193. /// <summary>
  1194. /// 查找类似 Encrypt 的本地化字符串。
  1195. /// </summary>
  1196. public static string SetPassword_YES {
  1197. get {
  1198. return ResourceManager.GetString("SetPassword_YES", resourceCulture);
  1199. }
  1200. }
  1201. /// <summary>
  1202. /// 查找类似 Clear 的本地化字符串。
  1203. /// </summary>
  1204. public static string Signatur_DialogClear {
  1205. get {
  1206. return ResourceManager.GetString("Signatur_DialogClear", resourceCulture);
  1207. }
  1208. }
  1209. /// <summary>
  1210. /// 查找类似 Drawing 的本地化字符串。
  1211. /// </summary>
  1212. public static string Signatur_DialogDraw {
  1213. get {
  1214. return ResourceManager.GetString("Signatur_DialogDraw", resourceCulture);
  1215. }
  1216. }
  1217. /// <summary>
  1218. /// 查找类似 Sign here 的本地化字符串。
  1219. /// </summary>
  1220. public static string Signatur_DialogDrawHint {
  1221. get {
  1222. return ResourceManager.GetString("Signatur_DialogDrawHint", resourceCulture);
  1223. }
  1224. }
  1225. /// <summary>
  1226. /// 查找类似 Cancel 的本地化字符串。
  1227. /// </summary>
  1228. public static string Signatur_DialogNo {
  1229. get {
  1230. return ResourceManager.GetString("Signatur_DialogNo", resourceCulture);
  1231. }
  1232. }
  1233. /// <summary>
  1234. /// 查找类似 Image 的本地化字符串。
  1235. /// </summary>
  1236. public static string Signatur_DialogPicture {
  1237. get {
  1238. return ResourceManager.GetString("Signatur_DialogPicture", resourceCulture);
  1239. }
  1240. }
  1241. /// <summary>
  1242. /// 查找类似 Select image file 的本地化字符串。
  1243. /// </summary>
  1244. public static string Signatur_DialogPictureHint {
  1245. get {
  1246. return ResourceManager.GetString("Signatur_DialogPictureHint", resourceCulture);
  1247. }
  1248. }
  1249. /// <summary>
  1250. /// 查找类似 Remove Background 的本地化字符串。
  1251. /// </summary>
  1252. public static string Signatur_DialogPictureReBkg {
  1253. get {
  1254. return ResourceManager.GetString("Signatur_DialogPictureReBkg", resourceCulture);
  1255. }
  1256. }
  1257. /// <summary>
  1258. /// 查找类似 Remove white background from images 的本地化字符串。
  1259. /// </summary>
  1260. public static string Signatur_DialogPictureReBkgHint {
  1261. get {
  1262. return ResourceManager.GetString("Signatur_DialogPictureReBkgHint", resourceCulture);
  1263. }
  1264. }
  1265. /// <summary>
  1266. /// 查找类似 Reselect 的本地化字符串。
  1267. /// </summary>
  1268. public static string Signatur_DialogPictureReselect {
  1269. get {
  1270. return ResourceManager.GetString("Signatur_DialogPictureReselect", resourceCulture);
  1271. }
  1272. }
  1273. /// <summary>
  1274. /// 查找类似 Keyboard 的本地化字符串。
  1275. /// </summary>
  1276. public static string Signatur_DialogText {
  1277. get {
  1278. return ResourceManager.GetString("Signatur_DialogText", resourceCulture);
  1279. }
  1280. }
  1281. /// <summary>
  1282. /// 查找类似 Enter your signature here 的本地化字符串。
  1283. /// </summary>
  1284. public static string Signatur_DialogTextHint {
  1285. get {
  1286. return ResourceManager.GetString("Signatur_DialogTextHint", resourceCulture);
  1287. }
  1288. }
  1289. /// <summary>
  1290. /// 查找类似 Create New Signature 的本地化字符串。
  1291. /// </summary>
  1292. public static string Signatur_DialogTitle {
  1293. get {
  1294. return ResourceManager.GetString("Signatur_DialogTitle", resourceCulture);
  1295. }
  1296. }
  1297. /// <summary>
  1298. /// 查找类似 Apply 的本地化字符串。
  1299. /// </summary>
  1300. public static string Signatur_DialogYes {
  1301. get {
  1302. return ResourceManager.GetString("Signatur_DialogYes", resourceCulture);
  1303. }
  1304. }
  1305. /// <summary>
  1306. /// 查找类似 Signature 的本地化字符串。
  1307. /// </summary>
  1308. public static string Signatur_Title {
  1309. get {
  1310. return ResourceManager.GetString("Signatur_Title", resourceCulture);
  1311. }
  1312. }
  1313. /// <summary>
  1314. /// 查找类似 Stamp 的本地化字符串。
  1315. /// </summary>
  1316. public static string Stamp_Title {
  1317. get {
  1318. return ResourceManager.GetString("Stamp_Title", resourceCulture);
  1319. }
  1320. }
  1321. /// <summary>
  1322. /// 查找类似 Strikethrough 的本地化字符串。
  1323. /// </summary>
  1324. public static string Strikethrough_Title {
  1325. get {
  1326. return ResourceManager.GetString("Strikethrough_Title", resourceCulture);
  1327. }
  1328. }
  1329. /// <summary>
  1330. /// 查找类似 Thumbnails 的本地化字符串。
  1331. /// </summary>
  1332. public static string Thumbnails_Title {
  1333. get {
  1334. return ResourceManager.GetString("Thumbnails_Title", resourceCulture);
  1335. }
  1336. }
  1337. /// <summary>
  1338. /// 查找类似 Underline 的本地化字符串。
  1339. /// </summary>
  1340. public static string Underline_Title {
  1341. get {
  1342. return ResourceManager.GetString("Underline_Title", resourceCulture);
  1343. }
  1344. }
  1345. /// <summary>
  1346. /// 查找类似 Book Mode 的本地化字符串。
  1347. /// </summary>
  1348. public static string ViewProperties_Book {
  1349. get {
  1350. return ResourceManager.GetString("ViewProperties_Book", resourceCulture);
  1351. }
  1352. }
  1353. /// <summary>
  1354. /// 查找类似 Continuous Scroll 的本地化字符串。
  1355. /// </summary>
  1356. public static string ViewProperties_ContinuousScroll {
  1357. get {
  1358. return ResourceManager.GetString("ViewProperties_ContinuousScroll", resourceCulture);
  1359. }
  1360. }
  1361. /// <summary>
  1362. /// 查找类似 Full Screen 的本地化字符串。
  1363. /// </summary>
  1364. public static string ViewProperties_Full {
  1365. get {
  1366. return ResourceManager.GetString("ViewProperties_Full", resourceCulture);
  1367. }
  1368. }
  1369. /// <summary>
  1370. /// 查找类似 Display Mode 的本地化字符串。
  1371. /// </summary>
  1372. public static string ViewProperties_Mode {
  1373. get {
  1374. return ResourceManager.GetString("ViewProperties_Mode", resourceCulture);
  1375. }
  1376. }
  1377. /// <summary>
  1378. /// 查找类似 Page Break 的本地化字符串。
  1379. /// </summary>
  1380. public static string ViewProperties_PageBreak {
  1381. get {
  1382. return ResourceManager.GetString("ViewProperties_PageBreak", resourceCulture);
  1383. }
  1384. }
  1385. /// <summary>
  1386. /// 查找类似 Read Mode 的本地化字符串。
  1387. /// </summary>
  1388. public static string ViewProperties_Read {
  1389. get {
  1390. return ResourceManager.GetString("ViewProperties_Read", resourceCulture);
  1391. }
  1392. }
  1393. /// <summary>
  1394. /// 查找类似 Rotate 的本地化字符串。
  1395. /// </summary>
  1396. public static string ViewProperties_RotateTitle {
  1397. get {
  1398. return ResourceManager.GetString("ViewProperties_RotateTitle", resourceCulture);
  1399. }
  1400. }
  1401. /// <summary>
  1402. /// 查找类似 Single Page 的本地化字符串。
  1403. /// </summary>
  1404. public static string ViewProperties_Single {
  1405. get {
  1406. return ResourceManager.GetString("ViewProperties_Single", resourceCulture);
  1407. }
  1408. }
  1409. /// <summary>
  1410. /// 查找类似 View 的本地化字符串。
  1411. /// </summary>
  1412. public static string ViewProperties_Title {
  1413. get {
  1414. return ResourceManager.GetString("ViewProperties_Title", resourceCulture);
  1415. }
  1416. }
  1417. /// <summary>
  1418. /// 查找类似 Two Pages 的本地化字符串。
  1419. /// </summary>
  1420. public static string ViewProperties_Two {
  1421. get {
  1422. return ResourceManager.GetString("ViewProperties_Two", resourceCulture);
  1423. }
  1424. }
  1425. /// <summary>
  1426. /// 查找类似 Actual Size 的本地化字符串。
  1427. /// </summary>
  1428. public static string ViewRightMenu_ActualSize {
  1429. get {
  1430. return ResourceManager.GetString("ViewRightMenu_ActualSize", resourceCulture);
  1431. }
  1432. }
  1433. /// <summary>
  1434. /// 查找类似 Add Bookmarks 的本地化字符串。
  1435. /// </summary>
  1436. public static string ViewRightMenu_AddBookmarks {
  1437. get {
  1438. return ResourceManager.GetString("ViewRightMenu_AddBookmarks", resourceCulture);
  1439. }
  1440. }
  1441. /// <summary>
  1442. /// 查找类似 Add Comment 的本地化字符串。
  1443. /// </summary>
  1444. public static string ViewRightMenu_AddComment {
  1445. get {
  1446. return ResourceManager.GetString("ViewRightMenu_AddComment", resourceCulture);
  1447. }
  1448. }
  1449. /// <summary>
  1450. /// 查找类似 Add Link 的本地化字符串。
  1451. /// </summary>
  1452. public static string ViewRightMenu_AddLink {
  1453. get {
  1454. return ResourceManager.GetString("ViewRightMenu_AddLink", resourceCulture);
  1455. }
  1456. }
  1457. /// <summary>
  1458. /// 查找类似 Add Outline 的本地化字符串。
  1459. /// </summary>
  1460. public static string ViewRightMenu_AddOutline {
  1461. get {
  1462. return ResourceManager.GetString("ViewRightMenu_AddOutline", resourceCulture);
  1463. }
  1464. }
  1465. /// <summary>
  1466. /// 查找类似 Zoom to Selected Area 的本地化字符串。
  1467. /// </summary>
  1468. public static string ViewRightMenu_AreaZoom {
  1469. get {
  1470. return ResourceManager.GetString("ViewRightMenu_AreaZoom", resourceCulture);
  1471. }
  1472. }
  1473. /// <summary>
  1474. /// 查找类似 Arrow 的本地化字符串。
  1475. /// </summary>
  1476. public static string ViewRightMenu_Arrow {
  1477. get {
  1478. return ResourceManager.GetString("ViewRightMenu_Arrow", resourceCulture);
  1479. }
  1480. }
  1481. /// <summary>
  1482. /// 查找类似 Book Mode 的本地化字符串。
  1483. /// </summary>
  1484. public static string ViewRightMenu_BookMode {
  1485. get {
  1486. return ResourceManager.GetString("ViewRightMenu_BookMode", resourceCulture);
  1487. }
  1488. }
  1489. /// <summary>
  1490. /// 查找类似 Content Selection 的本地化字符串。
  1491. /// </summary>
  1492. public static string ViewRightMenu_ContentSelection {
  1493. get {
  1494. return ResourceManager.GetString("ViewRightMenu_ContentSelection", resourceCulture);
  1495. }
  1496. }
  1497. /// <summary>
  1498. /// 查找类似 Copy 的本地化字符串。
  1499. /// </summary>
  1500. public static string ViewRightMenu_Copy {
  1501. get {
  1502. return ResourceManager.GetString("ViewRightMenu_Copy", resourceCulture);
  1503. }
  1504. }
  1505. /// <summary>
  1506. /// 查找类似 Extract Image 的本地化字符串。
  1507. /// </summary>
  1508. public static string ViewRightMenu_ExtractImage {
  1509. get {
  1510. return ResourceManager.GetString("ViewRightMenu_ExtractImage", resourceCulture);
  1511. }
  1512. }
  1513. /// <summary>
  1514. /// 查找类似 Fit Page 的本地化字符串。
  1515. /// </summary>
  1516. public static string ViewRightMenu_FitPage {
  1517. get {
  1518. return ResourceManager.GetString("ViewRightMenu_FitPage", resourceCulture);
  1519. }
  1520. }
  1521. /// <summary>
  1522. /// 查找类似 Fit Width 的本地化字符串。
  1523. /// </summary>
  1524. public static string ViewRightMenu_FitWidth {
  1525. get {
  1526. return ResourceManager.GetString("ViewRightMenu_FitWidth", resourceCulture);
  1527. }
  1528. }
  1529. /// <summary>
  1530. /// 查找类似 Freehand 的本地化字符串。
  1531. /// </summary>
  1532. public static string ViewRightMenu_Freehand {
  1533. get {
  1534. return ResourceManager.GetString("ViewRightMenu_Freehand", resourceCulture);
  1535. }
  1536. }
  1537. /// <summary>
  1538. /// 查找类似 Hide Annotations 的本地化字符串。
  1539. /// </summary>
  1540. public static string ViewRightMenu_HideAnnotations {
  1541. get {
  1542. return ResourceManager.GetString("ViewRightMenu_HideAnnotations", resourceCulture);
  1543. }
  1544. }
  1545. /// <summary>
  1546. /// 查找类似 Highlight 的本地化字符串。
  1547. /// </summary>
  1548. public static string ViewRightMenu_Highlight {
  1549. get {
  1550. return ResourceManager.GetString("ViewRightMenu_Highlight", resourceCulture);
  1551. }
  1552. }
  1553. /// <summary>
  1554. /// 查找类似 Link 的本地化字符串。
  1555. /// </summary>
  1556. public static string ViewRightMenu_Link {
  1557. get {
  1558. return ResourceManager.GetString("ViewRightMenu_Link", resourceCulture);
  1559. }
  1560. }
  1561. /// <summary>
  1562. /// 查找类似 Note 的本地化字符串。
  1563. /// </summary>
  1564. public static string ViewRightMenu_Note {
  1565. get {
  1566. return ResourceManager.GetString("ViewRightMenu_Note", resourceCulture);
  1567. }
  1568. }
  1569. /// <summary>
  1570. /// 查找类似 Read Mode On 的本地化字符串。
  1571. /// </summary>
  1572. public static string ViewRightMenu_OnReadMode {
  1573. get {
  1574. return ResourceManager.GetString("ViewRightMenu_OnReadMode", resourceCulture);
  1575. }
  1576. }
  1577. /// <summary>
  1578. /// 查找类似 Read Mode Off 的本地化字符串。
  1579. /// </summary>
  1580. public static string ViewRightMenu_OutReadMode {
  1581. get {
  1582. return ResourceManager.GetString("ViewRightMenu_OutReadMode", resourceCulture);
  1583. }
  1584. }
  1585. /// <summary>
  1586. /// 查找类似 Oval 的本地化字符串。
  1587. /// </summary>
  1588. public static string ViewRightMenu_Oval {
  1589. get {
  1590. return ResourceManager.GetString("ViewRightMenu_Oval", resourceCulture);
  1591. }
  1592. }
  1593. /// <summary>
  1594. /// 查找类似 Page Display 的本地化字符串。
  1595. /// </summary>
  1596. public static string ViewRightMenu_PageDisplay {
  1597. get {
  1598. return ResourceManager.GetString("ViewRightMenu_PageDisplay", resourceCulture);
  1599. }
  1600. }
  1601. /// <summary>
  1602. /// 查找类似 Paste 的本地化字符串。
  1603. /// </summary>
  1604. public static string ViewRightMenu_Paste {
  1605. get {
  1606. return ResourceManager.GetString("ViewRightMenu_Paste", resourceCulture);
  1607. }
  1608. }
  1609. /// <summary>
  1610. /// 查找类似 Print 的本地化字符串。
  1611. /// </summary>
  1612. public static string ViewRightMenu_Print {
  1613. get {
  1614. return ResourceManager.GetString("ViewRightMenu_Print", resourceCulture);
  1615. }
  1616. }
  1617. /// <summary>
  1618. /// 查找类似 Rectangle 的本地化字符串。
  1619. /// </summary>
  1620. public static string ViewRightMenu_Rectangle {
  1621. get {
  1622. return ResourceManager.GetString("ViewRightMenu_Rectangle", resourceCulture);
  1623. }
  1624. }
  1625. /// <summary>
  1626. /// 查找类似 Remove Bookmarks 的本地化字符串。
  1627. /// </summary>
  1628. public static string ViewRightMenu_RemoveBookmarks {
  1629. get {
  1630. return ResourceManager.GetString("ViewRightMenu_RemoveBookmarks", resourceCulture);
  1631. }
  1632. }
  1633. /// <summary>
  1634. /// 查找类似 Scroll Tool 的本地化字符串。
  1635. /// </summary>
  1636. public static string ViewRightMenu_ScrollTool {
  1637. get {
  1638. return ResourceManager.GetString("ViewRightMenu_ScrollTool", resourceCulture);
  1639. }
  1640. }
  1641. /// <summary>
  1642. /// 查找类似 Search 的本地化字符串。
  1643. /// </summary>
  1644. public static string ViewRightMenu_Search {
  1645. get {
  1646. return ResourceManager.GetString("ViewRightMenu_Search", resourceCulture);
  1647. }
  1648. }
  1649. /// <summary>
  1650. /// 查找类似 Show Annotations 的本地化字符串。
  1651. /// </summary>
  1652. public static string ViewRightMenu_ShowAnnotations {
  1653. get {
  1654. return ResourceManager.GetString("ViewRightMenu_ShowAnnotations", resourceCulture);
  1655. }
  1656. }
  1657. /// <summary>
  1658. /// 查找类似 Signature 的本地化字符串。
  1659. /// </summary>
  1660. public static string ViewRightMenu_Signature {
  1661. get {
  1662. return ResourceManager.GetString("ViewRightMenu_Signature", resourceCulture);
  1663. }
  1664. }
  1665. /// <summary>
  1666. /// 查找类似 Single Page 的本地化字符串。
  1667. /// </summary>
  1668. public static string ViewRightMenu_SinglePage {
  1669. get {
  1670. return ResourceManager.GetString("ViewRightMenu_SinglePage", resourceCulture);
  1671. }
  1672. }
  1673. /// <summary>
  1674. /// 查找类似 Single Page Continuous 的本地化字符串。
  1675. /// </summary>
  1676. public static string ViewRightMenu_SinglePageContinuous {
  1677. get {
  1678. return ResourceManager.GetString("ViewRightMenu_SinglePageContinuous", resourceCulture);
  1679. }
  1680. }
  1681. /// <summary>
  1682. /// 查找类似 Stamp 的本地化字符串。
  1683. /// </summary>
  1684. public static string ViewRightMenu_Stamp {
  1685. get {
  1686. return ResourceManager.GetString("ViewRightMenu_Stamp", resourceCulture);
  1687. }
  1688. }
  1689. /// <summary>
  1690. /// 查找类似 Straight Line 的本地化字符串。
  1691. /// </summary>
  1692. public static string ViewRightMenu_StraightLine {
  1693. get {
  1694. return ResourceManager.GetString("ViewRightMenu_StraightLine", resourceCulture);
  1695. }
  1696. }
  1697. /// <summary>
  1698. /// 查找类似 Strikethrough 的本地化字符串。
  1699. /// </summary>
  1700. public static string ViewRightMenu_Strikethrough {
  1701. get {
  1702. return ResourceManager.GetString("ViewRightMenu_Strikethrough", resourceCulture);
  1703. }
  1704. }
  1705. /// <summary>
  1706. /// 查找类似 Text 的本地化字符串。
  1707. /// </summary>
  1708. public static string ViewRightMenu_Text {
  1709. get {
  1710. return ResourceManager.GetString("ViewRightMenu_Text", resourceCulture);
  1711. }
  1712. }
  1713. /// <summary>
  1714. /// 查找类似 Two Pages 的本地化字符串。
  1715. /// </summary>
  1716. public static string ViewRightMenu_TwoPages {
  1717. get {
  1718. return ResourceManager.GetString("ViewRightMenu_TwoPages", resourceCulture);
  1719. }
  1720. }
  1721. /// <summary>
  1722. /// 查找类似 Two Pages Continuous 的本地化字符串。
  1723. /// </summary>
  1724. public static string ViewRightMenu_TwoPagesContinuous {
  1725. get {
  1726. return ResourceManager.GetString("ViewRightMenu_TwoPagesContinuous", resourceCulture);
  1727. }
  1728. }
  1729. /// <summary>
  1730. /// 查找类似 Underline 的本地化字符串。
  1731. /// </summary>
  1732. public static string ViewRightMenu_Underline {
  1733. get {
  1734. return ResourceManager.GetString("ViewRightMenu_Underline", resourceCulture);
  1735. }
  1736. }
  1737. /// <summary>
  1738. /// 查找类似 Zoom 的本地化字符串。
  1739. /// </summary>
  1740. public static string ViewRightMenu_Zoom {
  1741. get {
  1742. return ResourceManager.GetString("ViewRightMenu_Zoom", resourceCulture);
  1743. }
  1744. }
  1745. /// <summary>
  1746. /// 查找类似 Zoom In 的本地化字符串。
  1747. /// </summary>
  1748. public static string ViewRightMenu_ZoomIn {
  1749. get {
  1750. return ResourceManager.GetString("ViewRightMenu_ZoomIn", resourceCulture);
  1751. }
  1752. }
  1753. /// <summary>
  1754. /// 查找类似 Zoom Out 的本地化字符串。
  1755. /// </summary>
  1756. public static string ViewRightMenu_ZoomOut {
  1757. get {
  1758. return ResourceManager.GetString("ViewRightMenu_ZoomOut", resourceCulture);
  1759. }
  1760. }
  1761. /// <summary>
  1762. /// 查找类似 Annotation 的本地化字符串。
  1763. /// </summary>
  1764. public static string ViewTopToolbar_Annotation {
  1765. get {
  1766. return ResourceManager.GetString("ViewTopToolbar_Annotation", resourceCulture);
  1767. }
  1768. }
  1769. /// <summary>
  1770. /// 查找类似 Converter 的本地化字符串。
  1771. /// </summary>
  1772. public static string ViewTopToolbar_Converter {
  1773. get {
  1774. return ResourceManager.GetString("ViewTopToolbar_Converter", resourceCulture);
  1775. }
  1776. }
  1777. /// <summary>
  1778. /// 查找类似 File 的本地化字符串。
  1779. /// </summary>
  1780. public static string ViewTopToolbar_File {
  1781. get {
  1782. return ResourceManager.GetString("ViewTopToolbar_File", resourceCulture);
  1783. }
  1784. }
  1785. /// <summary>
  1786. /// 查找类似 Fill&amp;Sign 的本地化字符串。
  1787. /// </summary>
  1788. public static string ViewTopToolbar_Fill_Sign {
  1789. get {
  1790. return ResourceManager.GetString("ViewTopToolbar_Fill&Sign", resourceCulture);
  1791. }
  1792. }
  1793. /// <summary>
  1794. /// 查找类似 Page Edit 的本地化字符串。
  1795. /// </summary>
  1796. public static string ViewTopToolbar_PageEdit {
  1797. get {
  1798. return ResourceManager.GetString("ViewTopToolbar_PageEdit", resourceCulture);
  1799. }
  1800. }
  1801. /// <summary>
  1802. /// 查找类似 Print 的本地化字符串。
  1803. /// </summary>
  1804. public static string ViewTopToolbar_Print {
  1805. get {
  1806. return ResourceManager.GetString("ViewTopToolbar_Print", resourceCulture);
  1807. }
  1808. }
  1809. /// <summary>
  1810. /// 查找类似 Properties 的本地化字符串。
  1811. /// </summary>
  1812. public static string ViewTopToolbar_Properties {
  1813. get {
  1814. return ResourceManager.GetString("ViewTopToolbar_Properties", resourceCulture);
  1815. }
  1816. }
  1817. /// <summary>
  1818. /// 查找类似 Redo 的本地化字符串。
  1819. /// </summary>
  1820. public static string ViewTopToolbar_Redo {
  1821. get {
  1822. return ResourceManager.GetString("ViewTopToolbar_Redo", resourceCulture);
  1823. }
  1824. }
  1825. /// <summary>
  1826. /// 查找类似 Save 的本地化字符串。
  1827. /// </summary>
  1828. public static string ViewTopToolbar_Save {
  1829. get {
  1830. return ResourceManager.GetString("ViewTopToolbar_Save", resourceCulture);
  1831. }
  1832. }
  1833. /// <summary>
  1834. /// 查找类似 Share 的本地化字符串。
  1835. /// </summary>
  1836. public static string ViewTopToolbar_Share {
  1837. get {
  1838. return ResourceManager.GetString("ViewTopToolbar_Share", resourceCulture);
  1839. }
  1840. }
  1841. /// <summary>
  1842. /// 查找类似 Tools 的本地化字符串。
  1843. /// </summary>
  1844. public static string ViewTopToolbar_Tools {
  1845. get {
  1846. return ResourceManager.GetString("ViewTopToolbar_Tools", resourceCulture);
  1847. }
  1848. }
  1849. /// <summary>
  1850. /// 查找类似 Undo 的本地化字符串。
  1851. /// </summary>
  1852. public static string ViewTopToolbar_Undo {
  1853. get {
  1854. return ResourceManager.GetString("ViewTopToolbar_Undo", resourceCulture);
  1855. }
  1856. }
  1857. /// <summary>
  1858. /// 查找类似 All pages 的本地化字符串。
  1859. /// </summary>
  1860. public static string WritableComboBox_AllPage {
  1861. get {
  1862. return ResourceManager.GetString("WritableComboBox_AllPage", resourceCulture);
  1863. }
  1864. }
  1865. /// <summary>
  1866. /// 查找类似 Custom Range 的本地化字符串。
  1867. /// </summary>
  1868. public static string WritableComboBox_CustomRange {
  1869. get {
  1870. return ResourceManager.GetString("WritableComboBox_CustomRange", resourceCulture);
  1871. }
  1872. }
  1873. /// <summary>
  1874. /// 查找类似 Even Pages 的本地化字符串。
  1875. /// </summary>
  1876. public static string WritableComboBox_EvenPage {
  1877. get {
  1878. return ResourceManager.GetString("WritableComboBox_EvenPage", resourceCulture);
  1879. }
  1880. }
  1881. /// <summary>
  1882. /// 查找类似 Odd Pages 的本地化字符串。
  1883. /// </summary>
  1884. public static string WritableComboBox_OddPage {
  1885. get {
  1886. return ResourceManager.GetString("WritableComboBox_OddPage", resourceCulture);
  1887. }
  1888. }
  1889. /// <summary>
  1890. /// 查找类似 Actual Size 的本地化字符串。
  1891. /// </summary>
  1892. public static string Zoom_Actual {
  1893. get {
  1894. return ResourceManager.GetString("Zoom_Actual", resourceCulture);
  1895. }
  1896. }
  1897. /// <summary>
  1898. /// 查找类似 Fit Page 的本地化字符串。
  1899. /// </summary>
  1900. public static string Zoom_FitPage {
  1901. get {
  1902. return ResourceManager.GetString("Zoom_FitPage", resourceCulture);
  1903. }
  1904. }
  1905. /// <summary>
  1906. /// 查找类似 Fit Width 的本地化字符串。
  1907. /// </summary>
  1908. public static string Zoom_FitWidth {
  1909. get {
  1910. return ResourceManager.GetString("Zoom_FitWidth", resourceCulture);
  1911. }
  1912. }
  1913. }
  1914. }