editor.html 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>护理记录看板编辑</title>
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. box-sizing: border-box;
  11. }
  12. html,
  13. body {
  14. height: 100%;
  15. width: 100%;
  16. }
  17. .cy-main {
  18. display: flex;
  19. flex-direction: column;
  20. height: 100%;
  21. width: 100%;
  22. }
  23. #toolbar-container {
  24. height: max-content;
  25. }
  26. #editor {
  27. flex: 1;
  28. }
  29. </style>
  30. <script src="http://130.150.161.72/thyy/cdn/tinymce.min.js"></script>
  31. </head>
  32. <body>
  33. <div id="editor">
  34. </div>
  35. <script>
  36. let handleSaveFunc = () => {};
  37. function handleEnter(e) {
  38. if (e.keyCode === 13) {
  39. e.preventDefault();
  40. tinymce.activeEditor.execCommand("mceInsertContent", false, "<div class=\"edl-paragraph\"><span class=\"edl-node edl-text\"></span></div>"); // 插入自定义标签
  41. }
  42. }
  43. let copy = false;
  44. function handleSave(cb) {
  45. handleSaveFunc = cb;
  46. }
  47. tinymce.init({
  48. selector: "#editor",
  49. language: "zh_CN",
  50. menubar: false, // 隐藏顶部菜单栏
  51. statusbar: false, // 隐藏底部状态栏
  52. content_style: `
  53. .unbreakable-span {
  54. -webkit-user-modify: read-only;
  55. user-modify: read-only;
  56. -moz-user-modify: read-only;
  57. cursor: default;
  58. background-color: #409EFF;
  59. border: 1px dashed #ccc;
  60. }
  61. p {
  62. margin: 0
  63. }
  64. `,
  65. forced_root_block: "div",
  66. plugins: "table autoresize save",
  67. toolbar: "save | undo redo | table | tablemergecells tablesplitcells | tableprops tablerowprops tablecellprops",
  68. setup: function(editor) {
  69. editor.on("keydown", function(e, ...tmp) {
  70. console.log(e, tmp);
  71. // handleEnter(e);
  72. });
  73. },
  74. save_onsavecallback: function() {
  75. const editor = tinymce.activeEditor;
  76. const table = editor.dom.select("table")[0];
  77. handleSaveFunc(table.outerHTML);
  78. },
  79. paste_preprocess: (plugin, args) => {
  80. args.content = "";
  81. },
  82. });
  83. function addTable({
  84. rows,
  85. cols
  86. }) {
  87. tinymce.activeEditor.execCommand("mceInsertTable", false, {
  88. rows: rows,
  89. columns: cols
  90. });
  91. tinymce.activeEditor.undoManager.clear();
  92. }
  93. function insert({
  94. code,
  95. name
  96. }) {
  97. tinymce.activeEditor.insertContent(`<a class="unbreakable-span" ${name} data-element-code="${code}" data-element-box>
  98. ${name}
  99. </a>`);
  100. }
  101. function setHtml(html) {
  102. tinymce.activeEditor.setContent(html);
  103. tinymce.activeEditor.undoManager.clear();
  104. }
  105. tinymce.addI18n("zh_CN", {
  106. "Redo": "\u91cd\u505a",
  107. "Undo": "\u64a4\u9500",
  108. "Cut": "\u526a\u5207",
  109. "Copy": "\u590d\u5236",
  110. "Paste": "\u7c98\u8d34",
  111. "Select all": "\u5168\u9009",
  112. "New document": "\u65b0\u6587\u4ef6",
  113. "Ok": "\u786e\u5b9a",
  114. "Cancel": "\u53d6\u6d88",
  115. "Visual aids": "\u7f51\u683c\u7ebf",
  116. "Bold": "\u7c97\u4f53",
  117. "Italic": "\u659c\u4f53",
  118. "Underline": "\u4e0b\u5212\u7ebf",
  119. "Strikethrough": "\u5220\u9664\u7ebf",
  120. "Superscript": "\u4e0a\u6807",
  121. "Subscript": "\u4e0b\u6807",
  122. "Clear formatting": "\u6e05\u9664\u683c\u5f0f",
  123. "Align left": "\u5de6\u8fb9\u5bf9\u9f50",
  124. "Align center": "\u4e2d\u95f4\u5bf9\u9f50",
  125. "Align right": "\u53f3\u8fb9\u5bf9\u9f50",
  126. "Justify": "\u4e24\u7aef\u5bf9\u9f50",
  127. "Bullet list": "\u9879\u76ee\u7b26\u53f7",
  128. "Numbered list": "\u7f16\u53f7\u5217\u8868",
  129. "Decrease indent": "\u51cf\u5c11\u7f29\u8fdb",
  130. "Increase indent": "\u589e\u52a0\u7f29\u8fdb",
  131. "Close": "\u5173\u95ed",
  132. "Formats": "\u683c\u5f0f",
  133. "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u6253\u5f00\u526a\u8d34\u677f\uff0c\u8bf7\u4f7f\u7528Ctrl+X\/C\/V\u7b49\u5feb\u6377\u952e\u3002",
  134. "Headers": "\u6807\u9898",
  135. "Header 1": "\u6807\u98981",
  136. "Header 2": "\u6807\u98982",
  137. "Header 3": "\u6807\u98983",
  138. "Header 4": "\u6807\u98984",
  139. "Header 5": "\u6807\u98985",
  140. "Header 6": "\u6807\u98986",
  141. "Headings": "\u6807\u9898",
  142. "Heading 1": "\u6807\u98981",
  143. "Heading 2": "\u6807\u98982",
  144. "Heading 3": "\u6807\u98983",
  145. "Heading 4": "\u6807\u98984",
  146. "Heading 5": "\u6807\u98985",
  147. "Heading 6": "\u6807\u98986",
  148. "Preformatted": "\u9884\u5148\u683c\u5f0f\u5316\u7684",
  149. "Div": "Div",
  150. "Pre": "Pre",
  151. "Code": "\u4ee3\u7801",
  152. "Paragraph": "\u6bb5\u843d",
  153. "Blockquote": "\u5f15\u6587\u533a\u5757",
  154. "Inline": "\u6587\u672c",
  155. "Blocks": "\u57fa\u5757",
  156. "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002",
  157. "Fonts": "\u5b57\u4f53",
  158. "Font Sizes": "\u5b57\u53f7",
  159. "Class": "\u7c7b\u578b",
  160. "Browse for an image": "\u6d4f\u89c8\u56fe\u50cf",
  161. "OR": "\u6216",
  162. "Drop an image here": "\u62d6\u653e\u4e00\u5f20\u56fe\u50cf\u81f3\u6b64",
  163. "Upload": "\u4e0a\u4f20",
  164. "Block": "\u5757",
  165. "Align": "\u5bf9\u9f50",
  166. "Default": "\u9ed8\u8ba4",
  167. "Circle": "\u7a7a\u5fc3\u5706",
  168. "Disc": "\u5b9e\u5fc3\u5706",
  169. "Square": "\u65b9\u5757",
  170. "Lower Alpha": "\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd",
  171. "Lower Greek": "\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd",
  172. "Lower Roman": "\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd",
  173. "Upper Alpha": "\u5927\u5199\u82f1\u6587\u5b57\u6bcd",
  174. "Upper Roman": "\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd",
  175. "Anchor...": "\u951a\u70b9...",
  176. "Name": "\u540d\u79f0",
  177. "Id": "\u6807\u8bc6\u7b26",
  178. "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002",
  179. "You have unsaved changes are you sure you want to navigate away?": "\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f",
  180. "Restore last draft": "\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f",
  181. "Special character...": "\u7279\u6b8a\u5b57\u7b26...",
  182. "Source code": "\u6e90\u4ee3\u7801",
  183. "Insert\/Edit code sample": "\u63d2\u5165\/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b",
  184. "Language": "\u8bed\u8a00",
  185. "Code sample...": "\u793a\u4f8b\u4ee3\u7801...",
  186. "Color Picker": "\u9009\u8272\u5668",
  187. "R": "R",
  188. "G": "G",
  189. "B": "B",
  190. "Left to right": "\u4ece\u5de6\u5230\u53f3",
  191. "Right to left": "\u4ece\u53f3\u5230\u5de6",
  192. "Emoticons...": "\u8868\u60c5\u7b26\u53f7...",
  193. "Metadata and Document Properties": "\u5143\u6570\u636e\u548c\u6587\u6863\u5c5e\u6027",
  194. "Title": "\u6807\u9898",
  195. "Keywords": "\u5173\u952e\u8bcd",
  196. "Description": "\u63cf\u8ff0",
  197. "Robots": "\u673a\u5668\u4eba",
  198. "Author": "\u4f5c\u8005",
  199. "Encoding": "\u7f16\u7801",
  200. "Fullscreen": "\u5168\u5c4f",
  201. "Action": "\u64cd\u4f5c",
  202. "Shortcut": "\u5feb\u6377\u952e",
  203. "Help": "\u5e2e\u52a9",
  204. "Address": "\u5730\u5740",
  205. "Focus to menubar": "\u79fb\u52a8\u7126\u70b9\u5230\u83dc\u5355\u680f",
  206. "Focus to toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u5de5\u5177\u680f",
  207. "Focus to element path": "\u79fb\u52a8\u7126\u70b9\u5230\u5143\u7d20\u8def\u5f84",
  208. "Focus to contextual toolbar": "\u79fb\u52a8\u7126\u70b9\u5230\u4e0a\u4e0b\u6587\u83dc\u5355",
  209. "Insert link (if link plugin activated)": "\u63d2\u5165\u94fe\u63a5 (\u5982\u679c\u94fe\u63a5\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
  210. "Save (if save plugin activated)": "\u4fdd\u5b58(\u5982\u679c\u4fdd\u5b58\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
  211. "Find (if searchreplace plugin activated)": "\u67e5\u627e(\u5982\u679c\u67e5\u627e\u66ff\u6362\u63d2\u4ef6\u5df2\u6fc0\u6d3b)",
  212. "Plugins installed ({0}):": "\u5df2\u5b89\u88c5\u63d2\u4ef6 ({0}):",
  213. "Premium plugins:": "\u4f18\u79c0\u63d2\u4ef6\uff1a",
  214. "Learn more...": "\u4e86\u89e3\u66f4\u591a...",
  215. "You are using {0}": "\u4f60\u6b63\u5728\u4f7f\u7528 {0}",
  216. "Plugins": "\u63d2\u4ef6",
  217. "Handy Shortcuts": "\u5feb\u6377\u952e",
  218. "Horizontal line": "\u6c34\u5e73\u5206\u5272\u7ebf",
  219. "Insert\/edit image": "\u63d2\u5165\/\u7f16\u8f91\u56fe\u7247",
  220. "Image description": "\u56fe\u7247\u63cf\u8ff0",
  221. "Source": "\u5730\u5740",
  222. "Dimensions": "\u5927\u5c0f",
  223. "Constrain proportions": "\u4fdd\u6301\u7eb5\u6a2a\u6bd4",
  224. "General": "\u666e\u901a",
  225. "Advanced": "\u9ad8\u7ea7",
  226. "Style": "\u6837\u5f0f",
  227. "Vertical space": "\u5782\u76f4\u8fb9\u8ddd",
  228. "Horizontal space": "\u6c34\u5e73\u8fb9\u8ddd",
  229. "Border": "\u8fb9\u6846",
  230. "Insert image": "\u63d2\u5165\u56fe\u7247",
  231. "Image...": "\u56fe\u7247...",
  232. "Image list": "\u56fe\u7247\u5217\u8868",
  233. "Rotate counterclockwise": "\u9006\u65f6\u9488\u65cb\u8f6c",
  234. "Rotate clockwise": "\u987a\u65f6\u9488\u65cb\u8f6c",
  235. "Flip vertically": "\u5782\u76f4\u7ffb\u8f6c",
  236. "Flip horizontally": "\u6c34\u5e73\u7ffb\u8f6c",
  237. "Edit image": "\u7f16\u8f91\u56fe\u7247",
  238. "Image options": "\u56fe\u7247\u9009\u9879",
  239. "Zoom in": "\u653e\u5927",
  240. "Zoom out": "\u7f29\u5c0f",
  241. "Crop": "\u88c1\u526a",
  242. "Resize": "\u8c03\u6574\u5927\u5c0f",
  243. "Orientation": "\u65b9\u5411",
  244. "Brightness": "\u4eae\u5ea6",
  245. "Sharpen": "\u9510\u5316",
  246. "Contrast": "\u5bf9\u6bd4\u5ea6",
  247. "Color levels": "\u989c\u8272\u5c42\u6b21",
  248. "Gamma": "\u4f3d\u9a6c\u503c",
  249. "Invert": "\u53cd\u8f6c",
  250. "Apply": "\u5e94\u7528",
  251. "Back": "\u540e\u9000",
  252. "Insert date\/time": "\u63d2\u5165\u65e5\u671f\/\u65f6\u95f4",
  253. "Date\/time": "\u65e5\u671f\/\u65f6\u95f4",
  254. "Insert\/Edit Link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
  255. "Insert\/edit link": "\u63d2\u5165\/\u7f16\u8f91\u94fe\u63a5",
  256. "Text to display": "\u663e\u793a\u6587\u5b57",
  257. "Url": "\u5730\u5740",
  258. "Open link in...": "\u94fe\u63a5\u6253\u5f00\u4f4d\u7f6e...",
  259. "Current window": "\u5f53\u524d\u7a97\u53e3",
  260. "None": "\u65e0",
  261. "New window": "\u5728\u65b0\u7a97\u53e3\u6253\u5f00",
  262. "Remove link": "\u5220\u9664\u94fe\u63a5",
  263. "Anchors": "\u951a\u70b9",
  264. "Link...": "\u94fe\u63a5...",
  265. "Paste or type a link": "\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5",
  266. "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f",
  267. "The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7f00\u5417\uff1f",
  268. "Link list": "\u94fe\u63a5\u5217\u8868",
  269. "Insert video": "\u63d2\u5165\u89c6\u9891",
  270. "Insert\/edit video": "\u63d2\u5165\/\u7f16\u8f91\u89c6\u9891",
  271. "Insert\/edit media": "\u63d2\u5165\/\u7f16\u8f91\u5a92\u4f53",
  272. "Alternative source": "\u955c\u50cf",
  273. "Alternative source URL": "\u66ff\u4ee3\u6765\u6e90\u7f51\u5740",
  274. "Media poster (Image URL)": "\u5c01\u9762(\u56fe\u7247\u5730\u5740)",
  275. "Paste your embed code below:": "\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:",
  276. "Embed": "\u5185\u5d4c",
  277. "Media...": "\u591a\u5a92\u4f53...",
  278. "Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
  279. "Page break": "\u5206\u9875\u7b26",
  280. "Paste as text": "\u7c98\u8d34\u4e3a\u6587\u672c",
  281. "Preview": "\u9884\u89c8",
  282. "Print...": "\u6253\u5370...",
  283. "Save": "\u4fdd\u5b58",
  284. "Find": "\u67e5\u627e",
  285. "Replace with": "\u66ff\u6362\u4e3a",
  286. "Replace": "\u66ff\u6362",
  287. "Replace all": "\u5168\u90e8\u66ff\u6362",
  288. "Previous": "\u4e0a\u4e00\u4e2a",
  289. "Next": "\u4e0b\u4e00\u4e2a",
  290. "Find and replace...": "\u67e5\u627e\u5e76\u66ff\u6362...",
  291. "Could not find the specified string.": "\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.",
  292. "Match case": "\u533a\u5206\u5927\u5c0f\u5199",
  293. "Find whole words only": "\u5168\u5b57\u5339\u914d",
  294. "Spell check": "\u62fc\u5199\u68c0\u67e5",
  295. "Ignore": "\u5ffd\u7565",
  296. "Ignore all": "\u5168\u90e8\u5ffd\u7565",
  297. "Finish": "\u5b8c\u6210",
  298. "Add to Dictionary": "\u6dfb\u52a0\u5230\u5b57\u5178",
  299. "Insert table": "\u63d2\u5165\u8868\u683c",
  300. "Table properties": "\u8868\u683c\u5c5e\u6027",
  301. "Delete table": "\u5220\u9664\u8868\u683c",
  302. "Cell": "\u5355\u5143\u683c",
  303. "Row": "\u884c",
  304. "Column": "\u5217",
  305. "Cell properties": "\u5355\u5143\u683c\u5c5e\u6027",
  306. "Merge cells": "\u5408\u5e76\u5355\u5143\u683c",
  307. "Split cell": "\u62c6\u5206\u5355\u5143\u683c",
  308. "Insert row before": "\u5728\u4e0a\u65b9\u63d2\u5165",
  309. "Insert row after": "\u5728\u4e0b\u65b9\u63d2\u5165",
  310. "Delete row": "\u5220\u9664\u884c",
  311. "Row properties": "\u884c\u5c5e\u6027",
  312. "Cut row": "\u526a\u5207\u884c",
  313. "Copy row": "\u590d\u5236\u884c",
  314. "Paste row before": "\u7c98\u8d34\u5230\u4e0a\u65b9",
  315. "Paste row after": "\u7c98\u8d34\u5230\u4e0b\u65b9",
  316. "Insert column before": "\u5728\u5de6\u4fa7\u63d2\u5165",
  317. "Insert column after": "\u5728\u53f3\u4fa7\u63d2\u5165",
  318. "Delete column": "\u5220\u9664\u5217",
  319. "Cols": "\u5217",
  320. "Rows": "\u884c",
  321. "Width": "\u5bbd",
  322. "Height": "\u9ad8",
  323. "Cell spacing": "\u5355\u5143\u683c\u5916\u95f4\u8ddd",
  324. "Cell padding": "\u5355\u5143\u683c\u5185\u8fb9\u8ddd",
  325. "Show caption": "\u663e\u793a\u6807\u9898",
  326. "Left": "\u5de6\u5bf9\u9f50",
  327. "Center": "\u5c45\u4e2d",
  328. "Right": "\u53f3\u5bf9\u9f50",
  329. "Cell type": "\u5355\u5143\u683c\u7c7b\u578b",
  330. "Scope": "\u8303\u56f4",
  331. "Alignment": "\u5bf9\u9f50\u65b9\u5f0f",
  332. "H Align": "\u6c34\u5e73\u5bf9\u9f50",
  333. "V Align": "\u5782\u76f4\u5bf9\u9f50",
  334. "Top": "\u9876\u90e8\u5bf9\u9f50",
  335. "Middle": "\u5782\u76f4\u5c45\u4e2d",
  336. "Bottom": "\u5e95\u90e8\u5bf9\u9f50",
  337. "Header cell": "\u8868\u5934\u5355\u5143\u683c",
  338. "Row group": "\u884c\u7ec4",
  339. "Column group": "\u5217\u7ec4",
  340. "Row type": "\u884c\u7c7b\u578b",
  341. "Header": "\u8868\u5934",
  342. "Body": "\u8868\u4f53",
  343. "Footer": "\u8868\u5c3e",
  344. "Border color": "\u8fb9\u6846\u989c\u8272",
  345. "Insert template...": "\u63d2\u5165\u6a21\u677f...",
  346. "Templates": "\u6a21\u677f",
  347. "Template": "\u6a21\u677f",
  348. "Text color": "\u6587\u5b57\u989c\u8272",
  349. "Background color": "\u80cc\u666f\u8272",
  350. "Custom...": "\u81ea\u5b9a\u4e49...",
  351. "Custom color": "\u81ea\u5b9a\u4e49\u989c\u8272",
  352. "No color": "\u65e0",
  353. "Remove color": "\u79fb\u9664\u989c\u8272",
  354. "Table of Contents": "\u5185\u5bb9\u5217\u8868",
  355. "Show blocks": "\u663e\u793a\u533a\u5757\u8fb9\u6846",
  356. "Show invisible characters": "\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26",
  357. "Word count": "\u5b57\u6570",
  358. "Count": "\u8ba1\u6570",
  359. "Document": "\u6587\u6863",
  360. "Selection": "\u9009\u62e9",
  361. "Words": "\u5355\u8bcd",
  362. "Words: {0}": "\u5b57\u6570\uff1a{0}",
  363. "{0} words": "{0} \u5b57",
  364. "File": "\u6587\u4ef6",
  365. "Edit": "\u7f16\u8f91",
  366. "Insert": "\u63d2\u5165",
  367. "View": "\u89c6\u56fe",
  368. "Format": "\u683c\u5f0f",
  369. "Table": "\u8868\u683c",
  370. "Tools": "\u5de5\u5177",
  371. "Powered by {0}": "\u7531{0}\u9a71\u52a8",
  372. "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9",
  373. "Image title": "\u56fe\u7247\u6807\u9898",
  374. "Border width": "\u8fb9\u6846\u5bbd\u5ea6",
  375. "Border style": "\u8fb9\u6846\u6837\u5f0f",
  376. "Error": "\u9519\u8bef",
  377. "Warn": "\u8b66\u544a",
  378. "Valid": "\u6709\u6548",
  379. "To open the popup, press Shift+Enter": "\u6309Shitf+Enter\u952e\u6253\u5f00\u5bf9\u8bdd\u6846",
  380. "Rich Text Area. Press ALT-0 for help.": "\u7f16\u8f91\u533a\u3002\u6309Alt+0\u952e\u6253\u5f00\u5e2e\u52a9\u3002",
  381. "System Font": "\u7cfb\u7edf\u5b57\u4f53",
  382. "Failed to upload image: {0}": "\u56fe\u7247\u4e0a\u4f20\u5931\u8d25: {0}",
  383. "Failed to load plugin: {0} from url {1}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25: {0} \u6765\u81ea\u94fe\u63a5 {1}",
  384. "Failed to load plugin url: {0}": "\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25 \u94fe\u63a5: {0}",
  385. "Failed to initialize plugin: {0}": "\u63d2\u4ef6\u521d\u59cb\u5316\u5931\u8d25: {0}",
  386. "example": "\u793a\u4f8b",
  387. "Search": "\u641c\u7d22",
  388. "All": "\u5168\u90e8",
  389. "Currency": "\u8d27\u5e01",
  390. "Text": "\u6587\u5b57",
  391. "Quotations": "\u5f15\u7528",
  392. "Mathematical": "\u6570\u5b66",
  393. "Extended Latin": "\u62c9\u4e01\u8bed\u6269\u5145",
  394. "Symbols": "\u7b26\u53f7",
  395. "Arrows": "\u7bad\u5934",
  396. "User Defined": "\u81ea\u5b9a\u4e49",
  397. "dollar sign": "\u7f8e\u5143\u7b26\u53f7",
  398. "currency sign": "\u8d27\u5e01\u7b26\u53f7",
  399. "euro-currency sign": "\u6b27\u5143\u7b26\u53f7",
  400. "colon sign": "\u5192\u53f7",
  401. "cruzeiro sign": "\u514b\u9c81\u8d5b\u7f57\u5e01\u7b26\u53f7",
  402. "french franc sign": "\u6cd5\u90ce\u7b26\u53f7",
  403. "lira sign": "\u91cc\u62c9\u7b26\u53f7",
  404. "mill sign": "\u5bc6\u5c14\u7b26\u53f7",
  405. "naira sign": "\u5948\u62c9\u7b26\u53f7",
  406. "peseta sign": "\u6bd4\u585e\u5854\u7b26\u53f7",
  407. "rupee sign": "\u5362\u6bd4\u7b26\u53f7",
  408. "won sign": "\u97e9\u5143\u7b26\u53f7",
  409. "new sheqel sign": "\u65b0\u8c22\u514b\u5c14\u7b26\u53f7",
  410. "dong sign": "\u8d8a\u5357\u76fe\u7b26\u53f7",
  411. "kip sign": "\u8001\u631d\u57fa\u666e\u7b26\u53f7",
  412. "tugrik sign": "\u56fe\u683c\u91cc\u514b\u7b26\u53f7",
  413. "drachma sign": "\u5fb7\u62c9\u514b\u9a6c\u7b26\u53f7",
  414. "german penny symbol": "\u5fb7\u56fd\u4fbf\u58eb\u7b26\u53f7",
  415. "peso sign": "\u6bd4\u7d22\u7b26\u53f7",
  416. "guarani sign": "\u74dc\u62c9\u5c3c\u7b26\u53f7",
  417. "austral sign": "\u6fb3\u5143\u7b26\u53f7",
  418. "hryvnia sign": "\u683c\u91cc\u592b\u5c3c\u4e9a\u7b26\u53f7",
  419. "cedi sign": "\u585e\u5730\u7b26\u53f7",
  420. "livre tournois sign": "\u91cc\u5f17\u5f17\u5c14\u7b26\u53f7",
  421. "spesmilo sign": "spesmilo\u7b26\u53f7",
  422. "tenge sign": "\u575a\u6208\u7b26\u53f7",
  423. "indian rupee sign": "\u5370\u5ea6\u5362\u6bd4",
  424. "turkish lira sign": "\u571f\u8033\u5176\u91cc\u62c9",
  425. "nordic mark sign": "\u5317\u6b27\u9a6c\u514b",
  426. "manat sign": "\u9a6c\u7eb3\u7279\u7b26\u53f7",
  427. "ruble sign": "\u5362\u5e03\u7b26\u53f7",
  428. "yen character": "\u65e5\u5143\u5b57\u6837",
  429. "yuan character": "\u4eba\u6c11\u5e01\u5143\u5b57\u6837",
  430. "yuan character, in hong kong and taiwan": "\u5143\u5b57\u6837\uff08\u6e2f\u53f0\u5730\u533a\uff09",
  431. "yen\/yuan character variant one": "\u5143\u5b57\u6837\uff08\u5927\u5199\uff09",
  432. "Loading emoticons...": "\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7...",
  433. "Could not load emoticons": "\u4e0d\u80fd\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7",
  434. "People": "\u4eba\u7c7b",
  435. "Animals and Nature": "\u52a8\u7269\u548c\u81ea\u7136",
  436. "Food and Drink": "\u98df\u7269\u548c\u996e\u54c1",
  437. "Activity": "\u6d3b\u52a8",
  438. "Travel and Places": "\u65c5\u6e38\u548c\u5730\u70b9",
  439. "Objects": "\u7269\u4ef6",
  440. "Flags": "\u65d7\u5e1c",
  441. "Characters": "\u5b57\u7b26",
  442. "Characters (no spaces)": "\u5b57\u7b26(\u65e0\u7a7a\u683c)",
  443. "{0} characters": "{0} \u4e2a\u5b57\u7b26",
  444. "Error: Form submit field collision.": "\u9519\u8bef: \u8868\u5355\u63d0\u4ea4\u5b57\u6bb5\u51b2\u7a81\u3002",
  445. "Error: No form element found.": "\u9519\u8bef: \u6ca1\u6709\u8868\u5355\u63a7\u4ef6\u3002",
  446. "Update": "\u66f4\u65b0",
  447. "Color swatch": "\u989c\u8272\u6837\u672c",
  448. "Turquoise": "\u9752\u7eff\u8272",
  449. "Green": "\u7eff\u8272",
  450. "Blue": "\u84dd\u8272",
  451. "Purple": "\u7d2b\u8272",
  452. "Navy Blue": "\u6d77\u519b\u84dd",
  453. "Dark Turquoise": "\u6df1\u84dd\u7eff\u8272",
  454. "Dark Green": "\u6df1\u7eff\u8272",
  455. "Medium Blue": "\u4e2d\u84dd\u8272",
  456. "Medium Purple": "\u4e2d\u7d2b\u8272",
  457. "Midnight Blue": "\u6df1\u84dd\u8272",
  458. "Yellow": "\u9ec4\u8272",
  459. "Orange": "\u6a59\u8272",
  460. "Red": "\u7ea2\u8272",
  461. "Light Gray": "\u6d45\u7070\u8272",
  462. "Gray": "\u7070\u8272",
  463. "Dark Yellow": "\u6697\u9ec4\u8272",
  464. "Dark Orange": "\u6df1\u6a59\u8272",
  465. "Dark Red": "\u6df1\u7ea2\u8272",
  466. "Medium Gray": "\u4e2d\u7070\u8272",
  467. "Dark Gray": "\u6df1\u7070\u8272",
  468. "Light Green": "\u6d45\u7eff\u8272",
  469. "Light Yellow": "\u6d45\u9ec4\u8272",
  470. "Light Red": "\u6d45\u7ea2\u8272",
  471. "Light Purple": "\u6d45\u7d2b\u8272",
  472. "Light Blue": "\u6d45\u84dd\u8272",
  473. "Dark Purple": "\u6df1\u7d2b\u8272",
  474. "Dark Blue": "\u6df1\u84dd\u8272",
  475. "Black": "\u9ed1\u8272",
  476. "White": "\u767d\u8272",
  477. "Switch to or from fullscreen mode": "\u5207\u6362\u5168\u5c4f\u6a21\u5f0f",
  478. "Open help dialog": "\u6253\u5f00\u5e2e\u52a9\u5bf9\u8bdd\u6846",
  479. "history": "\u5386\u53f2",
  480. "styles": "\u6837\u5f0f",
  481. "formatting": "\u683c\u5f0f\u5316",
  482. "alignment": "\u5bf9\u9f50",
  483. "indentation": "\u7f29\u8fdb",
  484. "permanent pen": "\u8bb0\u53f7\u7b14",
  485. "comments": "\u5907\u6ce8",
  486. "Format Painter": "\u683c\u5f0f\u5237",
  487. "Insert\/edit iframe": "\u63d2\u5165\/\u7f16\u8f91\u6846\u67b6",
  488. "Capitalization": "\u5927\u5199",
  489. "lowercase": "\u5c0f\u5199",
  490. "UPPERCASE": "\u5927\u5199",
  491. "Title Case": "\u9996\u5b57\u6bcd\u5927\u5199",
  492. "Permanent Pen Properties": "\u6c38\u4e45\u7b14\u5c5e\u6027",
  493. "Permanent pen properties...": "\u6c38\u4e45\u7b14\u5c5e\u6027...",
  494. "Font": "\u5b57\u4f53",
  495. "Size": "\u5b57\u53f7",
  496. "More...": "\u66f4\u591a...",
  497. "Spellcheck Language": "\u62fc\u5199\u68c0\u67e5\u8bed\u8a00",
  498. "Select...": "\u9009\u62e9...",
  499. "Preferences": "\u9996\u9009\u9879",
  500. "Yes": "\u662f",
  501. "No": "\u5426",
  502. "Keyboard Navigation": "\u952e\u76d8\u6307\u5f15",
  503. "Version": "\u7248\u672c",
  504. "Anchor": "\u951a\u70b9",
  505. "Special character": "\u7279\u6b8a\u7b26\u53f7",
  506. "Code sample": "\u4ee3\u7801\u793a\u4f8b",
  507. "Color": "\u989c\u8272",
  508. "Emoticons": "\u8868\u60c5",
  509. "Document properties": "\u6587\u6863\u5c5e\u6027",
  510. "Image": "\u56fe\u7247",
  511. "Insert link": "\u63d2\u5165\u94fe\u63a5",
  512. "Target": "\u6253\u5f00\u65b9\u5f0f",
  513. "Link": "\u94fe\u63a5",
  514. "Poster": "\u5c01\u9762",
  515. "Media": "\u5a92\u4f53",
  516. "Print": "\u6253\u5370",
  517. "Prev": "\u4e0a\u4e00\u4e2a",
  518. "Find and replace": "\u67e5\u627e\u548c\u66ff\u6362",
  519. "Whole words": "\u5168\u5b57\u5339\u914d",
  520. "Spellcheck": "\u62fc\u5199\u68c0\u67e5",
  521. "Caption": "\u6807\u9898",
  522. "Insert template": "\u63d2\u5165\u6a21\u677f",
  523. });
  524. </script>
  525. </body>
  526. </html>