43 lines
1.7 KiB
TypeScript
Raw Normal View History

2025-02-16 17:18:47 +01:00
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Change Language | ProxMenux Documentation",
2025-03-04 20:21:15 +01:00
description: "Guide to changing the language settings in ProxMenux for Proxmox VE.",
2025-02-16 17:18:47 +01:00
}
export default function ChangeLanguage() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Change Language in ProxMenux</h1>
2025-03-04 20:21:15 +01:00
2025-02-16 17:18:47 +01:00
<p className="mb-4">
2025-03-04 20:21:15 +01:00
ProxMenux supports multiple languages to improve accessibility for users worldwide. The recommended language is <strong>English</strong>.
Translations are generated automatically using a predefined translation package and Google Translate. Automatic translations may contain errors,
so English is the preferred language for accuracy.
2025-02-16 17:18:47 +01:00
</p>
2025-03-04 20:21:15 +01:00
<h2 className="text-2xl font-semibold mt-8 mb-4">Available Languages</h2>
2025-02-16 17:18:47 +01:00
<ul className="list-disc pl-6 space-y-2 mb-6">
2025-03-04 20:21:15 +01:00
<li>English (Recommended)</li>
2025-02-16 17:18:47 +01:00
<li>Spanish</li>
<li>French</li>
<li>German</li>
<li>Italian</li>
2025-03-04 20:21:15 +01:00
<li>Portuguese</li>
2025-02-16 17:18:47 +01:00
</ul>
2025-03-04 20:21:15 +01:00
<h2 className="text-2xl font-semibold mt-8 mb-4">How It Works</h2>
2025-02-16 17:18:47 +01:00
<p className="mb-4">
2025-03-04 20:21:15 +01:00
The language configuration is stored in the ProxMenux settings file. When a new language is selected, the configuration file is updated, and the menu reloads with the new language.
2025-02-16 17:18:47 +01:00
</p>
2025-03-04 20:21:15 +01:00
<h2 className="text-2xl font-semibold mt-8 mb-4">Key Functions</h2>
<ul className="list-disc pl-6 space-y-2 mb-6">
<li>Displays a menu with available languages.</li>
<li>Updates the ProxMenux configuration with the selected language.</li>
<li>Reloads the menu to apply the new language setting.</li>
</ul>
2025-02-16 17:18:47 +01:00
</div>
)
}