translate to Traditional Chinese (Hong Kong)

This commit is contained in:
LouisLam
2021-08-24 18:26:44 +08:00
parent dd4c00eed3
commit 28a51d806b
15 changed files with 226 additions and 135 deletions

View File

@@ -27,18 +27,18 @@ export default {
text() {
if (this.status === 0) {
return "Down"
return this.$t("Down");
}
if (this.status === 1) {
return "Up"
return this.$t("Up");
}
if (this.status === 2) {
return "Pending"
return this.$t("Pending");
}
return "Unknown"
return this.$t("Unknown");
},
},
}