Skip to content

Commit

Permalink
Fix messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tedfelix committed Jan 27, 2025
1 parent 71a0ab0 commit f8daa37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/gui/dialogs/CheckForParallelsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ CheckForParallelsDialog::writeTransition(std::vector<Transition>::iterator it)

composition->getMusicalTimeForAbsoluteTime((*it).time, bar, beat, fraction, remainder);

text += ", " + tr("bar") + tr(" ") + QString("%1").arg(bar) + ", " + tr("beat") + " " + QString("%1").arg(beat) + ", " + tr("fraction") + " " + QString("%1").arg(fraction);
text += ", " + tr("bar") + " " + QString("%1").arg(bar) + ", " + tr("beat") + " " + QString("%1").arg(beat) + ", " + tr("fraction") + " " + QString("%1").arg(fraction);
qDebug() << text;
}

Expand Down Expand Up @@ -512,7 +512,7 @@ CheckForParallelsDialog::startCheck()

text = tr("found multiple notes for") + " " + makeTrackString(currentTrackPosition, currentTrackLabel);

text += ", " + tr("bar") + tr(" ") + QString("%1").arg(bar) + ", " + tr("beat") + " " + QString("%1").arg(beat) + ", " + tr("fraction") + " " + QString("%1").arg(fraction) + "\n";
text += ", " + tr("bar") + " " + QString("%1").arg(bar) + ", " + tr("beat") + " " + QString("%1").arg(beat) + ", " + tr("fraction") + " " + QString("%1").arg(fraction) + "\n";

text += " stopped checking for parallels in the current segment.\n\n";

Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/CommentsPopupDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ CommentsPopupDialog::CommentsPopupDialog(RosegardenDocument *doc,
QCheckBox *checkBox = new QCheckBox;
bottomLayout->addWidget(checkBox);
checkBox->setText(tr("Show next time"));
checkBox->setToolTip(tr("<qt>If checked, these notes will pop up the next"
checkBox->setToolTip(tr("<qt>If checked, these notes will pop up the next "
"time the document is loaded</qt>"));
checkBox->setChecked(true);
connect(checkBox, &QCheckBox::stateChanged,
Expand Down

0 comments on commit f8daa37

Please sign in to comment.