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 Hsu <kennethhsu@gmail.com>2019-05-07 06:00:34 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2019-05-07 06:02:55 +0300
commit246071b6ba2c1212b4d037aba9028793aa5b69b2 (patch)
tree384ed4b78cf08d06d2c3c693b376bfb4e20afd97 /Duplicati/CommandLine
parent2ce23c647aad60eec92bbcfb8e6ccd5a56f77d16 (diff)
Revert "Remove unused YouMayGetMoreHelpHere method."
This reverts commit 2c9fabd2edcac8727bdbbba72fd2d1cf07aae6da. This is a placeholder message that is intended to be used with the code for each error and log message. The idea is that the commandline will use the code to provide a link to the forum, searching for the code, such that it is easy to maintain a list of help links.
Diffstat (limited to 'Duplicati/CommandLine')
-rw-r--r--Duplicati/CommandLine/Strings.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Duplicati/CommandLine/Strings.cs b/Duplicati/CommandLine/Strings.cs
index 219d06ad1..5db8812c5 100644
--- a/Duplicati/CommandLine/Strings.cs
+++ b/Duplicati/CommandLine/Strings.cs
@@ -31,5 +31,6 @@ namespace Duplicati.CommandLine.Strings {
public static string QuietConsoleOptionLong { get { return LC.L(@"If this option is set, progress reports and other messages that would normally go to the console will be redirected to the log."); } }
public static string QuietConsoleOptionShort { get { return LC.L(@"Disable console output"); } }
public static string SkippingSourceArgumentsOnNonBackupOperation { get { return @"The --source argument was specified in the parameter file, but the current operation is not a backup operation, so the argument is ignored"; } }
+ public static string YouMayGetMoreHelpHere(string url) { return LC.L(@"This link may provide additional information: {0}", url); }
}
}