summernote-pt-BR.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. (function ($) {
  2. $.extend($.summernote.lang, {
  3. 'pt-BR': {
  4. font: {
  5. bold: 'Negrito',
  6. italic: 'Itálico',
  7. underline: 'Sublinhado',
  8. strikethrough: 'Riscado',
  9. clear: 'Remover estilo da fonte',
  10. height: 'Altura da linha',
  11. size: 'Tamanho da fonte'
  12. },
  13. image: {
  14. image: 'Imagem',
  15. insert: 'Inserir imagem',
  16. resizeFull: 'Resize Full',
  17. resizeHalf: 'Resize Half',
  18. resizeQuarter: 'Resize Quarter',
  19. floatLeft: 'Float Left',
  20. floatRight: 'Float Right',
  21. floatNone: 'Float None',
  22. dragImageHere: 'Arraste uma imagem para cá',
  23. selectFromFiles: 'Selecione a partir dos arquivos',
  24. url: 'URL da image'
  25. },
  26. link: {
  27. link: 'Link',
  28. insert: 'Inserir link',
  29. unlink: 'Remover link',
  30. edit: 'Editar',
  31. textToDisplay: 'Texto para exibir',
  32. url: 'Para qual URL esse link leva?',
  33. openInNewWindow: 'Abrir em uma nova janela'
  34. },
  35. video: {
  36. video: 'Vídeo',
  37. videoLink: 'Link para vídeo',
  38. insert: 'Inserir vídeo',
  39. url: 'URL do vídeo?',
  40. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, ou Youku)'
  41. },
  42. table: {
  43. table: 'Tabela'
  44. },
  45. hr: {
  46. insert: 'Inserir linha horizontal'
  47. },
  48. style: {
  49. style: 'Estilo',
  50. normal: 'Normal',
  51. blockquote: 'Citação',
  52. pre: 'Código',
  53. h1: 'Título 1',
  54. h2: 'Título 2',
  55. h3: 'Título 3',
  56. h4: 'Título 4',
  57. h5: 'Título 5',
  58. h6: 'Título 6'
  59. },
  60. lists: {
  61. unordered: 'Lista com marcadores',
  62. ordered: 'Lista numerada'
  63. },
  64. options: {
  65. help: 'Ajuda',
  66. fullscreen: 'Tela cheia',
  67. codeview: 'Ver código-fonte'
  68. },
  69. paragraph: {
  70. paragraph: 'Parágrafo',
  71. outdent: 'Menor tabulação',
  72. indent: 'Maior tabulação',
  73. left: 'Alinhar à esquerda',
  74. center: 'Alinhar ao centro',
  75. right: 'Alinha à direita',
  76. justify: 'Justificado'
  77. },
  78. color: {
  79. recent: 'Cor recente',
  80. more: 'Mais cores',
  81. background: 'Fundo',
  82. foreground: 'Fonte',
  83. transparent: 'Transparente',
  84. setTransparent: 'Fundo transparente',
  85. reset: 'Restaurar',
  86. resetToDefault: 'Restaurar padrão'
  87. },
  88. shortcut: {
  89. shortcuts: 'Atalhos do teclado',
  90. close: 'Fechar',
  91. textFormatting: 'Formatação de texto',
  92. action: 'Ação',
  93. paragraphFormatting: 'Formatação de parágrafo',
  94. documentStyle: 'Estilo de documento'
  95. },
  96. history: {
  97. undo: 'Desfazer',
  98. redo: 'Refazer'
  99. }
  100. }
  101. });
  102. })(jQuery);