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

Add title on global header

This commit is contained in:
AkiraFukushima 2018-08-21 20:40:51 +09:00
parent 8119c2cacb
commit 7088128796
7 changed files with 19 additions and 1 deletions

View File

@ -34,6 +34,9 @@
"jump_to": "Springe zu" "jump_to": "Springe zu"
} }
}, },
"global_header": {
"add_new_account": "Neues Konto hinzufügen"
},
"side_menu": { "side_menu": {
"profile": "Profil", "profile": "Profil",
"show_profile": "Profil ansehen", "show_profile": "Profil ansehen",

View File

@ -34,6 +34,9 @@
"jump_to": "Jump to" "jump_to": "Jump to"
} }
}, },
"global_header": {
"add_new_account": "Add new account"
},
"side_menu": { "side_menu": {
"profile": "Profile", "profile": "Profile",
"show_profile": "Show profile", "show_profile": "Show profile",

View File

@ -34,6 +34,9 @@
"jump_to": "Aller à" "jump_to": "Aller à"
} }
}, },
"global_header": {
"add_new_account": "Ajouter un nouveau compte"
},
"side_menu": { "side_menu": {
"profile": "Profil", "profile": "Profil",
"show_profile": "Voir le profil", "show_profile": "Voir le profil",

View File

@ -34,6 +34,9 @@
"jump_to": "ジャンプ" "jump_to": "ジャンプ"
} }
}, },
"global_header": {
"add_new_account": "アカウントを追加"
},
"side_menu": { "side_menu": {
"profile": "プロフィール", "profile": "プロフィール",
"show_profile": "プロフィール確認", "show_profile": "プロフィール確認",

View File

@ -34,6 +34,9 @@
"jump_to": "이동하기" "jump_to": "이동하기"
} }
}, },
"global_header": {
"add_new_account": "새 계정 추가"
},
"side_menu": { "side_menu": {
"profile": "프로필", "profile": "프로필",
"show_profile": "프로필 보이기", "show_profile": "프로필 보이기",

View File

@ -34,6 +34,9 @@
"jump_to": "Przejdź do" "jump_to": "Przejdź do"
} }
}, },
"global_header": {
"add_new_account": "Dodaj nowe konto"
},
"side_menu": { "side_menu": {
"profile": "Profil", "profile": "Profil",
"show_profile": "Pokaż profil", "show_profile": "Pokaż profil",

View File

@ -13,7 +13,7 @@
<img v-else :src="account.avatar" class="avatar" :title="account.username + '@' + account.domain" /> <img v-else :src="account.avatar" class="avatar" :title="account.username + '@' + account.domain" />
<span slot="title">{{ account.domain }}</span> <span slot="title">{{ account.domain }}</span>
</el-menu-item> </el-menu-item>
<el-menu-item index="/login" @click="login"> <el-menu-item index="/login" @click="login" :title="$t('global_header.add_new_account')">
<i class="el-icon-plus"></i> <i class="el-icon-plus"></i>
<span slot="new">New</span> <span slot="new">New</span>
</el-menu-item> </el-menu-item>