summernote-pt-PT.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. (function($) {
  2. $.extend($.summernote.lang, {
  3. 'pt-PT': {
  4. font: {
  5. bold: 'Negrito',
  6. italic: 'Itálico',
  7. underline: 'Sublinhado',
  8. clear: 'Remover estilo da fonte',
  9. height: 'Altura da linha',
  10. name: 'Fonte',
  11. strikethrough: 'Riscado',
  12. subscript: 'Subscript',
  13. superscript: 'Superscript',
  14. size: 'Tamanho da fonte'
  15. },
  16. image: {
  17. image: 'Imagem',
  18. insert: 'Inserir imagem',
  19. resizeFull: 'Redimensionar Completo',
  20. resizeHalf: 'Redimensionar Metade',
  21. resizeQuarter: 'Redimensionar Um Quarto',
  22. floatLeft: 'Float Esquerda',
  23. floatRight: 'Float Direita',
  24. floatNone: 'Sem Float',
  25. shapeRounded: 'Shape: Rounded',
  26. shapeCircle: 'Shape: Circle',
  27. shapeThumbnail: 'Shape: Thumbnail',
  28. shapeNone: 'Shape: None',
  29. dragImageHere: 'Arraste uma imagem para aqui',
  30. dropImage: 'Drop image or Text',
  31. selectFromFiles: 'Selecione a partir dos arquivos',
  32. maximumFileSize: 'Maximum file size',
  33. maximumFileSizeError: 'Maximum file size exceeded.',
  34. url: 'Endereço da imagem',
  35. remove: 'Remove Image',
  36. original: 'Original'
  37. },
  38. video: {
  39. video: 'Vídeo',
  40. videoLink: 'Link para vídeo',
  41. insert: 'Inserir vídeo',
  42. url: 'URL do vídeo?',
  43. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
  44. },
  45. link: {
  46. link: 'Link',
  47. insert: 'Inserir ligação',
  48. unlink: 'Remover ligação',
  49. edit: 'Editar',
  50. textToDisplay: 'Texto para exibir',
  51. url: 'Que endereço esta licação leva?',
  52. openInNewWindow: 'Abrir numa nova janela'
  53. },
  54. table: {
  55. table: 'Tabela',
  56. addRowAbove: 'Add row above',
  57. addRowBelow: 'Add row below',
  58. addColLeft: 'Add column left',
  59. addColRight: 'Add column right',
  60. delRow: 'Delete row',
  61. delCol: 'Delete column',
  62. delTable: 'Delete table'
  63. },
  64. hr: {
  65. insert: 'Inserir linha horizontal'
  66. },
  67. style: {
  68. style: 'Estilo',
  69. p: 'p',
  70. blockquote: 'Citação',
  71. pre: 'Código',
  72. h1: 'Título 1',
  73. h2: 'Título 2',
  74. h3: 'Título 3',
  75. h4: 'Título 4',
  76. h5: 'Título 5',
  77. h6: 'Título 6'
  78. },
  79. lists: {
  80. unordered: 'Lista com marcadores',
  81. ordered: 'Lista numerada'
  82. },
  83. options: {
  84. help: 'Ajuda',
  85. fullscreen: 'Janela Completa',
  86. codeview: 'Ver código-fonte'
  87. },
  88. paragraph: {
  89. paragraph: 'Parágrafo',
  90. outdent: 'Menor tabulação',
  91. indent: 'Maior tabulação',
  92. left: 'Alinhar à esquerda',
  93. center: 'Alinhar ao centro',
  94. right: 'Alinha à direita',
  95. justify: 'Justificado'
  96. },
  97. color: {
  98. recent: 'Cor recente',
  99. more: 'Mais cores',
  100. background: 'Fundo',
  101. foreground: 'Fonte',
  102. transparent: 'Transparente',
  103. setTransparent: 'Fundo transparente',
  104. reset: 'Restaurar',
  105. resetToDefault: 'Restaurar padrão'
  106. },
  107. shortcut: {
  108. shortcuts: 'Atalhos do teclado',
  109. close: 'Fechar',
  110. textFormatting: 'Formatação de texto',
  111. action: 'Ação',
  112. paragraphFormatting: 'Formatação de parágrafo',
  113. documentStyle: 'Estilo de documento'
  114. },
  115. help: {
  116. 'insertParagraph': 'Insert Paragraph',
  117. 'undo': 'Undoes the last command',
  118. 'redo': 'Redoes the last command',
  119. 'tab': 'Tab',
  120. 'untab': 'Untab',
  121. 'bold': 'Set a bold style',
  122. 'italic': 'Set a italic style',
  123. 'underline': 'Set a underline style',
  124. 'strikethrough': 'Set a strikethrough style',
  125. 'removeFormat': 'Clean a style',
  126. 'justifyLeft': 'Set left align',
  127. 'justifyCenter': 'Set center align',
  128. 'justifyRight': 'Set right align',
  129. 'justifyFull': 'Set full align',
  130. 'insertUnorderedList': 'Toggle unordered list',
  131. 'insertOrderedList': 'Toggle ordered list',
  132. 'outdent': 'Outdent on current paragraph',
  133. 'indent': 'Indent on current paragraph',
  134. 'formatPara': 'Change current block\'s format as a paragraph(P tag)',
  135. 'formatH1': 'Change current block\'s format as H1',
  136. 'formatH2': 'Change current block\'s format as H2',
  137. 'formatH3': 'Change current block\'s format as H3',
  138. 'formatH4': 'Change current block\'s format as H4',
  139. 'formatH5': 'Change current block\'s format as H5',
  140. 'formatH6': 'Change current block\'s format as H6',
  141. 'insertHorizontalRule': 'Insert horizontal rule',
  142. 'linkDialog.show': 'Show Link Dialog'
  143. },
  144. history: {
  145. undo: 'Desfazer',
  146. redo: 'Refazer'
  147. },
  148. specialChar: {
  149. specialChar: 'SPECIAL CHARACTERS',
  150. select: 'Select Special characters'
  151. }
  152. }
  153. });
  154. })(jQuery);