From 642a500f878246b22cdca4e34279d5c90e8cbcea Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Wed, 16 Dec 2020 12:57:26 -0500 Subject: [PATCH] "Locale" typo. Make user msg more clear --- LibationWinForms/UNTESTED/Dialogs/AccountsDialog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibationWinForms/UNTESTED/Dialogs/AccountsDialog.cs b/LibationWinForms/UNTESTED/Dialogs/AccountsDialog.cs index 59bedf94..1fdb86b9 100644 --- a/LibationWinForms/UNTESTED/Dialogs/AccountsDialog.cs +++ b/LibationWinForms/UNTESTED/Dialogs/AccountsDialog.cs @@ -151,7 +151,7 @@ namespace LibationWinForms.Dialogs if (string.IsNullOrWhiteSpace(dto.AccountId)) throw new Exception("Please enter an account id for all accounts"); if (string.IsNullOrWhiteSpace(dto.LocaleName)) - throw new Exception("Please select a local name for all accounts"); + throw new Exception("Please select a locale (i.e.: country or region) for all accounts"); var acct = accountsSettings.Upsert(dto.AccountId, dto.LocaleName); acct.LibraryScan = dto.LibraryScan;