20 DAI
Fix the bug described below.
The prize will be awarded to the first valid submission.
Describe the bug
Our getLocaleTimestamp util function is not formatting the timestamp according to the correct locales.
To Reproduce
Steps to reproduce the behavior:



Across all languages, the timestamp format is the same.
Digging in to the getLocaleTimestamp function, it appears that setting the locale via Moment.js is not working properly:
import moment from "moment"
export const getLocaleTimestamp = (locale, timestamp) => {
console.log(moment.locale()) // always logs 'en'
moment.locale(locale)
console.log(moment.locale()) // still always logs 'en'
return moment(timestamp, ["ll", "YYYY"]).format("ll")
}
Expected behavior
The display date should be formatted differently depending on the locale.
Desktop (please complete the following information):
All
Smartphone (please complete the following information):
All
Issue Status: 1. Open 2. Started 3. Submitted 4. Done
__This issue now has a funding of 20.0 DAI (20.0 USD @ $1.0/DAI) attached to it as part of the ethereum fund.__
Issue Status: 1. Open 2. Started 3. Submitted 4. Done
__Work has been started__.
These users each claimed they can complete the work by 266聽years, 4聽months from now.
Please review their action plans below:
1) developerfred has started work.
as I was the one who added the locale, I'll fix it to get the location of the machines
Learn more on the Gitcoin Issue Details page.

[x] done on import locales
@samajammin I don't have enough gas to send the task through gitcoin, but I already opened the pull request. #1234
@developerfred ah, bummer. I've accepted the PR - thanks for submitting! In order for me to payout the bounty, however, you must submit the work via Gitcoin: https://gitcoin.co/issue/ethereum/ethereum-org-website/1231/4547
Issue Status: 1. Open 2. Started 3. Submitted 4. Done
__Work for 20.0 DAI (20.0 USD @ $1.0/DAI) has been submitted by__:
@samajammin please take a look at the submitted work:
Issue Status: 1. Open 2. Started 3. Submitted 4. Done
__The funding of 20.0 DAI (20.0 USD @ $1.0/DAI) attached to this issue has been approved & issued to @developerfred.__
Solved in #1234