Skip to content

Commit

Permalink
fix: pipeline history internationalization bug (#3939)
Browse files Browse the repository at this point in the history
  • Loading branch information
hujiahao-hjh authored Nov 1, 2023
1 parent 189c941 commit 282503d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"CPU limit": "CPU limit",
"CPU quota": "CPU quota",
"Cancel": "Cancel",
"Canceling": "Canceling",
"Certificate": "Certificate",
"Channel name": "Channel name",
"Channel type": "Channel type",
Expand Down
1 change: 1 addition & 0 deletions locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"CPU limit": "CPU 限制",
"CPU quota": "CPU 配额",
"Cancel": "取消",
"Canceling": "取消中",
"Certificate": "证书",
"Channel name": "渠道名称",
"Channel type": "渠道类型",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const ciStatusMap = {
status: 'warning',
},
Canceling: {
text: '取消中',
text: i18n.t('Canceling'),
clolor: 'blue',
status: 'processing',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const ciStatusMap = {
status: 'warning',
},
Canceling: {
text: '取消中',
text: i18n.t('Canceling'),
clolor: 'blue',
status: 'processing',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const ciStatusMap = {
status: 'warning',
},
Canceling: {
text: '取消中',
text: i18n.t('Canceling'),
clolor: 'blue',
status: 'processing',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const ciStatusMap = {
status: 'warning',
},
Canceling: {
text: '取消中',
text: i18n.t('Canceling'),
clolor: 'blue',
status: 'processing',
},
Expand Down

0 comments on commit 282503d

Please sign in to comment.