editor_lang.js
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:4k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. /*** Translation ***/
  2. LanguageDirectory="english";
  3. function getText(s)
  4. {
  5. switch(s)
  6. {
  7. case "Save":return "Save";
  8. case "Preview":return "Preview";
  9. case "Full Screen":return "Full Screen";
  10. case "Search":return "Search";
  11. case "Check Spelling":return "Check Spelling";
  12. case "Text Formatting":return "Text Formatting";
  13. case "List Formatting":return "List Formatting";
  14. case "Paragraph Formatting":return "Paragraph Formatting";
  15. case "Styles":return "Styles";
  16. case "Custom CSS":return "Custom CSS";
  17. case "Styles & Formatting":return "Styles & Formatting";
  18. case "Paragraph":return "Paragraph";
  19. case "Font Name":return "Font Name";
  20. case "Font Size":return "Font Size";
  21. case "Cut":return "Cut";
  22. case "Copy":return "Copy";
  23. case "Paste":return "Paste";
  24. case "Undo":return "Undo";
  25. case "Redo":return "Redo";
  26. case "Bold":return "Bold";
  27. case "Italic":return "Italic";
  28. case "Underline":return "Underline";
  29. case "Strikethrough":return "Strikethrough";
  30. case "Superscript":return "Superscript";
  31. case "Subscript":return "Subscript";
  32. case "Justify Left":return "Justify Left";
  33. case "Justify Center":return "Justify Center";
  34. case "Justify Right":return "Justify Right";
  35. case "Justify Full":return "Justify Full";
  36. case "Numbering":return "Numbering";
  37. case "Bullets":return "Bullets";
  38. case "Indent":return "Indent";
  39. case "Outdent":return "Outdent";
  40. case "Left To Right":return "Left To Right";
  41. case "Right To Left":return "Right To Left";
  42. case "Foreground Color":return "Foreground Color";
  43. case "Background Color":return "Background Color";
  44. case "Hyperlink":return "Hyperlink";
  45. case "Bookmark":return "Bookmark";
  46. case "Special Characters":return "Special Characters";
  47. case "Image":return "Image";
  48. case "Flash":return "Flash";
  49. case "Media":return "Media";
  50. case "Content Block":return "Content Block";
  51. case "Internal Link":return "Internal Link";
  52. case "Object":return "Object";
  53. case "Insert Table":return "Insert Table";
  54. case "Table Size":return "Table Size";
  55. case "Edit Table":return "Edit Table";
  56. case "Edit Cell":return "Edit Cell";
  57. case "Table":return "Table";
  58. case "Border & Shading":return "Border & Shading";
  59. case "Show/Hide Guidelines":return "Show/Hide Guidelines";
  60. case "Absolute":return "Absolute";
  61. case "Paste from Word":return "Paste from Word";
  62. case "Line":return "Line";
  63. case "Form Editor":return "Form Editor";
  64. case "Form":return "Form";
  65. case "Text Field":return "Text Field";
  66. case "List":return "List";
  67. case "Checkbox":return "Checkbox";
  68. case "Radio Button":return "Radio Button";
  69. case "Hidden Field":return "Hidden Field";
  70. case "File Field":return "File Field";
  71. case "Button":return "Button";
  72. case "Clean":return "Clean";
  73. case "View/Edit Source":return "View/Edit Source";
  74. case "Tag Selector":return "Tag Selector";
  75. case "Clear All":return "Clear All";
  76. case "Tags":return "Tags";
  77. case "Heading 1":return "Heading 1";
  78. case "Heading 2":return "Heading 2";
  79. case "Heading 3":return "Heading 3";
  80. case "Heading 4":return "Heading 4";
  81. case "Heading 5":return "Heading 5";
  82. case "Heading 6":return "Heading 6";
  83. case "Preformatted":return "Preformatted";
  84. case "Normal (P)":return "Normal (P)";
  85. case "Normal (DIV)":return "Normal (DIV)";
  86. case "Size 1":return "Size 1";
  87. case "Size 2":return "Size 2";
  88. case "Size 3":return "Size 3";
  89. case "Size 4":return "Size 4";
  90. case "Size 5":return "Size 5";
  91. case "Size 6":return "Size 6";
  92. case "Size 7":return "Size 7";
  93. case "Are you sure you wish to delete all contents?":
  94. return "Are you sure you wish to delete all contents?";
  95. case "Remove Tag":return "Remove Tag";
  96. case "Custom Colors":return "Custom Colors";
  97. case "More Colors...":return "More Colors...";
  98. case "Box Formatting":return "Box Formatting";
  99. case "Advanced Table Insert":return "Advanced Table Insert";
  100. case "Edit Table/Cell":return "Edit Table/Cell";
  101. case "Print":return "Print";
  102. case "Paste Text":return "Paste Text";
  103. default:return "";
  104. }
  105. }