-
Notifications
You must be signed in to change notification settings - Fork 69
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
question about months name #26
Comments
Hi, moment.locale('fa').format('jMMMM'); |
As you helped me with this nice and concise function of returning weekDayNames:
Is there any similar way to returning months name? |
Hi, moment().localeData()._jMonths.slice(0);
moment().localeData()._jMonthsShort.slice(0);
moment().locale('fa').localeData()._jMonths.slice(0); |
no such functions or properties in typescript. |
I will fix it in next version (moment().localeData() as any)._jMonths.slice(0); |
Thank you very much. nice of you as always |
how can i change the names of the months to Afghanistan's month? is there any way to achieve this functionality? |
You can find it in the moment documents |
Hi,
This is not an issue.
I have a question:
What is the use cases of
Because of an issue in angular material 2 datepicker, if your library could set months name in the above code just to Persian names as moment's locale data, it may help on mentioned issue.
Thanks again.
The text was updated successfully, but these errors were encountered: