fix: change group -> category in UI

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2022-10-06 15:03:52 +02:00
parent af73c797aa
commit 1965e7ca87
4 changed files with 7 additions and 7 deletions

View File

@ -77,7 +77,7 @@ CopyInstanceDialog::CopyInstanceDialog(InstancePtr original, QWidget *parent)
index = 0;
}
ui->groupBox->setCurrentIndex(index);
ui->groupBox->lineEdit()->setPlaceholderText(tr("No group"));
ui->groupBox->lineEdit()->setPlaceholderText(tr("No category"));
ui->copySavesCheckbox->setChecked(m_copySaves);
ui->keepPlaytimeCheckbox->setChecked(m_keepPlaytime);
}

View File

@ -87,7 +87,7 @@
<item row="0" column="0">
<widget class="QLabel" name="labelVersion_3">
<property name="text">
<string>&amp;Group</string>
<string>&amp;Category</string>
</property>
<property name="buddy">
<cstring>groupBox</cstring>

View File

@ -94,7 +94,7 @@ NewInstanceDialog::NewInstanceDialog(const QString & initialGroup, const QString
index = 0;
}
ui->groupBox->setCurrentIndex(index);
ui->groupBox->lineEdit()->setPlaceholderText(tr("No group"));
ui->groupBox->lineEdit()->setPlaceholderText(tr("No category"));
// NOTE: m_buttons must be initialized before PageContainer, because it indirectly accesses m_buttons through setSuggestedPack! Do not move this below.