UNPKG

2.72 kBJavaScriptView Raw
1export default {
2 isoName: 'pt-br',
3 nativeName: 'Português (BR)',
4 label: {
5 clear: 'Limpar',
6 ok: 'OK',
7 cancel: 'Cancelar',
8 close: 'Fechar',
9 set: 'Escolher',
10 select: 'Selecionar',
11 reset: 'Redefinir',
12 remove: 'Remover',
13 update: 'Atualizar',
14 create: 'Criar',
15 search: 'Buscar',
16 filter: 'Filtrar',
17 refresh: 'Recarregar'
18 },
19 date: {
20 days: 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'),
21 daysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
22 months: 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),
23 monthsShort: 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
24 firstDayOfWeek: 0, // 0-6, 0 - Sunday, 1 Monday, ...
25 format24h: true
26 },
27 table: {
28 noData: 'Sem dados disponíveis',
29 noResults: 'Nenhum dado correspondente encontrado',
30 loading: 'Carregando...',
31 selectedRecords: function (rows) {
32 return rows > 0
33 ? rows + ' registro' + (rows === 1 ? ' selecionado' : 's selecionados') + '.'
34 : 'Nenhum registro selecionado.'
35 },
36 recordsPerPage: 'Registros por página:',
37 allRows: 'Todos',
38 pagination: function (start, end, total) {
39 return start + '-' + end + ' de ' + total
40 },
41 columns: 'Colunas'
42 },
43 editor: {
44 url: 'URL',
45 bold: 'Negrito',
46 italic: 'Itálico',
47 strikethrough: 'Riscado',
48 underline: 'Sublinhado',
49 unorderedList: 'Lista não-ordenada',
50 orderedList: 'Lista ordenada',
51 subscript: 'Subscrito',
52 superscript: 'Sobrescrito',
53 hyperlink: 'Hyperlink',
54 toggleFullscreen: 'Tela cheia',
55 quote: 'Citação',
56 left: 'Alinhado à esquerda',
57 center: 'Alinhado ao centro',
58 right: 'Alinhado à direita',
59 justify: 'Justificado',
60 print: 'Imprimir',
61 outdent: 'Diminuir indentação',
62 indent: 'Aumentar indentação',
63 removeFormat: 'Remover formatação',
64 formatting: 'Formatação',
65 fontSize: 'Tamanho de fonte',
66 align: 'Alinhar',
67 hr: 'Inserir divisória horizontal',
68 undo: 'Desfazer',
69 redo: 'Refazer',
70 heading1: 'Cabeçalho 1',
71 heading2: 'Cabeçalho 2',
72 heading3: 'Cabeçalho 3',
73 heading4: 'Cabeçalho 4',
74 heading5: 'Cabeçalho 5',
75 heading6: 'Cabeçalho 6',
76 paragraph: 'Parágrafo',
77 code: 'Código',
78 size1: 'Muito pequeno',
79 size2: 'Pequeno',
80 size3: 'Normal',
81 size4: 'Médio',
82 size5: 'Grande',
83 size6: 'Enorme',
84 size7: 'Máximo',
85 defaultFont: 'Fonte padrão',
86 viewSource: 'Exibir fonte'
87 },
88 tree: {
89 noNodes: 'Sem nós disponíveis',
90 noResults: 'Nenhum nó correspondente encontrado'
91 }
92}