Issue
I'm trying to show how many time went since the creation on a post! after searching I found that I have to use momentJs. The time is stored like this:
href="https://i.stack.imgur.com/bMoXz.png" rel="nofollow noreferrer">
And I used this code to show the time
{moment.utc(post.createdAt).local().startOf('seconds').fromNow()}
and the output is like this:
now the question is how change the output to arabic language?
Solution
You should add before moment
moment.locale('ar_SA'); //for Arabia
Answered By - yaskier_one
Answer Checked By - - Clifford M. (ReactFix Volunteer)