fix: retranslate CustomCommands

This commit is contained in:
Sefa Eyeoglu
2022-03-20 21:50:30 +01:00
parent 536b1a23fc
commit 75d0078a38
4 changed files with 74 additions and 11 deletions

View File

@ -2,6 +2,7 @@
/*
* PolyMC - Minecraft Launcher
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
* Copyright (c) 2022 Sefa Eyeoglu <contact@scrumplex.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -87,5 +88,5 @@ void CustomCommandsPage::loadSettings()
void CustomCommandsPage::retranslate()
{
// fixme: implement
commands->retranslate();
}

View File

@ -2,6 +2,7 @@
/*
* PolyMC - Minecraft Launcher
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
* Copyright (c) 2022 Sefa Eyeoglu <contact@scrumplex.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -378,4 +379,5 @@ void InstanceSettingsPage::checkerFinished()
void InstanceSettingsPage::retranslate()
{
ui->retranslateUi(this);
ui->customCommands->retranslate(); // TODO: why is this seperate from the others?
}