htmlarea.js.php 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // I18N constants
  2. HTMLArea.I18N = {
  3. // the following should be the filename without .js extension
  4. // it will be used for automatically load plugin language.
  5. lang: "en",
  6. tooltips: {
  7. bold: "Lihavoitu",
  8. italic: "Kursivoitu",
  9. underline: "Alleviivattu",
  10. strikethrough: "Yliviivattu",
  11. subscript: "Alaindeksi",
  12. superscript: "Yläindeksi",
  13. justifyleft: "Tasaa vasemmat reunat",
  14. justifycenter: "Keskitä",
  15. justifyright: "Tasaa oikeat reunat",
  16. justifyfull: "Tasaa molemmat reunat",
  17. orderedlist: "Numerointi",
  18. unorderedlist: "Luettelomerkit",
  19. outdent: "Lisää sisennystä",
  20. indent: "Pienennä sisennystä",
  21. forecolor: "Fontin väri",
  22. hilitecolor: "Taustaväri",
  23. inserthorizontalrule: "Vaakaviiva",
  24. createlink: "Lisää Linkki",
  25. insertimage: "Lisää Kuva",
  26. inserttable: "Lisää Taulu",
  27. htmlmode: "HTML Lähdekoodi vs WYSIWYG",
  28. popupeditor: "Suurenna Editori",
  29. about: "Tietoja Editorista",
  30. showhelp: "Näytä Ohje",
  31. textindicator: "Nykyinen tyyli",
  32. undo: "Peruuta viimeinen toiminto",
  33. redo: "Palauta viimeinen toiminto",
  34. cut: "Leikkaa maalattu",
  35. copy: "Kopioi maalattu",
  36. paste: "Liitä leikepyödältä"
  37. },
  38. buttons: {
  39. "ok": "Hyväksy",
  40. "cancel": "Peruuta"
  41. },
  42. msg: {
  43. "Path": "Path",
  44. "TEXT_MODE": "You are in TEXT MODE. Use the [<>] button to switch back to WYSIWYG.",
  45. "IE-sucks-full-screen" :
  46. // translate here
  47. "The full screen mode is known to cause problems with Internet Explorer, " +
  48. "due to browser bugs that we weren't able to workaround. You might experience garbage " +
  49. "display, lack of editor functions and/or random browser crashes. If your system is Windows 9x " +
  50. "it's very likely that you'll get a 'General Protection Fault' and need to reboot.\n\n" +
  51. "You have been warned. Please press OK if you still want to try the full screen editor.",
  52. "Moz-Clipboard" :
  53. "Unprivileged scripts cannot access Cut/Copy/Paste programatically " +
  54. "for security reasons. Click OK to see a technical note at mozilla.org " +
  55. "which shows you how to allow a script to access the clipboard."
  56. },
  57. dialogs: {
  58. "Cancel" : "Cancel",
  59. "Insert/Modify Link" : "Insert/Modify Link",
  60. "New window (_blank)" : "New window (_blank)",
  61. "None (use implicit)" : "None (use implicit)",
  62. "OK" : "OK",
  63. "Other" : "Other",
  64. "Same frame (_self)" : "Same frame (_self)",
  65. "Target:" : "Target:",
  66. "Title (tooltip):" : "Title (tooltip):",
  67. "Top frame (_top)" : "Top frame (_top)",
  68. "URL:" : "URL:",
  69. "You must enter the URL where this link points to" : "You must enter the URL where this link points to"
  70. }
  71. };