-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Local Create pt-PT.ts
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
const name = 'pt-PT'; | ||
|
||
const localization = { | ||
today: 'Hoje', | ||
clear: 'Limpar seleção', | ||
close: 'Eliminar seleção', | ||
selectMonth: 'Selecionar mês', | ||
previousMonth: 'Mês anterior', | ||
nextMonth: 'Próximo mês', | ||
selectYear: 'Selecionar ano', | ||
previousYear: 'Ano anterior', | ||
nextYear: 'Próximo ano', | ||
selectDecade: 'Seleccionar década', | ||
previousDecade: 'Década anterior', | ||
nextDecade: 'Próxima década', | ||
previousCentury: 'Século anterior', | ||
nextCentury: 'Próximo Século', | ||
pickHour: 'Seleccionar hora', | ||
incrementHour: 'Aumentar hora', | ||
decrementHour: 'Diminuir hora', | ||
pickMinute: 'Seleccionar minuto', | ||
incrementMinute: 'Aumentar minuto', | ||
decrementMinute: 'Diminuir minuto', | ||
pickSecond: 'Seleccionar segundo', | ||
incrementSecond: 'Aumentar segundo', | ||
decrementSecond: 'Diminuir segundo', | ||
toggleMeridiem: 'Alterar AM/PM', | ||
selectTime: 'Selecionar hora', | ||
selectDate: 'Seleccionar data', | ||
dayViewHeaderFormat: { month: 'longo', year: '2-digitos' }, | ||
startOfTheWeek: 1, | ||
locale: 'pt-PT', | ||
dateFormats: { | ||
LT: 'H:mm', | ||
LTS: 'H:mm:ss', | ||
L: 'dd/MM/yyyy', | ||
LL: 'd [de] MMMM [de] yyyy', | ||
LLL: 'd [de] MMMM [de] yyyy H:mm', | ||
LLLL: 'dddd, d [de] MMMM [de] yyyy H:mm', | ||
}, | ||
ordinal: (n) => `${n}º`, | ||
format: 'L LT', | ||
}; | ||
|
||
export { localization, name }; |