Skip to content

Commit

Permalink
remove translations
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Apr 24, 2020
1 parent 8e1fb5c commit 6fd2486
Showing 1 changed file with 0 additions and 49 deletions.
49 changes: 0 additions & 49 deletions packages/material-ui/src/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -594,55 +594,6 @@ export const frFR: Localization = {
},
};

export const glES: Localization = {
props: {
MuiBreadcrumbs: {
expandText: 'Mostrar camiño',
},
MuiTablePagination: {
backIconButtonText: 'Páxina anterior',
labelRowsPerPage: 'Filas por páxina:',
labelDisplayedRows: ({ from, to, count }) => `${from}-${to === -1 ? count : to} de ${count}`,
nextIconButtonText: 'Seguinte páxina',
},
MuiRating: {
getLabelText: (value) => `${value} Estrela${value !== 1 ? 's' : ''}`,
emptyLabelText: 'Baleira',
},
MuiAutocomplete: {
clearText: 'Limpar',
closeText: 'Pechar',
loadingText: 'Cargando…',
noOptionsText: 'Sen opcións',
openText: 'Aberto',
},
MuiAlert: {
closeText: 'Pechar',
},
MuiPagination: {
'aria-label': 'Paxinador',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${selected ? '' : 'Ir á '}páxina ${page}`;
}
if (type === 'first') {
return 'Ir á primeira páxina';
}
if (type === 'last') {
return 'Ir á última páxina';
}
if (type === 'next') {
return 'Ir á páxina seguinte';
}
if (type === 'previous') {
return 'Ir á páxina anterior';
}
return undefined;
},
},
},
};

export const heIL: Localization = {
props: {
// MuiBreadcrumbs: {
Expand Down

0 comments on commit 6fd2486

Please sign in to comment.