mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-06-15 22:38:25 +00:00
complete i18n migration to /[locale]/ with EN+ES content
Full rewrite of the docs site under app/[locale]/ with next-intl in localePrefix:"always" mode. Every page now exists at both /en/<path> and /es/<path>; the root / shows a meta-refresh + JS redirect to /<defaultLocale>/ so GitHub Pages serves something on the apex URL. Highlights: - 107 doc pages migrated to file-per-page JSON namespaces under messages/en/ and messages/es/. Spanish content is fully translated (no copy-of-English placeholders). - New documentation for the Active Suppressions section in the Settings tab and the per-event Dismiss dropdown in the Health Monitor modal. - New screenshots: dismiss-duration-dropdown.png and an updated health-suppression-settings.png. - Pagefind integrated for client-side search; index is built on every CI deploy (not committed). - RSS feeds: per-locale at /<locale>/rss.xml plus root /rss.xml for backward compat. - Removed the dead app/[locale]/guides/[slug]/ route — every guide now has its own static page and no markdown source remains. - Fixed orphan link /guides/nvidia -> /guides/nvidia-manual in docs/hardware/nvidia-host. - Removed obsolete components (footer2, calendar, drawer). Verified locally with `npm ci && npm run build`: 2804 files in out/, 231 pages indexed by pagefind, root redirect intact, both locale roots and the new Active Suppressions docs render OK.
This commit is contained in:
179
web/app/[locale]/guides/kodi-lxc/page.tsx
Normal file
179
web/app/[locale]/guides/kodi-lxc/page.tsx
Normal file
@@ -0,0 +1,179 @@
|
||||
import type { Metadata } from "next"
|
||||
import { getTranslations, getMessages, setRequestLocale } from "next-intl/server"
|
||||
import { ExternalLink } from "lucide-react"
|
||||
import { DocHeader } from "@/components/ui/doc-header"
|
||||
import { Callout } from "@/components/ui/callout"
|
||||
import Image from "next/image"
|
||||
import CopyableCode from "@/components/CopyableCode"
|
||||
import Footer from "@/components/footer"
|
||||
|
||||
export async function generateMetadata({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ locale: string }>
|
||||
}): Promise<Metadata> {
|
||||
const { locale } = await params
|
||||
const t = await getTranslations({ locale, namespace: "guides.kodiLxc.meta" })
|
||||
return {
|
||||
title: t("title"),
|
||||
description: t("description"),
|
||||
alternates: { canonical: "https://proxmenux.com/docs/guides/kodi-lxc" },
|
||||
openGraph: {
|
||||
title: t("ogTitle"),
|
||||
description: t("ogDescription"),
|
||||
type: "article",
|
||||
url: "https://proxmenux.com/docs/guides/kodi-lxc",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
export default async function KodiLxcGuide({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ locale: string }>
|
||||
}) {
|
||||
const { locale } = await params
|
||||
setRequestLocale(locale)
|
||||
const t = await getTranslations({ locale, namespace: "guides.kodiLxc" })
|
||||
|
||||
const messages = (await getMessages({ locale })) as unknown as {
|
||||
guides: { kodiLxc: {
|
||||
intro: { steps: string[] }
|
||||
troubleshoot: { items: string[] }
|
||||
} }
|
||||
}
|
||||
const introSteps = messages.guides.kodiLxc.intro.steps
|
||||
const troubleItems = messages.guides.kodiLxc.troubleshoot.items
|
||||
|
||||
const code = (chunks: React.ReactNode) => <code>{chunks}</code>
|
||||
const strong = (chunks: React.ReactNode) => <strong>{chunks}</strong>
|
||||
const gpuLink = (chunks: React.ReactNode) => (
|
||||
<a
|
||||
href="/docs/hardware/igpu-acceleration-lxc"
|
||||
className="text-blue-700 hover:underline"
|
||||
>
|
||||
{chunks}
|
||||
</a>
|
||||
)
|
||||
const authorLink = (chunks: React.ReactNode) => (
|
||||
<a
|
||||
href="https://github.com/mrrudy"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-blue-700 hover:underline inline-flex items-center gap-1"
|
||||
>
|
||||
{chunks}
|
||||
<ExternalLink className="w-3 h-3" />
|
||||
</a>
|
||||
)
|
||||
const konpatLink = (chunks: React.ReactNode) => (
|
||||
<a
|
||||
href="https://blog.konpat.me/dev/2019/03/11/setting-up-lxc-for-intel-gpu-proxmox.html"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-blue-700 hover:underline inline-flex items-center gap-1"
|
||||
>
|
||||
{chunks}
|
||||
<ExternalLink className="w-3 h-3" />
|
||||
</a>
|
||||
)
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-white text-gray-900 pt-16 flex flex-col">
|
||||
<div className="container mx-auto px-4 pt-6 pb-16 flex-grow" style={{ maxWidth: "980px" }}>
|
||||
<DocHeader
|
||||
title={t("header.title")}
|
||||
description={t("header.description")}
|
||||
section={t("header.section")}
|
||||
estimatedMinutes={10}
|
||||
/>
|
||||
|
||||
<Callout variant="info" title={t("intro.calloutTitle")}>
|
||||
{t.rich("intro.calloutBody", { strong, code, gpuLink })}
|
||||
</Callout>
|
||||
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">
|
||||
{t.rich("intro.credit", { authorLink })}
|
||||
</p>
|
||||
|
||||
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("intro.stepsTitle")}</h2>
|
||||
<ol className="list-decimal pl-6 mb-6 text-gray-800 leading-relaxed space-y-1">
|
||||
{introSteps.map((_, idx) => (
|
||||
<li key={idx}>{t(`intro.steps.${idx}`)}</li>
|
||||
))}
|
||||
</ol>
|
||||
|
||||
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("createCt.heading")}</h2>
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t.rich("createCt.body", { strong, code })}</p>
|
||||
<CopyableCode code={t.raw("createCt.code") as string} className="my-4" />
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t.rich("createCt.after", { code })}</p>
|
||||
|
||||
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("addInput.heading")}</h2>
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t.rich("addInput.body", { code })}</p>
|
||||
<CopyableCode code={t.raw("addInput.listCode") as string} className="my-4" />
|
||||
<Image
|
||||
src="/guides/kodi/kodi1.png"
|
||||
alt={t("addInput.imageAlt")}
|
||||
width={900}
|
||||
height={500}
|
||||
className="rounded shadow-lg my-6"
|
||||
unoptimized
|
||||
/>
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t.rich("addInput.afterList", { code, strong })}</p>
|
||||
<CopyableCode code={t.raw("addInput.editCode") as string} className="my-4" />
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t.rich("addInput.addLines", { code, strong })}</p>
|
||||
<CopyableCode code={t.raw("addInput.configCode") as string} className="my-4" />
|
||||
<Image
|
||||
src="/guides/kodi/kodi2.png"
|
||||
alt={t("addInput.imageConfigAlt")}
|
||||
width={900}
|
||||
height={500}
|
||||
className="rounded shadow-lg my-6"
|
||||
unoptimized
|
||||
/>
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t.rich("addInput.save", { code, strong })}</p>
|
||||
<CopyableCode code={t.raw("addInput.restartCode") as string} className="my-4" />
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t("addInput.plug")}</p>
|
||||
|
||||
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("updateKodi.heading")}</h2>
|
||||
<Callout variant="warning" title={t("updateKodi.calloutTitle")}>
|
||||
{t.rich("updateKodi.calloutBody", { strong, code })}
|
||||
</Callout>
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t.rich("updateKodi.body", { code })}</p>
|
||||
<CopyableCode code={t.raw("updateKodi.code") as string} className="my-4" />
|
||||
<p className="mb-4 text-gray-800 leading-relaxed">{t("updateKodi.after")}</p>
|
||||
|
||||
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("screenshots.heading")}</h2>
|
||||
<Image
|
||||
src="/guides/kodi/kodi3.png"
|
||||
alt={t("screenshots.image1Alt")}
|
||||
width={900}
|
||||
height={500}
|
||||
className="rounded shadow-lg my-6"
|
||||
unoptimized
|
||||
/>
|
||||
<Image
|
||||
src="/guides/kodi/kodi4.jpeg"
|
||||
alt={t("screenshots.image2Alt")}
|
||||
width={900}
|
||||
height={500}
|
||||
className="rounded shadow-lg my-6"
|
||||
unoptimized
|
||||
/>
|
||||
|
||||
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("troubleshoot.heading")}</h2>
|
||||
<ul className="list-disc pl-6 mb-6 text-gray-800 leading-relaxed space-y-2">
|
||||
{troubleItems.map((_, idx) => (
|
||||
<li key={idx}>{t.rich(`troubleshoot.items.${idx}`, { code, strong })}</li>
|
||||
))}
|
||||
</ul>
|
||||
|
||||
<h2 className="text-2xl font-semibold mt-10 mb-4 text-gray-900">{t("further.heading")}</h2>
|
||||
<ul className="list-disc pl-6 mb-6 text-gray-800 leading-relaxed space-y-1">
|
||||
<li>{t.rich("further.konpatRich", { konpatLink })}</li>
|
||||
</ul>
|
||||
</div>
|
||||
<Footer />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user