add links to license

This commit is contained in:
miloschwartz
2025-10-14 14:31:22 -07:00
parent 8377434c08
commit 0f74107e86
3 changed files with 22 additions and 6 deletions

View File

@@ -1791,7 +1791,7 @@
}, },
"business": { "business": {
"title": "Business Use", "title": "Business Use",
"description": "For use within organizations, companies, or any commercial or revenue-generating activities." "description": "For use within organizations, companies, or commercial or revenue-generating activities."
} }
}, },
"steps": { "steps": {
@@ -1815,11 +1815,11 @@
"alerts": { "alerts": {
"commercialUseDisclosure": { "commercialUseDisclosure": {
"title": "Usage Disclosure", "title": "Usage Disclosure",
"description": "Select the license type that accurately reflects your intended use. Pangolin Enterprise is free for personal, non-commercial use only — limited to individuals generating less than $100,000 USD annually and not used in primary employment, business operations, or other commercial environments. All business or revenue-generating use requires a valid Business License and payment of the applicable licensing fee. Both personal and business users must comply with the Fossorial Commercial License Terms." "description": "Select the license tier that accurately reflects your intended use. The Personal License permits free use of the Software for individual, non-commercial or small-scale commercial activities with annual gross revenue under $100,000 USD. Any use beyond these limits — including use within a business, organization, or other revenue-generating environment — requires a valid Enterprise License and payment of the applicable licensing fee. All users, whether Personal or Enterprise, must comply with the Fossorial Commercial License Terms."
}, },
"trialPeriodInformation": { "trialPeriodInformation": {
"title": "Trial Period Information", "title": "Trial Period Information",
"description": "This license key is valid for 7 days as a trial period. For a long-term license key, please contact sales@fossorial.io." "description": "This License Key enables Enterprise features for a 7-day evaluation period. Continued access to Paid Features beyond the evaluation period requires activation under a valid Personal or Enterprise License. For Enterprise licensing, contact sales@fossorial.io."
} }
}, },
"form": { "form": {

View File

@@ -767,7 +767,21 @@ export default function GenerateLicenseKeyForm({
<AlertDescription> <AlertDescription>
{t( {t(
"generateLicenseKeyForm.alerts.commercialUseDisclosure.description" "generateLicenseKeyForm.alerts.commercialUseDisclosure.description"
)} ).split("Fossorial Commercial License Terms").map((part, index) => (
<span key={index}>
{part}
{index === 0 && (
<a
href="https://digpangolin.com/fcl.html"
target="_blank"
rel="noopener noreferrer"
className="text-primary hover:underline"
>
Fossorial Commercial License Terms
</a>
)}
</span>
))}
</AlertDescription> </AlertDescription>
</Alert> </Alert>
@@ -1229,7 +1243,7 @@ export default function GenerateLicenseKeyForm({
<div> <div>
I confirm that I am in compliance with the{" "} I confirm that I am in compliance with the{" "}
<a <a
href="https://digpangolin.com/fossorial-commercial-license.html" href="https://digpangolin.com/fcl.html"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
className="text-primary hover:underline" className="text-primary hover:underline"

View File

@@ -182,7 +182,9 @@ export function LayoutSidebar({
> >
{build === "oss" {build === "oss"
? t("communityEdition") ? t("communityEdition")
: t("enterpriseEdition")} : build === "enterprise"
? t("enterpriseEdition")
: "Pangolin Cloud"}
<FaGithub size={12} /> <FaGithub size={12} />
</Link> </Link>
</div> </div>