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.
33 lines
860 B
33 lines
860 B
3 years ago
|
import type { Locale } from '../interface';
|
||
|
|
||
|
const locale: Locale = {
|
||
|
locale: 'pt_PT',
|
||
7 years ago
|
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',
|
||
6 years ago
|
};
|
||
3 years ago
|
|
||
|
export default locale;
|