Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2020-12-19 16:40:35 +0300
committerGitHub <noreply@github.com>2020-12-19 16:40:35 +0300
commitebc30c7f02e9372d0c5621b4335f0dda959b6b69 (patch)
tree0133045cd935276f6e3b0c3ab96ba15d1eb2ba91 /Duplicati/Library
parent1a2e69fd9f0515ecfab392cc369aa902927f61d8 (diff)
parent14de767738cefd8a18c002d7f97f58d309cd5023 (diff)
Merge pull request #4366 from warwickmm/improve_missing_source_message
Fix misleading error message about missing source path
Diffstat (limited to 'Duplicati/Library')
-rw-r--r--Duplicati/Library/Main/Strings.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Library/Main/Strings.cs b/Duplicati/Library/Main/Strings.cs
index 462be3566..6208c40fe 100644
--- a/Duplicati/Library/Main/Strings.cs
+++ b/Duplicati/Library/Main/Strings.cs
@@ -10,7 +10,7 @@ namespace Duplicati.Library.Main.Strings
public static string DeprecatedOptionUsedWarning(string optionname, string message) { return LC.L(@"The option {0} is deprecated: {1}", optionname, message); }
public static string DuplicateOptionNameWarning(string optionname) { return LC.L(@"The option --{0} exists more than once, please report this to the developers", optionname); }
public static string NoSourceFoldersError { get { return LC.L(@"No source folders specified for backup"); } }
- public static string SourceIsMissingError(string foldername) { return LC.L(@"The source folder {0} does not exist, aborting backup", foldername); }
+ public static string SourceIsMissingError(string foldername) { return LC.L(@"Backup aborted since the source path {0} does not exist. Please verify that the source path exists, or remove the source path from the backup configuration, or set the allow-missing-source option.", foldername); }
public static string SourceUnauthorizedError(string foldername) { return LC.L(@"Unauthorized to access source folder {0}, aborting backup", foldername); }
public static string UnsupportedBooleanValue(string optionname, string value) { return LC.L(@"The value ""{1}"" supplied to --{0} does not parse into a valid boolean, this will be treated as if it was set to ""true""", optionname, value); }
public static string UnsupportedEnumerationValue(string optionname, string value, string[] values) { return LC.L(@"The option --{0} does not support the value ""{1}"", supported values are: {2}", optionname, value, string.Join(", ", values)); }