Skip to content

Commit

Permalink
Fixed typo in word "realy" (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
Treeways committed Sep 7, 2023
1 parent 33b7ace commit 4fcfa2b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions resource/translations/English.ts
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ Connection to %1 failed!</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>This is a multi-purpose field.
<source>This is a multi-purpose field.
Check the notes of whatever sprite is paired to this path to see how to use this field.</source>
<translation type="unfinished"></translation>
</message>
Expand Down Expand Up @@ -1339,15 +1339,15 @@ Check the notes of whatever sprite is paired to this path to see how to use this
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all 3D Overlays?</source>
<source>Do you really want to delete all 3D Overlays?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all Behaviors?</source>
<source>Do you really want to delete all Behaviors?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all objects?</source>
<source>Do you really want to delete all objects?</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
8 changes: 4 additions & 4 deletions resource/translations/German.ts
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ Verbindung zu %1 fehlgeschlagen!</translation>
<translation type="unfinished"></translation>
</message>
<message>
<source>This is a multi-purpose field.
<source>This is a multi-purpose field.
Check the notes of whatever sprite is paired to this path to see how to use this field.</source>
<translation type="unfinished"></translation>
</message>
Expand Down Expand Up @@ -1357,15 +1357,15 @@ Check the notes of whatever sprite is paired to this path to see how to use this
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all 3D Overlays?</source>
<source>Do you really want to delete all 3D Overlays?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all Behaviors?</source>
<source>Do you really want to delete all Behaviors?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all objects?</source>
<source>Do you really want to delete all objects?</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
8 changes: 4 additions & 4 deletions resource/translations/Italian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ Connecssione a %1 fallita!</translation>
<translation type="unfinished"></translation>
</message>
<message>
<source>This is a multi-purpose field.
<source>This is a multi-purpose field.
Check the notes of whatever sprite is paired to this path to see how to use this field.</source>
<translation type="unfinished"></translation>
</message>
Expand Down Expand Up @@ -1360,15 +1360,15 @@ Check the notes of whatever sprite is paired to this path to see how to use this
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all 3D Overlays?</source>
<source>Do you really want to delete all 3D Overlays?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all Behaviors?</source>
<source>Do you really want to delete all Behaviors?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Do you realy want to delete all objects?</source>
<source>Do you really want to delete all objects?</source>
<translation type="unfinished"></translation>
</message>
<message>
Expand Down
6 changes: 3 additions & 3 deletions tileseteditor/tileseteditorwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 4fcfa2b

Please sign in to comment.