diff --git a/src/views/reviewers/components/GcpCertificate.vue b/src/views/reviewers/components/GcpCertificate.vue index a841c2fd..4867b0a2 100644 --- a/src/views/reviewers/components/GcpCertificate.vue +++ b/src/views/reviewers/components/GcpCertificate.vue @@ -76,7 +76,7 @@ export default { methods: { handleSaveGCP() { if (this.GCP && this.GCPID === '') { - this.$message.info('Please upload the GCP certificate') + this.$message.info(this.$t('reviewers:GCPCertificate:message:uploadValid')) return } @@ -91,7 +91,7 @@ export default { this.fileList = [] } this.saveBtnLoading = false - this.$message.success('Saved successfully') + this.$message.success(this.$t('common:message:savedSuccessfully')) }).catch(() => { this.saveBtnLoading = false })