diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-07-26 13:30:36 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-26 13:30:36 +0900 |
| commit | 056fef70da235383b2fe6f776d1ac6cddffef23b (patch) | |
| tree | f7a34ce64fd8e87bebe8812a5a24f63d0cc6c5fa /src/client/components/deck/column.vue | |
| parent | :art: (diff) | |
| download | misskey-056fef70da235383b2fe6f776d1ac6cddffef23b.tar.gz misskey-056fef70da235383b2fe6f776d1ac6cddffef23b.tar.bz2 misskey-056fef70da235383b2fe6f776d1ac6cddffef23b.zip | |
:v: (#6567)
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'src/client/components/deck/column.vue')
| -rw-r--r-- | src/client/components/deck/column.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/components/deck/column.vue b/src/client/components/deck/column.vue index f7620e5749..61b7ac9c69 100644 --- a/src/client/components/deck/column.vue +++ b/src/client/components/deck/column.vue @@ -150,37 +150,37 @@ export default Vue.extend({ } }, null, { icon: faArrowLeft, - text: this.$t('swap-left'), + text: this.$t('_deck.swapLeft'), action: () => { this.$store.commit('deviceUser/swapLeftDeckColumn', this.column.id); } }, { icon: faArrowRight, - text: this.$t('swap-right'), + text: this.$t('_deck.swapRight'), action: () => { this.$store.commit('deviceUser/swapRightDeckColumn', this.column.id); } }, this.isStacked ? { icon: faArrowUp, - text: this.$t('swap-up'), + text: this.$t('_deck.swapUp'), action: () => { this.$store.commit('deviceUser/swapUpDeckColumn', this.column.id); } } : undefined, this.isStacked ? { icon: faArrowDown, - text: this.$t('swap-down'), + text: this.$t('_deck.swapDown'), action: () => { this.$store.commit('deviceUser/swapDownDeckColumn', this.column.id); } } : undefined, null, { icon: faWindowRestore, - text: this.$t('stack-left'), + text: this.$t('_deck.stackLeft'), action: () => { this.$store.commit('deviceUser/stackLeftDeckColumn', this.column.id); } }, this.isStacked ? { icon: faWindowMaximize, - text: this.$t('pop-right'), + text: this.$t('_deck.popRight'), action: () => { this.$store.commit('deviceUser/popRightDeckColumn', this.column.id); } |