Add title on header menu
This commit is contained in:
parent
f453c7e43c
commit
7f2f5557b4
|
@ -60,7 +60,9 @@
|
|||
"title": "Filter",
|
||||
"placeholder": "Mit regulären Ausdrücken filtern",
|
||||
"apply": "Übernehmen"
|
||||
}
|
||||
},
|
||||
"new_toot": "Toot",
|
||||
"reload": "Neu laden"
|
||||
},
|
||||
"preferences": {
|
||||
"title": "Einstellungen",
|
||||
|
|
|
@ -60,7 +60,9 @@
|
|||
"title": "Filter",
|
||||
"placeholder": "Filter out by regular expressions",
|
||||
"apply": "Apply"
|
||||
}
|
||||
},
|
||||
"new_toot": "Toot",
|
||||
"reload": "Reload"
|
||||
},
|
||||
"preferences": {
|
||||
"title": "Preferences",
|
||||
|
@ -147,7 +149,11 @@
|
|||
"open_in_browser": "Open in Browser",
|
||||
"copy_link_to_toot": "Copy Link to Toot",
|
||||
"delete": "Delete",
|
||||
"via": "via {{application}}"
|
||||
"via": "via {{application}}",
|
||||
"reply": "Reply",
|
||||
"reblog": "Reblog",
|
||||
"fav": "Favourite",
|
||||
"detail": "Toot detail"
|
||||
}
|
||||
},
|
||||
"side_bar": {
|
||||
|
|
|
@ -60,7 +60,9 @@
|
|||
"title": "Filtrer",
|
||||
"placeholder": "Filtrer par une expression régulière",
|
||||
"apply": "Appliquer"
|
||||
}
|
||||
},
|
||||
"new_toot": "Pouet",
|
||||
"reload": "Recharger"
|
||||
},
|
||||
"preferences": {
|
||||
"title": "Préférences",
|
||||
|
|
|
@ -60,7 +60,9 @@
|
|||
"title": "フィルター",
|
||||
"placeholder": "正規表現でフィルター",
|
||||
"apply": "適用"
|
||||
}
|
||||
},
|
||||
"new_toot": "トゥート",
|
||||
"reload": "再読み込み"
|
||||
},
|
||||
"preferences": {
|
||||
"title": "設定",
|
||||
|
|
|
@ -60,7 +60,9 @@
|
|||
"title": "필터",
|
||||
"placeholder": "정규식 필터링",
|
||||
"apply": "적용"
|
||||
}
|
||||
},
|
||||
"new_toot": "툿",
|
||||
"reload": "다시로드"
|
||||
},
|
||||
"preferences": {
|
||||
"title": "설정",
|
||||
|
|
|
@ -59,7 +59,9 @@
|
|||
"title": "Filtruj",
|
||||
"placeholder": "Filtruj z użyciem wyrażeń regularnych",
|
||||
"apply": "Zastosuj"
|
||||
}
|
||||
},
|
||||
"new_toot": "Wpisy",
|
||||
"reload": "Przeładować"
|
||||
},
|
||||
"preferences": {
|
||||
"title": "Preferencje",
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
<div id="header_menu">
|
||||
<div class="channel">{{ title }}</div>
|
||||
<div class="tools">
|
||||
<el-button type="text" class="action" @click="openNewTootModal">
|
||||
<el-button type="text" class="action" @click="openNewTootModal" :title="$t('header_menu.new_toot')">
|
||||
<icon name="regular/edit"></icon>
|
||||
</el-button>
|
||||
<el-button v-show="reloadable()" type="text" class="action" @click="reload">
|
||||
<el-button v-show="reloadable()" type="text" class="action" @click="reload" :title="$t('header_menu.reload')">
|
||||
<icon name="sync-alt"></icon>
|
||||
</el-button>
|
||||
<el-popover
|
||||
|
@ -24,7 +24,7 @@
|
|||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<el-button v-show="filterable()" slot="reference" type="text" class="action">
|
||||
<el-button v-show="filterable()" slot="reference" type="text" class="action" :title="$t('header_menu.filter.title')">
|
||||
<icon name="sliders-h"></icon>
|
||||
</el-button>
|
||||
</el-popover>
|
||||
|
|
Loading…
Reference in New Issue