Skip to content

Commit

Permalink
Text change
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsPepperpot committed Sep 28, 2024
1 parent 1f28727 commit 1c03ec0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions IndustrialPark/MainForm/OpenLevel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private void btnImport_Click(object sender, EventArgs e)
}
catch (Exception ex)
{
MessageBox.Show("HIP could not be opened: " + ex.Message, "Import failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("HIP could not be opened: " + ex.Message, "Open failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
importSuccessful = false;
}
}
Expand All @@ -75,7 +75,7 @@ private void btnImport_Click(object sender, EventArgs e)
}
catch (Exception ex)
{
MessageBox.Show("HOP could not be opened: " + ex.Message, "Import failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("HOP could not be opened: " + ex.Message, "Open failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
importSuccessful = false;
}
}
Expand All @@ -88,7 +88,7 @@ private void btnImport_Click(object sender, EventArgs e)
}
catch (Exception ex)
{
MessageBox.Show("BOOT.HIP could not be opened: " + ex.Message, "Import failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("BOOT.HIP could not be opened: " + ex.Message, "Open failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
importSuccessful = false;
}
}
Expand All @@ -103,7 +103,7 @@ private void btnImport_Click(object sender, EventArgs e)
}
catch (Exception ex)
{
MessageBox.Show("Localization file could not be opened: " + ex.Message, "Import failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show("Localization file could not be opened: " + ex.Message, "Open failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
importSuccessful = false;
}
}
Expand Down

0 comments on commit 1c03ec0

Please sign in to comment.