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 am using this date-picker in Ionic Mobile app and I have linked following lines to translate into French
<script type="text/javascript" src="lib/moment/min/moment.min.js"></script> <script type="text/javascript" src="lib/moment/locale/fr.js"></script> <script> moment.locale('fr'); </script>
Button is trnaslating as expected but the headers' month is not translating the month name into French.
You can see screenshot here
The text was updated successfully, but these errors were encountered:
This is because the month header has a broken implementation detail:
scope.month = $filter('date')(new Date(next_month), 'MMM')
you can fork off it and use moment instead. This project is no longer maintained
Sorry, something went wrong.
No branches or pull requests
I am using this date-picker in Ionic Mobile app and I have linked following lines to translate into French
Button is trnaslating as expected but the headers' month is not translating the month name into French.
You can see screenshot here
The text was updated successfully, but these errors were encountered: