33 lines
		
	
	
		
			860 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			860 B
		
	
	
	
		
			TypeScript
		
	
	
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',
 | 
						|
};
 | 
						|
 | 
						|
export default locale;
 |