mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
48 lines
2.0 KiB
TypeScript
48 lines
2.0 KiB
TypeScript
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Change Language | ProxMenux Documentation",
|
|
description: "Guide to changing the language settings in ProxMenux for Proxmox VE.",
|
|
}
|
|
|
|
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>
|
|
|
|
<p className="mb-4">
|
|
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.
|
|
</p>
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">Available Languages</h2>
|
|
<ul className="list-disc pl-6 space-y-2 mb-6">
|
|
<li>English (Recommended)</li>
|
|
<li>Spanish</li>
|
|
<li>French</li>
|
|
<li>German</li>
|
|
<li>Italian</li>
|
|
<li>Portuguese</li>
|
|
</ul>
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">How It Works</h2>
|
|
<p className="mb-4">
|
|
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.
|
|
</p>
|
|
|
|
<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>
|
|
|
|
<h2 className="text-2xl font-semibold mt-8 mb-4">Important Considerations</h2>
|
|
<ul className="list-disc pl-6 space-y-2 mb-6">
|
|
<li>The recommended language is English to ensure consistency and reliability.</li>
|
|
</ul>
|
|
</div>
|
|
)
|
|
}
|