From 1c03ec000e635975613d228426dd246b7fb6d9ed Mon Sep 17 00:00:00 2001 From: Oliver Bevan Date: Sat, 28 Sep 2024 23:11:10 +0100 Subject: [PATCH] Text change --- IndustrialPark/MainForm/OpenLevel.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/IndustrialPark/MainForm/OpenLevel.cs b/IndustrialPark/MainForm/OpenLevel.cs index 4330f79a..b54a5563 100644 --- a/IndustrialPark/MainForm/OpenLevel.cs +++ b/IndustrialPark/MainForm/OpenLevel.cs @@ -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; } } @@ -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; } } @@ -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; } } @@ -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; } }