You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'pt_BR',
|
|
today: 'Hoje',
|
|
now: 'Agora',
|
|
backToToday: 'Voltar para hoje',
|
|
ok: 'Ok',
|
|
clear: 'Limpar',
|
|
month: 'Mês',
|
|
year: 'Ano',
|
|
timeSelect: 'Selecionar hora',
|
|
dateSelect: 'Selecionar data',
|
|
monthSelect: 'Escolher mês',
|
|
yearSelect: 'Escolher ano',
|
|
decadeSelect: 'Escolher década',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
|
monthBeforeYear: false,
|
|
previousMonth: 'Mês anterior (PageUp)',
|
|
nextMonth: 'Próximo mês (PageDown)',
|
|
previousYear: 'Ano anterior (Control + esquerda)',
|
|
nextYear: 'Próximo ano (Control + direita)',
|
|
previousDecade: 'Década anterior',
|
|
nextDecade: 'Próxima década',
|
|
previousCentury: 'Século anterior',
|
|
nextCentury: 'Próximo século',
|
|
shortWeekDays: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'],
|
|
shortMonths: ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'],
|
|
};
|
|
|
|
export default locale;
|