Fix 3 minor typos (#7635)

This commit is contained in:
Niyonkuru-AI-Crazy
2024-12-26 10:34:06 -08:00
committed by GitHub
parent 23db892d55
commit 3fcbb4ca77
3 changed files with 3 additions and 3 deletions

View File

@@ -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."));

View File

@@ -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);
}

View File

@@ -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"));
}