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_PT',
|
|
today: 'Hoje',
|
|
now: 'Agora',
|
|
backToToday: 'Hoje',
|
|
ok: 'Ok',
|
|
clear: 'Limpar',
|
|
month: 'Mês',
|
|
year: 'Ano',
|
|
timeSelect: 'Selecionar hora',
|
|
dateSelect: 'Selecionar data',
|
|
monthSelect: 'Selecionar mês',
|
|
yearSelect: 'Selecionar ano',
|
|
decadeSelect: 'Selecionar década',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Mês anterior (PageUp)',
|
|
nextMonth: 'Mês seguinte (PageDown)',
|
|
previousYear: 'Ano anterior (Control + left)',
|
|
nextYear: 'Ano seguinte (Control + right)',
|
|
previousDecade: 'Década anterior',
|
|
nextDecade: 'Década seguinte',
|
|
previousCentury: 'Século anterior',
|
|
nextCentury: 'Século seguinte',
|
|
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;
|