diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-03-03 15:06:29 +0000 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-03-03 15:06:29 +0000 |
commit | 55f928f845b56d09a124f1ba85e196c2b91d856d (patch) | |
tree | be8c75b75e2f6e920b4c480e71d32685eab9ae91 /launcher/ui/dialogs | |
parent | 2343aad088e302bf9f4f75eb6c4d6d1da3c7fbe3 (diff) | |
download | PrismLauncher-55f928f845b56d09a124f1ba85e196c2b91d856d.tar.gz PrismLauncher-55f928f845b56d09a124f1ba85e196c2b91d856d.tar.bz2 PrismLauncher-55f928f845b56d09a124f1ba85e196c2b91d856d.zip |
More consistent naming
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'launcher/ui/dialogs')
-rw-r--r-- | launcher/ui/dialogs/ExportMrPackDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/ExportMrPackDialog.cpp b/launcher/ui/dialogs/ExportMrPackDialog.cpp index 81663c9a..266479b3 100644 --- a/launcher/ui/dialogs/ExportMrPackDialog.cpp +++ b/launcher/ui/dialogs/ExportMrPackDialog.cpp @@ -60,7 +60,7 @@ void ExportMrPackDialog::done(int result) const QString filename = FS::RemoveInvalidFilenameChars(ui->name->text()); const QString output = QFileDialog::getSaveFileName(this, tr("Export %1").arg(ui->name->text()), FS::PathCombine(QDir::homePath(), filename + ".mrpack"), - "Modrinth modpack (*.mrpack *.zip)", nullptr); + "Modrinth pack (*.mrpack *.zip)", nullptr); if (output.isEmpty()) return; |