custom-locale.json 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. {
  2. "export": {
  3. "emptyTextPlaceholder": "<empty>",
  4. "boolTextFalse": "False",
  5. "boolTextTrue": "True",
  6. "nodocument": "No document selected",
  7. "inprogress-lbl": "Export in progress",
  8. "cancel-btn": "Cancel",
  9. "file-format-label": "Format",
  10. "start-btn": "Export"
  11. },
  12. "exportcsv": {
  13. "friendlyName": "CSV (*.csv)",
  14. "settings": {
  15. "ColumnsDelimiter": {
  16. "label": "ColumnsDelimiter",
  17. "category": "Misc"
  18. },
  19. "Encoding": {
  20. "label": "Encoding",
  21. "category": "Misc",
  22. "enum": {
  23. "utf-8": "Unicode (UTF-8)",
  24. "us-ascii": "US-ASCII",
  25. "utf-16": "Unicode"
  26. }
  27. },
  28. "NoHeader": {
  29. "label": "NoHeader",
  30. "category": "Misc"
  31. },
  32. "QuotationSymbol": {
  33. "label": "QuotationSymbol",
  34. "category": "Misc"
  35. },
  36. "RowsDelimiter": {
  37. "label": "RowsDelimiter",
  38. "category": "Misc"
  39. }
  40. }
  41. },
  42. "exportdoc": {
  43. "friendlyName": "Word 2003 (*.doc)",
  44. "settings": {
  45. "Author": {
  46. "label": "Author",
  47. "category": "Misc"
  48. },
  49. "BaseHref": {
  50. "label": "BaseUrl",
  51. "category": "Misc"
  52. },
  53. "Generator": {
  54. "label": "Generator",
  55. "category": "Misc"
  56. },
  57. "PageHeight": {
  58. "label": "PageHeight",
  59. "category": "Misc"
  60. },
  61. "PageWidth": {
  62. "label": "PageWidth",
  63. "category": "Misc"
  64. },
  65. "Title": {
  66. "label": "Title",
  67. "category": "Misc"
  68. }
  69. }
  70. },
  71. "exportdocx": {
  72. "friendlyName": "Word (*.docx)",
  73. "settings": {
  74. "Author": {
  75. "label": "Author",
  76. "category": "Misc"
  77. },
  78. "CompanyName": {
  79. "label": "CompanyName",
  80. "category": "Misc"
  81. },
  82. "DocumentCompatibilityVersion": {
  83. "label": "DocumentCompatibilityVersion",
  84. "category": "Misc",
  85. "enum": {
  86. "Word2007": "Word2007",
  87. "Word2010": "Word2010",
  88. "Word2013": "Word2013"
  89. }
  90. },
  91. "DpiX": {
  92. "label": "DpiX",
  93. "category": "Misc"
  94. },
  95. "DpiY": {
  96. "label": "DpiY",
  97. "category": "Misc"
  98. },
  99. "Orientation": {
  100. "label": "PageOrientation",
  101. "category": "PageSettings",
  102. "enum": {
  103. "Default": "Default",
  104. "Portrait": "Portrait",
  105. "Landscape": "Landscape"
  106. }
  107. },
  108. "PaperSize": {
  109. "label": "PaperSize",
  110. "category": "PageSettings",
  111. "enum": {
  112. "Default": "Default",
  113. "Letter": "Letter",
  114. "LetterSmall": "LetterSmall",
  115. "Tabloid": "Tabloid",
  116. "Ledger": "Ledger",
  117. "Legal": "Legal",
  118. "Statement": "Statement",
  119. "Executive": "Executive",
  120. "A3": "A3",
  121. "A4": "A4",
  122. "A4Small": "A4Small",
  123. "A5": "A5",
  124. "B4": "B4",
  125. "B5": "B5"
  126. }
  127. },
  128. "Password": {
  129. "label": "Password",
  130. "category": "SecuritySettings"
  131. },
  132. "ReadOnlyRecommended": {
  133. "label": "ReadOnlyRecommended",
  134. "category": "SecuritySettings"
  135. },
  136. "WritePassword": {
  137. "label": "WritePassword",
  138. "category": "SecuritySettings"
  139. },
  140. "Title": {
  141. "label": "Title",
  142. "category": "Misc"
  143. },
  144. "TOCAutoUpdate": {
  145. "label": "TOCAutoUpdate",
  146. "category": "Misc"
  147. }
  148. }
  149. },
  150. "exportjson": {
  151. "friendlyName": "JSON (*.json)",
  152. "settings": {
  153. "Formatted": {
  154. "label": "Formatted",
  155. "category": "Misc"
  156. },
  157. "QuotePropertyNames": {
  158. "label": "QuotePropertyNames",
  159. "category": "Misc"
  160. }
  161. }
  162. },
  163. "exportmht": {
  164. "friendlyName": "Web Archive (*.mht)",
  165. "settings": {
  166. "Fragment": {
  167. "label": "Fragment",
  168. "category": "Output"
  169. },
  170. "OutputTOC": {
  171. "label": "OutputTOC",
  172. "category": "Output"
  173. },
  174. "LinkTarget": {
  175. "label": "LinkTarget",
  176. "category": "Rendering"
  177. },
  178. "Mode": {
  179. "label": "Mode",
  180. "category": "Rendering",
  181. "enum": {
  182. "Galley": "Galley",
  183. "Paginated": "Paginated"
  184. }
  185. },
  186. "BookmarkStyle": {
  187. "label": "BookmarkStyle",
  188. "category": "Misc",
  189. "enum": {
  190. "Html": "Html",
  191. "None": "None"
  192. }
  193. },
  194. "CharacterSet": {
  195. "label": "CharacterSet",
  196. "category": "Misc",
  197. "enum": {
  198. "Big5": "Big5",
  199. "EucJp": "EucJp",
  200. "HzGb2312": "HzGb2312",
  201. "Ibm850": "Ibm850",
  202. "Iso2022Jp": "Iso2022Jp",
  203. "Iso8859_1": "Iso8859_1",
  204. "Iso8859_2": "Iso8859_2",
  205. "Iso8859_5": "Iso8859_5",
  206. "Iso8859_6": "Iso8859_6",
  207. "Koi8r": "Koi8r",
  208. "Ksc5601": "Ksc5601",
  209. "ShiftJis": "ShiftJis",
  210. "UnicodeUtf16": "UnicodeUtf16",
  211. "UnicodeUtf8": "UnicodeUtf8"
  212. }
  213. },
  214. "CreateFramesetPage": {
  215. "label": "CreateFramesetPage",
  216. "category": "Misc"
  217. },
  218. "IncludeHtmlHeader": {
  219. "label": "IncludeHtmlHeader",
  220. "category": "Misc"
  221. },
  222. "IncludePageMargins": {
  223. "label": "IncludePageMargins",
  224. "category": "Misc"
  225. },
  226. "MultiPage": {
  227. "label": "MultiPage",
  228. "category": "Misc"
  229. },
  230. "OutputType": {
  231. "label": "OutputType",
  232. "category": "Misc",
  233. "enum": {
  234. "DynamicHtml": "DynamicHtml",
  235. "LegacyHtml": "LegacyHtml"
  236. }
  237. },
  238. "Pagination": {
  239. "label": "Pagination",
  240. "category": "Misc"
  241. },
  242. "RemoveVerticalSpace": {
  243. "label": "RemoveVerticalSpace",
  244. "category": "Misc"
  245. },
  246. "Title": {
  247. "label": "Title",
  248. "category": "Misc"
  249. }
  250. }
  251. },
  252. "exportpdf": {
  253. "application": "ActiveReports 14",
  254. "friendlyName": "PDF (*.pdf)",
  255. "settings": {
  256. "Title": {
  257. "label": "Title",
  258. "category": "Misc"
  259. },
  260. "Author": {
  261. "label": "Author",
  262. "category": "Misc"
  263. },
  264. "Subject": {
  265. "label": "Subject",
  266. "category": "Misc"
  267. },
  268. "Keywords": {
  269. "label": "Keywords",
  270. "category": "Misc"
  271. },
  272. "Application": {
  273. "label": "Application",
  274. "category": "Misc"
  275. },
  276. "EmbedFonts": {
  277. "label": "EmbedFonts",
  278. "category": "Misc",
  279. "enum": {
  280. "Partial": "Partial",
  281. "All": "All",
  282. "None": "None"
  283. }
  284. },
  285. "Version": {
  286. "label": "Version",
  287. "category": "Misc",
  288. "enum": {
  289. "Pdf12": "PDF-1.2",
  290. "Pdf13": "PDF-1.3",
  291. "Pdf14": "PDF-1.4",
  292. "Pdf15": "PDF-1.5",
  293. "Pdf16": "PDF-1.6",
  294. "Pdf17": "PDF-1.7",
  295. "PdfA1a": "PDF/A-1a",
  296. "PdfA1b": "PDF/A-1b",
  297. "PdfA2a": "PDF/A-2a",
  298. "PdfA2b": "PDF/A-2b",
  299. "PdfA2u": "PDF/A-2u",
  300. "PdfA3a": "PDF/A-3a",
  301. "PdfA3b": "PDF/A-3b",
  302. "PdfA3u": "PDF/A-3u",
  303. "PdfUA1": "PDF/UA-1"
  304. }
  305. },
  306. "UserPassword": {
  307. "label": "UserPassword",
  308. "category": "SecuritySettings"
  309. },
  310. "OwnerPassword": {
  311. "label": "OwnerPassword",
  312. "category": "SecuritySettings"
  313. },
  314. "Encrypt": {
  315. "label": "Encrypt",
  316. "category": "SecuritySettings"
  317. },
  318. "ConvertMetaToPng": {
  319. "label": "ConvertMetaToPng",
  320. "category": "Misc"
  321. },
  322. "ExportBookmarks": {
  323. "label": "ExportBookmarks",
  324. "category": "Misc"
  325. },
  326. "ImageInterpolation": {
  327. "label": "ImageInterpolation",
  328. "category": "Misc",
  329. "enum": {
  330. "Auto": "Auto",
  331. "None": "None"
  332. }
  333. },
  334. "ImageQuality": {
  335. "label": "ImageQuality",
  336. "category": "Misc",
  337. "enum": {
  338. "Medium": "Medium",
  339. "Lowest": "Lowest",
  340. "Highest": "Highest"
  341. }
  342. }
  343. }
  344. },
  345. "exportrtf": {
  346. "friendlyName": "Rich Text Format (RTF)",
  347. "settings": {
  348. "EnableShapes": {
  349. "label": "EnableShapes",
  350. "category": "Misc"
  351. },
  352. "Pagination": {
  353. "label": "Pagination",
  354. "category": "Misc"
  355. }
  356. }
  357. },
  358. "exporttiff": {
  359. "friendlyName": "Tagged Image (*.tiff)",
  360. "settings": {
  361. "Compression": {
  362. "label": "CompressionScheme",
  363. "category": "Misc",
  364. "enum": {
  365. "None": "None",
  366. "Rle": "Rle",
  367. "Ccitt3": "Ccitt3",
  368. "Ccitt4": "Ccitt4",
  369. "Lzw": "Lzw"
  370. }
  371. },
  372. "Dither": {
  373. "label": "Dither",
  374. "category": "Misc"
  375. },
  376. "DpiX": {
  377. "label": "DpiX",
  378. "category": "Misc"
  379. },
  380. "DpiY": {
  381. "label": "DpiY",
  382. "category": "Misc"
  383. },
  384. "Pagination": {
  385. "label": "Pagination",
  386. "category": "Misc"
  387. },
  388. "CompressionScheme": {
  389. "label": "CompressionScheme",
  390. "category": "Misc",
  391. "enum": {
  392. "None": "None",
  393. "Rle": "Rle",
  394. "Ccitt3": "Ccitt3",
  395. "Ccitt4": "Ccitt4",
  396. "Lzw": "Lzw"
  397. }
  398. }
  399. }
  400. },
  401. "exporttxt": {
  402. "friendlyName": "Plain Text (TXT)",
  403. "settings": {
  404. "Encoding": {
  405. "label": "Encoding",
  406. "category": "Misc",
  407. "enum": {
  408. "utf-8": "Unicode (UTF-8)",
  409. "us-ascii": "US-ASCII",
  410. "utf-16": "Unicode"
  411. }
  412. },
  413. "PageDelimiter": {
  414. "label": "PageDelimiter",
  415. "category": "Misc"
  416. },
  417. "QuotationSymbol": {
  418. "label": "QuotationSymbol",
  419. "category": "Misc"
  420. },
  421. "TextDelimiter": {
  422. "label": "TextDelimiter",
  423. "category": "Misc"
  424. },
  425. "SuppressEmptyLines": {
  426. "label": "SuppressEmptyLines",
  427. "category": "Misc"
  428. }
  429. }
  430. },
  431. "exportxls": {
  432. "friendlyName": "Excel 2003 (*.xls)",
  433. "settings": {
  434. "EnableToggles": {
  435. "label": "EnableToggles",
  436. "category": "Misc"
  437. },
  438. "MultiSheet": {
  439. "label": "MultiSheet",
  440. "category": "Misc"
  441. },
  442. "LayoutMode": {
  443. "label": "LayoutMode",
  444. "category": "Misc",
  445. "enum": {
  446. "Galley": "Galley",
  447. "Paginated": "Paginated"
  448. }
  449. },
  450. "RightToLeft": {
  451. "label": "RightToLeft",
  452. "category": "Misc"
  453. },
  454. "SheetName": {
  455. "label": "SheetName",
  456. "category": "Misc"
  457. },
  458. "UseDefaultPalette": {
  459. "label": "UseDefaultPalette",
  460. "category": "Misc"
  461. },
  462. "Orientation": {
  463. "label": "PageOrientation",
  464. "category": "PageSettings",
  465. "enum": {
  466. "Default": "Default",
  467. "Portrait": "Portrait",
  468. "Landscape": "Landscape"
  469. }
  470. },
  471. "PaperSize": {
  472. "label": "PaperSize",
  473. "category": "PageSettings",
  474. "enum": {
  475. "Default": "Default",
  476. "Letter": "Letter",
  477. "LetterSmall": "LetterSmall",
  478. "Tabloid": "Tabloid",
  479. "Ledger": "Ledger",
  480. "Legal": "Legal",
  481. "Statement": "Statement",
  482. "Executive": "Executive",
  483. "A3": "A3",
  484. "A4": "A4",
  485. "A4Small": "A4Small",
  486. "A5": "A5",
  487. "B4": "B4",
  488. "B5": "B5"
  489. }
  490. },
  491. "Password": {
  492. "label": "Password",
  493. "category": "Security"
  494. },
  495. "ProtectedBy": {
  496. "label": "ProtectedBy",
  497. "category": "Security"
  498. },
  499. "ReadOnlyRecommended": {
  500. "label": "ReadOnlyRecommended",
  501. "category": "Security"
  502. },
  503. "WritePassword": {
  504. "label": "WritePassword",
  505. "category": "Security"
  506. },
  507. "AutoRowHeight": {
  508. "label": "AutoRowHeight",
  509. "category": "Misc"
  510. },
  511. "DisplayGridLines": {
  512. "label": "DisplayGridLines",
  513. "category": "Misc"
  514. },
  515. "Pagination": {
  516. "label": "Pagination",
  517. "category": "Misc"
  518. },
  519. "FileFormat": {
  520. "label": "FileFormat",
  521. "category": "Misc",
  522. "enum": {
  523. "Xls97Plus": "Xls97Plus",
  524. "Xls95": "Xls95"
  525. }
  526. }
  527. }
  528. },
  529. "exportxlsx": {
  530. "friendlyName": "Excel (*.xlsx)",
  531. "settings": {
  532. "EnableToggles": {
  533. "label": "EnableToggles",
  534. "category": "Misc"
  535. },
  536. "MultiSheet": {
  537. "label": "MultiSheet",
  538. "category": "Misc"
  539. },
  540. "OutputFormat": {
  541. "label": "OpenXmlStandard",
  542. "category": "Misc",
  543. "enum": {
  544. "OpenXmlTransitional": "Transitional",
  545. "OpenXmlStrict": "Strict"
  546. }
  547. },
  548. "LayoutMode": {
  549. "label": "LayoutMode",
  550. "category": "Misc",
  551. "enum": {
  552. "Galley": "Galley",
  553. "Paginated": "Paginated"
  554. }
  555. },
  556. "RightToLeft": {
  557. "label": "RightToLeft",
  558. "category": "Misc"
  559. },
  560. "SheetName": {
  561. "label": "SheetName",
  562. "category": "Misc"
  563. },
  564. "UseCompression": {
  565. "label": "UseCompression",
  566. "category": "Misc"
  567. },
  568. "UseDefaultPalette": {
  569. "label": "UseDefaultPalette",
  570. "category": "Misc"
  571. },
  572. "Orientation": {
  573. "label": "PageOrientation",
  574. "category": "PageSettings",
  575. "enum": {
  576. "Default": "Default",
  577. "Portrait": "Portrait",
  578. "Landscape": "Landscape"
  579. }
  580. },
  581. "PaperSize": {
  582. "label": "PaperSize",
  583. "category": "PageSettings",
  584. "enum": {
  585. "Default": "Default",
  586. "Letter": "Letter",
  587. "LetterSmall": "LetterSmall",
  588. "Tabloid": "Tabloid",
  589. "Ledger": "Ledger",
  590. "Legal": "Legal",
  591. "Statement": "Statement",
  592. "Executive": "Executive",
  593. "A3": "A3",
  594. "A4": "A4",
  595. "A4Small": "A4Small",
  596. "A5": "A5",
  597. "B4": "B4",
  598. "B5": "B5"
  599. }
  600. },
  601. "Password": {
  602. "label": "Password",
  603. "category": "Security"
  604. },
  605. "ProtectedBy": {
  606. "label": "ProtectedBy",
  607. "category": "Security"
  608. },
  609. "ReadOnlyRecommended": {
  610. "label": "ReadOnlyRecommended",
  611. "category": "Security"
  612. },
  613. "WritePassword": {
  614. "label": "WritePassword",
  615. "category": "Security"
  616. },
  617. "AutoRowHeight": {
  618. "label": "AutoRowHeight",
  619. "category": "Misc"
  620. },
  621. "DisplayGridLines": {
  622. "label": "DisplayGridLines",
  623. "category": "Misc"
  624. },
  625. "OpenXmlStandard": {
  626. "label": "OpenXmlStandard",
  627. "category": "Misc",
  628. "enum": {
  629. "Transitional": "Transitional",
  630. "Strict": "Strict"
  631. }
  632. },
  633. "Pagination": {
  634. "label": "Pagination",
  635. "category": "Misc"
  636. }
  637. }
  638. },
  639. "exportxml": {
  640. "friendlyName": "XML (*.xml)",
  641. "settings": {
  642. "Encoding": {
  643. "label": "Encoding",
  644. "category": "Misc",
  645. "enum": {
  646. "UTF-8": "UTF-8",
  647. "ASCII": "ASCII",
  648. "Unicode": "Unicode"
  649. }
  650. }
  651. }
  652. },
  653. "jsviewer": {
  654. "errors": {
  655. "bad-response-delayed": "Bad response delayed content",
  656. "bad-response-doc": "Bad response export content",
  657. "bad-response-report": "Bad response export content",
  658. "bad-response-toc": "Failed getting table of contents",
  659. "commandTextIsEmpty": "Command text is empty.",
  660. "dataSetNotFound": "A DataSet {{dataSetName}} referenced in the report could not be found.",
  661. "dataSetNotSpecified": "DataSet name needs to be specified in the Fixed Page Layout settings.",
  662. "datasourceMissingElement": "Missing a required element in {{datasourceName}} shared data source XML document.",
  663. "export-report": "Export report error.",
  664. "ie-no-pdf-addon": "To enable printing for IE, please install and enable a PDF reader add-on.",
  665. "ignore-disposition": "It is expected that the content will be displayed as embedded in the browser, but this will be ignored.",
  666. "infinitePages": "Endless loop detected.",
  667. "invalidColumnSpacing": "When Page (width is set in report PageSize) is divided into columns, the width of the column must be greater than zero and the column spacing.",
  668. "invalidKeyInConnectionString": "Invalid key in connection string:{{invalidKey}}",
  669. "InvalidReportFormat": "Report format is Invalid",
  670. "invalidSharedDataSource": "The shared data source no longer exists or its content is invalid.",
  671. "jsonDataSourceNotFound": "The json data source has not been found.",
  672. "no-doc": "No document loaded.",
  673. "no-doc-cur": "No current document!",
  674. "no-fmt": "Invalid format key or module for {{format}} is not loaded.",
  675. "no-params-refresh": "Refresh failed (not all parameters specified)",
  676. "no-params-render": "Cannot render (not all parameters specified)",
  677. "no-report": "Report not found: {{reportId}}",
  678. "no-toc": "No TOC content.",
  679. "noDataSets": "No data sets",
  680. "noLicense": "No license",
  681. "params-hidden": "Some hidden parameters are invalid.",
  682. "print-report": "Print report error.",
  683. "professionalRequired": "Professional license required.",
  684. "render-doc": "Failed rendering document",
  685. "report-open-details": "Cannot obtain report info",
  686. "report-open-lbl": "Failed to open report",
  687. "resourceNotFound": "Unable to load resource from:{{uri}}",
  688. "scriptCompilationFailed": "Script compilation failed.",
  689. "subreportNotFoundError": "Unable to locate subreport: {{subName}}",
  690. "subreportNotSpecified": "Subreport name is not specified for a subreport report item {{itemName}}",
  691. "trialExpired": "Trial period has been expired.",
  692. "unknown-display": "Unknown display type {{displayType}}",
  693. "unknown-event": "Unknown event was not processed",
  694. "unknown-format": "Unsupported export type: '{{exportType}}'",
  695. "unknown-response": "Unknown server response.",
  696. "UnsupportedReportType": "Requested report type is unsupported"
  697. },
  698. "panels": {
  699. "export": "Export",
  700. "parameters": "Parameters",
  701. "reports": "Report list",
  702. "toc": "Table of Contents"
  703. },
  704. "toolbar": {
  705. "galley-mode": "Galley Mode",
  706. "item-exist": "The item with the same key (\"{{itemKey}}\") already exists.",
  707. "mode-continious": "Continuous View",
  708. "mode-single": "Single Page View",
  709. "print-btn": "Print",
  710. "print-preparing": "Preparing print..."
  711. }
  712. },
  713. "params": {
  714. "bool-true-label": "True",
  715. "bool-false-label": "False",
  716. "paramsTextInvalidValue": "Invalid Value",
  717. "datePlaceholder": "Select Date..",
  718. "daysViewHeaderFormat": "MMMM YYYY",
  719. "date-clear": "Clear",
  720. "date-today": "Today",
  721. "ddpTextNull": "(null)",
  722. "ddpTextSelectValue": "(select value)",
  723. "ddpTextSelectAllValues": "(select all)",
  724. "null": "Null",
  725. "preview-btn-title": "Preview"
  726. },
  727. "rdlxparams": {
  728. "TextHasOutstandingDependencies": "* Parameter has outstanding dependencies",
  729. "TextNeedBoolean": "* Wrong value. Make sure that you enter a valid boolean",
  730. "TextNoEmptyStrings": "* Wrong value. Empty strings are not allowed",
  731. "TextMaxInteger": "* Value cannot exceed 32-bit integer",
  732. "TextNeedInteger": "* Wrong value. Make sure that you enter a valid integer",
  733. "TextNeedFloat": "* Wrong value. Make sure that you enter a valid float",
  734. "TextNeedDateTime": "* Wrong value. Make sure that you enter a valid date",
  735. "TextUnknownError": "! Unknown validation error",
  736. "TextValueExpected": "* Value Expected",
  737. "TextPickFromList": "* Wrong value. Pick the right one from the list",
  738. "TextSingleValueExpected": "* Single value expected",
  739. "TextNoNull": "* Value cannot be null"
  740. },
  741. "viewer": {
  742. "error": {
  743. "details": "Details",
  744. "dismiss": "Dismiss",
  745. "dismiss-all": "Dismiss All"
  746. },
  747. "cancel-btn": "Cancel",
  748. "toolbar": {
  749. "zoom-fitwidth": "Fit to Width",
  750. "zoom-fitpage": "Fit Page",
  751. "zoom-zoomout": "Zoom Out",
  752. "zoom-zoomin": "Zoom In",
  753. "zoom-menu-header": "Zoom Mode",
  754. "gotofirst": "Go To First",
  755. "gotoprevious": "Go To Previous",
  756. "gotonext": "Go To Next",
  757. "gotolast": "Go To Last",
  758. "hist-parent": "History: Back To Parent",
  759. "hist-back": "History: Go Back",
  760. "hist-fwd": "History: Go Forward",
  761. "movetool": "Move Tool",
  762. "fullscreen": "Toggle Fullscreen",
  763. "refresh": "Refresh",
  764. "cancel": "Cancel"
  765. },
  766. "errors": {
  767. "noHostElement": "Cannot find the host element."
  768. },
  769. "progress": {
  770. "page": "Page"
  771. },
  772. "search": {
  773. "match-case": "Match Case",
  774. "whole-word": "Whole word",
  775. "cancel-btn": "Cancel",
  776. "start-search-btn": "Search",
  777. "clear-btn": "Clear",
  778. "more-results-btn": "More Results",
  779. "search-results": "Search Results",
  780. "search-cancelled-msg": "Search cancelled on page {{page}}",
  781. "didn-find-msg": "Didn't find anything.",
  782. "paneltitle": "Search"
  783. }
  784. }
  785. }