Skip to content

Commit

Permalink
refactor(i18n): fix spelling error (#7476)
Browse files Browse the repository at this point in the history
  • Loading branch information
q4speed authored Dec 20, 2024
1 parent 50c0176 commit 2751c37
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const message = {
reset: 'Reset',
restart: 'Restart',
conn: 'Connect',
disconn: 'Disconnect',
disconnect: 'Disconnect',
clean: 'Clean',
login: 'Login',
close: 'Close',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/tw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const message = {
reset: '重',
restart: '重',
conn: '連',
disconn: '斷',
disconnect: '斷',
clean: '清',
login: '登',
close: '關',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const message = {
reset: '重',
restart: '重',
conn: '连',
disconn: '断',
disconnect: '断',
clean: '清',
login: '登',
close: '关',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/container/container/terminal/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<el-button v-if="!terminalOpen" @click="initTerm(formRef)">
{{ $t('commons.button.conn') }}
</el-button>
<el-button v-else @click="onClose()">{{ $t('commons.button.disconn') }}</el-button>
<el-button v-else @click="onClose()">{{ $t('commons.button.disconnect') }}</el-button>
<Terminal
style="height: calc(100vh - 302px); margin-top: 18px"
ref="terminalRef"
Expand Down

0 comments on commit 2751c37

Please sign in to comment.