From 4fcfa2b52aee258c45a3824dd9ce3cbe160da0d3 Mon Sep 17 00:00:00 2001 From: Treeway <56928485+Treeway7@users.noreply.github.com> Date: Thu, 7 Sep 2023 12:35:44 -0500 Subject: [PATCH] Fixed typo in word "realy" (#74) --- resource/translations/English.ts | 8 ++++---- resource/translations/German.ts | 8 ++++---- resource/translations/Italian.ts | 8 ++++---- tileseteditor/tileseteditorwindow.cpp | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/resource/translations/English.ts b/resource/translations/English.ts index 367e81d1..e2305b5c 100644 --- a/resource/translations/English.ts +++ b/resource/translations/English.ts @@ -831,7 +831,7 @@ Connection to %1 failed! - This is a multi-purpose field. + This is a multi-purpose field. Check the notes of whatever sprite is paired to this path to see how to use this field. @@ -1339,15 +1339,15 @@ Check the notes of whatever sprite is paired to this path to see how to use this - Do you realy want to delete all 3D Overlays? + Do you really want to delete all 3D Overlays? - Do you realy want to delete all Behaviors? + Do you really want to delete all Behaviors? - Do you realy want to delete all objects? + Do you really want to delete all objects? diff --git a/resource/translations/German.ts b/resource/translations/German.ts index f3a0eebc..9f3c08d1 100644 --- a/resource/translations/German.ts +++ b/resource/translations/German.ts @@ -849,7 +849,7 @@ Verbindung zu %1 fehlgeschlagen! - This is a multi-purpose field. + This is a multi-purpose field. Check the notes of whatever sprite is paired to this path to see how to use this field. @@ -1357,15 +1357,15 @@ Check the notes of whatever sprite is paired to this path to see how to use this - Do you realy want to delete all 3D Overlays? + Do you really want to delete all 3D Overlays? - Do you realy want to delete all Behaviors? + Do you really want to delete all Behaviors? - Do you realy want to delete all objects? + Do you really want to delete all objects? diff --git a/resource/translations/Italian.ts b/resource/translations/Italian.ts index 1abc2d0f..579b23c0 100644 --- a/resource/translations/Italian.ts +++ b/resource/translations/Italian.ts @@ -852,7 +852,7 @@ Connecssione a %1 fallita! - This is a multi-purpose field. + This is a multi-purpose field. Check the notes of whatever sprite is paired to this path to see how to use this field. @@ -1360,15 +1360,15 @@ Check the notes of whatever sprite is paired to this path to see how to use this - Do you realy want to delete all 3D Overlays? + Do you really want to delete all 3D Overlays? - Do you realy want to delete all Behaviors? + Do you really want to delete all Behaviors? - Do you realy want to delete all objects? + Do you really want to delete all objects? diff --git a/tileseteditor/tileseteditorwindow.cpp b/tileseteditor/tileseteditorwindow.cpp index f09af4d9..e2a2d2f9 100644 --- a/tileseteditor/tileseteditorwindow.cpp +++ b/tileseteditor/tileseteditorwindow.cpp @@ -738,7 +738,7 @@ void TilesetEditorWindow::on_pipeColorComboBox_currentIndexChanged(int index) void TilesetEditorWindow::on_actionDeleteAll3DOverlays_triggered() { - QMessageBox::StandardButton warning = QMessageBox::warning(this, "CoinKiller", tr("Do you realy want to delete all 3D Overlays?"), QMessageBox::Yes|QMessageBox::No); + QMessageBox::StandardButton warning = QMessageBox::warning(this, "CoinKiller", tr("Do you really want to delete all 3D Overlays?"), QMessageBox::Yes|QMessageBox::No); if (warning != QMessageBox::Yes) return; @@ -753,7 +753,7 @@ void TilesetEditorWindow::on_actionDeleteAll3DOverlays_triggered() void TilesetEditorWindow::on_actionDeleteAllBehaviors_triggered() { - QMessageBox::StandardButton warning = QMessageBox::warning(this, "CoinKiller", tr("Do you realy want to delete all Behaviors?"), QMessageBox::Yes|QMessageBox::No); + QMessageBox::StandardButton warning = QMessageBox::warning(this, "CoinKiller", tr("Do you really want to delete all Behaviors?"), QMessageBox::Yes|QMessageBox::No); if (warning != QMessageBox::Yes) return; @@ -843,7 +843,7 @@ void TilesetEditorWindow::on_moveObjectDownButton_clicked() void TilesetEditorWindow::on_actionDeleteAllObjects_triggered() { - QMessageBox::StandardButton warning = QMessageBox::warning(this, "CoinKiller", tr("Do you realy want to delete all objects?"), QMessageBox::Yes|QMessageBox::No); + QMessageBox::StandardButton warning = QMessageBox::warning(this, "CoinKiller", tr("Do you really want to delete all objects?"), QMessageBox::Yes|QMessageBox::No); if (warning != QMessageBox::Yes) return;