diff --git a/messages/en-US.json b/messages/en-US.json index 5fe4417f..eee245cf 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -1198,7 +1198,8 @@ "newtUpdateAvailableInfo": "A new version of Newt is available. Please update to the latest version for the best experience.", "domainPickerEnterDomain": "Enter your domain", "domainPickerPlaceholder": "myapp.example.com, api.v1.mydomain.com, or just myapp", - "domainPickerDescription": "Enter a full domain, subdomain, or just a name to see available options", + "domainPickerDescription": "Enter the full domain of the resource to see available options.", + "domainPickerDescriptionSaas": "Enter a full domain, subdomain, or just a name to see available options", "domainPickerTabAll": "All", "domainPickerTabOrganization": "Organization", "domainPickerTabProvided": "Provided", diff --git a/src/app/auth/layout.tsx b/src/app/auth/layout.tsx index 2b524e71..d8763ba5 100644 --- a/src/app/auth/layout.tsx +++ b/src/app/auth/layout.tsx @@ -12,7 +12,7 @@ import { cache } from "react"; import { getTranslations } from "next-intl/server"; export const metadata: Metadata = { - title: `Auth - "Pangolin`, + title: `Auth - Pangolin`, description: "" }; diff --git a/src/components/DomainPicker.tsx b/src/components/DomainPicker.tsx index 18d992fc..d7b38794 100644 --- a/src/components/DomainPicker.tsx +++ b/src/components/DomainPicker.tsx @@ -321,7 +321,9 @@ export default function DomainPicker({ }} />
- {t("domainPickerDescription")} + {build === "saas" + ? t("domainPickerDescriptionSaas") + : t("domainPickerDescription")}