"Locale" typo. Make user msg more clear

This commit is contained in:
Robert McRackan 2020-12-16 12:57:26 -05:00
parent 0e2469db64
commit 642a500f87

View File

@ -151,7 +151,7 @@ namespace LibationWinForms.Dialogs
if (string.IsNullOrWhiteSpace(dto.AccountId)) if (string.IsNullOrWhiteSpace(dto.AccountId))
throw new Exception("Please enter an account id for all accounts"); throw new Exception("Please enter an account id for all accounts");
if (string.IsNullOrWhiteSpace(dto.LocaleName)) 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); var acct = accountsSettings.Upsert(dto.AccountId, dto.LocaleName);
acct.LibraryScan = dto.LibraryScan; acct.LibraryScan = dto.LibraryScan;