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.
48 lines
1.4 KiB
48 lines
1.4 KiB
5 years ago
|
import CalendarLocale from 'rc-picker/lib/locale/pt_PT';
|
||
7 years ago
|
import TimePickerLocale from '../../time-picker/locale/pt_PT';
|
||
3 years ago
|
import type { PickerLocale } from '../generatePicker';
|
||
7 years ago
|
|
||
|
// Merge into a locale object
|
||
5 years ago
|
const locale: PickerLocale = {
|
||
7 years ago
|
lang: {
|
||
|
...CalendarLocale,
|
||
|
placeholder: 'Data',
|
||
|
rangePlaceholder: ['Data inicial', 'Data final'],
|
||
|
today: 'Hoje',
|
||
|
now: 'Agora',
|
||
|
backToToday: 'Hoje',
|
||
3 years ago
|
ok: 'OK',
|
||
7 years ago
|
clear: 'Limpar',
|
||
|
month: 'Mês',
|
||
|
year: 'Ano',
|
||
|
timeSelect: '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',
|
||
|
monthFormat: 'MMMM',
|
||
|
monthBeforeYear: false,
|
||
|
previousMonth: 'Mês anterior (PageUp)',
|
||
|
nextMonth: 'Mês seguinte (PageDown)',
|
||
|
previousYear: 'Ano anterior (Control + left)',
|
||
|
nextYear: 'Ano seguinte (Control + right)',
|
||
|
previousDecade: 'Última década',
|
||
|
nextDecade: 'Próxima década',
|
||
|
previousCentury: 'Último século',
|
||
|
nextCentury: 'Próximo século',
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
placeholder: 'Hora',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
||
|
|
||
|
export default locale;
|