We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm trying to change language dynamically, but nothing changes after creating a new instance, here is the code:
// Default english var datePicker = $('.datepicker').pickadate({ today: null, clear: null, formatSubmit: 'dd/mm/yyyy', })
After changing language, I create a new instance with the new translations, but the same English modal opens:
var datePicker = $('.datepicker').pickadate({ today: null, clear: null, formatSubmit: 'dd/mm/yyyy', monthsFull: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'], weekdaysShort: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'], formatSubmit: 'yyyy/mm/dd' })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to change language dynamically, but nothing changes after creating a new instance, here is the code:
After changing language, I create a new instance with the new translations, but the same English modal opens:
The text was updated successfully, but these errors were encountered: