diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-12-26 10:47:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-12-26 10:47:36 +0900 |
| commit | 5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8 (patch) | |
| tree | 18f6338f1d5935c401298515d4e400d5a2306301 /src/client/pages/instance/queue.vue | |
| parent | wip (diff) | |
| download | sharkey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.tar.gz sharkey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.tar.bz2 sharkey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.zip | |
wip
Diffstat (limited to 'src/client/pages/instance/queue.vue')
| -rw-r--r-- | src/client/pages/instance/queue.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/pages/instance/queue.vue b/src/client/pages/instance/queue.vue index e824e8ae28..b8ad875683 100644 --- a/src/client/pages/instance/queue.vue +++ b/src/client/pages/instance/queue.vue @@ -8,7 +8,7 @@ </XQueue> <section class="_section"> <div class="_content"> - <MkButton @click="clear()"><Fa :icon="faTrashAlt"/> {{ $t('clearQueue') }}</MkButton> + <MkButton @click="clear()"><Fa :icon="faTrashAlt"/> {{ $ts.clearQueue }}</MkButton> </div> </section> </div> @@ -31,7 +31,7 @@ export default defineComponent({ data() { return { INFO: { - title: this.$t('jobQueue'), + title: this.$ts.jobQueue, icon: faExchangeAlt, }, connection: os.stream.useSharedConnection('queueStats'), @@ -56,8 +56,8 @@ export default defineComponent({ clear() { os.dialog({ type: 'warning', - title: this.$t('clearQueueConfirmTitle'), - text: this.$t('clearQueueConfirmText'), + title: this.$ts.clearQueueConfirmTitle, + text: this.$ts.clearQueueConfirmText, showCancelButton: true }).then(({ canceled }) => { if (canceled) return; |