Skip to content

Commit 50efb5b

Browse files
Error message changed to "Failed to access the content repository (check Internet connection); automatic download not available. Error: {0}" As sugested by Roger (rwf-rr)
1 parent 8fd2066 commit 50efb5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Menu/ContentForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public ContentForm(UserSettings settings, string baseDocumentationUrl)
9090
Settings.Content.ContentRouteSettings.LoadContent(ref errorMsg);
9191
if (!string.IsNullOrEmpty(errorMsg))
9292
{
93-
string message = Catalog.GetStringFmt("Not connected to internet, automatic download not available. Error: {0}", errorMsg);
93+
string message = Catalog.GetStringFmt("Failed to access the content repository (check Internet connection); automatic download not available. Error: {0}", errorMsg);
9494
MessageBox.Show(message, Catalog.GetString("Attention"), MessageBoxButtons.OK, MessageBoxIcon.Error);
9595
NoInternet = true;
9696
}

0 commit comments

Comments
 (0)