Last active
June 30, 2017 14:28
-
-
Save genuinefafa/413e408ec4274b27bd61eaff4a5ade74 to your computer and use it in GitHub Desktop.
ng2-semantic-i18n
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const esES:ILocaleValues = { | |
datepicker: { | |
months: [ | |
"Enero", "Febrero", "Marzo", "Abril", | |
"Mayo", "Junio", "Julio", "Agosto", | |
"Septiembre", "Octubre", "Noviembre", "Diciembre" | |
], | |
monthsShort: [ | |
"Ene", "Feb", "Mar", "Abr", | |
"May", "Jun", "Jul", "Ago", | |
"Sep", "Oct", "Nov", "Dic" | |
], | |
weekdays: [ | |
"Domingo", "Lunes", "Martes", "Miércoles", | |
"Jueves", "Viernes", "Sábado" | |
], | |
weekdaysShort: [ | |
"Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sáb" | |
], | |
weekdaysNarrow: [ | |
"D", "L", "M", "M", | |
"J", "V", "S" | |
], | |
formats: { | |
time: "HH:mm", | |
datetime: "D MMMM de YYYY HH:mm", | |
date: "D de MMMM de YYYY", | |
month: "MMMM de YYYY", | |
year: "YYYY" | |
}, | |
firstDayOfWeek: 1 | |
}, | |
search: { | |
placeholder: "Buscar...", | |
noResults: { | |
header: "Sin resultados", | |
message: "La búsqueda no obtuvo resultados." | |
} | |
}, | |
select: { | |
noResultsMessage: "Sin resultados", | |
single: { | |
placeholder: "Seleccione uno" | |
}, | |
multi: { | |
placeholder: "Seleccione...", | |
maxSelectedMessage: "Puede elegir hasta #{max}." | |
} | |
} | |
}; | |
const ptBR:ILocaleValues = { | |
datepicker: { | |
months: [ | |
"janeiro", "fevereiro", "março", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro" | |
], | |
monthsShort: [ | |
"jan", "fev", "mar", "abr", "mai", "jun", "jul", "ago", "set", "out", "nov", "dez" | |
], | |
weekdays: [ | |
"Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado" | |
], | |
weekdaysShort: [ | |
"Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab" | |
], | |
weekdaysNarrow: [ | |
"D", "1", "2", "3", "4", "5", "S" | |
], | |
formats: { | |
time: "HH:mm", | |
datetime: "D MMMM de YYYY HH:mm", | |
date: "D de MMMM de YYYY", | |
month: "MMMM de YYYY", | |
year: "YYYY" | |
}, | |
firstDayOfWeek: 1 | |
}, | |
search: { | |
placeholder: "Pesquisar...", | |
noResults: { | |
header: "Sem resultados", | |
message: "Sua pesquisa não retornou resultados." | |
} | |
}, | |
select: { | |
noResultsMessage: "Sem resultados", | |
single: { | |
placeholder: "Escolha uma opção." | |
}, | |
multi: { | |
placeholder: "Escolher...", | |
maxSelectedMessage: "Max #{max} opçãoes" | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment