This commit is contained in:
2025-08-27 18:30:43 +08:00
parent 9941ba41d6
commit 9816bf152a
4 changed files with 65 additions and 52 deletions

View File

@@ -114,7 +114,7 @@ export default {
done()
},
toReboot () {
this.$confirm('是否确定关机重启?', this.$t('Prompt'), {
this.$confirm(this.$t('Aresureshutrestart'), this.$t('Prompt'), {
confirmButtonText: this.$t('Confirm'),
cancelButtonText: this.$t('Cancel'),
type: 'warning'
@@ -123,7 +123,7 @@ export default {
}).catch(() => {
this.$message({
type: 'info',
message: '已取消关机重启'
message: this.$t('shutrestartcancel')
})
})
},
@@ -152,7 +152,7 @@ export default {
a.click()
},
synchronizedMapConfirm () {
this.$confirm('是否确定同步地图?', this.$t('Prompt'), {
this.$confirm(this.$t('Aresuremap'), this.$t('Prompt'), {
confirmButtonText: this.$t('Confirm'),
cancelButtonText: this.$t('Cancel'),
type: 'warning'
@@ -161,7 +161,7 @@ export default {
}).catch(() => {
this.$message({
type: 'info',
message: '已取消同步地图'
message: this.$t('Mapbeencancel')
})
})
},