diff --git a/messages/en-US.json b/messages/en-US.json index 07025a58..d767d2fe 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -55,7 +55,7 @@ "siteDescription": "Create and manage sites to enable connectivity to private networks", "sitesBannerTitle": "Connect Any Network", "sitesBannerDescription": "A site is a connection to a remote network that allows Pangolin to provide access to resources, whether public or private, to users anywhere. Install the site network connector (Newt) anywhere you can run a binary or container to establish the connection.", - "sitesBannerButtonText": "Install Site", + "sitesBannerButtonText": "Install Site Connector", "approvalsBannerTitle": "Approve or Deny Device Access", "approvalsBannerDescription": "Review and approve or deny device access requests from users. When device approvals are required, users must get admin approval before their devices can connect to your organization's resources.", "approvalsBannerButtonText": "Learn More", @@ -79,8 +79,8 @@ "siteConfirmCopy": "I have copied the config", "searchSitesProgress": "Search sites...", "siteAdd": "Add Site", - "siteInstallNewt": "Install Newt", - "siteInstallNewtDescription": "Get Newt running on your system", + "siteInstallNewt": "Install Site", + "siteInstallNewtDescription": "Install the site connector for your system", "WgConfiguration": "WireGuard Configuration", "WgConfigurationDescription": "Use the following configuration to connect to the network", "operatingSystem": "Operating System", @@ -1545,8 +1545,8 @@ "addressDescription": "The internal address of the client. Must fall within the organization's subnet.", "selectSites": "Select sites", "sitesDescription": "The client will have connectivity to the selected sites", - "clientInstallOlm": "Install Olm", - "clientInstallOlmDescription": "Get Olm running on your system", + "clientInstallOlm": "Install Machine Client", + "clientInstallOlmDescription": "Install the machine client for your system", "clientOlmCredentials": "Credentials", "clientOlmCredentialsDescription": "This is how the client will authenticate with the server", "olmEndpoint": "Endpoint", diff --git a/src/components/olm-install-commands.tsx b/src/components/olm-install-commands.tsx index d4c27ae2..1728f528 100644 --- a/src/components/olm-install-commands.tsx +++ b/src/components/olm-install-commands.tsx @@ -43,11 +43,11 @@ export function OlmInstallCommands({ All: [ { title: t("install"), - command: `curl -fsSL https://static.pangolin.net/get-olm.sh | bash` + command: `curl -fsSL https://static.pangolin.net/get-cli.sh | bash` }, { title: t("run"), - command: `sudo olm --id ${id} --secret ${secret} --endpoint ${endpoint}` + command: `sudo pangolin up --id ${id} --secret ${secret} --endpoint ${endpoint} --attach` } ] },