18 lines
426 B
JavaScript
18 lines
426 B
JavaScript
// src/i18n.js
|
|
export default {
|
|
pt: {
|
|
$vuetify: {
|
|
dataIterator: {
|
|
itemsPerPageText: 'Itens por página:',
|
|
nextPage: 'Próxima página',
|
|
prevPage: 'Página anterior',
|
|
rowsPerPageText: 'Linhas por página'
|
|
},
|
|
dataTable: {
|
|
itemsPerPageText: 'Itens por página:',
|
|
of: 'de', // Traduzindo 'of' para 'de'
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|