From c7b5350e998cf805b792bbf3559e6e571786344c Mon Sep 17 00:00:00 2001 From: Alex Karpov Date: Tue, 6 Aug 2024 18:18:54 +0300 Subject: [PATCH] NAS-129364 / 24.10 / "There are unapplied network interface changes" window is displayed incorrectly (#10396) * NAS-129364: "There are unapplied network interface changes" window is displayed incorrectly * NAS-129364: PR Update --- .../helptext/network/interfaces/interfaces-list.ts | 4 ++++ .../global-search/global-search.component.ts | 2 +- src/app/pages/network/network.component.ts | 12 ++++++++++-- src/assets/i18n/af.json | 2 ++ src/assets/i18n/ar.json | 2 ++ src/assets/i18n/ast.json | 2 ++ src/assets/i18n/az.json | 2 ++ src/assets/i18n/be.json | 2 ++ src/assets/i18n/bg.json | 2 ++ src/assets/i18n/bn.json | 2 ++ src/assets/i18n/br.json | 2 ++ src/assets/i18n/bs.json | 2 ++ src/assets/i18n/ca.json | 2 ++ src/assets/i18n/cs.json | 2 ++ src/assets/i18n/cy.json | 2 ++ src/assets/i18n/da.json | 2 ++ src/assets/i18n/de.json | 2 ++ src/assets/i18n/dsb.json | 2 ++ src/assets/i18n/el.json | 2 ++ src/assets/i18n/en-au.json | 2 ++ src/assets/i18n/en-gb.json | 2 ++ src/assets/i18n/en.json | 2 ++ src/assets/i18n/eo.json | 2 ++ src/assets/i18n/es-ar.json | 2 ++ src/assets/i18n/es-co.json | 2 ++ src/assets/i18n/es-mx.json | 2 ++ src/assets/i18n/es-ni.json | 2 ++ src/assets/i18n/es-ve.json | 2 ++ src/assets/i18n/es.json | 2 ++ src/assets/i18n/et.json | 2 ++ src/assets/i18n/eu.json | 2 ++ src/assets/i18n/fa.json | 2 ++ src/assets/i18n/fi.json | 2 ++ src/assets/i18n/fr.json | 2 ++ src/assets/i18n/fy.json | 2 ++ src/assets/i18n/ga.json | 2 ++ src/assets/i18n/gd.json | 2 ++ src/assets/i18n/gl.json | 2 ++ src/assets/i18n/he.json | 2 ++ src/assets/i18n/hi.json | 2 ++ src/assets/i18n/hr.json | 2 ++ src/assets/i18n/hsb.json | 2 ++ src/assets/i18n/hu.json | 2 ++ src/assets/i18n/ia.json | 2 ++ src/assets/i18n/id.json | 2 ++ src/assets/i18n/io.json | 2 ++ src/assets/i18n/is.json | 2 ++ src/assets/i18n/it.json | 2 ++ src/assets/i18n/ja.json | 2 ++ src/assets/i18n/ka.json | 2 ++ src/assets/i18n/kk.json | 2 ++ src/assets/i18n/km.json | 2 ++ src/assets/i18n/kn.json | 2 ++ src/assets/i18n/ko.json | 2 ++ src/assets/i18n/lb.json | 2 ++ src/assets/i18n/lt.json | 2 ++ src/assets/i18n/lv.json | 2 ++ src/assets/i18n/mk.json | 2 ++ src/assets/i18n/ml.json | 2 ++ src/assets/i18n/mn.json | 2 ++ src/assets/i18n/mr.json | 2 ++ src/assets/i18n/my.json | 2 ++ src/assets/i18n/nb.json | 2 ++ src/assets/i18n/ne.json | 2 ++ src/assets/i18n/nl.json | 2 ++ src/assets/i18n/nn.json | 2 ++ src/assets/i18n/os.json | 2 ++ src/assets/i18n/pa.json | 2 ++ src/assets/i18n/pl.json | 2 ++ src/assets/i18n/pt-br.json | 2 ++ src/assets/i18n/pt.json | 2 ++ src/assets/i18n/ro.json | 2 ++ src/assets/i18n/ru.json | 2 ++ src/assets/i18n/sk.json | 2 ++ src/assets/i18n/sl.json | 2 ++ src/assets/i18n/sq.json | 2 ++ src/assets/i18n/sr-latn.json | 2 ++ src/assets/i18n/sr.json | 2 ++ src/assets/i18n/strings.json | 2 ++ src/assets/i18n/sv.json | 2 ++ src/assets/i18n/sw.json | 2 ++ src/assets/i18n/ta.json | 2 ++ src/assets/i18n/te.json | 2 ++ src/assets/i18n/th.json | 2 ++ src/assets/i18n/tr.json | 2 ++ src/assets/i18n/tt.json | 2 ++ src/assets/i18n/udm.json | 2 ++ src/assets/i18n/uk.json | 2 ++ src/assets/i18n/vi.json | 2 ++ src/assets/i18n/zh-hans.json | 2 ++ src/assets/i18n/zh-hant.json | 2 ++ 91 files changed, 191 insertions(+), 3 deletions(-) diff --git a/src/app/helptext/network/interfaces/interfaces-list.ts b/src/app/helptext/network/interfaces/interfaces-list.ts index 08289eac292..8734d1d55f4 100644 --- a/src/app/helptext/network/interfaces/interfaces-list.ts +++ b/src/app/helptext/network/interfaces/interfaces-list.ts @@ -22,6 +22,10 @@ export const helptextInterfaces = { rollback_changes_title: T('Revert Network Interface Changes'), rollback_changes_warning: T('Revert interface changes? All changes that are being tested will be lost.'), changes_rolled_back: T('Interface changes reverted.'), + network_reconnection_issue: T('Network Reconnection Issue'), + network_reconnection_issue_text: T('We encountered an issue while applying the new network changes. \ + Unfortunately, we were unable to reconnect to the system after the changes were implemented. \ + As a result, we have restored the previous network configuration to ensure continued connectivity.'), services_restarted: { title: T('Attention'), diff --git a/src/app/modules/global-search/components/global-search/global-search.component.ts b/src/app/modules/global-search/components/global-search/global-search.component.ts index 60d6967186a..f74e2f0c9be 100644 --- a/src/app/modules/global-search/components/global-search/global-search.component.ts +++ b/src/app/modules/global-search/components/global-search/global-search.component.ts @@ -216,7 +216,7 @@ export class GlobalSearchComponent implements OnInit, AfterViewInit, OnDestroy { private handleFocusOut(event: FocusEvent): void { const relatedTarget = event.relatedTarget as HTMLElement; - if (!relatedTarget || !this.searchBoxWrapper.nativeElement.contains(relatedTarget)) { + if (relatedTarget && !this.searchBoxWrapper.nativeElement.contains(relatedTarget)) { this.detachOverlay(); } } diff --git a/src/app/pages/network/network.component.ts b/src/app/pages/network/network.component.ts index a11112fbf8e..4e12306665a 100644 --- a/src/app/pages/network/network.component.ts +++ b/src/app/pages/network/network.component.ts @@ -165,7 +165,7 @@ export class NetworkComponent implements OnInit { ); } - private handleWaitingCheckIn(seconds: number): void { + private handleWaitingCheckIn(seconds: number, isAfterInterfaceCommit = false): void { if (seconds !== null) { if (seconds > 0 && this.checkinRemaining === null) { this.checkinRemaining = Math.round(seconds); @@ -189,6 +189,14 @@ export class NetworkComponent implements OnInit { if (this.checkinInterval) { clearInterval(this.checkinInterval); } + // Inform user that we have restored the previous network configuration to ensure continued connectivity. + if (isAfterInterfaceCommit) { + this.hasPendingChanges = false; + this.dialogService.warn( + this.translate.instant(this.helptext.network_reconnection_issue), + this.translate.instant(this.helptext.network_reconnection_issue_text), + ); + } } } @@ -243,7 +251,7 @@ export class NetworkComponent implements OnInit { .subscribe((checkInSeconds) => { this.store$.dispatch(networkInterfacesChanged({ commit: true, checkIn: false })); this.interfacesStore.loadInterfaces(); - this.handleWaitingCheckIn(checkInSeconds); + this.handleWaitingCheckIn(checkInSeconds, true); this.cdr.markForCheck(); }); }); diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index f64f0a4ece0..2ea74755112 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -2454,6 +2454,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4436,6 +4437,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 4a85826e380..f5d7a570664 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1916,6 +1916,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Stats": "", "Network Timeout Before Initiating Failover": "", "Network Usage": "", @@ -3507,6 +3508,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 2f34afc242a..96a2f16668a 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -1427,6 +1427,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Settings": "", "Network Stats": "", "Network Traffic": "", @@ -2702,6 +2703,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index a5d91ff0ecd..40fc611b4fc 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -2568,6 +2568,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4625,6 +4626,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index a83e561954f..229b3569216 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -646,6 +646,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Settings": "", "Network Stats": "", "Network Traffic": "", @@ -1255,6 +1256,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "Weak Ciphers": "", "Web Interface": "", "Web Interface Address": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 8b42e1569fa..7e69f5d269e 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -4,8 +4,10 @@ "Languages other than English are provided by the community and may be incomplete. Learn how to contribute.": "", "Machine Time: {machineTime} \n Browser Time: {browserTime}": "", "Manage Catalog": "", + "Network Reconnection Issue": "", "Pool Usage": "", "Support License": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "{ n, plural, one {# snapshot} other {# snapshots} }": "", "{coreCount, plural, one {# core} other {# cores} }": "", "{n, plural, =0 {No Errors} one {# Error} other {# Errors}}": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index c0d3ee60bcb..174c500292e 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -2529,6 +2529,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4658,6 +4659,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 178a6a3558d..78bb780c5b4 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -2406,6 +2406,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4352,6 +4353,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index f56ec81744d..3742d5d4713 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -2293,6 +2293,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4422,6 +4423,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 3909b1daeaf..b36c0246686 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -2715,6 +2715,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4841,6 +4842,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index c7227514cb0..e07bfb16043 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -633,6 +633,7 @@ "Network Configuration": "", "Network I/O": "", "Network Interface Card": "", + "Network Reconnection Issue": "", "Network Settings": "", "Network Stats": "", "Network Traffic": "", @@ -1158,6 +1159,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 2471499cd3c..ee335d7252b 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -2667,6 +2667,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4772,6 +4773,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index c604bf4cd40..cac772dd013 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -2661,6 +2661,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4790,6 +4791,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 6db05750866..3cbebe89e95 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -1498,6 +1498,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -3005,6 +3006,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 98c68833518..16a44a45413 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -1640,6 +1640,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Settings": "", "Network Stats": "", "Network Traffic": "", @@ -3123,6 +3124,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index e1815bc71f5..5bc2f59aa25 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -983,6 +983,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Settings": "", "Network Stats": "", "Network Traffic": "", @@ -1772,6 +1773,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 776e5403276..7d0757ad550 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -2721,6 +2721,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4850,6 +4851,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 4d3074fc5f1..cb8b1bc64b0 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -665,6 +665,7 @@ "Network Configuration": "", "Network I/O": "", "Network Interface Card": "", + "Network Reconnection Issue": "", "Network Settings": "", "Network Stats": "", "Network Traffic": "", @@ -1216,6 +1217,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 6d531f854d0..ebb0ed47ba0 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -2250,6 +2250,7 @@ "Network Interface Card": "", "Network Interface Read": "", "Network Interface Write": "", + "Network Reconnection Issue": "", "Network Reports": "", "Network Settings": "", "Network Stats": "", @@ -4082,6 +4083,7 @@ "Warning: {n} of {total} snapshots could not be deleted.": "", "Warnings": "", "Watch List": "", + "We encountered an issue while applying the new network changes. Unfortunately, we were unable to reconnect to the system after the changes were implemented. As a result, we have restored the previous network configuration to ensure continued connectivity.": "", "We've generated a Netdata password and attempted to automatically log you in in a new tab.": "", "Weak Ciphers": "", "Web Interface": "",