diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-05-31 11:35:43 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-05-31 11:40:23 +0200 |
| commit | c1a6d03bb4c5f739c388e4b57836e8ebac27a204 (patch) | |
| tree | 8b0555ecd1b05dc28d2e33cee8131f32bfcb2326 /client | |
| parent | 92eea4ae9f1d47f2ac1ba7d70e00032ffb9f3a12 (diff) | |
Client: Move a lot of errors to internal only
Diffstat (limited to 'client')
| -rw-r--r-- | client/client.go | 44 | ||||
| -rw-r--r-- | client/discovery.go | 4 | ||||
| -rw-r--r-- | client/locales/da/messages.gotext.json | 190 | ||||
| -rw-r--r-- | client/locales/de/messages.gotext.json | 204 | ||||
| -rw-r--r-- | client/locales/en/messages.gotext.json | 238 | ||||
| -rw-r--r-- | client/locales/es/messages.gotext.json | 208 | ||||
| -rw-r--r-- | client/locales/fr/messages.gotext.json | 192 | ||||
| -rw-r--r-- | client/locales/it/messages.gotext.json | 190 | ||||
| -rw-r--r-- | client/locales/nl/messages.gotext.json | 208 | ||||
| -rw-r--r-- | client/locales/sl/messages.gotext.json | 194 | ||||
| -rw-r--r-- | client/locales/uk/messages.gotext.json | 190 | ||||
| -rw-r--r-- | client/proxy.go | 2 | ||||
| -rw-r--r-- | client/zgotext.go | 338 |
13 files changed, 299 insertions, 1903 deletions
diff --git a/client/client.go b/client/client.go index 6a4e665..8cf2bef 100644 --- a/client/client.go +++ b/client/client.go @@ -133,7 +133,7 @@ func New(name string, version string, directory string, stateCallback func(FSMSt } if err = log.Logger.Init(lvl, directory); err != nil { - return nil, i18nerr.Wrapf(err, "The log file with directory: '%s' failed to initialize", directory) + return nil, i18nerr.WrapInternalf(err, "The log file with directory: '%s' failed to initialize", directory) } // set client name @@ -257,7 +257,7 @@ func (c *Client) Deregister() { func (c *Client) ExpiryTimes() (*srvtypes.Expiry, error) { srv, err := c.Servers.CurrentServer() if err != nil { - return nil, i18nerr.Wrap(err, "The current server was not found when getting the VPN expiration date") + return nil, i18nerr.WrapInternal(err, "The current server was not found when getting the VPN expiration date") } return &srvtypes.Expiry{ StartTime: srv.LastAuthorizeTime.Unix(), @@ -339,20 +339,20 @@ func (c *Client) AddServer(ck *cookie.Cookie, identifier string, _type srvtypes. case srvtypes.TypeInstituteAccess: err = c.Servers.AddInstitute(ck.Context(), c.cfg.Discovery(), identifier, ot) if err != nil { - return i18nerr.Wrapf(err, "The institute access server with URL: '%s' could not be added", identifier) + return i18nerr.Wrapf(err, "Failed to add an institute access server with URL: '%s'", identifier) } case srvtypes.TypeSecureInternet: err = c.Servers.AddSecure(ck.Context(), c.cfg.Discovery(), identifier, ot) if err != nil { - return i18nerr.Wrapf(err, "The secure internet server with organisation ID: '%s' could not be added", identifier) + return i18nerr.Wrapf(err, "Failed to add a secure internet server with organisation ID: '%s'", identifier) } case srvtypes.TypeCustom: err = c.Servers.AddCustom(ck.Context(), identifier, ot) if err != nil { - return i18nerr.Wrapf(err, "The custom server with URL: '%s' could not be added", identifier) + return i18nerr.Wrapf(err, "Failed to add a server with URL: '%s'", identifier) } default: - return i18nerr.NewInternalf("Server type: '%v' is not valid to be added", _type) + return i18nerr.NewInternalf("Failed to add server type: '%v'", _type) } return nil } @@ -365,7 +365,7 @@ func (c *Client) convertIdentifier(identifier string, t srvtypes.Type) (string, // Convert to an identifier, this also converts the scheme to HTTPS identifier, err := http.EnsureValidURL(identifier, true) if err != nil { - return "", i18nerr.Wrapf(err, "input: '%s' is not a valid URL", identifier) + return "", i18nerr.Wrapf(err, "The input: '%s' is not a valid URL", identifier) } return identifier, nil } @@ -389,7 +389,7 @@ func (c *Client) GetConfig(ck *cookie.Cookie, identifier string, _type srvtypes. identifier, err = c.convertIdentifier(identifier, _type) if err != nil { - return nil, i18nerr.Wrapf(err, "Server identifier: '%s', is not valid when getting a VPN configuration", identifier) + return nil, err } err = c.GettingConfig() if err != nil { @@ -426,12 +426,12 @@ func (c *Client) GetConfig(ck *cookie.Cookie, identifier string, _type srvtypes. } return nil, i18nerr.Wrapf(err, "The client tried to autoconnect to the VPN server: '%s', but the operation failed to complete", identifier) } - return nil, i18nerr.Wrapf(err, "Server: '%s' could not be connected to", identifier) + return nil, i18nerr.Wrapf(err, "Failed to connect to server: '%s'", identifier) } cfg, err = c.Servers.ConnectWithCallbacks(ck.Context(), srv, pTCP) if err != nil { - return nil, i18nerr.Wrapf(err, "No VPN configuration for server: '%s' could be obtained", identifier) + return nil, i18nerr.Wrapf(err, "Failed to obtain a VPN configuration for server: '%s'", identifier) } return cfg, nil } @@ -440,11 +440,11 @@ func (c *Client) GetConfig(ck *cookie.Cookie, identifier string, _type srvtypes. func (c *Client) RemoveServer(identifier string, _type srvtypes.Type) (err error) { identifier, err = c.convertIdentifier(identifier, _type) if err != nil { - return i18nerr.Wrapf(err, "Server identifier: '%s', is not valid when removing the server", identifier) + return err } err = c.Servers.Remove(identifier, _type) if err != nil { - return i18nerr.Wrapf(err, "The server: '%s' could not be removed", identifier) + return i18nerr.WrapInternalf(err, "Failed to remove server: '%s'", identifier) } return nil } @@ -453,7 +453,7 @@ func (c *Client) RemoveServer(identifier string, _type srvtypes.Type) (err error func (c *Client) CurrentServer() (*srvtypes.Current, error) { curr, err := c.Servers.PublicCurrent(c.cfg.Discovery()) if err != nil { - return nil, i18nerr.Wrap(err, "The current server could not be retrieved") + return nil, i18nerr.WrapInternal(err, "The current server could not be retrieved") } return curr, nil } @@ -462,7 +462,7 @@ func (c *Client) CurrentServer() (*srvtypes.Current, error) { func (c *Client) SetProfileID(pID string) error { srv, err := c.Servers.CurrentServer() if err != nil { - return i18nerr.Wrapf(err, "Failed to set the profile ID: '%s'", pID) + return i18nerr.WrapInternalf(err, "Failed to set the profile ID: '%s'", pID) } srv.Profiles.Current = pID return nil @@ -498,19 +498,19 @@ func (c *Client) Cleanup(ck *cookie.Cookie) error { } srv, err := c.Servers.CurrentServer() if err != nil { - return i18nerr.Wrap(err, "The current server was not found when cleaning up the connection") + return i18nerr.WrapInternal(err, "The current server was not found when cleaning up the connection") } tok, err := c.retrieveTokens(srv.Key.ID, srv.Key.T) if err != nil { - return i18nerr.Wrap(err, "No OAuth tokens were found when cleaning up the connection") + return i18nerr.WrapInternal(err, "No OAuth tokens were found when cleaning up the connection") } auth, err := srv.ServerWithCallbacks(ck.Context(), c.cfg.Discovery(), tok, true) if err != nil { - return i18nerr.Wrap(err, "The server was unable to be retrieved when cleaning up the connection") + return i18nerr.WrapInternal(err, "The server was unable to be retrieved when cleaning up the connection") } err = auth.Disconnect(ck.Context()) if err != nil { - return i18nerr.Wrap(err, "Failed to cleanup the VPN connection") + return i18nerr.WrapInternal(err, "Failed to cleanup the VPN connection") } return nil } @@ -524,7 +524,7 @@ func (c *Client) SetSecureLocation(orgID string, countryCode string) error { } srv, err := c.Servers.GetServer(orgID, srvtypes.TypeSecureInternet) if err != nil { - return i18nerr.Wrapf(err, "Failed to get the secure internet server with id: '%s' for setting a location", orgID) + return i18nerr.WrapInternalf(err, "Failed to get the secure internet server with id: '%s' for setting a location", orgID) } srv.CountryCode = countryCode @@ -546,13 +546,13 @@ func (c *Client) RenewSession(ck *cookie.Cookie) error { // getting the current serving with nil tokens means re-authorize srv, err := c.Servers.CurrentServer() if err != nil { - return i18nerr.Wrap(err, "The current server could not be retrieved when renewing the session") + return i18nerr.WrapInternal(err, "The current server could not be retrieved when renewing the session") } // getting a server with no tokens means re-authorize _, err = srv.ServerWithCallbacks(ck.Context(), c.cfg.Discovery(), nil, false) if err != nil { - return i18nerr.Wrap(err, "The server was unable to be retrieved when renewing the session") + return i18nerr.WrapInternal(err, "The server was unable to be retrieved when renewing the session") } return nil } @@ -564,7 +564,7 @@ func (c *Client) StartFailover(ck *cookie.Cookie, gateway string, mtu int, readR // get current profile d, err := f.Start(ck.Context(), gateway, mtu) if err != nil { - return d, i18nerr.Wrapf(err, "Failover failed to complete with gateway: '%s' and MTU: '%d'", gateway, mtu) + return d, i18nerr.WrapInternalf(err, "Failover failed to complete with gateway: '%s' and MTU: '%d'", gateway, mtu) } return d, nil } diff --git a/client/discovery.go b/client/discovery.go index d874c64..5c132e7 100644 --- a/client/discovery.go +++ b/client/discovery.go @@ -26,7 +26,7 @@ func (c *Client) DiscoOrganizations(ck *cookie.Cookie, search string) (*discotyp orgs, err := c.cfg.Discovery().Organizations(ck.Context()) if err != nil { - err = i18nerr.Wrap(err, "An error occurred after getting the discovery files for the list of organizations") + err = i18nerr.Wrap(err, "Failed to obtain the list of organizations") } if orgs == nil { return nil, err @@ -69,7 +69,7 @@ func (c *Client) DiscoServers(ck *cookie.Cookie, search string) (*discotypes.Ser servs, err := c.cfg.Discovery().Servers(ck.Context()) if err != nil { - err = i18nerr.Wrap(err, "An error occurred after getting the discovery files for the list of servers") + err = i18nerr.Wrap(err, "Failed to obtain the list of servers") } if servs == nil { return nil, err diff --git a/client/locales/da/messages.gotext.json b/client/locales/da/messages.gotext.json index ad585f0..a78cfc9 100644 --- a/client/locales/da/messages.gotext.json +++ b/client/locales/da/messages.gotext.json @@ -2,28 +2,8 @@ "language": "da", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -37,8 +17,8 @@ ] }, { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", "translation": "", "placeholders": [ { @@ -52,8 +32,8 @@ ] }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -67,23 +47,8 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", "translation": "", "placeholders": [ { @@ -127,8 +92,8 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -142,8 +107,8 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -157,136 +122,13 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "" - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", "translation": "" }, { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", "translation": "" }, { diff --git a/client/locales/de/messages.gotext.json b/client/locales/de/messages.gotext.json index e64546b..ccf5487 100644 --- a/client/locales/de/messages.gotext.json +++ b/client/locales/de/messages.gotext.json @@ -2,44 +2,9 @@ "language": "de", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "Die Log-Datei im Verzeichnis '{Directory}' konnte nicht initialisiert werden", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "Der momentane Server wurde bei der Abfrage des Verfallsdatums der VPN nicht gefunden" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", - "translation": "Der Institutszugriffserver mit der URL '{Identifier}' konnte nicht hinzugefügt werden", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "translation": "Der sichere Internet-Server mit der Organisations-ID '{Identifier}' konnte nicht hinzugefügt werden", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -52,9 +17,9 @@ ] }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", - "translation": "Der benutzerdefinierte Server mit der URL '{Identifier}' konnte nicht hinzugefügt werden", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -67,9 +32,9 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", - "translation": "Eingabe: '{Identifier}' ist keine valide URL", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -82,9 +47,9 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "translation": "Serveridentifikator '{Identifier}' ist beim Abrufen der VPN-Konfiguration invalid", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -127,8 +92,8 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -142,39 +107,9 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", - "translation": "Es konnte keine VPN-Konfiguration für den Server '{Identifier}' gefunden werden", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "Serveridentifikator '{Identifier}' ist beim Entfernen des Servers invalid", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "Der Server '{Identifier}' konnte nicht entfernt werden", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -187,107 +122,14 @@ ] }, { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "Der momentane Server konnte nicht abgerufen werden" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "Die Profil-ID '{PID}' konnte nicht gesetzt werden", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "Der momentane Server konnte beim Aufräumen der Verbindung nicht gefunden werden" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "Keine OAuth-Tokens wurden beim Aufräumen der Verbindung gefunden" - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "Der Server konnte beim Aufräumen der Verbindung nicht abgerufen werden" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "Die VPN-Verbindung konnte nicht aufgeräumt werden" - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "Es konnte kein sicherer Internetserver mit der ID '{OrgID}' zum Setzen des Ortes abgerufen werden", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "Der momentane Server konnte beim Erneuern der Sitzung nicht abgerufen werden" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "Der Server konnte beim Erneuern der Sitzung nicht abgerufen werden" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "Failover konnte nicht mit Gateway '{Gateway}' und MTU '{Mtu}' abgeschlossen werden", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "Nach dem Abfragen der Discovery-Dateien für die Organisationsliste trat ein Fehler auf" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", - "translation": "Nach dem Abfragen der Discovery-Dateien für die Serverliste trat ein Fehler auf" + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", + "translation": "" }, { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", - "translation": "Die VPN-Proxy brach ab" + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", + "translation": "" }, { "id": "timeout reached for URL: '{URL}' and HTTP method: '{Method}'", diff --git a/client/locales/en/messages.gotext.json b/client/locales/en/messages.gotext.json index cff7351..ce08917 100644 --- a/client/locales/en/messages.gotext.json +++ b/client/locales/en/messages.gotext.json @@ -2,33 +2,9 @@ "language": "en", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "The log file with directory: '{Directory}' failed to initialize", - "translatorComment": "Copied from source.", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ], - "fuzzy": true - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "The current server was not found when getting the VPN expiration date", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", - "translation": "The institute access server with URL: '{Identifier}' could not be added", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", + "translation": "Failed to add an institute access server with URL: '{Identifier}'", "translatorComment": "Copied from source.", "placeholders": [ { @@ -43,9 +19,9 @@ "fuzzy": true }, { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "translation": "The secure internet server with organisation ID: '{Identifier}' could not be added", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "translation": "Failed to add a secure internet server with organisation ID: '{Identifier}'", "translatorComment": "Copied from source.", "placeholders": [ { @@ -60,9 +36,9 @@ "fuzzy": true }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", - "translation": "The custom server with URL: '{Identifier}' could not be added", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", + "translation": "Failed to add a server with URL: '{Identifier}'", "translatorComment": "Copied from source.", "placeholders": [ { @@ -77,26 +53,9 @@ "fuzzy": true }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", - "translation": "input: '{Identifier}' is not a valid URL", - "translatorComment": "Copied from source.", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ], - "fuzzy": true - }, - { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "translation": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", + "translation": "The input: '{Identifier}' is not a valid URL", "translatorComment": "Copied from source.", "placeholders": [ { @@ -145,9 +104,9 @@ "fuzzy": true }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", - "translation": "Server: '{Identifier}' could not be connected to", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", + "translation": "Failed to connect to server: '{Identifier}'", "translatorComment": "Copied from source.", "placeholders": [ { @@ -162,9 +121,9 @@ "fuzzy": true }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", - "translation": "No VPN configuration for server: '{Identifier}' could be obtained", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "translation": "Failed to obtain a VPN configuration for server: '{Identifier}'", "translatorComment": "Copied from source.", "placeholders": [ { @@ -179,165 +138,16 @@ "fuzzy": true }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "Server identifier: '{Identifier}', is not valid when removing the server", - "translatorComment": "Copied from source.", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ], - "fuzzy": true - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "The server: '{Identifier}' could not be removed", - "translatorComment": "Copied from source.", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ], - "fuzzy": true - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "The current server could not be retrieved", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "Failed to set the profile ID: '{PID}'", - "translatorComment": "Copied from source.", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ], - "fuzzy": true - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "The current server was not found when cleaning up the connection", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "No OAuth tokens were found when cleaning up the connection", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "The server was unable to be retrieved when cleaning up the connection", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "Failed to cleanup the VPN connection", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translatorComment": "Copied from source.", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ], - "fuzzy": true - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "The current server could not be retrieved when renewing the session", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "The server was unable to be retrieved when renewing the session", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translatorComment": "Copied from source.", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ], - "fuzzy": true - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "An error occurred after getting the discovery files for the list of organizations", - "translatorComment": "Copied from source.", - "fuzzy": true - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", - "translation": "An error occurred after getting the discovery files for the list of servers", + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", + "translation": "Failed to obtain the list of organizations", "translatorComment": "Copied from source.", "fuzzy": true }, { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", - "translation": "The VPN proxy exited", + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", + "translation": "Failed to obtain the list of servers", "translatorComment": "Copied from source.", "fuzzy": true }, diff --git a/client/locales/es/messages.gotext.json b/client/locales/es/messages.gotext.json index 5b90446..f7d0607 100644 --- a/client/locales/es/messages.gotext.json +++ b/client/locales/es/messages.gotext.json @@ -2,29 +2,9 @@ "language": "es", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "El archivo de registro con el directorio: '{Directory}' no se puede inicializar", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "No se ha encontrado el servidor actual al obtener la fecha de caducidad de la VPN" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", - "translation": "El servidor de acceso al instituto con URL '{Identifier}' no ha podido ser añadido", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -37,9 +17,9 @@ ] }, { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "translation": "El servidor seguro de Internet con ID de organización: '{Identifier}' no se ha podido añadir", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -52,9 +32,9 @@ ] }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", - "translation": "El servidor personalizado con URL: '{Identifier}' no ha podido ser añadido", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -67,24 +47,9 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", - "translation": "input: '{Identifier}' no es una URL válida", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "translation": "El identificador del servidor: '{Identifier}', no es válido al obtener una configuración VPN", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -127,9 +92,9 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", - "translation": "Servidor: '{Identifier}' no se ha podido conectar", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -142,9 +107,9 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", - "translation": "No hay configuración VPN para el servidor: '{Identifier}' se ha podido obtener", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -157,137 +122,14 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "El identificador del servidor: '{Identifier}', no es válido al eliminar el servidor", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "El servidor: '{Identifier}' no pudo ser eliminado", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "No se ha podido recuperar el servidor actual" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "Error al establecer el ID del perfil: '{PID}'", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "No se ha encontrado el servidor actual al restablecer la conexión" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "No se han encontrado tokens OAuth al limpiar la conexión" - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "No se ha podido recuperar el servidor al limpiar la conexión" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "Error al limpiar la conexión VPN" - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "Error al obtener el servidor seguro de Internet con id: '{OrgID}' para establecer una ubicación", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "No se ha podido recuperar el servidor actual al renovar la sesión" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "No se ha podido recuperar el servidor al renovar la sesión" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "Error en la conmutación por error con puerta de enlace: '{Gateway}' y MTU: '{Mtu}'", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "Se ha producido un error al obtener los archivos de detección de la lista de las organizaciones" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", - "translation": "Se ha producido un error al obtener los archivos de detección de la lista de servidores" + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", + "translation": "" }, { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", - "translation": "Se ha desconectado del proxy VPN" + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", + "translation": "" }, { "id": "timeout reached for URL: '{URL}' and HTTP method: '{Method}'", @@ -323,4 +165,4 @@ "translation": "Se ha producido un error" } ] -} +}
\ No newline at end of file diff --git a/client/locales/fr/messages.gotext.json b/client/locales/fr/messages.gotext.json index b68ec4f..7b20fe0 100644 --- a/client/locales/fr/messages.gotext.json +++ b/client/locales/fr/messages.gotext.json @@ -2,28 +2,8 @@ "language": "fr", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "Le fichier de registre du répertoire : '{Directory}' n'a pas pu être initialisé", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -37,24 +17,9 @@ ] }, { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "translation": "Le serveur internet sécurisé avec l'ID d'organisation : '{Identifier}' n'a pas pu être ajouté", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", - "translation": "Le serveur personnalisé avec l'URL : '{Identifier}' n'a pas pu être ajouté", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -67,8 +32,8 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -82,8 +47,8 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", "translation": "", "placeholders": [ { @@ -127,8 +92,8 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -142,8 +107,8 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -157,136 +122,13 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", "translation": "" }, { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "" - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "Une erreur est survenue pendant la récupération des fichiers de détection de la liste des organisations" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", - "translation": "Une erreur est survenue pendant la récupération des fichiers de détection de la liste des serveurs" - }, - { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", "translation": "" }, { diff --git a/client/locales/it/messages.gotext.json b/client/locales/it/messages.gotext.json index 058ba5e..37fe021 100644 --- a/client/locales/it/messages.gotext.json +++ b/client/locales/it/messages.gotext.json @@ -2,28 +2,8 @@ "language": "it", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -37,8 +17,8 @@ ] }, { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", "translation": "", "placeholders": [ { @@ -52,8 +32,8 @@ ] }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -67,23 +47,8 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", "translation": "", "placeholders": [ { @@ -127,8 +92,8 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -142,8 +107,8 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -157,136 +122,13 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "" - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", "translation": "" }, { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", "translation": "" }, { diff --git a/client/locales/nl/messages.gotext.json b/client/locales/nl/messages.gotext.json index 04e08f0..c63beb7 100644 --- a/client/locales/nl/messages.gotext.json +++ b/client/locales/nl/messages.gotext.json @@ -2,29 +2,9 @@ "language": "nl", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "Het log bestand met pad: '{Directory}' kon niet aangemaakt worden", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "De huidige server was niet gevonden tijdens het ophalen van de VPN verloopdatum" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", - "translation": "De institute access server met URL: '{Identifier}' kan niet toegevoegd worden", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -37,9 +17,9 @@ ] }, { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "translation": "De secure internet server met identiteit: '{Identifier}' kan niet toegevoegd worden", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -52,9 +32,9 @@ ] }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", - "translation": "De server met URL: '{Identifier}' kan niet toegevoegd worden", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -67,24 +47,9 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", - "translation": "het ingegeven veld: '{Identifier}' is niet een geldige URL", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "translation": "De identiteit van de server: '{Identifier}', is niet geldig tijdens het ophalen van de VPN configuratie", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -127,9 +92,9 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", - "translation": "Er kon geen verbinding worden gemaakt met de server: '{Identifier}'", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -142,9 +107,9 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", - "translation": "Er kon geen VPN configuratie opgehaald worden voor de server: '{Identifier}'", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -157,137 +122,14 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "De server: '{Identifier}' is niet geldig om verwijderd te worden", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "De server: '{Identifier}' kan niet worden verwijderd", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "De huidige server kan niet worden opgehaald" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "Het profiel met identiteit: '{PID}' kan niet opgeslagen worden", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "De huidige server was niet gevonden tijdens het opschonen van de verbinding" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "Er was geen authorizatie gevonden tijdens het opschonen van de verbinding" - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "De server kon niet opgehaald worden tijdens het opschonen van de verbinding" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "De VPN verbinding kon niet opgeschoond worden" - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "De secure internet server met identiteit: '{OrgID}' kon niet opgehaald worden tijdens het bevestigen van de locatie", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "De huidige server kon niet opgehaald worden tijdens het vernieuwen van de sessie" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "De server kon niet opgehaald worden tijdens het vernieuwen van de sessie" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "Het 'failover' proces kan niet voltooid worden. Gateway: '{Gateway}' en MTU: '{Mtu}'", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "Er is een fout opgetreden met het ophalen van de lijst van organisaties" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", - "translation": "Er is een fout opgetreden met het ophalen van de lijst van servers" + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", + "translation": "" }, { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", - "translation": "De VPN proxy is afgesloten" + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", + "translation": "" }, { "id": "timeout reached for URL: '{URL}' and HTTP method: '{Method}'", @@ -323,4 +165,4 @@ "translation": "Een interne fout is opgetreden" } ] -} +}
\ No newline at end of file diff --git a/client/locales/sl/messages.gotext.json b/client/locales/sl/messages.gotext.json index 078beba..d252291 100644 --- a/client/locales/sl/messages.gotext.json +++ b/client/locales/sl/messages.gotext.json @@ -2,44 +2,9 @@ "language": "sl", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "Napaka pri vzpostavitvi datoteke dnevnika v imeniku '{Directory}'", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", - "translation": "Strežnika z naslovom '{Identifier}' za dostop do ustanove ni bilo možno dodati", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "translation": "Strežnika za varni splet organizacije z ID-jem '{Identifier}' ni bilo možno dodati", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -52,9 +17,9 @@ ] }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", - "translation": "Svojega strežnika z naslovom '{Identifier}' ni bilo možno dodati", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "translation": "", "placeholders": [ { "id": "Identifier", @@ -67,8 +32,8 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -82,8 +47,8 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", "translation": "", "placeholders": [ { @@ -127,8 +92,8 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -142,8 +107,8 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -157,136 +122,13 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", "translation": "" }, { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "Preklop ni uspel s prehodom '{Gateway}' in MTU-jem '{Mtu}'", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "Pri nalaganju datotek kataloga organizacij je prišlo do napake" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", - "translation": "Pri nalaganju datotek kataloga strežnikov je prišlo do napake" - }, - { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", "translation": "" }, { diff --git a/client/locales/uk/messages.gotext.json b/client/locales/uk/messages.gotext.json index d9e8879..0ff4668 100644 --- a/client/locales/uk/messages.gotext.json +++ b/client/locales/uk/messages.gotext.json @@ -2,28 +2,8 @@ "language": "uk", "messages": [ { - "id": "The log file with directory: '{Directory}' failed to initialize", - "message": "The log file with directory: '{Directory}' failed to initialize", - "translation": "", - "placeholders": [ - { - "id": "Directory", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "directory" - } - ] - }, - { - "id": "The current server was not found when getting the VPN expiration date", - "message": "The current server was not found when getting the VPN expiration date", - "translation": "" - }, - { - "id": "The institute access server with URL: '{Identifier}' could not be added", - "message": "The institute access server with URL: '{Identifier}' could not be added", + "id": "Failed to add an institute access server with URL: '{Identifier}'", + "message": "Failed to add an institute access server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -37,8 +17,8 @@ ] }, { - "id": "The secure internet server with organisation ID: '{Identifier}' could not be added", - "message": "The secure internet server with organisation ID: '{Identifier}' could not be added", + "id": "Failed to add a secure internet server with organisation ID: '{Identifier}'", + "message": "Failed to add a secure internet server with organisation ID: '{Identifier}'", "translation": "", "placeholders": [ { @@ -52,8 +32,8 @@ ] }, { - "id": "The custom server with URL: '{Identifier}' could not be added", - "message": "The custom server with URL: '{Identifier}' could not be added", + "id": "Failed to add a server with URL: '{Identifier}'", + "message": "Failed to add a server with URL: '{Identifier}'", "translation": "", "placeholders": [ { @@ -67,23 +47,8 @@ ] }, { - "id": "input: '{Identifier}' is not a valid URL", - "message": "input: '{Identifier}' is not a valid URL", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", - "message": "Server identifier: '{Identifier}', is not valid when getting a VPN configuration", + "id": "The input: '{Identifier}' is not a valid URL", + "message": "The input: '{Identifier}' is not a valid URL", "translation": "", "placeholders": [ { @@ -127,8 +92,8 @@ ] }, { - "id": "Server: '{Identifier}' could not be connected to", - "message": "Server: '{Identifier}' could not be connected to", + "id": "Failed to connect to server: '{Identifier}'", + "message": "Failed to connect to server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -142,8 +107,8 @@ ] }, { - "id": "No VPN configuration for server: '{Identifier}' could be obtained", - "message": "No VPN configuration for server: '{Identifier}' could be obtained", + "id": "Failed to obtain a VPN configuration for server: '{Identifier}'", + "message": "Failed to obtain a VPN configuration for server: '{Identifier}'", "translation": "", "placeholders": [ { @@ -157,136 +122,13 @@ ] }, { - "id": "Server identifier: '{Identifier}', is not valid when removing the server", - "message": "Server identifier: '{Identifier}', is not valid when removing the server", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The server: '{Identifier}' could not be removed", - "message": "The server: '{Identifier}' could not be removed", - "translation": "", - "placeholders": [ - { - "id": "Identifier", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "identifier" - } - ] - }, - { - "id": "The current server could not be retrieved", - "message": "The current server could not be retrieved", - "translation": "" - }, - { - "id": "Failed to set the profile ID: '{PID}'", - "message": "Failed to set the profile ID: '{PID}'", - "translation": "", - "placeholders": [ - { - "id": "PID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "pID" - } - ] - }, - { - "id": "The current server was not found when cleaning up the connection", - "message": "The current server was not found when cleaning up the connection", - "translation": "" - }, - { - "id": "No OAuth tokens were found when cleaning up the connection", - "message": "No OAuth tokens were found when cleaning up the connection", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when cleaning up the connection", - "message": "The server was unable to be retrieved when cleaning up the connection", - "translation": "" - }, - { - "id": "Failed to cleanup the VPN connection", - "message": "Failed to cleanup the VPN connection", - "translation": "" - }, - { - "id": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "message": "Failed to get the secure internet server with id: '{OrgID}' for setting a location", - "translation": "", - "placeholders": [ - { - "id": "OrgID", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "orgID" - } - ] - }, - { - "id": "The current server could not be retrieved when renewing the session", - "message": "The current server could not be retrieved when renewing the session", - "translation": "" - }, - { - "id": "The server was unable to be retrieved when renewing the session", - "message": "The server was unable to be retrieved when renewing the session", - "translation": "" - }, - { - "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'", - "translation": "", - "placeholders": [ - { - "id": "Gateway", - "string": "%[1]s", - "type": "string", - "underlyingType": "string", - "argNum": 1, - "expr": "gateway" - }, - { - "id": "Mtu", - "string": "%[2]d", - "type": "int", - "underlyingType": "int", - "argNum": 2, - "expr": "mtu" - } - ] - }, - { - "id": "An error occurred after getting the discovery files for the list of organizations", - "message": "An error occurred after getting the discovery files for the list of organizations", - "translation": "" - }, - { - "id": "An error occurred after getting the discovery files for the list of servers", - "message": "An error occurred after getting the discovery files for the list of servers", + "id": "Failed to obtain the list of organizations", + "message": "Failed to obtain the list of organizations", "translation": "" }, { - "id": "The VPN proxy exited", - "message": "The VPN proxy exited", + "id": "Failed to obtain the list of servers", + "message": "Failed to obtain the list of servers", "translation": "" }, { diff --git a/client/proxy.go b/client/proxy.go index 849b524..b39af32 100644 --- a/client/proxy.go +++ b/client/proxy.go @@ -116,7 +116,7 @@ func (c *Client) StartProxyguard(ck *cookie.Cookie, listen string, tcpsp int, pe defer c.proxy.Delete() err = c.proxy.Tunnel(ck.Context(), peer) if err != nil { - return i18nerr.Wrap(err, "The VPN proxy exited") + return i18nerr.WrapInternal(err, "The VPN proxy exited") } return err } diff --git a/client/zgotext.go b/client/zgotext.go index 5b0dad0..38809f9 100644 --- a/client/zgotext.go +++ b/client/zgotext.go @@ -46,279 +46,129 @@ func init() { } var messageKeyToIndex = map[string]int{ - "An error occurred after getting the discovery files for the list of organizations": 22, - "An error occurred after getting the discovery files for the list of servers": 23, - "An internal error occurred": 27, - "Failed to cleanup the VPN connection": 17, - "Failed to get the secure internet server with id: '%s' for setting a location": 18, - "Failed to set the profile ID: '%s'": 13, - "Failover failed to complete with gateway: '%s' and MTU: '%d'": 21, - "No OAuth tokens were found when cleaning up the connection": 15, - "No VPN configuration for server: '%s' could be obtained": 9, - "Server identifier: '%s', is not valid when getting a VPN configuration": 6, - "Server identifier: '%s', is not valid when removing the server": 10, - "Server: '%s' could not be connected to": 28, - "The VPN proxy exited": 24, - "The client tried to autoconnect to the VPN server: '%s', but the operation failed to complete": 8, - "The client tried to autoconnect to the VPN server: '%s', but you need to authorizate again. Please manually connect again": 7, - "The current server could not be retrieved": 12, - "The current server could not be retrieved when renewing the session": 19, - "The current server was not found when cleaning up the connection": 14, - "The current server was not found when getting the VPN expiration date": 1, - "The custom server with URL: '%s' could not be added": 4, - "The institute access server with URL: '%s' could not be added": 2, - "The log file with directory: '%s' failed to initialize": 0, - "The secure internet server with organisation ID: '%s' could not be added": 3, - "The server was unable to be retrieved when cleaning up the connection": 16, - "The server was unable to be retrieved when renewing the session": 20, - "The server: '%s' could not be removed": 11, - "input: '%s' is not a valid URL": 5, - "timeout reached for URL: '%s' and HTTP method: '%s'": 25, - "with cause:": 26, + "An internal error occurred": 4, + "Failed to add a secure internet server with organisation ID: '%s'": 6, + "Failed to add a server with URL: '%s'": 7, + "Failed to add an institute access server with URL: '%s'": 5, + "Failed to connect to server: '%s'": 9, + "Failed to obtain a VPN configuration for server: '%s'": 10, + "Failed to obtain the list of organizations": 11, + "Failed to obtain the list of servers": 12, + "The client tried to autoconnect to the VPN server: '%s', but the operation failed to complete": 1, + "The client tried to autoconnect to the VPN server: '%s', but you need to authorizate again. Please manually connect again": 0, + "The input: '%s' is not a valid URL": 8, + "timeout reached for URL: '%s' and HTTP method: '%s'": 2, + "with cause:": 3, } -var daIndex = []uint32{ // 30 elements - 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00000000, +var daIndex = []uint32{ // 14 elements 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, -} // Size: 144 bytes +} // Size: 80 bytes const daData string = "" -var deIndex = []uint32{ // 30 elements - 0x00000000, 0x00000047, 0x0000009c, 0x000000ec, - 0x0000014a, 0x0000019d, 0x000001c3, 0x0000020e, - 0x000002b4, 0x0000033a, 0x00000384, 0x000003c7, - 0x000003f7, 0x0000042a, 0x0000045c, 0x000004ad, - 0x000004ef, 0x00000537, 0x0000056a, 0x000005ca, - 0x00000617, 0x0000065a, 0x000006a9, 0x00000701, - 0x00000752, 0x00000769, 0x000007b0, 0x000007bd, - 0x000007e1, 0x000007e1, -} // Size: 144 bytes - -const deData string = "" + // Size: 2017 bytes - "\x02Die Log-Datei im Verzeichnis '%[1]s' konnte nicht initialisiert werd" + - "en\x02Der momentane Server wurde bei der Abfrage des Verfallsdatums der " + - "VPN nicht gefunden\x02Der Institutszugriffserver mit der URL '%[1]s' kon" + - "nte nicht hinzugefügt werden\x02Der sichere Internet-Server mit der Orga" + - "nisations-ID '%[1]s' konnte nicht hinzugefügt werden\x02Der benutzerdefi" + - "nierte Server mit der URL '%[1]s' konnte nicht hinzugefügt werden\x02Ein" + - "gabe: '%[1]s' ist keine valide URL\x02Serveridentifikator '%[1]s' ist be" + - "im Abrufen der VPN-Konfiguration invalid\x02Der Client hat versucht, sic" + - "h automatisch mit dem VPN-Server '%[1]s' zu verbinden, aber Sie müssen s" + - "ich erneut autorisieren. Bitte verbinden sie sich manuell erneut\x02Der " + - "Client hat versucht, sich automatisch mit dem VPN-Server '%[1]s' zu verb" + - "inden, aber der Vorgang konnte nicht abgeschlossen werden\x02Es konnte k" + - "eine VPN-Konfiguration für den Server '%[1]s' gefunden werden\x02Serveri" + - "dentifikator '%[1]s' ist beim Entfernen des Servers invalid\x02Der Serve" + - "r '%[1]s' konnte nicht entfernt werden\x02Der momentane Server konnte ni" + - "cht abgerufen werden\x02Die Profil-ID '%[1]s' konnte nicht gesetzt werde" + - "n\x02Der momentane Server konnte beim Aufräumen der Verbindung nicht gef" + - "unden werden\x02Keine OAuth-Tokens wurden beim Aufräumen der Verbindung " + - "gefunden\x02Der Server konnte beim Aufräumen der Verbindung nicht abgeru" + - "fen werden\x02Die VPN-Verbindung konnte nicht aufgeräumt werden\x02Es ko" + - "nnte kein sicherer Internetserver mit der ID '%[1]s' zum Setzen des Orte" + - "s abgerufen werden\x02Der momentane Server konnte beim Erneuern der Sitz" + - "ung nicht abgerufen werden\x02Der Server konnte beim Erneuern der Sitzun" + - "g nicht abgerufen werden\x02Failover konnte nicht mit Gateway '%[1]s' un" + - "d MTU '%[2]d' abgeschlossen werden\x02Nach dem Abfragen der Discovery-Da" + - "teien für die Organisationsliste trat ein Fehler auf\x02Nach dem Abfrage" + - "n der Discovery-Dateien für die Serverliste trat ein Fehler auf\x02Die V" + - "PN-Proxy brach ab\x02Zeitüberschreitung für URL '%[1]s' und HTTP-Methode" + +var deIndex = []uint32{ // 14 elements + 0x00000000, 0x000000a6, 0x0000012c, 0x00000173, + 0x00000180, 0x000001a4, 0x000001a4, 0x000001a4, + 0x000001a4, 0x000001a4, 0x000001a4, 0x000001a4, + 0x000001a4, 0x000001a4, +} // Size: 80 bytes + +const deData string = "" + // Size: 420 bytes + "\x02Der Client hat versucht, sich automatisch mit dem VPN-Server '%[1]s'" + + " zu verbinden, aber Sie müssen sich erneut autorisieren. Bitte verbinden" + + " sie sich manuell erneut\x02Der Client hat versucht, sich automatisch mi" + + "t dem VPN-Server '%[1]s' zu verbinden, aber der Vorgang konnte nicht abg" + + "eschlossen werden\x02Zeitüberschreitung für URL '%[1]s' und HTTP-Methode" + " '%[2]s' erreicht\x02mit Ursache:\x02Ein interner Fehler ist aufgetreten" -var enIndex = []uint32{ // 30 elements - 0x00000000, 0x0000003a, 0x00000080, 0x000000c1, - 0x0000010d, 0x00000144, 0x00000166, 0x000001b0, - 0x0000022d, 0x0000028e, 0x000002c9, 0x0000030b, - 0x00000334, 0x0000035e, 0x00000384, 0x000003c5, - 0x00000400, 0x00000446, 0x0000046b, 0x000004bc, - 0x00000500, 0x00000540, 0x00000583, 0x000005d5, - 0x00000621, 0x00000636, 0x00000670, 0x0000067c, - 0x00000697, 0x000006c1, -} // Size: 144 bytes - -const enData string = "" + // Size: 1729 bytes - "\x02The log file with directory: '%[1]s' failed to initialize\x02The cur" + - "rent server was not found when getting the VPN expiration date\x02The in" + - "stitute access server with URL: '%[1]s' could not be added\x02The secure" + - " internet server with organisation ID: '%[1]s' could not be added\x02The" + - " custom server with URL: '%[1]s' could not be added\x02input: '%[1]s' is" + - " not a valid URL\x02Server identifier: '%[1]s', is not valid when gettin" + - "g a VPN configuration\x02The client tried to autoconnect to the VPN serv" + - "er: '%[1]s', but you need to authorizate again. Please manually connect " + - "again\x02The client tried to autoconnect to the VPN server: '%[1]s', but" + - " the operation failed to complete\x02No VPN configuration for server: '%" + - "[1]s' could be obtained\x02Server identifier: '%[1]s', is not valid when" + - " removing the server\x02The server: '%[1]s' could not be removed\x02The " + - "current server could not be retrieved\x02Failed to set the profile ID: '" + - "%[1]s'\x02The current server was not found when cleaning up the connecti" + - "on\x02No OAuth tokens were found when cleaning up the connection\x02The " + - "server was unable to be retrieved when cleaning up the connection\x02Fai" + - "led to cleanup the VPN connection\x02Failed to get the secure internet s" + - "erver with id: '%[1]s' for setting a location\x02The current server coul" + - "d not be retrieved when renewing the session\x02The server was unable to" + - " be retrieved when renewing the session\x02Failover failed to complete w" + - "ith gateway: '%[1]s' and MTU: '%[2]d'\x02An error occurred after getting" + - " the discovery files for the list of organizations\x02An error occurred " + - "after getting the discovery files for the list of servers\x02The VPN pro" + - "xy exited\x02timeout reached for URL: '%[1]s' and HTTP method: '%[2]s'" + - "\x02with cause:\x02An internal error occurred\x02Server: '%[1]s' could n" + - "ot be connected to" - -var esIndex = []uint32{ // 30 elements - 0x00000000, 0x0000004a, 0x0000009c, 0x000000e9, - 0x00000141, 0x00000186, 0x000001ab, 0x00000203, - 0x0000028f, 0x000002f2, 0x0000033b, 0x00000389, - 0x000003b4, 0x000003e1, 0x0000040f, 0x00000452, - 0x0000048c, 0x000004ca, 0x000004ec, 0x0000054b, - 0x0000058e, 0x000005ca, 0x0000061a, 0x0000067b, - 0x000006d4, 0x000006f5, 0x0000073a, 0x00000749, - 0x00000762, 0x0000078d, -} // Size: 144 bytes - -const esData string = "" + // Size: 1933 bytes - "\x02El archivo de registro con el directorio: '%[1]s' no se puede inicia" + - "lizar\x02No se ha encontrado el servidor actual al obtener la fecha de c" + - "aducidad de la VPN\x02El servidor de acceso al instituto con URL '%[1]s'" + - " no ha podido ser añadido\x02El servidor seguro de Internet con ID de or" + - "ganización: '%[1]s' no se ha podido añadir\x02El servidor personalizado " + - "con URL: '%[1]s' no ha podido ser añadido\x02input: '%[1]s' no es una UR" + - "L válida\x02El identificador del servidor: '%[1]s', no es válido al obte" + - "ner una configuración VPN\x02El cliente intentó autoconectarse al servid" + - "or VPN: '%[1]s', pero necesita autorizarse de nuevo. Por favor, conéctes" + - "e manualmente de nuevo\x02El cliente intentó autoconectarse al servidor " + - "VPN: %[1]s', pero la operación no se ha completado\x02No hay configuraci" + - "ón VPN para el servidor: '%[1]s' se ha podido obtener\x02El identificad" + - "or del servidor: '%[1]s', no es válido al eliminar el servidor\x02El ser" + - "vidor: '%[1]s' no pudo ser eliminado\x02No se ha podido recuperar el ser" + - "vidor actual\x02Error al establecer el ID del perfil: '%[1]s'\x02No se h" + - "a encontrado el servidor actual al restablecer la conexión\x02No se han " + - "encontrado tokens OAuth al limpiar la conexión\x02No se ha podido recupe" + - "rar el servidor al limpiar la conexión\x02Error al limpiar la conexión V" + - "PN\x02Error al obtener el servidor seguro de Internet con id: '%[1]s' pa" + - "ra establecer una ubicación\x02No se ha podido recuperar el servidor act" + - "ual al renovar la sesión\x02No se ha podido recuperar el servidor al ren" + - "ovar la sesión\x02Error en la conmutación por error con puerta de enlace" + - ": '%[1]s' y MTU: '%[2]d'\x02Se ha producido un error al obtener los arch" + - "ivos de detección de la lista de las organizaciones\x02Se ha producido u" + - "n error al obtener los archivos de detección de la lista de servidores" + - "\x02Se ha desconectado del proxy VPN\x02tiempo de espera alcanzado para " + - "URL: '%[1]s' y método HTTP: '%[2]s'\x02Por el motivo:\x02Se ha producido" + - " un error\x02Servidor: '%[1]s' no se ha podido conectar" - -var frIndex = []uint32{ // 30 elements - 0x00000000, 0x0000004f, 0x0000004f, 0x0000004f, - 0x000000aa, 0x000000f1, 0x000000f1, 0x000000f1, - 0x000000f1, 0x000000f1, 0x000000f1, 0x000000f1, - 0x000000f1, 0x000000f1, 0x000000f1, 0x000000f1, - 0x000000f1, 0x000000f1, 0x000000f1, 0x000000f1, - 0x000000f1, 0x000000f1, 0x000000f1, 0x0000015c, - 0x000001c2, 0x000001c2, 0x000001c2, 0x000001c2, - 0x000001c2, 0x000001c2, -} // Size: 144 bytes - -const frData string = "" + // Size: 450 bytes - "\x02Le fichier de registre du répertoire\u202f: '%[1]s' n'a pas pu être " + - "initialisé\x02Le serveur internet sécurisé avec l'ID d'organisation : '%" + - "[1]s' n'a pas pu être ajouté\x02Le serveur personnalisé avec l'URL : '%[" + - "1]s' n'a pas pu être ajouté\x02Une erreur est survenue pendant la récupé" + - "ration des fichiers de détection de la liste des organisations\x02Une er" + - "reur est survenue pendant la récupération des fichiers de détection de l" + - "a liste des serveurs" - -var itIndex = []uint32{ // 30 elements - 0x00000000, 0x00000000, 0x00000000, 0x00000000, +var enIndex = []uint32{ // 14 elements + 0x00000000, 0x0000007d, 0x000000de, 0x00000118, + 0x00000124, 0x0000013f, 0x0000017a, 0x000001bf, + 0x000001e8, 0x0000020e, 0x00000233, 0x0000026c, + 0x00000297, 0x000002bc, +} // Size: 80 bytes + +const enData string = "" + // Size: 700 bytes + "\x02The client tried to autoconnect to the VPN server: '%[1]s', but you " + + "need to authorizate again. Please manually connect again\x02The client t" + + "ried to autoconnect to the VPN server: '%[1]s', but the operation failed" + + " to complete\x02timeout reached for URL: '%[1]s' and HTTP method: '%[2]s" + + "'\x02with cause:\x02An internal error occurred\x02Failed to add an insti" + + "tute access server with URL: '%[1]s'\x02Failed to add a secure internet " + + "server with organisation ID: '%[1]s'\x02Failed to add a server with URL:" + + " '%[1]s'\x02The input: '%[1]s' is not a valid URL\x02Failed to connect t" + + "o server: '%[1]s'\x02Failed to obtain a VPN configuration for server: '%" + + "[1]s'\x02Failed to obtain the list of organizations\x02Failed to obtain " + + "the list of servers" + +var esIndex = []uint32{ // 14 elements + 0x00000000, 0x0000008c, 0x000000ef, 0x00000134, + 0x00000143, 0x0000015c, 0x0000015c, 0x0000015c, + 0x0000015c, 0x0000015c, 0x0000015c, 0x0000015c, + 0x0000015c, 0x0000015c, +} // Size: 80 bytes + +const esData string = "" + // Size: 348 bytes + "\x02El cliente intentó autoconectarse al servidor VPN: '%[1]s', pero nec" + + "esita autorizarse de nuevo. Por favor, conéctese manualmente de nuevo" + + "\x02El cliente intentó autoconectarse al servidor VPN: %[1]s', pero la o" + + "peración no se ha completado\x02tiempo de espera alcanzado para URL: '%[" + + "1]s' y método HTTP: '%[2]s'\x02Por el motivo:\x02Se ha producido un erro" + + "r" + +var frIndex = []uint32{ // 14 elements 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, +} // Size: 80 bytes + +const frData string = "" + +var itIndex = []uint32{ // 14 elements 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, -} // Size: 144 bytes +} // Size: 80 bytes const itData string = "" -var nlIndex = []uint32{ // 30 elements - 0x00000000, 0x0000003c, 0x0000008c, 0x000000d3, - 0x00000120, 0x00000156, 0x0000018a, 0x000001eb, - 0x00000272, 0x000002c9, 0x0000030f, 0x00000349, - 0x00000377, 0x000003a3, 0x000003e2, 0x0000042e, - 0x00000478, 0x000004c4, 0x000004f2, 0x00000564, - 0x000005b5, 0x000005fe, 0x0000064f, 0x00000697, - 0x000006da, 0x000006f5, 0x00000747, 0x00000754, - 0x00000773, 0x000007b0, -} // Size: 144 bytes +var nlIndex = []uint32{ // 14 elements + 0x00000000, 0x00000087, 0x000000de, 0x00000130, + 0x0000013d, 0x0000015c, 0x0000015c, 0x0000015c, + 0x0000015c, 0x0000015c, 0x0000015c, 0x0000015c, + 0x0000015c, 0x0000015c, +} // Size: 80 bytes -const nlData string = "" + // Size: 1968 bytes - "\x02Het log bestand met pad: '%[1]s' kon niet aangemaakt worden\x02De hu" + - "idige server was niet gevonden tijdens het ophalen van de VPN verloopdat" + - "um\x02De institute access server met URL: '%[1]s' kan niet toegevoegd wo" + - "rden\x02De secure internet server met identiteit: '%[1]s' kan niet toege" + - "voegd worden\x02De server met URL: '%[1]s' kan niet toegevoegd worden" + - "\x02het ingegeven veld: '%[1]s' is niet een geldige URL\x02De identiteit" + - " van de server: '%[1]s', is niet geldig tijdens het ophalen van de VPN c" + - "onfiguratie\x02De client wilde automatisch verbinden met de VPN server: " + - "'%[1]s', maar er is geen geldige authorizatie. Verbind handmatig nog een" + - " keer\x02De client wilde automatisch verbinden met de VPN server: '%[1]s" + - "', maar het was mislukt\x02Er kon geen VPN configuratie opgehaald worden" + - " voor de server: '%[1]s'\x02De server: '%[1]s' is niet geldig om verwijd" + - "erd te worden\x02De server: '%[1]s' kan niet worden verwijderd\x02De hui" + - "dige server kan niet worden opgehaald\x02Het profiel met identiteit: '%[" + - "1]s' kan niet opgeslagen worden\x02De huidige server was niet gevonden t" + - "ijdens het opschonen van de verbinding\x02Er was geen authorizatie gevon" + - "den tijdens het opschonen van de verbinding\x02De server kon niet opgeha" + - "ald worden tijdens het opschonen van de verbinding\x02De VPN verbinding " + - "kon niet opgeschoond worden\x02De secure internet server met identiteit:" + - " '%[1]s' kon niet opgehaald worden tijdens het bevestigen van de locatie" + - "\x02De huidige server kon niet opgehaald worden tijdens het vernieuwen v" + - "an de sessie\x02De server kon niet opgehaald worden tijdens het vernieuw" + - "en van de sessie\x02Het 'failover' proces kan niet voltooid worden. Gate" + - "way: '%[1]s' en MTU: '%[2]d'\x02Er is een fout opgetreden met het ophale" + - "n van de lijst van organisaties\x02Er is een fout opgetreden met het oph" + - "alen van de lijst van servers\x02De VPN proxy is afgesloten\x02Er heeft " + - "zich een time-out opgetreden voor URL: '%[1]s' met HTTP methode: '%[2]s'" + - "\x02met oorzaak:\x02Een interne fout is opgetreden\x02Er kon geen verbin" + - "ding worden gemaakt met de server: '%[1]s'" +const nlData string = "" + // Size: 348 bytes + "\x02De client wilde automatisch verbinden met de VPN server: '%[1]s', ma" + + "ar er is geen geldige authorizatie. Verbind handmatig nog een keer\x02De" + + " client wilde automatisch verbinden met de VPN server: '%[1]s', maar het" + + " was mislukt\x02Er heeft zich een time-out opgetreden voor URL: '%[1]s' " + + "met HTTP methode: '%[2]s'\x02met oorzaak:\x02Een interne fout is opgetre" + + "den" -var slIndex = []uint32{ // 30 elements - 0x00000000, 0x0000003c, 0x0000003c, 0x00000086, - 0x000000d4, 0x00000110, 0x00000110, 0x00000110, - 0x00000110, 0x00000110, 0x00000110, 0x00000110, - 0x00000110, 0x00000110, 0x00000110, 0x00000110, - 0x00000110, 0x00000110, 0x00000110, 0x00000110, - 0x00000110, 0x00000110, 0x00000147, 0x00000187, - 0x000001c7, 0x000001c7, 0x000001c7, 0x000001d1, - 0x000001ef, 0x000001ef, -} // Size: 144 bytes +var slIndex = []uint32{ // 14 elements + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x0000000a, 0x00000028, 0x00000028, 0x00000028, + 0x00000028, 0x00000028, 0x00000028, 0x00000028, + 0x00000028, 0x00000028, +} // Size: 80 bytes -const slData string = "" + // Size: 495 bytes - "\x02Napaka pri vzpostavitvi datoteke dnevnika v imeniku '%[1]s'\x02Strež" + - "nika z naslovom '%[1]s' za dostop do ustanove ni bilo možno dodati\x02St" + - "režnika za varni splet organizacije z ID-jem '%[1]s' ni bilo možno dodat" + - "i\x02Svojega strežnika z naslovom '%[1]s' ni bilo možno dodati\x02Preklo" + - "p ni uspel s prehodom '%[1]s' in MTU-jem '%[2]d'\x02Pri nalaganju datote" + - "k kataloga organizacij je prišlo do napake\x02Pri nalaganju datotek kata" + - "loga strežnikov je prišlo do napake\x02; razlog:\x02Prišlo je do notranj" + - "e napake" +const slData string = "\x02; razlog:\x02Prišlo je do notranje napake" -var ukIndex = []uint32{ // 30 elements - 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00000000, +var ukIndex = []uint32{ // 14 elements 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, -} // Size: 144 bytes +} // Size: 80 bytes const ukData string = "" -// Total table size 9888 bytes (9KiB); checksum: 1B009270 +// Total table size 2576 bytes (2KiB); checksum: 6AF0360C |
