1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-01 18:06:45 +01:00

Add title on side bar

This commit is contained in:
AkiraFukushima 2018-08-21 21:04:10 +09:00
parent 7088128796
commit 6e9904a792
7 changed files with 28 additions and 4 deletions

View File

@ -170,6 +170,10 @@
"account_profile": {
"follows_you": "Folgt dir",
"doesnt_follow_you": "Folgt dir nicht",
"detail": "Detail",
"follow": "Folgen",
"unfollow": "Nicht folgen",
"follow_requested": "Folgen Sie angefordert",
"open_in_browser": "Im Browser öffnen",
"manage_list_memberships": "Listen-Mitgliedschaften verwalten",
"toots": "Toots",

View File

@ -170,6 +170,10 @@
"account_profile": {
"follows_you": "Follows you",
"doesnt_follow_you": "Doesn't follow you",
"detail": "Detail",
"follow": "Follow",
"unfollow": "Unfollow",
"follow_requested": "Follow requested",
"open_in_browser": "Open in Browser",
"manage_list_memberships": "Manage List Memberships",
"toots": "Toots",

View File

@ -170,6 +170,10 @@
"account_profile": {
"follows_you": "Abonné⋅e",
"doesnt_follow_you": "Pas abonné⋅e",
"detail": "Détail",
"follow": "Suivre",
"unfollow": "Ne pas suivre",
"follow_requested": "Suivre demande",
"open_in_browser": "Ouvrir dans un navigateur",
"manage_list_memberships": "Inscriptions aux listes",
"toots": "Pouets",

View File

@ -170,6 +170,10 @@
"account_profile": {
"follows_you": "フォローされています",
"doesnt_follow_you": "フォローされていません",
"detail": "詳細",
"follow": "フォローする",
"unfollow": "フォロー解除する",
"follow_requested": "フォロー承認待ち",
"open_in_browser": "ブラウザで開く",
"manage_list_memberships": "リストの管理",
"toots": "トゥート",

View File

@ -170,6 +170,10 @@
"account_profile": {
"follows_you": "사용자를 팔로우하고 있습니다",
"doesnt_follow_you": "사용자를 팔로우하고 있지 않습니다",
"detail": "세부 묘사",
"follow": "따르다",
"unfollow": "팔로우 해제",
"follow_requested": "팔로우하기",
"open_in_browser": "브라우저에서 열기",
"manage_list_memberships": "리스트 멤버 관리",
"toots": "툿",

View File

@ -170,6 +170,10 @@
"account_profile": {
"follows_you": "Śledzi Cię",
"doesnt_follow_you": "Nie śledzi Cię",
"detail": "Szczegół",
"follow": "Śledzić",
"unfollow": "Nie obserwuj",
"follow_requested": "Śledź prośbę",
"open_in_browser": "Otwórz w przeglądarce",
"manage_list_memberships": "Zarządzaj przynależnością do grup",
"toots": "Wpisy",

View File

@ -26,7 +26,7 @@
</ul>
</div>
<el-button slot="reference" type="text">
<el-button slot="reference" type="text" :title="$t('side_bar.account_profile.detail')">
<icon name="cog" scale="1.4"></icon>
</el-button>
</popper>
@ -35,13 +35,13 @@
<img :src="account.avatar" />
</div>
<div class="follow-status" v-if="relationship !== null && relationship !== '' && account.username!==user.username">
<div v-if="relationship.following" class="unfollow" @click="unfollow(account)">
<div v-if="relationship.following" class="unfollow" @click="unfollow(account)" :title="$t('side_bar.account_profile.unfollow')">
<icon name="user-times" scale="1.5"></icon>
</div>
<div v-else-if="relationship.requested">
<div v-else-if="relationship.requested" :title="$t('side_bar.account_profile.follow_requested')">
<icon name="hourglass" scale="1.5"></icon>
</div>
<div v-else class="follow" @click="follow(account)">
<div v-else class="follow" @click="follow(account)" :title="$t('side_bar.account_profile.follow')">
<icon name="user-plus" scale="1.5"></icon>
</div>
</div>