Browse Source
Merge pull request #310 from Saibamen/more_i18n
Make `Resp. Time (ms)` and `N/A` i18n
pull/311/head
Louis Lam
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
7 additions and
5 deletions
-
src/components/PingChart.vue
-
src/components/Uptime.vue
-
src/languages/en.js
-
src/pages/Details.vue
|
|
@ -85,7 +85,7 @@ export default { |
|
|
|
y: { |
|
|
|
title: { |
|
|
|
display: true, |
|
|
|
text: "Resp. Time (ms)", |
|
|
|
text: this.$t("respTime"), |
|
|
|
}, |
|
|
|
offset: false, |
|
|
|
grid: { |
|
|
|
|
|
@ -22,7 +22,7 @@ export default { |
|
|
|
return Math.round(this.$root.uptimeList[key] * 10000) / 100 + "%"; |
|
|
|
} |
|
|
|
|
|
|
|
return "N/A" |
|
|
|
return this.$t("notAvailableShort") |
|
|
|
}, |
|
|
|
|
|
|
|
color() { |
|
|
|
|
|
@ -106,5 +106,7 @@ export default { |
|
|
|
"Resource Record Type": "Resource Record Type", |
|
|
|
"Last Result": "Last Result", |
|
|
|
"Create your admin account": "Create your admin account", |
|
|
|
"Repeat Password": "Repeat Password" |
|
|
|
"Repeat Password": "Repeat Password", |
|
|
|
respTime: "Resp. Time (ms)", |
|
|
|
notAvailableShort: "N/A" |
|
|
|
} |
|
|
|
|
|
@ -238,7 +238,7 @@ export default { |
|
|
|
return this.lastHeartBeat.ping; |
|
|
|
} |
|
|
|
|
|
|
|
return "N/A" |
|
|
|
return this.$t("notAvailableShort") |
|
|
|
}, |
|
|
|
|
|
|
|
avgPing() { |
|
|
@ -246,7 +246,7 @@ export default { |
|
|
|
return this.$root.avgPingList[this.monitor.id]; |
|
|
|
} |
|
|
|
|
|
|
|
return "N/A" |
|
|
|
return this.$t("notAvailableShort") |
|
|
|
}, |
|
|
|
|
|
|
|
importantHeartBeatList() { |
|
|
|