diff options
author | Ezekiel Smith <ezekielsmith@protonmail.com> | 2022-03-22 00:06:16 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 00:06:16 +1100 |
commit | 2da565f5d486af6100d4b4584171c78c09a50b07 (patch) | |
tree | 61278a9f07e90844c2607ed8c869b85decb86ad6 /launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp | |
parent | 9c22af96852903ef3f5890e570f9c636a3302abd (diff) | |
parent | 75d0078a38e994cefc72507c8fb69af58f63f921 (diff) | |
download | PrismLauncher-2da565f5d486af6100d4b4584171c78c09a50b07.tar.gz PrismLauncher-2da565f5d486af6100d4b4584171c78c09a50b07.tar.bz2 PrismLauncher-2da565f5d486af6100d4b4584171c78c09a50b07.zip |
Merge pull request #323 from Scrumplex/retranslate-pages
Retranslate all settings pages
Diffstat (limited to 'launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp')
-rw-r--r-- | launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp b/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp index 35cd743a..2643c313 100644 --- a/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp +++ b/launcher/ui/pages/modplatform/modrinth/ModrinthPage.cpp @@ -1,3 +1,38 @@ +// SPDX-License-Identifier: GPL-3.0-only +/* + * PolyMC - Minecraft Launcher + * 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 + * the Free Software Foundation, version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + * + * This file incorporates work covered by the following copyright and + * permission notice: + * + * Copyright 2013-2021 MultiMC Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #include "ModrinthPage.h" #include "ui_ModrinthPage.h" @@ -59,6 +94,10 @@ bool ModrinthPage::eventFilter(QObject *watched, QEvent *event) { bool ModrinthPage::shouldDisplay() const { return true; } +void ModrinthPage::retranslate() { + ui->retranslateUi(this); +} + void ModrinthPage::openedImpl() { updateSelectionButton(); triggerSearch(); |