summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/client.go28
-rw-r--r--client/client_test.go2
-rw-r--r--client/locales/da/messages.gotext.json112
-rw-r--r--client/locales/de/messages.gotext.json112
-rw-r--r--client/locales/en/messages.gotext.json134
-rw-r--r--client/locales/es/messages.gotext.json112
-rw-r--r--client/locales/fr/messages.gotext.json112
-rw-r--r--client/locales/it/messages.gotext.json112
-rw-r--r--client/locales/nl/messages.gotext.json120
-rw-r--r--client/locales/sl/messages.gotext.json120
-rw-r--r--client/locales/uk/messages.gotext.json112
-rw-r--r--client/zgotext.go393
12 files changed, 257 insertions, 1212 deletions
diff --git a/client/client.go b/client/client.go
index f4e31d9..f8863eb 100644
--- a/client/client.go
+++ b/client/client.go
@@ -161,7 +161,7 @@ func (c *Client) forwardTokens(srv server.Server) error {
func (c *Client) goTransition(id fsm.StateID) error {
handled, err := c.FSM.GoTransition(id)
if err != nil {
- return i18nerr.Wrapf(err, "Internal state transition error")
+ return i18nerr.WrapInternal(err, "state transition error")
}
if !handled {
log.Logger.Debugf("transition not handled by the client to internal state: '%s'", GetStateName(id))
@@ -181,11 +181,11 @@ func New(name string, version string, directory string, stateCallback func(FSMSt
c = &Client{}
if !isAllowedClientID(name) {
- return nil, i18nerr.Newf("The client registered with an invalid client ID: '%v'", name)
+ return nil, i18nerr.NewInternalf("The client registered with an invalid client ID: '%v'", name)
}
if len([]rune(version)) > 20 {
- return nil, i18nerr.Newf("The client registered with an invalid version: '%v'", version)
+ return nil, i18nerr.NewInternalf("The client registered with an invalid version: '%v'", version)
}
// Initialize the logger
@@ -228,7 +228,7 @@ func New(name string, version string, directory string, stateCallback func(FSMSt
// Registering means updating the FSM to get to the initial state correctly
func (c *Client) Register() error {
if !c.FSM.InState(StateDeregistered) {
- return i18nerr.Wrapf(errors.New("The client tried to re-initialize without deregistering first"), "Client has an invalid state")
+ return i18nerr.NewInternal("The client tried to re-initialize without deregistering first")
}
err := c.goTransition(StateNoServer)
if err != nil {
@@ -268,7 +268,7 @@ func (c *Client) Deregister() {
func (c *Client) DiscoOrganizations(ck *cookie.Cookie) (orgs *discotypes.Organizations, err error) {
// Not supported with Let's Connect!
if c.isLetsConnect() {
- return nil, i18nerr.Newf("Server/organization discovery with Let's Connect is not supported")
+ return nil, i18nerr.NewInternal("Server/organization discovery with Let's Connect is not supported")
}
// Mark organizations as expired if we have not set an organization yet
@@ -290,7 +290,7 @@ func (c *Client) DiscoOrganizations(ck *cookie.Cookie) (orgs *discotypes.Organiz
func (c *Client) DiscoServers(ck *cookie.Cookie) (dss *discotypes.Servers, err error) {
// Not supported with Let's Connect!
if c.isLetsConnect() {
- return nil, i18nerr.Newf("Server/organization discovery with Let's Connect is not supported")
+ return nil, i18nerr.NewInternal("Server/organization discovery with Let's Connect is not supported")
}
dss, err = c.Discovery.Servers(ck.Context())
@@ -492,7 +492,7 @@ func (c *Client) AddServer(ck *cookie.Cookie, identifier string, _type srvtypes.
if _type != srvtypes.TypeSecureInternet {
identifier, err = http.EnsureValidURL(identifier, true)
if err != nil {
- return i18nerr.Wrapf(err, "The identifier that was passed to the library is incorrect")
+ return i18nerr.Wrap(err, "The identifier that was passed to the library is incorrect")
}
}
@@ -527,7 +527,7 @@ func (c *Client) AddServer(ck *cookie.Cookie, identifier string, _type srvtypes.
return i18nerr.Wrapf(err, "The custom server with URL: '%s' could not be added", identifier)
}
default:
- return i18nerr.Newf("Server type: '%v' is not valid to be added", _type)
+ return i18nerr.NewInternalf("Server type: '%v' is not valid to be added", _type)
}
// if we are non interactive, we run no callbacks
@@ -589,7 +589,7 @@ func (c *Client) server(identifier string, _type srvtypes.Type) (srv server.Serv
srv, err = c.Servers.CustomServer(identifier)
setter = c.Servers.SetCustom
default:
- return nil, nil, i18nerr.Newf("Not a valid server type: %v", _type)
+ return nil, nil, i18nerr.NewInternalf("Not a valid server type: %v", _type)
}
return srv, setter, err
}
@@ -680,7 +680,7 @@ func (c *Client) RemoveServer(identifier string, _type srvtypes.Type) (err error
case srvtypes.TypeCustom:
mErr = c.Servers.RemoveCustom(identifier)
default:
- return i18nerr.Newf("Not a valid server type: %v", _type)
+ return i18nerr.NewInternalf("Not a valid server type: %v", _type)
}
if mErr != nil {
log.Logger.Debugf("failed to remove server with identifier: '%s' and type: '%d', error: %v", identifier, _type, mErr)
@@ -767,7 +767,7 @@ func (c *Client) pubServer(srv server.Server) (interface{}, error) {
func (c *Client) ServerList() (*srvtypes.List, error) {
if c.FSM.InState(StateDeregistered) {
- return nil, i18nerr.New("Client is not registered")
+ return nil, i18nerr.NewInternal("Client is not registered")
}
var customServers []srvtypes.Server
for _, v := range c.Servers.CustomServers.Map {
@@ -853,7 +853,7 @@ func (c *Client) Cleanup(ck *cookie.Cookie) (err error) {
func (c *Client) SetSecureLocation(ck *cookie.Cookie, countryCode string) (err error) {
if c.isLetsConnect() {
- return i18nerr.Newf("Setting a secure internet location with Let's Connect! is not supported")
+ return i18nerr.NewInternal("Setting a secure internet location with Let's Connect! is not supported")
}
if !c.Servers.HasSecureInternet() {
@@ -903,7 +903,7 @@ func (c *Client) StartFailover(ck *cookie.Cookie, gateway string, mtu int, readR
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.Wrapf(err, "Failover failed to complete with gateway: '%s' and MTU: '%d'", gateway, mtu)
}
return d, nil
}
@@ -919,7 +919,7 @@ func (c *Client) SetState(state FSMStateID) error {
log.Logger.Debugf("attempt an invalid self-transition: %s", c.FSM.GetStateName(state))
return nil
}
- return i18nerr.Wrapf(err, "Failed internal state transition requested by the client from: '%s' to '%s'", GetStateName(curr), GetStateName(state))
+ return i18nerr.WrapInternalf(err, "Failed internal state transition requested by the client from: '%s' to '%s'", GetStateName(curr), GetStateName(state))
}
return nil
}
diff --git a/client/client_test.go b/client/client_test.go
index de47022..7d070f3 100644
--- a/client/client_test.go
+++ b/client/client_test.go
@@ -397,7 +397,7 @@ func TestInvalidClientID(t *testing.T) {
if err == nil {
t.Fatalf("expected invalid register with clientID: %v, but got no error", k)
}
- if !strings.HasPrefix(err.Error(), "The client registered with an invalid client ID") {
+ if !strings.HasPrefix(err.Error(), "An internal error occurred with cause: The client registered with an invalid client ID") {
t.Fatalf("register error has invalid prefix: %v", err.Error())
}
}
diff --git a/client/locales/da/messages.gotext.json b/client/locales/da/messages.gotext.json
index e20ee39..72f817a 100644
--- a/client/locales/da/messages.gotext.json
+++ b/client/locales/da/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "da",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": ""
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"id": "The log file with directory: '{Directory}' failed to initialize",
"message": "The log file with directory: '{Directory}' failed to initialize",
"translation": "",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": ""
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": ""
- },
- {
"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": ""
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": ""
@@ -272,21 +212,6 @@
"translation": ""
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"translation": "",
@@ -363,11 +288,6 @@
"translation": ""
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": ""
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": ""
@@ -378,8 +298,8 @@
"translation": ""
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
+ "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
+ "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
"translation": "",
"placeholders": [
{
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": ""
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": ""
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/locales/de/messages.gotext.json b/client/locales/de/messages.gotext.json
index 3991db3..a37e3a5 100644
--- a/client/locales/de/messages.gotext.json
+++ b/client/locales/de/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "de",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": ""
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"id": "The log file with directory: '{Directory}' failed to initialize",
"message": "The log file with directory: '{Directory}' failed to initialize",
"translation": "",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": ""
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": ""
- },
- {
"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": ""
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": ""
@@ -272,21 +212,6 @@
"translation": ""
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"translation": "",
@@ -363,11 +288,6 @@
"translation": ""
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": ""
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": ""
@@ -378,8 +298,8 @@
"translation": ""
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
+ "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
+ "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
"translation": "",
"placeholders": [
{
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": ""
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": ""
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/locales/en/messages.gotext.json b/client/locales/en/messages.gotext.json
index f0c56c6..03feb19 100644
--- a/client/locales/en/messages.gotext.json
+++ b/client/locales/en/messages.gotext.json
@@ -2,47 +2,6 @@
"language": "en",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": "Internal state transition error",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "The client registered with an invalid client ID: '{Name}'",
- "translatorComment": "Copied from source.",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ],
- "fuzzy": true
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "The client registered with an invalid version: '{Version}'",
- "translatorComment": "Copied from source.",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ],
- "fuzzy": true
- },
- {
"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",
@@ -60,20 +19,6 @@
"fuzzy": true
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": "Client has an invalid state",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": "Server/organization discovery with Let's Connect is not supported",
- "translatorComment": "Copied from source.",
- "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",
@@ -293,23 +238,6 @@
"fuzzy": true
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "Server type: '{Type}' is not valid to be added",
- "translatorComment": "Copied from source.",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ],
- "fuzzy": true
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": "The VPN configuration could not be obtained",
@@ -324,23 +252,6 @@
"fuzzy": true
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "Not a valid server type: {Type}",
- "translatorComment": "Copied from source.",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ],
- "fuzzy": true
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"translation": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
@@ -429,13 +340,6 @@
"fuzzy": true
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": "Setting a secure internet location with Let's Connect! is not supported",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": "No secure internet server available to set a location for",
@@ -450,9 +354,9 @@
"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}'",
+ "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": [
{
@@ -475,31 +379,6 @@
"fuzzy": true
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translatorComment": "Copied from source.",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ],
- "fuzzy": true
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": "timeout reached",
@@ -512,6 +391,13 @@
"translation": "with cause:",
"translatorComment": "Copied from source.",
"fuzzy": true
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": "An internal error occurred",
+ "translatorComment": "Copied from source.",
+ "fuzzy": true
}
]
} \ No newline at end of file
diff --git a/client/locales/es/messages.gotext.json b/client/locales/es/messages.gotext.json
index 18713f0..e19ad9e 100644
--- a/client/locales/es/messages.gotext.json
+++ b/client/locales/es/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "es",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": "Error de transición del estado interno"
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "El cliente se registró con un ID de cliente no válido: '{Name}'",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "El cliente se registró con una versión no válida: '{Version}'",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"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",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": "El cliente tiene un estado no válido"
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": "No se admite la detección de servidores/organizaciones con Let's Connect"
- },
- {
"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"
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": ""
@@ -272,21 +212,6 @@
"translation": ""
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"translation": "",
@@ -363,11 +288,6 @@
"translation": ""
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": ""
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": ""
@@ -378,8 +298,8 @@
"translation": ""
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
+ "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
+ "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
"translation": "",
"placeholders": [
{
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": ""
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": ""
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/locales/fr/messages.gotext.json b/client/locales/fr/messages.gotext.json
index a4de48c..ba67400 100644
--- a/client/locales/fr/messages.gotext.json
+++ b/client/locales/fr/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "fr",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": ""
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"id": "The log file with directory: '{Directory}' failed to initialize",
"message": "The log file with directory: '{Directory}' failed to initialize",
"translation": "",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": ""
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": ""
- },
- {
"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": ""
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": ""
@@ -272,21 +212,6 @@
"translation": ""
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"translation": "",
@@ -363,11 +288,6 @@
"translation": ""
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": ""
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": ""
@@ -378,8 +298,8 @@
"translation": ""
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
+ "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
+ "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
"translation": "",
"placeholders": [
{
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": ""
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": ""
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/locales/it/messages.gotext.json b/client/locales/it/messages.gotext.json
index 454e6af..2691bff 100644
--- a/client/locales/it/messages.gotext.json
+++ b/client/locales/it/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "it",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": ""
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"id": "The log file with directory: '{Directory}' failed to initialize",
"message": "The log file with directory: '{Directory}' failed to initialize",
"translation": "",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": ""
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": ""
- },
- {
"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": ""
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": ""
@@ -272,21 +212,6 @@
"translation": ""
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"translation": "",
@@ -363,11 +288,6 @@
"translation": ""
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": ""
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": ""
@@ -378,8 +298,8 @@
"translation": ""
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
+ "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
+ "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
"translation": "",
"placeholders": [
{
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": ""
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": ""
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/locales/nl/messages.gotext.json b/client/locales/nl/messages.gotext.json
index 911f9fa..685b045 100644
--- a/client/locales/nl/messages.gotext.json
+++ b/client/locales/nl/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "nl",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": "Er is een fout opgetreden in de interne staat"
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "De client heeft zich geregistreerd met een onjuiste identiteit: '{Name}'",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "De client heeft zich geregistreerd met een onjuiste versie: '{Version}'",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"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",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": "De client heeft een onjuiste staat"
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": "Servers of organisaties verkrijgen met de Let's Connect client wordt niet ondersteund"
- },
- {
"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"
@@ -169,7 +124,7 @@
{
"id": "The identifier that was passed to the library is incorrect",
"message": "The identifier that was passed to the library is incorrect",
- "translation": "De identieit die aan de library werd gegeven is niet correct"
+ "translation": ""
},
{
"id": "Could not retrieve institute access server with URL: '{Identifier}' from discovery",
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "Het server type: '{Type}' kan niet toegevoegd worden",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": "De VPN configuratie kon niet opgehaald worden"
@@ -272,24 +212,9 @@
"translation": "Het huidig profiel kan niet gevonden worden"
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "{Type} is niet een geldig server type",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
- "translation": "De identiteit: '{Identifier}' voor server met type: '{Type}' is niet geldig",
+ "translation": "",
"placeholders": [
{
"id": "Identifier",
@@ -332,7 +257,7 @@
{
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid for removal",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid for removal",
- "translation": "Identiteit: '{Identifier}' voor server met type: '{Type}' is niet geldig om verwijderd te worden",
+ "translation": "",
"placeholders": [
{
"id": "Identifier",
@@ -363,11 +288,6 @@
"translation": "De VPN connectie is niet volledig opgeruimd"
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": "Er kan geen locatie ingesteld worden met de Let's Connect! client"
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": "Er is geen \"secure internet\" server beschikbaar om de locatie voor in te stellen"
@@ -378,9 +298,9 @@
"translation": "De huidige server kon niet opgehaald worden om de sessie te hernieuwen"
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "translation": "Het failovermechanisme kon niet vervuld worden met gateway: '{Gateway}' en MTU: '{Mtu}'",
+ "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",
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "De interne staat kon niet bijgewerkt worden van: '{StateNamecurr}' naar '{StateNamestate}'",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": "Er is een time-out opgetreden in de verbinding. Controleer uw internetverbinding"
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": "met oorzaak:"
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/locales/sl/messages.gotext.json b/client/locales/sl/messages.gotext.json
index e58a977..0b10785 100644
--- a/client/locales/sl/messages.gotext.json
+++ b/client/locales/sl/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "sl",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": "Napaka prehoda notranjega stanja"
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "Odjemalec se je registriral z napačnim ID-jem '{Name}'",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "Odjemalec se je registriral z napačno verzijo '{Version}'",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"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}'",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": "Odjemalec ima neveljavno stanje"
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": "Let's Connect ne podpira kataloga strežnikov/organizacij"
- },
- {
"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"
@@ -169,7 +124,7 @@
{
"id": "The identifier that was passed to the library is incorrect",
"message": "The identifier that was passed to the library is incorrect",
- "translation": "ID poslan knjižnici je napačen"
+ "translation": ""
},
{
"id": "Could not retrieve institute access server with URL: '{Identifier}' from discovery",
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "Vrsta strežnika '{Type}' ni veljavna za dodajanje",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": "Napaka pri prenosu nastavitev VPN"
@@ -272,24 +212,9 @@
"translation": "Izbranega profila ni bilo mogoče najti"
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "{Type} ni veljavna vrsta strežnika",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
- "translation": "ID '{Identifier}' za strežnik vrste '{Type}' ni veljaven",
+ "translation": "",
"placeholders": [
{
"id": "Identifier",
@@ -332,7 +257,7 @@
{
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid for removal",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid for removal",
- "translation": "ID '{Identifier}' strežnika vrste '{Type}' ni veljaven za odstranitev",
+ "translation": "",
"placeholders": [
{
"id": "Identifier",
@@ -363,11 +288,6 @@
"translation": "Napaka pri čiščenju povezave VPN za izbrani strežnik"
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": "Let's Connect! ne podpira nastavljanje varnega spleta"
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": "Za izbiro lokacije ni na voljo nobenega strežnika za varni splet"
@@ -378,9 +298,9 @@
"translation": "Napaka pri ugotavljanju izbranega strežnika za podaljšanje seje"
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "translation": "Failover preko prehoda '{Gateway}' in z MTU-jem '{Mtu}' se ni zaključil",
+ "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",
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "Prehod notranjega stanja iz {StateNamecurr} v {StateNamestate}, ki ga je zahteval odjemalec, ni uspel",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": "čas je potekel"
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": "; razlog:"
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/locales/uk/messages.gotext.json b/client/locales/uk/messages.gotext.json
index 653c9c7..daa83e0 100644
--- a/client/locales/uk/messages.gotext.json
+++ b/client/locales/uk/messages.gotext.json
@@ -2,41 +2,6 @@
"language": "uk",
"messages": [
{
- "id": "Internal state transition error",
- "message": "Internal state transition error",
- "translation": ""
- },
- {
- "id": "The client registered with an invalid client ID: '{Name}'",
- "message": "The client registered with an invalid client ID: '{Name}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Name",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "name"
- }
- ]
- },
- {
- "id": "The client registered with an invalid version: '{Version}'",
- "message": "The client registered with an invalid version: '{Version}'",
- "translation": "",
- "placeholders": [
- {
- "id": "Version",
- "string": "%[1]v",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "version"
- }
- ]
- },
- {
"id": "The log file with directory: '{Directory}' failed to initialize",
"message": "The log file with directory: '{Directory}' failed to initialize",
"translation": "",
@@ -52,16 +17,6 @@
]
},
{
- "id": "Client has an invalid state",
- "message": "Client has an invalid state",
- "translation": ""
- },
- {
- "id": "Server/organization discovery with Let's Connect is not supported",
- "message": "Server/organization discovery with Let's Connect is not supported",
- "translation": ""
- },
- {
"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": ""
@@ -247,21 +202,6 @@
]
},
{
- "id": "Server type: '{Type}' is not valid to be added",
- "message": "Server type: '{Type}' is not valid to be added",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "The VPN configuration could not be obtained",
"message": "The VPN configuration could not be obtained",
"translation": ""
@@ -272,21 +212,6 @@
"translation": ""
},
{
- "id": "Not a valid server type: {Type}",
- "message": "Not a valid server type: {Type}",
- "translation": "",
- "placeholders": [
- {
- "id": "Type",
- "string": "%[1]v",
- "type": "github.com/eduvpn/eduvpn-common/types/server.Type",
- "underlyingType": "int8",
- "argNum": 1,
- "expr": "_type"
- }
- ]
- },
- {
"id": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"message": "Identifier: '{Identifier}' for server with type: '{Type}' is not valid",
"translation": "",
@@ -363,11 +288,6 @@
"translation": ""
},
{
- "id": "Setting a secure internet location with Let's Connect! is not supported",
- "message": "Setting a secure internet location with Let's Connect! is not supported",
- "translation": ""
- },
- {
"id": "No secure internet server available to set a location for",
"message": "No secure internet server available to set a location for",
"translation": ""
@@ -378,8 +298,8 @@
"translation": ""
},
{
- "id": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
- "message": "Failover failed to complete with gateway: '{Gateway}' and mtu: '{Mtu}'",
+ "id": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
+ "message": "Failover failed to complete with gateway: '{Gateway}' and MTU: '{Mtu}'",
"translation": "",
"placeholders": [
{
@@ -401,29 +321,6 @@
]
},
{
- "id": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "message": "Failed internal state transition requested by the client from: '{StateNamecurr}' to '{StateNamestate}'",
- "translation": "",
- "placeholders": [
- {
- "id": "StateNamecurr",
- "string": "%[1]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 1,
- "expr": "GetStateName(curr)"
- },
- {
- "id": "StateNamestate",
- "string": "%[2]s",
- "type": "string",
- "underlyingType": "string",
- "argNum": 2,
- "expr": "GetStateName(state)"
- }
- ]
- },
- {
"id": "timeout reached",
"message": "timeout reached",
"translation": ""
@@ -432,6 +329,11 @@
"id": "with cause:",
"message": "with cause:",
"translation": ""
+ },
+ {
+ "id": "An internal error occurred",
+ "message": "An internal error occurred",
+ "translation": ""
}
]
} \ No newline at end of file
diff --git a/client/zgotext.go b/client/zgotext.go
index d63400d..645df2c 100644
--- a/client/zgotext.go
+++ b/client/zgotext.go
@@ -46,49 +46,41 @@ func init() {
}
var messageKeyToIndex = map[string]int{
- "An error occurred after getting the discovery files for the list of organizations": 6,
- "An error occurred after getting the discovery files for the list of servers": 7,
- "Client has an invalid state": 4,
- "Could not retrieve institute access server with URL: '%s' from discovery": 18,
- "Failed internal state transition requested by the client from: '%s' to '%s'": 37,
- "Failed to cleanup the VPN connection for the current server": 32,
- "Failed to get current server for renewing the session": 35,
- "Failed to get the current server to cleanup the connection": 31,
- "Failed to set the server with identifier: '%s' as the current": 29,
- "Failover failed to complete with gateway: '%s' and mtu: '%d'": 36,
- "Identifier: '%s' for server with type: '%d' is not valid": 27,
- "Identifier: '%s' for server with type: '%d' is not valid for removal": 30,
- "Internal state transition error": 0,
- "No secure internet server available to set a location for": 34,
- "No suitable profiles could be found": 14,
- "Not a valid server type: %v": 26,
- "Profile with ID: '%s' could not be obtained from the server": 16,
- "Profile with ID: '%s' could not be set": 15,
- "Server type: '%v' is not valid to be added": 23,
- "Server/organization discovery with Let's Connect is not supported": 5,
- "Setting a secure internet location with Let's Connect! is not supported": 33,
- "The VPN configuration could not be obtained": 24,
- "The authorization procedure failed to complete": 12,
- "The client registered with an invalid client ID: '%v'": 1,
- "The client registered with an invalid version: '%v'": 2,
- "The client tried to autoconnect to the VPN server: %s, but no secure internet location is found. Please manually connect again": 9,
- "The client tried to autoconnect to the VPN server: %s, but no valid profiles were found. Please manually connect again": 13,
- "The client tried to autoconnect to the VPN server: %s, but you need to authorizate again. Please manually connect again": 11,
- "The current profile could not be found": 25,
- "The current server could not be found when getting it for expiry": 8,
- "The custom server with URL: '%s' could not be added": 22,
- "The identifier that was passed to the library is incorrect": 17,
- "The institute access server with URL: '%s' could not be added": 19,
- "The log file with directory: '%s' failed to initialize": 3,
- "The operation for getting a VPN configuration was canceled": 28,
- "The secure internet location could not be set": 10,
- "The secure internet server with organisation ID: '%s' could not be added": 21,
- "The secure internet server with organisation ID: '%s' could not be retrieved from discovery": 20,
- "timeout reached": 38,
- "with cause:": 39,
+ "An error occurred after getting the discovery files for the list of organizations": 1,
+ "An error occurred after getting the discovery files for the list of servers": 2,
+ "An internal error occurred": 31,
+ "Could not retrieve institute access server with URL: '%s' from discovery": 13,
+ "Failed to cleanup the VPN connection for the current server": 25,
+ "Failed to get current server for renewing the session": 27,
+ "Failed to get the current server to cleanup the connection": 24,
+ "Failed to set the server with identifier: '%s' as the current": 22,
+ "Failover failed to complete with gateway: '%s' and MTU: '%d'": 28,
+ "Identifier: '%s' for server with type: '%d' is not valid": 20,
+ "Identifier: '%s' for server with type: '%d' is not valid for removal": 23,
+ "No secure internet server available to set a location for": 26,
+ "No suitable profiles could be found": 9,
+ "Profile with ID: '%s' could not be obtained from the server": 11,
+ "Profile with ID: '%s' could not be set": 10,
+ "The VPN configuration could not be obtained": 18,
+ "The authorization procedure failed to complete": 7,
+ "The client tried to autoconnect to the VPN server: %s, but no secure internet location is found. Please manually connect again": 4,
+ "The client tried to autoconnect to the VPN server: %s, but no valid profiles were found. Please manually connect again": 8,
+ "The client tried to autoconnect to the VPN server: %s, but you need to authorizate again. Please manually connect again": 6,
+ "The current profile could not be found": 19,
+ "The current server could not be found when getting it for expiry": 3,
+ "The custom server with URL: '%s' could not be added": 17,
+ "The identifier that was passed to the library is incorrect": 12,
+ "The institute access server with URL: '%s' could not be added": 14,
+ "The log file with directory: '%s' failed to initialize": 0,
+ "The operation for getting a VPN configuration was canceled": 21,
+ "The secure internet location could not be set": 5,
+ "The secure internet server with organisation ID: '%s' could not be added": 16,
+ "The secure internet server with organisation ID: '%s' could not be retrieved from discovery": 15,
+ "timeout reached": 29,
+ "with cause:": 30,
}
-var daIndex = []uint32{ // 41 elements
+var daIndex = []uint32{ // 33 elements
// Entry 0 - 1F
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -99,14 +91,12 @@ var daIndex = []uint32{ // 41 elements
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
// Entry 20 - 3F
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000,
-} // Size: 188 bytes
+} // Size: 156 bytes
const daData string = ""
-var deIndex = []uint32{ // 41 elements
+var deIndex = []uint32{ // 33 elements
// Entry 0 - 1F
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -117,94 +107,78 @@ var deIndex = []uint32{ // 41 elements
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
// Entry 20 - 3F
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000,
-} // Size: 188 bytes
+} // Size: 156 bytes
const deData string = ""
-var enIndex = []uint32{ // 41 elements
+var enIndex = []uint32{ // 33 elements
// Entry 0 - 1F
- 0x00000000, 0x00000020, 0x00000059, 0x00000090,
- 0x000000ca, 0x000000e6, 0x00000128, 0x0000017a,
- 0x000001c6, 0x00000207, 0x00000289, 0x000002b7,
- 0x00000332, 0x00000361, 0x000003db, 0x000003ff,
- 0x00000429, 0x00000468, 0x000004a3, 0x000004ef,
- 0x00000530, 0x0000058f, 0x000005db, 0x00000612,
- 0x00000640, 0x0000066c, 0x00000693, 0x000006b2,
- 0x000006f1, 0x0000072c, 0x0000076d, 0x000007b8,
+ 0x00000000, 0x0000003a, 0x0000008c, 0x000000d8,
+ 0x00000119, 0x0000019b, 0x000001c9, 0x00000244,
+ 0x00000273, 0x000002ed, 0x00000311, 0x0000033b,
+ 0x0000037a, 0x000003b5, 0x00000401, 0x00000442,
+ 0x000004a1, 0x000004ed, 0x00000524, 0x00000550,
+ 0x00000577, 0x000005b6, 0x000005f1, 0x00000632,
+ 0x0000067d, 0x000006b8, 0x000006f4, 0x0000072e,
+ 0x00000764, 0x000007a7, 0x000007b7, 0x000007c3,
// Entry 20 - 3F
- 0x000007f3, 0x0000082f, 0x00000877, 0x000008b1,
- 0x000008e7, 0x0000092a, 0x0000097c, 0x0000098c,
- 0x00000998,
-} // Size: 188 bytes
+ 0x000007de,
+} // Size: 156 bytes
-const enData string = "" + // Size: 2456 bytes
- "\x02Internal state transition error\x02The client registered with an inv" +
- "alid client ID: '%[1]v'\x02The client registered with an invalid version" +
- ": '%[1]v'\x02The log file with directory: '%[1]s' failed to initialize" +
- "\x02Client has an invalid state\x02Server/organization discovery with Le" +
- "t's Connect is not supported\x02An error occurred after getting the disc" +
- "overy files for the list of organizations\x02An error occurred after get" +
- "ting the discovery files for the list of servers\x02The current server c" +
- "ould not be found when getting it for expiry\x02The client tried to auto" +
- "connect to the VPN server: %[1]s, but no secure internet location is fou" +
- "nd. Please manually connect again\x02The secure internet location could " +
- "not be set\x02The client tried to autoconnect to the VPN server: %[1]s, " +
- "but you need to authorizate again. Please manually connect again\x02The " +
- "authorization procedure failed to complete\x02The client tried to autoco" +
- "nnect to the VPN server: %[1]s, but no valid profiles were found. Please" +
- " manually connect again\x02No suitable profiles could be found\x02Profil" +
- "e with ID: '%[1]s' could not be set\x02Profile with ID: '%[1]s' could no" +
- "t be obtained from the server\x02The identifier that was passed to the l" +
- "ibrary is incorrect\x02Could not retrieve institute access server with U" +
- "RL: '%[1]s' from discovery\x02The institute access server with URL: '%[1" +
- "]s' could not be added\x02The secure internet server with organisation I" +
- "D: '%[1]s' could not be retrieved from discovery\x02The secure internet " +
- "server with organisation ID: '%[1]s' could not be added\x02The custom se" +
- "rver with URL: '%[1]s' could not be added\x02Server type: '%[1]v' is not" +
- " valid to be added\x02The VPN configuration could not be obtained\x02The" +
- " current profile could not be found\x02Not a valid server type: %[1]v" +
- "\x02Identifier: '%[1]s' for server with type: '%[2]d' is not valid\x02Th" +
- "e operation for getting a VPN configuration was canceled\x02Failed to se" +
- "t the server with identifier: '%[1]s' as the current\x02Identifier: '%[1" +
- "]s' for server with type: '%[2]d' is not valid for removal\x02Failed to " +
- "get the current server to cleanup the connection\x02Failed to cleanup th" +
- "e VPN connection for the current server\x02Setting a secure internet loc" +
- "ation with Let's Connect! is not supported\x02No secure internet server " +
- "available to set a location for\x02Failed to get current server for rene" +
- "wing the session\x02Failover failed to complete with gateway: '%[1]s' an" +
- "d mtu: '%[2]d'\x02Failed internal state transition requested by the clie" +
- "nt from: '%[1]s' to '%[2]s'\x02timeout reached\x02with cause:"
+const enData string = "" + // Size: 2014 bytes
+ "\x02The log file with directory: '%[1]s' failed to initialize\x02An erro" +
+ "r occurred after getting the discovery files for the list of organizatio" +
+ "ns\x02An error occurred after getting the discovery files for the list o" +
+ "f servers\x02The current server could not be found when getting it for e" +
+ "xpiry\x02The client tried to autoconnect to the VPN server: %[1]s, but n" +
+ "o secure internet location is found. Please manually connect again\x02Th" +
+ "e secure internet location could not be set\x02The client tried to autoc" +
+ "onnect to the VPN server: %[1]s, but you need to authorizate again. Plea" +
+ "se manually connect again\x02The authorization procedure failed to compl" +
+ "ete\x02The client tried to autoconnect to the VPN server: %[1]s, but no " +
+ "valid profiles were found. Please manually connect again\x02No suitable " +
+ "profiles could be found\x02Profile with ID: '%[1]s' could not be set\x02" +
+ "Profile with ID: '%[1]s' could not be obtained from the server\x02The id" +
+ "entifier that was passed to the library is incorrect\x02Could not retrie" +
+ "ve institute access server with URL: '%[1]s' from discovery\x02The insti" +
+ "tute access server with URL: '%[1]s' could not be added\x02The secure in" +
+ "ternet server with organisation ID: '%[1]s' could not be retrieved from " +
+ "discovery\x02The secure internet server with organisation ID: '%[1]s' co" +
+ "uld not be added\x02The custom server with URL: '%[1]s' could not be add" +
+ "ed\x02The VPN configuration could not be obtained\x02The current profile" +
+ " could not be found\x02Identifier: '%[1]s' for server with type: '%[2]d'" +
+ " is not valid\x02The operation for getting a VPN configuration was cance" +
+ "led\x02Failed to set the server with identifier: '%[1]s' as the current" +
+ "\x02Identifier: '%[1]s' for server with type: '%[2]d' is not valid for r" +
+ "emoval\x02Failed to get the current server to cleanup the connection\x02" +
+ "Failed to cleanup the VPN connection for the current server\x02No secure" +
+ " internet server available to set a location for\x02Failed to get curren" +
+ "t server for renewing the session\x02Failover failed to complete with ga" +
+ "teway: '%[1]s' and MTU: '%[2]d'\x02timeout reached\x02with cause:\x02An " +
+ "internal error occurred"
-var esIndex = []uint32{ // 41 elements
+var esIndex = []uint32{ // 33 elements
// Entry 0 - 1F
- 0x00000000, 0x00000028, 0x00000069, 0x000000a6,
- 0x000000f0, 0x00000116, 0x00000160, 0x000001c1,
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
+ 0x00000000, 0x0000004a, 0x000000ab, 0x00000104,
+ 0x00000104, 0x00000104, 0x00000104, 0x00000104,
+ 0x00000104, 0x00000104, 0x00000104, 0x00000104,
+ 0x00000104, 0x00000104, 0x00000104, 0x00000104,
+ 0x00000104, 0x00000104, 0x00000104, 0x00000104,
+ 0x00000104, 0x00000104, 0x00000104, 0x00000104,
+ 0x00000104, 0x00000104, 0x00000104, 0x00000104,
+ 0x00000104, 0x00000104, 0x00000104, 0x00000104,
// Entry 20 - 3F
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
- 0x0000021a, 0x0000021a, 0x0000021a, 0x0000021a,
- 0x0000021a,
-} // Size: 188 bytes
+ 0x00000104,
+} // Size: 156 bytes
-const esData string = "" + // Size: 538 bytes
- "\x02Error de transición del estado interno\x02El cliente se registró con" +
- " un ID de cliente no válido: '%[1]v'\x02El cliente se registró con una v" +
- "ersión no válida: '%[1]v'\x02El archivo de registro con el directorio: '" +
- "%[1]s' no se puede inicializar\x02El cliente tiene un estado no válido" +
- "\x02No se admite la detección de servidores/organizaciones con Let's Con" +
- "nect\x02Se ha producido un error al obtener los archivos de detección de" +
- " la lista de las organizaciones\x02Se ha producido un error al obtener l" +
- "os archivos de detección de la lista de servidores"
+const esData string = "" + // Size: 260 bytes
+ "\x02El archivo de registro con el directorio: '%[1]s' no se puede inicia" +
+ "lizar\x02Se ha producido un error al obtener los archivos de detección d" +
+ "e la lista de las organizaciones\x02Se ha producido un error al obtener " +
+ "los archivos de detección de la lista de servidores"
-var frIndex = []uint32{ // 41 elements
+var frIndex = []uint32{ // 33 elements
// Entry 0 - 1F
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -215,14 +189,12 @@ var frIndex = []uint32{ // 41 elements
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
// Entry 20 - 3F
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000,
-} // Size: 188 bytes
+} // Size: 156 bytes
const frData string = ""
-var itIndex = []uint32{ // 41 elements
+var itIndex = []uint32{ // 33 elements
// Entry 0 - 1F
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -233,114 +205,87 @@ var itIndex = []uint32{ // 41 elements
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
// Entry 20 - 3F
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000,
-} // Size: 188 bytes
+} // Size: 156 bytes
const itData string = ""
-var nlIndex = []uint32{ // 41 elements
+var nlIndex = []uint32{ // 33 elements
// Entry 0 - 1F
- 0x00000000, 0x0000002e, 0x00000076, 0x000000ba,
- 0x000000f6, 0x00000119, 0x0000016f, 0x000001b7,
- 0x000001fa, 0x00000238, 0x00000238, 0x0000027a,
- 0x0000027a, 0x000002aa, 0x000002aa, 0x000002de,
- 0x00000318, 0x00000364, 0x000003a1, 0x000003f5,
- 0x0000043c, 0x00000496, 0x000004e3, 0x00000519,
- 0x0000054d, 0x0000057b, 0x000005a7, 0x000005cc,
- 0x00000610, 0x00000650, 0x0000069d, 0x000006f6,
+ 0x00000000, 0x0000003c, 0x00000084, 0x000000c7,
+ 0x00000105, 0x00000105, 0x00000147, 0x00000147,
+ 0x00000177, 0x00000177, 0x000001ab, 0x000001e5,
+ 0x00000231, 0x00000231, 0x00000285, 0x000002cc,
+ 0x00000326, 0x00000373, 0x000003a9, 0x000003d7,
+ 0x00000403, 0x00000403, 0x00000443, 0x00000490,
+ 0x00000490, 0x000004db, 0x00000507, 0x00000558,
+ 0x0000059f, 0x0000059f, 0x000005f0, 0x000005fd,
// Entry 20 - 3F
- 0x00000741, 0x0000076d, 0x000007af, 0x00000800,
- 0x00000847, 0x0000089b, 0x000008e1, 0x00000932,
- 0x0000093f,
-} // Size: 188 bytes
+ 0x000005fd,
+} // Size: 156 bytes
-const nlData string = "" + // Size: 2367 bytes
- "\x02Er is een fout opgetreden in de interne staat\x02De client heeft zic" +
- "h geregistreerd met een onjuiste identiteit: '%[1]v'\x02De client heeft " +
- "zich geregistreerd met een onjuiste versie: '%[1]v'\x02Het log bestand m" +
- "et pad: '%[1]s' kon niet aangemaakt worden\x02De client heeft een onjuis" +
- "te staat\x02Servers of organisaties verkrijgen met de Let's Connect clie" +
- "nt wordt niet ondersteund\x02Er is een fout opgetreden met het ophalen v" +
- "an de lijst van organisaties\x02Er is een fout opgetreden met het ophale" +
- "n van de lijst van servers\x02De huidige VPN server kon niet worden gevo" +
- "nden voor expiratie\x02De locatie voor de \x22secure internet\x22 server" +
- " kon niet worden gezet\x02Het authorizatie proces kon niet vervuld worde" +
- "n\x02Er zijn geen profielen gevonden om mee te verbinden\x02Het profiel " +
- "met identiteit: '%[1]s' kon niet gezet worden\x02Het profiel met identit" +
- "eit: '%[1]s' kon niet opgehaald worden van de server\x02De identieit die" +
- " aan de library werd gegeven is niet correct\x02De institute access serv" +
- "er met URL: '%[1]s' kon niet opgehaald worden van discovery\x02De instit" +
- "ute access server met URL: '%[1]s' kon niet toegevoegd worden\x02De secu" +
- "re internet server met identiteit: '%[1]s' kon niet opgehaald worden van" +
- " discovery\x02De secure internet server met identiteit: '%[1]s' kon niet" +
- " toegevoegd worden\x02De server met URL: '%[1]s' kon niet toegevoegd wor" +
- "den\x02Het server type: '%[1]v' kan niet toegevoegd worden\x02De VPN con" +
- "figuratie kon niet opgehaald worden\x02Het huidig profiel kan niet gevon" +
- "den worden\x02%[1]v is niet een geldig server type\x02De identiteit: '%[" +
- "1]s' voor server met type: '%[2]d' is niet geldig\x02De procedure om een" +
- " VPN configuratie op te halen is geannuleerd\x02De server met identiteit" +
- ": '%[1]s' kon niet als de hudige server gezet worden\x02Identiteit: '%[1" +
- "]s' voor server met type: '%[2]d' is niet geldig om verwijderd te worden" +
- "\x02De huidige server kon niet opgehaald worden om de connectie te verwi" +
- "jderen\x02De VPN connectie is niet volledig opgeruimd\x02Er kan geen loc" +
- "atie ingesteld worden met de Let's Connect! client\x02Er is geen \x22sec" +
- "ure internet\x22 server beschikbaar om de locatie voor in te stellen\x02" +
- "De huidige server kon niet opgehaald worden om de sessie te hernieuwen" +
- "\x02Het failovermechanisme kon niet vervuld worden met gateway: '%[1]s' " +
- "en MTU: '%[2]d'\x02De interne staat kon niet bijgewerkt worden van: '%[1" +
- "]s' naar '%[2]s'\x02Er is een time-out opgetreden in de verbinding. Cont" +
- "roleer uw internetverbinding\x02met oorzaak:"
+const nlData string = "" + // Size: 1533 bytes
+ "\x02Het log bestand met pad: '%[1]s' kon niet aangemaakt worden\x02Er is" +
+ " een fout opgetreden met het ophalen van de lijst van organisaties\x02Er" +
+ " is een fout opgetreden met het ophalen van de lijst van servers\x02De h" +
+ "uidige VPN server kon niet worden gevonden voor expiratie\x02De locatie " +
+ "voor de \x22secure internet\x22 server kon niet worden gezet\x02Het auth" +
+ "orizatie proces kon niet vervuld worden\x02Er zijn geen profielen gevond" +
+ "en om mee te verbinden\x02Het profiel met identiteit: '%[1]s' kon niet g" +
+ "ezet worden\x02Het profiel met identiteit: '%[1]s' kon niet opgehaald wo" +
+ "rden van de server\x02De institute access server met URL: '%[1]s' kon ni" +
+ "et opgehaald worden van discovery\x02De institute access server met URL:" +
+ " '%[1]s' kon niet toegevoegd worden\x02De secure internet server met ide" +
+ "ntiteit: '%[1]s' kon niet opgehaald worden van discovery\x02De secure in" +
+ "ternet server met identiteit: '%[1]s' kon niet toegevoegd worden\x02De s" +
+ "erver met URL: '%[1]s' kon niet toegevoegd worden\x02De VPN configuratie" +
+ " kon niet opgehaald worden\x02Het huidig profiel kan niet gevonden worde" +
+ "n\x02De procedure om een VPN configuratie op te halen is geannuleerd\x02" +
+ "De server met identiteit: '%[1]s' kon niet als de hudige server gezet wo" +
+ "rden\x02De huidige server kon niet opgehaald worden om de connectie te v" +
+ "erwijderen\x02De VPN connectie is niet volledig opgeruimd\x02Er is geen " +
+ "\x22secure internet\x22 server beschikbaar om de locatie voor in te stel" +
+ "len\x02De huidige server kon niet opgehaald worden om de sessie te herni" +
+ "euwen\x02Er is een time-out opgetreden in de verbinding. Controleer uw i" +
+ "nternetverbinding\x02met oorzaak:"
-var slIndex = []uint32{ // 41 elements
+var slIndex = []uint32{ // 33 elements
// Entry 0 - 1F
- 0x00000000, 0x00000021, 0x00000058, 0x0000008f,
- 0x000000cb, 0x000000eb, 0x00000125, 0x00000165,
- 0x000001a5, 0x000001e1, 0x000001e1, 0x00000211,
- 0x00000211, 0x00000232, 0x00000232, 0x0000025b,
- 0x0000028e, 0x000002ce, 0x000002ef, 0x00000347,
- 0x00000391, 0x000003e9, 0x00000437, 0x00000473,
- 0x000004a5, 0x000004c7, 0x000004ef, 0x00000512,
- 0x00000544, 0x0000057d, 0x000005ab, 0x000005ea,
+ 0x00000000, 0x0000003c, 0x0000007c, 0x000000bc,
+ 0x000000f8, 0x000000f8, 0x00000128, 0x00000128,
+ 0x00000149, 0x00000149, 0x00000172, 0x000001a5,
+ 0x000001e5, 0x000001e5, 0x0000023d, 0x00000287,
+ 0x000002df, 0x0000032d, 0x00000369, 0x0000038b,
+ 0x000003b3, 0x000003b3, 0x000003ec, 0x0000041a,
+ 0x0000041a, 0x0000045d, 0x00000496, 0x000004d8,
+ 0x0000051a, 0x0000051a, 0x0000052a, 0x00000534,
// Entry 20 - 3F
- 0x0000062d, 0x00000666, 0x0000069c, 0x000006de,
- 0x00000720, 0x00000765, 0x000007b6, 0x000007c6,
- 0x000007d0,
-} // Size: 188 bytes
+ 0x00000534,
+} // Size: 156 bytes
-const slData string = "" + // Size: 2000 bytes
- "\x02Napaka prehoda notranjega stanja\x02Odjemalec se je registriral z na" +
- "pačnim ID-jem '%[1]v'\x02Odjemalec se je registriral z napačno verzijo '" +
- "%[1]v'\x02Napaka pri vzpostavitvi datoteke dnevnika v imeniku '%[1]s'" +
- "\x02Odjemalec ima neveljavno stanje\x02Let's Connect ne podpira kataloga" +
- " strežnikov/organizacij\x02Pri nalaganju datotek kataloga organizacij je" +
- " prišlo do napake\x02Pri nalaganju datotek kataloga strežnikov je prišlo" +
- " do napake\x02Ugotavljanje preteka ne more določiti izbranega strežnika" +
- "\x02Napaka pri nastavljanju lokacije za varni splet\x02Napaka pri postop" +
- "ku avtorizacije\x02Ustreznih profilov ni bilo mogoče najti\x02Profila z " +
- "ID-jem '%[1]s' ni bilo mogoče nastaviti\x02Profila z ID-jem '%[1]s' ni b" +
- "ilo mogoče naložiti s strežnika\x02ID poslan knjižnici je napačen\x02Str" +
- "ežnika z naslovom URL '%[1]s' za dostop do ustanove ni bilo možno najti " +
- "v katalogu\x02Strežnika z naslovom '%[1]s' za dostop do ustanove ni bilo" +
- " možno dodati\x02Strežnika za varni splet organizacije z ID-jem '%[1]s' " +
- "ni bilo možno najti v katalogu\x02Strežnika za varni splet organizacije " +
- "z ID-jem '%[1]s' ni bilo možno dodati\x02Svojega strežnika z naslovom '%" +
- "[1]s' ni bilo možno dodati\x02Vrsta strežnika '%[1]v' ni veljavna za dod" +
- "ajanje\x02Napaka pri prenosu nastavitev VPN\x02Izbranega profila ni bilo" +
- " mogoče najti\x02%[1]v ni veljavna vrsta strežnika\x02ID '%[1]s' za stre" +
- "žnik vrste '%[2]d' ni veljaven\x02Operacija za nalaganje nastavitev VPN" +
- " je bila preklicana\x02Napaka pri izbiri strežnika z ID-jem '%[1]s'\x02I" +
- "D '%[1]s' strežnika vrste '%[2]d' ni veljaven za odstranitev\x02Napaka p" +
- "ri določanju izbranega strežnika za čiščenje povezave\x02Napaka pri čišč" +
- "enju povezave VPN za izbrani strežnik\x02Let's Connect! ne podpira nasta" +
- "vljanje varnega spleta\x02Za izbiro lokacije ni na voljo nobenega strežn" +
- "ika za varni splet\x02Napaka pri ugotavljanju izbranega strežnika za pod" +
- "aljšanje seje\x02Failover preko prehoda '%[1]s' in z MTU-jem '%[2]d' se " +
- "ni zaključil\x02Prehod notranjega stanja iz %[1]s v %[2]s, ki ga je zaht" +
- "eval odjemalec, ni uspel\x02čas je potekel\x02; razlog:"
+const slData string = "" + // Size: 1332 bytes
+ "\x02Napaka pri vzpostavitvi datoteke dnevnika v imeniku '%[1]s'\x02Pri n" +
+ "alaganju datotek kataloga organizacij je prišlo do napake\x02Pri nalagan" +
+ "ju datotek kataloga strežnikov je prišlo do napake\x02Ugotavljanje prete" +
+ "ka ne more določiti izbranega strežnika\x02Napaka pri nastavljanju lokac" +
+ "ije za varni splet\x02Napaka pri postopku avtorizacije\x02Ustreznih prof" +
+ "ilov ni bilo mogoče najti\x02Profila z ID-jem '%[1]s' ni bilo mogoče nas" +
+ "taviti\x02Profila z ID-jem '%[1]s' ni bilo mogoče naložiti s strežnika" +
+ "\x02Strežnika z naslovom URL '%[1]s' za dostop do ustanove ni bilo možno" +
+ " najti v katalogu\x02Strežnika z naslovom '%[1]s' za dostop do ustanove " +
+ "ni bilo možno dodati\x02Strežnika za varni splet organizacije z ID-jem '" +
+ "%[1]s' ni bilo možno najti v katalogu\x02Strežnika za varni splet organi" +
+ "zacije z ID-jem '%[1]s' ni bilo možno dodati\x02Svojega strežnika z nasl" +
+ "ovom '%[1]s' ni bilo možno dodati\x02Napaka pri prenosu nastavitev VPN" +
+ "\x02Izbranega profila ni bilo mogoče najti\x02Operacija za nalaganje nas" +
+ "tavitev VPN je bila preklicana\x02Napaka pri izbiri strežnika z ID-jem '" +
+ "%[1]s'\x02Napaka pri določanju izbranega strežnika za čiščenje povezave" +
+ "\x02Napaka pri čiščenju povezave VPN za izbrani strežnik\x02Za izbiro lo" +
+ "kacije ni na voljo nobenega strežnika za varni splet\x02Napaka pri ugota" +
+ "vljanju izbranega strežnika za podaljšanje seje\x02čas je potekel\x02; r" +
+ "azlog:"
-var ukIndex = []uint32{ // 41 elements
+var ukIndex = []uint32{ // 33 elements
// Entry 0 - 1F
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
@@ -351,11 +296,9 @@ var ukIndex = []uint32{ // 41 elements
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
// Entry 20 - 3F
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
- 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000,
-} // Size: 188 bytes
+} // Size: 156 bytes
const ukData string = ""
-// Total table size 9053 bytes (8KiB); checksum: DBDD93E6
+// Total table size 6543 bytes (6KiB); checksum: A3622DD3