From 056fef70da235383b2fe6f776d1ac6cddffef23b Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 26 Jul 2020 13:30:36 +0900 Subject: :v: (#6567) Co-authored-by: syuilo --- src/client/components/deck/column.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/client/components/deck/column.vue') 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); } -- cgit v1.2.3-freya