add i18n for the replies/reply-to words

This commit is contained in:
shpuld 2019-02-26 17:31:48 +02:00
parent 6e700ea43a
commit 39c0f98857
3 changed files with 10 additions and 2 deletions

View File

@ -70,14 +70,14 @@
@mouseleave.prevent.stop="replyLeave()"
>
<i class="button-icon icon-reply"></i>
<span class="faint reply-to-text">Reply to </span>
<span class="faint reply-to-text">{{$t('status.reply_to')}}</span>
</a>
<router-link v-if="isReply" :to="replyProfileLink">
{{replyToName}}
</router-link>
</div>
<h4 class="replies" v-if="inConversation && !noReplyLinks">
<small class="faint" v-if="replies.length">Replies:</small>
<small class="faint" v-if="replies.length">{{$t('status.replies')}}:</small>
<small class="reply-link" v-for="reply in replies">
<a href="#" @click.prevent="gotoOriginal(reply.id)" @mouseenter="replyEnter(reply.id, $event)" @mouseout="replyLeave()">{{reply.name}}&nbsp;</a>
</small>

View File

@ -349,6 +349,10 @@
"no_more_statuses": "No more statuses",
"no_statuses": "No statuses"
},
"status": {
"reply_to": "Reply to",
"replies": "Replies"
},
"user_card": {
"approve": "Approve",
"block": "Block",

View File

@ -215,6 +215,10 @@
"up_to_date": "Ajantasalla",
"no_more_statuses": "Ei enempää viestejä"
},
"status": {
"reply_to": "Vastaus",
"replies": "Vastaukset"
},
"user_card": {
"approve": "Hyväksy",
"block": "Estä",