diff --git a/app/Desktop/Common/DatabaseGui.cs b/app/Desktop/Common/DatabaseGui.cs index a942e22..7aded31 100644 --- a/app/Desktop/Common/DatabaseGui.cs +++ b/app/Desktop/Common/DatabaseGui.cs @@ -56,11 +56,11 @@ namespace DHT.Desktop.Common { } public static async Task ShowCanUpgradeDatabaseDialog(Window window) { - return await Dialog.ShowYesNo(window, "Database Upgrade", "This database was created with an older version of DHT. If you proceed, the database will be upgraded and will no longer open in previous versions of DHT. Do you want to proceed with the upgrade?"); + return await Dialog.ShowYesNo(window, "Database Upgrade", "This database was created with an older version of DHT. If you proceed, the database will be upgraded and will no longer open in previous versions of DHT.\n\nPlease ensure you have a backup of the database. Do you want to proceed with the upgrade?"); } public static async Task ShowCanUpgradeMultipleDatabaseDialog(Window window) { - return await Dialog.ShowYesNo(window, "Database Upgrade", "One or more databases were created with an older version of DHT. If you proceed, these databases will be upgraded and will no longer open in previous versions of DHT. Otherwise, these databases will be skipped. Do you want to proceed with the upgrade?"); + return await Dialog.ShowYesNo(window, "Database Upgrade", "One or more databases were created with an older version of DHT. If you proceed, these databases will be upgraded and will no longer open in previous versions of DHT. Otherwise, these databases will be skipped.\n\nPlease ensure you have a backup of the databases. Do you want to proceed with the upgrade?"); } } }