htmlarea.js.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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: "pl",
  6. tooltips: {
  7. bold: "Pogrubienie",
  8. italic: "Pochylenie",
  9. underline: "Podkreœlenie",
  10. strikethrough: "Przekreœlenie",
  11. subscript: "Indeks dolny",
  12. superscript: "Indeks górny",
  13. justifyleft: "Wyrównaj do lewej",
  14. justifycenter: "Wyœrodkuj",
  15. justifyright: "Wyrównaj do prawej",
  16. justifyfull: "Wyjustuj",
  17. orderedlist: "Numerowanie",
  18. unorderedlist: "Wypunktowanie",
  19. outdent: "Zmniejsz wciêcie",
  20. indent: "Zwiêksz wciêcie",
  21. forecolor: "Kolor czcionki",
  22. backcolor: "Kolor t³a",
  23. inserthorizontalrule: "Linia pozioma",
  24. createlink: "Wstaw adres sieci Web",
  25. insertimage: "Wstaw obraz",
  26. inserttable: "Wstaw tabelê",
  27. htmlmode: "Edycja WYSIWYG/w Ÿródle strony",
  28. popupeditor: "Pe³ny ekran",
  29. about: "Informacje o tym edytorze",
  30. help: "Pomoc",
  31. textindicator: "Obecny styl"
  32. },
  33. buttons: {
  34. "ok": "OK",
  35. "cancel": "Cancel"
  36. },
  37. msg: {
  38. "Path": "Path",
  39. "TEXT_MODE": "You are in TEXT MODE. Use the [<>] button to switch back to WYSIWYG.",
  40. "IE-sucks-full-screen" :
  41. // translate here
  42. "The full screen mode is known to cause problems with Internet Explorer, " +
  43. "due to browser bugs that we weren't able to workaround. You might experience garbage " +
  44. "display, lack of editor functions and/or random browser crashes. If your system is Windows 9x " +
  45. "it's very likely that you'll get a 'General Protection Fault' and need to reboot.\n\n" +
  46. "You have been warned. Please press OK if you still want to try the full screen editor.",
  47. "Moz-Clipboard" :
  48. "Unprivileged scripts cannot access Cut/Copy/Paste programatically " +
  49. "for security reasons. Click OK to see a technical note at mozilla.org " +
  50. "which shows you how to allow a script to access the clipboard."
  51. },
  52. dialogs: {
  53. "Cancel" : "Cancel",
  54. "Insert/Modify Link" : "Insert/Modify Link",
  55. "New window (_blank)" : "New window (_blank)",
  56. "None (use implicit)" : "None (use implicit)",
  57. "OK" : "OK",
  58. "Other" : "Other",
  59. "Same frame (_self)" : "Same frame (_self)",
  60. "Target:" : "Target:",
  61. "Title (tooltip):" : "Title (tooltip):",
  62. "Top frame (_top)" : "Top frame (_top)",
  63. "URL:" : "URL:",
  64. "You must enter the URL where this link points to" : "You must enter the URL where this link points to"
  65. }
  66. };