Replace words on website

0

I use the code below to generate a space with recent comments made on my blog. It's working perfectly, except that Disqus generates the comment date in English. Ex: 1 month ago, 2 weeks ago, 1 day ago. I would like someone to help me with a stretch that replaces "month ago" with "month ago" for example.

<style scoped="scoped" type="text/css">

.dsq-widget ul.dsq-widget-list{
    padding:0;
    margin:0;
    text-align:left
}

img.dsq-widget-avatar{
    margin:6px 10px 7px 0!important;
    width:60px!important;
    height:60px!important;
    padding:0!important;
    float:left;
    border-radius:3px!important
}

p.dsq-widget-meta{
    clear:both;
    font-size:80%;
    margin-top:5px!important
}

p.dsq-widget-meta a{
    display:inline-block;
    width:48%;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
    white-space:nowrap
}

li.dsq-widget-item{
    margin:0!important;
    padding:6px 0 4px!important;
    list-style-type:none;
    clear:both;
    border-bottom:1px solid #EBEBEB
}

li.dsq-widget-item:last-child{
    border-bottom: 1px solid #EBEBEB
}

a.dsq-widget-user{
    font-weight:700;
    display:block!important;
    font-size: 14px;
    margin-top:5px;
    margin-bottom:5px
}

.dsq-widget-comment p{text-transform:lowercase;color:#888;font-size:12px}

</style>

<div id="RecentComments" class="dsq-widget">
    <script type="text/javascript" src="http://vida-xbox.disqus.com/recent_comments_widget.js?num_items=5&hide_mods=0&hide_avatars=0&avatar_size=32&excerpt_length=70"></script>
</div>

I do not know if it is possible to leave the link for my blog here so I did not leave it

    
asked by anonymous 22.07.2017 / 16:33

0 answers