htmlarea.js.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // I18N constants
  2. // Brazilian Portuguese Translation by Alex Piaz <webmaster@globalmap.com>
  3. //Brazilian Portuguese Translation adptation for Dokeos 1.6 by Eziquiel Menta <ementa@gmail.com>
  4. HTMLArea.I18N = {
  5. // the following should be the filename without .js extension
  6. // it will be used for automatically load plugin language.
  7. lang: "brazilian",
  8. tooltips: {
  9. bold: "Negrito",
  10. italic: "Itálico",
  11. underline: "Sublinhado",
  12. strikethrough: "Tachado",
  13. subscript: "Subescrito",
  14. superscript: "Sobrescrito",
  15. justifyleft: "Alinhar à Esquerda",
  16. justifycenter: "Centralizar",
  17. justifyright: "Alinhar à Direita",
  18. justifyfull: "Justificar",
  19. orderedlist: "Lista Numerada",
  20. unorderedlist: "Lista Marcadores",
  21. outdent: "Diminuir Indentação",
  22. indent: "Aumentar Indentação",
  23. forecolor: "Cor da Fonte",
  24. hilitecolor: "Cor do Fundo",
  25. inserthorizontalrule: "Linha Horizontal",
  26. createlink: "Inserir Link",
  27. insertimage: "Inserir Imagem",
  28. inserttable: "Inserir Tabela",
  29. htmlmode: "Ver Código-Fonte",
  30. popupeditor: "Expandir Editor",
  31. about: "Sobre",
  32. help: "Ajuda",
  33. textindicator: "Estilo Atual",
  34. undo: "Desfazer última ação",
  35. redo: "Refazer última ação",
  36. cut: "Recortar seleção",
  37. copy: "Copiar seleção",
  38. paste: "Paste from clipboard",
  39. insertflash: "Inserir Flash",
  40. insertmp3: "Inserir mp3",
  41. insertvideo: "Inserir Vídeo",
  42. insertlatex: "Inserir Latex"
  43. },
  44. buttons: {
  45. "ok": "OK",
  46. "cancel": "Cancelar"
  47. },
  48. msg: {
  49. "Path": "Path",
  50. "TEXT_MODE": "Você está no MODO TEXTO. Use o botão [<>] para mudar para o MODO WYSIWYG.",
  51. "IE-sucks-full-screen" :
  52. // translate here
  53. "Sabe-se que a tela cheia pode causar problemas com o Internet Explorer, " +
  54. "due to browser bugs that we weren't able to workaround. You might experience garbage " +
  55. "display, lack of editor functions and/or random browser crashes. If your system is Windows 9x " +
  56. "it's very likely that you'll get a 'General Protection Fault' and need to reboot.\n\n" +
  57. "You have been warned. Please press OK if you still want to try the full screen editor.",
  58. "Moz-Clipboard" :
  59. "Unprivileged scripts cannot access Cut/Copy/Paste programatically " +
  60. "for security reasons. Click OK to see a technical note at mozilla.org " +
  61. "which shows you how to allow a script to access the clipboard."
  62. },
  63. dialogs: {
  64. "Cancel" : "Cancelar",
  65. "Insert/Modify Link" : "Inserir/Modificar Link",
  66. "New window (_blank)" : "Nova janela (_blank)",
  67. "None (use implicit)" : "Nenhum (use implícito)",
  68. "OK" : "OK",
  69. "Other" : "Outro",
  70. "Same frame (_self)" : "Mesmo frame (_self)",
  71. "Target:" : "Alvo (Target):",
  72. "Title (tooltip):" : "Título (tooltip):",
  73. "Top frame (_top)" : "Top frame (_top)",
  74. "URL:" : "URL:",
  75. "You must enter the URL where this link points to" : "Você deve indicar para qual Página este link apontará"
  76. }
  77. };