Skip to content

Commit

Permalink
fix(vpn): added support link, mail & discord link
Browse files Browse the repository at this point in the history
  • Loading branch information
dinxsh authored and l-hellmann committed Oct 11, 2024
1 parent 38b89e0 commit 4590633
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/i18n/en.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ at https://docs.zerops.io/references/cli for further details.`,
VpnDisconnectionPromptNo: "VPN is active, you can disconnect using the 'zcli vpn down' command",
VpnCheckingConnection: "Checking VPN connection",
VpnPingFailed: fmt.Sprintf("Wireguard adapter was created, but we are not able to establish a connection,"+
"this could indicate a problem on our side. Please contact our support team %s or join our discord %s.", CustomerSupportLink, DiscordCommunityLink),
"this could indicate a problem on our side. Please contact our support team via %s, %s or join our discord %s.", CustomerSupportLink, CustomerSupportEmail, DiscordCommunityLink),

// vpn down
CmdHelpVpnDown: "the vpn down command.",
Expand Down
3 changes: 2 additions & 1 deletion src/i18n/i18n.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ func T(textConst string, args ...interface{}) string {
return translation
}

const CustomerSupportLink = "support@zerops.io"
const CustomerSupportLink = "https://support.zerops.io"
const CustomerSupportEmail = "support@zerops.io"
const DiscordCommunityLink = "https://discord.com/invite/WDvCZ54"

const (
Expand Down

0 comments on commit 4590633

Please sign in to comment.