mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-10 20:02:26 +00:00
change domain picker description and fix metadata title
This commit is contained in:
@@ -1198,7 +1198,8 @@
|
|||||||
"newtUpdateAvailableInfo": "A new version of Newt is available. Please update to the latest version for the best experience.",
|
"newtUpdateAvailableInfo": "A new version of Newt is available. Please update to the latest version for the best experience.",
|
||||||
"domainPickerEnterDomain": "Enter your domain",
|
"domainPickerEnterDomain": "Enter your domain",
|
||||||
"domainPickerPlaceholder": "myapp.example.com, api.v1.mydomain.com, or just myapp",
|
"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",
|
"domainPickerTabAll": "All",
|
||||||
"domainPickerTabOrganization": "Organization",
|
"domainPickerTabOrganization": "Organization",
|
||||||
"domainPickerTabProvided": "Provided",
|
"domainPickerTabProvided": "Provided",
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import { cache } from "react";
|
|||||||
import { getTranslations } from "next-intl/server";
|
import { getTranslations } from "next-intl/server";
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: `Auth - "Pangolin`,
|
title: `Auth - Pangolin`,
|
||||||
description: ""
|
description: ""
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -321,7 +321,9 @@ export default function DomainPicker({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<p className="text-xs text-muted-foreground">
|
<p className="text-xs text-muted-foreground">
|
||||||
{t("domainPickerDescription")}
|
{build === "saas"
|
||||||
|
? t("domainPickerDescriptionSaas")
|
||||||
|
: t("domainPickerDescription")}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user