Edit languages.json and add a new language object:
{
"YourLanguage": {
"Title": "Your Title",
"HeaderTitle": "YOUR HEADER",
"BtnBackup": "πΎ BACKUP",
...
}
}All required keys must be present. See existing languages for reference.
Edit prompt.txt to modify the AI prompt template.
Available placeholders:
{{PromptIntro}}- Introduction{{PromptRule}}- Strict rule{{PromptLang}}- Language{{ServiceList}}- Service list (JSON){{XboxNote}}- Xbox note (if enabled){{StoreNote}}- Store note (if enabled){{CustomNote}}- Custom note (if provided)
Edit XAML in index.ps1:
Main colors:
Background="#0f172a" <!-- Window background -->
Foreground="#f8fafc" <!-- Text color -->Button colors:
Background="#3b82f6" <!-- Default -->
Background="#475569" <!-- Backup -->
Background="#8b5cf6" <!-- Prompt -->
Background="#10b981" <!-- Import -->Height="850" Width="900"- Add to XAML
- Retrieve control:
$control = $window.FindName("controlName") - Add translation to
languages.json - Add event handler
Custom note: "Keep all gaming services, disable Office/Adobe"
Custom note: "Keep Office/Adobe, disable gaming services"
Custom note: "Disable everything non-essential"
For more details: Check the code in index.ps1