-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using non-English locale in date picker #228
Comments
hello, daterangepicker uses the moment library to define the language. You can customize using: import moment from 'moment';
moment.defineLocale('pt-br', {
months: [
'Janeiro',
'Fevereiro',
'Março',
'Abril',
'Maio',
'Junho',
'Julho',
'Agosto',
'Setembro',
'Outubro',
'Novembro',
'Dezembro',
],
monthsShort: [
'jan',
'fev',
'mar',
'abr',
'mai',
'jun',
'jul',
'ago',
'set',
'out',
'nov',
'dez',
],
weekdays: [
'domingo',
'segunda-feira',
'terça-feira',
'quarta-feira',
'quinta-feira',
'sexta-feira',
'sábado',
],
weekdaysShort: ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sáb'],
weekdaysMin: ['dom', '2ª', '3ª', '4ª', '5ª', '6ª', 'sáb'],
longDateFormat: {
LTS: 'HH:mm:ss',
LT: 'HH:mm',
L: 'DD/MM/YYYY',
LL: 'D [de] MMMM [de] YYYY',
LLL: 'D [de] MMMM [de] YYYY [às] LT',
LLLL: 'dddd, D [de] MMMM [de] YYYY [às] LT',
},
calendar: {
sameDay: '[Hoje às] LT',
nextDay: '[Amanhã às] LT',
nextWeek: 'dddd [às] LT',
lastDay: '[Ontem às] LT',
sameElse: 'L',
},
relativeTime: {
future: 'em %s',
past: '%s atrás',
s: 'segundos',
m: 'um minuto',
mm: '%d minutos',
h: 'uma hora',
hh: '%d horas',
d: 'um dia',
dd: '%d dias',
M: 'um mês',
MM: '%d meses',
y: 'um ano',
yy: '%d anos',
},
}); or import moment from 'moment';
moment.locale('pt-br');
moment().format('DD/MM/YY'); |
Thank you very much for your reply. This works perfectly for changing the language, but I actually need to have a non-gregorian calendar as well. I really appreciate it if you could help me with this. Thank you. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi everybody,
Thanks for this very useful package. I am looking for a way to have non-English locale in this date picker. I really appreciate any help.
The text was updated successfully, but these errors were encountered: