Project for the UPV to develop an app like BlaBlaCar but only for UPV people.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

moment locale

+2 -1
+2 -1
upvcarshare/static/src/js/messenger/messenger.controller.js
··· 1 1 import moment from 'moment'; 2 - import jQuery from 'jquery'; 2 + import 'moment/locale/es'; 3 3 4 4 5 5 class MessengerController { ··· 80 80 constructor() {} 81 81 82 82 showTimestamp(timeString) { 83 + moment.locale('es'); 83 84 return moment(timeString).calendar(); 84 85 } 85 86