Skip to content

Commit

Permalink
Fix 3 minor typos (#7635)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiyonAlex authored Dec 26, 2024
1 parent 23db892 commit 3fcbb4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/DataFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ bool DataFile::writeFile(const QString& filename, bool withResources)
if (QDir(bundleDir).exists())
{
showError(SongEditor::tr("Operation denied"),
SongEditor::tr("A bundle folder with that name already eists on the "
SongEditor::tr("A bundle folder with that name already exists on the "
"selected path. Can't overwrite a project bundle. Please select a different "
"name."));

Expand Down
2 changes: 1 addition & 1 deletion src/core/midi/MidiJack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static void JackMidiShutdown(void *arg)
//: When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title)
QString msg_short = MidiJack::tr("JACK server down");
//: When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message)
QString msg_long = MidiJack::tr("The JACK server seems to be shuted down.");
QString msg_long = MidiJack::tr("The JACK server seems to be shut down.");
QMessageBox::information(gui::getGUI()->mainWindow(), msg_short, msg_long);
}

Expand Down
2 changes: 1 addition & 1 deletion src/gui/editors/StepRecorderWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void StepRecorderWidget::setEndPosition(TimePos pos)

void StepRecorderWidget::showHint()
{
TextFloat::displayMessage(tr( "Hint" ), tr("Move recording curser using <Left/Right> arrows"),
TextFloat::displayMessage(tr( "Hint" ), tr("Move recording cursor using <Left/Right> arrows"),
embed::getIconPixmap("hint"));
}

Expand Down

0 comments on commit 3fcbb4c

Please sign in to comment.