htmlarea.js.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // I18N constants
  2. // LANG: "en", ENCODING: UTF-8 | ISO-8859-1
  3. // Author: Mihai Bazon, http://dynarch.com/mishoo
  4. // FOR TRANSLATORS:
  5. //
  6. // 1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
  7. // (at least a valid email address)
  8. //
  9. // 2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
  10. // (if this is not possible, please include a comment
  11. // that states what encoding is necessary.)
  12. HTMLArea.I18N = {
  13. // the following should be the filename without .js extension
  14. // it will be used for automatically load plugin language.
  15. lang: "en",
  16. tooltips: {
  17. bold: "Bold",
  18. italic: "Italic",
  19. underline: "Underline",
  20. strikethrough: "Strikethrough",
  21. subscript: "Subscript",
  22. superscript: "Superscript",
  23. justifyleft: "Justify Left",
  24. justifycenter: "Justify Center",
  25. justifyright: "Justify Right",
  26. justifyfull: "Justify Full",
  27. orderedlist: "Ordered List",
  28. unorderedlist: "Bulleted List",
  29. outdent: "Decrease Indent",
  30. indent: "Increase Indent",
  31. forecolor: "Font Color",
  32. hilitecolor: "Background Color",
  33. inserthorizontalrule: "Horizontal Rule",
  34. createlink: "Insert Web Link",
  35. insertimage: "Insert/Modify Image",
  36. inserttable: "Insert Table",
  37. htmlmode: "Toggle HTML Source",
  38. popupeditor: "Enlarge Editor",
  39. about: "About this editor",
  40. showhelp: "Help using editor",
  41. textindicator: "Current style",
  42. undo: "Undoes your last action",
  43. redo: "Redoes your last action",
  44. cut: "Cut selection",
  45. copy: "Copy selection",
  46. paste: "Paste from clipboard",
  47. lefttoright: "Direction left to right",
  48. righttoleft: "Direction right to left"
  49. },
  50. buttons: {
  51. "ok": "OK",
  52. "cancel": "Cancel"
  53. },
  54. msg: {
  55. "Path": "Path",
  56. "TEXT_MODE": "You are in TEXT MODE. Use the [<>] button to switch back to WYSIWYG.",
  57. "IE-sucks-full-screen" :
  58. // translate here
  59. "The full screen mode is known to cause problems with Internet Explorer, " +
  60. "due to browser bugs that we weren't able to workaround. You might experience garbage " +
  61. "display, lack of editor functions and/or random browser crashes. If your system is Windows 9x " +
  62. "it's very likely that you'll get a 'General Protection Fault' and need to reboot.\n\n" +
  63. "You have been warned. Please press OK if you still want to try the full screen editor.",
  64. "Moz-Clipboard" :
  65. "Unprivileged scripts cannot access Cut/Copy/Paste programatically " +
  66. "for security reasons. Click OK to see a technical note at mozilla.org " +
  67. "which shows you how to allow a script to access the clipboard."
  68. },
  69. dialogs: {
  70. "Cancel" : "Cancel",
  71. "Insert/Modify Link" : "Insert/Modify Link",
  72. "New window (_blank)" : "New window (_blank)",
  73. "None (use implicit)" : "None (use implicit)",
  74. "OK" : "OK",
  75. "Other" : "Other",
  76. "Same frame (_self)" : "Same frame (_self)",
  77. "Target:" : "Target:",
  78. "Title (tooltip):" : "Title (tooltip):",
  79. "Top frame (_top)" : "Top frame (_top)",
  80. "URL:" : "URL:",
  81. "You must enter the URL where this link points to" : "You must enter the URL where this link points to"
  82. }
  83. };