I'm trying to use French version of moment, but moment.locale('fr')
doesn't work and it doesn't change the language:
console.debug(moment.locale());
moment.locale('fr');
console.debug(moment.locale());
console.debug(moment.locales());
output:
en
en
TypeError: moment.locales is not a function
gulpfile.js:
var path={
js:
[
{
src:
[
'bower_components/moment/min/moment.min.js',
'bower_components/moment/locale/fr.js',
...
You need to import the french definition
https://momentjs.com/docs/#/i18n/loading-into-browser/