mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 16:54:04 +00:00
Merge pull request #3249 from CommanderStorm/translation_bugfix
Chore: Added additional translation keys
This commit is contained in:
commit
8884c2108b
4 changed files with 10 additions and 2 deletions
|
@ -17,6 +17,8 @@
|
||||||
"Down": "Inaktiv",
|
"Down": "Inaktiv",
|
||||||
"Pending": "Ausstehend",
|
"Pending": "Ausstehend",
|
||||||
"Unknown": "Unbekannt",
|
"Unknown": "Unbekannt",
|
||||||
|
"Cannot connect to the socket server": "Es kann keine Verbindung zum Socket-Server hergestellt werden",
|
||||||
|
"Reconnecting...": "Die Verbindung wird wiederhergestellt...",
|
||||||
"Pause": "Pausieren",
|
"Pause": "Pausieren",
|
||||||
"pauseDashboardHome": "Pausiert",
|
"pauseDashboardHome": "Pausiert",
|
||||||
"Name": "Name",
|
"Name": "Name",
|
||||||
|
|
|
@ -17,6 +17,8 @@
|
||||||
"Down": "Inaktiv",
|
"Down": "Inaktiv",
|
||||||
"Pending": "Ausstehend",
|
"Pending": "Ausstehend",
|
||||||
"Unknown": "Unbekannt",
|
"Unknown": "Unbekannt",
|
||||||
|
"Cannot connect to the socket server": "Es kann keine Verbindung zum Socket-Server hergestellt werden",
|
||||||
|
"Reconnecting...": "Die Verbindung wird wiederhergestellt...",
|
||||||
"Pause": "Pausieren",
|
"Pause": "Pausieren",
|
||||||
"pauseDashboardHome": "Pausiert",
|
"pauseDashboardHome": "Pausiert",
|
||||||
"Name": "Name",
|
"Name": "Name",
|
||||||
|
@ -627,6 +629,7 @@
|
||||||
"lastDay4": "4. letzter Tag im Monat",
|
"lastDay4": "4. letzter Tag im Monat",
|
||||||
"No Maintenance": "Keine Wartung",
|
"No Maintenance": "Keine Wartung",
|
||||||
"Schedule Maintenance": "Wartung planen",
|
"Schedule Maintenance": "Wartung planen",
|
||||||
|
"Edit Maintenance": "Wartung bearbeiten",
|
||||||
"pauseMaintenanceMsg": "Möchtest du wirklich pausieren?",
|
"pauseMaintenanceMsg": "Möchtest du wirklich pausieren?",
|
||||||
"maintenanceStatus-under-maintenance": "Unter Wartung",
|
"maintenanceStatus-under-maintenance": "Unter Wartung",
|
||||||
"maintenanceStatus-inactive": "Inaktiv",
|
"maintenanceStatus-inactive": "Inaktiv",
|
||||||
|
|
|
@ -22,6 +22,8 @@
|
||||||
"statusMaintenance": "Maintenance",
|
"statusMaintenance": "Maintenance",
|
||||||
"Maintenance": "Maintenance",
|
"Maintenance": "Maintenance",
|
||||||
"Unknown": "Unknown",
|
"Unknown": "Unknown",
|
||||||
|
"Cannot connect to the socket server": "Cannot connect to the socket server",
|
||||||
|
"Reconnecting...": "Reconnecting...",
|
||||||
"General Monitor Type": "General Monitor Type",
|
"General Monitor Type": "General Monitor Type",
|
||||||
"Passive Monitor Type": "Passive Monitor Type",
|
"Passive Monitor Type": "Passive Monitor Type",
|
||||||
"Specific Monitor Type": "Specific Monitor Type",
|
"Specific Monitor Type": "Specific Monitor Type",
|
||||||
|
@ -437,6 +439,7 @@
|
||||||
"Maintenance Time Window of a Day": "Maintenance Time Window of a Day",
|
"Maintenance Time Window of a Day": "Maintenance Time Window of a Day",
|
||||||
"Effective Date Range": "Effective Date Range (Optional)",
|
"Effective Date Range": "Effective Date Range (Optional)",
|
||||||
"Schedule Maintenance": "Schedule Maintenance",
|
"Schedule Maintenance": "Schedule Maintenance",
|
||||||
|
"Edit Maintenance": "Edit Maintenance",
|
||||||
"Date and Time": "Date and Time",
|
"Date and Time": "Date and Time",
|
||||||
"DateTime Range": "DateTime Range",
|
"DateTime Range": "DateTime Range",
|
||||||
"loadingError": "Cannot fetch the data, please try again later.",
|
"loadingError": "Cannot fetch the data, please try again later.",
|
||||||
|
|
|
@ -47,7 +47,7 @@ export default {
|
||||||
statusPageListLoaded: false,
|
statusPageListLoaded: false,
|
||||||
statusPageList: [],
|
statusPageList: [],
|
||||||
proxyList: [],
|
proxyList: [],
|
||||||
connectionErrorMsg: "Cannot connect to the socket server. Reconnecting...",
|
connectionErrorMsg: `${this.$t("Cannot connect to the socket server.")} ${this.$t("Reconnecting...")}`,
|
||||||
showReverseProxyGuide: true,
|
showReverseProxyGuide: true,
|
||||||
cloudflared: {
|
cloudflared: {
|
||||||
cloudflareTunnelToken: "",
|
cloudflareTunnelToken: "",
|
||||||
|
@ -228,7 +228,7 @@ export default {
|
||||||
|
|
||||||
socket.on("connect_error", (err) => {
|
socket.on("connect_error", (err) => {
|
||||||
console.error(`Failed to connect to the backend. Socket.io connect_error: ${err.message}`);
|
console.error(`Failed to connect to the backend. Socket.io connect_error: ${err.message}`);
|
||||||
this.connectionErrorMsg = `Cannot connect to the socket server. [${err}] Reconnecting...`;
|
this.connectionErrorMsg = `${this.$t("Cannot connect to the socket server.")} [${err}] ${this.$t("Reconnecting...")}`;
|
||||||
this.showReverseProxyGuide = true;
|
this.showReverseProxyGuide = true;
|
||||||
this.socket.connected = false;
|
this.socket.connected = false;
|
||||||
this.socket.firstConnect = false;
|
this.socket.firstConnect = false;
|
||||||
|
|
Loading…
Reference in a new issue