Fixed a protential race condition with warning messages and file counts (cosmetic only) when using async transfers. Spelling correction, Seperator -> Separator. Changed so a restore operation can also supply advanced options. Changed the format of timestamps in filenames to follow the Duplicity convention, which removes the need for --time-separator and --use-short-filenames. Moved the URL utility into Core, to avoid compilation errors with Monodevelop. Reorganized the runner to better support the LiveControls on all operations rather than only for backup/restore. Update issue #210 Status: Fixed I have now changed the time format to follow the Duplicity naming convention. This means that all filenames are now generated with the time set as "yyyyMMddTHHmmssZ". This format is more portable across all platforms, and easily sortable/readable. The drawback is that the Z indicates UTC time, so if one looks at the filenames, the times are not local. The motivation for this is to avoid trouble with daylight savings time offsets. There is full backwards compatibility as long as backups have not used more than one character for --time-separator (only possible via commandline). This new format means that the options --time-separator and --use-short-filenames are now deprecated and removed from the user interface. It is possible to access them from the advanced options page, along with the --use-old-filenames option. If anyone needs these options for some reason, let me know, otherwise they will be removed in a later version. git-svn-id: https://duplicati.googlecode.com/svn/trunk@523 59da171f-624f-0410-aa54-27559c288bec
303 lines
12 KiB
C#
303 lines
12 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version:2.0.50727.4952
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace Duplicati.CommandLine.Strings {
|
|
using System;
|
|
|
|
|
|
/// <summary>
|
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
|
/// </summary>
|
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
|
// class via a tool like ResGen or Visual Studio.
|
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
|
// with the /str option, or rebuild your VS project.
|
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
internal class Program {
|
|
|
|
private static global::System.Resources.ResourceManager resourceMan;
|
|
|
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
|
|
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
|
internal Program() {
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the cached ResourceManager instance used by this class.
|
|
/// </summary>
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
|
get {
|
|
if (object.ReferenceEquals(resourceMan, null)) {
|
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Duplicati.CommandLine.Strings.Program", typeof(Program).Assembly);
|
|
resourceMan = temp;
|
|
}
|
|
return resourceMan;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Overrides the current thread's CurrentUICulture property for all
|
|
/// resource lookups using this strongly typed resource class.
|
|
/// </summary>
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
internal static global::System.Globalization.CultureInfo Culture {
|
|
get {
|
|
return resourceCulture;
|
|
}
|
|
set {
|
|
resourceCulture = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Added folders.
|
|
/// </summary>
|
|
internal static string AddedFoldersHeader {
|
|
get {
|
|
return ResourceManager.GetString("AddedFoldersHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Control files.
|
|
/// </summary>
|
|
internal static string ControlFilesHeader {
|
|
get {
|
|
return ResourceManager.GetString("ControlFilesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Deleted files.
|
|
/// </summary>
|
|
internal static string DeletedFilesHeader {
|
|
get {
|
|
return ResourceManager.GetString("DeletedFilesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Deleted folders.
|
|
/// </summary>
|
|
internal static string DeletedFoldersHeader {
|
|
get {
|
|
return ResourceManager.GetString("DeletedFoldersHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Duplicati options:.
|
|
/// </summary>
|
|
internal static string DuplicatiOptionsHeader {
|
|
get {
|
|
return ResourceManager.GetString("DuplicatiOptionsHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Duplicati.CommandLine /home/user/ ftp://host/folder --exclude=/file.txt
|
|
///
|
|
/// In this example the file "/home/user/file.txt" is excluded.
|
|
///.
|
|
/// </summary>
|
|
internal static string ExampleLinux {
|
|
get {
|
|
return ResourceManager.GetString("ExampleLinux", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Duplicati.CommandLine C:\Documents\Files ftp://host/folder --exclude=\file.txt
|
|
///
|
|
/// In this example the file "C:\Documents\Files\file.txt" is excluded.
|
|
///.
|
|
/// </summary>
|
|
internal static string ExampleWindows {
|
|
get {
|
|
return ResourceManager.GetString("ExampleWindows", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Supported generic modules:.
|
|
/// </summary>
|
|
internal static string GenericModulesHeader {
|
|
get {
|
|
return ResourceManager.GetString("GenericModulesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Unable to parse "{0}" into a number.
|
|
/// </summary>
|
|
internal static string IntegerParseError {
|
|
get {
|
|
return ResourceManager.GetString("IntegerParseError", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to The option --{0} was supplied, but it is reserved for internal use and may not be set on the commandline.
|
|
/// </summary>
|
|
internal static string InternalOptionUsedError {
|
|
get {
|
|
return ResourceManager.GetString("InternalOptionUsedError", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Modified files.
|
|
/// </summary>
|
|
internal static string ModifiedFilesHeader {
|
|
get {
|
|
return ResourceManager.GetString("ModifiedFilesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Module is loaded atomatically, use --disable-module to prevent this.
|
|
/// </summary>
|
|
internal static string ModuleIsLoadedAutomatically {
|
|
get {
|
|
return ResourceManager.GetString("ModuleIsLoadedAutomatically", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Module is not loaded atomatically, use --enable-module to load it.
|
|
/// </summary>
|
|
internal static string ModuleIsNotLoadedAutomatically {
|
|
get {
|
|
return ResourceManager.GetString("ModuleIsNotLoadedAutomatically", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to New files.
|
|
/// </summary>
|
|
internal static string NewFilesHeader {
|
|
get {
|
|
return ResourceManager.GetString("NewFilesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to New/Modified files.
|
|
/// </summary>
|
|
internal static string NewOrModifiedFilesHeader {
|
|
get {
|
|
return ResourceManager.GetString("NewOrModifiedFilesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Supported backends:.
|
|
/// </summary>
|
|
internal static string SupportedBackendsHeader {
|
|
get {
|
|
return ResourceManager.GetString("SupportedBackendsHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Supported compression modules:.
|
|
/// </summary>
|
|
internal static string SupportedCompressionModulesHeader {
|
|
get {
|
|
return ResourceManager.GetString("SupportedCompressionModulesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Supported encryption modules:.
|
|
/// </summary>
|
|
internal static string SupportedEncryptionModulesHeader {
|
|
get {
|
|
return ResourceManager.GetString("SupportedEncryptionModulesHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Supported options:.
|
|
/// </summary>
|
|
internal static string SupportedOptionsHeader {
|
|
get {
|
|
return ResourceManager.GetString("SupportedOptionsHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Unable to parse "{0}" into a time offset: {1}.
|
|
/// </summary>
|
|
internal static string TimeParseError {
|
|
get {
|
|
return ResourceManager.GetString("TimeParseError", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to An error occured: {0}.
|
|
/// </summary>
|
|
internal static string UnhandledException {
|
|
get {
|
|
return ResourceManager.GetString("UnhandledException", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to The inner error message is: {0}.
|
|
/// </summary>
|
|
internal static string UnhandledInnerException {
|
|
get {
|
|
return ResourceManager.GetString("UnhandledInnerException", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to ********** Duplicati v. {0} **********
|
|
///
|
|
///Usage:
|
|
///
|
|
/// Backup (make a full or incremental backup):
|
|
/// Duplicati.CommandLine [full] [options] <sourcefolder> <backend>
|
|
///
|
|
/// Restore (restore all or some files):
|
|
/// Duplicati.CommandLine [options] <backend> <destinationfolder>
|
|
///
|
|
/// Cleanup (remove partial and unused files):
|
|
/// Duplicati.CommandLine cleanup [options] <backend>
|
|
///
|
|
/// List files (backup volume sets):
|
|
/// Duplicati.CommandLine list [options] <backend>
|
|
///
|
|
/// List content files (files that can be restored):
|
|
/// [rest of string was truncated]";.
|
|
/// </summary>
|
|
internal static string Usage {
|
|
get {
|
|
return ResourceManager.GetString("Usage", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Wrong number of aguments.
|
|
/// </summary>
|
|
internal static string WrongNumberOfArgumentsError {
|
|
get {
|
|
return ResourceManager.GetString("WrongNumberOfArgumentsError", resourceCulture);
|
|
}
|
|
}
|
|
}
|
|
}
|