Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add spanish locale #5359

Merged
merged 5 commits into from Nov 18, 2018
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions packages/vuetify/src/locale/es.ts
@@ -0,0 +1,14 @@
export default {
dataIterator: {
rowsPerPageText: 'Elementos por página:',
rowsPerPageAll: 'Todos',
pageText: '{0}-{1} de {2}',
noResultsText: 'Ningún resultado a mostrar',
nextPage: 'Página siguiente',
prevPage: 'Página anterior'
},
dataTable: {
rowsPerPageText: 'Filas por página:'
},
noDataText: 'Ningún dato disponible'
}
1 change: 1 addition & 0 deletions packages/vuetify/src/locale/index.ts
Expand Up @@ -2,6 +2,7 @@ export { default as ca } from './ca'
export { default as de } from './de'
export { default as el } from './el'
export { default as en } from './en'
export { default as es } from './es'
export { default as fa } from './fa'
export { default as fr } from './fr'
export { default as hu } from './hu'
Expand Down