diff options
| author | Henry <spam@hjkos.com> | 2018-12-03 19:22:39 +0000 |
|---|---|---|
| committer | Henry <spam@hjkos.com> | 2018-12-03 19:22:39 +0000 |
| commit | 480f617c098c831e095a686abb319f4e467e15e4 (patch) | |
| tree | 578c75a1c553258b445f996777c352f5f17b377d /src/components/status | |
| parent | b851b8dd02e66399cf6ac4f5f1b1cae8e28e3c55 (diff) | |
| parent | c142f7b7b64ae1b4cc60340e2bbe43fe774bcd3b (diff) | |
Merge branch 'dev_vald_fe/be' into 'develop'
added tooltip
See merge request pleroma/pleroma-fe!391
Diffstat (limited to 'src/components/status')
| -rw-r--r-- | src/components/status/status.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 8087d392..9f65f281 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -13,7 +13,7 @@ <div class="media-body faint"> <a v-if="retweeterHtml" :href="statusoid.user.statusnet_profile_url" class="user-name" :title="'@'+statusoid.user.screen_name" v-html="retweeterHtml"></a> <a v-else :href="statusoid.user.statusnet_profile_url" class="user-name" :title="'@'+statusoid.user.screen_name">{{retweeter}}</a> - <i class='fa icon-retweet retweeted'></i> + <i class='fa icon-retweet retweeted' :title="$t('tool_tip.repeat')"></i> {{$t('timeline.repeated')}} </div> </div> @@ -41,7 +41,7 @@ {{status.in_reply_to_screen_name}} </router-link> </span> - <a v-if="isReply && !noReplyLinks" href="#" @click.prevent="gotoOriginal(status.in_reply_to_status_id)"> + <a v-if="isReply && !noReplyLinks" href="#" @click.prevent="gotoOriginal(status.in_reply_to_status_id)" :title="$t('tool_tip.reply')"> <i class="icon-reply" @mouseenter="replyEnter(status.in_reply_to_status_id, $event)" @mouseout="replyLeave()"></i> </a> </span> @@ -94,7 +94,7 @@ <div v-if="!noHeading && !noReplyLinks" class='status-actions media-body'> <div v-if="loggedIn"> - <a href="#" v-on:click.prevent="toggleReplying"> + <a href="#" v-on:click.prevent="toggleReplying" :title="$t('tool_tip.reply')"> <i class="icon-reply" :class="{'icon-reply-active': replying}"></i> </a> </div> |
