Replaced references to games with references to applications

This commit is contained in:
OpenSauce04
2025-03-01 00:08:08 +00:00
committed by OpenSauce
parent 75bed895cf
commit 9ad314c5f7
29 changed files with 83 additions and 79 deletions

View File

@@ -29,7 +29,7 @@ MoviePlayDialog::MoviePlayDialog(QWidget* parent, GameList* game_list_, const Co
if (system.IsPoweredOn()) {
QString note_text;
note_text = tr("Current running game will be stopped.");
note_text = tr("Current running application will be stopped.");
if (system.Movie().GetPlayMode() == Core::Movie::PlayMode::Recording) {
note_text.append(tr("<br>Current recording will be discarded."));
}
@@ -103,7 +103,7 @@ void MoviePlayDialog::UpdateUIDisplay() {
game_list->FindGameByProgramID(metadata.program_id, GameListItemPath::TitleRole);
if (title.isEmpty()) {
ui->gameLineEdit->setText(tr("(unknown)"));
ui->note1Label->setText(tr("Game used in this movie is not in game list."));
ui->note1Label->setText(tr("Application used in this movie is not in Applications list."));
ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
} else {
ui->gameLineEdit->setText(title);

View File

@@ -54,7 +54,7 @@
<item row="0" column="0">
<widget class="QLabel">
<property name="text">
<string>Game:</string>
<string>Application:</string>
</property>
</widget>
</item>

View File

@@ -24,12 +24,12 @@ MovieRecordDialog::MovieRecordDialog(QWidget* parent, const Core::System& system
QString note_text;
if (system.IsPoweredOn()) {
note_text = tr("Current running game will be restarted.");
note_text = tr("Current running application will be restarted.");
if (system.Movie().GetPlayMode() == Core::Movie::PlayMode::Recording) {
note_text.append(tr("<br>Current recording will be discarded."));
}
} else {
note_text = tr("Recording will start once you boot a game.");
note_text = tr("Recording will start once you boot an application.");
}
ui->noteLabel->setText(note_text);
}