diff --git a/BuildTools/LicenseUpdater/LicenseUpdater.csproj b/BuildTools/LicenseUpdater/LicenseUpdater.csproj index 551de1203..cc6ad9d95 100755 --- a/BuildTools/LicenseUpdater/LicenseUpdater.csproj +++ b/BuildTools/LicenseUpdater/LicenseUpdater.csproj @@ -1,4 +1,4 @@ - + Exe @@ -6,6 +6,8 @@ license_upgrader enable enable + Copyright © 2024 Team Duplicati, MIT license + diff --git a/Duplicati.Library.RestAPI/Duplicati.Library.RestAPI.csproj b/Duplicati.Library.RestAPI/Duplicati.Library.RestAPI.csproj index d4b29c528..e0df1df58 100644 --- a/Duplicati.Library.RestAPI/Duplicati.Library.RestAPI.csproj +++ b/Duplicati.Library.RestAPI/Duplicati.Library.RestAPI.csproj @@ -1,7 +1,8 @@ - + net8.0 + Copyright © 2024 Team Duplicati, MIT license @@ -30,3 +31,4 @@ + diff --git a/Duplicati/CommandLine/AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj b/Duplicati/CommandLine/AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj index 5a2137134..2bdf033a4 100644 --- a/Duplicati/CommandLine/AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj +++ b/Duplicati/CommandLine/AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj @@ -1,9 +1,10 @@ - + net8.0 Duplicati.CommandLine.AutoUpdater.Implementation Duplicati.CommandLine.AutoUpdater + Copyright © 2024 Team Duplicati, MIT license @@ -20,3 +21,4 @@ + diff --git a/Duplicati/CommandLine/BackendTester/Duplicati.CommandLine.BackendTester.csproj b/Duplicati/CommandLine/BackendTester/Duplicati.CommandLine.BackendTester.csproj index 900907483..f71a978e1 100644 --- a/Duplicati/CommandLine/BackendTester/Duplicati.CommandLine.BackendTester.csproj +++ b/Duplicati/CommandLine/BackendTester/Duplicati.CommandLine.BackendTester.csproj @@ -1,9 +1,10 @@ - + net8.0 A backend debugging tool for Duplicati Duplicati.CommandLine.BackendTester.Implementation + Copyright © 2024 Team Duplicati, MIT license @@ -27,3 +28,4 @@ + diff --git a/Duplicati/CommandLine/BackendTool/Duplicati.CommandLine.BackendTool.csproj b/Duplicati/CommandLine/BackendTool/Duplicati.CommandLine.BackendTool.csproj index f265daf71..93d68ae44 100644 --- a/Duplicati/CommandLine/BackendTool/Duplicati.CommandLine.BackendTool.csproj +++ b/Duplicati/CommandLine/BackendTool/Duplicati.CommandLine.BackendTool.csproj @@ -1,8 +1,9 @@ - + net8.0 Duplicati.CommandLine.BackendTool.Implementation + Copyright © 2024 Team Duplicati, MIT license @@ -20,3 +21,4 @@ + diff --git a/Duplicati/CommandLine/CLI/Duplicati.CommandLine.csproj b/Duplicati/CommandLine/CLI/Duplicati.CommandLine.csproj index 7b6f5b54f..96f680beb 100644 --- a/Duplicati/CommandLine/CLI/Duplicati.CommandLine.csproj +++ b/Duplicati/CommandLine/CLI/Duplicati.CommandLine.csproj @@ -1,10 +1,11 @@ - + net8.0 A commandline version of Duplicati Duplicati.CommandLine.Implementation TrayWarning.ico + Copyright © 2024 Team Duplicati, MIT license @@ -34,4 +35,4 @@ - \ No newline at end of file + diff --git a/Duplicati/CommandLine/CLI/Strings.cs b/Duplicati/CommandLine/CLI/Strings.cs index 8ae82ce50..5ab5f4c56 100644 --- a/Duplicati/CommandLine/CLI/Strings.cs +++ b/Duplicati/CommandLine/CLI/Strings.cs @@ -20,8 +20,10 @@ // DEALINGS IN THE SOFTWARE. using Duplicati.Library.Localization.Short; -namespace Duplicati.CommandLine.Strings { - internal static class Program { +namespace Duplicati.CommandLine.Strings +{ + internal static class Program + { public static string DeleteCommandNeedsOptions(string commandname, string[] options) { return LC.L(@"The command {0} needs at least one of the following options set: {1}", commandname, string.Join(", ", options)); } public static string WrongNumberOfCommandsError_v2(int actualcommands, int expectedcommands, string[] commands) { return LC.L(@"Found {0} commands but expected {1}, commands: {2}", actualcommands, expectedcommands, string.Join(System.Environment.NewLine, commands ?? new string[0])); } @@ -47,13 +49,12 @@ namespace Duplicati.CommandLine.Strings { public static string IncludeShort { get { return LC.L(@"Include files"); } } public static string ExcludeLong { get { return LC.L(@"Exclude files that match this filter. The special character * means any number of character, and the special character ? means any single character, use *.txt to exclude all files with a txt extension. Regular expressions are also supported and can be supplied by using hard braces, i.e. [.*\.txt]. Filter groups (which encapsulate a built-in set of well-known files and folders) can be specified by using curly braces, i.e. {{TemporaryFiles}}."); } } public static string ExcludeShort { get { return LC.L(@"Exclude files"); } } - public static string ControlFilesOptionShort { get { return LC.L(@"If this option is used with a backup operation, it is interpreted as a list of files to add to the filesets. When used with list or restore, it will list or restore the control files instead of the normal files."); } } - public static string ControlFilesOptionLong { get { return LC.L(@"Use control files"); } } + public static string ControlFilesOptionShort { get { return LC.L(@"Use control files"); } } + public static string ControlFilesOptionLong { get { return LC.L(@"If this option is used with a backup operation, it is interpreted as a list of files to add to the filesets. When used with list or restore, it will list or restore the control files instead of the normal files."); } } 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"; } } - - + // ReSharper disable once UnusedMember.Global // 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 diff --git a/Duplicati/CommandLine/ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj b/Duplicati/CommandLine/ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj index 4a26154f8..b400d7ec7 100644 --- a/Duplicati/CommandLine/ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj +++ b/Duplicati/CommandLine/ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj @@ -1,9 +1,10 @@ - + net8.0 Exe Duplicati.CommandLine.ConfigurationImporter.Implementation + Copyright © 2024 Team Duplicati, MIT license @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/Duplicati/CommandLine/RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj b/Duplicati/CommandLine/RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj index 4e024910e..22a5c720c 100644 --- a/Duplicati/CommandLine/RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj +++ b/Duplicati/CommandLine/RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj @@ -1,9 +1,10 @@ - + net8.0 RecoveryTool for Duplicati Duplicati.CommandLine.RecoveryTool.Implementation + Copyright © 2024 Team Duplicati, MIT license @@ -25,3 +26,4 @@ + diff --git a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj index b7e05e86d..53c6b9bdb 100644 --- a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj +++ b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj @@ -1,4 +1,4 @@ - + net8.0 @@ -10,6 +10,7 @@ copyused true app.manifest + Copyright © 2024 Team Duplicati, MIT license @@ -61,3 +62,4 @@ + diff --git a/Duplicati/Library/AutoUpdater/Duplicati.Library.AutoUpdater.csproj b/Duplicati/Library/AutoUpdater/Duplicati.Library.AutoUpdater.csproj index e6d1b0110..47afc9ba0 100644 --- a/Duplicati/Library/AutoUpdater/Duplicati.Library.AutoUpdater.csproj +++ b/Duplicati/Library/AutoUpdater/Duplicati.Library.AutoUpdater.csproj @@ -1,7 +1,8 @@ - + net8.0 + Copyright © 2024 Team Duplicati, MIT license @@ -31,4 +32,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/AliyunOSS/Duplicati.Library.Backend.AliyunOSS.csproj b/Duplicati/Library/Backend/AliyunOSS/Duplicati.Library.Backend.AliyunOSS.csproj index 78448a263..3fcfc15b0 100644 --- a/Duplicati/Library/Backend/AliyunOSS/Duplicati.Library.Backend.AliyunOSS.csproj +++ b/Duplicati/Library/Backend/AliyunOSS/Duplicati.Library.Backend.AliyunOSS.csproj @@ -1,8 +1,9 @@ - + net8.0 Library false + Copyright © 2024 Team Duplicati, MIT license @@ -16,4 +17,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/AlternativeFTP/Duplicati.Library.Backend.AlternativeFTP.csproj b/Duplicati/Library/Backend/AlternativeFTP/Duplicati.Library.Backend.AlternativeFTP.csproj index 9714343a5..6a357e25d 100644 --- a/Duplicati/Library/Backend/AlternativeFTP/Duplicati.Library.Backend.AlternativeFTP.csproj +++ b/Duplicati/Library/Backend/AlternativeFTP/Duplicati.Library.Backend.AlternativeFTP.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/AzureBlob/Duplicati.Library.Backend.AzureBlob.csproj b/Duplicati/Library/Backend/AzureBlob/Duplicati.Library.Backend.AzureBlob.csproj index f09aadced..fc5228f80 100644 --- a/Duplicati/Library/Backend/AzureBlob/Duplicati.Library.Backend.AzureBlob.csproj +++ b/Duplicati/Library/Backend/AzureBlob/Duplicati.Library.Backend.AzureBlob.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -30,4 +31,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/Backblaze/Duplicati.Library.Backend.Backblaze.csproj b/Duplicati/Library/Backend/Backblaze/Duplicati.Library.Backend.Backblaze.csproj index 1064a35b5..8b90ed589 100644 --- a/Duplicati/Library/Backend/Backblaze/Duplicati.Library.Backend.Backblaze.csproj +++ b/Duplicati/Library/Backend/Backblaze/Duplicati.Library.Backend.Backblaze.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/Backblaze/Strings.cs b/Duplicati/Library/Backend/Backblaze/Strings.cs index c24108405..6c964a405 100644 --- a/Duplicati/Library/Backend/Backblaze/Strings.cs +++ b/Duplicati/Library/Backend/Backblaze/Strings.cs @@ -22,8 +22,8 @@ using Duplicati.Library.Localization.Short; namespace Duplicati.Library.Backend.Strings { internal static class B2 { - public static string B2applicationkeyDescriptionShort { get { return LC.L(@"The ""B2 Cloud Storage Application Key"" can be obtained after logging into your Backblaze account, this can also be supplied through the ""auth-password"" property"); } } - public static string B2applicationkeyDescriptionLong { get { return LC.L(@"The ""B2 Cloud Storage Application Key"""); } } + public static string B2applicationkeyDescriptionLong { get { return LC.L(@"The ""B2 Cloud Storage Application Key"" can be obtained after logging into your Backblaze account, this can also be supplied through the ""auth-password"" property"); } } + public static string B2applicationkeyDescriptionShort { get { return LC.L(@"The ""B2 Cloud Storage Application Key"""); } } public static string B2accountidDescriptionLong { get { return LC.L(@"The ""B2 Cloud Storage Account ID"" can be obtained after logging into your Backblaze account, this can also be supplied through the ""auth-username"" property"); } } public static string B2accountidDescriptionShort { get { return LC.L(@"The ""B2 Cloud Storage Account ID"""); } } public static string DisplayName { get { return LC.L(@"B2 Cloud Storage"); } } diff --git a/Duplicati/Library/Backend/Box/Duplicati.Library.Backend.Box.csproj b/Duplicati/Library/Backend/Box/Duplicati.Library.Backend.Box.csproj index 641509398..b71ec4eb0 100644 --- a/Duplicati/Library/Backend/Box/Duplicati.Library.Backend.Box.csproj +++ b/Duplicati/Library/Backend/Box/Duplicati.Library.Backend.Box.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -24,4 +25,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/CloudFiles/Duplicati.Library.Backend.CloudFiles.csproj b/Duplicati/Library/Backend/CloudFiles/Duplicati.Library.Backend.CloudFiles.csproj index 439448c3a..d16657a8d 100644 --- a/Duplicati/Library/Backend/CloudFiles/Duplicati.Library.Backend.CloudFiles.csproj +++ b/Duplicati/Library/Backend/CloudFiles/Duplicati.Library.Backend.CloudFiles.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -19,4 +20,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/Dropbox/Duplicati.Library.Backend.Dropbox.csproj b/Duplicati/Library/Backend/Dropbox/Duplicati.Library.Backend.Dropbox.csproj index 868a085b5..299f4dba2 100644 --- a/Duplicati/Library/Backend/Dropbox/Duplicati.Library.Backend.Dropbox.csproj +++ b/Duplicati/Library/Backend/Dropbox/Duplicati.Library.Backend.Dropbox.csproj @@ -1,11 +1,9 @@ - + net8.0 Dropbox backend for Duplicati - - - net8.0 + Copyright © 2024 Team Duplicati, MIT license @@ -25,4 +23,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/FTP/Duplicati.Library.Backend.FTP.csproj b/Duplicati/Library/Backend/FTP/Duplicati.Library.Backend.FTP.csproj index c226de937..ea39c259e 100644 --- a/Duplicati/Library/Backend/FTP/Duplicati.Library.Backend.FTP.csproj +++ b/Duplicati/Library/Backend/FTP/Duplicati.Library.Backend.FTP.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -20,3 +21,4 @@ + diff --git a/Duplicati/Library/Backend/File/Duplicati.Library.Backend.File.csproj b/Duplicati/Library/Backend/File/Duplicati.Library.Backend.File.csproj index eff2fbe41..94448063c 100644 --- a/Duplicati/Library/Backend/File/Duplicati.Library.Backend.File.csproj +++ b/Duplicati/Library/Backend/File/Duplicati.Library.Backend.File.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -19,4 +20,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/GoogleServices/Duplicati.Library.Backend.GoogleServices.csproj b/Duplicati/Library/Backend/GoogleServices/Duplicati.Library.Backend.GoogleServices.csproj index e69770ba4..193c2695f 100644 --- a/Duplicati/Library/Backend/GoogleServices/Duplicati.Library.Backend.GoogleServices.csproj +++ b/Duplicati/Library/Backend/GoogleServices/Duplicati.Library.Backend.GoogleServices.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/GoogleServices/GCSConfig.cs b/Duplicati/Library/Backend/GoogleServices/GCSConfig.cs index f89d7a8bd..bb4c1436c 100644 --- a/Duplicati/Library/Backend/GoogleServices/GCSConfig.cs +++ b/Duplicati/Library/Backend/GoogleServices/GCSConfig.cs @@ -23,6 +23,7 @@ using System; using Duplicati.Library.Interface; using System.Collections.Generic; using System.Linq; +using Duplicati.Library.Localization.Short; namespace Duplicati.Library.Backend.GoogleServices { @@ -67,19 +68,19 @@ namespace Duplicati.Library.Backend.GoogleServices public string Key { get { return "gcs-getconfig"; } } - public string DisplayName { get { return "Google Cloud Storage configuration module"; } } + public string DisplayName { get { return LC.L("Google Cloud Storage configuration module"); } } - public string Description { get { return "Exposes Google Cloud Storage configuration as a web module"; } } + public string Description { get { return LC.L("Exposes Google Cloud Storage configuration as a web module"); } } public System.Collections.Generic.IList SupportedCommands { get { - return new List(new ICommandLineArgument[] { - new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, "The config to get", "Provides different config values", DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) + return new List([ + new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, LC.L("The config to get"), LC.L("Provides different config values"), DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) - }); + ]); } } diff --git a/Duplicati/Library/Backend/Idrivee2/Duplicati.Library.Backend.Idrivee2.csproj b/Duplicati/Library/Backend/Idrivee2/Duplicati.Library.Backend.Idrivee2.csproj index 39d0e2859..14548a943 100644 --- a/Duplicati/Library/Backend/Idrivee2/Duplicati.Library.Backend.Idrivee2.csproj +++ b/Duplicati/Library/Backend/Idrivee2/Duplicati.Library.Backend.Idrivee2.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -21,3 +22,4 @@ + diff --git a/Duplicati/Library/Backend/Jottacloud/Duplicati.Library.Backend.Jottacloud.csproj b/Duplicati/Library/Backend/Jottacloud/Duplicati.Library.Backend.Jottacloud.csproj index eef24e2a6..01fe1b339 100644 --- a/Duplicati/Library/Backend/Jottacloud/Duplicati.Library.Backend.Jottacloud.csproj +++ b/Duplicati/Library/Backend/Jottacloud/Duplicati.Library.Backend.Jottacloud.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -21,3 +22,4 @@ + diff --git a/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj b/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj index fe688d32d..b9cc93edd 100644 --- a/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj +++ b/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj @@ -1,12 +1,13 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license - - + + @@ -23,4 +24,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/OAuthHelper/Duplicati.Library.OAuthHelper.csproj b/Duplicati/Library/Backend/OAuthHelper/Duplicati.Library.OAuthHelper.csproj index 62cfaff47..a60255472 100644 --- a/Duplicati/Library/Backend/OAuthHelper/Duplicati.Library.OAuthHelper.csproj +++ b/Duplicati/Library/Backend/OAuthHelper/Duplicati.Library.OAuthHelper.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -22,3 +23,4 @@ + diff --git a/Duplicati/Library/Backend/OneDrive/Duplicati.Library.Backend.OneDrive.csproj b/Duplicati/Library/Backend/OneDrive/Duplicati.Library.Backend.OneDrive.csproj index 146701e93..13796498a 100644 --- a/Duplicati/Library/Backend/OneDrive/Duplicati.Library.Backend.OneDrive.csproj +++ b/Duplicati/Library/Backend/OneDrive/Duplicati.Library.Backend.OneDrive.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/OpenStack/Duplicati.Library.Backend.OpenStack.csproj b/Duplicati/Library/Backend/OpenStack/Duplicati.Library.Backend.OpenStack.csproj index e69770ba4..193c2695f 100644 --- a/Duplicati/Library/Backend/OpenStack/Duplicati.Library.Backend.OpenStack.csproj +++ b/Duplicati/Library/Backend/OpenStack/Duplicati.Library.Backend.OpenStack.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/OpenStack/OpenStackConfig.cs b/Duplicati/Library/Backend/OpenStack/OpenStackConfig.cs index aa78ce453..ae22ebcee 100644 --- a/Duplicati/Library/Backend/OpenStack/OpenStackConfig.cs +++ b/Duplicati/Library/Backend/OpenStack/OpenStackConfig.cs @@ -23,6 +23,7 @@ using System; using Duplicati.Library.Interface; using System.Collections.Generic; using System.Linq; +using Duplicati.Library.Localization.Short; namespace Duplicati.Library.Backend.OpenStack { @@ -63,19 +64,19 @@ namespace Duplicati.Library.Backend.OpenStack public string Key { get { return "openstack-getconfig"; } } - public string DisplayName { get { return "OpenStack configuration module"; } } + public string DisplayName { get { return LC.L("OpenStack configuration module"); } } - public string Description { get { return "Exposes OpenStack configuration as a web module"; } } + public string Description { get { return LC.L("Exposes OpenStack configuration as a web module"); } } public System.Collections.Generic.IList SupportedCommands { get { - return new List(new ICommandLineArgument[] { - new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, "The config to get", "Provides different config values", DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) + return new List([ + new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, LC.L("The config to get"), LC.L("Provides different config values"), DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) - }); + ]); } } } diff --git a/Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone.csproj b/Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone.csproj index 64849a608..4b7b509a9 100644 --- a/Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone.csproj +++ b/Duplicati/Library/Backend/Rclone/Duplicati.Library.Backend.Rclone.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -21,4 +22,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/S3/Duplicati.Library.Backend.S3.csproj b/Duplicati/Library/Backend/S3/Duplicati.Library.Backend.S3.csproj index 8f251ca78..bf248e538 100644 --- a/Duplicati/Library/Backend/S3/Duplicati.Library.Backend.S3.csproj +++ b/Duplicati/Library/Backend/S3/Duplicati.Library.Backend.S3.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -28,4 +29,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/S3/S3Config.cs b/Duplicati/Library/Backend/S3/S3Config.cs index 7afb52403..261d72da7 100644 --- a/Duplicati/Library/Backend/S3/S3Config.cs +++ b/Duplicati/Library/Backend/S3/S3Config.cs @@ -21,8 +21,8 @@ using System; using System.Collections.Generic; -using System.Linq; using Duplicati.Library.Interface; +using Duplicati.Library.Localization.Short; namespace Duplicati.Library.Backend { @@ -52,11 +52,11 @@ namespace Duplicati.Library.Backend options.TryGetValue(KEY_CONFIGTYPE, out k); if (string.IsNullOrWhiteSpace(k)) k = DEFAULT_CONFIG_TYPE_STR; - + ConfigType ct; if (!Enum.TryParse(k, true, out ct)) ct = DEFAULT_CONFIG_TYPE; - + switch (ct) { case ConfigType.RegionHosts: @@ -72,18 +72,18 @@ namespace Duplicati.Library.Backend public string Key { get { return "s3-getconfig"; } } - public string DisplayName { get { return "S3 configuration module"; } } + public string DisplayName { get { return LC.L("S3 configuration module"); } } - public string Description { get { return "Exposes S3 configuration as a web module"; } } + public string Description { get { return LC.L("Exposes S3 configuration as a web module"); } } public IList SupportedCommands { get { - return new List(new ICommandLineArgument[] { - new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, "The config to get", "Provides different config values", DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) + return new List([ + new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, LC.L("The config to get"), LC.L("Provides different config values"), DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) - }); + ]); } } diff --git a/Duplicati/Library/Backend/S3/S3IAM.cs b/Duplicati/Library/Backend/S3/S3IAM.cs index 7c34568ad..11afb062b 100644 --- a/Duplicati/Library/Backend/S3/S3IAM.cs +++ b/Duplicati/Library/Backend/S3/S3IAM.cs @@ -25,6 +25,7 @@ using System.Linq; using Duplicati.Library.Interface; using Amazon.IdentityManagement; using Amazon.IdentityManagement.Model; +using Duplicati.Library.Localization.Short; namespace Duplicati.Library.Backend { @@ -67,20 +68,20 @@ namespace Duplicati.Library.Backend public string Key { get { return "s3-iamconfig"; } } - public string DisplayName { get { return "S3 IAM support module"; } } + public string DisplayName { get { return LC.L("S3 IAM support module"); } } - public string Description { get { return "Exposes S3 IAM manipulation as a web module"; } } + public string Description { get { return LC.L("Exposes S3 IAM manipulation as a web module"); } } public IList SupportedCommands { get { - return new List(new ICommandLineArgument[] { - new CommandLineArgument(KEY_OPERATION, CommandLineArgument.ArgumentType.Enumeration, "The operation to perform", "Selects the operation to perform", null, Enum.GetNames(typeof(Operation))), - new CommandLineArgument(KEY_USERNAME, CommandLineArgument.ArgumentType.String, "The username", "The Amazon Access Key ID"), - new CommandLineArgument(KEY_PASSWORD, CommandLineArgument.ArgumentType.String, "The password", "The Amazon Secret Key"), - }); + return new List([ + new CommandLineArgument(KEY_OPERATION, CommandLineArgument.ArgumentType.Enumeration, LC.L("The operation to perform"), LC.L("Selects the operation to perform"), null, Enum.GetNames(typeof(Operation))), + new CommandLineArgument(KEY_USERNAME, CommandLineArgument.ArgumentType.String, LC.L("The username"), LC.L("The Amazon Access Key ID")), + new CommandLineArgument(KEY_PASSWORD, CommandLineArgument.ArgumentType.String, LC.L("The password"), LC.L("The Amazon Secret Key")), + ]); } } diff --git a/Duplicati/Library/Backend/S3/Strings.cs b/Duplicati/Library/Backend/S3/Strings.cs index 08a2b65f3..10291fffb 100644 --- a/Duplicati/Library/Backend/S3/Strings.cs +++ b/Duplicati/Library/Backend/S3/Strings.cs @@ -43,7 +43,7 @@ namespace Duplicati.Library.Backend.Strings public static string S3ServerNameDescriptionShort { get { return LC.L(@"Specifies an alternate S3 server name"); } } public static string S3ClientDescriptionShort { get { return LC.L(@"Specifies the S3 client library to use"); } } public static string DescriptionUseSSLLong { get { return LC.L(@"Use this flag to communicate using Secure Socket Layer (SSL) over http (https). Note that bucket names containing a period has problems with SSL connections."); } } - public static string DescriptionS3ClientLong { get { return LC.L(@"Set either to aws or minio . Then either the AWS SDK or Minio SDK will used to communicate with S3 services."); } } + public static string DescriptionS3ClientLong { get { return LC.L(@"Set either to aws or minio. Then either the AWS SDK or Minio SDK will be used to communicate with S3 services."); } } public static string DescriptionUseSSLShort { get { return LC.L(@"Instructs Duplicati to use an SSL (https) connection"); } } public static string DescriptionDisableChunkEncodingLong { get { return LC.L(@"This disables chunk encoding for the aws client, which is not supported by all S3 providers."); } } public static string DescriptionDisableChunkEncodingShort { get { return LC.L(@"Disable chunk encoding (aws client only)"); } } diff --git a/Duplicati/Library/Backend/SSHv2/Duplicati.Library.Backend.SSHv2.csproj b/Duplicati/Library/Backend/SSHv2/Duplicati.Library.Backend.SSHv2.csproj index 1828ff1ba..5c7100b7a 100644 --- a/Duplicati/Library/Backend/SSHv2/Duplicati.Library.Backend.SSHv2.csproj +++ b/Duplicati/Library/Backend/SSHv2/Duplicati.Library.Backend.SSHv2.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -25,3 +26,4 @@ + diff --git a/Duplicati/Library/Backend/SharePoint/Duplicati.Library.Backend.SharePoint.csproj b/Duplicati/Library/Backend/SharePoint/Duplicati.Library.Backend.SharePoint.csproj index d289fc24a..125e6eadc 100644 --- a/Duplicati/Library/Backend/SharePoint/Duplicati.Library.Backend.SharePoint.csproj +++ b/Duplicati/Library/Backend/SharePoint/Duplicati.Library.Backend.SharePoint.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -25,4 +26,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/Sia/Duplicati.Library.Backend.Sia.csproj b/Duplicati/Library/Backend/Sia/Duplicati.Library.Backend.Sia.csproj index e69770ba4..193c2695f 100644 --- a/Duplicati/Library/Backend/Sia/Duplicati.Library.Backend.Sia.csproj +++ b/Duplicati/Library/Backend/Sia/Duplicati.Library.Backend.Sia.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/Storj/Duplicati.Library.Backend.Storj.csproj b/Duplicati/Library/Backend/Storj/Duplicati.Library.Backend.Storj.csproj index 02d320be3..c12ffc516 100644 --- a/Duplicati/Library/Backend/Storj/Duplicati.Library.Backend.Storj.csproj +++ b/Duplicati/Library/Backend/Storj/Duplicati.Library.Backend.Storj.csproj @@ -4,19 +4,15 @@ net8.0 Library Storj backend for Duplicati - + Copyright © 2024 Team Duplicati, MIT license + - - - - - - - - - + + + + @@ -33,3 +29,4 @@ + diff --git a/Duplicati/Library/Backend/Storj/StorjConfig.cs b/Duplicati/Library/Backend/Storj/StorjConfig.cs index 4af692ab5..50c57cde7 100644 --- a/Duplicati/Library/Backend/Storj/StorjConfig.cs +++ b/Duplicati/Library/Backend/Storj/StorjConfig.cs @@ -19,6 +19,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. using Duplicati.Library.Interface; +using Duplicati.Library.Localization.Short; using System; using System.Collections.Generic; @@ -40,18 +41,18 @@ namespace Duplicati.Library.Backend.Storj public string Key { get { return "storj-getconfig"; } } - public string DisplayName { get { return "Storj DCS configuration module"; } } + public string DisplayName { get { return LC.L("Storj DCS configuration module"); } } - public string Description { get { return "Exposes Storj DCS configuration as a web module"; } } + public string Description { get { return LC.L("Exposes Storj DCS configuration as a web module"); } } public IList SupportedCommands { get { - return new List(new ICommandLineArgument[] { - new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, "The config to get", "Provides different config values", DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) + return new List([ + new CommandLineArgument(KEY_CONFIGTYPE, CommandLineArgument.ArgumentType.Enumeration, LC.L("The config to get"), LC.L("Provides different config values"), DEFAULT_CONFIG_TYPE_STR, Enum.GetNames(typeof(ConfigType))) - }); + ]); } } diff --git a/Duplicati/Library/Backend/TahoeLAFS/Duplicati.Library.Backend.TahoeLAFS.csproj b/Duplicati/Library/Backend/TahoeLAFS/Duplicati.Library.Backend.TahoeLAFS.csproj index 42ca371e7..ac39d7a5c 100644 --- a/Duplicati/Library/Backend/TahoeLAFS/Duplicati.Library.Backend.TahoeLAFS.csproj +++ b/Duplicati/Library/Backend/TahoeLAFS/Duplicati.Library.Backend.TahoeLAFS.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -24,4 +25,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/TencentCOS/Duplicati.Library.Backend.TencentCOS.csproj b/Duplicati/Library/Backend/TencentCOS/Duplicati.Library.Backend.TencentCOS.csproj index 0787253f2..49bd4cd5f 100644 --- a/Duplicati/Library/Backend/TencentCOS/Duplicati.Library.Backend.TencentCOS.csproj +++ b/Duplicati/Library/Backend/TencentCOS/Duplicati.Library.Backend.TencentCOS.csproj @@ -1,7 +1,8 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -23,4 +24,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backend/WEBDAV/Duplicati.Library.Backend.WEBDAV.csproj b/Duplicati/Library/Backend/WEBDAV/Duplicati.Library.Backend.WEBDAV.csproj index c9cf10e4c..e49e297f9 100644 --- a/Duplicati/Library/Backend/WEBDAV/Duplicati.Library.Backend.WEBDAV.csproj +++ b/Duplicati/Library/Backend/WEBDAV/Duplicati.Library.Backend.WEBDAV.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -20,4 +21,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Backends/BackendModules.cs b/Duplicati/Library/Backends/BackendModules.cs index 505ad45ef..de48120f7 100644 --- a/Duplicati/Library/Backends/BackendModules.cs +++ b/Duplicati/Library/Backends/BackendModules.cs @@ -76,7 +76,7 @@ public static class BackendModules private static bool IsStorjSupported => (OperatingSystem.IsWindows() && (RuntimeInformation.ProcessArchitecture == Architecture.X64 || RuntimeInformation.ProcessArchitecture == Architecture.X86 || RuntimeInformation.ProcessArchitecture == Architecture.Arm64)) || - (OperatingSystem.IsLinux() && (RuntimeInformation.ProcessArchitecture == Architecture.X64)) + (OperatingSystem.IsLinux() && (RuntimeInformation.ProcessArchitecture == Architecture.X64 || RuntimeInformation.ProcessArchitecture == Architecture.Arm64 || RuntimeInformation.ProcessArchitecture == Architecture.Arm)) || (OperatingSystem.IsMacOS() && (RuntimeInformation.ProcessArchitecture == Architecture.X64 || RuntimeInformation.ProcessArchitecture == Architecture.Arm64)); } diff --git a/Duplicati/Library/Backends/Duplicati.Library.Backends.csproj b/Duplicati/Library/Backends/Duplicati.Library.Backends.csproj index b5b6ef7d4..f89d29a21 100644 --- a/Duplicati/Library/Backends/Duplicati.Library.Backends.csproj +++ b/Duplicati/Library/Backends/Duplicati.Library.Backends.csproj @@ -3,6 +3,7 @@ net8.0 Central reference to all backends Duplicati.Library.Backend + Copyright © 2024 Team Duplicati, MIT license @@ -31,4 +32,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Common/Duplicati.Library.Common.csproj b/Duplicati/Library/Common/Duplicati.Library.Common.csproj index e00b166ca..1ef306a47 100644 --- a/Duplicati/Library/Common/Duplicati.Library.Common.csproj +++ b/Duplicati/Library/Common/Duplicati.Library.Common.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.IO + Copyright © 2024 Team Duplicati, MIT license @@ -26,3 +27,4 @@ + diff --git a/Duplicati/Library/Compression/Duplicati.Library.Compression.csproj b/Duplicati/Library/Compression/Duplicati.Library.Compression.csproj index 93b74c746..9d5cc374b 100644 --- a/Duplicati/Library/Compression/Duplicati.Library.Compression.csproj +++ b/Duplicati/Library/Compression/Duplicati.Library.Compression.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Compression + Copyright © 2024 Team Duplicati, MIT license @@ -29,4 +30,4 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - \ No newline at end of file + diff --git a/Duplicati/Library/DynamicLoader/Duplicati.Library.DynamicLoader.csproj b/Duplicati/Library/DynamicLoader/Duplicati.Library.DynamicLoader.csproj index 897783392..838101412 100644 --- a/Duplicati/Library/DynamicLoader/Duplicati.Library.DynamicLoader.csproj +++ b/Duplicati/Library/DynamicLoader/Duplicati.Library.DynamicLoader.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -24,4 +25,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Encryption/Duplicati.Library.Encryption.csproj b/Duplicati/Library/Encryption/Duplicati.Library.Encryption.csproj index 5c3e99e05..dea91706c 100644 --- a/Duplicati/Library/Encryption/Duplicati.Library.Encryption.csproj +++ b/Duplicati/Library/Encryption/Duplicati.Library.Encryption.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Encryption + Copyright © 2024 Team Duplicati, MIT license @@ -23,4 +24,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Interface/Duplicati.Library.Interface.csproj b/Duplicati/Library/Interface/Duplicati.Library.Interface.csproj index fc0bf10ad..3d433a418 100644 --- a/Duplicati/Library/Interface/Duplicati.Library.Interface.csproj +++ b/Duplicati/Library/Interface/Duplicati.Library.Interface.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Interface + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Localization/Duplicati.Library.Localization.csproj b/Duplicati/Library/Localization/Duplicati.Library.Localization.csproj index b34f5f536..abd43ec32 100644 --- a/Duplicati/Library/Localization/Duplicati.Library.Localization.csproj +++ b/Duplicati/Library/Localization/Duplicati.Library.Localization.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -24,4 +25,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Logging/Duplicati.Library.Logging.csproj b/Duplicati/Library/Logging/Duplicati.Library.Logging.csproj index 30eb69cb0..3034eae50 100644 --- a/Duplicati/Library/Logging/Duplicati.Library.Logging.csproj +++ b/Duplicati/Library/Logging/Duplicati.Library.Logging.csproj @@ -1,7 +1,8 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -11,4 +12,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Main/Duplicati.Library.Main.csproj b/Duplicati/Library/Main/Duplicati.Library.Main.csproj index 94357bc00..53480660c 100644 --- a/Duplicati/Library/Main/Duplicati.Library.Main.csproj +++ b/Duplicati/Library/Main/Duplicati.Library.Main.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -47,3 +48,4 @@ + diff --git a/Duplicati/Library/Main/Strings.cs b/Duplicati/Library/Main/Strings.cs index 8fe738a4c..a1375c815 100644 --- a/Duplicati/Library/Main/Strings.cs +++ b/Duplicati/Library/Main/Strings.cs @@ -287,24 +287,24 @@ namespace Duplicati.Library.Main.Strings public static string UsebackgroundiopriorityShort { get { return LC.L("Sets the process to use low IO priority"); } } public static string UsebackgroundiopriorityLong { get { return LC.L("This option instructions the operating system to set the current process to use the lowest IO priority level, which can make operations run slower but will interfere less with other operations running at the same time"); } } - public static string ExcludeemptyfoldersShort { get { return "Excludes empty folders"; } } - public static string ExcludeemptyfoldersLong { get { return "Use this option to remove all empty folders from a backup."; } } + public static string ExcludeemptyfoldersShort { get { return LC.L("Excludes empty folders"); } } + public static string ExcludeemptyfoldersLong { get { return LC.L("Use this option to remove all empty folders from a backup."); } } public static string IgnorefilenamesShort { get { return LC.L("List of filenames that exclude folders"); } } public static string IgnorefilenamesLong { get { return LC.L("Use this option to set a filename, or list of filenames, that indicate exclusion of a folder which contains it. A common use would be to have a file named something like \".nobackup\" and place this file into folders that should not be backed up."); } } - public static string RestoresymlinkmetadataShort { get { return "Apply metadata to symlinks"; } } - public static string RestoresymlinkmetadataLong { get { return "If symlink metadata is applied, it will usually mean changing the symlink target, instead of the symlink itself. For this reason, metadata is not applied to symlinks, but this option can be used to override this, such that metadata is applied to symlinks as well."; } } - public static string UnittestmodeShort { get { return "Activate unittest mode"; } } - public static string UnittestmodeLong { get { return "When running in unittest mode, no automatic fixes are applied, which assumes that the input data is always in perfect shape. This option is not intended for use in daily backups, but required for testing purposes to reveal potential problems."; } } + public static string RestoresymlinkmetadataShort { get { return LC.L("Apply metadata to symlinks"); } } + public static string RestoresymlinkmetadataLong { get { return LC.L("If symlink metadata is applied, it will usually mean changing the symlink target, instead of the symlink itself. For this reason, metadata is not applied to symlinks, but this option can be used to override this, such that metadata is applied to symlinks as well."); } } + public static string UnittestmodeShort { get { return LC.L("Activate unittest mode"); } } + public static string UnittestmodeLong { get { return LC.L("When running in unittest mode, no automatic fixes are applied, which assumes that the input data is always in perfect shape. This option is not intended for use in daily backups, but required for testing purposes to reveal potential problems."); } } public static string ProfilealldatabasequeriesShort { get { return LC.L("Activates logging of all database queries"); } } public static string ProfilealldatabasequeriesLong { get { return LC.L("To improve performance of the backups, frequent database queries are not logged by default. Enable this option to log all database queries, and remember to set either --{0}={2} or --{1}={2} to report the additional log data", "console-log-level", "log-file-log-level", nameof(Logging.LogMessageType.Profiling)); } } - public static string RebuildmissingdblockfilesShort { get { return "Rebuild dblock files when missing"; } } - public static string RebuildmissingdblockfilesLong { get { return "If dblock files are missing from the destination, you can attempt to rebuild them using local source data. However, since the local data may have changed, it may not be possible to retrieve all the required data and the process may be slow. Use this option to attempt to rebuild missing dblock files."; } } + public static string RebuildmissingdblockfilesShort { get { return LC.L("Rebuild dblock files when missing"); } } + public static string RebuildmissingdblockfilesLong { get { return LC.L("If dblock files are missing from the destination, you can attempt to rebuild them using local source data. However, since the local data may have changed, it may not be possible to retrieve all the required data and the process may be slow. Use this option to attempt to rebuild missing dblock files."); } } - public static string AutoCompactIntervalShort { get { return "Minimum time between auto compactions"; } } - public static string AutoCompactIntervalLong { get { return "The minimum amount of time that must elapse after the last compaction before another will be automatically triggered at the end of a backup job. Automatic compaction can be a long-running process and may not be desirable to run after every single backup."; } } - public static string AutoVacuumIntervalShort { get { return "Minimum time between auto vacuums"; } } - public static string AutoVacuumIntervalLong { get { return "The minimum amount of time that must elapse after the last vacuum before another will be automatically triggered at the end of a backup job. Automatic vacuum can be a long-running process and may not be desirable to run after every single backup."; } } + public static string AutoCompactIntervalShort { get { return LC.L("Minimum time between auto compactions"); } } + public static string AutoCompactIntervalLong { get { return LC.L("The minimum amount of time that must elapse after the last compaction before another will be automatically triggered at the end of a backup job. Automatic compaction can be a long-running process and may not be desirable to run after every single backup."); } } + public static string AutoVacuumIntervalShort { get { return LC.L("Minimum time between auto vacuums"); } } + public static string AutoVacuumIntervalLong { get { return LC.L("The minimum amount of time that must elapse after the last vacuum before another will be automatically triggered at the end of a backup job. Automatic vacuum can be a long-running process and may not be desirable to run after every single backup."); } } } internal static class Common diff --git a/Duplicati/Library/Modules/Builtin/Duplicati.Library.Modules.Builtin.csproj b/Duplicati/Library/Modules/Builtin/Duplicati.Library.Modules.Builtin.csproj index dda965bfd..379952fbe 100644 --- a/Duplicati/Library/Modules/Builtin/Duplicati.Library.Modules.Builtin.csproj +++ b/Duplicati/Library/Modules/Builtin/Duplicati.Library.Modules.Builtin.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Modules.Builtin + Copyright © 2024 Team Duplicati, MIT license @@ -37,3 +38,4 @@ + diff --git a/Duplicati/Library/Modules/Builtin/SendHttpMessage.cs b/Duplicati/Library/Modules/Builtin/SendHttpMessage.cs index 81950443d..a3d4dd354 100644 --- a/Duplicati/Library/Modules/Builtin/SendHttpMessage.cs +++ b/Duplicati/Library/Modules/Builtin/SendHttpMessage.cs @@ -286,6 +286,8 @@ namespace Duplicati.Library.Modules.Builtin response.ReasonPhrase, responseContent ); + + response.EnsureSuccessStatusCode(); } catch (Exception ex) { diff --git a/Duplicati/Library/SQLiteHelper/Duplicati.Library.SQLiteHelper.csproj b/Duplicati/Library/SQLiteHelper/Duplicati.Library.SQLiteHelper.csproj index 450dbd7ed..821bda6b5 100644 --- a/Duplicati/Library/SQLiteHelper/Duplicati.Library.SQLiteHelper.csproj +++ b/Duplicati/Library/SQLiteHelper/Duplicati.Library.SQLiteHelper.csproj @@ -1,4 +1,4 @@ - + net8.0 @@ -6,7 +6,8 @@ SQLiteHelper SQLiteHelper for Duplicati Duplicati.Library.SQLiteHelper - + Copyright © 2024 Team Duplicati, MIT license + @@ -39,3 +40,4 @@ + diff --git a/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj b/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj index c66266377..14c86421c 100644 --- a/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj +++ b/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj @@ -1,7 +1,8 @@ - + net8.0 + Copyright © 2024 Team Duplicati, MIT license @@ -36,4 +37,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/UsageReporter/Duplicati.Library.UsageReporter.csproj b/Duplicati/Library/UsageReporter/Duplicati.Library.UsageReporter.csproj index 4fd88b9cd..558c75704 100644 --- a/Duplicati/Library/UsageReporter/Duplicati.Library.UsageReporter.csproj +++ b/Duplicati/Library/UsageReporter/Duplicati.Library.UsageReporter.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Library/Utility/Duplicati.Library.Utility.csproj b/Duplicati/Library/Utility/Duplicati.Library.Utility.csproj index 85765be51..a93122821 100644 --- a/Duplicati/Library/Utility/Duplicati.Library.Utility.csproj +++ b/Duplicati/Library/Utility/Duplicati.Library.Utility.csproj @@ -1,9 +1,10 @@ - + net8.0 Library Duplicati.Library.Utility + Copyright © 2024 Team Duplicati, MIT license @@ -25,3 +26,4 @@ + diff --git a/Duplicati/License/Duplicati.License.csproj b/Duplicati/License/Duplicati.License.csproj index 362ca1531..6a6d72f95 100644 --- a/Duplicati/License/Duplicati.License.csproj +++ b/Duplicati/License/Duplicati.License.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -320,3 +321,4 @@ + diff --git a/Duplicati/Server/Duplicati.Server.Serialization/Duplicati.Server.Serialization.csproj b/Duplicati/Server/Duplicati.Server.Serialization/Duplicati.Server.Serialization.csproj index 998a5a3ce..185bc1d01 100644 --- a/Duplicati/Server/Duplicati.Server.Serialization/Duplicati.Server.Serialization.csproj +++ b/Duplicati/Server/Duplicati.Server.Serialization/Duplicati.Server.Serialization.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Server/Duplicati.Server.csproj b/Duplicati/Server/Duplicati.Server.csproj index 37fafe963..99e8d7487 100644 --- a/Duplicati/Server/Duplicati.Server.csproj +++ b/Duplicati/Server/Duplicati.Server.csproj @@ -1,8 +1,9 @@ - + net8.0 Duplicati.Server.Implementation + Copyright © 2024 Team Duplicati, MIT license @@ -53,3 +54,4 @@ + diff --git a/Duplicati/Server/webroot/ngax/scripts/angular-gettext-cli_compiled_js_output.js b/Duplicati/Server/webroot/ngax/scripts/angular-gettext-cli_compiled_js_output.js index d1750d904..775d9486c 100644 --- a/Duplicati/Server/webroot/ngax/scripts/angular-gettext-cli_compiled_js_output.js +++ b/Duplicati/Server/webroot/ngax/scripts/angular-gettext-cli_compiled_js_output.js @@ -11,8 +11,8 @@ angular.module('backupApp').run(['gettextCatalog', function (gettextCatalog) { gettextCatalog.setStrings('fr_CA', {"- pick an option -":"- choisissez une option -","...loading...":"... chargement...","API Key":"Clé API","AWS Access ID":"Clé d'accès AWS","AWS Access Key":"Clé d'accès secrète AWS","AWS IAM Policy":"AWS IAM Stratégies","About":"À propos","About {{appname}}":"À propos de {{appname}}","Access Key":"Clé d'accès","Access denied":"Accès refusé","Access to user interface":"Accès à l'interface utilisateur","Account name":"Nom du compte","Activate":"Activer","Activate failed:":"Echec d'activation:","Add a new backup":"Ajouter une nouvelle sauvegarde","Add a path directly":"Ajouter un répertoire directement","Add advanced option":"Ajouter une option avancée","Add backup":"Ajouter une sauvegarde","Add filter":"Ajouter un filtre","Add path":"Ajouter un chemin","Added":"Ajouté","Adjust bucket name?":"Modifier le nom du bucket","Adjust path name?":"Modifier le nom du chemin ?","Advanced Options":"Options avancées","Advanced options":"options avancées","Advanced:":"Avancé :","All Hyper-V Machines":"Toutes les machines Hyper-V","All Microsoft SQL Databases":"Toutes les bases de données Microsoft SQL","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Tous les rapports d'utilisation sont envoyés de manière anonyme et ne contiennent aucune information personnelle. Ils contiennent des informations sur le matériel et le système d'exploitation, sur le type d'infrastructure, la durée de la sauvegarde, la taille générale des fichiers sources et d'autres données similaires. Ils ne contiennent pas de chemin d'accès, noms de fichiers, noms d'utilisateurs, mots de passe ou des informations sensibles de ce type.","Allow remote access (requires restart)":"Autoriser l'accès à distance (nécessite un redémarrage)","Allowed days":"Jours autorisés","An existing file was found at the new location":"Un fichier existant a été trouvé au nouvel endroit","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Un fichier existant a été trouvé au nouvel endroit.\nÊtes-vous sûr de vouloir pointer la base de données vers un fichier existant ?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"Une base de données locale pour le stockage a été trouvée.\nRéutiliser la base de données va permettre la ligne de commande et les instances serveurs de travailler sur le même stockage à distance.\n\nVoulez-vous utiliser la base de donnée existante ?","Anonymous usage reports":"Rapports d'utilisation anonyme","Applications":"Applications","As Command-line":"Comme ligne de commande","AuthID":"AuthID","Authentication password":"Mot de passe d'identification","Authentication username":"Nom d'utilisateur d'identification","Autogenerated passphrase":"Phrase secrète auto-générée","Automatically run backups.":"Lancer des sauvegardes automatiques.","B2 Application Key":"Clé application B2","B2 Cloud Storage Account ID":"Identifiant du compte B2 Cloud Storage","B2 Cloud Storage Application Key":"Clé d'application B2 Cloud Storage","Back":"Retour","Backend modules:":"Modules en arrière-plan :","Backup complete!":"Sauvegarde Complète","Backup destination":"Destination de la sauvegarde","Backup is encrypted but no passphrase is available.\n Type a passphrase below to use for restoring your files,\n or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n invoking your system's keychain.":"La sauvegarde est cryptée mais aucune phrase secrète n’est disponible.\n Saisisez une phrase secrète ci-dessous à utiliser pour restaurer vos fichiers,\n invoquer le trousseau de votre système.","Backup location":"Emplacement de la sauvegarde","Backup retention":"Rétention de la sauvegarde","Backup:":"Sauvegarde :","Beta":"Béta","Broken access":"Accès rompu","Browse":"Parcourir","Browser default":"Paramètre par défaut du navigateur","Bucket Name":"Nom du bucket","Bucket create location":"Emplacement de la création du bucket","Bucket create region":"Région de création du bucket","Bucket name":"Nom du bucket","Bucket storage class":"Classe de stockage du bucket","Busy ...":"Occupé ...","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"En autorisant l'accès à distance, le serveur écoute les requêtes de n'importe quel ordinateur de votre réseau. Si vous activez cette option, assurez-vous de toujours utiliser l'ordinateur sur un réseau protégé par un pare-feu.","Cache Files":"Fichiers de cache","Canary":"Canary","Cancel":"Annuler","Cannot move to existing file":"Impossible de déplacer vers un fichier existant","Changelog":"Journal des modifications","Changelog for {{appname}} {{version}}":"Journal des modifications pour {{appname}} {{version}}","Check failed:":"Vérification échouée :","Check for updates now":"Vérifier les mise à jour maintenant","Checking ...":"Vérification ...","Chose a storage type to get started":"Sélectionnez un type de stockage pour commencer","Click the AuthID link to create an AuthID":"Cliquez sur le lien AuthID pour créer un AuthID","Click to set throttle options":"Cliquez pour définir les options d'accélération","Compact Phase":"Étape de compactage","Compact now":"Compacter maintenant","Compacting remote data ...":"Compactage des données distantes ...","Compression modules:":"Modules de compression :","Computer":"Ordinateur","Configuration file:":"Fichier de configuration :","Configuration:":"Configuration :","Configure a new backup":"Configurer une nouvelle sauvegarde","Confirm delete":"Confirmer suppression","Confirm encryption passphrase":"Confirmez la phrase secrète de chiffrement","Confirm password":"Confirmer le mot de passe","Confirmation required":"Confirmation nécessaire","Connect":"Connecter","Connect now":"Connecter maintenant","Connecting to task ....":"Connexion à la tâche ...","Connecting...":"Connexion ...","Connection lost":"Connexion perdue","Connection worked!":"Connection fonctionnelle !","Container name":"Nom du conteneur","Container region":"Région du conteneur","Continue":"Continuer","Continue without encryption":"Continuer sans chiffrement","Copied!":"Copié!","Copy":"Copie","Copy Destination URL to Clipboard":"Copier l'URL de destination dans le presse-papier","Copy failed. Please manually copy the URL":"Copie échouée. Veuillez copier manuellement l'URL","Core options":"Options du noyau","Counting ({{files}} files found, {{size}})":"Comptage ({{files}} fichiers trouvés, {{size}})","Crashes only":"Uniquement les plantages","Create folder?":"Créer un dossier?","Created new limited user":"Nouvel utilisateur limité créé","Creating user...":"Création d'un utilisateur ...","Current action:":"Action en cours :","Current file:":"Fichier actuel :","Current version is {{versionname}} ({{versionnumber}})":"La version actuelle est {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"S3 endpoint personnalisé","Custom authentication url":"URL d'authentification personnalisée","Custom backup retention":"Rétention de sauvegarde personnalisée","Custom location ({{server}})":"Emplacement personnalisé ({{server)}}","Custom region for creating buckets":"Région personnalisée pour la créations de buckets","Custom region value ({{region}})":"Valeur personnalisée de région ({{region}})","Custom server url ({{server}})":"URL serveur personnalisée ({{server}})","Custom storage class ({{class}})":"Classe de stockage personnalisée ({{class}})","Days":"Jours","Default":"Défaut","Default ({{channelname}})":"({{channelname}}) par défaut","Default excludes":"Les exclusions par défaut","Default options":"Options par défaut","Delete":"Supprimer","Delete Phase (Old Backup Versions)":"Étape de suppression (ancienne version de sauvegarde)","Delete backup":"Supprimer la sauvegarde","Delete backups that are older than":"Supprimer les sauvegardes plus anciennes que","Delete local database":"Supprimer base de données locale","Delete remote files":"Supprimer les fichiers distants","Delete the local database":"Supprimer la base de données locale","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Supprimer {{filecount}} fichiers ({{filesize}}) du stockage distant ?","Deleted":"Supprimer","Deleted Versions":"Versions supprimés","Deleted files":"Fichiers supprimés","Description (optional)":"Description (facultatif)","Description:":"Description","Desktop":"Bureau","Destination":"Destination","Destination path":"Chemin de destination","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Avons-nous aidé à récupérer vos fichiers? Si oui, songez à supporter Duplicati avec une donation. Nous vous suggérons {{smallamount}} pour un usage privé et {{largeamount}} pour un usage commercial.","Direct restore from backup files ...":"Restauration directe depuis les fichiers de sauvegarde","Disabled":"Désactivé","Dismiss":"Rejeter","Dismiss all":"Rejeter la totalité","Display and color theme":"Affichage et couleur","Do you really want to delete the backup: \"{{name}}\" ?":"Voulez-vous vraiment supprimer la sauvegarde : \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Voulez-vous vraiment supprimer la base de données locale pour : {{name}} ?","Domain Name":"Nom de domaine","Donate":"Faire un don","Donation messages":"Messages de donation","Donation messages are hidden, click to show":"Les messages de donation sont cachés, cliquez ici pour les afficher","Donation messages are visible, click to hide":"Les messages de donation sont affichés, cliquez ici pour les cacher","Done":"Terminé","Download":"Téléchargement","Downloaded files":"Fichiers téléchargés","Duplicate option {{opt}}":"Option de duplication {{opt}}","Duplicati Website":"Site internet de Duplicati","Duplicati forum":"Forum de Duplicati","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"Duplicati s'exécutera une fois démarré, mais restera en état de pause pendant la durée. Duplicati occupera un minimum de ressources système et aucune sauvegarde ne sera exécutée.","Duration":"Durée","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Chaque sauvegarde a une base de données locale associée à elle, elle stocke des informations localement à propos de la sauvegarde distante.\nQuand vous supprimez une sauvegarde, vous pouvez aussi supprimer la base de données locale sans affecter votre capacité à restaurer vos fichiers distants.\nSi vous utilisez la base de données locale pour vos sauvegardes à partir de la ligne de commande, vous devez conserver la base de données.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Chaque sauvegarde a une base de données locale associée à elle, elle enregistre localement les informations à propos de la sauvegarde distante. \\nCela rend la réalisation de beaucoup d'opérations plus rapide et réduit la quantité de données qui doit être téléchargé pour chaque opération.","Edit as list":"Éditer en tant que liste","Edit as text":"Éditer en tant que texte","Encrypt file":"Chiffrement du fichier","Encryption":"Chiffrement","Encryption changed":"Chiffrement changé","Encryption modules:":"Modules de Chiffrement :","End":"Terminé","Enter URL":"Entrer l'URL","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Entrez une stratégie de rétention manuellement. Les espaces réservés sont D / W / Y pour les jours / semaines / années et U pour illimité. La syntaxe est : 7D:1D, 4W:1W, 36M:1M. Cet exemple conserve une sauvegarde pour chacun des 7 prochains jours, une pour chacune des 4 prochaines semaines et une pour chacun des 36 prochains mois. Cela peut également être écrit comme 1W:1D, 1M:1W, 3Y:1M.","Enter access key":"Entrez la clé d'accès","Enter account name":"Entrez le nom du compte","Enter backup passphrase, if any":"Entrez la phrase secrète de sauvegarde, si présente","Enter configuration details":"Entrer les détails de configuration","Enter container name":"Entrez le nom du conteneur","Enter encryption passphrase":"Entrez la phrase secrète de chiffrement","Enter expression here":"Entrez l'expression ici","Enter folder path name":"Entrez le nom du chemin du répertoire","Enter one option per line in command-line format, eg. {0}":"Entrez une option par ligne dans le format ligne de commande, ex : {0}","Enter the destination path":"Entrez le chemin de destination","Enter the email address of the Office 365 group":"Entrez l'adresse e-mail du groupe Office 365","Enter the full destination path, including the server name, but without https":"Entrez le chemin de destination complet, y compris le nom du serveur, mais sans https","Error":"Erreur","Error!":"Erreur!","Errors and crashes":"Erreurs et plantages","Examined":"Examiné","Exclude":"Exclure","Exclude directories whose names contain":"Exclure répertoires dont le nom contient","Exclude expression":"Exclure expression","Exclude file":"Exclure fichier","Exclude file extension":"Exclure extension de fichier","Exclude files whose names contain":"Exclure fichiers dont le nom contient","Exclude filter group":"Exclure le groupe de filtres","Exclude folder":"Exclure dossier","Exclude regular expression":"Exclure expression régulière","Existing file found":"Fichier existant trouvé","Experimental":"Expérimental","Export":"Exporter","Export backup configuration":"Exporter la configuration de sauvegarde","Export configuration":"Exporter la configuration","Export passwords":"Exporter les mots de passe","External link":"Lien externe","FTP (Alternative)":"FTP (Alternatif)","Failed to build temporary database: {{message}}":"Échec de la construction de la base de données temporaire : {{message}}","Failed to connect:":"Échec de la connexion :","Failed to connect: {{message}}":"Échec de la connexion : {{message}}","Failed to delete:":"Échec de la suppression :","Failed to fetch path information: {{message}}":"Échec de la récupération des information du chemin : {{message}}","Failed to find backup:":"Impossible de trouver la sauvegarde","Failed to import:":"Échec de l'import :","Failed to read backup defaults:":"Échec de la lecture des paramètres par défaut de la sauvegarde :","Failed to restore files: {{message}}":"Échec de la restauration des fichiers : {{message}}","Failed to save:":"Échec d'enregistrement :","File":"Fichier","Files larger than:":"Fichiers plus gros que :","Filters":"Filtres","Finished!":"Terminé!","First run setup":"Première mise en route","Folder":"Dossier","Folder path":"Chemin du dossier","Fri":"Ven.","GByte":"Goctet","GByte/s":"GOtects/s","GCS Project ID":"ID du projet GCS","General":"Général","General backup settings":"Paramètres généraux de sauvegarde","General options":"Options générales","Generate":"Générer","Group email":"Courriel de groupe","Hidden files":"Fichiers cachés","Hide":"Cacher","Hide hidden folders":"Masquer les dossiers cachés","Home":"Poste de travail","Hostnames":"Les noms d'hôtes","Hours":"Heures","How do you want to handle existing files?":"Comment voulez-vous traiter les fichiers existants?","Hyper-V Machine":"Machine Hyper-V","Hyper-V Machine:":"Machine Hyper-V :","Hyper-V Machines":"Machines Hyper-V","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Si une date a été manquée, le travail démarrera dès que possible.","If at least one newer backup is found, all backups older than this date are deleted.":"Si au moins une sauvegarde plus récente est trouvée, toutes les sauvegardes antérieures à cette date sont supprimées.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Si la sauvegarde et le stockage distant ne sont plus synchronisés, Duplicati demandera d'effectuer une opération de réparation pour synchroniser la base de données. \\n Si la réparation ne réussit pas, vous pouvez supprimer la base de données locale et la régénérer.","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Si vous n'entrez pas de chemin, tous les fichiers seront stockés dans le dossier de connexion.\nÊtes-vous sûr que c'est ce que vous voulez ?","If you do not enter an API Key, the tenant name is required":"Si vous n'entrez pas de clé API, le nom de l'entité est requis","If you want to use the backup later, you can export the configuration before deleting it":"Si vous voulez utiliser la sauvegarde plus tard, vous pouvez exporter la configuration avant de la supprimer","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Si votre machine est dans un environnement multi-utilisateur (votre machine a plus d'un compte), vous avez besoin de définir un mot de passe pour éviter que les autres utilisateurs puissent accéder à vos données sur votre compte.\nVoulez-vous définir un mot de passe maintenant ?","Import":"Importer","Import Destination URL":"Importer l'URL de destination","Import backup configuration":"Importer la configuration de sauvegarde","Import completed, but no certificates were found after the import":"Import terminé, mais aucun certificat n'a été trouvé après l'import","Import failed":"Échec de l'import","Import from a file":"Importer depuis un fichier","Import metadata":"Importer des métadonnées","Include a file?":"Inclure un fichier ?","Include expression":"Inclure expression","Include regular expression":"Inclure expression régulière","Incorrect answer, try again":"Réponse incorrecte, essayez encore","Individual builds for developers only. Not for use with important data.":"Builds individuelles pour les développeurs uniquement. Ne pas utiliser avec des données importantes.","Information":"Information","Install":"Installer","Install failed:":"Échec d'installation :","Invalid characters in path":"Caractères invalides dans le chemin","Invalid retention time":"Temps de rétention invalide","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"Il est possible de se connecter à certains FTP sans mot de passe.\nÊtes-vous sûr que votre serveur FTP prend en charge l'identification sans mot de passe ?","KByte":"KOctet","KByte/s":"KOctet/s","Keep a specific number of backups":"Conserver un nombre spécifique de sauvegardes","Keep all backups":"Conserver toutes les sauvegardes","Keystone API version":"Version de l'API Keystone","Language in user interface":"Langue dans l'interface utilisateur","Last month":"Mois dernier","Last successful backup:":"Dernière sauvegarde réussie :","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"Dernière restauration réussie : {{time}} (a pris {{duration || '0 secondes'}})","Latest":"Dernière","Libraries":"Librairies","Live":"Direct","Load a configuration from an exported job or a storage provider":"Charger une configuration depuis un export ou un opérateur de stockage","Load destination from an exported job or a storage provider":"Charger la destination depuis un export ou un opérateur de stockage","Load older data":"Charger des données plus anciennes","Loading ...":"Chargement ...","Loading remote storage usage ...":"Chargement de l'utilisation du stockage distant ...","Local Repository":"Stockage local","Local database for":"Base de données locale pour","Local database path:":"Chemin de la base de données locale :","Local repository":"Stockage local","Local storage":"Stockage local","Location":"Emplacement","Location where buckets are created":"Emplacement ou les buckets sont créés","Log data for {{Backup.Backup.Name}}":"Historique pour {{Backup.Backup.Name}}","Log data from the server":"Données d'historique du serveur","Log out":"Déconnexion","MByte":"MOctet","MByte/s":"MOctet/s","Maintenance":"Maintenance","Manually type path":"Entrée manuelle du chemin","Max download speed":"Vitesse maximum de téléchargement","Max upload speed":"Vitesse maximum de téléversement","Menu":"Menu","Microsoft SQL Database:":"Base de données Microsoft SQL :","Microsoft SQL Databases":"Bases de données Microsoft SQL","Minimum redundancy":"Redondance minimale","Minimum redundancy is 1.0":"La redondance minimale est de 1,0","Minutes":"Minutes","Missing name":"Nom manquant","Missing passphrase":"Phrase secrète manquante","Missing sources":"Sources manquantes","Modified":"Modifié","Mon":"Lun.","Months":"Mois","Move existing database":"Déplacer la base de données existante","Move failed:":"Échec de déplacement :","My Documents":"Mes documents","My Music":"Ma musique","My Photos":"Mes photos","My Pictures":"Mes photos","Name":"Nom","Never":"Jamais","New update found: {{message}}":"Nouvelle mise à jour trouvée : {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"Le nouveau nom d'utilisateur est {{user}}.\nMise à jour des accès pour le nouvel utilisateur limité","Next":"Suivant","Next scheduled run:":"Prochaine exécution programmée :","Next scheduled task:":"Prochaine tâche planifiée :","Next task:":"Prochaine tâche :","Next time":"Prochaine fois","No":"Non","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"Aucun certificat n'a été spécifié auparavant, veuillez vérifier que la clé est correcte auprès de votre administrateur système : {{key}}\n\nVoulez-vous approuver la clé de l'hôte mentionné ?","No editor found for the "{{backend}}" storage type":"Aucun éditeur trouvé pour le "{{backend}}" type de stockage","No encryption":"Pas de chiffrement","No items selected":"Aucun élément sélectionné","No items to restore, please select one or more items":"Aucun élément à restaurer, merci de sélectionner un ou plusieurs éléments","No passphrase entered":"Aucune phrase secrète entrée","No scheduled tasks":"Pas de tâche planifié","No, my machine has only a single account":"Non, ma machine n'a qu'un seul compte","Non-matching passphrase":"La phrase secrète ne correspond pas","None / disabled":"Aucun / Désactivé","Not using encryption":"N'utilise pas le chiffrement","Nothing will be deleted. The backup size will grow with each change.":"Rien ne sera supprimé. La taille de la sauvegarde augmentera à chaque modification.","OK":"Ok","Once there are more backups than the specified number, the oldest backups are deleted.":"Une fois qu'il y a plus de sauvegardes que le nombre spécifié, les sauvegardes les plus anciennes sont supprimées.","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack Object Storage / Swift","Opened":"Ouvert","Openstack API Key are not supported in v3 keystone API.":"Les clés API Openstack ne sont pas prises en charge dans l'API v3 keystone.","Operating System":"Système d'exploitation","Operation":"Opération","Operation failed:":"Échec de l'opération :","Operations:":"Opérations :","Optional authentication password":"Mot de passe d'identification optionel","Optional authentication username":"Nom d'utilisateur d'identification optionel","Options":"Options","Options added here are applied to all backups, but can be overridden in each individual backup":"Les options ajoutées ici sont appliquées pour toutes les sauvegardes, mais elles peuvent être outrepassées pour chaque sauvegarde","Original location":"Emplacement d'origine","Others":"Autres","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"Au fil du temps, les sauvegardes seront automatiquement supprimées. Il restera une sauvegarde pour chacun des 7 derniers jours, chacune des 4 dernières semaines, chacun des 12 derniers mois. Il y aura toujours au moins une sauvegarde restante.","Overwrite":"Écraser","Passphrase":"Phrase secrète","Passphrase (if encrypted)":"Phrase secrète (si chiffré)","Passphrase changed":"Phrase secrète changée","Passphrases are not matching":"Les phrases secrètes ne correspondent pas","Passphrases do not match":"Le mot de passe ne correspond pas","Password":"Mot de passe","Path":"Chemin","Path not found":"Chemin non trouvé","Path on server":"Chemin sur le serveur","Path or subfolder in the bucket":"Chemin ou sous-dossier dans le bucket","Pause":"Pause","Pause after startup or hibernation":"Pause après le démarrage ou l'hibernation","Pause options":"Options de pause","Permissions":"Permissions","Pick location":"Choisir l'emplacement","Point to your backup files and restore from there":"Donner votre fichier de sauvegarde et restaurer depuis celui-ci ","Port":"Port","Prevent tray icon automatic log-in":"Empêcher la connexion automatique de l'icône de la barre de tâches","Previous":"Précédent","Progress:":"Statut:","ProjectID is optional if the bucket exist":"Le ProjectID est optionel si le bucket existe","Proprietary":"Propriétaire","Purge Phase":"Étape de purge","Purging files complete!":"Purge des fichiers complétée!","Recreate (delete and repair)":"Récrée (suppression et réparation)","Recreate Database Phase":"Étape de recréation de la base de données","Relative paths not allowed":"Les chemins relatifs ne sont pas autorisés","Reload":"Recharger","Remote":"Distant","Remote Path":"Chemin d'accès distant","Remote Repository":"Stockage distant","Remote path":"Chemin d'accès distant","Remote repository":"Stockage distant","Remote volume size":"Taille du volume distant","Remove":"Retirer","Remove option":"Option de retrait","Removed files":"Fichiers supprimés","Repair":"Réparer","Repair Phase":"Étape de réparation","Repeat Passphrase":"Répeter la phrase secrète","Reporting:":"Communication de données :","Reset":"Réinitialiser","Restore":"Restaurer","Restore complete!":"La restauration a été complétée!","Restore files":"Restaurer les fichiers","Restore files from {{backupname}}":"Restaurer les fichiers depuis {{backupname}}","Restore from":"Restaurer depuis","Restore from backup configuration":"Restaurer depuis une sauvegarde de configuration","Restore from configuration ...":"Restaurer depuis une configuration","Restore options":"Options de restauration","Restore read/write permissions":"Autorisations de lecture/écriture de restauration","Resume":"Reprendre","Rewritten File Lists":"Réécriture des listes de fichiers","Run again every":"Relancer tous les","Run now":"Démarrer maintenant","Running ....":"En cour ...","Running commandline entry":"Execution d'une ligne de commnde","Running task:":"Tâche en cours :","S3 Compatible":"Compatible S3","Same as the base install version: {{channelname}}":"Identique à la version de base installée : {{channelname}}","Sat":"Sam.","Save":"Enregistrer","Save and repair":"Enregistrer et réparer","Save different versions with timestamp in file name":"Enregistrer des versions différentes avec l'horodatage dans le nom du fichier","Save immediately":"Sauver immédiatement ","Schedule":"Planifier","Search":"Recherche","Search for files":"Recherche de fichiers","Seconds":"Secondes","Select a log level and see messages as they happen:":"Sélectionner un niveau d'historique et voyez les messages quand ils apparaissent :","Select files":"Sélectionner les fichiers","Server":"Serveur","Server and port":"Serveur et port","Server hostname or IP":"Nom d'hôte du serveur ou IP","Server is currently paused,":"Le serveur est actuellement en pause,","Server is currently paused, do you want to resume now?":"Le serveur est actuellement en pause, voulez-vous reprendre maintenant ?","Server password":"Mot de passe du serveur","Server paused":"Serveur en pause","Server state properties":"Propriétés du statut serveur","Settings":"Paramètres","Show":"Montrer","Show advanced editor":"Montrer l'éditeur avancé","Show hidden folders":"Montrer les dossiers cachés","Show log":"Montrer l'historique","Show treeview":"Afficher l'arborescence","Sia server password":"Mot de passe du serveur Sia","Smart backup retention":"Rétention de sauvegarde intelligente","Some OpenStack providers allow an API key instead of a password and tenant name":"Certains fournisseurs OpenStack autorisent une clé API à la place d'un mot de passe et d'un nom d'entité","Source Data":"Données source","Source data":"Données source","Source folders":"Dossiers source","Source:":"Source :","Specific builds for developers only. Not for use with important data.":"Builds spécifiques pour les développeurs uniquement. Ne pas utiliser avec des données importantes.","Standard protocols":"Protocoles standards","Start":"Démarrer","Stop after the current file":"Arrêter après le fichier en cour","Stop now":"Arrêter maintenant","Stop running backup":"Arrêter la sauvegarde en cour","Stop running task":"Stopper la tâche en cour","Stopping task:":"Arrêt de la tâche","Storage Type":"Type de stockage","Storage class":"Classe de stockage","Storage class for creating a bucket":"Classe de stockage pour la création d'un bucket","Stored":"Stocké","Strong":"Fort","Success":"Succès","Sun":"Dim.","Symbolic link":"Lien symbolique","System Files":"Fichiers système","System default ({{levelname}})":"Paramètre par défaut du système ({{levelname}})","System files":"Fichiers système","System info":"Info système","System properties":"Propriétés système","TByte":"TOctet","TByte/s":"TOctet/s","Target path, ie /backup":"Chemin cible, c'est-à-dire /sauvegarde","Task is running":"La tâche est en cours","Temporary Files":"Fichiers temporaires","Temporary files":"Fichiers temporaires","Tenant Name":"Nom d'entité","Test Phase":"Étape de test","Test connection":"Tester la connexion","Testing ...":"Test ...","Testing connection ...":"Essai de connexion ...","Testing permissions...":"Test des permissions ...","The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})":"Le champ '{{fieldname}}' contient un caractère non valide : {{character}} (valeur : {{value}}, index : {{pos}})","The backup is missing, has it been deleted?":"La sauvegarde est n'existe pas, a-t-elle été supprimée?","The backup was temporary and does not exist anymore, so the log data is lost":"La sauvegarde était temporaire et n'existe plus, les données du journal sont perdues.","The bucket name should be all lower-case, convert automatically?":"Le nom du bucket devrait être entièrement en minuscule, convertir automatiquement ?","The bucket name should start with your username, prepend automatically?":"Le nom du bucket devrait commencer par votre nom d'utilisateur, l'ajouter automatiquement ?","The configuration should be kept safe. Are you sure you want to save an unencrypted file containing your passwords?":"La configuration doit être gardée en sécurité. Êtes-vous sûr de vouloir enregistrer un fichier non crypté contenant vos mots de passe?","The connection to the server is lost, attempting again in {{time}} ...":"La connexion au serveur a été perdue, nouvelle tentative dans {{time}} ...","The dark theme (by Michal)":"Le thème sombre (de Michal)","The default blue on white theme (by Alex)":"Thème par défaut bleu sur fond blanc (by Alex)","The folder {{folder}} does not exist.\nCreate it now?":"Le dossier {{dossier}} n'existe pas.\nCréez-le maintenant ?","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"La clé de l'hôte a changé, veuillez vérifier avec l'administrateur du serveur si cela est correcte, car il pourrait s'agir d'une attaque de type \"intermédiaire\".\n\nVoulez-vous REMPLACER votre clé d'hôte COURANTE \"{{prev}}\" par la clé MENTIONNÉE : {{key}} ?","The passwords do not match":"Le mot de passe ne correspond pas","The path does not appear to exist, do you want to add it anyway?":"Le chemin ne semble pas exister, voulez-vous l'ajouter quand même ?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"Le répertoire ne se termine pas par un caractère '{{dirsep}}', ce qui signifie que vous sélectionnez un fichier et non un dossier.\n\nVoulez-vous inclure le fichier spécifié ?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"Le chemin doit être un chemin absolu, c.-à-d. Il doit commencer par un slash avant '/'","The region parameter is only applied when creating a new bucket":"Le paramètre régional n'est appliqué qu'à la création d'un nouveau bucket","The region parameter is only used when creating a bucket":"Le paramètre régional n'est utilisé qu'à la création d'un bucket","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Le certificat du serveur n'a pas pu être validé.\nVoulez-vous approuver le certificat SSL avec la somme de contrôle : {{hash}} ?","The storage class affects the availability and price for a stored file":"La classe de stockage affecte la disponibilité et le prix d'un fichier stocké","The target folder contains encrypted files, please supply the passphrase":"Le fichier cible contient des fichiers chiffrés, merci de fournir la phrase secrète","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"L'utilisateur à trop d'autorisations. Voulez-vous créer un nouvel utilisateur limité avec uniquement les autorisations pour les chemins sélectionnés ?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"Cette sauvegarde a été créée sur un autre système d’exploitation. Restaurer les fichiers sans préciser un dossier de destination peut créer des fichiers à des endroits inattendus. Êtes-vous surs de vouloir poursuivre sans choisir de dossier de destination ?","This month":"Ce mois","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"Cette option ne concerne pas la taille maximale de la sauvegarde ou du fichier, ni les taux de déduplication. Consultez cette page avant de modifier la taille du volume distant. ","This week":"Cette semaine","Throttle settings":"Options d'accélération","Thu":"Jeu.","Time":"temps","To File":"Vers fichier","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Pour confirmer que vous souhaitez supprimer tous les fichiers distants pour \"{{name}}\", veuillez entrer le mot situé ci-dessous","To export without a passphrase, uncheck the \"Encrypt file\" box":"Pour exporter sans phrase secrète, décochez la case \"Chiffrer fichier\"","To prevent various DNS based attacks, Duplicati limits the allowed hostnames to the ones listed here. Direct IP access and localhost is always allowed. Multiple hostnames can be supplied with a semicolon separator. If any of the allowed hostnames is an asterisk (*), all hostnames are allowed and this feature is disabled. If the field is empty, only IP address and localhost access is allowed.":"Pour éviter diverses attaques basées sur le DNS, Duplicati limite les noms d'hôtes autorisés à ceux répertoriés ici. L'accès IP direct et localhost est toujours autorisé. Plusieurs noms d'hôte peuvent être fournis avec un séparateur de points-virgules. Si l'un des noms d'hôtes autorisés est un astérisque (*), tous les noms d'hôte sont autorisés et cette fonctionnalité est désactivée. Si le champ est vide, seule l'adresse IP et l'accès localhost sont autorisés.","Today":"Aujourd'hui","Trust host certificate?":"Faire confiance au certificat de l'hôte ?","Trust server certificate?":"Faire confiance au certificat du serveur ?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"Essayez les nouvelles fonctionnalités sur lesquelles nous travaillons. Actuellement la version la plus stable disponible. Testez la restauration des données avant de l'utiliser dans des environnements de production.","Tue":"Mar.","Type passphrase here.":"Tapez mot de passe ici.","Type to highlight files":"Tapez pour mettre en surbrillance les fichiers","Unknown backup size and versions":"Taille et version de sauvegarde inconnue","Until resumed":"Jusqu'à la reprise","Update channel":"Canal de mise à jour","Update failed:":"Échec de mise à jour","Updating with existing database":"Mettre à jour avec une base de données existante","Uploaded files":"Fichiers téléchargés","Usage statistics":"Statistiques d'utilisation","Usage statistics, warnings, errors, and crashes":"Statistiques d'utilisation, avertissements, erreurs et accidents","Use SSL":"Utiliser SSL","Use existing database?":"Utiliser une base de données existante ?","Use weak passphrase":"Utiliser une phrase secrète faible","Useless":"Inutile","User data":"Données utilisateur","User domain name":"Nom de domaine de l'utilisateur","User has too many permissions":"L'utilisateur à trop d'autorisations","User interface settings":"Réglages interface utilisateur","Username":"Nom d'utilisateur","Verifications":"Vérifications","Verify files":"Vérifier les fichiers","Verifying ...":"Vérification ...","Verifying answer":"Vérification de la réponse","Version ID":"ID de version","Very strong":"Très fort","Very weak":"Très faible","Visit us on":"Rendez nous visite sur","WARNING: The remote database is found to be in use by the commandline library":"ATTENTION : La base de données locale est rapportée comme étant utilisée par la librairie de ligne de commande","WARNING: This will prevent you from restoring the data in the future.":"ATTENTION : Cela va vous empêcher de restaurer vos données dans le futur.","Waiting for task to begin":"En attente du début de la tâche","Waiting for task to start ....":"En attente du début de la tâche","Warnings, errors and crashes":"Avertissements, erreurs et accidents","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"Nous acceptons les dons via différents services, tels que OpenCollective, PayPal, BountySource et diverses devises crypto.","We recommend that you encrypt all backups stored outside your system":"Nous vous recommandons de chiffrer toutes les sauvegardes stockées en dehors de votre système","Weak":"Faible","Weak passphrase":"Phrase secrète faible","Wed":"Mer.","Weeks":"Semaines","Where do you want to restore from?":"Ou voulez-vous restaurer vos fichiers ?","Where do you want to restore the files to?":"Ou voulez-vous restaurer vos fichiers ?","Years":"Années","Yes":"Oui","Yes, I have stored the passphrase safely":"Oui, j'ai conservé ma phrase secrète en sécurité","Yes, I understand the risk":"Oui, je comprends le risque","Yes, I'm brave!":"Oui, je suis courageux !","Yes, please break my backup!":"Oui, s'il vous plait cassez ma sauvegarde","Yesterday":"Hier","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"Mono semble fonctionner sans certificat SSL chargé.\nVoulez-vous importer la liste de certificats de confiance depuis Mozilla ?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"Vous êtes en train de changer le chemin de la base de données depuis une base de donnée existante.\nÊtes-vous sûr que c'est ce que vous voulez ?","You are currently running {{appname}} {{version}}":"Vous êtes actuellement en train d'utiliser {{appname}} {{version}}","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"Vous avez changé la méthode de chiffrement. Ceci peut endommager certaines choses. Nous vous encourageons à créer une nouvelle sauvegarde à la place.","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"Vous avez changé la phrase secrète, ce qui n'est pas pris en charge. Nous vous encourageons à créer une nouvelle sauvegarde à la place.","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"Vous avez choisi de ne pas chiffrer votre sauvegarde. Le chiffrement est recommandé pour toutes les données stockées sur un serveur distant.","You have chosen to restore to a new location, but not entered one":"Vous avez demandé à restaurer vers un nouveau dossier, mais sans indiquer son chemin","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"Vous avez généré une mot de passe fort. Assurez-vous que vous avez effectué une copie sécurisée de ce mot de passe, car les données ne pourront pas être récupérées si vous le perdez.","You must choose at least one source folder":"Vous devez choisir au moins un dossier source","You must enter a domain name to use v3 API":"Vous devez entrer un nom de domaine pour utiliser l'API v3","You must enter a name for the backup":"Vous devez entrer un nom pour votre sauvegarde","You must enter a passphrase or disable encryption":"Vous devez entrer une phrase secrète ou désactiver le chiffrement","You must enter a password to use v3 API":"Vous devez entrer un mot de passe pour utiliser l'API v3","You must enter a positive number of backups to keep":"Vous devez entrer un nombre positif de sauvegarde à conserver","You must enter a tenant (aka project) name to use v3 API":"Vous devez entrer un nom de tenant (nom de projet) pour utiliser l'API v3","You must enter a tenant name if you do not provide an API Key":"Vous devez entrer un nom d'entité si vous ne fournissez pas une clé API","You must enter a valid duration for the time to keep backups":"Vous devez entrer une valeur correcte pour la durée de conservation de vos sauvegardes","You must enter either a password or an API Key":"Vous devez entrer soit un mot de passe, soit une clé API","You must enter either a password or an API Key, not both":"Vous devez entrer soit un mot de passe, soit une clé API, mais pas les deux","You must fill in the password":"Vous devez renseigner le mot de passe","You must fill in the server name or address":"Vous devez renseigner le nom du serveur ou l'adresse","You must fill in the username":"Vous devez renseigner le nom d'utilisateur","You must fill in {{field}}":"Vous devez renseigner le champ : {{field}}","You must select or fill in the AuthURI":"Vous devez sélectionner ou renseigner l'AuthURI","You must select or fill in the server":"Vous devez sélectionner ou renseigner le serveur","You must specify a path":"Vous devez spécifier un chemin.","You should fill in {{field}}{{reason}}":"Vous devez remplir {{field}} {{reason}}","Your files and folders have been restored successfully.":"Vos fichiers et dossiers ont été restaurés avec succès.","Your passphrase is easy to guess. Consider changing passphrase.":"Votre phrase secrète est facile à deviner. Songez à la changer.","bucket/folder/subfolder":"bucket/dossier/sous-dossier","byte":"octet","byte/s":"octet/s","custom":"personnalisé ","resume now":"reprendre maintenant","unless you are explicitly specifying --group-id":"sauf si vous spécifiez explicitement --group-id","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"{{appname}} a été principalement développée par {{dev1}} et {{dev2}}. {{appname}} peut être téléchargée depuis {{websitename}}. {{appname}} est sous licence {{licensename}}.","{{files}} files ({{size}}) to go {{speed_txt}}":"{{files}} fichiers {{size}}) à transferer {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versions"],"{{number}} Hour":"{{number}} Heure","{{number}} Hours":"{{number}} Heures","{{number}} Minutes":"{{number}} Minutes","{{time}} (took {{duration}})":"{{time}} (durée {{duration}})"}); gettextCatalog.setStrings('fr', {"- pick an option -":"- choisir une option -","...loading...":"...chargement...","API Key":"Clé API","AWS Access ID":"AWS Access ID","AWS Access Key":"AWS Access Key","AWS IAM Policy":"AWS IAM Policy","About":"À propos","About {{appname}}":"À propos de {{appname}}","Access Key":"Clé d'accès","Access denied":"Accès refusé","Access to user interface":"Accès à l'interface utilisateur","Account name":"Nom du compte","Activate":"Activer","Activate failed:":"Echec d'activation:","Add a new backup":"Ajouter une nouvelle sauvegarde","Add a path directly":"Ajouter un répertoire directement","Add advanced option":"Ajouter une option avancée","Add backup":"Ajouter une sauvegarde","Add filter":"Ajouter un filtre","Add path":"Ajouter un chemin","Added":"Ajouté","Adjust bucket name?":"Modifier le nom du bucket ?","Adjust path name?":"Modifier le nom du chemin ?","Advanced Options":"Options avancées","Advanced options":"Options avancées","Advanced:":"Avancé :","All Hyper-V Machines":"Toutes les machines Hyper-V","All Microsoft SQL Databases":"Toutes les bases de données Microsoft SQL","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Tous les rapports d'utilisation sont envoyés de manière anonyme et ne contiennent aucune information personnelle. Ils contiennent des informations sur le matériel et le système d'exploitation, le type d'infrastructure, la durée de la sauvegarde, la taille générale des fichiers sources et d'autres données similaires. Ils ne contiennent pas les chemin d'accès, noms de fichiers, noms d'utilisateurs, mots de passe ou informations sensibles de ce type.","Allow remote access (requires restart)":"Autoriser l'accès à distance (nécessite un redémarrage)","Allowed days":"Jours autorisés","An existing file was found at the new location":"Un fichier existant a été trouvé au nouvel emplacement","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Un fichier existant a été trouvé au nouvel emplacement.\nÊtes-vous sûr de vouloir faire pointer la base de données vers un fichier existant ?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"Une base de données locale pour le stockage a été trouvée.\nRéutiliser la base de données va permettre la ligne de commande et les instances serveur de travailler sur le même stockage à distance.\n\nVoulez-vous utiliser la base de donnée existante ?","Anonymous usage reports":"Rapports d'utilisation anonyme","Applications":"Applications","As Command-line":"Comme ligne de commande","AuthID":"AuthID","Authentication password":"Mot de passe d'identification","Authentication username":"Nom d'utilisateur d'identification","Autogenerated passphrase":"Phrase secrète auto-générée","Automatically run backups.":"Lancer des sauvegardes automatiques.","B2 Application ID":"B2 Application ID","B2 Application Key":"B2 Application Key","B2 Cloud Storage Account ID":"B2 Cloud Storage Account ID","B2 Cloud Storage Application ID":"B2 Cloud Storage Application ID","B2 Cloud Storage Application Key":"B2 Cloud Storage Application Key","Back":"Précédent","Backend modules:":"Modules back-end :","Backup complete!":"Sauvegarde terminée !","Backup destination":"Destination de sauvegarde","Backup is encrypted but no passphrase is available.\n Type a passphrase below to use for restoring your files,\n or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n invoking your system's keychain.":"La sauvegarde est chiffrée mais aucune phrase secrète n'est disponible. Tapez une phrase secrète ci-dessous à utiliser pour restaurer vos fichiers, ou, en cas de cryptage GPG, laissez vide pour permettre à GPG de récupérer le mot de passe complexe pour invoquer le trousseau de votre système.","Backup location":"Emplacement de la sauvegarde","Backup retention":"Rétention de la sauvegarde","Backup:":"Sauvegarde :","Beta":"Bêta","Broken access":"Accès rompu","Browse":"Parcourir","Browser default":"Paramètre par défaut du navigateur","Bucket Name":"Nom du bucket","Bucket create location":"Emplacement de la création du bucket","Bucket create region":"Région de création du bucket","Bucket name":"Nom du bucket","Bucket storage class":"Classe de stockage du bucket","Building list of files to restore …":"Création d'une liste de fichiers à restaurer...","Building partial temporary database …":"Création d'une base de données temporaire partielle...","Busy ...":"Occupé ...","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"En autorisant l'accès à distance, le serveur écoute les requêtes de n'importe quel ordinateur de votre réseau. Si vous activez cette option, assurez-vous de toujours utiliser l'ordinateur sur un réseau protégé par un pare-feu paramétré de manière ad-hoc.","By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option.":"Par défaut, l'icône de la barre d'état système ouvre l'interface utilisateur avec un jeton de sécurité. Ceci vous permet d'accéder à l'interface utilisateur à partir de l'icône de la barre d'état système, tout en demandant aux autres utilisateurs d'entrer un mot de passe. Si vous préférez saisir le mot de passe même lorsque vous accédez à l'interface utilisateur à partir de l'icône de la barre des tâches, activez cette option.","Cache Files":"Mettre les fichiers en cache","Canary":"Canary","Cancel":"Annuler","Cannot move to existing file":"Impossible de déplacer vers un fichier existant","Changelog":"Journal des modifications","Changelog for {{appname}} {{version}}":"Journal des modifications pour {{appname}} {{version}}","Check failed:":"Échec de la vérification :","Check for updates now":"Vérifier les mise à jour maintenant","Checking ...":"Vérification...","Checking for updates …":"Recherche de mises à jour...","Chose a storage type to get started":"Sélectionner un type de stockage pour commencer","Click the AuthID link to create an AuthID":"Cliquer sur le lien pour créer un AuthID","Click to set throttle options":"Cliquez pour définir les options d'accélération","Client library to use":"Bibliothèque cliente à utiliser","Commandline …":"Ligne de commande...","Compact Phase":"Étape de compression","Compact now":"Compacter maintenant","Compacting remote data ...":"Compression des données distantes...","Compacting remote data …":"Compression des données distantes...","Complete log":"Journal complet","Completing backup …":"Achèvement de la sauvegarde...","Completing previous backup …":"Achèvement de la sauvegarde précédente...","Compression modules:":"Modules de compression :","Computer":"Ordinateur","Configuration file:":"Fichier de configuration :","Configuration:":"Configuration :","Configure a new backup":"Configurer une nouvelle sauvegarde","Confirm delete":"Confirmer suppression","Confirm encryption passphrase":"Confirmez la phrase secrète de chiffrement","Confirm passphrase":"Confirmer la phrase secrète","Confirm password":"Confirmer le mot de passe","Confirmation required":"Confirmation nécessaire","Connect":"Connecter","Connect now":"Connecter maintenant","Connecting to server …":"Connexion au serveur...","Connecting to task ....":"Connexion à la tâche...","Connecting...":"Connexion...","Connection lost":"Connexion perdue","Connection worked!":"Connection fonctionnelle !","Container name":"Nom du conteneur","Container region":"Région du conteneur","Continue":"Continuer","Continue without encryption":"Continuer sans chiffrement","Copied!":"Copié !","Copy":"Copie","Copy Destination URL to Clipboard":"Copier l'URL de destination dans le presse-papier","Copy failed. Please manually copy the URL":"Échec de la copie. Copier l'URL manuellement","Core options":"Options du noyau","Counting ({{files}} files found, {{size}})":"Énumération ({{files}} fichiers trouvés, {{size}})","Crashes only":"Plantages uniquement","Create bug report …":"Créer un rapport d'erreur...","Create folder?":"Créer un dossier ?","Created new limited user":"Nouvel utilisateur limité créé","Creating bug report …":"Création du rapport d'erreur...","Creating new user with limited access …":"Création d'un nouvel utilisateur avec un accès limité...","Creating target folders …":"Création des dossiers de destination...","Creating temporary backup …":"Création d'une sauvegarde temporaire...","Creating user...":"Création de l'utilisateur...","Current action:":"Action en cours :","Current file:":"Fichier actuel :","Current version is {{versionname}} ({{versionnumber}})":"Version actuelle : {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"S3 endpoint personnalisé","Custom authentication url":"URL d'authentification personnalisée","Custom backup retention":"Rétention de sauvegarde personnalisée","Custom location ({{server}})":"Emplacement personnalisé ({{server)}}","Custom region for creating buckets":"Région personnalisée pour la créations de buckets","Custom region value ({{region}})":"Valeur personnalisée de région ({{region}})","Custom server url ({{server}})":"URL serveur personnalisée ({{server}})","Custom storage class\n ({{class}})":"Classe de stockage personalisée\n ({{class}})","Custom storage class ({{class}})":"Classe de stockage personnalisée ({{class}})","Database …":"Base de données...","Days":"Jours","Default":"Défaut","Default ({{channelname}})":"({{channelname}}) par défaut","Default excludes":"Exclusions par défaut","Default options":"Options par défaut","Delete":"Supprimer","Delete Phase (Old Backup Versions)":"Étape de suppression (anciennes versions de sauvegarde)","Delete backup":"Supprimer la sauvegarde","Delete backups that are older than":"Supprimer les sauvegardes plus anciennes que","Delete local database":"Supprimer la base de données locale","Delete remote files":"Supprimer les fichiers distants","Delete the local database":"Supprimer la base de données locale","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Supprimer {{filecount}} fichiers ({{filesize}}) du stockage distant ?","Delete …":"Supprimer...","Deleted":"Supprimé","Deleted Versions":"Versions supprimées","Deleted files":"Fichiers supprimés","Deleting remote files …":"Suppression des fichiers distants...","Deleting unwanted files …":"Suppression des fichiers non désirés...","Description (optional)":"Description (facultative)","Description:":"Description : ","Desktop":"Bureau","Destination":"Destination","Destination path":"Chemin de destination","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Nous vous avons aidé à sauvegarder vos fichiers ? Dans ce cas, songez à soutenir Duplicati avec une donation. Nous vous suggérons {{smallamount}} pour un usage privé et {{largeamount}} pour un usage commercial.","Direct restore from backup files ...":"Restauration directe depuis les fichiers de sauvegarde...","Disabled":"Désactivé","Dismiss":"Rejeter","Dismiss all":"Rejeter la totalité","Display and color theme":"Thème d'affichage et de couleur","Do you really want to delete the backup: \"{{name}}\" ?":"Voulez-vous vraiment supprimer la sauvegarde : \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Voulez-vous vraiment supprimer la base de données locale pour : {{name}} ?","Domain Name":"Nom de domaine","Donate":"Faire un don","Donation messages":"Messages de donation","Donation messages are hidden, click to show":"Les messages de donation sont masqués, cliquez ici pour les afficher","Donation messages are visible, click to hide":"Les messages de donation sont affichés, cliquez ici pour les masquer","Done":"Fait","Download":"Téléchargement","Downloaded files":"Fichiers téléchargés","Downloading files …":"Téléchargement des fichiers...","Downloading update…":"Téléchargement de la mise à jour...","Downloading …":"Téléchargement...","Duplicate option {{opt}}":"Option de duplication {{opt}}","Duplicati Website":"Site internet de Duplicati","Duplicati forum":"Forum de Duplicati","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"Duplicati s'exécutera une fois démarré, mais restera en pause pendant toute la durée. Duplicati occupera un minimum de ressources système et aucune sauvegarde ne sera exécutée.","Duration":"Durée","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Chaque sauvegarde a une base de données locale associée. Elle stocke des informations à propos de la sauvegarde distante.\nQuand vous supprimez une sauvegarde, vous pouvez aussi supprimer la base de données locale sans affecter votre capacité à restaurer vos fichiers distants.\nSi vous utilisez la base de données locale pour vos sauvegardes à partir de la ligne de commande, vous devez conserver la base de données.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Chaque sauvegarde a une base de données locale associée. Elle enregistre localement les informations à propos de la sauvegarde distante. \\nCela accélère la réalisation de nombreuses opérations et réduit la quantité de données qui doit être téléchargée pour chaque opération.","Edit as list":"Éditer en tant que liste","Edit as text":"Éditer en tant que texte","Edit …":"Édition...","Encrypt file":"Chiffrement de fichier","Encryption":"Chiffrement","Encryption changed":"Chiffrement modifié","Encryption modules:":"Modules de chiffrement :","End":"Fin","Enter URL":"Saisir l'URL","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Saisir une stratégie de rétention manuellement. Les espaces réservés sont D / W / Y pour les jours / semaines / années et U pour illimité. La syntaxe est : 7D:1D, 4W:1W, 36M:1M. Cet exemple conserve une sauvegarde pour chacun des sept prochains jours, une pour chacune des quatre prochaines semaines et une pour chacun des 36 prochains mois. Cela peut également être écrit comme 1W:1D, 1M:1W, 3Y:1M.","Enter access key":"Saisir clé d'accès","Enter account name":"Saisir le nom du compte","Enter backup passphrase, if any":"Saisir la phrase secrète de sauvegarde, si existante","Enter configuration details":"Saisir les détails de configuration","Enter container name":"Saisir le nom du conteneur","Enter encryption passphrase":"Saisir la phrase secrète de chiffrement","Enter expression here":"Saisir l'expression ici","Enter folder path name":"Saisir le chemin du répertoire","Enter one option per line in command-line format, eg. {0}":"Saisir une option par ligne dans le format ligne de commande, ex : {0}","Enter the destination path":"Saisir le chemin de destination","Enter the email address of the Office 365 group":"Saisir l'adresse email du groupe Office 365","Enter the full destination path, including the server name, but without https":"Saisir le chemin de destination complet, y compris le nom du serveur mais sans https","Error":"Erreur","Error!":"Erreur !","Errors and crashes":"Erreurs et plantages","Examined":"Examiné","Exclude":"Exclure","Exclude directories whose names contain":"Exclure les répertoires dont le nom contient","Exclude expression":"Exclure l'expression","Exclude file":"Exclure le fichier","Exclude file extension":"Exclure l'extension de fichier","Exclude files whose names contain":"Exclure les fichiers dont les noms contiennent","Exclude filter group":"Exclure le groupe de filtres","Exclude folder":"Exclure le dossier","Exclude regular expression":"Exclure l'expression régulière","Existing file found":"Fichier existant trouvé","Experimental":"Expérimental","Export":"Exporter","Export backup configuration":"Exporter la configuration de sauvegarde","Export configuration":"Exporter la configuration","Export passwords":"Exporter les mots de passe","Export …":"Exporter...","Exporting …":"Export...","External link":"Lien externe","FTP (Alternative)":"FTP (Alternatif)","Failed to build temporary database: {{message}}":"Échec de la construction de la base de données temporaire : {{message}}","Failed to connect:":"Échec de la connexion :","Failed to connect: {{message}}":"Échec de la connexion : {{message}}","Failed to delete:":"Échec de la suppression :","Failed to fetch path information: {{message}}":"Échec de la récupération des information du chemin : {{message}}","Failed to find backup:":"Impossible de trouver la sauvegarde : ","Failed to import:":"Échec de l'import :","Failed to read backup defaults:":"Échec de la lecture des paramètres par défaut de la sauvegarde :","Failed to restore files: {{message}}":"Échec de la restauration des fichiers : {{message}}","Failed to save:":"Échec d'enregistrement :","Fetching path information …":"Récupération d'informations sur le chemin...","File":"Fichier","Files larger than:":"Fichiers plus gros que :","Filters":"Filtres","Finished!":"Terminé !","First run setup":"Première mise en route","Folder":"Dossier","Folder path":"Chemin du dossier","Fri":"Ven.","GByte":"Go","GByte/s":"Go/s","GCS Project ID":"GCS Project ID","General":"Général","General backup settings":"Paramètres généraux de sauvegarde","General options":"Options générales","Generate":"Générer","Generate IAM\n access policy":"Générer une politique d'accès IAM","Getting file versions …":"Récupération des versions de fichier...","Group email":"Courriel de groupe","Hidden files":"Fichiers cachés","Hide":"Masquer","Hide hidden folders":"Masquer les dossiers cachés","Home":"Poste de travail","Hostnames":"Noms d'hôtes","Hours":"Heures","How do you want to handle existing files?":"Comment voulez-vous traiter les fichiers existants ?","Hyper-V Machine":"Machine Hyper-V","Hyper-V Machine:":"Machine Hyper-V :","Hyper-V Machines":"Machines Hyper-V","ID:":"ID :","If a date was missed, the job will run as soon as possible.":"Si une date a été manquée, la tâche démarrera dès que possible.","If at least one newer backup is found, all backups older than this date are deleted.":"Si au moins une sauvegarde plus récente est trouvée, toutes les sauvegardes antérieures à cette date sont supprimées.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Si la sauvegarde et le stockage distant ne sont plus synchronisés, Duplicati demandera d'effectuer une opération de réparation pour synchroniser la base de données.\\nSi la réparation échoue, vous pouvez supprimer la base de données locale et la régénérer.","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Si le fichier de sauvegarde n'a pas été téléchargé automatiquement, cliquer sur le bouton droit et choisir "Enregistrer sous..."","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Si le fichier de sauvegarde n'a pas été téléchargé automatiquement, cliquer sur le bouton droit et choisir "Enregistrer sous..."","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Si vous n'entrez pas de chemin, tous les fichiers seront stockés dans le dossier de connexion.\nÊtes-vous sûr que c'est ce que vous voulez ?","If you do not enter an API Key, the tenant name is required":"Si vous n'entrez pas de clé API, le nom de l'entité est requis","If you want to use the backup later, you can export the configuration before deleting it":"Si vous voulez utiliser la sauvegarde plus tard, vous pouvez exporter la configuration avant de la supprimer","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Si votre machine est dans un environnement multi-utilisateur (votre machine a plus d'un compte), vous avez besoin de définir un mot de passe pour éviter que les autres utilisateurs puissent accéder à vos données sur votre compte.\nVoulez-vous définir un mot de passe maintenant ?","Import":"Importer","Import Destination URL":"Importer l'URL de destination","Import backup configuration":"Importer la configuration de sauvegarde","Import completed, but no certificates were found after the import":"Import terminé, mais aucun certificat n'a été trouvé après l'import","Import failed":"Échec de l'import","Import from a file":"Importer depuis un fichier","Import metadata":"Importer des métadonnées","Importing …":"Importation...","Include a file?":"Inclure un fichier ?","Include expression":"Inclure expression","Include regular expression":"Inclure expression régulière","Incorrect answer, try again":"Réponse incorrecte, essayez encore","Individual builds for developers only. Not for use with important data.":"Versions individuelles pour les développeurs uniquement. Ne pas utiliser avec des données importantes.","Information":"Information","Install":"Installer","Install failed:":"Échec d'installation :","Invalid characters in path":"Caractères invalides dans le chemin","Invalid retention time":"Temps de rétention invalide","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"Il est possible de se connecter à certains FTP sans mot de passe.\nÊtes-vous sûr que votre serveur FTP prend en charge l'identification sans mot de passe ?","KByte":"Ko","KByte/s":"Ko/s","Keep a specific number of backups":"Conserver un nombre spécifique de sauvegardes","Keep all backups":"Conserver toutes les sauvegardes","Keystone API version":"Version de l'API Keystone","Language in user interface":"Langue de l'interface utilisateur","Last month":"Mois dernier","Last successful backup:":"Dernière sauvegarde réussie :","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"Dernière restauration réussie : {{time}} (a pris {{duration || '0 secondes'}})","Latest":"Dernière","Libraries":"Bibliothèques","Listing backup dates …":"Énumération des dates de sauvegarde...","Listing remote files for purge …":"Énumération des fichiers distants à purger...","Listing remote files …":"Énumération des fichiers distants...","Live":"Direct","Load a configuration from an exported job or a storage provider":"Charger une configuration depuis un export ou un opérateur de stockage","Load destination from an exported job or a storage provider":"Charger la destination depuis un export ou un opérateur de stockage","Load older data":"Charger des données plus anciennes","Loading ...":"Chargement...","Loading remote storage usage ...":"Chargement de l'utilisation du stockage distant...","Loading …":"Chargement...","Local Repository":"Stockage local","Local database for":"Base de données locale pour","Local database path:":"Chemin de la base de données locale :","Local repository":"Stockage local","Local storage":"Stockage local","Location":"Emplacement","Location where buckets are created":"Emplacement ou les buckets sont créés","Log data for {{Backup.Backup.Name}}":"Historique pour {{Backup.Backup.Name}}","Log data from the server":"Données d'historique du serveur","Log out":"Déconnexion","MByte":"Mo","MByte/s":"Mo/s","Maintenance":"Maintenance","Manually type path":"Entrée manuelle du chemin","Max download speed":"Vitesse maximum de téléchargement","Max upload speed":"Vitesse maximum de téléversement","Menu":"Menu","Microsoft SQL Database:":"Base de données Microsoft SQL :","Microsoft SQL Databases":"Bases de données Microsoft SQL","Minimum redundancy":"Redondance minimale","Minimum redundancy is 1.0":"La redondance minimale est de 1,0","Minutes":"Minutes","Missing name":"Nom manquant","Missing passphrase":"Phrase secrète manquante","Missing sources":"Sources manquantes","Modified":"Modifié","Mon":"Lun.","Months":"Mois","Move existing database":"Déplacer la base de données existante","Move failed:":"Échec de déplacement :","My Documents":"Mes documents","My Music":"Ma musique","My Photos":"Mes photos","My Pictures":"Mes photos","Name":"Nom","Never":"Jamais","New update found: {{message}}":"Nouvelle mise à jour trouvée : {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"Le nouveau nom d'utilisateur est {{user}}.\nMise à jour des accès pour le nouvel utilisateur limité","Next":"Suivant","Next scheduled run:":"Prochaine exécution programmée :","Next scheduled task:":"Prochaine tâche planifiée :","Next task:":"Prochaine tâche :","Next time":"Prochaine fois","No":"Non","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"Aucun certificat n'a été spécifié auparavant, veuillez vérifier que la clé est correcte auprès de votre administrateur système : {{key}}\n\nVoulez-vous approuver la clé de l'hôte mentionné ?","No editor found for the "{{backend}}" storage type":"Aucun éditeur trouvé pour le "{{backend}}" type de stockage","No encryption":"Pas de chiffrement","No items selected":"Aucun élément sélectionné","No items to restore, please select one or more items":"Aucun élément à restaurer, merci de sélectionner un ou plusieurs éléments","No passphrase entered":"Aucune phrase secrète entrée","No scheduled tasks":"Aucune tâche planifiée","No, my machine has only a single account":"Non, ma machine n'a qu'un seul compte","Non-matching passphrase":"La phrase secrète ne correspond pas","None / disabled":"Aucun / Désactivé","Not using encryption":"Ne pas utiliser le chiffrement","Nothing will be deleted. The backup size will grow with each change.":"Rien ne sera supprimé. La taille de la sauvegarde augmentera à chaque modification.","OK":"Ok","Once there are more backups than the specified number, the oldest backups are deleted.":"Une fois qu'il y a plus de sauvegardes que le nombre spécifié, les sauvegardes les plus anciennes sont supprimées.","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack Object Storage / Swift","Opened":"Ouvert","Openstack API Key are not supported in v3 keystone API.":"Les clés API Openstack ne sont pas prises en charge dans l'API v3 keystone.","Operating System":"Système d'exploitation","Operation":"Opération","Operation failed:":"Échec de l'opération :","Operations:":"Opérations :","Optional authentication password":"Mot de passe d'identification optionel","Optional authentication username":"Nom d'utilisateur d'identification optionel","Options":"Options","Options added here are applied to all backups, but can be overridden in each individual backup":"Les options ajoutées ici sont appliquées pour toutes les sauvegardes, mais elles peuvent être outrepassées pour chaque sauvegarde","Original location":"Emplacement d'origine","Others":"Autres","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"Les sauvegardes seront automatiquement supprimées. Il restera une sauvegarde pour chacun des sept derniers jours, chacune des quatre dernières semaines et chacun des douze derniers mois. Il y aura toujours au moins une sauvegarde.","Overwrite":"Écraser","Passphrase":"Phrase secrète","Passphrase (if encrypted)":"Phrase secrète (si chiffré)","Passphrase changed":"Phrase secrète changée","Passphrases are not matching":"Les phrases secrètes ne correspondent pas","Passphrases do not match":"La phrase secrète ne correspond pas","Password":"Mot de passe","Patching files with local blocks …":"Correction des fichiers avec les blocs locaux...","Path":"Chemin","Path not found":"Chemin non trouvé","Path on server":"Chemin sur le serveur","Path or subfolder in the bucket":"Chemin ou sous-dossier dans le bucket","Pause":"Pause","Pause after startup or hibernation":"Pause après le démarrage ou l'hibernation","Pause options":"Options de pause","Permissions":"Permissions","Pick location":"Choisir emplacement","Point to your backup files and restore from there":"Indiquer l'emplacement des fichiers de sauvegarde ","Port":"Port","Prevent tray icon automatic log-in":"Empêcher la connexion automatique de l'icône de la barre de tâches","Previous":"Précédent","Progress:":"Statut :","ProjectID is optional if the bucket exist":"Le ProjectID est optionel si le bucket existe","Proprietary":"Propriétaire","Purge Phase":"Étape de purge","Purging files complete!":"Nettoyage des fichiers terminé !","Purging files …":"Nettoyage des fichiers…","Rebuilding local database …":"Reconstruction de la base de données locale...","Recreate (delete and repair)":"Régénération (supprimer et réparer)","Recreate Database Phase":"Etape de la régénération de la bases de données","Recreating database …":"Régénération de la base de données...","Registering temporary backup …":"Enregistrement d'une sauvegarde temporaire...","Relative paths not allowed":"Les chemins relatifs ne sont pas autorisés","Reload":"Recharger","Remote":"Distant","Remote Path":"Chemin d'accès distant","Remote Repository":"Stockage distant","Remote path":"Chemin d'accès distant","Remote repository":"Stockage distant","Remote volume size":"Taille du volume distant","Remove":"Supprimer","Remove option":"Option de suppression","Removed files":"Fichiers supprimés","Repair":"Réparer","Repair Phase":"Étape de réparation","Repairing database …":"Réparation de la base de données...","Repeat Passphrase":"Répéter la phrase secrète","Reporting:":"Communication de données :","Reset":"Réinitialiser","Restore":"Restaurer","Restore complete!":"Restauration terminée !","Restore files":"Restaurer les fichiers","Restore files from {{backupname}}":"Restaurer les fichiers depuis {{backupname}}","Restore files …":"Restaurer les fichiers...","Restore from":"Restaurer depuis","Restore from backup configuration":"Restaurer depuis la sauvegarde de la configuration","Restore from configuration ...":"Restaurer depuis la configuration...","Restore options":"Options de restauration","Restore read/write permissions":"Restauration des droits de lecture/écriture","Restored Files":"Fichiers restaurés","Restored Folders":"Dossiers restaurés","Restored Symlinks":"Liens symboliques restaurés","Restoring files …":"Restauration des fichiers...","Resume":"Reprendre","Rewritten File Lists":"Listes de fichiers réécrits","Run again every":"Relancer tous les","Run now":"Démarrer maintenant","Running ....":"En cours...","Running commandline entry":"Exécution d'une ligne de commande","Running task:":"Tâche en cours :","Running …":"En cours...","S3 Compatible":"Compatible S3","Same as the base install version: {{channelname}}":"Identique à la version de base installée : {{channelname}}","Sat":"Sam.","Save":"Enregistrer","Save and repair":"Enregistrer et réparer","Save different versions with timestamp in file name":"Enregistrer des versions différentes avec l'horodatage dans le nom du fichier","Save immediately":"Enregistrer immédiatement ","Scanning existing files …":"Analyse des fichiers existants...","Scanning for local blocks …":"Analyse des blocs locaux...","Schedule":"Planifier","Search":"Rechercher","Search for files":"Rechercher les fichiers","Seconds":"Secondes","Select a log level and see messages as they happen:":"Sélectionner un niveau d'historique et voyez les messages quand ils apparaissent :","Select files":"Sélectionner les fichiers","Server":"Serveur","Server and port":"Serveur et port","Server hostname or IP":"Nom d'hôte du serveur ou IP","Server is currently paused,":"Le serveur est actuellement en pause,","Server is currently paused, do you want to resume now?":"Le serveur est actuellement en pause, voulez-vous reprendre maintenant ?","Server password":"Mot de passe du serveur","Server paused":"Serveur en pause","Server state properties":"Propriétés du statut serveur","Settings":"Paramètres","Show":"Afficher","Show advanced editor":"Afficher l'éditeur avancé","Show hidden folders":"Afficher les dossiers cachés","Show log":"Afficher l'historique","Show log …":"Afficher le journal...","Show treeview":"Afficher l'arborescence","Sia server password":"Mot de passe du serveur Sia","Smart backup retention":"Rétention de sauvegarde intelligente","Some OpenStack providers allow an API key instead of a password and tenant name":"Certains fournisseurs OpenStack autorisent une clé API à la place d'un mot de passe et d'un nom d'entité","Some S3 providers might only be compatible with a certain client library":"Certains fournisseurs S3 pourraient n'être compatibles qu'avec une bibliothèque cliente particulière.","Source Data":"Données source","Source Files":"Fichiers sources","Source data":"Données source","Source folders":"Dossiers source","Source:":"Source :","Specific builds for developers only. Not for use with important data.":"Versions spécifiques pour les développeurs uniquement. Ne pas utiliser avec des données importantes.","Standard protocols":"Protocoles standards","Start":"Démarrer","Starting backup …":"Démarrage de la sauvegarde...","Starting restore …":"Démarrage de la restauration...","Starting the restore process …":"Démarrage du processus de restauration...","Stop after current file":"Arrêter après le fichier en cours","Stop after the current file":"Arrêter après le fichier en cours","Stop now":"Arrêter maintenant","Stop running backup":"Arrêter la sauvegarde en cours","Stop running task":"Arrêter la tâche en cours","Stopping after the current file:":"Arrêt après le fichier en cours:","Stopping task:":"Arrêt de la tâche:","Storage Type":"Type de stockage","Storage class":"Classe de stockage","Storage class for creating a bucket":"Classe de stockage pour la création d'un bucket","Stored":"Stocké","Strong":"Fort","Success":"Succès","Sun":"Dim.","Symbolic link":"Lien symbolique","System Files":"Fichiers système","System default ({{levelname}})":"Paramètre par défaut du système ({{levelname}})","System files":"Fichiers système","System info":"Info système","System properties":"Propriétés système","TByte":"TByte","TByte/s":"TByte/s","Target path, ie /backup":"Chemin cible, c'est-à-dire /sauvegarde","Task is running":"La tâche est en cours","Temporary Files":"Fichiers temporaires","Temporary files":"Fichiers temporaires","Tenant Name":"Nom d'entité","Test Phase":"Étape de test","Test connection":"Tester la connexion","Testing ...":"Test...","Testing connection ...":"Test de connexion...","Testing permissions …":"Test des permissions...","Testing permissions...":"Test des permissions...","Testing …":"Test...","The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})":"Le champ '{{fieldname}}' contient un caractère non valide : {{character}} (valeur : {{value}}, index : {{pos}})","The backup is missing, has it been deleted?":"La sauvegarde est introuvable, a-t-elle été supprimée?","The backup was temporary and does not exist anymore, so the log data is lost":"La sauvegarde était temporaire et n'existe plus, alors les données du journal sont perdues.","The bucket name should be all lower-case, convert automatically?":"Le nom du bucket devrait être entièrement en minuscule, convertir automatiquement ?","The bucket name should start with your username, prepend automatically?":"Le nom du bucket devrait commencer par votre nom d'utilisateur, l'ajouter automatiquement ?","The configuration should be kept safe. Are you sure you want to save an unencrypted file containing your passwords?":"La configuration doit être conservée en sécurité. Êtes-vous sûr de vouloir enregistrer un fichier non chiffré contenant vos mots de passe ?","The connection to the server is lost, attempting again in {{time}} ...":"La connexion au serveur a été perdue, nouvelle tentative dans {{time}} ...","The dark theme (by Michal)":"Le thème sombre (de Michal)","The default blue on white theme (by Alex)":"Thème par défaut bleu sur fond blanc (by Alex)","The folder {{folder}} does not exist.\nCreate it now?":"Le dossier {{dossier}} n'existe pas.\nVoulez-vous le créer maintenant ?","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"La clé de l'hôte a changé. Veuillez vérifier avec l'administrateur du serveur si cela est correcte, car il pourrait s'agir d'une attaque de type \"intermédiaire\".\n\nVoulez-vous remplacer votre clé d'hôte actuelle \"{{prev}}\" par la clé indiquée : {{key}} ?","The passwords do not match":"Les mots de passe ne correspondent pas","The path does not appear to exist, do you want to add it anyway?":"Le chemin ne semble pas exister, voulez-vous l'ajouter quand même ?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"Le chemin ne se termine pas par un caractère '{{dirsep}}', ce qui signifie que vous sélectionnez un fichier et non un dossier.\n\nVoulez-vous inclure le fichier spécifié ?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"Le chemin doit être absolu, c.-à-d. qu'il doit commencer par une barre oblique '/'","The region parameter is only applied when creating a new bucket":"Le paramètre régional n'est appliqué qu'à la création d'un nouveau bucket","The region parameter is only used when creating a bucket":"Le paramètre régional n'est utilisé qu'à la création d'un bucket","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Le certificat du serveur n'a pas pu être validé.\nVoulez-vous approuver le certificat SSL avec la somme de contrôle : {{hash}} ?","The storage class affects the availability and price for a stored file":"La classe de stockage affecte la disponibilité et le prix d'un fichier stocké","The target folder contains encrypted files, please supply the passphrase":"Le fichier cible contient des fichiers chiffrés. Indiquer la phrase secrète","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"L'utilisateur a des droits d'accès trop élevés. Voulez-vous créer un nouvel utilisateur limité avec des droits d'accès uniquement pour les chemins sélectionnés ?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"Cette sauvegarde a été créée sur un autre système d’exploitation. Restaurer les fichiers sans préciser un dossier de destination peut créer des fichiers à des endroits inattendus. Êtes-vous surs de vouloir poursuivre sans choisir un dossier de destination ?","This month":"Ce mois","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"Cette option ne concerne pas la taille maximale de la sauvegarde ou du fichier, ni les taux de déduplication. Consulter cette page avant de modifier la taille du volume distant.","This week":"Cette semaine","Throttle settings":"Options de contrôle du débit","Thu":"Jeu.","Time":"Heure","To File":"Vers un fichier","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Pour confirmer la suppression de tous les fichiers distants pour \"{{name}}\", entrer le mot affiché ci-dessous","To export without a passphrase, uncheck the \"Encrypt file\" box":"Pour exporter sans phrase secrète, décochez la case \"Chiffrer fichier\"","To prevent various DNS based attacks, Duplicati limits the allowed hostnames to the ones listed here. Direct IP access and localhost is always allowed. Multiple hostnames can be supplied with a semicolon separator. If any of the allowed hostnames is an asterisk (*), all hostnames are allowed and this feature is disabled. If the field is empty, only IP address and localhost access is allowed.":"Pour éviter diverses attaques basées sur le DNS, Duplicati limite les noms d'hôtes autorisés à ceux répertoriés ici. L'accès IP direct et localhost est toujours autorisé. Plusieurs noms d'hôte peuvent être fournis séparés par un points-virgule. Si l'un des noms d'hôte autorisés est un astérisque (*), tous les noms d'hôte sont autorisés et cette fonctionnalité est désactivée. Si le champ est vide, seule l'adresse IP et l'accès localhost sont autorisés.","Today":"Aujourd'hui","Trust host certificate?":"Faire confiance au certificat de l'hôte ?","Trust server certificate?":"Faire confiance au certificat du serveur ?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"Essayer les nouvelles fonctionnalités en développement. Actuellement la version la plus stable disponible. Tester la restauration des données avant de l'utiliser dans des environnements de production.","Tue":"Mar.","Type passphrase here.":"Tapez la phrase secrète ici.","Type to highlight files":"Tapez pour mettre en surbrillance les fichiers","Unknown backup size and versions":"Taille et versions des sauvegardes inconnues","Until resumed":"Jusqu'à la reprise","Update channel":"Canal de mise à jour","Update failed:":"Échec de mise à jour","Updating with existing database":"Mettre à jour avec une base de données existante","Uploaded files":"Fichiers téléversés","Uploading verification file …":"Envoi du fichier de vérification...","Usage reports help us improve the user experience and evaluate impact of new features. We use them to generate {{'public usage statistics' | translate}}":"Les rapports d'utilisation nous aident à améliorer l'expérience utilisateur et à évaluer l'impact des nouvelles fonctionnalités. Nous les utilisons pour générer les statistiques publiques d'utilisation","Usage statistics":"Statistiques d'utilisation","Usage statistics, warnings, errors, and crashes":"Statistiques d'utilisation, avertissements, erreurs et accidents","Use SSL":"Utiliser SSL","Use existing database?":"Utiliser une base de données existante ?","Use weak passphrase":"Utiliser une phrase secrète faible","Useless":"Inutile","User data":"Données utilisateur","User domain name":"Nom de domaine de l'utilisateur","User has too many permissions":"L'utilisateur à trop d'autorisations","User interface settings":"Réglages interface utilisateur","Username":"Nom d'utilisateur","Vacuuming database …":"Nettoyage de la base de données...","Validating …":"Validation...","Verifications":"Vérifications","Verify files":"Vérifier fichier","Verifying ...":"Vérification ...","Verifying answer":"Vérification de la réponse","Verifying backend data …":"Vérification des données du backend...","Verifying files …":"Vérification des fichiers...","Verifying remote data …":"Vérification des données distantes...","Verifying restored files …":"Vérification des fichiers restaurés...","Verifying …":"Vérification...","Version ID":"ID de version","Very strong":"Très fort","Very weak":"Très faible","Visit us on":"Rendez nous visite sur","WARNING: The remote database is found to be in use by the commandline library":"ATTENTION : La base de données locale est rapportée comme étant utilisée par la librairie de ligne de commande","WARNING: This will prevent you from restoring the data in the future.":"ATTENTION : Cela va vous empêcher de restaurer vos données dans le futur.","Waiting for task to begin":"En attente du début de la tâche","Waiting for task to start ....":"En attente du début de la tâche...","Waiting for upload to finish …":"Attente de la fin du téléversement...","Warnings, errors and crashes":"Avertissements, erreurs et accidents","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"Nous acceptons les dons via différents services, tels que OpenCollective, PayPal, BountySource et diverses devises crypto.","We recommend that you encrypt all backups stored outside your system":"Nous vous recommandons de chiffrer toutes les sauvegardes stockées en dehors de votre système","Weak":"Faible","Weak passphrase":"Phrase secrète faible","Wed":"Mer.","Weeks":"Semaines","Where do you want to restore from?":"Ou voulez-vous restaurer vos fichiers ?","Where do you want to restore the files to?":"Ou voulez-vous restaurer vos fichiers ?","Years":"Années","Yes":"Oui","Yes, I have stored the passphrase safely":"Oui, j'ai conservé ma phrase secrète en sécurité","Yes, I understand the risk":"Oui, je comprends le risque","Yes, I'm brave!":"Oui, je suis courageux !","Yes, please break my backup!":"Oui, s'il vous plait cassez ma sauvegarde","Yesterday":"Hier","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"Mono semble fonctionner sans certificat SSL chargé.\nVoulez-vous importer la liste de certificats de confiance depuis Mozilla ?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"Vous êtes en train de changer le chemin de la base de données depuis une base de donnée existante.\nÊtes-vous sûr que c'est ce que vous voulez ?","You are currently running {{appname}} {{version}}":"Version installée : {{appname}} {{version}}","You can stop the backup after any file uploads currently in progress have finished.":"Vous pouvez arrêter la sauvegarde une fois que l'envoi de fichiers en cours est terminé.","You can stop the task immediately, or allow the process to continue its current file and then stop.":"Vous pouvez arrêter la tâche immédiatement, ou permettre au processus de terminer le fichier en cours, puis l'arrêter.","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"Vous avez changé la méthode de chiffrement. Ceci peut endommager certaines choses. Nous vous encourageons à créer une nouvelle sauvegarde à la place.","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"Vous avez changé la phrase secrète, ce qui n'est pas pris en charge. Nous vous encourageons à créer une nouvelle sauvegarde à la place.","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"Vous avez choisi de ne pas chiffrer votre sauvegarde. Le chiffrement est recommandé pour toutes les données stockées sur un serveur distant.","You have chosen to restore to a new location, but not entered one":"Vous avez demandé à restaurer vers un nouveau dossier, mais sans indiquer son chemin","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"Vous avez généré une phrase secrète forte. Assurez-vous que vous avez effectué une copie sécurisée de cette phrase secrète, car les données ne pourront pas être récupérées si vous la perdez.","You must choose at least one source folder":"Vous devez choisir au moins un dossier source","You must enter a domain name to use v3 API":"Vous devez entrer un nom de domaine pour utiliser l'API v3","You must enter a name for the backup":"Vous devez entrer un nom pour votre sauvegarde","You must enter a passphrase or disable encryption":"Vous devez saisir une phrase secrète ou désactiver le chiffrement","You must enter a password to use v3 API":"Vous devez saisir un mot de passe pour utiliser l'API v3","You must enter a positive number of backups to keep":"Vous devez entrer un nombre positif de sauvegarde à conserver","You must enter a tenant (aka project) name to use v3 API":"Vous devez entrer un nom de tenant (nom de projet) pour utiliser l'API v3","You must enter a tenant name if you do not provide an API Key":"Vous devez entrer un nom d'entité si vous ne fournissez pas une clé API","You must enter a valid duration for the time to keep backups":"Vous devez entrer une valeur correcte pour la durée de conservation de vos sauvegardes","You must enter either a password or an API Key":"Vous devez saisir un mot de passe ou une clé API","You must enter either a password or an API Key, not both":"Vous devez saisir un mot de passe ou une clé API, mais pas les deux","You must fill in the password":"Vous devez renseigner le mot de passe","You must fill in the server name or address":"Vous devez renseigner le nom du serveur ou l'adresse","You must fill in the username":"Vous devez renseigner le nom d'utilisateur","You must fill in {{field}}":"Vous devez renseigner le champ : {{field}}","You must select or fill in the AuthURI":"Vous devez sélectionner ou renseigner l'AuthURI","You must select or fill in the server":"Vous devez sélectionner ou renseigner le serveur","You must specify a path":"Vous devez spécifier un chemin.","You should fill in {{field}}{{reason}}":"Vous devez remplir {{field}} {{reason}}","Your files and folders have been restored successfully.":"Vos fichiers et dossiers ont été restaurés avec succès.","Your passphrase is easy to guess. Consider changing passphrase.":"Votre phrase secrète est facile à deviner. Songez à la changer.","bucket/folder/subfolder":"bucket/dossier/sous-dossier","byte":"byte","byte/s":"byte/s","custom":"personnalisé ","public usage statistics":"statistiques publiques d'utilisation","resume now":"reprendre maintenant","unless you are explicitly specifying --group-id":"sauf si vous spécifiez explicitement --group-id","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"{{appname}} a été principalement développé par {{dev1}} et {{dev2}}. {{appname}} peut être téléchargé depuis {{websitename}}. {{appname}} est sous licence {{licensename}}.","{{files}} files ({{size}}) to go {{speed_txt}}":"{{files}} fichiers {{size}}) à transférer {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versions"],"{{number}} Hour":"{{number}} Heure","{{number}} Hours":"{{number}} Heures","{{number}} Minutes":"{{number}} Minutes","{{time}} (took {{duration}})":"{{time}} (durée {{duration}})","…loading…":"...chargement..."}); gettextCatalog.setStrings('hu', {"- pick an option -":"- válasszon -","...loading...":"...töltés...","API Key":"API kulcs","AWS Access ID":"AWS Access ID","AWS Access Key":"AWS Access Key","AWS IAM Policy":"AWS IAM Policy","About":"Névjegy","About {{appname}}":"{{appname}} néjegye","Access Key":"Hozzáférési kulcs","Access denied":"Hozzáférés megtagadva","Access to user interface":"Hozzáférés a felhasználói felülethez","Account name":"Fiók név","Activate":"Aktiválás","Activate failed:":"Aktiválás sikertelen:","Add a new backup":"Új mentés hozzáadás","Add a path directly":"Útvonal hozzáadás közvetlenül","Add advanced option":"Haladó beállítás hozzáadása","Add backup":"Mentés hozzáadás","Add filter":"Szűrő hozzáadás","Add path":"Útvonal hozzáadás","Added":"Hozzáadva","Advanced Options":"Haladó beállítások","Advanced options":"Haladó beállítások","Advanced:":"Haladó:","All Hyper-V Machines":"Minden Hyper-V gép","All Microsoft SQL Databases":"Minde Microsoft SQL adatbázik","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Az összes felhasználási jelentést névtelenül küldjük el, és nem tartalmaznak személyes információt. Információkat tartalmaz a hardverről és az operációs rendszerről, a háttér típusáról, a biztonsági mentés időtartamáról, a forrásadatok teljes méretéről és hasonló adatokról. Nem tartalmaz útvonalakat, fájlneveket, felhasználóneveket, jelszavakat vagy hasonló érzékeny információkat.","Allow remote access (requires restart)":"Távoli hozzáférés engedélyezése (újraindítást igényel)","Allowed days":"Engedélyezett napok","An existing file was found at the new location":"Egy létező fájt találtam az új helyen","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Egy létező fájt találtam az új helyen\nBiztos vagy benne hogy az adatbázis a létező fájlra mutasson?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"A tároláshoz létező helyi adatbázis található. Az adatbázis újbóli használata lehetővé teszi, hogy a parancssori és a kiszolgálópéldányok ugyanabban a távoli tárolóban működjenek. \n\nSzeretné használni a meglévő adatbázist?","Anonymous usage reports":"Névtelen használati jelentések","Applications":"Alkalmazások","As Command-line":"Parancssorként","Authentication password":"Hitelesítési jelszó","Authentication username":"Hitelesítési felhasználónév","Autogenerated passphrase":"Automatikusan generált jelszó","Automatically run backups.":"Biztonsági mentések automatikus futtatása.","Back":"Vissza","Backend modules:":"Háttér modulok:","Backup complete!":"Mentés kész!","Backup destination":"Mentés cél","Backup is encrypted but no passphrase is available.\n Type a passphrase below to use for restoring your files,\n or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n invoking your system's keychain.":"A biztonsági mentés titkosítva van, de jelszó nem érhető el. Írja be az alábbi jelmondatot a fájlok helyreállításához, vagy GPG titkosítás esetén hagyja üresen, hogy hagyja, hogy a gpg a rendszer kulcstartójának meghívásával visszaszerezze a jelmondatot.","Backup location":"Mentés helye","Backup retention":"Mentés késleltetés","Backup:":"Mentés:","Beta":"Béta","Broken access":"Törött hozzáférés","Browse":"Tallóz","Browser default":"Böngésző alapértelmezett","Bucket Name":"Bucket név","Bucket create location":"Bucket létrehozásának helye","Bucket create region":"Bucket létrehozásának régiója","Bucket name":"Bucket neve","Building list of files to restore …":"Fájl lista összeállítás a visszaállításhoz...","Building partial temporary database …":"Részleges ideiglenes adatbázist készítése","Busy ...":"Elfoglalt ...","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"A távoli elérés engedélyezésével a szerver minden kérésre hallgat a hálózaton. Csak akkor engedélyezd ezt az opciót, ha biztos vagy benne, hogy biztonságos, tűzfallal védett hálózaton van a számítógép.","By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option.":"Alapértelmezés szerint a tálca ikon megnyitja a felhasználói felületet egy tokennel, amely feloldja a felhasználói felületet. Ez biztosítja, hogy a tálcán található ikonnal hozzáférjen a felhasználói felülethez, miközben másoknak is meg kell adniuk a jelszót. Ha inkább be kell írnia a jelszót, akkor is engedélyezze ezt a beállítást, ha a felhasználói felületre a tálcaikonból fér hozzá.","Cache Files":"Gyorsítótás Fájlok","Cancel":"Mégsem","Cannot move to existing file":"Nem lehet létező fájlra átnevezni","Changelog":"Váztozások","Changelog for {{appname}} {{version}}":"{{appname}} {{version}} változásnapló","Check failed:":"Ellenőrzés sikertelen:","Check for updates now":"Frissítés ellenőrzése most","Checking ...":"Ellenőrzés...","Checking for updates …":"Frissítések ellenőrzése ...","Chose a storage type to get started":"A kezdéshez válassz tárhely típust","Click to set throttle options":"Kattints a sebességkorlátozás beállításához","Commandline …":"Parancssor...","Compact Phase":"Tömörített állapot","Compact now":"Tömörítés most","Compacting remote data ...":"Távoli adatok tömörítése...","Compacting remote data …":"Távoli adatok tömörítése...","Complete log":"Teljes napló","Completing backup …":"Mentés befejezése...","Completing previous backup …":"Előző mentés befejezése...","Compression modules:":"Tömörítő modulok:","Computer":"Számítógép","Configuration file:":"Konfigurációs fájl:","Configuration:":"Konfiguráció:","Configure a new backup":"Új mentés beállítás","Confirm delete":"Törlés megerősítése","Confirm encryption passphrase":"Titkosítási jelszó megerősítése","Confirm passphrase":"Jelmondat megerősítés","Confirm password":"Jelszó megerősítés","Confirmation required":"Megerősítés szükséges","Connect":"Csatlakozás","Connect now":"Csatlakozás most","Connecting to server …":"Csatlakozás a kiszolgálóhoz...","Connecting to task ....":"Csatlakozás a feladathoz...","Connecting...":"Csatlakozás...","Connection lost":"Csatlakozás megszakadt","Connection worked!":"Csatlakozás működik!","Container name":"Tároló neve","Container region":"Tároló régió","Continue":"Folytatás","Continue without encryption":"Folytatás titkosítás nélkül","Copied!":"Másolva!","Copy":"Másolás","Copy Destination URL to Clipboard":"Cél URL másolása a Vágólapra","Copy failed. Please manually copy the URL":"Másolás sikertelen. Próbáld meg kézzel másolni az URL-t","Core options":"Mag beállítások","Counting ({{files}} files found, {{size}})":"Számolás ({{files}} megtalált fájl, {{size}})","Crashes only":"Csak összeomlások","Create bug report …":"Hibajelentés készítés...","Create folder?":"Mappa készítés?","Created new limited user":"Új korlátozott felhasználó létrehozva","Creating bug report …":"Hibajelentés készítés...","Creating new user with limited access …":"Új felhasználó létrehozása korlátozott hozzáféréssel...","Creating target folders …":"Cél mappák létrehozása...","Creating temporary backup …":"Ideiglenes mentés létrehozása...","Creating user...":"Felhasználó létrehozása...","Current action:":"Aktuális művelet:","Current file:":"Aktuális fájl:","Current version is {{versionname}} ({{versionnumber}})":"Aktuális verzió: {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"Egyéni S3 végpont","Custom authentication url":"Egyéni hitelesítési URL","Custom backup retention":"Egyéni mentés késleltetés","Custom location ({{server}})":"Egyéni hely ({{server}})","Custom region value ({{region}})":"Egyéni régió érték ({{region}})","Custom server url ({{server}})":"Egyéni kiszolgáló URL ({{server}})","Custom storage class ({{class}})":"Egyéni tároló osztály ({{class}})","Database …":"Adatbázis...","Days":"Nap","Default":"Alapértelmezett","Default ({{channelname}})":"Alapértelmezett ({{channelname}})","Default excludes":"Alapértelmezett kihagyások","Default options":"Alapértelmezett beállítások","Delete":"Törlés","Delete Phase (Old Backup Versions)":"Törlési fázis (régi mentés verziók)","Delete backup":"Mentés törlése","Delete backups that are older than":"Ennél régebbi mentések törlése","Delete local database":"Helyi adatbázis törlése","Delete remote files":"Távoli fájlok törlése","Delete the local database":"A helyi adatbázis törlése","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"{{filecount}} fájl ({{filesize}}) törlése a távoli tárhelyről?","Delete …":"Törlés...","Deleted":"Törölve","Deleted Versions":"Törölt verziók","Deleted files":"Törölt fájlok","Deleting remote files …":"Távoli fájlok törlése","Deleting unwanted files …":"Felesleges fájlok törlése...","Description (optional)":"Leírás (nem kötelező)","Description:":"Leírás:","Desktop":"Asztal","Destination":"Cél","Destination path":"Cél útvonal","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Segítettünk a fájlok mentésében? Ha igen, kérjük, fontolja meg a Duplicati támogatását egy adomány útján. Javasoljuk a {{smallamount}} magán felhasználásra és {{largeamount}} felhasználását kereskedelmi használatra.","Direct restore from backup files ...":"Közvetlen visszaállítás a mentési fájlokból...","Disabled":"Letiltva","Dismiss":"Elvet","Dismiss all":"Elvet mindent","Display and color theme":"Megjelenés és szín téma","Do you really want to delete the backup: \"{{name}}\" ?":"Biztos, hogy törölni akarod ezt a mentést: \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Biztos, hogy törölni akarod ezt a helyi adatbázist: {{name}}","Domain Name":"Domain név","Donate":"Támogatás","Donation messages":"Támogatási üzenetek","Donation messages are hidden, click to show":"Támogatási üzenetek elrejtve, kattints a megjelenítéshez","Donation messages are visible, click to hide":"Támogatási üzenetek megjelenítve, kattints az elrejtéshez","Done":"Kész","Download":"Letöltés","Downloaded files":"Letöltött fájlok","Downloading files …":"Fájlok letöltése...","Downloading update…":"Frissítés letöltése...","Downloading …":"Letöltés...","Duplicate option {{opt}}":"Dupla beállítás: {{opt}}","Duplicati Website":"Duplicati webodal","Duplicati forum":"Duplicati fórum","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"A másolat elindul, amikor elindul, de szüneteltetett állapotban marad mindaddig. A Duplicatiák minimális rendszer erőforrásokat foglalnak el, és biztonsági másolatot nem indítanak.","Duration":"Időtartam","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Minden biztonsági mentéshez egy helyi adatbázis tartozik, amely a távoli biztonsági mentésről információkat tárol a helyi számítógépen. Biztonsági másolat törlésekor törölheti a helyi adatbázist anélkül, hogy befolyásolná a távoli fájlok visszaállításának képességét. Ha a helyi adatbázist a parancssorból készített biztonsági másolatokra használja, meg kell őriznie az adatbázist.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Minden biztonsági másolathoz társítva van egy helyi adatbázis, amely a távoli biztonsági mentésről információkat tárol a helyi számítógépen. \\ NEz sok művelet végrehajtását gyorsabbá teszi, és csökkenti az egyes műveletekhez letölthető adatok mennyiségét.","Edit as list":"Szerkesztés listaként","Edit as text":"Szerkesztés szövegként","Edit …":"Szerkesztés...","Encrypt file":"Fájl titkosítás","Encryption":"Titkosítás","Encryption changed":"Titkosítás megváltozott","Encryption modules:":"Titkosító modulok:","End":"Vége","Enter URL":"URL megadás","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Adjon meg egy megtartási stratégiát kézzel. A helyőrzők napok / hetek / évek feletti órás / év / év, korlátlan U A szintaxis: 7D: 1D, 4W: 1W, 36M: 1M. Ez a példa egy biztonsági másolatot készít a következő 7 nap mindegyikére, egyet a következő 4 hétre és egy a következő 36 hónapra. Ez is 1W: 1D, 1M: 1W, 3Y: 1M formátumban írható.","Enter access key":"Hozzáférési kulcs megadása","Enter account name":"Fióknév megadása","Enter backup passphrase, if any":"Mentés jelszó megadása, ha van","Enter configuration details":"Beállítások részletes megadása","Enter container name":"Konténer név megadása","Enter encryption passphrase":"Titkosítási jelszó megadása","Enter expression here":"Kifejezés megadása itt","Enter folder path name":"Mappa útvonalának megadása","Enter one option per line in command-line format, eg. {0}":"Soronként egy opció megadása parancssor formátumban, pl. {0}","Enter the destination path":"Cél útvonal megadása","Enter the email address of the Office 365 group":"Az Office 365 csoport e-mail címének megadása","Enter the full destination path, including the server name, but without https":"A teljes cél útvonal megadása, beleértve a kiszolgáló nevét, de https nélkül","Error":"Hiba","Error!":"Hiba!","Errors and crashes":"Hibák és összeomlások","Examined":"Vizsgálva","Exclude":"Kizár","Exclude directories whose names contain":"Könyvtárak kizárása, amelyek neve tartalmazza","Exclude expression":"Kifejezés kizárása","Exclude file":"A fájl kizárása","Exclude file extension":"Fájlkiterjesztés kizárása","Exclude files whose names contain":"Fájlok kizárása, amelyek nevei tartalmazzák","Exclude filter group":"Szűrőcsoport kizárása","Exclude folder":"Mappa kizárása","Exclude regular expression":"Reguláris kifejezés kizárása","Existing file found":"Meglévő fájl található","Experimental":"Kísérleti","Export":"Export","Export backup configuration":"Biztonsági mentés konfiguráció exportálása","Export configuration":"Konfiguráció exportálása","Export passwords":"Jelszó exportálása","Export …":"Exportálás…","Exporting …":"Exportálás ...","External link":"Külső hivatkozás","FTP (Alternative)":"FTP (alternatív)","Failed to build temporary database: {{message}}":"Nem sikerült létrehozni az ideiglenes adatbázist: {{message}}","Failed to connect:":"Nem sikerült csatlakozni:","Failed to connect: {{message}}":"Nem sikerült csatlakozni: {{message}}","Failed to delete:":"A törlés nem sikerült:","Failed to fetch path information: {{message}}":"Nem sikerült letölteni az elérési út adatait: {{message}}","Failed to find backup:":"Nem sikerült megtalálni a biztonsági másolatot:","Failed to import:":"Az importálás nem sikerült:","Failed to read backup defaults:":"A biztonsági másolat alapértelmezett értékeinek olvasása nem sikerült:","Failed to restore files: {{message}}":"A fájlok helyreállítása nem sikerült: {{message}}","Failed to save:":"Nem sikerült elmenteni:","Fetching path information …":"Útvonal-információ lekérése ...","File":"Fájl","Files larger than:":"Fájlok nagyobb mint:","Filters":"Szürők","Finished!":"Kész!","First run setup":"Első futtatáskori beállítás","Folder":"Mappa","Folder path":"Mappa útvonal","Fri":"Pén","GByte":"GByte","GByte/s":"GByte/s","General":"Általános","General backup settings":"Általános mentési beállítások","General options":"Általános beállítások","Generate":"Generál","Getting file versions …":"Fájl verziók lekérdezése...","Group email":"Csoport e-mail","Hidden files":"Rejtett fájlok","Hide":"Elrejt","Hide hidden folders":"Rejtett mappák elrejtése","Home":"Kezdőlap","Hostnames":"Gazdagép nevek","Hours":"Óra","How do you want to handle existing files?":"Hogyan szeretnéd kezelni a létező fájlokat?","Hyper-V Machine":"Hyper-V gép","Hyper-V Machine:":"Hyper-V gép:","Hyper-V Machines":"Hyper-V gépek","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Ha egy dátum kimaradt, a lehető leghamarabb elindul.","If at least one newer backup is found, all backups older than this date are deleted.":"Ha legalább egy újabb biztonsági másolatot talál, az összes ezen időpontnál régebbi biztonsági másolatot törli.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Ha a biztonsági mentés és a távoli tárolás nincs szinkronban, a Duplicatinak javítási műveletet kell elvégeznie az adatbázis szinkronizálása érdekében. \\nHa a javítás sikertelen, törölheti a helyi adatbázist és újra generálhatja.","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Ha a biztonsági mentési fájlt nem töltötte le automatikusan, kattintson a jobb gombbal, és válassza a "Mentés másként ..." lehetőséget.","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Ha a biztonsági mentési fájlt nem töltötte le automatikusan, kattintson a jobb gombbal, és válassza a "Mentés másként ..." lehetőséget.","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Ha nem ad meg útvonalat, az összes fájlt a bejelentkezési mappában tárolja. Biztos benne, hogy ezt akarod?","If you do not enter an API Key, the tenant name is required":"Ha nem ad meg API-kulcsot, akkor kötelező a bérlő neve","If you want to use the backup later, you can export the configuration before deleting it":"Ha később használni szeretné a biztonsági mentést, törlés előtt exportálhatja a konfigurációt","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Ha a számítógép több felhasználói környezetben van (azaz a készüléknek egynél több fiókja van), be kell állítania egy jelszót, hogy megakadályozzon más felhasználókat a fiókja adatainak elérésében. Beállítod most a jelszót?","Import":"Import","Import completed, but no certificates were found after the import":"Az import befejeződött, de az importálás után nem található igazolás","Import failed":"Importálás sikertelen","Import from a file":"Importálás egy fájlból","Import metadata":"Metaadatok importálása","Importing …":"Importálás...","Incorrect answer, try again":"Érvénytelen válasz, próbáld újra","Information":"Információ","Install":"Telepítés","Install failed:":"Telepítés sikertelen:","Invalid characters in path":"Érvénytelen karakterek az útvonalban","Invalid retention time":"Érvénytelen késleltetési idő","KByte":"KByte","KByte/s":"KByte/s","Keep a specific number of backups":"Meghatározott számú mentés megtartása","Keep all backups":"Minden mentés megtartása","Language in user interface":"Felhasználói felület nyelve","Last month":"Előző hónap","Last successful backup:":"Utolsó sikeres mentés:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"Utolsó sikeres visszaállítás: {{time}} (took {{duration || '0 seconds'}})","Latest":"Legújabb","Libraries":"Könyvtárak","Listing backup dates …":"Mentési dátumok felsorolása…","Listing remote files for purge …":"Távoli fájlok felsorolása a tisztításhoz…","Listing remote files …":"Távoli fájlok felsorolása...","Live":"Élő","Load older data":"Régebbi adatok betöltése","Loading ...":"Betöltés...","Loading remote storage usage ...":"Távoli tárhely használat betöltése...","Loading …":"Betöltés...","Local Repository":"Helyi tároló","Local database for":"Helyi adatbázis ehhez","Local database path:":"Helyi adatbázis útvonal:","Local repository":"Helyi tároló","Local storage":"Helyi tárhely","Location":"Hely","Log out":"Kijelentkezés","MByte":"MByte","MByte/s":"MByte/s","Maintenance":"Karbantartás","Manually type path":"Útvonal kézi megadása","Max download speed":"Maximális letöltési sebesség","Max upload speed":"Maximális feltöltési sebesség","Menu":"Menü","Microsoft SQL Database:":"Microsoft SQL adatbázis:","Microsoft SQL Databases":"Microsoft SQL adatbázisok","Minimum redundancy":"Minimális redundancia","Minimum redundancy is 1.0":"A minimális redundancia 1.0","Minutes":"Perc","Missing name":"Hiányzó név","Missing passphrase":"Hiányzó jelszó","Missing sources":"Hiányzó források","Modified":"Módosított","Mon":"Hé","Months":"Hónap","Move existing database":"Létező adatbázis áthelyezése","Move failed:":"Áthelyezés sikertelen:","My Documents":"Dokumentumok","My Music":"Zenék","My Photos":"Fényképek","My Pictures":"Képek","Name":"Név","Never":"Soha","New update found: {{message}}":"Új frissítést találtam: {{message}}","Next":"Következő","Next scheduled run:":"Következő időzített futtatás:","Next scheduled task:":"Következő időzített feladat:","Next task:":"Következő feladat:","Next time":"Következő dátum","No":"Nem","No encryption":"Nincs titkosítás","No items selected":"Nincsenek kijelölt elemek","No passphrase entered":"Nincs megadva jelszó","No scheduled tasks":"Nincs ütemezett feladat","No, my machine has only a single account":"Nem, a gépemen csak egy fiók van","Non-matching passphrase":"Nem egyező jelszavak","None / disabled":"Semmi / letiltva","Not using encryption":"Nem használ titkosítást","Nothing will be deleted. The backup size will grow with each change.":"Semmi sem lesz törölve. A mentés minden változáskor növekedni fog.","OK":"OK","Once there are more backups than the specified number, the oldest backups are deleted.":"A mentések megadott számának elérését követően, a régebbi mentések törlésre kerülnek.","Opened":"Megnyitva","Operating System":"Operációs rendszer","Operation":"Művelet","Operation failed:":"Művelet sikertelen:","Operations:":"Tevékenységek:","Optional authentication password":"Opcionális hitelesítési jelszó","Options":"Beállítások","Original location":"Eredeti hely","Others":"Egyebek","Overwrite":"Felülírás","Passphrase":"Jelmondat","Passphrase (if encrypted)":"Jelszó (ha titkosított)","Passphrase changed":"A jelmondat megváltozott","Passphrases are not matching":"A jelszavak nem egyeznek meg","Passphrases do not match":"A jelszavak nem egyeznek","Password":"Jelszó","Path":"Útvonal","Path not found":"Az útvonal nem található","Path on server":"Útvonal a kiszolgálón","Pause":"Szünet","Pause after startup or hibernation":"Szünet indítás vagy hibernálás után","Pause options":"Szünet beállítások","Permissions":"Engedélyek","Pick location":"Hely választása","Port":"Port","Prevent tray icon automatic log-in":"Tálca ikon automatikus bejelentkezés megakadályozása","Previous":"Előző","Progress:":"Folyamat:","Proprietary":"Tulajdonosi","Purge Phase":"Tisztítási fázis","Purging files complete!":"Fájlok tisztítása befejezve!","Purging files …":"Fájlok tisztítása...","Rebuilding local database …":"Helyi adatbázis újraépítése...","Recreate (delete and repair)":"Újraépítés (törlés és javítás)","Recreate Database Phase":"Adatbázis újraépítési fázis","Recreating database …":"Adatbázis újraépítése...","Registering temporary backup …":"Ideiglenes mentés regisztrálása...","Relative paths not allowed":"Relatív útvonalak nem engedélyezettek","Reload":"Újratöltés","Remote":"Távoli","Remote Path":"Távoli útvonal","Remote Repository":"Távoli tároló","Remote path":"Távoli útvonal","Remote repository":"Távoli tároló","Remote volume size":"Távoli kötet méret","Remove":"Eltávolít","Remove option":"Opció eltávolítás","Removed files":"Eltávolított fájlok","Repair":"Javítás","Repair Phase":"Javítási fázis","Repairing database …":"Adatbázis javítás...","Repeat Passphrase":"Jelmondat ismét","Reporting:":"Jelentés:","Reset":"Visszaállítás","Restore":"Visszaállítás","Restore complete!":"Visszaállítás sikeres!","Restore files":"Fájlok visszaállítása","Restore files from {{backupname}}":"Fájlok visszaállítása innen: {{backupname}}","Restore files …":"Fájlok visszaállítása...","Restore from":"Visszaállítás innen","Restore from backup configuration":"Visszaállítás mentési konfigurációból","Restore from configuration ...":"Visszaállítás konfigurációból...","Restore options":"Visszaállítási beállítások","Restore read/write permissions":"Irási/olvasási engedélyek visszaállítása","Restored Files":"Visszaállított fájlok","Restored Folders":"Visszaállított mappák","Restored Symlinks":"Visszaállított szimbolikus linkek","Restoring files …":"Fájlok visszaállítása...","Resume":"Folytatás","Rewritten File Lists":"Újraírt fájl listák","Run again every":"Futtassa újra minden","Run now":"Futtatás most","Running ....":"Fut...","Running commandline entry":"Parancssori bejegyzés futtatása","Running task:":"Futó feladat:","Running …":"Fut...","S3 Compatible":"S3 kompatibilis","Same as the base install version: {{channelname}}":"Ugyanaz, mint az alap telepítési verzió: {{channelname}}","Sat":"Szo","Save":"Mentés","Save and repair":"Mentés és javítás","Save different versions with timestamp in file name":"Eltérő verziók mentése időbélyeggel a fájlnévben","Save immediately":"Mentés azonnal","Scanning existing files …":"Létező fájlok szkennelése...","Scanning for local blocks …":"Helyi blokkok szkennelése...","Schedule":"Időzítés","Search":"Keresés","Search for files":"Fájlok keresése","Seconds":"Másodperc","Select files":"Fájlok kiválasztása","Server":"Kiszolgáló","Server and port":"Kiszolgáló és port","Server hostname or IP":"Kiszolgáló gazdanév vagy IP","Server is currently paused,":"A kiszolgáló jelenleg szünetel.","Server is currently paused, do you want to resume now?":"A kiszolgáló jelenleg szünetel, szeretnéd folytatni?","Server password":"Szerver jelszó","Server paused":"Kiszolgáló szünetel","Server state properties":"Kiszolgáló állapot tulajdonságok","Settings":"Beállítások","Show":"Mutat","Show advanced editor":"Speciális szerkesztő megjelenítése","Show hidden folders":"Rejtett mappák megjelenítése","Show log":"Mutasd a naplót","Show log …":"Mutasd a naplót ...","Show treeview":"Fa nézet megjelenítése","Sia server password":"Sia szerver jelszó","Smart backup retention":"Intelligens mentés késleltetés","Source Data":"Forrás adat","Source Files":"Forrás fájlok","Source data":"Forrás adat","Source folders":"Forrás mappák","Source:":"Forrás:","Specific builds for developers only. Not for use with important data.":"Fejlesztőknek szánt kiadások. Fontos mentésére nem használható.","Standard protocols":"Szabványos protokollok","Start":"Start","Starting backup …":"Mentés indítása...","Starting restore …":"Visszaállítás indítása...","Starting the restore process …":"Visszaállítási folyamat indítása...","Stop after current file":"Leállítás az aktuális fájl után","Stop after the current file":"Leállítás az aktuális fájl után","Stop now":"Leállítás most","Stop running backup":"Mentés futtatásának leállítása","Stop running task":"Feladat futtatásának leállítása","Stopping after the current file:":"Leállítás az aktuális fájl után:","Stopping task:":"Feladat leállítása:","Storage Type":"Tárhely típus","Storage class":"Tároló osztály","Stored":"Tárolva","Strong":"Erős","Success":"Siker","Sun":"V","Symbolic link":"Szimbolikus link","System Files":"Rendszer fájlok","System default ({{levelname}})":"Rendszer alapértelmezés ({{levelname}})","System files":"Rendszer fájlok","System info":"Rendszer információ","System properties":"Rendszer tulajdonságok","TByte":"TByte","TByte/s":"TByete/s","Target path, ie /backup":"Cél útvona, pl: /mentes","Task is running":"A feladat fut","Temporary Files":"Ideiglenes fájlok","Temporary files":"Ideiglenes fájlok","Tenant Name":"Bérlő neve","Test Phase":"Teszt fázis","Test connection":"Kapcsolat tesztelése","Testing ...":"Tesztelés...","Testing connection ...":"Kapcsolat tesztelése...","Testing permissions …":"Engedélyek tesztelése...","Testing permissions...":"Engedélyek tesztelése...","Testing …":"Tesztelés...","The dark theme (by Michal)":"Sötét téma (by Michal)","The default blue on white theme (by Alex)":"Alapértelmezett kék-fehér téma (Alextől)","The folder {{folder}} does not exist.\nCreate it now?":"A mappa nem létezik: {{folder}} .\nLétrehozzam?","The passwords do not match":"A jelszavak nem egyeznek meg","The path does not appear to exist, do you want to add it anyway?":"Úgy tűnik, hogy a megadott útvonal nem létezik, mégis hozzá akarod adni?","This month":"Ez a hónap","This week":"Ez a hét","Throttle settings":"Sebességkorlátozás beállítások","Thu":"Cs","Time":"Idő","To File":"Fájlba","Today":"Ma","Tue":"K","Type passphrase here.":"Írd ide a jelmondatot","Until resumed":"Folytatásig","Update channel":"Frissítési csatorna","Update failed:":"Frissítés sikertelen:","Updating with existing database":"Frissítés létező adatbázissal","Uploaded files":"Fájlok feltöltése","Uploading verification file …":"Ellenőrző fájl feltöltése...","Usage statistics":"Használati statisztikák","Usage statistics, warnings, errors, and crashes":"Használati statisztikák, figyelmeztetések, hibák és összeomlások","Use existing database?":"Létező adatbázis használata?","Use weak passphrase":"Használja a gyenge jelmondatot","Useless":"Hasztalan","User data":"Felhasználói adat","User domain name":"Felhasználói domain név","User has too many permissions":"A felhasználónak túl sok engedélye van","User interface settings":"Felhasználói felület beállítások","Username":"Felhasználónév","Validating …":"Érvényesítés...","Verifications":"Ellenőrzések","Verify files":"Fájlok ellenőrzése","Verifying ...":"Ellenőrzés...","Verifying answer":"Válasz ellenőrzése","Verifying backend data …":"Háttér adat ellenőrzése...","Verifying files …":"Fájlok ellenőrzése...","Verifying remote data …":"Távoli adatok ellenőrzése...","Verifying restored files …":"Visszaállított fájlok ellenőrzése...","Verifying …":"Ellenőrzés...","Version ID":"Verzió ID","Very strong":"Nagyon erős","Very weak":"Nagyon gyenge","Visit us on":"Látogass meg minket itt","WARNING: The remote database is found to be in use by the commandline library":"FIGYELEM: úgy tűnik, hogy a távoli adatbázist egy parancssori könyvtár használja","WARNING: This will prevent you from restoring the data in the future.":"FIGYELEM: Ez megakadályozza, hogy a jövőben helyreállítsd az adatokat.","Waiting for task to begin":"Várakozás a feladat elkezdésére","Waiting for task to start ....":"Várakozás a feladat elindulására...","Waiting for upload to finish …":"Várakozás a feltöltés befejezésére...","Warnings, errors and crashes":"Figyelmeztetések, hibák és összeomlások","Weak":"Hét","Weak passphrase":"Gyenge jelmondat","Wed":"Sze","Weeks":"Hét","Where do you want to restore from?":"Honnan szeretnél visszaállítani?","Where do you want to restore the files to?":"Hova szeretnéd visszaállítani a fájlokat?","Years":"Év","Yes":"Igen","Yes, I have stored the passphrase safely":"Igen, biztonságosan tárolom a jelmondatot","Yes, I understand the risk":"Igen, megértettem a kockázatot","Yes, I'm brave!":"Igen, bátor vagyok","Yes, please break my backup!":"Igen, kérlek tedd tönkre a mentésemet!","Yesterday":"Tegnap","You must fill in the password":"Ki kell töltened a jelszót","You must fill in the server name or address":"Ki kell töltened a szerver nevét vagy a címét","You must fill in the username":"Ki kell töltened a felhasználónevet","You must fill in {{field}}":"Ez ki kell töltened: {{field}}","You must specify a path":"Meg kell adnod egy útvonalat","You should fill in {{field}}{{reason}}":"Ezt ki kellene töltened: {{field}}{{reason}}","Your files and folders have been restored successfully.":"A fájljaid és mappáid sikeresen vissza lettek állítva.","Your passphrase is easy to guess. Consider changing passphrase.":"A jelszavadat könnyű kitalálni. Érdemes lenne megváltoztatni.","byte":"byte","byte/s":"byte/s","custom":"egyéni","public usage statistics":"nyilvános használati statisztikák","resume now":"folytatás most","{{files}} files ({{size}}) to go {{speed_txt}}":"{{files}} fájl ({{size}}) van még hátra {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{item.Backup.Metadata.TargetSizeString}} / {{$count}} verzió","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} verzió"],"{{number}} Hour":"{{number}} óra","{{number}} Hours":"{{number}} óra","{{number}} Minutes":"{{number}} perc","…loading…":"...betöltés..."}); - gettextCatalog.setStrings('it', {"- pick an option -":"- seleziona un'opzione -","...loading...":"... caricamento in corso ...","API Key":"Chiave API","API key":"Chiave API","AWS Access ID":"ID di accesso AWS","AWS Access Key":"Chiave di accesso AWS","AWS IAM Policy":"Norme AWS IAM","About":"Informazioni","About {{appname}}":"Informazioni {{appname}}","Access Key":"Chiave di accesso","Access denied":"Accesso negato","Access grant":"Concessione accesso","Access to user interface":"Accesso all'interfaccia utente","Account name":"Nome account","Activate":"Attiva","Activate failed:":"Attivazione fallita:","Add a new backup":"Aggiungi un nuovo backup","Add a path directly":"Aggiungi direttamente un percorso","Add advanced option":"Aggiungi opzione","Add backup":"Aggiungi backup","Add filter":"Aggiungi filtro","Add path":"Aggiungi percorso","Added":"Aggiunto","Adjust bucket name?":"Sistemare il nome bucket?","Adjust path name?":"Sistemare il nome del percorso?","Advanced Options":"Opzioni Avanzate","Advanced options":"Opzioni avanzate","Advanced:":"Avanzate:","All Hyper-V Machines":"Tutte le Macchine Hyper-V","All Microsoft SQL Databases":"Tutti i database Microsoft SQL","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Tutti i rapporti sono inviati in modo anonimo e non contengono informazioni personali. Contengono informazioni sull'hardware, sul sistema operativo, il tipo di backend, la durata del backup, la dimensione complessiva dei dati sorgente ed dati simili. Non contengono i percorsi, nomi dei file, nomi utente, password o altre informazioni sensibili.","Allow remote access (requires restart)":"Consenti accesso remoto (richiede il riavvio)","Allowed days":"Giorni consentiti","An existing file was found at the new location":"Un file esistente è stato trovato nella nuova posizione","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Un file esistente è stato trovato nella nuova posizione.\nSei sicuro di volere che il database punti ad un file esistente?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"Un database locale esistente per l'archiviazione è stato trovato.\nIl riutilizzo del database consentirà alle istanze da riga di comando e dal server di lavorare sullo stesso archivio remoto.\n\nVuoi usare il database esistente?","Anonymous usage reports":"Rapporti d'uso anonimi","Applications":"Applicazioni","As Command-line":"Come riga di comando","AuthID":"AuthID","Authentication method":"Metodo di autenticazione","Authentication method ({{auth_method}})":"Metodo di autenticazione ({{auth_method}})","Authentication password":"Password di autenticazione","Authentication username":"Nome utente di autenticazione","Autogenerated passphrase":"Genera automaticamente passphrase","Automatically run backups.":"Esegui automaticamente i backup.","B2 Application ID":"ID applicazione B2","B2 Application Key":"Chiave Applicazione B2","B2 Cloud Storage Account ID":"ID Account Cloud B2 Storage","B2 Cloud Storage Application ID":"ID applicazione di archiviazione cloud B2","B2 Cloud Storage Application Key":"Chiave applicazione Archiviazione Cloud B2","Back":"Indietro","Backend modules:":"Moduli backend:","Backup complete!":"Backup completo!","Backup destination":"Destinazione backup","Backup is encrypted but no passphrase is available.\n Type a passphrase below to use for restoring your files,\n or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n invoking your system's keychain.":"Il backup è crittografato ma non è disponibile la passphrase.\n Digita una passphrase qui sotto da utilizzare per ripristinare i tuoi file,\n o, in caso di crittografia GPG, lascia vuoto per consentire a gpg di recuperare la passphrase\n richiamando il portachiavi del sistema.","Backup location":"Posizione Backup","Backup retention":"Conservazione backup","Backup:":"Dimensione backup:","Beta":"Beta","Broken access":"Accesso non riuscito","Browse":"Browse","Browser default":"Browser predefinito","Bucket":"Bucket","Bucket Name":"Nome Bucket","Bucket create location":"Crea posizione bucket","Bucket create region":"Crea area bucket","Bucket name":"Nome bucket","Bucket storage class":"Classe bucket","Building list of files to restore …":"Creazione di un elenco di file da ripristinare ...","Building partial temporary database …":"Creazione di un database temporaneo parziale ...","Busy ...":"Occupato...","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"Consentendo l'accesso remoto, il server ascolta le richieste da qualsiasi computer sulla rete. Se abiliti questa opzione, assicurati di utilizzare sempre il computer su una rete sicura protetta da un firewall.","By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option.":"Per impostazione predefinita, l'icona nella barra delle applicazioni aprirà l'interfaccia utente con un token che sblocca l'interfaccia utente. Ciò garantisce che sia possibile accedere all'interfaccia utente dall'icona nella barra delle applicazioni, mentre si richiede agli altri di inserire una password. Se si preferisce digitare la password, anche quando si accede all'interfaccia utente dall'icona nella barra delle applicazioni, abilitare questa opzione.","Cache Files":"File Cache","Canary":"Canary","Cancel":"Annulla","Cannot move to existing file":"Non puoi spostare in un file esistente","Changelog":"Changelog","Changelog for {{appname}} {{version}}":"Changelog di {{appname}} {{version}}","Check failed:":"Controllo fallito:","Check for updates now":"Controlla aggiornamenti ora","Checking ...":"Controllo...","Checking for updates …":"Verifica aggiornamenti …","Chose a storage type to get started":"Scegliere un tipo di archiviazione per iniziare","Click the AuthID link to create an AuthID":"Clicca sul link AuthID per creare un nuovo AuthID","Click to set throttle options":"Clicca per impostare le opzioni di limitazione","Client library to use":"Libreria client da utilizzare","Commandline …":"Riga di comando …","Compact Phase":"Fase Compattazione","Compact now":"Comprimi","Compacting remote data ...":"Comprimendo dati remoti...","Compacting remote data …":"Compattazione dei dati remoti ...","Complete log":"Registro completo","Completing backup …":"Completamento del backup ...","Completing previous backup …":"Completamento del backup precedente ...","Compression modules:":"Moduli di compressione:","Computer":"Computer","Configuration file:":"File di configurazione:","Configuration:":"Configurazione: ","Configure a new backup":"Configura un nuovo backup","Confirm delete":"Conferma cancellazione","Confirm encryption passphrase":"Conferma passphrase crittografia","Confirm passphrase":"Conferma passphrase","Confirm password":"Conferma password","Confirmation required":"Conferma richiesta","Connect":"Connetti","Connect now":"Connetti ora","Connecting to server …":"Connessione al server …","Connecting to task ....":"Connessione all'attività...","Connecting...":"Connessione...","Connection lost":"Connessione persa","Connection worked!":"Connessione funzionante!","Container name":"Nome contenitore","Container region":"Area contenitore","Continue":"Continua","Continue without encryption":"Continua senza crittografia","Copied!":"Copiato!","Copy":"Copia","Copy Destination URL to Clipboard":"Copia URL Destinazione negli Appunti","Copy failed. Please manually copy the URL":"Copia non riuscita. Per favore copia manualmente l'URL","Core options":"Opzioni base","Counting ({{files}} files found, {{size}})":"Conteggio ({{files}} file trovati, {{size}})","Crashes only":"Solo arresti anomali","Create bug report …":"Crea segnalazione bug ...","Create folder?":"Creare cartella?","Created new limited user":"Creato nuovo utente limitato","Creating bug report …":"Creazione segnalazione bug ...","Creating new user with limited access …":"Creazione di un nuovo utente con accesso limitato ...","Creating target folders …":"Creazione di cartelle di destinazione ...","Creating temporary backup …":"Creazione backup temporaneo ...","Creating user...":"Creazione utente...","Current action:":"Azione corrente:","Current file:":"File corrente:","Current version is {{versionname}} ({{versionnumber}})":"La versione attuale è {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"End point S3 personalizzato","Custom Satellite":"Satellite personalizzato","Custom Satellite ({{satellite}})":"Satellite personalizzato ({{satellite}})","Custom authentication url":"URL di autenticazione personalizzato","Custom backup retention":"Conservazione backup personalizzato","Custom location ({{server}})":"Posizione personalizzata ({{server}})","Custom region for creating buckets":"Area personalizzata per la creazione bucket","Custom region value ({{region}})":"Valore area personalizzata ({{region}})","Custom server url ({{server}})":"URL del server personalizzato ({{server}})","Custom storage class\n ({{class}})":"Classe di archiviazione personalizzata\n ({{class}})","Custom storage class ({{class}})":"Classe di archiviazione personalizzata ({{class}})","Database …":"Banca dati …","Days":"Giorni","Default":"Predefinito","Default ({{channelname}})":"Predefinito ({{channelname}})","Default excludes":"Esclusioni predefinite","Default options":"Opzioni predefinite","Delete":"Cancella","Delete Phase (Old Backup Versions)":"Fase Cancellazione (Vecchie versioni di backup)","Delete backup":"Cancella backup","Delete backups that are older than":"Elimina i backup più vecchi di","Delete local database":"Cancella database locale","Delete remote files":"Cancella file remoti","Delete the local database":"Cancella il database locale","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Cancella {{filecount}} file ({{filesize}}) dall'archivio remoto?","Delete …":"Elimina …","Deleted":"Cancellato","Deleted Versions":"Versioni Cancellate","Deleted files":"File cancellati","Deleting remote files …":"Eliminazione di file remoti ...","Deleting unwanted files …":"Eliminazione di file indesiderati ...","Description (optional)":"Descrizione (facoltativa)","Description:":"Descrizione:","Desktop":"Desktop","Destination":"Destinazione","Destination path":"Percorso destinazione","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Ti abbiamo aiutato a salvare i tuoi file? Se è così, per favore considera di supportare Duplicati con una donazione. Suggeriamo {{smallamount}} per uso privato e {{largeamount}} per uso commerciale.","Direct restore from backup files ...":"Ripristino diretto da file di backup...","Disabled":"Disattivato","Dismiss":"Annulla","Dismiss all":"Ignora tutto","Display and color theme":"Tema interfaccia","Do you really want to delete the backup: \"{{name}}\" ?":"Vuoi veramente cancellare il backup: \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Vuoi veramente cancellare il database locale per: {{name}} ?","Domain Name":"Nome Dominio","Donate":"Donazione","Donation messages":"Messaggi donazione","Donation messages are hidden, click to show":"I messaggi di donazione sono nascosti, clicca per mostrarli","Donation messages are visible, click to hide":"I messaggi di donazione sono visibili, clicca per nasconderli","Done":"Fatto","Download":"Scarica","Downloaded files":"File scaricati","Downloading files …":"Download di file ...","Downloading update…":"Download aggiornamento in corso ...","Downloading …":"Download in corso ...","Duplicate option {{opt}}":"Opzione duplicata {{opt}}","Duplicati Website":"Sito web di Duplicati","Duplicati forum":"Forum Duplicati","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"Duplicati sarà eseguito all'avvio, ma rimarrà in pausa per la durata. Duplicati occuperà risorse di sistema minime e non saranno eseguiti backup.","Duration":"Durata","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Ogni backup dispone di un database locale associato, che archivia le informazioni del backup remoto sul computer locale.\nQuando si cancella un backup, è anche possibile cancellare il database locale senza influire sulla possibilità di ripristinare i file remoti.\nSe si utilizza il database locale per i backup dalla riga di comando, è necessario mantenere il database.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Ogni backup dispone di un database locale associato, che archivia le informazioni del backup remoto sul computer locale.\nIn questo modo è più veloce eseguire molte operazioni e riduce la quantità di dati che devono essere scaricati per ogni operazione.","Edit as list":"Modifica come elenco","Edit as text":"Modifica come testo","Edit …":"Modifica …","Encrypt file":"Cripta file","Encryption":"Crittografia","Encryption changed":"Crittografia cambiata","Encryption modules:":"Moduli crittografia:","Encryption passphrase":"Passphrase di crittografia","End":"Fine","Enter URL":"Inserisci URL","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Inserisci una strategia di conservazione manualmente. I segnaposto sono D/W/Y per giorni/settimane/anni e U per illimitato. La sintassi è: 7D:1D,4W:1W,36M:1M. Questo esempio mantiene un backup per ciascuno dei prossimi 7 giorni, uno per ciascuna delle prossime 4 settimane e uno per ciascuno dei 36 mesi successivi. Questo può anche essere scritto come 1W:1D,1M:1W,3Y:1M.","Enter access key":"Inserisci chiave di accesso","Enter account name":"Inserisci nome account","Enter backup passphrase, if any":"Inserisci la passphrase del backup, se presente","Enter configuration details":"Inserisci dettagli configurazione","Enter container name":"Inserire nome contenitore","Enter encryption passphrase":"Inserisci passphrase crittografia","Enter expression here":"Inserisci qui espressione","Enter folder path name":"Inserire il nome del percorso della cartella","Enter one option per line in command-line format, eg. {0}":"Inserire un'opzione per riga in formato riga di comando, ad es. {0}","Enter the destination path":"Inserisci percorso destinazione","Enter the email address of the Office 365 group":"Inserisci l'indirizzo email del gruppo di Office 365","Enter the full destination path, including the server name, but without https":"Inserisci il percorso di destinazione completo, incluso il nome del server, ma senza https","Error":"Errore","Error!":"Errore!","Errors and crashes":"Errori e arresti anomali","Examined":"Esaminato","Exclude":"Escludi","Exclude directories whose names contain":"Escludi cartelle il cui nome contiene","Exclude expression":"Escludi espressione","Exclude file":"Escludi file","Exclude file extension":"Escludi estensione del file","Exclude files whose names contain":"Escludi file il cui nome contiene","Exclude filter group":"Escludi gruppo filtri","Exclude folder":"Escludi cartella","Exclude regular expression":"Escludi espressione regolare","Existing file found":"Trovato file esistente","Experimental":"Sperimentale","Export":"Esporta","Export backup configuration":"Esporta configurazione backup","Export configuration":"Esporta configurazione","Export passwords":"Esporta le password","Export …":"Esporta …","Exporting …":"Esportazione in corso ...","External link":"Link esterno","FTP (Alternative)":"FTP (Alternativo)","Failed to build temporary database: {{message}}":"Fallita creazione del database temporaneo: {{message}}","Failed to connect:":"Connessione fallita:","Failed to connect: {{message}}":"Connessione fallita: {{message}}","Failed to delete:":"Cancellazione fallita: ","Failed to fetch path information: {{message}}":"Recupero informazioni sul percorso fallito: {{message}}","Failed to find backup:":"Impossibile trovare il backup:","Failed to import:":"Importazione fallita:","Failed to read backup defaults:":"Lettura impostazioni predefinite backup fallita:","Failed to restore files: {{message}}":"Ripristino dei file fallito: {{message}}","Failed to save:":"Salvataggio fallito:","Fetching path information …":"Recupero delle informazioni sul percorso ...","File":"File","Files larger than:":"File più grandi di:","Filters":"Filtri","Finished!":"Finito!","First run setup":"Impostazione prima esecuzione","Folder":"Cartella","Folder path":"Percorso cartella","Fri":"Ven","GByte":"GByte","GByte/s":"GByte/s","GCS Project ID":"ID Progetto GCS","General":"Generale","General backup settings":"Impostazioni generali backup","General options":"Opzioni generali","Generate":"Genera","Generate IAM\n access policy":"Genera IAM\n criteri di accesso","Getting file versions …":"Ottenere versioni di file ...","Group email":"Email gruppo","Hidden files":"File nascosti","Hide":"Nascondi","Hide hidden folders":"Nascondi cartelle nascoste","Home":"Home","Hostnames":"Nomi host","Hours":"Ore","How do you want to handle existing files?":"Come vuoi gestire i file esistenti?","Hyper-V Machine":"Sitema Hyper-V","Hyper-V Machine:":"Sistema Hyper-V:","Hyper-V Machines":"Sistemi Hyper-V","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Se una pianificazione non è eseguita, il backup sarà effettuato il prima possibile.","If at least one newer backup is found, all backups older than this date are deleted.":"Se si trova almeno un backup più recente, tutti i backup precedenti a questa data sono eliminati.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Se il backup e l'archivio remoto non sono sincronizzati, Duplicati sarà necessario eseguire un'operazione di ripristino per sincronizzare il database.\nSe la riparazione non è riuscita, è possibile cancellare il database locale e rigenerarlo.","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Se il file di backup non è stato scaricato automaticamente, tasto destro e sciegli "a;Salva come …"a;","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Se il file di backup non è stato scaricato automaticamente, tasto destro e sciegli "a;Salva come …"a;","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Se non inserisci un percorso, tutti i file saranno salvati nella cartella di accesso.\nSei sicuro che questo è quello che vuoi?","If you do not enter an API Key, the tenant name is required":"Se non inserisci una Chiave API, è richiesto il nome dell'inquilino","If you want to use the backup later, you can export the configuration before deleting it":"Se desideri utilizzare il backup in un secondo momento, è possibile esportare la configurazione prima di cancellarla","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Se la tua macchina è in un ambiente multi-utente (cioè la macchina ha più di un account), è necessario impostare una password per impedire ad altri utenti di accedere ai dati del tuo account. \nVuoi impostare una password ora?","Import":"Importa","Import Destination URL":"Importa URL Destinazione","Import backup configuration":"Importa configurazione backup","Import completed, but no certificates were found after the import":"Importazione completata, ma non sono stati trovati certificati dopo l'importazione","Import failed":"Importazione fallita","Import from a file":"Importa da un file","Import metadata":"Importa metadati","Importing …":"Importazione ...","Include a file?":"Includi un file?","Include expression":"Includi espressione","Include regular expression":"Includi espressione regolare","Incorrect answer, try again":"Risposta errata, riprova","Individual builds for developers only. Not for use with important data.":"Build individuali per soli sviluppatori. Non utilizzare con dati importanti.","Information":"Informazioni","Install":"Installa","Install failed:":"Installazione fallita:","Invalid characters in path":"Caratteri non validi nel percorso","Invalid retention time":"Tempo ritenzione non valido","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"È possibile connettersi ad alcuni FTP senza una password.\nSei sicuro che il tuo server FTP supporta gli accessi senza password?","KByte":"KByte","KByte/s":"KByte/s","Keep a specific number of backups":"Mantieni un numero specifico di backup","Keep all backups":"Mantieni tutti i backup","Keystone API version":"Versione API Keystone","Language in user interface":"Lingua interfaccia utente","Last month":"Lo scorso mese","Last successful backup:":"Ultimo backup riuscito:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"Ultimo ripristino riuscito: {{time}} (took {{duration || '0 seconds'}})","Latest":"Più recente","Libraries":"Librerie","Listing backup dates …":"Elenco date di backup ...","Listing remote files for purge …":"Elenco dei file remoti per l'eliminazione ...","Listing remote files …":"Elenco dei file remoti ...","Live":"In tempo reale","Load a configuration from an exported job or a storage provider":"Carica una configurazione da un lavoro esportato o da un provider di archiviazione","Load destination from an exported job or a storage provider":"Carica una destinazione da un lavoro esportato o da un provider di archiviazione","Load older data":"Carica dati precedenti","Loading ...":"Caricamento...","Loading remote storage usage ...":"Caricamento dell'archivio remoto utilizzato ...","Loading …":"Caricamento in corso …","Local Repository":"Repository locale","Local database for":"Database locale per ","Local database path:":"Percorso database locale:","Local repository":"Repository locale","Local storage":"Archivio locale","Location":"Posizione","Location where buckets are created":"Posizione in cui sono creati i bucket","Log data for {{Backup.Backup.Name}}":"Dati di log per {{Backup.Backup.Name}}","Log data from the server":"Dati di log dal server","Log out":"Log out","MByte":"MByte","MByte/s":"MByte/s","Maintenance":"Manutenzione","Manually type path":"Digita manualmente il percorso","Max download speed":"Velocità massima per scaricare","Max upload speed":"Velocità massima per caricare","Menu":"Menu","Microsoft SQL Database:":"Microsoft SQL Database:","Microsoft SQL Databases":"Microsoft SQL Database","Minimum redundancy":"Ridondanza minima","Minimum redundancy is 1.0":"Ridondanza minima è 1.0","Minutes":"Minuti","Missing name":"Nome mancante","Missing passphrase":"Passphrase mancante","Missing sources":"Sorgente mancante","Modified":"Modificato","Mon":"Lun","Months":"Mesi","Move existing database":"Sposta database esistente","Move failed:":"Spostamento fallito:","My Documents":"Documenti","My Music":"Musica","My Photos":"Foto","My Pictures":"Immagini","Name":"Nome","Never":"Mai","New update found: {{message}}":"Nuovo aggiornamento trovato: {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"Il nuovo nome utente è {{user}}.\nCredenziali aggiornate per utilizzare il nuovo utente limitato","Next":"Avanti","Next scheduled run:":"Prossima esecuzione: ","Next scheduled task:":"Prossima attività pianificata:","Next task:":"Prossima attività:","Next time":"Prossima volta","No":"No","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"Nessun certificato è stato specificato in precedenza, per favore verifica con l'amministratore del server che la chiave è corretta: {{key}}\n\nVuoi approvare la chiave host riportata?","No editor found for the "{{backend}}" storage type":"Nessun editor trovato per il "{{backend}}" tipo archivio","No encryption":"Nessuna crittografia","No items selected":"Nessun elemento selezionato","No items to restore, please select one or more items":"Nessun elemento da ripristinare, seleziona uno o più elementi","No passphrase entered":"Nessuna passphrase inserita","No scheduled tasks":"Nessuna attività pianificata","No, my machine has only a single account":"No, la mia macchina ha solo un singolo account","Non-matching passphrase":"Passphrase non corrispondente","None / disabled":"Nessuno / disattivato","Not using encryption":"Non usare la crittografia","Nothing will be deleted. The backup size will grow with each change.":"Niente sarà eliminato. La dimensione del backup crescerà con ogni cambiamento.","OK":"OK","Once there are more backups than the specified number, the oldest backups are deleted.":"Una volta che ci sono più backup del numero specificato, i backup più vecchi sono cancellati.","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack Object Storage / Swift","Opened":"Aperto","Openstack API Key are not supported in v3 keystone API.":"La chiave API Openstack non è supportata nell'API keystone v3.","Operating System":"Sistema Operativo","Operation":"Operazione","Operation failed:":"Operazione fallita:","Operations:":"Operazioni:","Optional authentication password":"Password opzionale per l'autenticazione","Optional authentication username":"Nome utente opzionale per l'autenticazione","Options":"Opzioni","Options added here are applied to all backups, but can be overridden in each individual backup":"Le opzioni aggiunte qui sono applicate a tutti i backup, ma possono essere sovrascritte per ogni backup","Original location":"Percorso originale","Others":"Altri","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"Nel corso del tempo i backup saranno eliminati automaticamente. Rimarrà un backup per ciascuno degli ultimi 7 giorni, ognuna delle ultime 4 settimane, ciascuno degli ultimi 12 mesi. Ci sarà sempre almeno un backup rimanente.","Overwrite":"Sovrascrivi","Passphrase":"Passphrase","Passphrase (if encrypted)":"Passphrase (se criptato)","Passphrase changed":"Passphrase modificata","Passphrases are not matching":"Passphrase non corrispondenti","Passphrases do not match":"Le passphrase non corrispondono","Password":"Password","Patching files with local blocks …":"Patch di file con blocchi locali ...","Path":"Percorso","Path not found":"Percorso non trovato","Path on server":"Percorso sul server","Path or subfolder in the bucket":"Percorso o sottocartella bucket","Pause":"Pausa","Pause after startup or hibernation":"Pausa dopo avvio o ibernazione","Pause options":"Opzioni pausa","Permissions":"Autorizzazioni","Pick location":"Scegli posizione","Point to your backup files and restore from there":"Puntare ai file di backup e ripristinare da lì","Port":"Porta","Prevent tray icon automatic log-in":"Previeni il log-in automatico dell'icona nella barra delle applicazioni","Previous":"Precedente","Progress:":"Avanzamento:","ProjectID is optional if the bucket exist":"ID Progetto è opzionale se esiste un bucket","Proprietary":"Proprietario","Purge Phase":"Fase eliminazione","Purging files complete!":"Eliminazione dei file completata!","Purging files …":"Eliminazione dei file ...","Rebuilding local database …":"Ricostruzione del database locale ...","Recreate (delete and repair)":"Ricrea (cancella e ripara)","Recreate Database Phase":"Fase ricreazione database","Recreating database …":"Ricreazione del database ...","Registering temporary backup …":"Registrazione backup temporaneo ...","Relative paths not allowed":"Percorsi relativi non consentiti","Reload":"Ricarica","Remote":"Remoto","Remote Path":"Percorso remoto","Remote Repository":"Repository remoto","Remote path":"Percorso remoto","Remote repository":"Repository remoto","Remote volume size":"Dimensione volume remoto","Remove":"Rimuovi","Remove option":"Rimuovi opzione","Removed files":"File rimossi","Repair":"Ripara","Repair Phase":"Fase riparazione","Repairing database …":"Ripristino del database ...","Repeat Passphrase":"Ripeti Passphrase","Reporting:":"Segnalazione:","Reset":"Reset","Restore":"Ripristina","Restore complete!":"Ripristino completato!","Restore files":"Ripristina file","Restore files from {{backupname}}":"Ripristina file da {{backupname}}","Restore files …":"Ripristina file ...","Restore from":"Ripristina da","Restore from backup configuration":"Ripristino dalla configurazione backup","Restore from configuration ...":"Ripristino da file di configurazione...","Restore options":"Opzioni ripristino","Restore read/write permissions":"Ripristina autorizzazioni lettura/scrittura","Restored Files":"File ripristinati","Restored Folders":"Cartelle ripristinate","Restored Symlinks":"Symlink ripristinati","Restoring files …":"Ripristino di file ...","Resume":"Riprendi","Rewritten File Lists":"Elenchi file riscritti","Run again every":"Esegui ogni","Run now":"Esegui ora","Running ....":"Esecuzione...","Running commandline entry":"Riga di comando in esecuzione","Running task:":"Attività in esecuzione:","Running …":"In esecuzione …","S3 Compatible":"Compatibile S3","Same as the base install version: {{channelname}}":"Come la versione di base installata: {{channelname}}","Sat":"Sab","Satellite":"Satellitare","Save":"Salva","Save and repair":"Salva e ripara","Save different versions with timestamp in file name":"Salva versioni diverse con timestamp nel nome del file","Save immediately":"Salva immediatamente","Scanning existing files …":"Scansione di file esistenti ...","Scanning for local blocks …":"Scansione per blocchi locali ...","Schedule":"Pianificazione","Search":"Cerca","Search for files":"Cerca per file","Seconds":"Secondi","Select a log level and see messages as they happen:":"Selezionare un livello di log e visiona i messaggi che avvengono:","Select files":"Seleziona file","Server":"Server","Server and port":"Server e porta","Server hostname or IP":"Nome host o IP del server","Server is currently paused,":"Server è attualmente in pausa,","Server is currently paused, do you want to resume now?":"Server attualmente in pausa, vuoi riprendere ora?","Server password":"Password del server","Server paused":"Server in pausa","Server state properties":"Proprietà stato del server","Settings":"Impostazioni","Show":"Mostra","Show advanced editor":"Mostra editor avanzato","Show hidden folders":"Mostra cartelle nascoste","Show log":"Mostra log","Show log …":"Mostra registro …","Show treeview":"Visualizza ad albero","Sia server password":"Password del server Sia","Smart backup retention":"Conservazione intelligente backup","Some OpenStack providers allow an API key instead of a password and tenant name":"Alcuni provider OpenStack consentono una chiave API anziché una password e un nome inquilino","Some S3 providers might only be compatible with a certain client library":"Alcuni provider S3 potrebbero essere compatibili solo con una determinata libreria client","Source Data":"Dati Sorgente","Source Files":"Sorgente File","Source data":"Dati sorgente","Source folders":"Cartella sorgente","Source:":"Dimensione sorgente:","Specific builds for developers only. Not for use with important data.":"Build specifiche per soli sviluppatori. Non utilizzare con dati importanti.","Standard protocols":"Protocolli standard","Start":"Avvio","Starting backup …":"Avvio backup ...","Starting restore …":"Avvio ripristino ...","Starting the restore process …":"Avvio del processo di ripristino ...","Stop after current file":"Stop dopo il file corrente","Stop after the current file":"Ferma dopo il file corrente","Stop now":"Ferma adesso","Stop running backup":"Ferma esecuzione backup","Stop running task":"Ferma esecuzione attività","Stopping after the current file:":"Arresto dopo il file corrente:","Stopping task:":"Ferma attività:","Storage Type":"Tipo archivio","Storage class":"Classe archivio","Storage class for creating a bucket":"Classe di archiviazione per la creazione di un bucket","Stored":"Archiviati","Strong":"Forte","Success":"Successo","Sun":"Dom","Symbolic link":"Link simbolico","System Files":"File di Sistema","System default ({{levelname}})":"Sistema predefinito ({{levelname}})","System files":"File di sistema","System info":"Informazioni di sistema","System properties":"Proprietà di sistema","TByte":"TByte","TByte/s":"TByte/s","Target path, ie /backup":"Percorso di destinazione, cioè /backup","Task is running":"Attività in esecuzione","Temporary Files":"File Temporanei","Temporary files":"File temporanei","Tenant Name":"Nome Inquilino","Test Phase":"Fase test","Test connection":"Prova connessione","Testing ...":"Test in corso...","Testing connection ...":"Prova connessione...","Testing permissions …":"Test delle autorizzazioni ...","Testing permissions...":"Prova autorizzazioni...","Testing …":"Test in corso...","The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})":"Il campo '{{fieldname}}' contiene un carattere non valido: {{character}} (value: {{value}}, index: {{pos}})","The API key":"La chiave API","The backup is missing, has it been deleted?":"Il backup è mancante, è stato cancellato?","The backup was temporary and does not exist anymore, so the log data is lost":"Il backup era temporaneo e non esiste più, quindi i dati del registro sono persi","The bucket name should be all lower-case, convert automatically?":"Il nome del bucket dovrebbe essere tutto minuscolo, convertirlo automaticamente?","The bucket name should start with your username, prepend automatically?":"Il nome del bucket dovrebbe iniziare con il tuo nome utente, anteporlo automaticamente?","The configuration should be kept safe. Are you sure you want to save an unencrypted file containing your passwords?":"La configurazione dovrebbe essere mantenuta al sicuro. Sei sicuro di voler salvare un file non criptato contenente le tue password?","The connection to the server is lost, attempting again in {{time}} ...":"Connessione al server persa, nuovo tentativo tra {{time}}...","The dark theme (by Michal)":"Tema scuro (da Michal)","The default blue on white theme (by Alex)":"Predefinito - Tema blu su bianco (da Alex)","The encryption passphrase":"La passphrase di crittografia","The folder {{folder}} does not exist.\nCreate it now?":"La cartella {{folder}} non esiste. \nCreala adesso?","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"La chiave host è cambiata, per favore consulta l'amministratore del server se questa è corretta, altrimenti potresti essere la vittima di un attacco UOMO-NEL-MEZZO.\n\nVuoi SOSTITUIRE la chiave host CORRENTE \"{{prev}}\" con la chiave host SEGNALATA: {{key}}?","The passwords do not match":"Le password non corrispondono","The path does not appear to exist, do you want to add it anyway?":"Il percorso sembra non esistere, vuoi aggiungerlo comunque?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"Il percorso non termina con un carattere '{{dirsep}}', il che significa che si include un file, non una cartella.\n\nVuoi includere il file specificato?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"Il percorso deve essere un percorso assoluto, cioè deve iniziare con una barra '/'","The region parameter is only applied when creating a new bucket":"Il parametro area è applicato solo quando si crea un nuovo bucket","The region parameter is only used when creating a bucket":"Il parametro area è utilizzato solo quando si crea un bucket","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Il certificato del server non può essere convalidato.\n\nVuoi approvare il certificato SSL con l'hash: {{hash}}?","The storage class affects the availability and price for a stored file":"La classe di archiviazione influisce sulla disponibilità e sul prezzo per un file archiviato","The target folder contains encrypted files, please supply the passphrase":"La cartella di destinazione contiene file criptati, per favore fornisci la passphrase","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"L'utente dispone di troppe autorizzazioni. Vuoi creare un nuovo utente limitato, con solo autorizzazioni per il percorso selezionato?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"Questo backup è stato creato su un altro sistema operativo. Il ripristino dei file senza specificare una cartella di destinazione può causare il ripristino di file in luoghi imprevisti. Sei sicuro di voler continuare senza scegliere una cartella di destinazione?","This month":"Questo mese","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"Questa opzione non è riferita al numero massimo dei tuoi backup o alle dimensioni del file, né influisce sulla valutazione della deduplicazione. Guarda questa pagina prima di modificare le dimensioni del volume remoto.","This week":"Questa settimana","Throttle settings":"Impostazioni limitazione","Thu":"Mar","Time":"Tempo","To File":"Al File","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Per confermare che vuoi cancellare tutti i file remoti che contengono \"{{name}}\", digita la parla che vedi di seguito","To export without a passphrase, uncheck the \"Encrypt file\" box":"Per esportare senza una passphrase, deselezionare la casella \"Cripta file\"","To prevent various DNS based attacks, Duplicati limits the allowed hostnames to the ones listed here. Direct IP access and localhost is always allowed. Multiple hostnames can be supplied with a semicolon separator. If any of the allowed hostnames is an asterisk (*), all hostnames are allowed and this feature is disabled. If the field is empty, only IP address and localhost access is allowed.":"Per prevenire vari attacchi basati su DNS, Duplicati limita gli hostname consentiti a quelli qui elencati. L'accesso IP e localhost diretti sono sempre consentiti. Più nomi host possono essere forniti con un separatore di punto e virgola. Se uno qualsiasi dei nomi host consentiti è un asterisco (*), tutti i nomi host sono consentiti e questa funzione è disabilitata. Se il campo è vuoto, sono consentiti solo gli accessi dall'indirizzo IP e localhost.","Today":"Oggi","Trust host certificate?":"Certificato host affidabile?","Trust server certificate?":"Certificato server affidabile?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"Prova le nuove funzionalità su cui stiamo lavorando. Attualmente la versione più stabile disponibile. Prova il Ripristino dati prima di utilizzarla negli ambienti di produzione.","Tue":"Gio","Type passphrase here.":"Scrivi la passphrase qui.","Type to highlight files":"Digitare per evidenziare i file","Unknown backup size and versions":"Dimensione e versione backup sconosciute","Until resumed":"Finché non riprende","Update channel":"Canale di aggiornamento","Update failed:":"Aggiornamento fallito:","Updating with existing database":"Aggiornamento con database esistente","Uploaded files":"File caricati","Uploading verification file …":"Caricamento file di verifica ...","Usage reports help us improve the user experience and evaluate impact of new features. We use them to generate {{'public usage statistics' | translate}}":"I report sull'utilizzo ci aiutano a migliorare l'esperienza dell'utente e a valutare l'impatto delle nuove funzionalità. Li usiamo per generare {{\"statistiche sull'uso pubblico\" | tradurre}}","Usage statistics":"Statistiche di utilizzo","Usage statistics, warnings, errors, and crashes":"Statistiche di utilizzo, avvisi, errori e arresti anomali","Use SSL":"Usa SSL","Use existing database?":"Usare database esistente?","Use weak passphrase":"Usa passphrase debole","Useless":"Inutile","User data":"Dati utente","User domain name":"Nome dominio utente","User has too many permissions":"L'utente ha troppe autorizzazioni","User interface settings":"Impostazioni interfaccia utente","Username":"Nome utente","Vacuuming database …":"Prelevamento database ...","Validating …":"Convalida in corso ...","Verifications":"Verifiche","Verify files":"Verifica file","Verifying ...":"Verifica...","Verifying answer":"Verifica risposta","Verifying backend data …":"Verifica dei dati di backend ...","Verifying files …":"Verifica dei file ...","Verifying remote data …":"Verifica dei dati remoti ...","Verifying restored files …":"Verifica dei file ripristinati ...","Verifying …":"Verifica in corso ...","Version ID":"Versione ID","Very strong":"Molto forte","Very weak":"Molto debole","Visit us on":"Seguici su","WARNING: The remote database is found to be in use by the commandline library":"ATTENZIONE: Il database remoto si trova in uso dalla libreria riga di comando","WARNING: This will prevent you from restoring the data in the future.":"ATTENZIONE: Questo ti impedirà di ripristinare i dati in futuro.","Waiting for task to begin":"In attesa dell'attività per iniziare","Waiting for task to start ....":"In attesa dell'attività per iniziare...","Waiting for upload to finish …":"In attesa del completamento del caricamento ...","Warnings, errors and crashes":"Avvisi, errori e arresti anomali","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"Accettiamo donazioni tramite diversi servizi, come OpenCollective, PayPal, BountySource e varie criptovalute.","We recommend that you encrypt all backups stored outside your system":"Ti consigliamo di criptare tutti i backup archiviati al di fuori del tuo sistema","Weak":"Debole","Weak passphrase":"Passphrase debole","Wed":"Mer","Weeks":"Settimane","Where do you want to restore from?":"Da dove vuoi ripristinare?","Where do you want to restore the files to?":"Dove vuoi ripristinare i files?","Years":"Anni","Yes":"Si","Yes, I have stored the passphrase safely":"Si, ho archiviato la passphrase in modo sicuro","Yes, I understand the risk":"Sì, capisco il rischio","Yes, I'm brave!":"Sì, sono coraggioso!","Yes, please break my backup!":"Sì, per favore rompi il mio backup!","Yesterday":"Ieri","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"Sembra che tu sia in esecuzione Mono senza certificati SSL caricati.\nVuoi importare l'elenco dei certificati attendibili da Mozilla?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"Stai cambiando il percorso di un database esistente.\nSei sicuro che questo è ciò che vuoi?","You are currently running {{appname}} {{version}}":"Attualmente stai eseguendo {{appname}} {{version}}","You can stop the backup after any file uploads currently in progress have finished.":"È possibile interrompere il backup al termine di eventuali caricamenti di file attualmente in corso.","You can stop the task immediately, or allow the process to continue its current file and then stop.":"È possibile interrompere l'operazione immediatamente, o consentire il processo di continuare il suo file corrente e poi fermarsi.","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"Hai modificato l'algoritmo di crittografia. Questa azione potrebbe corrompere i dati. Ti consigliamo di creare un nuovo backup.","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"Hai modificato la passphrase ma questo non è supportato. Ti consigliamo di creare un nuovo backup.","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"Hai scelto di non criptare il backup. È consigliabile criptare tutti i dati custoditi su server remoti.","You have chosen to restore to a new location, but not entered one":"Si è scelto di ripristinare in una nuova posizione, ma non ne è stata inserita una","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"Hai generato una passphrase forte. Assicurati di aver fatto una copia sicura della passphrase, poiché i dati non possono essere recuperati se perdi la passphrase.","You must choose at least one source folder":"Devi scegliere almeno una cartella sorgente","You must enter a domain name to use v3 API":"Devi inserire un nome di dominio per utilizzare l'API v3","You must enter a name for the backup":"Devi inserire un nome un nome per il backup","You must enter a passphrase or disable encryption":"Devi inserire una passphrase o disattivare la crittografia","You must enter a password to use v3 API":"Devi inserire una password per utilizzare l'API v3","You must enter a positive number of backups to keep":"Devi inserire un numero positivo di backup da mantenere","You must enter a tenant (aka project) name to use v3 API":"Devi inserire un nome tenant (aka progetto) per utilizzare l'API v3","You must enter a tenant name if you do not provide an API Key":"Devi inserire il nome di un inquilino se non fornisci una Chiave API","You must enter a valid duration for the time to keep backups":"Devi inserire un periodo di tempo valido in cui mantenere i backup","You must enter a valid retention policy string":"Devi inserire una stringa di criteri di conservazione valida","You must enter either a password or an API Key":"Devi inserire una password o una Chiave API","You must enter either a password or an API Key, not both":"Devi inserire una password o una Chiave API, non entrambe","You must fill in the password":"Devi compilare in password","You must fill in the server name or address":"Devi compilare in nome del server o indirizzo","You must fill in the username":"Devi compilare in nome utente","You must fill in {{field}}":"Devi compilare in {{field}}","You must select or fill in the AuthURI":"Devi selezionare o compilare in AuthURI","You must select or fill in the server":"Devi selezionare o compilare in server","You must specify a path":"Devi specificare un percorso","You should fill in {{field}}{{reason}}":"Devi compilare {{field}}{{reason}}","Your files and folders have been restored successfully.":"I tuoi file e cartelle sono stati ripristinati correttamente.","Your passphrase is easy to guess. Consider changing passphrase.":"La tua passphrase è facile da indovinare. Considera l'idea di cambiarla.","bucket/folder/subfolder":"bucket/cartella/sottocartella","byte":"byte","byte/s":"byte/s","custom":"Personalizzato","public usage statistics":"statistiche sull'uso pubblico","resume now":"riprendi ora","unless you are explicitly specifying --group-id":"a meno che tu non stia specificando esplicitamente --group-id","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"{{appname}} è stato sviluppato principalmente da {{dev1}} e {{dev2}}. {{appname}} può essere scaricato da {{websitename}}. {{appname}} è sotto la licenza {{licensename}}.","{{files}} files ({{size}}) to go {{speed_txt}}":"Caricamento di {{files}} file ({{size}}) {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versione","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versioni"],"{{number}} Hour":"{{number}} Ore","{{number}} Hours":"{{number}} Ore","{{number}} Minutes":"{{number}} Minuti","{{time}} (took {{duration}})":"{{time}} (durata {{duration}})","…loading…":"…Caricamento in corso…"}); - gettextCatalog.setStrings('ja_JP', {"- pick an option -":"- オプションを選んでください -","...loading...":"...読み込み中...","API Key":"API Key","AWS Access ID":"AWS Access ID","AWS Access Key":"AWS Access Key","AWS IAM Policy":"AWS IAM Policy","About":"概要","About {{appname}}":"{{appname}} について","Access Key":"Access Key","Account name":"アカウント名","Activate":"有効化する","Activate failed:":"有効化に失敗しました:","Add a new backup":"新しいバックアップを作成","Add backup":"バックアップを追加する","Add filter":"フィルターを追加する","Add path":"パスを追加する","Advanced Options":"拡張設定","Advanced options":"拡張設定","Allow remote access (requires restart)":"リモートアクセスを許可 (要再起動)","Automatically run backups.":"バックアップを自動化する","B2 Application Key":"B2 Application Key","B2 Cloud Storage Account ID":"B2 Cloud Storage Account ID","B2 Cloud Storage Application Key":"B2 Cloud Storage Application Key","Back":"戻る","Backup complete!":"バックアップ完了!","Backup destination":"バックアップ先","Backup:":"バックアップ:","Beta":"Beta","Browse":"参照","Browser default":"ブラウザ設定","Bucket Name":"バケット名","Bucket create location":"バケット作成場所","Bucket create region":"バケット作成リージョン","Bucket name":"バケット名","Bucket storage class":"バケットストレージクラス","Cache Files":"キャッシュファイル","Canary":"実験的","Cancel":"キャンセル","Cannot move to existing file":"既にファイルがあるため移動できません","Changelog":"更新履歴","Changelog for {{appname}} {{version}}":"更新履歴 {{appname}} {{version}}","Check failed:":"確認失敗:","Check for updates now":"今すぐアップデートを確認する","Checking ...":"確認しています ...","Compression modules:":"圧縮モジュール","Computer":"コンピュータ","Configuration file:":"設定ファイル:","Configuration:":"設定:","Configure a new backup":"新しいバックアップ設定","Confirm password":"パスワード確認","Confirmation required":"確認が必要","Connect":"接続","Connect now":"今すぐ接続","Connecting...":"接続中 ...","Connection lost":"切断しました","Connection worked!":"接続完了!","Container name":"コンテナ名","Container region":"コンテナリージョン","Continue":"続ける","Continue without encryption":"暗号化なしで続ける","Copied!":"コピーしました!","Copy":"コピー","Copy Destination URL to Clipboard":"コピー先URLをクリップボードにコピーする","Copy failed. Please manually copy the URL":"コピー失敗。URLを手動でコピーしてください","Create folder?":"フォルダを作成しますか?","Creating user...":"ユーザーを作成中 ...","Current file:":"現在のファイル:","Current version is {{versionname}} ({{versionnumber}})":"現在のバージョンは {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"カスタム S3 エンドポイント","Custom authentication url":"カスタム認証URL","Days":"日","Default":"初期設定","Delete":"削除","Delete backup":"バックアップを削除","Delete backups that are older than":"古いものからバックアップを削除","Delete local database":"ローカルデータベースを削除","Delete remote files":"リモートファイルを削除","Delete the local database":"ローカルデータベースを削除","Deleted":"削除しました","Deleted Versions":"削除されたバージョン","Deleted files":"削除されたファイル","Description (optional)":"概要 (任意)","Description:":"概要:","Desktop":"デスクトップ","Destination":"バックアップ先","Disabled":"無効","Dismiss":"非表示","Dismiss all":"すべて非表示","Display and color theme":"テーマカラー","Domain Name":"ドメイン名","Donate":"寄付","Donation messages":"寄付メッセージ","Donation messages are hidden, click to show":"寄付メッセージが非表示です。クリックで表示","Donation messages are visible, click to hide":"寄付メッセージが表示されています。クリックで非表示","Done":"完了","Download":"ダウンロード","Downloaded files":"ダウンロード済みファイル","Duplicati Website":"Duplicati ウェブサイト","Duplicati forum":"Duplicati フォーラム","Edit as text":"テキストで編集","Encrypt file":"暗号化ファイル","Encryption":"暗号化方式","Encryption changed":"暗号化方式が変更されました","Encryption modules:":"暗号化モジュール","End":"終了","Enter URL":"URLを入力","Enter access key":"アクセスキーを入力","Enter account name":"アカウント名を入力","Enter backup passphrase, if any":"パスフレーズがある場合は入力してください","Enter container name":"コンテナ名を入力","Enter encryption passphrase":"パスフレーズを入力","Enter expression here":"ここに式を入力してください","Enter folder path name":"フォルダパスを入力","Error":"エラー","Error!":"エラー!","Errors and crashes":"エラーとクラッシュ","Exclude":"除外","Exclude directories whose names contain":"次の文字を含むディレクトリを除外","Exclude expression":"次の文字を含むファイル・ディレクトリを除外","Exclude file":"除外するファイル名","Exclude file extension":"除外する拡張子","Exclude files whose names contain":"次の文字を含むファイルを除外","Exclude filter group":"グループで除外する","Exclude folder":"除外するディレクトリ名","Exclude regular expression":"正規表現で除外する","Existing file found":"既存のファイルが見つかりました","Experimental":"実験的","Export":"エクスポート","Export backup configuration":"バックアップ設定をエクスポート","Export configuration":"設定をエクスポート","Export passwords":"パスワードをエクスポート","External link":"外部リンク","FTP (Alternative)":"FTP (代替)","Failed to connect:":"接続に失敗:","Failed to connect: {{message}}":"接続に失敗: {{message}}","Failed to delete:":"削除に失敗:","Failed to import:":"インポートに失敗:","Failed to save:":"保存に失敗しました:","File":"ファイル","Files larger than:":"閾値より大きなファイル:","Filters":"フィルター","Finished!":"完了!","First run setup":"初回実行セットアップ","Folder":"フォルダ","Folder path":"フォルダパス","Fri":"金曜日","GByte":"GByte","GByte/s":"GByte/s","GCS Project ID":"GCS プロジェクト ID","General":"一般","General backup settings":"バックアップ設定","General options":"設定","Generate":"生成","Hidden files":"隠しファイル","Hide":"隠す","Hide hidden folders":"隠しフォルダ","Home":"Home","Hostnames":"ホスト名","Hours":"時間","Hyper-V Machine":"Hyper-V マシン","Hyper-V Machine:":"Hyper-V マシン:","Hyper-V Machines":"Hyper-V マシン","ID:":"ID:","Import":"インポート","Import Destination URL":"コピー先URLをインポート","Import backup configuration":"バックアップ設定をインポート","Import failed":"インポート失敗","Import from a file":"ファイルからインポート","Import metadata":"メタデータをインポート","Include a file?":"含むファイル","Include expression":"次の文字列を含む","Include regular expression":"次の正規表現を含む","Information":"情報","Install":"インストール","Install failed:":"インストール失敗:","Invalid characters in path":"無効な文字がパスに含まれています","Invalid retention time":"無効な保持期間","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"パスワードなしで FTP 接続できる必要があります。\nこの FTP サーバーはパスワード無しのログインをサポートしていますか?","KByte":"KByte","KByte/s":"KByte/s","Keep a specific number of backups":"指定した数のバックアップを残す","Keep all backups":"全てのバックアップを残す","Keystone API version":"Keystone API version","Language in user interface":"言語設定","Last month":"先月","Last successful backup:":"最後に成功したバックアップ:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"最後に成功した復元:{{time}}({{duration || '0秒'}} 間)","Latest":"最新","Libraries":"ライブラリ","Loading ...":"読み込み中 ...","Loading remote storage usage ...":"リモートストレージの使用量を読み込み中 ...","Local storage":"ローカルストレージ","Location":"場所","Log out":"ログアウト","MByte":"MByte","MByte/s":"MByte/s","Maintenance":"メンテナンス","Max download speed":"最大ダウンロード速度","Max upload speed":"最大アップロード速度","Menu":"メニュー","Minutes":"分","Missing name":"名前がありません","Missing passphrase":"パスフレーズがありません","Modified":"更新","Mon":"月曜日","My Documents":"マイドキュメント","My Music":"マイミュージック","My Photos":"マイピフォト","My Pictures":"マイピクチャ","Name":"名前","Next":"次へ","Next scheduled run:":"次の実行予定","No encryption":"暗号化なし","No items selected":"アイテムが選択されていません","No passphrase entered":"パスフレーズが入力されていません","Not using encryption":"暗号化していません","Passphrase":"パスフレーズ","Password":"パスワード","Path":"パス","Path not found":"パスが見つかりません","Path on server":"サーバー上のパス","Pause":"一時停止","Pause options":"一時停止設定","Port":"ポート","Progress:":"進行度:","Reload":"更新","Remote":"リモート","Remote Path":"リモートパス","Remote Repository":"リモートリポジトリ","Remote path":"リモートパス","Remote repository":"リモートリポジトリ","Remove":"削除","Remove option":"削除設定","Removed files":"削除されたファイル","Sat":"土曜日","Sun":"日曜日","Thu":"木曜日","Today":"今日","Tue":"火曜日","Wed":"水曜日","Yesterday":"昨日"}); + gettextCatalog.setStrings('it', {"- pick an option -":"- seleziona un'opzione -","...loading...":"... caricamento in corso ...","API Key":"Chiave API","API key":"Chiave API","AWS Access ID":"ID di accesso AWS","AWS Access Key":"Chiave di accesso AWS","AWS IAM Policy":"Norme AWS IAM","About":"Informazioni","About {{appname}}":"Informazioni {{appname}}","Access Key":"Chiave di accesso","Access denied":"Accesso negato","Access grant":"Concessione accesso","Access to user interface":"Accesso all'interfaccia utente","Account name":"Nome account","Activate":"Attiva","Activate failed:":"Attivazione fallita:","Add a new backup":"Aggiungi un nuovo backup","Add a path directly":"Aggiungi direttamente un percorso","Add advanced option":"Aggiungi opzione","Add backup":"Aggiungi backup","Add filter":"Aggiungi filtro","Add path":"Aggiungi percorso","Added":"Aggiunto","Adjust bucket name?":"Sistemare il nome bucket?","Adjust path name?":"Sistemare il nome del percorso?","Advanced Options":"Opzioni Avanzate","Advanced options":"Opzioni avanzate","Advanced:":"Avanzate:","All Hyper-V Machines":"Tutte le Macchine Hyper-V","All Microsoft SQL Databases":"Tutti i database Microsoft SQL","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Tutti i rapporti sono inviati in modo anonimo e non contengono informazioni personali. Contengono informazioni sull'hardware, sul sistema operativo, il tipo di backend, la durata del backup, la dimensione complessiva dei dati sorgente ed dati simili. Non contengono i percorsi, nomi dei file, nomi utente, password o altre informazioni sensibili.","Allow remote access (requires restart)":"Consenti accesso remoto (richiede il riavvio)","Allowed days":"Giorni consentiti","An existing file was found at the new location":"Un file esistente è stato trovato nella nuova posizione","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Un file esistente è stato trovato nella nuova posizione.\nSei sicuro di volere che il database punti ad un file esistente?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"Un database locale esistente per l'archiviazione è stato trovato.\nIl riutilizzo del database consentirà alle istanze da riga di comando e dal server di lavorare sullo stesso archivio remoto.\n\nVuoi usare il database esistente?","Anonymous usage reports":"Rapporti d'uso anonimi","Applications":"Applicazioni","As Command-line":"Come riga di comando","AuthID":"AuthID","Authentication method":"Metodo di autenticazione","Authentication method ({{auth_method}})":"Metodo di autenticazione ({{auth_method}})","Authentication password":"Password di autenticazione","Authentication username":"Nome utente di autenticazione","Autogenerated passphrase":"Genera automaticamente passphrase","Automatically run backups.":"Esegui automaticamente i backup.","B2 Application ID":"ID applicazione B2","B2 Application Key":"Chiave Applicazione B2","B2 Cloud Storage Account ID":"ID Account Cloud B2 Storage","B2 Cloud Storage Application ID":"ID applicazione di archiviazione cloud B2","B2 Cloud Storage Application Key":"Chiave applicazione Archiviazione Cloud B2","Back":"Indietro","Backend modules:":"Moduli backend:","Backup complete!":"Backup completo!","Backup destination":"Destinazione backup","Backup is encrypted but no passphrase is available.\n Type a passphrase below to use for restoring your files,\n or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n invoking your system's keychain.":"Il backup è crittografato ma non è disponibile la passphrase.\n Digita una passphrase qui sotto da utilizzare per ripristinare i tuoi file,\n o, in caso di crittografia GPG, lascia vuoto per consentire a gpg di recuperare la passphrase\n richiamando il portachiavi del sistema.","Backup location":"Posizione Backup","Backup retention":"Conservazione backup","Backup:":"Dimensione backup:","Beta":"Beta","Broken access":"Accesso non riuscito","Browse":"Browse","Browser default":"Browser predefinito","Bucket":"Bucket","Bucket Name":"Nome Bucket","Bucket create location":"Crea posizione bucket","Bucket create region":"Crea area bucket","Bucket name":"Nome bucket","Bucket storage class":"Classe bucket","Building list of files to restore …":"Creazione di un elenco di file da ripristinare ...","Building partial temporary database …":"Creazione di un database temporaneo parziale ...","Busy ...":"Occupato...","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"Consentendo l'accesso remoto, il server ascolta le richieste da qualsiasi computer sulla rete. Se abiliti questa opzione, assicurati di utilizzare sempre il computer su una rete sicura protetta da un firewall.","By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option.":"Per impostazione predefinita, l'icona nella barra delle applicazioni aprirà l'interfaccia utente con un token che sblocca l'interfaccia utente. Ciò garantisce che sia possibile accedere all'interfaccia utente dall'icona nella barra delle applicazioni, mentre si richiede agli altri di inserire una password. Se si preferisce digitare la password, anche quando si accede all'interfaccia utente dall'icona nella barra delle applicazioni, abilitare questa opzione.","Cache Files":"File Cache","Canary":"Canary","Cancel":"Annulla","Cannot move to existing file":"Non puoi spostare in un file esistente","Changelog":"Changelog","Changelog for {{appname}} {{version}}":"Changelog di {{appname}} {{version}}","Check failed:":"Controllo fallito:","Check for updates now":"Controlla aggiornamenti ora","Checking ...":"Controllo...","Checking for updates …":"Verifica aggiornamenti …","Chose a storage type to get started":"Scegliere un tipo di archiviazione per iniziare","Click the AuthID link to create an AuthID":"Clicca sul link AuthID per creare un nuovo AuthID","Click to set throttle options":"Clicca per impostare le opzioni di limitazione","Client library to use":"Libreria client da utilizzare","Commandline …":"Riga di comando …","Compact Phase":"Fase Compattazione","Compact now":"Comprimi","Compacting remote data ...":"Comprimendo dati remoti...","Compacting remote data …":"Compattazione dei dati remoti ...","Complete log":"Registro completo","Completing backup …":"Completamento del backup ...","Completing previous backup …":"Completamento del backup precedente ...","Compression modules:":"Moduli di compressione:","Computer":"Computer","Configuration file:":"File di configurazione:","Configuration:":"Configurazione: ","Configure a new backup":"Configura un nuovo backup","Confirm delete":"Conferma cancellazione","Confirm encryption passphrase":"Conferma passphrase crittografia","Confirm passphrase":"Conferma passphrase","Confirm password":"Conferma password","Confirmation required":"Conferma richiesta","Connect":"Connetti","Connect now":"Connetti ora","Connecting to server …":"Connessione al server …","Connecting to task ....":"Connessione all'attività...","Connecting...":"Connessione...","Connection lost":"Connessione persa","Connection worked!":"Connessione funzionante!","Container name":"Nome contenitore","Container region":"Area contenitore","Continue":"Continua","Continue without encryption":"Continua senza crittografia","Copied!":"Copiato!","Copy":"Copia","Copy Destination URL to Clipboard":"Copia URL Destinazione negli Appunti","Copy failed. Please manually copy the URL":"Copia non riuscita. Per favore copia manualmente l'URL","Core options":"Opzioni base","Counting ({{files}} files found, {{size}})":"Conteggio ({{files}} file trovati, {{size}})","Crashes only":"Solo arresti anomali","Create bug report …":"Crea segnalazione bug ...","Create folder?":"Creare cartella?","Created new limited user":"Creato nuovo utente limitato","Creating bug report …":"Creazione segnalazione bug ...","Creating new user with limited access …":"Creazione di un nuovo utente con accesso limitato ...","Creating target folders …":"Creazione di cartelle di destinazione ...","Creating temporary backup …":"Creazione backup temporaneo ...","Creating user...":"Creazione utente...","Current action:":"Azione corrente:","Current file:":"File corrente:","Current version is {{versionname}} ({{versionnumber}})":"La versione attuale è {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"End point S3 personalizzato","Custom Satellite":"Satellite personalizzato","Custom Satellite ({{satellite}})":"Satellite personalizzato ({{satellite}})","Custom authentication url":"URL di autenticazione personalizzato","Custom backup retention":"Conservazione backup personalizzato","Custom location ({{server}})":"Posizione personalizzata ({{server}})","Custom region for creating buckets":"Area personalizzata per la creazione bucket","Custom region value ({{region}})":"Valore area personalizzata ({{region}})","Custom server url ({{server}})":"URL del server personalizzato ({{server}})","Custom storage class\n ({{class}})":"Classe di archiviazione personalizzata\n ({{class}})","Custom storage class ({{class}})":"Classe di archiviazione personalizzata ({{class}})","Database …":"Banca dati …","Days":"Giorni","Default":"Predefinito","Default ({{channelname}})":"Predefinito ({{channelname}})","Default excludes":"Esclusioni predefinite","Default options":"Opzioni predefinite","Delete":"Cancella","Delete Phase (Old Backup Versions)":"Fase Cancellazione (Vecchie versioni di backup)","Delete backup":"Cancella backup","Delete backups that are older than":"Elimina i backup più vecchi di","Delete local database":"Cancella database locale","Delete remote files":"Cancella file remoti","Delete the local database":"Cancella il database locale","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Cancella {{filecount}} file ({{filesize}}) dall'archivio remoto?","Delete …":"Elimina …","Deleted":"Cancellato","Deleted Versions":"Versioni Cancellate","Deleted files":"File cancellati","Deleting remote files …":"Eliminazione di file remoti ...","Deleting unwanted files …":"Eliminazione di file indesiderati ...","Description (optional)":"Descrizione (facoltativa)","Description:":"Descrizione:","Desktop":"Desktop","Destination":"Destinazione","Destination path":"Percorso destinazione","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Ti abbiamo aiutato a salvare i tuoi file? Se è così, per favore considera di supportare Duplicati con una donazione. Suggeriamo {{smallamount}} per uso privato e {{largeamount}} per uso commerciale.","Direct restore from backup files ...":"Ripristino diretto da file di backup...","Disabled":"Disattivato","Dismiss":"Annulla","Dismiss all":"Ignora tutto","Display and color theme":"Tema interfaccia","Do you really want to delete the backup: \"{{name}}\" ?":"Vuoi veramente cancellare il backup: \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Vuoi veramente cancellare il database locale per: {{name}} ?","Domain Name":"Nome Dominio","Donate":"Donazione","Donation messages":"Messaggi donazione","Donation messages are hidden, click to show":"I messaggi di donazione sono nascosti, clicca per mostrarli","Donation messages are visible, click to hide":"I messaggi di donazione sono visibili, clicca per nasconderli","Done":"Fatto","Download":"Scarica","Downloaded files":"File scaricati","Downloading files …":"Download di file...","Downloading update…":"Download dell'aggiornamento...","Downloading …":"Download in corso...","Duplicate option {{opt}}":"Opzione duplicata {{opt}}","Duplicati Website":"Sito web di Duplicati","Duplicati forum":"Forum Duplicati","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"Duplicati sarà eseguito all'avvio, ma rimarrà in pausa per la durata. Duplicati occuperà risorse di sistema minime e non saranno eseguiti backup.","Duration":"Durata","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Ogni backup dispone di un database locale associato, che archivia le informazioni del backup remoto sul computer locale.\nQuando si cancella un backup, è anche possibile cancellare il database locale senza influire sulla possibilità di ripristinare i file remoti.\nSe si utilizza il database locale per i backup dalla riga di comando, è necessario mantenere il database.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Ogni backup dispone di un database locale associato, che archivia le informazioni del backup remoto sul computer locale.\nIn questo modo è più veloce eseguire molte operazioni e riduce la quantità di dati che devono essere scaricati per ogni operazione.","Edit as list":"Modifica come elenco","Edit as text":"Modifica come testo","Edit …":"Modifica …","Encrypt file":"Cripta file","Encryption":"Crittografia","Encryption changed":"Crittografia cambiata","Encryption modules:":"Moduli crittografia:","Encryption passphrase":"Passphrase di crittografia","End":"Fine","Enter URL":"Inserisci URL","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Inserisci una strategia di conservazione manualmente. I segnaposto sono D/W/Y per giorni/settimane/anni e U per illimitato. La sintassi è: 7D:1D,4W:1W,36M:1M. Questo esempio mantiene un backup per ciascuno dei prossimi 7 giorni, uno per ciascuna delle prossime 4 settimane e uno per ciascuno dei 36 mesi successivi. Questo può anche essere scritto come 1W:1D,1M:1W,3Y:1M.","Enter access key":"Inserisci chiave di accesso","Enter account name":"Inserisci nome account","Enter backup passphrase, if any":"Inserisci la passphrase del backup, se presente","Enter configuration details":"Inserisci dettagli configurazione","Enter container name":"Inserire nome contenitore","Enter encryption passphrase":"Inserisci passphrase crittografia","Enter expression here":"Inserisci qui espressione","Enter folder path name":"Inserire il nome del percorso della cartella","Enter one option per line in command-line format, eg. {0}":"Inserire un'opzione per riga in formato riga di comando, ad es. {0}","Enter the destination path":"Inserisci percorso destinazione","Enter the email address of the Office 365 group":"Inserisci l'indirizzo email del gruppo di Office 365","Enter the full destination path, including the server name, but without https":"Inserisci il percorso di destinazione completo, incluso il nome del server, ma senza https","Error":"Errore","Error!":"Errore!","Errors and crashes":"Errori e arresti anomali","Examined":"Esaminato","Exclude":"Escludi","Exclude directories whose names contain":"Escludi cartelle il cui nome contiene","Exclude expression":"Escludi espressione","Exclude file":"Escludi file","Exclude file extension":"Escludi estensione del file","Exclude files whose names contain":"Escludi file il cui nome contiene","Exclude filter group":"Escludi gruppo filtri","Exclude folder":"Escludi cartella","Exclude regular expression":"Escludi espressione regolare","Existing file found":"Trovato file esistente","Experimental":"Sperimentale","Export":"Esporta","Export backup configuration":"Esporta configurazione backup","Export configuration":"Esporta configurazione","Export passwords":"Esporta le password","Export …":"Esporta …","Exporting …":"Esportazione in corso ...","External link":"Link esterno","FTP (Alternative)":"FTP (Alternativo)","Failed to build temporary database: {{message}}":"Fallita creazione del database temporaneo: {{message}}","Failed to connect:":"Connessione fallita:","Failed to connect: {{message}}":"Connessione fallita: {{message}}","Failed to delete:":"Cancellazione fallita: ","Failed to fetch path information: {{message}}":"Recupero informazioni sul percorso fallito: {{message}}","Failed to find backup:":"Impossibile trovare il backup:","Failed to import:":"Importazione fallita:","Failed to read backup defaults:":"Lettura impostazioni predefinite backup fallita:","Failed to restore files: {{message}}":"Ripristino dei file fallito: {{message}}","Failed to save:":"Salvataggio fallito:","Fetching path information …":"Recupero delle informazioni sul percorso ...","File":"File","Files larger than:":"File più grandi di:","Filters":"Filtri","Finished!":"Finito!","First run setup":"Impostazione prima esecuzione","Folder":"Cartella","Folder path":"Percorso cartella","Fri":"Ven","GByte":"GByte","GByte/s":"GByte/s","GCS Project ID":"ID Progetto GCS","General":"Generale","General backup settings":"Impostazioni generali backup","General options":"Opzioni generali","Generate":"Genera","Generate IAM\n access policy":"Genera IAM\n criteri di accesso","Getting file versions …":"Ottenere versioni di file ...","Group email":"Email gruppo","Hidden files":"File nascosti","Hide":"Nascondi","Hide hidden folders":"Nascondi cartelle nascoste","Home":"Home","Hostnames":"Nomi host","Hours":"Ore","How do you want to handle existing files?":"Come vuoi gestire i file esistenti?","Hyper-V Machine":"Sitema Hyper-V","Hyper-V Machine:":"Sistema Hyper-V:","Hyper-V Machines":"Sistemi Hyper-V","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Se una pianificazione non è eseguita, il backup sarà effettuato il prima possibile.","If at least one newer backup is found, all backups older than this date are deleted.":"Se si trova almeno un backup più recente, tutti i backup precedenti a questa data sono eliminati.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Se il backup e l'archivio remoto non sono sincronizzati, Duplicati sarà necessario eseguire un'operazione di ripristino per sincronizzare il database.\nSe la riparazione non è riuscita, è possibile cancellare il database locale e rigenerarlo.","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Se il file di backup non è stato scaricato automaticamente, tasto destro e sciegli "a;Salva come …"a;","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Se il file di backup non è stato scaricato automaticamente, tasto destro e sciegli "a;Salva come …"a;","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Se non inserisci un percorso, tutti i file saranno salvati nella cartella di accesso.\nSei sicuro che questo è quello che vuoi?","If you do not enter an API Key, the tenant name is required":"Se non inserisci una Chiave API, è richiesto il nome dell'inquilino","If you want to use the backup later, you can export the configuration before deleting it":"Se desideri utilizzare il backup in un secondo momento, è possibile esportare la configurazione prima di cancellarla","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Se la tua macchina è in un ambiente multi-utente (cioè la macchina ha più di un account), è necessario impostare una password per impedire ad altri utenti di accedere ai dati del tuo account. \nVuoi impostare una password ora?","Import":"Importa","Import Destination URL":"Importa URL Destinazione","Import backup configuration":"Importa configurazione backup","Import completed, but no certificates were found after the import":"Importazione completata, ma non sono stati trovati certificati dopo l'importazione","Import failed":"Importazione fallita","Import from a file":"Importa da un file","Import metadata":"Importa metadati","Importing …":"Importazione ...","Include a file?":"Includi un file?","Include expression":"Includi espressione","Include regular expression":"Includi espressione regolare","Incorrect answer, try again":"Risposta errata, riprova","Individual builds for developers only. Not for use with important data.":"Build individuali per soli sviluppatori. Non utilizzare con dati importanti.","Information":"Informazioni","Install":"Installa","Install failed:":"Installazione fallita:","Invalid characters in path":"Caratteri non validi nel percorso","Invalid retention time":"Tempo ritenzione non valido","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"È possibile connettersi ad alcuni FTP senza una password.\nSei sicuro che il tuo server FTP supporta gli accessi senza password?","KByte":"KByte","KByte/s":"KByte/s","Keep a specific number of backups":"Mantieni un numero specifico di backup","Keep all backups":"Mantieni tutti i backup","Keystone API version":"Versione API Keystone","Language in user interface":"Lingua interfaccia utente","Last month":"Lo scorso mese","Last successful backup:":"Ultimo backup riuscito:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"Ultimo ripristino riuscito: {{time}} (took {{duration || '0 seconds'}})","Latest":"Più recente","Libraries":"Librerie","Listing backup dates …":"Elenco date di backup ...","Listing remote files for purge …":"Elenco dei file remoti per l'eliminazione ...","Listing remote files …":"Elenco dei file remoti ...","Live":"In tempo reale","Load a configuration from an exported job or a storage provider":"Carica una configurazione da un lavoro esportato o da un provider di archiviazione","Load destination from an exported job or a storage provider":"Carica una destinazione da un lavoro esportato o da un provider di archiviazione","Load older data":"Carica dati precedenti","Loading ...":"Caricamento...","Loading remote storage usage ...":"Caricamento dell'archivio remoto utilizzato ...","Loading …":"Caricamento in corso …","Local Repository":"Repository locale","Local database for":"Database locale per ","Local database path:":"Percorso database locale:","Local repository":"Repository locale","Local storage":"Archivio locale","Location":"Posizione","Location where buckets are created":"Posizione in cui sono creati i bucket","Log data for {{Backup.Backup.Name}}":"Dati di log per {{Backup.Backup.Name}}","Log data from the server":"Dati di log dal server","Log out":"Log out","MByte":"MByte","MByte/s":"MByte/s","Maintenance":"Manutenzione","Manually type path":"Digita manualmente il percorso","Max download speed":"Velocità massima per scaricare","Max upload speed":"Velocità massima per caricare","Menu":"Menu","Microsoft SQL Database:":"Microsoft SQL Database:","Microsoft SQL Databases":"Microsoft SQL Database","Minimum redundancy":"Ridondanza minima","Minimum redundancy is 1.0":"Ridondanza minima è 1.0","Minutes":"Minuti","Missing name":"Nome mancante","Missing passphrase":"Passphrase mancante","Missing sources":"Sorgente mancante","Modified":"Modificato","Mon":"Lun","Months":"Mesi","Move existing database":"Sposta database esistente","Move failed:":"Spostamento fallito:","My Documents":"Documenti","My Music":"Musica","My Photos":"Foto","My Pictures":"Immagini","Name":"Nome","Never":"Mai","New update found: {{message}}":"Nuovo aggiornamento trovato: {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"Il nuovo nome utente è {{user}}.\nCredenziali aggiornate per utilizzare il nuovo utente limitato","Next":"Avanti","Next scheduled run:":"Prossima esecuzione: ","Next scheduled task:":"Prossima attività pianificata:","Next task:":"Prossima attività:","Next time":"Prossima volta","No":"No","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"Nessun certificato è stato specificato in precedenza, per favore verifica con l'amministratore del server che la chiave è corretta: {{key}}\n\nVuoi approvare la chiave host riportata?","No editor found for the "{{backend}}" storage type":"Nessun editor trovato per il "{{backend}}" tipo archivio","No encryption":"Nessuna crittografia","No items selected":"Nessun elemento selezionato","No items to restore, please select one or more items":"Nessun elemento da ripristinare, seleziona uno o più elementi","No passphrase entered":"Nessuna passphrase inserita","No scheduled tasks":"Nessuna attività pianificata","No, my machine has only a single account":"No, la mia macchina ha solo un singolo account","Non-matching passphrase":"Passphrase non corrispondente","None / disabled":"Nessuno / disattivato","Not using encryption":"Non usare la crittografia","Nothing will be deleted. The backup size will grow with each change.":"Niente sarà eliminato. La dimensione del backup crescerà con ogni cambiamento.","OK":"OK","Once there are more backups than the specified number, the oldest backups are deleted.":"Una volta che ci sono più backup del numero specificato, i backup più vecchi sono cancellati.","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack Object Storage / Swift","Opened":"Aperto","Openstack API Key are not supported in v3 keystone API.":"La chiave API Openstack non è supportata nell'API keystone v3.","Operating System":"Sistema Operativo","Operation":"Operazione","Operation failed:":"Operazione fallita:","Operations:":"Operazioni:","Optional authentication password":"Password opzionale per l'autenticazione","Optional authentication username":"Nome utente opzionale per l'autenticazione","Options":"Opzioni","Options added here are applied to all backups, but can be overridden in each individual backup":"Le opzioni aggiunte qui sono applicate a tutti i backup, ma possono essere sovrascritte per ogni backup","Original location":"Percorso originale","Others":"Altri","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"Nel corso del tempo i backup saranno eliminati automaticamente. Rimarrà un backup per ciascuno degli ultimi 7 giorni, ognuna delle ultime 4 settimane, ciascuno degli ultimi 12 mesi. Ci sarà sempre almeno un backup rimanente.","Overwrite":"Sovrascrivi","Passphrase":"Passphrase","Passphrase (if encrypted)":"Passphrase (se criptato)","Passphrase changed":"Passphrase modificata","Passphrases are not matching":"Passphrase non corrispondenti","Passphrases do not match":"Le passphrase non corrispondono","Password":"Password","Patching files with local blocks …":"Patch di file con blocchi locali ...","Path":"Percorso","Path not found":"Percorso non trovato","Path on server":"Percorso sul server","Path or subfolder in the bucket":"Percorso o sottocartella bucket","Pause":"Pausa","Pause after startup or hibernation":"Pausa dopo avvio o ibernazione","Pause options":"Opzioni pausa","Permissions":"Autorizzazioni","Pick location":"Scegli posizione","Point to your backup files and restore from there":"Puntare ai file di backup e ripristinare da lì","Port":"Porta","Prevent tray icon automatic log-in":"Previeni il log-in automatico dell'icona nella barra delle applicazioni","Previous":"Precedente","Progress:":"Avanzamento:","ProjectID is optional if the bucket exist":"ID Progetto è opzionale se esiste un bucket","Proprietary":"Proprietario","Purge Phase":"Fase eliminazione","Purging files complete!":"Eliminazione dei file completata!","Purging files …":"Eliminazione dei file ...","Rebuilding local database …":"Ricostruzione del database locale ...","Recreate (delete and repair)":"Ricrea (cancella e ripara)","Recreate Database Phase":"Fase ricreazione database","Recreating database …":"Ricreazione del database ...","Registering temporary backup …":"Registrazione backup temporaneo ...","Relative paths not allowed":"Percorsi relativi non consentiti","Reload":"Ricarica","Remote":"Remoto","Remote Path":"Percorso remoto","Remote Repository":"Repository remoto","Remote path":"Percorso remoto","Remote repository":"Repository remoto","Remote volume size":"Dimensione volume remoto","Remove":"Rimuovi","Remove option":"Rimuovi opzione","Removed files":"File rimossi","Repair":"Ripara","Repair Phase":"Fase riparazione","Repairing database …":"Ripristino del database ...","Repeat Passphrase":"Ripeti Passphrase","Reporting:":"Segnalazione:","Reset":"Reset","Restore":"Ripristina","Restore complete!":"Ripristino completato!","Restore files":"Ripristina file","Restore files from {{backupname}}":"Ripristina file da {{backupname}}","Restore files …":"Ripristina file ...","Restore from":"Ripristina da","Restore from backup configuration":"Ripristino dalla configurazione backup","Restore from configuration ...":"Ripristino da file di configurazione...","Restore options":"Opzioni ripristino","Restore read/write permissions":"Ripristina autorizzazioni lettura/scrittura","Restored Files":"File ripristinati","Restored Folders":"Cartelle ripristinate","Restored Symlinks":"Symlink ripristinati","Restoring files …":"Ripristino di file ...","Resume":"Riprendi","Rewritten File Lists":"Elenchi file riscritti","Run again every":"Esegui ogni","Run now":"Esegui ora","Running ....":"Esecuzione...","Running commandline entry":"Riga di comando in esecuzione","Running task:":"Attività in esecuzione:","Running …":"In esecuzione …","S3 Compatible":"Compatibile S3","Same as the base install version: {{channelname}}":"Come la versione di base installata: {{channelname}}","Sat":"Sab","Satellite":"Satellitare","Save":"Salva","Save and repair":"Salva e ripara","Save different versions with timestamp in file name":"Salva versioni diverse con timestamp nel nome del file","Save immediately":"Salva immediatamente","Scanning existing files …":"Scansione di file esistenti ...","Scanning for local blocks …":"Scansione per blocchi locali ...","Schedule":"Pianificazione","Search":"Cerca","Search for files":"Cerca per file","Seconds":"Secondi","Select a log level and see messages as they happen:":"Selezionare un livello di log e visiona i messaggi che avvengono:","Select files":"Seleziona file","Server":"Server","Server and port":"Server e porta","Server hostname or IP":"Nome host o IP del server","Server is currently paused,":"Server è attualmente in pausa,","Server is currently paused, do you want to resume now?":"Server attualmente in pausa, vuoi riprendere ora?","Server password":"Password del server","Server paused":"Server in pausa","Server state properties":"Proprietà stato del server","Settings":"Impostazioni","Show":"Mostra","Show advanced editor":"Mostra editor avanzato","Show hidden folders":"Mostra cartelle nascoste","Show log":"Mostra log","Show log …":"Mostra registro …","Show treeview":"Visualizza ad albero","Sia server password":"Password del server Sia","Smart backup retention":"Conservazione intelligente backup","Some OpenStack providers allow an API key instead of a password and tenant name":"Alcuni provider OpenStack consentono una chiave API anziché una password e un nome inquilino","Some S3 providers might only be compatible with a certain client library":"Alcuni provider S3 potrebbero essere compatibili solo con una determinata libreria client","Source Data":"Dati Sorgente","Source Files":"Sorgente File","Source data":"Dati sorgente","Source folders":"Cartella sorgente","Source:":"Dimensione sorgente:","Specific builds for developers only. Not for use with important data.":"Build specifiche per soli sviluppatori. Non utilizzare con dati importanti.","Standard protocols":"Protocolli standard","Start":"Avvio","Starting backup …":"Avvio backup ...","Starting restore …":"Avvio ripristino ...","Starting the restore process …":"Avvio del processo di ripristino ...","Stop after current file":"Stop dopo il file corrente","Stop after the current file":"Ferma dopo il file corrente","Stop now":"Ferma adesso","Stop running backup":"Ferma esecuzione backup","Stop running task":"Ferma esecuzione attività","Stopping after the current file:":"Arresto dopo il file corrente:","Stopping task:":"Ferma attività:","Storage Type":"Tipo archivio","Storage class":"Classe archivio","Storage class for creating a bucket":"Classe di archiviazione per la creazione di un bucket","Stored":"Archiviati","Strong":"Forte","Success":"Successo","Sun":"Dom","Symbolic link":"Link simbolico","System Files":"File di Sistema","System default ({{levelname}})":"Sistema predefinito ({{levelname}})","System files":"File di sistema","System info":"Informazioni di sistema","System properties":"Proprietà di sistema","TByte":"TByte","TByte/s":"TByte/s","Target path, ie /backup":"Percorso di destinazione, cioè /backup","Task is running":"Attività in esecuzione","Temporary Files":"File Temporanei","Temporary files":"File temporanei","Tenant Name":"Nome Inquilino","Test Phase":"Fase test","Test connection":"Prova connessione","Testing ...":"Test in corso...","Testing connection ...":"Prova connessione...","Testing permissions …":"Test delle autorizzazioni ...","Testing permissions...":"Prova autorizzazioni...","Testing …":"Test in corso...","The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})":"Il campo '{{fieldname}}' contiene un carattere non valido: {{character}} (value: {{value}}, index: {{pos}})","The API key":"La chiave API","The backup is missing, has it been deleted?":"Il backup è mancante, è stato cancellato?","The backup was temporary and does not exist anymore, so the log data is lost":"Il backup era temporaneo e non esiste più, quindi i dati del registro sono persi","The bucket name should be all lower-case, convert automatically?":"Il nome del bucket dovrebbe essere tutto minuscolo, convertirlo automaticamente?","The bucket name should start with your username, prepend automatically?":"Il nome del bucket dovrebbe iniziare con il tuo nome utente, anteporlo automaticamente?","The configuration should be kept safe. Are you sure you want to save an unencrypted file containing your passwords?":"La configurazione dovrebbe essere mantenuta al sicuro. Sei sicuro di voler salvare un file non criptato contenente le tue password?","The connection to the server is lost, attempting again in {{time}} ...":"Connessione al server persa, nuovo tentativo tra {{time}}...","The dark theme (by Michal)":"Tema scuro (da Michal)","The default blue on white theme (by Alex)":"Predefinito - Tema blu su bianco (da Alex)","The encryption passphrase":"La passphrase di crittografia","The folder {{folder}} does not exist.\nCreate it now?":"La cartella {{folder}} non esiste. \nCreala adesso?","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"La chiave host è cambiata, per favore consulta l'amministratore del server se questa è corretta, altrimenti potresti essere la vittima di un attacco UOMO-NEL-MEZZO.\n\nVuoi SOSTITUIRE la chiave host CORRENTE \"{{prev}}\" con la chiave host SEGNALATA: {{key}}?","The passwords do not match":"Le password non corrispondono","The path does not appear to exist, do you want to add it anyway?":"Il percorso sembra non esistere, vuoi aggiungerlo comunque?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"Il percorso non termina con un carattere '{{dirsep}}', il che significa che si include un file, non una cartella.\n\nVuoi includere il file specificato?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"Il percorso deve essere un percorso assoluto, cioè deve iniziare con una barra '/'","The path should start with \"{{prefix1}}\" or \"{{prefix2}}\", otherwise you will not be able to see the files in the HubiC web interface.\n\nDo you want to add the prefix to the path automatically?":"Il percorso deve iniziare con \"{{prefix1}}\" o \"{{prefix2}}\", altrimenti non sarà possibile visualizzare i file nell'interfaccia Web di HubiC.\n\nVuoi aggiungere automaticamente il prefisso al percorso?","The region parameter is only applied when creating a new bucket":"Il parametro area è applicato solo quando si crea un nuovo bucket","The region parameter is only used when creating a bucket":"Il parametro area è utilizzato solo quando si crea un bucket","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Il certificato del server non può essere convalidato.\n\nVuoi approvare il certificato SSL con l'hash: {{hash}}?","The storage class affects the availability and price for a stored file":"La classe di archiviazione influisce sulla disponibilità e sul prezzo per un file archiviato","The target folder contains encrypted files, please supply the passphrase":"La cartella di destinazione contiene file criptati, per favore fornisci la passphrase","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"L'utente dispone di troppe autorizzazioni. Vuoi creare un nuovo utente limitato, con solo autorizzazioni per il percorso selezionato?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"Questo backup è stato creato su un altro sistema operativo. Il ripristino dei file senza specificare una cartella di destinazione può causare il ripristino di file in luoghi imprevisti. Sei sicuro di voler continuare senza scegliere una cartella di destinazione?","This month":"Questo mese","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"Questa opzione non è riferita al numero massimo dei tuoi backup o alle dimensioni del file, né influisce sulla valutazione della deduplicazione. Guarda questa pagina prima di modificare le dimensioni del volume remoto.","This week":"Questa settimana","Throttle settings":"Impostazioni limitazione","Thu":"Mar","Time":"Tempo","To File":"Al File","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Per confermare che vuoi cancellare tutti i file remoti che contengono \"{{name}}\", digita la parla che vedi di seguito","To export without a passphrase, uncheck the \"Encrypt file\" box":"Per esportare senza una passphrase, deselezionare la casella \"Cripta file\"","To prevent various DNS based attacks, Duplicati limits the allowed hostnames to the ones listed here. Direct IP access and localhost is always allowed. Multiple hostnames can be supplied with a semicolon separator. If any of the allowed hostnames is an asterisk (*), all hostnames are allowed and this feature is disabled. If the field is empty, only IP address and localhost access is allowed.":"Per prevenire vari attacchi basati su DNS, Duplicati limita gli hostname consentiti a quelli qui elencati. L'accesso IP e localhost diretti sono sempre consentiti. Più nomi host possono essere forniti con un separatore di punto e virgola. Se uno qualsiasi dei nomi host consentiti è un asterisco (*), tutti i nomi host sono consentiti e questa funzione è disabilitata. Se il campo è vuoto, sono consentiti solo gli accessi dall'indirizzo IP e localhost.","Today":"Oggi","Trust host certificate?":"Certificato host affidabile?","Trust server certificate?":"Certificato server affidabile?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"Prova le nuove funzionalità su cui stiamo lavorando. Attualmente la versione più stabile disponibile. Prova il Ripristino dati prima di utilizzarla negli ambienti di produzione.","Tue":"Gio","Type passphrase here.":"Scrivi la passphrase qui.","Type to highlight files":"Digitare per evidenziare i file","Unknown backup size and versions":"Dimensione e versione backup sconosciute","Until resumed":"Finché non riprende","Update channel":"Canale di aggiornamento","Update failed:":"Aggiornamento fallito:","Updating with existing database":"Aggiornamento con database esistente","Uploaded files":"File caricati","Uploading verification file …":"Caricamento file di verifica ...","Usage reports help us improve the user experience and evaluate impact of new features. We use them to generate {{'public usage statistics' | translate}}":"I report sull'utilizzo ci aiutano a migliorare l'esperienza dell'utente e a valutare l'impatto delle nuove funzionalità. Li usiamo per generare {{\"statistiche sull'uso pubblico\" | tradurre}}","Usage statistics":"Statistiche di utilizzo","Usage statistics, warnings, errors, and crashes":"Statistiche di utilizzo, avvisi, errori e arresti anomali","Use SSL":"Usa SSL","Use existing database?":"Usare database esistente?","Use weak passphrase":"Usa passphrase debole","Useless":"Inutile","User data":"Dati utente","User domain name":"Nome dominio utente","User has too many permissions":"L'utente ha troppe autorizzazioni","User interface settings":"Impostazioni interfaccia utente","Username":"Nome utente","Vacuuming database …":"Prelevamento database ...","Validating …":"Convalida in corso ...","Verifications":"Verifiche","Verify files":"Verifica file","Verifying ...":"Verifica...","Verifying answer":"Verifica risposta","Verifying backend data …":"Verifica dei dati di backend ...","Verifying files …":"Verifica dei file ...","Verifying remote data …":"Verifica dei dati remoti ...","Verifying restored files …":"Verifica dei file ripristinati ...","Verifying …":"Verifica in corso ...","Version ID":"Versione ID","Very strong":"Molto forte","Very weak":"Molto debole","Visit us on":"Seguici su","WARNING: The remote database is found to be in use by the commandline library":"ATTENZIONE: Il database remoto si trova in uso dalla libreria riga di comando","WARNING: This will prevent you from restoring the data in the future.":"ATTENZIONE: Questo ti impedirà di ripristinare i dati in futuro.","Waiting for task to begin":"In attesa dell'attività per iniziare","Waiting for task to start ....":"In attesa dell'attività per iniziare...","Waiting for upload to finish …":"In attesa del completamento del caricamento ...","Warnings, errors and crashes":"Avvisi, errori e arresti anomali","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"Accettiamo donazioni tramite diversi servizi, come OpenCollective, PayPal, BountySource e varie criptovalute.","We recommend that you encrypt all backups stored outside your system":"Ti consigliamo di criptare tutti i backup archiviati al di fuori del tuo sistema","Weak":"Debole","Weak passphrase":"Passphrase debole","Wed":"Mer","Weeks":"Settimane","Where do you want to restore from?":"Da dove vuoi ripristinare?","Where do you want to restore the files to?":"Dove vuoi ripristinare i files?","Years":"Anni","Yes":"Si","Yes, I have stored the passphrase safely":"Si, ho archiviato la passphrase in modo sicuro","Yes, I understand the risk":"Sì, capisco il rischio","Yes, I'm brave!":"Sì, sono coraggioso!","Yes, please break my backup!":"Sì, per favore rompi il mio backup!","Yesterday":"Ieri","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"Sembra che tu sia in esecuzione Mono senza certificati SSL caricati.\nVuoi importare l'elenco dei certificati attendibili da Mozilla?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"Stai cambiando il percorso di un database esistente.\nSei sicuro che questo è ciò che vuoi?","You are currently running {{appname}} {{version}}":"Attualmente stai eseguendo {{appname}} {{version}}","You can stop the backup after any file uploads currently in progress have finished.":"È possibile interrompere il backup al termine di eventuali caricamenti di file attualmente in corso.","You can stop the task immediately, or allow the process to continue its current file and then stop.":"È possibile interrompere l'operazione immediatamente, o consentire il processo di continuare il suo file corrente e poi fermarsi.","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"Hai modificato l'algoritmo di crittografia. Questa azione potrebbe corrompere i dati. Ti consigliamo di creare un nuovo backup.","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"Hai modificato la passphrase ma questo non è supportato. Ti consigliamo di creare un nuovo backup.","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"Hai scelto di non criptare il backup. È consigliabile criptare tutti i dati custoditi su server remoti.","You have chosen to restore to a new location, but not entered one":"Si è scelto di ripristinare in una nuova posizione, ma non ne è stata inserita una","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"Hai generato una passphrase forte. Assicurati di aver fatto una copia sicura della passphrase, poiché i dati non possono essere recuperati se perdi la passphrase.","You must choose at least one source folder":"Devi scegliere almeno una cartella sorgente","You must enter a domain name to use v3 API":"Devi inserire un nome di dominio per utilizzare l'API v3","You must enter a name for the backup":"Devi inserire un nome per il backup","You must enter a passphrase or disable encryption":"Devi inserire una passphrase o disattivare la crittografia","You must enter a password to use v3 API":"Devi inserire una password per utilizzare l'API v3","You must enter a positive number of backups to keep":"Devi inserire un numero positivo di backup da mantenere","You must enter a tenant (aka project) name to use v3 API":"Devi inserire un nome tenant (aka progetto) per utilizzare l'API v3","You must enter a tenant name if you do not provide an API Key":"Devi inserire il nome di un inquilino se non fornisci una Chiave API","You must enter a valid duration for the time to keep backups":"Devi inserire un periodo di tempo valido in cui mantenere i backup","You must enter a valid retention policy string":"Devi inserire una stringa di criteri di conservazione valida","You must enter either a password or an API Key":"Devi inserire una password o una Chiave API","You must enter either a password or an API Key, not both":"Devi inserire una password o una Chiave API, non entrambe","You must fill in the password":"Devi compilare in password","You must fill in the server name or address":"Devi compilare in nome del server o indirizzo","You must fill in the username":"Devi compilare in nome utente","You must fill in {{field}}":"Devi compilare in {{field}}","You must select or fill in the AuthURI":"Devi selezionare o compilare in AuthURI","You must select or fill in the server":"Devi selezionare o compilare in server","You must specify a path":"Devi specificare un percorso","You should fill in {{field}}{{reason}}":"Devi compilare {{field}}{{reason}}","Your files and folders have been restored successfully.":"I tuoi file e cartelle sono stati ripristinati correttamente.","Your passphrase is easy to guess. Consider changing passphrase.":"La tua passphrase è facile da indovinare. Considera l'idea di cambiarla.","bucket/folder/subfolder":"bucket/cartella/sottocartella","byte":"byte","byte/s":"byte/s","custom":"Personalizzato","public usage statistics":"statistiche sull'uso pubblico","resume now":"riprendi ora","unless you are explicitly specifying --group-id":"a meno che tu non stia specificando esplicitamente --group-id","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"{{appname}} è stato sviluppato principalmente da {{dev1}} e {{dev2}}. {{appname}} può essere scaricato da {{websitename}}. {{appname}} è sotto la licenza {{licensename}}.","{{files}} files ({{size}}) to go {{speed_txt}}":"Caricamento di {{files}} file ({{size}}) {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versione","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versioni","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versioni"],"{{number}} Hour":"{{number}} Ore","{{number}} Hours":"{{number}} Ore","{{number}} Minutes":"{{number}} Minuti","{{time}} (took {{duration}})":"{{time}} (durata {{duration}})","…loading…":"…Caricamento in corso…"}); + gettextCatalog.setStrings('ja_JP', {"- pick an option -":"- オプションを選択してください -","...loading...":"…読み込んでいます…","API Key":"APIキー","API key":"APIキー","AWS Access ID":"AWSアクセスID","AWS Access Key":"AWSアクセスキー","AWS IAM Policy":"AWS IAMポリシー","About":"概要","About {{appname}}":"{{appname}}について","Access Key":"アクセスキー","Access denied":"アクセスが拒否されました","Access grant":"アクセス権","Access to user interface":"ユーザーインターフェースへのアクセス","Account name":"アカウント名","Activate":"有効にする","Activate failed:":"有効にできませんでした:","Add a new backup":"新しいバックアップを作成","Add a path directly":"パスディレクトリを追加","Add advanced option":"高度な設定を追加","Add backup":"バックアップを追加","Add filter":"フィルターを追加","Add path":"パスを追加","Added":"追加しました","Adjust bucket name?":"バケットの名称を変更しますか?","Adjust path name?":"パスの名称を変更しますか?","Advanced Options":"高度な設定","Advanced options":"高度な設定","Advanced:":"高度:","All Hyper-V Machines":"全てのHyper-Vマシン","All Microsoft SQL Databases":"全てのMicrosoft SQLデータベース","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"使用状況に関する報告は全て匿名で送信され、個人情報を含みません。報告には、ハードウェア、OS、バックエンドの種類、バックアップの保持期間、バックアップ元のデータなどの全体のサイズに関するデータが含まれます。パス、ファイル名、ユーザー名、パスワードなどの機密情報は含まれません。","Allow remote access (requires restart)":"リモートアクセスを許可(要再起動)","Allowed days":"実行を許可する日","An existing file was found at the new location":"既存のファイルが新しい場所で見つかりました","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"既存のファイルが新しい場所で見つかりました。\nデータベースを既存のファイルに指定してよろしいですか?","Anonymous usage reports":"使用状況に関する匿名の報告","Applications":"アプリケーション","As Command-line":"コマンドライン","AuthID":"認証ID","Authentication method":"認証方法","Authentication method ({{auth_method}})":"認証方法({{auth_method}})","Authentication password":"認証パスワード","Authentication username":"認証ユーザー名","Autogenerated passphrase":"自動生成したパスフレーズ","Automatically run backups.":"バックアップを自動的に実行。","B2 Application ID":"B2 アプリケーションID","B2 Application Key":"B2 アプリケーションキー","B2 Cloud Storage Account ID":"B2 クラウドストレージアカウントID","B2 Cloud Storage Application ID":"B2 クラウドストレージアプリケーションID","B2 Cloud Storage Application Key":"B2 クラウドストレージアプリケーションキー","Back":"戻る","Backend modules:":"バックエンドのモジュール:","Backup complete!":"バックアップが完了しました!","Backup destination":"バックアップ先","Backup is encrypted but no passphrase is available.\n Type a passphrase below to use for restoring your files,\n or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n invoking your system's keychain.":"バックアップは暗号化されていますが、パスフレーズが指定されていません。\nファイルを復元するには、以下にパスフレーズを入力するか、\nGPGによる暗号化を行っている場合は、以下を空欄のままにして、gpgでシステムのキーチェーンからパスフレーズを取得してください。","Backup location":"バックアップの場所","Backup retention":"バックアップの保持期間","Backup:":"バックアップ:","Beta":"ベータ版","Broken access":"アクセスが壊れています","Browse":"参照","Browser default":"ブラウザ設定","Bucket":"バケット","Bucket Name":"バケット名","Bucket create location":"バケットを作成する場所","Bucket create region":"バケットを作成するリージョン","Bucket name":"バケット名","Bucket storage class":"バケットのストレージクラス","Building list of files to restore …":"復元するファイルの一覧を作成しています…","Building partial temporary database …":"一時的なデータベースを構築しています…","Busy ...":"取り込み中…","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"遠隔アクセスを許可すると、サーバーはあなたのネットワークの任意のコンピューターからのリクエストを受け付けます。このオプションを有効にする場合は、ファイヤーウォールで安全に保護されているネットワークのコンピューターを使用してください。","By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option.":"トレイアイコンは既定で、トークンでロックを解除してユーザーインターフェースを開きます。この場合、他のユーザーはパスワードを入力する必要がありますが、ユーザーはトレイアイコンからユーザーインターフェースにアクセスすることができます。トレイアイコンからアクセスする場合にパスワードを入力するよう設定したい場合は、このオプションを有効にしてください。","Cache Files":"キャッシュファイル","Canary":"実験的(カナリア)","Cancel":"キャンセル","Cannot move to existing file":"既にファイルがあるため移動できません","Changelog":"更新履歴","Changelog for {{appname}} {{version}}":"更新履歴 {{appname}} {{version}}","Check failed:":"確認できませんでした:","Check for updates now":"アップデートを確認","Checking ...":"確認しています…","Checking for updates …":"アップデートを確認しています…","Chose a storage type to get started":"初めにストレージの種類を選択してください","Click the AuthID link to create an AuthID":"認証IDのリンクをクリックして作成してください","Click to set throttle options":"クリックで速度制限のオプションを設定","Client library to use":"使用するクライアントライブラリー","Commandline …":"コマンドライン","Compact now":"圧縮","Compacting remote data ...":"リモートデータを圧縮しています…","Compacting remote data …":"リモートデータを圧縮しています…","Complete log":"完全なログ","Completing backup …":"バックアップを完了しています…","Completing previous backup …":"以前のバックアップを完了しています…","Compression modules:":"圧縮モジュール:","Computer":"コンピューター","Configuration file:":"設定ファイル:","Configuration:":"設定:","Configure a new backup":"新しいバックアップを設定","Confirm delete":"削除を確認","Confirm encryption passphrase":"暗号化用パスフレーズを確認","Confirm passphrase":"パスフレーズを確認","Confirm password":"パスワードを確認","Confirmation required":"確認が必要です","Connect":"接続","Connect now":"今すぐ接続","Connecting to server …":"サーバーに接続しています…","Connecting to task ....":"タスクに接続しています…","Connecting...":"接続しています…","Connection lost":"切断しました","Connection worked!":"接続できました!","Container name":"コンテナ名","Container region":"コンテナのリージョン","Continue":"続行","Continue without encryption":"暗号化なしで続行","Copied!":"コピーしました!","Copy":"コピー","Copy Destination URL to Clipboard":"バックアップ先のURLをクリップボードにコピー","Copy failed. Please manually copy the URL":"コピーできませんでした。URLを手動でコピーしてください","Core options":"中心のオプション","Counting ({{files}} files found, {{size}})":"計測中({{files}}個のファイルが見つかりました。サイズは{{size}})","Crashes only":"クラッシュのみ","Create bug report …":"バグ報告を作成…","Create folder?":"フォルダーを作成しますか?","Created new limited user":"新規の制限ユーザーを作成しました","Creating bug report …":"バグレポートを作成しています…","Creating new user with limited access …":"アクセスが制限されている新規ユーザーを作成しています…","Creating target folders …":"バックアップ先のフォルダーを作成しています…","Creating temporary backup …":"一時的なバックアップを作成しています…","Creating user...":"ユーザーを作成しています…","Current action:":"現在のアクション:","Current file:":"現在のファイル:","Current version is {{versionname}} ({{versionnumber}})":"現在のバージョンは {{versionname}}({{versionnumber}})","Custom S3 endpoint":"ユーザー定義のS3 エンドポイント","Custom Satellite":"カスタムサテライト","Custom Satellite ({{satellite}})":"カスタムサテライト({{satellite}})","Custom authentication url":"ユーザー定義の認証用URL","Custom backup retention":"ユーザー定義のバックアップの保持期間","Custom location ({{server}})":"ユーザー定義の場所({{server}})","Custom region for creating buckets":"バケットを作成するユーザー定義のリージョン","Custom region value ({{region}})":"ユーザー定義のリージョンの値({{region}})","Custom server url ({{server}})":"ユーザー定義のサーバーURL ({{server}})","Custom storage class\n ({{class}})":"ユーザー定義の保存領域のクラス\n ({{class}})","Custom storage class ({{class}})":"ユーザー定義の保存領域のクラス({{class}})","Database …":"データベース…","Days":"日","Default":"初期設定","Default ({{channelname}})":"既定({{channelname}})","Default excludes":"既定で除外するアイテム","Default options":"既定のオプション","Delete":"削除","Delete backup":"バックアップを削除","Delete backups that are older than":"古いバックアップから削除","Delete local database":"ローカルデータベースを削除","Delete remote files":"リモートファイルを削除","Delete the local database":"ローカルデータベースを削除","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"{{filecount}}個のファイル({{filesize}})をリモートの保存領域から削除しますか?","Delete …":"削除...","Deleted":"削除しました","Deleted Versions":"削除されたバージョン","Deleted files":"削除されたファイル","Deleting remote files …":"リモートファイルを削除しています…","Deleting unwanted files …":"不要なファイルを削除しています…","Description (optional)":"概要(任意)","Description:":"概要:","Desktop":"デスクトップ","Destination":"バックアップ先","Destination path":"バックアップ先のパス","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"お役に立てましたか?もしそうお思いなら、Duplicatiに寄付を行うことをお考えください。個人用途では{{smallamount}}、企業用途では{{largeamount}}をお願いしています。","Direct restore from backup files ...":"バックアップファイルから直接復元...","Disabled":"無効","Dismiss":"表示しない","Dismiss all":"すべて表示しない","Display and color theme":"テーマカラー","Do you really want to delete the backup: \"{{name}}\" ?":"バックアップ \"{{name}}\" を削除してよろしいですか?","Do you really want to delete the local database for: {{name}}":"{{name}} のデータベースを削除してよろしいですか?","Domain Name":"ドメイン名","Donate":"寄付","Donation messages":"寄付についてのメッセージ","Donation messages are hidden, click to show":"寄付についてのメッセージが表示されていません。クリックで表示","Donation messages are visible, click to hide":"寄付についてのメッセージが表示されています。クリックで非表示","Done":"完了","Download":"ダウンロード","Downloaded files":"ダウンロード済みファイル","Downloading files …":"ファイルをダウンロードしています…","Downloading update…":"アップデートをダウンロードしています…","Downloading …":"ダウンロードしています…","Duplicate option {{opt}}":"複製に関するオプション {{opt}}","Duplicati Website":"DuplicatiのWebサイト","Duplicati forum":"Duplicatiのフォーラム","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"Duplicatiは起動と同時に実行しますが、ここで指定した時間が経過するまで一時停止の状態を維持します。Duplicatiは最低限のシステムの処理能力しか使用せず、その間バックアップは実行されません。","Duration":"経過","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"それぞれのバックアップには、ローカルのコンピューターに保存されるデータベースがあります。\nバックアップを削除する際、リモートファイルの復元に影響を与えずにローカルのデータベースを削除することもできます。\nコマンドラインからバックアップ用のローカルのデータベースを使用している場合は、データベースを削除しないでください。","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"それぞれのバックアップには、ローカルのコンピューターに保存されるデータベースがあります。\\nこのデータベースには、リモートバックアップに関する情報が保存されており、操作の速度を改善したり、その都度の操作でダウンロードするデータ量を減らしたりする効果があります。","Edit as list":"一覧で編集","Edit as text":"テキストで編集","Edit …":"編集...","Encrypt file":"ファイルを暗号化","Encryption":"暗号化の方式","Encryption changed":"暗号化の方式が変更されました","Encryption modules:":"暗号化のモジュール:","Encryption passphrase":"暗号化用のパスフレーズ","End":"終了","Enter URL":"URLを入力してください","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"バックアップの保持期間の方針を手動で設定できます。使用できる文字にはD、W、Y、Uがあり、それぞれ日、週、年、無制限(Unlimited)を指します。構文の形式は「7D:1D,4W:1W,36M:1M」となります。この例では、今後7日間にわたり毎日1個ずつ、今後4週間にわたり毎週1個ずつ、今後36か月にわたり毎月1個ずつバックアップが作成、保存されます。これはまた「1W:1D,1M:1W,3Y:1M」と表記することもできます。","Enter access key":"アクセスキーを入力してください","Enter account name":"アカウント名を入力してください","Enter backup passphrase, if any":"バックアップのパスフレーズがある場合は入力してください","Enter configuration details":"設定の詳細を入力してください","Enter container name":"コンテナ名を入力してください","Enter encryption passphrase":"暗号化用のパスフレーズを入力してください","Enter expression here":"式をここに入力してください","Enter folder path name":"フォルダーのパスを入力してください","Enter one option per line in command-line format, eg. {0}":"コマンドラインの形式で1行に1つのオプションを入力してください。例:{0}","Enter the destination path":"バックアップ先のパスを入力してください","Enter the email address of the Office 365 group":"Office 365グループのメールアドレスを入力してください","Enter the full destination path, including the server name, but without https":"サーバーの名称を含めて、バックアップ先の完全なパスを入力してください。ただし、httpsは付けないでください","Error":"エラー","Error!":"エラー!","Errors and crashes":"エラーとクラッシュ","Examined":"検査済","Exclude":"除外","Exclude directories whose names contain":"次の文字を含むディレクトリを除外","Exclude expression":"次の文字を含むファイル・ディレクトリを除外","Exclude file":"除外するファイル名","Exclude file extension":"除外する拡張子","Exclude files whose names contain":"次の文字を含むファイルを除外","Exclude filter group":"グループで除外","Exclude folder":"除外するディレクトリ名","Exclude regular expression":"正規表現で除外","Existing file found":"既存のファイルが見つかりました","Experimental":"実験的","Export":"エクスポート","Export backup configuration":"バックアップの設定をエクスポート","Export configuration":"設定をエクスポート","Export passwords":"パスワードをエクスポート","Export …":"エクスポート…","Exporting …":"エクスポートしています…","External link":"外部リンク","FTP (Alternative)":"FTP (代替)","Failed to build temporary database: {{message}}":"一時的なデータベースを構築できませんでした:{{message}}","Failed to connect:":"接続できませんでした:","Failed to connect: {{message}}":"接続できませんでした:{{message}}","Failed to delete:":"削除できませんでした:","Failed to fetch path information: {{message}}":"パスの情報を取得できませんでした:{{message}}","Failed to find backup:":"バックアップが見つかりませんでした:","Failed to import:":"インポートできませんでした:","Failed to read backup defaults:":"バックアップの既定の設定を読み込めませんでした:","Failed to restore files: {{message}}":"ファイルを復元できませんでした:{{message}}","Failed to save:":"保存できませんでした:","Fetching path information …":"パスの情報を取得しています…","File":"ファイル","Files larger than:":"閾値より大きなファイル:","Filters":"フィルター","Finished!":"完了しました!","First run setup":"初回実行セットアップ","Folder":"フォルダー","Folder path":"フォルダーのパス","Fri":"金曜日","GByte":"ギガバイト","GByte/s":"ギガバイト秒","GCS Project ID":"GCS プロジェクトID","General":"一般","General backup settings":"バックアップの設定","General options":"設定","Generate":"生成","Generate IAM\n access policy":"IAMアクセスポリシー\n を生成","Getting file versions …":"ファイルのバージョンを取得しています…","Group email":"グループの電子メール","Hidden files":"隠しファイル","Hide":"隠す","Hide hidden folders":"隠しフォルダーを表示しない","Home":"ホーム","Hostnames":"ホスト名","Hours":"時間","How do you want to handle existing files?":"既存のファイルはどのように扱いますか?","Hyper-V Machine":"Hyper-V マシン","Hyper-V Machine:":"Hyper-V マシン:","Hyper-V Machines":"Hyper-V マシン","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"予定の日時を逃してしまった場合、ジョブは即座に実行します。","If at least one newer backup is found, all backups older than this date are deleted.":"最低1つ以上のより新しいバックアップが存在する場合、この日付よりも古い全てのバックアップを削除します。","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"バックアップとリモートの保存領域が同期していない場合、データベースを修復して同期させる必要があります。\\n修復が上手く行かない場合は、ローカルのデータベースを削除して、改めてこれを作成してください。","If the backup file was not downloaded automatically, right click and choose "Save as …"":"バックアップのファイルが自動的にダウンロードされなかった場合は、 "名前を付けて保存"を右クリックして選択してください。","If the backup file was not downloaded automatically, right click and choose "Save as …"":"バックアップのファイルが自動的にダウンロードされなかった場合は、 "名前を付けて保存"を右クリックして選択してください。","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"パスを入力しない場合、全てのファイルはログインフォルダーに保存されます。\n続行してよろしいですか?","If you do not enter an API Key, the tenant name is required":"APIを入力しない場合、テナント名が必要です","If you want to use the backup later, you can export the configuration before deleting it":"後にバックアップを使用したい場合は、削除する前に設定をエクスポートできます","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"もしコンピューターを複数のユーザーで使用している場合(2つ以上のアカウントがある場合)、他のユーザーがあなたのアカウントにアクセスできないよう、パスワードを設定する必要があります。\nパスワードを設定しますか?","Import":"インポート","Import Destination URL":"バックアップ先のURLをインポート","Import backup configuration":"バックアップの設定をインポート","Import completed, but no certificates were found after the import":"インポートが完了しましたが、証明書が見つかりませんでした","Import failed":"インポートできませんでした","Import from a file":"ファイルからインポート","Import metadata":"メタデータをインポート","Importing …":"インポートしています…","Include a file?":"含むファイル","Include expression":"次の文字列を含む","Include regular expression":"次の正規表現を含む","Incorrect answer, try again":"答えが正しくありません。もう一度試してください","Individual builds for developers only. Not for use with important data.":"開発者用の個別のビルドです。重要なデータのバックアップには使用しないでください。","Information":"情報","Install":"インストール","Install failed:":"インストールできませんでした:","Invalid characters in path":"無効な文字がパスに含まれています","Invalid retention time":"無効な保持期間が設定されています","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"FTPサーバーの中にはパスワードを入力せずに接続できるものがあります。\nこのFTPサーバーは、パスワード無しのログインをサポートしていますか?","KByte":"キロバイト","KByte/s":"キロバイト秒","Keep a specific number of backups":"指定した数のバックアップを保存","Keep all backups":"全てのバックアップを保存","Keystone API version":"Keystone APIのバージョン","Language in user interface":"言語設定","Last month":"先月","Last successful backup:":"最後に成功したバックアップ:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"最後に成功した復元:{{time}}({{duration || '0秒'}} 間)","Latest":"最新","Libraries":"ライブラリー","Listing backup dates …":"バックアップの日付を一覧表示しています…","Listing remote files for purge …":"削除するリモートファイルの一覧を作成しています…","Listing remote files …":"リモートファイルの一覧を作成しています…","Live":"ライブ","Load a configuration from an exported job or a storage provider":"エクスポートしたジョブまたはストレージ提供者から設定を読み込む","Load destination from an exported job or a storage provider":"エクスポートしたジョブまたはストレージ提供者から、バックアップ先を読み込む","Load older data":"さらに古いデータを読み込む","Loading ...":"読み込んでいます…","Loading remote storage usage ...":"リモートストレージの使用量を読み込んでいます…","Loading …":"読み込んでいます…","Local Repository":"ローカルのリポジトリー","Local database for":"のデータベース","Local database path:":"ローカルのデータベースのパス:","Local repository":"ローカルのリポジトリー","Local storage":"ローカルストレージ","Location":"場所","Location where buckets are created":"バケットを作成する場所","Log data for {{Backup.Backup.Name}}":"{{Backup.Backup.Name}}のログデータ","Log data from the server":"サーバー上のログデータ","Log out":"ログアウト","MByte":"メガバイト","MByte/s":"メガバイト秒","Maintenance":"メンテナンス","Manually type path":"手動でパスを入力","Max download speed":"最大ダウンロード速度","Max upload speed":"最大アップロード速度","Menu":"メニュー","Microsoft SQL Database:":"Microsoft SQLデータベース:","Microsoft SQL Databases":"Microsoft SQLデータベース","Minimum redundancy":"最小の冗長性","Minimum redundancy is 1.0":"最小の冗長性は1.0です","Minutes":"分","Missing name":"名前がありません","Missing passphrase":"パスフレーズがありません","Missing sources":"バックアップ元のファイルがありません","Modified":"更新","Mon":"月曜日","Months":"月","Move existing database":"既存のデータベースを移動","Move failed:":"移動できませんでした:","My Documents":"マイドキュメント","My Music":"マイミュージック","My Photos":"マイフォト","My Pictures":"マイピクチャ","Name":"名前","Never":"未実行","New update found: {{message}}":"新しいアップデートが見つかりました:{{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"新しいユーザー名は{{user}}です。\n新規の制限ユーザーを使用するためのログイン情報を更新しました","Next":"次へ","Next scheduled run:":"次の実行予定日時:","Next scheduled task:":"次に予定されているタスク:","Next task:":"次のタスク:","Next time":"次回","No":"いいえ","No editor found for the "{{backend}}" storage type":""{{backend}}" の保存領域の種類に関するエディターが見つかりませんでした","No encryption":"暗号化なし","No items selected":"アイテムが選択されていません","No items to restore, please select one or more items":"復元するアイテムがありません。1つ以上のアイテムを選択してください","No passphrase entered":"パスフレーズが入力されていません","No scheduled tasks":"予定されているタスクはありません","No, my machine has only a single account":"いいえ、私のコンピューターには1つのアカウントしかありません","Non-matching passphrase":"パスフレーズが一致しません","None / disabled":"なし / 無効","Not using encryption":"暗号化を行っていません","Nothing will be deleted. The backup size will grow with each change.":"バックアップは削除されません。バックアップのサイズはその都度の変更に従って大きくなります。","OK":"OK","Once there are more backups than the specified number, the oldest backups are deleted.":"指定した数以上のバックアップが作成された場合、古いバックアップから削除されます。","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack オブジェクトストレージ / Swift","Openstack API Key are not supported in v3 keystone API.":"Openstack APIキーはバージョン3のkeystone APIではサポートされていません。","Operating System":"オペレーティングシステム","Operation":"操作","Operation failed:":"操作に失敗しました:","Operations:":"操作:","Optional authentication password":"認証に必要なパスワード(オプション)","Optional authentication username":"認証に必要なユーザー名(オプション)","Options":"オプション","Options added here are applied to all backups, but can be overridden in each individual backup":"ここで追加したオプションは全てのバックアップに適用されますが、それぞれのバックアップの設定で上書きすることができます。","Original location":"元の場所","Others":"その他","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"バックアップは時間の経過につれて自動的に削除されます。7日ごと、4週ごと、12ヶ月ごとのバックアップはそれぞれ保持されます。最低でも1つはバックアップが残ります。","Overwrite":"上書き","Passphrase":"パスフレーズ","Passphrase (if encrypted)":"パスフレーズ(暗号化されている場合)","Passphrase changed":"パスフレーズを変更しました","Passphrases are not matching":"パスフレーズが一致しません","Passphrases do not match":"パスフレーズが一致しません","Password":"パスワード","Patching files with local blocks …":"ファイルをローカルのブロックで修復しています…","Path":"パス","Path not found":"パスが見つかりません","Path on server":"サーバー上のパス","Path or subfolder in the bucket":"パスまたはバケットのサブフォルダー","Pause":"一時停止","Pause after startup or hibernation":"起動時またはハイバネート時に一時停止","Pause options":"一時停止の設定","Permissions":"権限","Pick location":"場所を入力","Point to your backup files and restore from there":"バックアップファイルを指定し、そこから復元","Port":"ポート","Prevent tray icon automatic log-in":"トレイアイコンの自動ログインを行わない","Previous":"前へ","Progress:":"進行度:","ProjectID is optional if the bucket exist":"バケットが存在する場合、ProjectIDはオプションです","Proprietary":"サービス","Purging files complete!":"ファイルを削除しました!","Purging files …":"ファイルを削除しています…","Rebuilding local database …":"ローカルデータベースを再構築しています…","Recreate (delete and repair)":"改めて作成(削除して修復)","Recreating database …":"データベースを改めて作成しています…","Registering temporary backup …":"一時的なバックアップを登録しています…","Relative paths not allowed":"相対パスは許可されていません","Reload":"更新","Remote":"リモート","Remote Path":"リモートのパス","Remote Repository":"リモートのリポジトリー","Remote path":"リモートのパス","Remote repository":"リモートのリポジトリー","Remote volume size":"リモートのボリュームのサイズ","Remove":"削除","Remove option":"削除の設定","Removed files":"削除したファイル","Repair":"修復","Repairing database …":"データベースを修復しています…","Repeat Passphrase":"パスフレーズ(再度)","Reporting:":"報告:","Reset":"リセット","Restore":"復元","Restore complete!":"復元しました!","Restore files":"ファイルの復元","Restore files from {{backupname}}":"{{backupname}}から復元","Restore files …":"ファイルを復元…","Restore from":"データを復元するバックアップ","Restore from backup configuration":"バックアップの設定から復元","Restore from configuration ...":"設定から復元...","Restore options":"復元オプション","Restore read/write permissions":"読み込み/書き込み権限を復元","Restored Files":"復元したファイル","Restored Folders":"復元したフォルダー","Restored Symlinks":"復元したシンボリックリンク","Restoring files …":"ファイルを復元しています…","Resume":"再開","Rewritten File Lists":"ファイルの一覧を書き換えました","Run again every":"実行タイミング","Run now":"すぐに実行","Running ....":"実行しています…","Running commandline entry":"コマンドラインのエントリーを実行しています","Running task:":"タスクを実行しています:","Running …":"実行しています…","S3 Compatible":"S3互換","Same as the base install version: {{channelname}}":"基本インストールのバージョンと同じです:{{channelname}}","Sat":"土曜日","Satellite":"サテライト","Save":"保存","Save and repair":"保存して修復","Save different versions with timestamp in file name":"ファイル名にタイムスタンプを入れて、異なるバージョンとして保存","Save immediately":"即座に保存","Scanning existing files …":"ファイルをスキャンしています…","Scanning for local blocks …":"ローカルのブロックをスキャンしています…","Schedule":"スケジュール","Search":"検索","Search for files":"ファイルの検索","Seconds":"秒","Select a log level and see messages as they happen:":"ログの水準を選択すると、メッセージを出力順に表示します。","Select files":"ファイルの選択","Server":"サーバー","Server and port":"サーバーとポート","Server hostname or IP":"サーバーのホスト名またはIPアドレス","Server is currently paused,":"サーバーは現在停止中です。","Server is currently paused, do you want to resume now?":"サーバーは現在停止中です。再開しますか?","Server password":"サーバーのパスワード","Server paused":"サーバーを一時停止しました","Settings":"設定","Show":"表示","Show advanced editor":"拡張エディターを表示","Show hidden folders":"隠しフォルダーを表示","Show log":"ログを表示","Show log …":"ログを表示...","Sia server password":"Siaサーバーのパスワード","Smart backup retention":"スマートなバックアップ保持期間","Some OpenStack providers allow an API key instead of a password and tenant name":"OpenStackのサービス提供者の中には、パスワードとテナント名の代わりにAPIキーを許可するものもあります","Some S3 providers might only be compatible with a certain client library":"いくつかのS3プロバイダーは特定のクライアントライブラリーにしか対応していないおそれがあります","Source Data":"バックアップ元","Source Files":"バックアップ元のファイル","Source data":"バックアップ元","Source folders":"バックアップ元のフォルダー","Source:":"バックアップ元:","Specific builds for developers only. Not for use with important data.":"開発者用の特定のビルドです。重要なデータのパックアップには使用しないでください。","Standard protocols":"標準プロトコル","Start":"開始","Starting backup …":"バックアップを開始しています…","Starting restore …":"復元を開始しています…","Starting the restore process …":"復元プロセスを開始しています…","Stop after current file":"現在のファイルの後で停止","Stop after the current file":"現在のファイルの後で停止","Stop now":"すぐに停止","Stop running backup":"実行中のバックアップを停止","Stop running task":"実行中のタスクを停止","Stopping after the current file:":"現在のファイルの後で停止:","Stopping task:":"タスクを停止しています:","Storage Type":"ストレージのタイプ","Storage class":"ストレージのクラス","Storage class for creating a bucket":"バケットを作成する際のストレージのクラス","Stored":"保存しました","Strong":"強","Success":"成功","Sun":"日曜日","Symbolic link":"シンボリックリンク","System Files":"システムファイル","System default ({{levelname}})":"システムの既定値({{levelname}})","System files":"システムファイル","System info":"システムの情報","System properties":"システムのプロパティー","TByte":"テラバイト","TByte/s":"テラバイト秒","Task is running":"タスクは実行中です","Temporary Files":"一時ファイル","Temporary files":"一時ファイル","Tenant Name":"テナント名","Test connection":"接続をテスト","Testing ...":"テストしています…","Testing connection ...":"接続をテストしています…","Testing permissions …":"権限をテストしています…","Testing permissions...":"権限をテストしています…","Testing …":"テストしています…","The API key":"APIキー","The backup is missing, has it been deleted?":"バックアップがありません。削除された模様です","The backup was temporary and does not exist anymore, so the log data is lost":"バックアップは一時的で既に存在しないため、ログデータは削除されています","The bucket name should be all lower-case, convert automatically?":"バケット名には小文字のみが使用できます。自動的に変換しますか?","The bucket name should start with your username, prepend automatically?":"バケット名はユーザー名で開始する必要があります。自動的に追加しますか?","The configuration should be kept safe. Are you sure you want to save an unencrypted file containing your passwords?":"設定ファイルは安全に保存すべきです。ファイルにはパスワードが含まれていますが、暗号化せずに保存してよろしいですか?","The connection to the server is lost, attempting again in {{time}} ...":"サーバーとの接続が失われました。{{time}}後に再試行します…","The dark theme (by Michal)":"ダークテーマ(by Michal)","The default blue on white theme (by Alex)":"既定の白地に青テーマ(by Alex)","The encryption passphrase":"暗号化用のパスフレーズ","The folder {{folder}} does not exist.\nCreate it now?":"フォルダー「{{folder}}」は存在しません。\n作成しますか?","The passwords do not match":"パスワードが一致しません","The path does not appear to exist, do you want to add it anyway?":"パスは存在しないようですが、追加してよろしいですか?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"パスにはスラッシュから始まる絶対パスを指定してください","The region parameter is only applied when creating a new bucket":"リージョンパラメーターは、バケットを新たに作成する際にのみ適用されます","The region parameter is only used when creating a bucket":"リージョンパラメーターは、バケットを作成する際にのみ使用されます","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"サーバーの証明書を検証できませんでした。\n次のハッシュ値をもつSSLの証明書を承認してよろしいですか:{{hash}}","The storage class affects the availability and price for a stored file":"保存領域のクラスは、保存されているファイルの利用可能性と価格に影響します","The target folder contains encrypted files, please supply the passphrase":"バックアップ先のフォルダーには暗号化されているファイルがあります。パスフレーズを指定してください","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"ユーザーに付与されている権限が多すぎます。選択したパスに関する権限のみを有する制限ユーザーを新たに作成しますか?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"このバックアップは別のオペレーティングシステムで作成されました。バックアップの復元先となるフォルダーを指定せずにファイルを復元すると、予期しない場所にファイルが復元される可能性があります。復元先のフォルダーを選択せず続行してよろしいですか?","This month":"当月","This week":"この週","Throttle settings":"速度制限の設定","Thu":"木曜日","Time":"時間","To File":"ファイルへ","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"「{{name}}」の全てのリモートファイルを本当に削除したい場合は、表示されている語を以下に入力してください","To export without a passphrase, uncheck the \"Encrypt file\" box":"パスフレーズなしでエクスポートするには、「ファイルを暗号化」のチェックを外してください","Today":"今日","Trust host certificate?":"ホストの証明書を信用しますか?","Trust server certificate?":"サーバーの証明書を信用しますか?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"開発中の新機能を試してみてください。現在、最も安定したバージョンが利用できます。本番環境で使用する前に、データの復元のテストを行ってください。","Tue":"火曜日","Type passphrase here.":"ここにパスフレーズを入力してください。","Type to highlight files":"見つけたいファイル名を入力してください","Unknown backup size and versions":"バックアップのサイズとバージョンが不明です","Until resumed":"再開するまで","Update channel":"アップデートチャンネル","Update failed:":"アップデートできませんでした:","Updating with existing database":"既存のデータベースでアップデートしています","Uploaded files":"アップロードしたファイル","Uploading verification file …":"検証用ファイルをアップロードしています…","Usage statistics":"使用状況に関する統計","Usage statistics, warnings, errors, and crashes":"使用状況に関する統計、警告、エラー、クラッシュ","Use SSL":"SSLを使用","Use existing database?":"既存のデータベースを使用しますか?","Use weak passphrase":"弱いパスフレーズを使用","Useless":"弱すぎます","User data":"ユーザーデータ","User domain name":"ユーザーのドメイン名","User has too many permissions":"ユーザーに付与されている権限が多すぎます","User interface settings":"インターフェースの設定","Username":"ユーザー名","Vacuuming database …":"データベースのバキュームを行っています…","Validating …":"検証しています…","Verifications":"検証","Verify files":"ファイルを検証","Verifying ...":"検証しています…","Verifying answer":"回答を検証しています","Verifying backend data …":"バックエンドのデータを検証しています…","Verifying files …":"ファイルを検証しています…","Verifying remote data …":"リモートデータを検証しています…","Verifying restored files …":"復元したファイルを検証しています…","Verifying …":"検証しています…","Version ID":"バージョンID","Very strong":"最強","Very weak":"最弱","Visit us on":"関連リンク","WARNING: The remote database is found to be in use by the commandline library":"警告:リモートのデータベースはコマンドラインのライブラリーによって使用されています","WARNING: This will prevent you from restoring the data in the future.":"警告:これを行うと将来データを復元できなくなります。","Waiting for task to begin":"タスクが開始するのを待機しています","Waiting for task to start ....":"タスクの開始を待機しています…","Waiting for upload to finish …":"アップロードの完了を待機しています…","Warnings, errors and crashes":"警告、エラー、クラッシュ","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"我々はOpenCollective、PayPal、 BountySourceやその他の暗号通貨で寄付をお受けしています。","We recommend that you encrypt all backups stored outside your system":"システム外に保存する全てのバックアップに関しては、暗号化を行うことを推奨します","Weak":"弱","Weak passphrase":"弱いパスフレーズ","Wed":"水曜日","Weeks":"週","Where do you want to restore from?":"どこから復元しますか?","Where do you want to restore the files to?":"復元したファイルはどこに保存しますか?","Years":"年","Yes":"はい","Yes, I have stored the passphrase safely":"はい、パスフレーズを安全な場所に保存しました","Yes, I understand the risk":"はい、リスクを理解しました","Yes, I'm brave!":"はい、問題ありません!","Yesterday":"昨日","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"SSL証明書を読み込まずにMonoを実行しているようです。Mozillaから信頼済の証明書の一覧をインポートしますか?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"既存のデータベースからデータベースのパスを変更しようとしています。続行してよろしいですか?","You are currently running {{appname}} {{version}}":"あなたは現在 {{appname}} {{version}}を使用しています","You can stop the backup after any file uploads currently in progress have finished.":"現在実行中のファイルのアップロードが終了してからバックアップを停止することができます。","You can stop the task immediately, or allow the process to continue its current file and then stop.":"タスクを即座に停止するか、あるいは、現在のファイルの処理を続行してから停止することができます。","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"暗号化モードが変更されています。データが壊れる可能性があるため、新しいバックアップを代わりに作成することを推奨します","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"パスフレーズが変更されましたが、これはサポートされていません。新しいバックアップを代わりに作成することを推奨します。","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"バックアップを暗号化しないように設定されていますが、リモートサーバーに保存する全てのデータに関しては、暗号化を行うことが推奨されます。","You have chosen to restore to a new location, but not entered one":"新しい場所に復元するよう選択しましたが、場所が入力されていません","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"強力なパスフレーズを生成しました。パスフレーズの紛失時にもデータを復元できるよう、パスフレーズを安全な場所にコピーして保存してください。","You must choose at least one source folder":"最低1つのバックアップ元のフォルダーを選択してください","You must enter a domain name to use v3 API":"バージョン3のAPIを使用するにはドメイン名を入力してください","You must enter a name for the backup":"バックアップの名称を入力してください","You must enter a passphrase or disable encryption":"パスフレーズを入力するか、暗号化を無効にしてください","You must enter a password to use v3 API":"バージョン3のAPIを使用するにはパスワードを入力してください","You must enter a positive number of backups to keep":"保存するバックアップの数を入力してください","You must enter a tenant (aka project) name to use v3 API":"バージョン3のAPIを使用するにはテナント(プロジェクト)名を入力してください","You must enter a tenant name if you do not provide an API Key":"APIキーを指定しない場合はテナント名の入力が必要です","You must enter a valid duration for the time to keep backups":"バックアップを保持する期間を正しく指定してください","You must enter a valid retention policy string":"保持期間のポリシーを正しく入力してください","You must enter either a password or an API Key":"パスワードかAPIキーを入力してください","You must enter either a password or an API Key, not both":"パスワードまたはAPIキーのどちらかを入力してください","You must fill in the password":"パスワードを入力してください","You must fill in the server name or address":"サーバー名またはアドレスを入力してください","You must fill in the username":"ユーザー名を入力してください","You must fill in {{field}}":"{{field}}を入力してください","You must select or fill in the AuthURI":"AuthURIを選択または入力してください","You must select or fill in the server":"サーバーを選択または入力してください","You must specify a path":"パスを指定してください","You should fill in {{field}}{{reason}}":"{{field}}を入力してください。理由:{{reason}}","Your files and folders have been restored successfully.":"ファイルとフォルダーを復元しました。","Your passphrase is easy to guess. Consider changing passphrase.":"設定したパスフレーズは容易に推測できます。パスフレーズの変更を考慮してください。","bucket/folder/subfolder":"バケット/フォルダー/サブフォルダー","byte":"バイト","byte/s":"バイト秒","custom":"ユーザー定義","public usage statistics":"公開されている使用状況の統計","resume now":"再開","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"{{appname}}は最初に{{dev1}}と{{dev2}}によって開発されました。{{appname}}は{{websitename}}からダウンロードできます。{{appname}}は{{licensename}}によってライセンスされています。","{{files}} files ({{size}}) to go {{speed_txt}}":"残り{{files}} ファイル ({{size}}) {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":"{{item.Backup.Metadata.TargetSizeString}} / {{$count}} バージョン","{{number}} Hour":"{{number}}時間","{{number}} Hours":"{{number}}時間","{{number}} Minutes":"{{number}}分","{{time}} (took {{duration}})":"{{time}}(完了までの時間 {{duration}})","…loading…":"…読み込んでいます…"}); gettextCatalog.setStrings('ko', {"- pick an option -":"- 옵션을 선택하십시오 -","...loading...":"...로딩...","API Key":"API 키","About":"정보","About {{appname}}":"{{appname}} 정보","Access Key":"접근 키","Access denied":"접근 불가","Access to user interface":"액세스 설정","Account name":"계정 이름","Activate":"활성화","Activate failed:":"활성화 실패","Add a new backup":"새 백업 추가","Add a path directly":"경로 직접 추가","Add advanced option":"고급 옵션 추가","Add backup":"백업 추가","Add filter":"필터 추가","Add path":"경로 추가","Added":"추가됨","Adjust bucket name?":"버켓 이름을 적용 하시겠습니까?","Adjust path name?":"경로 이름을 적용 하시겠습니까?","Advanced Options":"고급 옵션","Advanced options":"고급 옵션","Advanced:":"고급:","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"모든 사용 보고서는 익명으로 전송되며 개인 정보를 포함하지 않습니다. 여기에는 하드웨어 및 운영 체제, 백엔드 유형, 백업 기간, 원본 데이터의 전체 크기 및 이와 유사한 데이터에 대한 정보가 포함되어 있습니다. 경로, 파일 이름, 사용자 이름, 암호 또는 이와 유사한 중요한 정보는 포함되어 있지 않습니다.","Allow remote access (requires restart)":"원격 액세스 허용 (다시 시작 필요)","Allowed days":"허용된 요일","Anonymous usage reports":"익명 사용 보고서","AuthID":"AuthID","Automatically run backups.":"자동으로 백업 실행","Back":"이전","Backup destination":"백업 대상","Backup location":"백업 위치","Backup retention":"백업 보존","Backup:":"백업:","Beta":"Beta","Browse":"찾아보기","Bucket Name":"Bucket 이름","Bucket name":"Bucket 이름","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"원격 액세스를 허용하면 서버는 네트워크의 모든 컴퓨터에서 접속할 수 있습니다. 이 옵션을 사용하도록 설정하려면 방화벽으로 보호된 네트워크에서 컴퓨터를 사용하고 있는지 확인하십시오.","By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option.":"기본적으로 트레이 아이콘은 토큰으로 잠금을 해제합니다. 이렇게 하면 다른 사용자가 암호를 입력하도록 요구하면서 트레이 아이콘에서는 사용자 인터페이스에 액세스할 수 있습니다. 트레이 아이콘에서 사용자 인터페이스에 액세스하는 때도 암호를 입력해야 하는 경우 이 옵션을 사용하도록 설정하십시오.","Canary":"Canary","Cancel":"취소","Cannot move to existing file":"기존 파일로 이동할 수 없습니다","Changelog":"변경로그","Changelog for {{appname}} {{version}}":"{{appname}} {{version}}에 대한 변경로그","Check failed:":"확인 실패:","Check for updates now":"업데이트 확인","Checking ...":"확인 중 ...","Checking for updates …":"업데이트 확인 중 …","Chose a storage type to get started":"시작할 저장소 유형을 선택하세요","Click to set throttle options":"속도 제한 옵션을 설정하려면 클릭","Commandline …":"명령줄 …","Compact now":"최적화 실행","Compacting remote data ...":"원격 데이터 압축 중 ...","Computer":"내 PC","Configuration file:":"구성 파일:","Configuration:":"구성:","Configure a new backup":"새 백업 구성","Confirm encryption passphrase":"암호화 암호 확인","Confirm password":"암호 확인","Connect":"연결","Connect now":"지금 연결하기","Connecting to server …":"서버에 연결하는 중 …","Connecting to task ....":"작업에 연결하는 중 ....","Connecting...":"연결하는 중 ...","Connection lost":"연결이 끊어짐","Connection worked!":"연결되었습니다!","Continue":"계속","Copied!":"복사됨!","Copy":"복사","Copy Destination URL to Clipboard":"대상 URL을 클립보드에 복사","Core options":"핵심 옵션","Crashes only":"충돌만","Create bug report …":"버그 리포트 생성 …","Create folder?":"폴더를 생성하시겠습니까?","Creating bug report …":"버그 리포트 생성 중 …","Current action:":"현재 작업:","Current file:":"현재 파일:","Custom backup retention":"사용자 지정 백업 보존","Database …":"데이터베이스 …","Days":"일","Default":"기본값","Default ({{channelname}})":"기본값 ({{channelname}})","Default options":"기본 옵션","Delete":"삭제","Delete backup":"백업 삭제","Delete backups that are older than":"이전 백업 삭제","Delete local database":"로컬 데이터베이스 삭제","Delete remote files":"원격 파일 삭제","Delete the local database":"로컬 데이터베이스 삭제","Delete …":"삭제 …","Deleted":"삭제됨","Deleted Versions":"삭제된 버전들","Deleted files":"삭제된 파일들","Deleting unwanted files …":"원치 않는 파일 삭제 중 …","Description (optional)":"설명 (선택 사항)","Desktop":"바탕 화면","Destination":"대상","Destination path":"대상 경로","Direct restore from backup files ...":"백업 파일에서 직접 복원 ...","Disabled":"비활성화","Dismiss":"닫기","Dismiss all":"모두 닫기","Display and color theme":"인터페이스 테마","Domain Name":"도메인 이름","Donation messages":"기부 메시지","Donation messages are hidden, click to show":"기부 메시지가 숨겨져 있습니다. 표시하려면 클릭하십시오.","Donation messages are visible, click to hide":"기부 메시지가 표시되어 있습니다. 숨기려면 클릭하십시오.","Done":"완료","Download":"다운로드","Downloading files …":"파일 다운로드 중 …","Duplicati Website":"Duplicati Website","Duplicati forum":"Duplicati 포럼","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"Duplicati는 시작할 때 실행되지만 지정된 시간 동안 일시 중지된 상태로 유지됩니다. Duplicati는 최소한의 시스템 리소스를 차지하며 백업이 실행되지 않습니다.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"각 백업에는 연결된 로컬 데이터베이스가 있으며, 이 데이터베이스는 로컬 컴퓨터에 원격 백업에 대한 정보를 저장합니다.\\n이렇게 하면 많은 작업을 더 빠르게 수행할 수 있으며 각 작업에 대해 내려받아야 하는 데이터의 양이 줄어듭니다.","Edit as list":"목록으로 편집","Edit as text":"텍스트로 편집","Edit …":"편집 …","Encrypt file":"파일 암호화","Encryption":"암호화","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"보존 전략을 직접 입력합니다. 자리 표시자는 일/주/년이 각각 D/W/Y이고 U는 무제한입니다. 예) 7D:1D,4W:1W,36M:1M. 이 예제는 다음 7일 각각에 대해 하나의 백업을 유지하며, 다음 4주마다 하나씩, 다음 36개월마다 하나씩 백업합니다. 이것은 또한 1W:1D, 1M:1W,3Y:1M으로 표현할 수 있습니다.","Enter backup passphrase, if any":"백업 암호가 있는 경우 입력합니다.","Enter configuration details":"구성 세부 정보 입력","Enter one option per line in command-line format, eg. {0}":"명령줄 형식으로 줄당 하나의 옵션을 입력합니다. (예: {0})","Enter the destination path":"대상 경로 입력","Error":"오류","Error!":"오류!","Errors and crashes":"오류 및 충돌","Exclude":"제외","Experimental":"Experimental","Export":"내보내기","Export backup configuration":"백업 구성 내보내기","Export configuration":"구성 내보내기","Export passwords":"암호 내보내기","Export …":"내보내기 …","Exporting …":"내보내는 중 …","Fetching path information …":"경로 정보를 가져오는 중 …","Files larger than:":"큰 파일","Filters":"필터","Folder path":"폴더 경로","Fri":"금요일","GByte":"GByte","GByte/s":"GByte/s","General":"일반","General backup settings":"일반 백업 설정","General options":"일반 옵션","Generate":"생성","Getting file versions …":"파일 버전을 구하는 중 ...","Hidden files":"숨김 파일","Hide":"숨기기","Hide hidden folders":"숨김 폴더 숨기기","Home":"홈","Hours":"시","How do you want to handle existing files?":"기존 파일을 어떻게 처리하시겠습니까?","If a date was missed, the job will run as soon as possible.":"날짜를 놓친 경우 작업이 가능한 한 빨리 실행됩니다.","If at least one newer backup is found, all backups older than this date are deleted.":"새 백업이 발견되면 이 날짜보다 오래된 모든 백업이 삭제됩니다.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"백업 및 원격 저장소가 동기화되지 않았으면 Duplicati는 데이터베이스를 동기화하기 위해 수리 작업을 수행해야 합니다.\\n수리할 수 없는 경우 로컬 데이터베이스를 삭제하고 다시 생성할 수 있습니다.","Import Destination URL":"대상 URL 가져오기","Import backup configuration":"백업 구성 가져오기","Import failed":"가져오기 실패","Import from a file":"파일에서 가져오기","Individual builds for developers only. Not for use with important data.":"개발자 전용 개별 빌드입니다. 중요한 데이터와 함께 사용하지 마십시오.","Install":"설치","KByte":"KByte","KByte/s":"KByte/s","Keep a specific number of backups":"특정 수의 백업 유지","Keep all backups":"모든 백업 유지","Language in user interface":"인터페이스 언어","Last month":"지난 달","Last successful backup:":"마지막으로 성공한 백업:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"마지막으로 성공한 복원: {{time}} ({{duration || '0초'}} 소요)","Latest":"최근","Libraries":"라이브러리","Load a configuration from an exported job or a storage provider":"내보낸 작업 또는 저장소 공급자에서 구성 로드","Load destination from an exported job or a storage provider":"내보낸 작업 또는 저장소 공급자에서 대상 로드","Load older data":"이전 데이터 로드","Loading ...":"로드 중 ...","Loading …":"로딩 …","Local database for":"로컬 데이터베이스:","Local database path:":"로컬 데이터베이스 경로:","Local repository":"로컬 리포지토리","Local storage":"로컬 저장소","Location":"위치","Log data from the server":"서버에서 가져온 로그 데이터","MByte":"MByte","MByte/s":"MByte/s","Maintenance":"유지 관리","Manually type path":"수동 경로 입력","Max download speed":"최대 다운로드 속도","Max upload speed":"최대 업로드 속도","Microsoft SQL Database:":"Microsoft SQL Database:","Minutes":"분","Mon":"월요일","Months":"분","Move existing database":"기존 데이터베이스 이동","My Documents":"문서","My Music":"음악","My Pictures":"사진","Name":"이름","New update found: {{message}}":"새 업데이트 발견: {{message}}","Next":"다음","Next scheduled run:":"다음 백업 일정:","Next scheduled task:":"다음 예약 작업:","Next time":"시작","No":"아니오","No encryption":"암호화 없음","No items selected":"선택된 항목 없음","No items to restore, please select one or more items":"복원할 항목이 없습니다. 하나 이상의 항목을 선택하십시오.","None / disabled":"비활성화","Nothing will be deleted. The backup size will grow with each change.":"아무 것도 삭제되지 않습니다. 백업 크기는 변경될 때마다 커집니다.","OK":"확인","Once there are more backups than the specified number, the oldest backups are deleted.":"지정된 수보다 많은 백업이 있으면 가장 오래된 백업이 삭제됩니다.","Operations:":"작업:","Options":"옵션","Options added here are applied to all backups, but can be overridden in each individual backup":"여기에 추가된 옵션은 모든 백업에 적용되지만, 개별 백업에서 재정의할 수 있습니다.","Original location":"원래 위치","Others":"기타","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"시간이 지남에 따라 백업이 자동으로 삭제됩니다. 지난 7일, 지난 4주, 지난 12개월 각각에 대해 하나의 백업이 유지됩니다. 항상 하나 이상의 남은 백업이 있습니다.","Overwrite":"덮어쓰기","Passphrase":"암호","Password":"암호","Path on server":"서버의 경로","Pause":"일시 중지","Pause after startup or hibernation":"부팅 또는 최대 절전 모드 후 일시 중지","Pause options":"일시 중지 옵션","Permissions":"권한","Pick location":"위치 선택","Point to your backup files and restore from there":"백업 파일을 선택하고 복원","Prevent tray icon automatic log-in":"트레이 아이콘 자동 로그인 방지","Previous":"이전","Progress:":"진행률:","Proprietary":"독점","Recreate (delete and repair)":"재생성 (삭제 및 수리)","Remote":"원격","Remote path":"원격 경로","Remote repository":"원격 저장소","Remote volume size":"원격 볼륨 크기","Remove":"제거","Remove option":"설정 제거","Removed files":"파일들 제거","Repair":"수리","Repeat Passphrase":"암호 재입력","Reporting:":"리포트:","Reset":"초기화","Restore":"복원","Restore complete!":"저장이 완료되었습니다!","Restore files":"파일 복원","Restore files from {{backupname}}":"{{backupname}}에서 파일 복원","Restore files …":"파일 복원 …","Restore from":"버전 선택","Restore from backup configuration":"백업 구성에서 복원","Restore from configuration ...":"구성 파일에서 복원 ...","Restore options":"복원 옵션","Restore read/write permissions":"읽기/쓰기 권한 복원","Restoring files …":"파일 복원 중 …","Run again every":"실행 주기","Run now":"백업 실행","Running ....":"실행 중 ...","Same as the base install version: {{channelname}}":"기본 설치 버전과 동일: {{channelname}}","Sat":"토요일","Save":"저장","Save and repair":"저장 및 수리","Save different versions with timestamp in file name":"파일명에 타임스탬프 추가","Schedule":"일정","Search":"검색","Search for files":"파일 검색","Seconds":"초","Select a log level and see messages as they happen:":"로그 레벨을 선택하고 발생하는 메시지를 확인하십시오:","Select files":"파일 선택","Server state properties":"서버 상태 속성","Settings":"설정","Show":"표시","Show advanced editor":"고급 편집기 표시","Show hidden folders":"숨김 폴더 표시","Show log":"로그 표시","Show log …":"로그 표시 …","Smart backup retention":"스마트 백업 보존","Source Data":"원본 데이터","Source data":"원본 데이터","Source folders":"원본 폴더","Source:":"대상:","Specific builds for developers only. Not for use with important data.":"개발자 전용 특정 빌드입니다. 중요한 데이터와 함께 사용하지 마십시오.","Standard protocols":"표준 프로토콜","Starting backup …":"백업 시작 중 …","Stop after current file":"현재 파일까지 진행 후 중지","Stop after the current file":"현재 파일까지 진행 후 중지","Stop now":"지금 중지","Stop running backup":"백업 실행 중지","Stopping after the current file:":"현재 파일까지 진행 후 중지 중:","Storage Type":"저장소 유형","Strong":"강한","Success":"성공","Sun":"일요일","System files":"시스템 파일","System info":"시스템 정보","System properties":"시스템 속성","TByte":"TByte","TByte/s":"TByte/s","Temporary Files":"임시 파일","Temporary files":"임시 파일","Test connection":"연결 테스트","Testing ...":"테스트 중 ...","Testing connection ...":"연결 테스트 중 ...","The connection to the server is lost, attempting again in {{time}} ...":"서버에 대한 연결이 끊어져 {{time}} 후 다시 시도합니다...","The dark theme (by Michal)":"어두운 테마 (by Michal)","The default blue on white theme (by Alex)":"파란색의 밝은 테마 (by Alex)","The passwords do not match":"암호가 일치하지 않음","This month":"이번 달","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"이 옵션은 최대 백업 또는 파일 크기와 관련이 없으며 중복 제거 속도에도 영향을 주지 않습니다. 원격 볼륨 크기를 변경하기 전에 이 페이지를 참조하십시오.","This week":"이번 주","Throttle settings":"속도 제한 설정","Thu":"목요일","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"현재 작업 중인 새로운 기능을 사용해 보십시오. 현재 가장 안정적인 버전을 사용할 수 있습니다. 프로덕션 환경에서 이 데이터를 사용하기 전에 데이터를 복원합니다.","Tue":"화요일","Type to highlight files":"파일을 강조 표시하려면 입력","Until resumed":"다시 시작할 때까지","Update channel":"업데이트 채널","Usage reports help us improve the user experience and evaluate impact of new features. We use them to generate {{'public usage statistics' | translate}}":"사용 보고서는 사용자 환경을 개선하고 새로운 기능의 영향을 평가하는 데 도움이 됩니다. {{'공개 사용 통계' | translate}}를 만드는 데 사용합니다.","Usage statistics":"사용 통계","Usage statistics, warnings, errors, and crashes":"사용 통계, 경고, 오류 및 충돌","Useless":"쓸모없는","User data":"사용자 데이터","User interface settings":"인터페이스 설정","Username":"사용자 이름","Verify files":"무결성 확인","Verifying ...":"확인 중 ...","Verifying backend data …":"백엔드 데이터 확인 중 …","Verifying files …":"파일 검증 중 …","Verifying remote data …":"원격 데이터 확인 중 …","Very strong":"매우 강한","Very weak":"매우 약한","Visit us on":"Visit us on","Waiting for upload to finish …":"업로드가 완료되기를 기다리는 중 …","Warnings, errors and crashes":"경고, 오류 및 충돌","Weak":"약한","Wed":"수요일","Weeks":"주","Where do you want to restore from?":"어디에서 복원하시겠습니까?","Where do you want to restore the files to?":"파일을 어디에 복원하시겠습니까?","Years":"년","Yes":"예","Yes, I have stored the passphrase safely":"예, 암호를 안전하게 저장했습니다","Yes, I understand the risk":"네, 위험을 이해했습니다.","Yes, I'm brave!":"네,저는 용감합니다!","Yesterday":"어제","You are currently running {{appname}} {{version}}":"현재 사용 중: {{appname}} {{version}}","You can stop the backup after any file uploads currently in progress have finished.":"현재 진행 중인 파일 업로드가 완료된 후 백업을 중지할 수 있습니다.","You must enter a name for the backup":"백업 이름을 입력해야 합니다","You must fill in the password":"암호를 입력해야 합니다","You must fill in the server name or address":"서버 이름 또는 주소를 채워야합니다.","You must fill in the username":"사용자 이름을 채워야합니다.","You must specify a path":"경로를 지정해야 합니다.","byte":"byte","byte/s":"byte/s","custom":"사용자 지정","public usage statistics":"공개 사용 통계","resume now":"지금 다시 시작","{{files}} files ({{size}}) to go {{speed_txt}}":"{{files}} 파일 ({{size}}), 속도: {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":"{{item.Backup.Metadata.TargetSizeString}} / {{$count}} 버전","{{number}} Hour":"{{number}}시간 동안","{{number}} Hours":"{{number}}시간 동안","{{number}} Minutes":"{{number}}분 동안","{{time}} (took {{duration}})":"{{time}} ({{duration}} 소요)","…loading…":"…로딩…"}); gettextCatalog.setStrings('lt', {"- pick an option -":"- pasirinkite parametrą -","...loading...":"...įkeliama...","API Key":"API raktas","AWS Access ID":"AWS prieigos ID","AWS Access Key":"AWS prieigos raktas","AWS IAM Policy":"AWS IAM politika","About":"Apie","About {{appname}}":"Apie {{appname}}","Access Key":"Prieigos raktas","Access denied":"Prieiga uždrausta","Access to user interface":"Pasiekti vartotojo sąsają","Account name":"Paskyros vardas","Activate":"Aktyvuoti","Activate failed:":"Aktyvavimas nepavyko:","Add a new backup":"Pridėti naują kopiją","Add a path directly":"Pridėti kelią tiesiiogiai","Add advanced option":"Pridėti papildomą parametrą","Add backup":"Pridėti kopiją","Add filter":"Pridėti filtrą","Add path":"Pridėti kelią","Adjust bucket name?":"Keisti saugyklos pavadinimą?","Adjust path name?":"Keisti kelią?","Advanced Options":"Išplėstiniai parametrai","Advanced options":"Išplėstiniai parametrai","Advanced:":"Papildomai:","All Hyper-V Machines":"Visos Hyper-V mašinos","All Microsoft SQL Databases":"Visos Microsoft SQL duombazės","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Visos naudojimo ataskaitos siunčiamos anonimiškai ir jose nėra jokios asmeninės informacijos. Juose pateikiama informacija apie techninę įrangą ir operacinę sistemą, saugyklos tipą, kopijos kūrimo laiką, visų kopijuojamų failų dydį ir pan. Juose nėra kelių, failų pavadinimų, naudotojų, slaptažodžių ir panašios privačios informacijos.","Allow remote access (requires restart)":"Leisti nuotolinę prieigą (reikia paleisti iš naujo)","Allowed days":"Leidžiamos dienos","An existing file was found at the new location":"Naujoje vietoje rasti jau esantys failai","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Naujoje vietoje rasti jau esantys failai.\nAr tikrai norite duomenų bazę rašyti vietoj esamų failų?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"Buvo rasta esama vietinė duomenų saugykla.\nNaudojant tą pačią duombazę, komandinės eilutės ir serverio procesai galės veikti toje pačioje nuotolinėje saugykloje.\n\n Ar norite naudoti esamą duomenų bazę?","Anonymous usage reports":"Anoniminės naudojimo ataskaitos","Applications":"Programos","As Command-line":"Kaip komandinę eilutę","AuthID":"AuthID","Authentication password":"Autorizacijos slaptažodis","Authentication username":"Autorizacijos naudotojas","Autogenerated passphrase":"Automatiškai sugeneruota slapta frazė","Automatically run backups.":"Atsargines kopijas kurti automatiškai.","B2 Application Key":"B2 programos raktas","B2 Cloud Storage Account ID":"B2 debesų saugyklos paskyros ID","B2 Cloud Storage Application Key":"B2 debesų saugyklos programos raktas","Back":"Atgal","Backend modules:":"Kopijų saugyklos moduliai:","Backup destination":"Kopijų paskirties vieta","Backup location":"Kopijų saugojimo vieta","Backup retention":"Atsarginės kopijos saugojimo laikas","Backup:":"Kopija:","Beta":"Beta","Broken access":"Sugadinta prieiga","Browse":"Naršyti","Browser default":"Naršyklės numatyta reišmė","Bucket Name":"Saugyklos pavadinimas","Bucket create location":"Sukurti saugyklos vietą","Bucket create region":"Sukurti saugyklos regijoną","Bucket name":"Saugyklos pavadinimas","Bucket storage class":"Saugyklos klasė","Busy ...":"Užimtas...","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"Leidus nuotolinę prieigą, serveris atsakys į visas užklausas tinke. Jei įjungsite - įsitikinkite, kad kompiuteris yra už geros ugniasienės.","Cache Files":"Talpyklos failai","Canary":"Canary","Cancel":"Atšaukti","Cannot move to existing file":"Negalima perkelti į esamo failo vietą","Changelog":"Pakeitimų žurnalas","Changelog for {{appname}} {{version}}":"Programos {{appname}} {{version}} pakeitimų žurnalas","Check failed:":"Patikrinimas nepavyko:","Check for updates now":"Ieškoti atnaujinimų dabar","Checking ...":"Tikrinama...","Chose a storage type to get started":"Norėdami pradėti pasirinkite saugyklos tipą","Click the AuthID link to create an AuthID":"Norėdami sukurti AuthID paspauskite AuthID nuorodą","Click to set throttle options":"Spustelėkite, kad nustatyti akceleratoriaus parametrus","Compact now":"Suspausti dabar","Compacting remote data ...":"Suspausti nutolusius duomenis...","Compression modules:":"Kompresijos moduliai:","Computer":"Kompiteris","Configuration file:":"Konfigūracijos failas:","Configuration:":"Konfigūracija:","Configure a new backup":"Derinti naują kopiją","Confirm delete":"Patvirtinkite tryminą","Confirmation required":"Reikalingas patvirtinimas","Connect":"Prisijungti","Connect now":"Prisijungti dabar","Connecting to task ....":"Jungiamasi prie užduoties...","Connecting...":"Jungiamasi...","Connection lost":"Prisijungimas nutrūko","Connection worked!":"Prisijungti pavyko!","Container name":"Konteinerio pavadinimas","Container region":"Konteinerio regionas","Continue":"Tęsti","Continue without encryption":"Tęsti be šifravimo","Copied!":"Nukopijuota!","Copy":"Kopija","Copy Destination URL to Clipboard":"Kopijuoti paskirties URL į iškarpinę","Copy failed. Please manually copy the URL":"Kopijavimas nepavyko. Nukopijuokite URL rankiniu būdu","Core options":"Pagrindiniai parametrai","Counting ({{files}} files found, {{size}})":"Skaičiuojama, rasta failų: ({{files}}, {{size}})","Crashes only":"Tik lūžimai","Create folder?":"Sukurti aplanką?","Created new limited user":"Sukurtas naujas ribotas vartotojas","Creating user...":"Kuriamas vartotojas","Current action:":"Dabartinis veiksmas:","Current file:":"Dabartinis failas:","Current version is {{versionname}} ({{versionnumber}})":"Dabartinė versija: {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"Nestandartinė S3 saugykla","Custom authentication url":"Nestandartinis autorizacijos URL","Custom backup retention":"Derintas kopijų saugojimo laikas","Custom location ({{server}})":"Nestandartinė vieta ({{server}})","Custom region for creating buckets":"Nestandartinis regionas kuriamoms saugykloms","Custom region value ({{region}})":"Nestandartinio regiono reikšmė ({{region}})","Custom server url ({{server}})":"Nestandartinis serverio url ({{server}})","Custom storage class ({{class}})":"Nestandartinė saugyklos klasė ({{class}})","Days":"Dienos","Default":"Numatyta","Default ({{channelname}})":"Numatytas ({{channelname}})","Default excludes":"Numatytos išimtys","Default options":"Numatyti parametrai","Delete":"Ištrinti","Delete backup":"Ištrinti kopiją","Delete backups that are older than":"Ištrinti kopijas, kurios senesnės nei","Delete local database":"Ištrinti lokalią duombazę","Delete remote files":"Ištrinti nutolusius failus","Delete the local database":"Ištrinti lokalią duombazę","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Trinti failus {{filecount}}, ({{filesize}}) iš nutolusios saugyklos?","Desktop":"Darbastalis","Destination":"Paskirtis","Destination path":"Kelias iki paskirties","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Ar mes padėjome išgelbėti duomenis? Jei taip paremkite programos kūrimą. Siūloma parama privatiems naudotojams {{smallamount}} ir {{largeamount}} komerciniams naudotojams.","Direct restore from backup files ...":"Atkurti tiesiogiai iš kopijos failų...","Disabled":"Išjungta","Dismiss":"Neberodyti","Dismiss all":"Neberodyti visko","Display and color theme":"Vaizdo ir spalvų tema","Do you really want to delete the backup: \"{{name}}\" ?":"Ar tikrai norite ištrinti kopiją: \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Ar tikrai norite ištrinti lokalią duomenų bazę: {{name}}","Domain Name":"Domeno vardas","Donate":"Paremti","Donation messages":"Paramos pranešimai","Donation messages are hidden, click to show":"Paramos pranešimai paslėpti: spustelėkite, kad rodyti","Donation messages are visible, click to hide":"Paramos pranešimai matomi: spustelėkite, kad paslėpti","Done":"Baigta","Download":"Atsisiųsti","Duplicate option {{opt}}":"Pasikartojantis parametras {{opt}}","Duplicati Website":"Duplicati svetainė","Duplicati forum":"Duplicati forumas","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Kiekviena atsarginė kopija turi su ja susietą duomenų bazę, kurioje saugoma informacija apie nuotolinę saugykla vietiniame kompiuteryje.\nTrindami kopiją galite ištrinti ir lokalią duombazę, atkurti duomenis iš nutolusių failų vis tiek galėsite.\nJei lokalią duombazę naudojate kopijoms per komandinę eilutę, tada duombazę turėtumėt palikti.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Kiekviena atsarginė kopija turi su ja susietą duomenų bazę, kurioje saugoma informacija apie nutolusią kopiją vietinėje sistemoje.\\nJos dėka visos operacijos atliekamos greičiau ir kiekvienai operacijai sumažinamas atsisiunčiamų duomenų kiekis.","Edit as list":"Taisyti kaip sąrašą","Edit as text":"Taisyti kaip tekstą","Encrypt file":"Šifruoti failą","Encryption":"Šifravimas","Encryption changed":"Šifravimas pakeistas","Encryption modules:":"Šifravimo moduliai","Enter URL":"Įveskite URL","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Aprašykite saugojimo strategiją. Sutrumpinimai D/W/Y reiškai dienos/savaitės/metai, U reiškia saugoti visada. Pavyzdys: 7D:1D,4W:1W,36M:1M. Šis pavyzdys reiškia, kad bus saugoma po vieną kopiją 7 dienas, po vieną kopiją kas 4 savaites ir viena ne senesnė nei 36 mėn. Galima aprašyti ir taip: 1W:1D,1M:1W,3Y:1M.","Enter access key":"Įveskite prieigos raktą","Enter account name":"Įveskite naudotojo vardą","Enter backup passphrase, if any":"Jei naudojama šifravimo slapta frazė, įveskite ją","Enter configuration details":"Įveskite konfigūracijos detales","Enter container name":"Įveskite saugyklos pavadinimą","Enter encryption passphrase":"Įveskite šifravimo slaptą frazę","Enter expression here":"Įveskite čia išraišką","Enter folder path name":"Įveskite aplanko kelio pavadinimą","Enter one option per line in command-line format, eg. {0}":"Įveskite vieną parametrą eilutėje komandinės eilutės formatu, pvz.: {0}","Enter the destination path":"Įveskite paskirties kelią","Enter the email address of the Office 365 group":"Įveskite Office 365 grupės el. pašto adresą","Enter the full destination path, including the server name, but without https":"Įverskite pilną kelią iki paskirties, įskaitant serverio vardą, tik be https","Error":"Klaida","Error!":"Klaida!","Errors and crashes":"Klaidos ir lūžimai","Exclude":"Išimtys","Exclude directories whose names contain":"Neįtraukti aplankų, kurių pavadinime yra","Exclude expression":"Neįtraukti išraiškos","Exclude file":"Neįtraukti failo","Exclude file extension":"Neįtraukti failų plėtinio","Exclude files whose names contain":"Neįtraukti failų, kurių pavadinime yra","Exclude folder":"Neįtraukti aplanko","Exclude regular expression":"Neįtraukti standartinės išraiškos","Existing file found":"Rastas esamas failas","Experimental":"Eksperimentinis","Export":"Eksportas","Export backup configuration":"Eksportuoti atsarginės kopijos konfigūraciją","Export configuration":"Eksportuoti konfigūraciją","External link":"Išorinė nuoroda","FTP (Alternative)":"FTP (Alternatyva)","Failed to build temporary database: {{message}}":"Nepavyko sukurti laikinos duomenų bazės: {{message}}","Failed to connect:":"Nepavyko prisijungti:","Failed to connect: {{message}}":"Nepavyko prisijungti: {{message}}","Failed to delete:":"Nepavyko ištrinti:","Failed to fetch path information: {{message}}":"Nepavyko gauti aplanko informacijos: {{message}}","Failed to import:":"Importas nepavyko:","Failed to read backup defaults:":"Nepavyko nuskaityti kopijos numatytus parametrus:","Failed to restore files: {{message}}":"Failų atkūrimas nepavyko: {{message}}","Failed to save:":"Išsaugoti nepavyko:","File":"Failas","Files larger than:":"Failai didesni nei:","Filters":"Filtrai","Finished!":"Baigta!","First run setup":"Pirmojo paleidimo sąranka","Folder":"Aplankas","Folder path":"Aplanko kelias","Fri":"Pn","GByte":"GB","GByte/s":"GB/s","GCS Project ID":"GCS projekto ID","General":"Pagrindiniai","General backup settings":"Pagrindiniai kopijos nustatymai","General options":"Pagrindiniai parametrai","Generate":"Generuoti","Group email":"Grupės el. paštas","Hidden files":"Paslėpti failai","Hide":"Paslepti","Hide hidden folders":"Nerodyti paslėptų aplankų","Home":"Pradžia","Hostnames":"Serverio vardas","Hours":"Valandos","How do you want to handle existing files?":"Kaip elgtis su esamais failais?","Hyper-V Machine":"Hyper-V mašina","Hyper-V Machine:":"Hyper-V mašina:","Hyper-V Machines":"Hyper-V mašinos","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Jai kopijos laikas praleistas, užduotis bus vykdoma pirmai progai pasitaikius.","If at least one newer backup is found, all backups older than this date are deleted.":"Rasta bent viena naujesnė kopija, visos kopijos senesnės nei ši data bus ištrintos.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Jei kopija ir nuotolinė saugykla nesusinchronizuota, Duplicati reikalaus, kad būtu įvykdytas taisymas, kad susinchronizuoti duomenų bazę.\\nJei taisymas nepavyks, reikės ištrinti lokalią duombazę ir ją generuoti iš naujo.","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Jei nenurodysite kelio, visi failai bus išsaugoti pagrindiniame aplanke.\nAr tikrai to norite?","If you do not enter an API Key, the tenant name is required":"Jei nurodysite API raktą, būtina nurodyti savininką","If you want to use the backup later, you can export the configuration before deleting it":"Jei norėsite šia kopija pasinaudoti vėliau, prieš trindami galite eksportuoti konfigūraciją","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Jei jūsų įrenginys yra daugelio naudotojų aplinkoje (t.y. Įrenginyje yra daugiau nei viena paskyra), turite nustatyti slaptažodį, kad kiti naudotojai negalėtų pasiekti jūsų paskyroje esančių duomenų.\nAr norite dabar nustatyti slaptažodį dabar?","Import":"Importas","Import Destination URL":"Importo paskirties URL","Import backup configuration":"Importuoti kopijos konfigūraciją","Import completed, but no certificates were found after the import":"Importas atliktas, bet nebuvo rastas joks sertifikatas","Import failed":"Importas nepavyko","Import from a file":"Importas iš failo","Import metadata":"Importuoti meta duomenis","Include a file?":"Įtraukti failą?","Include expression":"Įtraukti išraišką","Include regular expression":"Įtraukti standartinę išraišką","Incorrect answer, try again":"Atsakymas neteisingas, bandykite dar kartą","Individual builds for developers only. Not for use with important data.":"Individualios versijos skirtos programuotojams. Netinkamos naudoti su svarbiais duomenimis.","Information":"Informacija","Install":"Diegti","Install failed:":"Diegimas nepavyko:","Invalid characters in path":"Kelio pavadinime yra netinkamų simbolių","Invalid retention time":"Netinkamas saugojimo laikas","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"Prie kai kurių FTP serverių galima prisijungti be slaptažodžio.\nAr jūs įsitikinę, kad FTP serveris leidžia prisijungimus be slaptažodžio?","KByte":"KB","KByte/s":"KB/s","Keep a specific number of backups":"Saugoti nurodyta kiekį kopijų","Keep all backups":"Saugoti visas kopijas","Keystone API version":"Keystone API versija","Language in user interface":"Kalba vartotojo interfeise","Last month":"Praeitas mėnuo","Last successful backup:":"Paskutinė sėkminga kopija:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"Paskutinis sėkmingas atkūrimas: {{time}} (užtruko {{duration || '0 sek.'}})","Latest":"Naujausias","Libraries":"Bibliotekos","Live":"Gyvai","Load a configuration from an exported job or a storage provider":"Įkelti konfigūraciją iš eksportuotos užduoties arba saugojimo paslaugų tiekėjo","Load destination from an exported job or a storage provider":"Įkelti paskirtį iš eksportuotos užduoties arba saugojimo paslaugų tiekėjo","Load older data":"Įkelti senesnius duomenis","Loading ...":"Įkeliama...","Loading remote storage usage ...":"Gaunama nutolusios saugyklos panaudojimo informacija...","Local Repository":"Vietinė saugykla","Local database for":"Lokali duombazė dėl","Local database path:":"Lokalios duomenų bazės kelias:","Local repository":"Vietinė saugykla","Local storage":"Lokali saugykla","Location":"Vieta","Location where buckets are created":"Vieta, kur sukuriamos saugyklos","Log data for {{Backup.Backup.Name}}":"{{Backup.Backup.Name}}žurnalo duomenys","Log data from the server":"Žurnalo duomenys iš serverio","Log out":"Atsijungti","MByte":"MB","MByte/s":"MB/s","Maintenance":"Priežiūra","Manually type path":"Rankiniu būdu įveskite kelią","Max download speed":"Maksimalus atsisiuntimo greitis","Max upload speed":"Maksimalus įkėlimo greitis","Menu":"Meniu","Microsoft SQL Database:":"Microsoft SQL duomenų bazė:","Microsoft SQL Databases":"Microsoft SQL duomenų bazės","Minimum redundancy":"Minimalus perteklinių kopijų kiekis","Minimum redundancy is 1.0":"Minimalus perteklinių kopijų skaičius yra 1.0","Minutes":"Minutės","Missing name":"Trūksta pavadinimo","Missing passphrase":"Trūksta slaptos frazės","Missing sources":"Trūksta šaltinių","Mon":"Pr","Months":"Mėnesiai","Move existing database":"Perkelti esamą duomenų bazę","Move failed:":"Perkelti nepavyko:","My Documents":"Mano dokumentai","My Music":"Mano muzika","My Photos":"Mano nuotraukos","My Pictures":"Mano paveikslėliai","Name":"Vardas","Never":"Niekada","New update found: {{message}}":"Rastas atnaujinimas: {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"Naujas vartotojo vardas {{user}}.\nNaujo riboto vartotojo prisijungimo duomenys atnaujinti","Next":"Kitas","Next scheduled run:":"Kitas planuojamas paleidimas:","Next scheduled task:":"Kita planuojama užduotis:","Next task:":"Kita užduotis","Next time":"Kitą kartą","No":"Ne","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"Anksčiau nebuvo nurodytas sertifikatas, su serverio administratoriumi patikrinkite kad raktas teisingas: {{key}} \n\nAr patvirtinate pateiktą mazgo raktą?","No editor found for the "{{backend}}" storage type":"Saugyklos tipui "{{backend}}" nerastas redaktorius","No encryption":"Be šifravimo","No items selected":"Nieko nepasirinkta","No items to restore, please select one or more items":"Nėra ko atkurti, pasirinkite vieną ar kelis elementus","No passphrase entered":"Neįvesta slapta frazė","No scheduled tasks":"Nėra planinių užduočių","No, my machine has only a single account":"Ne, mano kompiuteryje yra tik vienas naudotojas","Non-matching passphrase":"Netinkama slapta frazė","None / disabled":"Nieko / išjungta","Nothing will be deleted. The backup size will grow with each change.":"Niekas nebus trinama. Kopijos dydis didės su kiekvienu pasikeitimu.","OK":"OK","Once there are more backups than the specified number, the oldest backups are deleted.":"Kai bus sukurta daugiau kopijų nei nurodyta - seniausia kopija bus ištrinta.","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack objekto saugykla / Swift","Openstack API Key are not supported in v3 keystone API.":"Openstack API raktas nepalaikomas v3 keystone API.","Operating System":"Operacinė sistema","Operation failed:":"Operacija nepavyko:","Operations:":"Operacijos","Optional authentication password":"Neprivalomas autorizavimo slaptažodis","Optional authentication username":"Neprivalomas autorizavimo vartotojas","Options":"Parametrai","Options added here are applied to all backups, but can be overridden in each individual backup":"Čia nurodyti parametrai taikomi visoms atsarginėms kopijoms, bet gali būti pakeisti kiekvienoje kopijoje individualiai","Original location":"Originali vieta","Others":"Kiti","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"Senos kopijos bus šalinamos automatiškai. Bus saugoma po vieną kopiją 7 dienas, po vieną kas 4 savaites ir po vieną kas 12 mėnesių. Visada bus bent viena likusi kopija.","Overwrite":"Perrašyti","Passphrase":"Slapta frazė","Passphrase (if encrypted)":"Slapta frazė (jei šifruota)","Passphrase changed":"Slapta frazė pakeista","Passphrases are not matching":"Slaptos frazės nesutampa","Password":"Slaptažodis","Path":"Kelias","Path not found":"Kelias nerastas","Path on server":"Kelias iki serverio","Path or subfolder in the bucket":"Kelias arba pakatalogis saugykloje","Pause":"Pauzė","Pause after startup or hibernation":"Pauzė po paleidimo ar ramybės būsenos","Pause options":"Pauzės parametrai","Permissions":"Leidimai","Pick location":"Pasirinkite vietą","Point to your backup files and restore from there":"Pasirinkite atsarginės kopijos failus ir atkurkite iš jos","Port":"Portas","Prevent tray icon automatic log-in":"Neleisti automatinio prisijungimo per dėklo piktogramą","Previous":"Ankstesnis","Progress:":"Progresas:","ProjectID is optional if the bucket exist":"ProjectID yra neprivalomas, jei egzistuoja saugykla","Proprietary":"Patentuota","Recreate (delete and repair)":"Perkurti (ištrinti ir taisyti)","Relative paths not allowed":"Santykiniai keliai neleidžiami","Reload":"Užkrauti iš naujo","Remote":"Nuotolinis","Remote Path":"Kelias iki nutolusio serverio","Remote Repository":"Nutolusi saugykla","Remote path":"Kelias iki nutolusio serverio","Remote repository":"Nutolusi saugykla","Remote volume size":"Nutolusio tomo dydis","Remove":"Pašalinti","Remove option":"Pašalinti parinktį","Repair":"Remontuoti","Repeat Passphrase":"Pakartokite slaptą frazę","Reporting:":"Ataskaitų teikimas:","Reset":"Atstatyti","Restore":"Atkurti","Restore files":"Atkurti failus","Restore files from {{backupname}}":"Atkurti failus iš {{backupname}}","Restore from":"Atkurti iš","Restore from backup configuration":"Atkurti iš atsarginės kopijos konfigūracijos","Restore from configuration ...":"Atkurti iš konfigūracijos ...","Restore options":"Atkurimo parinktis","Restore read/write permissions":"Atkurti skaitymo/rašymo leidimus","Resume":"Tęsti","Run again every":"Vykdyti dar kartą kas","Run now":"Vykdyti dabar","Running ....":"Vykdoma ....","Running commandline entry":"Vykdoma komandų eilutės komanda","Running task:":"Vykdoma užduotis:","S3 Compatible":"Suderinamas su S3","Same as the base install version: {{channelname}}":"Ta pati, kaip pagrindinė diegimo versija: {{channelname}}","Sat":"Šešt","Save":"Įrašyti","Save and repair":"Įrašyti ir taisyti","Save different versions with timestamp in file name":"Išsaugokite kitą versiją su laiko žymoma failo pavadinime","Save immediately":"Įrašyti nedelsiant","Schedule":"Tvarkaraštis","Search":"Paieška","Search for files":"Failų paieška","Seconds":"Sekundės","Select a log level and see messages as they happen:":"Pasirinkite žurnalo lygį ir peržiūrėkite pranešimus, kaip jie įvyksta:","Select files":"Pasirinkite failus","Server":"Serveris","Server and port":"Serveris ir portas","Server hostname or IP":"Serverio pavadinimas ir IP","Server is currently paused,":"Serveris šiuo metu pristabdytas","Server is currently paused, do you want to resume now?":"Serveris šiuo metu pristabdytas, ar norite pratęsti jo darbą?","Server password":"Serverio slaptažodis","Server paused":"Serveris pristabdytas","Server state properties":"Serverio būsenos parametrai","Settings":"Nustatymai","Show":"Rodyti","Show advanced editor":"Rodyti patobulintą redaktorių","Show hidden folders":"Rodyti paslėptus aplankus","Show log":"Rodyti žurnalą","Show treeview":"Rodyti medžio vaizdą","Sia server password":"Sia serverio slaptažodis","Smart backup retention":"Išmanus kopijų saugojimas","Some OpenStack providers allow an API key instead of a password and tenant name":"Kai kurie OpenStack tiekėjai vietoj slaptažodžio pateikia API raktą ir nuomininko vardą","Source Data":"Šaltinio duomenys","Source data":"Šaltinio duomenys","Source folders":"Šaltinio aplankai","Source:":"Šaltinis:","Specific builds for developers only. Not for use with important data.":"Specifinės versijos skirtos tik programuotojams. Netinkamos naudoti su svarbiais duomenimis.","Standard protocols":"Standartiniai protokolai","Stop after the current file":"Stabdyti po dabartinio failo","Stop now":"Stabdyti dabar","Stop running backup":"Stabdyti vykdomą atsarginę kopiją","Stop running task":"Stabdyti vykdomą užduotį","Stopping task:":"Stabdoma užduotis:","Storage Type":"Saugyklos tipas","Storage class":"Saugyklos klasė","Storage class for creating a bucket":"Saugyklos klasė saugyklos kūrimui","Stored":"Išsaugota","Strong":"Stiprus","Success":"Sėkmė","Sun":"Sekm","Symbolic link":"Simbolinė nuoroda","System Files":"Sisteminiai failai","System default ({{levelname}})":"Sistemos numatytasis ({{levelname}})","System files":"Sisteminiai failai","System info":"Sistemos informacija","System properties":"Sistemos ypatybės","TByte":"TByte","TByte/s":"TByte/sek","Target path, ie /backup":"Kelias iki tikslo, pvz.: /backup","Task is running":"Užduotis vykdoma","Temporary Files":"Laikini failai","Temporary files":"Laikini failai","Tenant Name":"Nuomininko vardas","Test connection":"Patikrinti prisijungimą","Testing ...":"Tikrinama ...","Testing connection ...":"Tikrinamas prisijungimas ...","Testing permissions...":"Tikrinamos prieigos teisės ...","The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})":"'{{fieldname}}' yra netinkamas simbolis: {{character}} (reikšmė: {{value}}, pozicija: {{pos}})","The bucket name should be all lower-case, convert automatically?":"Saugyklos pavadinimas turi būti iš mažųjų raidžių, konvertuoti automatiškai?","The bucket name should start with your username, prepend automatically?":"Saugyklos pavadinimas turi prasidėti naudotojo vardu, pridėti automatiškai?","The connection to the server is lost, attempting again in {{time}} ...":"Dingo ryšys su serveriu, bandysime prisijungti po {{time}} ...","The dark theme (by Michal)":"Tamsi tema (nuo Michal)","The default blue on white theme (by Alex)":"Numatyta mėlyna ant balto tema (nuo Alex)","The folder {{folder}} does not exist.\nCreate it now?":"Aplankas {{folder}} neegzistuoja.\nSukurti jį dabar?","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"Serverio raktas pasikeitė, su administratoriumi patikrinkite ar jis geras, priešingu atveju jūsų duomenys gali būti perimti.\n\nAr norite PAKEISTI jūsų DABARTINĮ serverio raktą \"{{prev}}\" PATEIKTU serverio raktu: {{key}}?","The path does not appear to exist, do you want to add it anyway?":"Panašu, kad toks kelias neegzistuoja, vis tiek jį pridėti?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"Kelias pasibaigia ne '{{dirsep}}' simboliu, tai reiškia, kad pridėjote failą, ne aplanką.\n\nAr norite pridėti nurodytą failą?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"Kelias turi būti absoliutus, tai yra turi prasidėti simboliu '/'","The region parameter is only applied when creating a new bucket":"Regiono parametras taikomas tik naujai saugyklai","The region parameter is only used when creating a bucket":"Regiono parametras panaudojamas tik kuriant saugyklą","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Serverio sertifikatas negali būti patikrintas.\nAr patvirtinate SSL sertifikatą su maiša: {{hash}}?","The storage class affects the availability and price for a stored file":"Saugyklos klasė turi įtakos failo pasiekiamumui ir kainai","The target folder contains encrypted files, please supply the passphrase":"Paskirties duomenys užšifruoti, pateikite slaptą frazę","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"Naudotojas turi per daug teisių. Ar norite sukurti naują naudotoją, su prieiga tik prie pasirinkto kelio?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"Ši kopija buvo sukurta kitoje operacinėje sistemoje. Atkuriant failus nenurodžius paskirties vietos - jie gali atsirasti netikėtose vietose. Ar tęsti be paskirties kelio?","This month":"Šį mėnesį","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"Ši nuostata nesusijusi su maksimaliu kopijos ar failo dydžiu, taip pat neturi įtakos dedublikavimo efektyvumui. Perskaitykite prieš keisdami nutolusio tomo dydį.","This week":"Šią savaitę","Throttle settings":"Greičio nustatymai","Thu":"Ket","To File":"Į failą","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Kad patvirtintumėte visų \"{{name}}\" nutolusių failų trynimą, įveskite žodį, kurį matote žemiau","To export without a passphrase, uncheck the \"Encrypt file\" box":"Kad eksportuoti be slaptos frazės, palikite nepažymėtą varnelę \"Šifruoti failą\"","To prevent various DNS based attacks, Duplicati limits the allowed hostnames to the ones listed here. Direct IP access and localhost is always allowed. Multiple hostnames can be supplied with a semicolon separator. If any of the allowed hostnames is an asterisk (*), all hostnames are allowed and this feature is disabled. If the field is empty, only IP address and localhost access is allowed.":"Kad apsisaugoti nuo įvairių DNS atakų, Duplicati riboje galimų serverių vardus pagal nurodytą sąrašą. IP adresai ir localhost visada leidžiami. Keli serverių vardai leidžiami atskiriant kabliataškiu. Jei leidžiamas serverio vardas yra su žvaigždute (*), leidžiami visi serverių vardai ir ši savybė išjungta. Jei laukas tuščias - leidžiami tik IP adresai ir localhost.","Today":"Šiandien","Trust host certificate?":"Pasitikite saito sertifikatu?","Trust server certificate?":"Pasitikite serverio sertifikatu?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"Išbandykite naujas galimybes, prie kurių šiuo metu dirbame. Šiuo metu stabiliausia versija pasiekiama. Išbadykite duomenų atkūrimą prie naudodami su svarbiais duomenimis.","Tue":"An","Type to highlight files":"Rašykite, kad paryškinti failus","Unknown backup size and versions":"Nežinomas kopijos dydis ir versijos","Until resumed":"Kol bus pratęsta","Update channel":"Atnaujinimų kanalas","Update failed:":"Atnaujinimas nepavyko:","Updating with existing database":"Atnaujinama su egzistuojančia duomenų baze","Usage statistics":"Naudojimo statistika","Usage statistics, warnings, errors, and crashes":"Naudojimo statistika, įspėjimai, klaidos ir lūžimai","Use SSL":"Naudoti SSL","Use existing database?":"Naudoti turimą duomenų bazę?","Use weak passphrase":"Naudoti silpną slaptą frazę","Useless":"Nenaudinga","User data":"Naudotojo duomenys","User domain name":"Naudotojo domeno vardas","User has too many permissions":"Naudotojas turi per daug teisių","User interface settings":"Naudotojo aplinkos nustatymai","Username":"Naudotojo vardas","Verify files":"Tikrinti failus","Verifying ...":"Tikrinama ...","Verifying answer":"Tikrinamas atsakymas","Very strong":"Labai stiprus","Very weak":"Labai silpnas","Visit us on":"Aplankykite mus","WARNING: The remote database is found to be in use by the commandline library":"DĖMESIO: Nutolusi duomenų bazė šiuo metu naudojama komandinės eilutės bibliotekos","WARNING: This will prevent you from restoring the data in the future.":"DĖMESIO: Tai neleis ateityje atkurti duomenis.","Waiting for task to begin":"Laukiama kol prasidės užduotis","Waiting for task to start ....":"Laukiama kol prasidės užduotis ...","Warnings, errors and crashes":"Įspėjimai, klaidos ir lūžimai","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"Mes priimame paramą per įvairias tarnybas, tokias kaip OpenCollective, PayPal, BountySource ir įvairiomis krypto valiutomis.","We recommend that you encrypt all backups stored outside your system":"Rekomenduojame šifruoti visas kopijas, kurios saugomos už jūsų sistemos ribų","Weak":"Silpna","Weak passphrase":"Silpna slapta frazė","Wed":"Tre","Weeks":"Savaitės","Where do you want to restore from?":"Iš kur norite atkurti?","Where do you want to restore the files to?":"Kur norite atkurti failus?","Years":"Metai","Yes":"Taip","Yes, I have stored the passphrase safely":"Taip, aš saugiai išsaugojau slaptą frazę","Yes, I'm brave!":"Taip, aš drąsus!","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{Item.Backup.Metadata.TargetSizeString}} / {{$ count}} versija","{{Item.Backup.Metadata.TargetSizeString}} / {{$ count}} versijos","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} versijų","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} versijų"]}); gettextCatalog.setStrings('lv', {"- pick an option -":"- izvēlieties iestatījumu -","...loading...":"...notiek ielāde...","API Key":"API atslēga","AWS Access ID":"AWS Piekļuves ID","AWS Access Key":"AWS Piekļuves atslēga","AWS IAM Policy":"AWS IAM Politika","About":"Par","About {{appname}}":"Par {{appname}}","Access Key":"Piekļuves atslēga","Access denied":"Piekļuve liegta","Access to user interface":"Piekļuve lietotāja saskarnei","Account name":"Konta nosaukums","Activate":"Aktivizēt","Activate failed:":"Aktivizācija neizdevās:","Add a new backup":"Pievienot jaunu dublējumkopiju","Add a path directly":"Pievienot tiešo ceļu","Add advanced option":"Pievienot pielāgotu iestatījumu","Add backup":"Pievienot dublējumkopiju","Add filter":"Pievienot filtru","Add path":"Pievienot ceļu","Added":"Pievienots","Adjust bucket name?":"Precizēt spaiņa iestatījumu?","Adjust path name?":"Precizēt ceļa nosaukumu?","Advanced Options":"Pielāgotas Opcijas","Advanced options":"Pielāgotas opcijas","Advanced:":"Pielāgots:","All Hyper-V Machines":"Visas Hyper-V Mašīnas","All Microsoft SQL Databases":"Visas Microsoft SQL Datubāzes","Allow remote access (requires restart)":"Atļaut attālinātu piekļuvi (nepieciešams restartēt programmu)","Allowed days":"Atļautās dienas","An existing file was found at the new location":"Tika atrasts jau esošs fails jaunajā atrašanās vietā","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Tika atrasts jau esošs fails jaunajā atrašanās vietā\nVai esat pārliecināts, ka vēlaties datubāzi novirzīt uz jau esošo failu?","Anonymous usage reports":"Anonīmas lietošanas atskaites","Applications":"Lietotnes","As Command-line":"Kā Komand-rinda","Authentication password":"Autentifikācijas parole","Authentication username":"Autentifikācijas lietotājvārds","Autogenerated passphrase":"Automātiski izveidota piekļuves frāze","Automatically run backups.":"Automātiski palaist dublējumkopijas.","Back":"Atpakaļ","Backend modules:":"Backend moduļi:","Backup complete!":"Dublējumkopijas veidošana pabeigta!","Backup destination":"Dublējumkopijas mērķa atrašanās vieta","Backup location":"Dublējumkopijas atrašanās vieta","Backup retention":"Dublējumkopiju saglabāšanas ilgums","Backup:":"Dublējumkopija:","Beta":"Beta versija","Browse":"Pārlūkot","Browser default":"Pārlūka noklusējums","Bucket Name":"Spaiņa Nosaukums","Bucket name":"Spaiņa nosaukums","Bucket storage class":"Spaiņa uzglabāšanas klase","Busy ...":"Aizņemts ...","Canary":"Canary","Cancel":"Atcelt","Changelog":"Izmaiņu žurnāls","Check failed:":"Pārbaude neizdevās:","Check for updates now":"Pārbaudīt atjauninājumus tagad","Checking ...":"Pārbauda ...","Click to set throttle options":"Uzklikšķiniet, lai uzstādītu ierobežojumus","Compact now":"Saspiest tagad","Compression modules:":"Saspiešanas moduļi:","Computer":"Dators","Configuration file:":"Konfigurācijas fails:","Configuration:":"Konfigurācija:","Configure a new backup":"Konfigurēt jaunu dublējumkopiju","Confirm delete":"Apstiprināt dzēšanu","Confirm password":"Apstiprināt paroli","Confirmation required":"Nepieciešams apstiprinājums","Connect":"Pieslēgties","Connect now":"Pieslēgties tagad","Connecting to server …":"Pieslēdzas serverim...","Connecting to task ....":"Pieslēdzas uzdevumam","Connecting...":"Pieslēdzas ...","Connection lost":"Savienojums ir zudis","Connection worked!":"Savienojums strādā!","Continue":"Turpināt","Continue without encryption":"Turpināt bez šifrēšanas","Copied!":"Nokopēts!","Core options":"Pamata opcijas","Crashes only":"Tikai avārijas","Create folder?":"Izveidot mapi?","Creating user...":"Izveido lietotāju...","Custom region for creating buckets":"Specifiskais reģions spaiņu izveidei","Days":"Dienas","Default":"Noklusējums","Default options":"Noklusējuma iestatījumi","Delete":"Izdzēst","Delete backup":"Izdzēst dublējumkopiju","Delete local database":"Izdzēst lokālo datubāzi","Delete remote files":"Dzēst attālinātos failus","Delete the local database":"Izdzēst lokālo datubāzi","Desktop":"Darbavirsma","Destination":"Mērķis","Disabled":"Atspējots","Dismiss":"Atmest","Display and color theme":"Displeja un krāsu motīvs","Donate":"Ziedot","Donation messages":"Ziedojumu paziņojumi","Donation messages are hidden, click to show":"Ziedojumu ziņas ir slēptas, uzklikšķiniet lai parādītu tās","Donation messages are visible, click to hide":"Ziedojumu ziņas ir redzamas, uzklikšķiniet lai paslēptu tās","Done":"Pabeigts","Download":"Lejupielādēt","Duplicati Website":"Duplicati tīmekļa vietne","Duplicati forum":"Duplicati forums","Edit as list":"Rediģēt kā sarakstu","Edit as text":"Rediģēt kā tekstu","Encrypt file":"Šifrēt failu","Encryption":"Šifrēšana","Encryption changed":"Šifrēšana mainīta","Encryption modules:":"Šīfrēšanas moduļi:","Enter URL":"Ievadiet URL","Enter access key":"Ievadiet piekļuves atslēgu","Enter account name":"Ievadiet konta nosaukumu","Enter backup passphrase, if any":"Ievadiet dublējumkopijas pieejas frāzi, ja tāda eksistē","Enter configuration details":"Ievadiet konfigurācijas detaļas","Enter encryption passphrase":"Ievadiet pieejas frāzi šifrēšanai","Enter the destination path":"Ievadiet mērķa atrašanās vietu","Error":"Kļūda","Error!":"Kļūda!","Errors and crashes":"Kļūdas un avārijas","Experimental":"Eksperimentāls","Export":"Eksportēt","Export configuration":"Eksportēt konfigurāciju","FTP (Alternative)":"FTP (Alternatīvs)","Failed to connect:":"Neizdevās izveidot savienojumu:","Failed to import:":"Neizdevās importēt:","File":"Fails","Files larger than:":"Faili lielāki par:","Filters":"Filtrs","Finished!":"Pabeigts!","Folder":"Mape","General":"Vispārīgi","General backup settings":"Vispārīgie dublējumkopiju iestatījumi","General options":"Vispārīgie iestatījumi","Generate":"Izveidot","Hidden files":"Paslēptie faili","Hide":"Paslēpt","Hide hidden folders":"Paslēpt paslēptās mapes","Home":"Mājas","Hours":"Stundas","How do you want to handle existing files?":"Kā jūs vēlaties rīkoties ar jau esošajiem failiem?","Hyper-V Machine":"Hyper-V Mašīna","Hyper-V Machine:":"Hyper-V Mašīna:","Hyper-V Machines":"Hyper-V Mašīnas","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Ja tika nokavēts datums, uzdevums tiks palaists cik ātri vien iespējams.","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Ja jūsu mašīna ir vairāku lietotāju vidē (piemēram, māšīnai ir vairāk, kā viens konts), jums nepieciešams uzstādīt paroli, lai izslēgtu iespēju citiem lietotājiem piekļūt jūsu kontam.\nVai vēlaties uzstādīt paroli tagad?","Import":"Importēt","Import from a file":"Pievienot no faila","Incorrect answer, try again":"Nepareiza atbilde, mēģiniet vēlreiz","Information":"Informācija","Install":"Uzstādīt","Install failed:":"Uzstādīšana neizdevās","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"Ir iespējams pievienoties pie kāda FTP servera bez paroles.\nVai esat pārliecināts, ka jūsu FTP serveris atbalsta bez-paroles pieslēgšanos?","Language in user interface":"Lietotāja saskarnes valoda:","Last month":"Pagājušais mēnesis","Latest":"Pēdējais","Libraries":"Bibliotēkas","Load older data":"Ielādēt vecākus datus","Loading ...":"Notiek ielāde ...","Local database path:":"Ceļš uz lokālo datubāzi:","Local storage":"Lokālā krātuve","Location":"Atrašanās vieta","Log out":"Izrakstīties","Maintenance":"Apkope","Max download speed":"Maksimālais lejupielādes ātrums","Max upload speed":"Maksimālais augšupielādes ātrums","Menu":"Izvēlne","Minutes":"Minūtes","Missing passphrase":"Trūkst pieejas frāze","Modified":"Modificēts","Mon":"Pirm","Months":"Mēneši","Move existing database":"Pārvietot esošo datubāzi","Move failed:":"Pārvietošana neizdevās:","My Documents":"Mani dokumenti","My Music":"Mana mūzika","My Photos":"Mani fotoattēli","My Pictures":"Mani attēli","Never":"Nekad","Next":"Nākamais","Next scheduled run:":"Nākamā plānotā norise","Next scheduled task:":"Nākamais plānotais uzdevums:","Next task:":"Nākamais uzdevums:","Next time":"Nākamreiz","No":"Nē","No encryption":"Nav šifrešanas","No items selected":"Nav izvēlētu vienību","No items to restore, please select one or more items":"Nav vienību ko atjaunot, lūdzu izvēlieties vienu vai vairākas vienības","No passphrase entered":"Pieejas frāze nav ievadīta","No scheduled tasks":"Nav ieplānotu uzdevumu","No, my machine has only a single account":"Nē, manai ierīcei ir tikai viens konts","Non-matching passphrase":"Nesakrītoša pieejas frāze","None / disabled":"Nav / Atspējots","OK":"Labi","Operations:":"Darbības:","Optional authentication password":"Neobligāta autentifikācijas parole","Options":"Iestatījumi","Options added here are applied to all backups, but can be overridden in each individual backup":"Šeit pievienotās opcijas tiek piemērotas visām dublējumkopijām, taču tās var ignorēt katrā atsevišķā dublējumkopijā","Original location":"Sākotnējā atrašanās vieta","Others":"Citi","Overwrite":"Pārrakstīt","Passphrase":"Pieejas frāze","Passphrase (if encrypted)":"Pieejas frāze (ja šifrēts)","Passphrase changed":"Pieejas frāze nomainīta","Passphrases are not matching":"Pieejas frāzes nesakrīt","Password":"Parole","Path not found":"Ceļš nav atrasts","Path on server":"Ceļs uz servera","Pause":"Pauzēt","Pause options":"Pauzēt opcijas","Permissions":"Atļaujas","Port":"Ports","Reload":"Pārlādēt","Remote":"Attālināts","Remove":"Noņemt","Remove option":"Noņemt iestatījumu","Repair":"Salabot","Repeat Passphrase":"Atkārtot pieejas frāzi","Reset":"Attiestatīt","Restore":"Atgūt","Restore files":"Atgūt failus","Restore options":"Atjaunot opcijas","Restore read/write permissions":"Atjaunot lasīšanas/rakstīšanas atļaujas","Resume":"Turpināt","Run again every":"Palaist atkal katru","Run now":"Palaist tagad","Sat":"Sest","Save":"Saglabāt","Save and repair":"Saglabāt un salabot","Save immediately":"Saglabāt uzreiz","Search":"Meklēt","Search for files":"Meklēt failus","Seconds":"sekundes","Select files":"Izvēlēties failus","Server":"Serveris","Server and port":"Serveris un ports","Server hostname or IP":"Resursdatora nosaukums vai IP adrese","Server password":"Servera parole","Settings":"Iestatījumi","Show":"Parādīt","Show hidden folders":"Parādīt paslēptās mapes","Show log":"Parādīt žurnālu","Sia server password":"Sia servera parole","Source Data":"Avota Dati","Source data":"Avota dati","Source folders":"Avota mapes","Source:":"Avots:","Stop now":"Pātraukt tagad","Stop running task":"Pārtraukt uzdevuma izpildi","Stopping task:":"Aptur uzdevumu:","Storage Type":"Krātuves Tips","Strong":"Spēcīgs","Sun":"Svēt","Symbolic link":"Simboliskā saite","System files":"Sistēmas faili","System info":"Sistēmas informācija","System properties":"Sistēmas īpašības","Task is running":"Uzdevums ir palaists","Temporary files":"Pagaidu faili","Test connection":"Pārbaudīt savienojumu","Testing ...":"Notiek pārbaude...","Testing connection ...":"Pārbauda savienojumu...","Testing permissions...":"Pārbauda atļaujas...","The dark theme (by Michal)":"Tumšais motīvs (veidoja Michal)","The default blue on white theme (by Alex)":"Noklusējuma zils uz balta motīvs (veidoja Alex)","This month":"Šis mēnesis","This week":"Šī diena","Thu":"Cetr","Today":"Šodien","Tue":"Otr","Update channel":"Atjauninājumu kanāls","Update failed:":"Atjaunināšana neizdevās:","Usage statistics":"Izmantošanas statistika","Use SSL":"Izmantot SSL","Use weak passphrase":"Lietot vāju pieejas frāzi","Useless":"Bezjēdzīgs","User data":"Lietotāja dati","User interface settings":"Lietotāja saskarnes iestatījumi","Username":"Lietotājvārds","Verify files":"Pārbaudīt failus","Verifying ...":"Notiek pārbaude ...","Very strong":"Ļoti stiprs","Very weak":"Ļoti vājš","WARNING: The remote database is found to be in use by the commandline library":"UZMANĪBU: Attālināto datu bāzi izmanto komandrindas bibliotēka","Warnings, errors and crashes":"Brīdinājumi, kļūdas un avārijas","We recommend that you encrypt all backups stored outside your system":"Mēs iesakām jums šifrēt visas dublējumkopijas, kuras tiek uzglabātas ārpus jūsu sistēmas","Weak":"Vājš","Weak passphrase":"Vāja pieejas frāze","Wed":"Treš","Weeks":"Nedēļas","Years":"Gadi","Yes":"Jā","Yes, I have stored the passphrase safely":"Jā, esmu noglabājais pieejas frāzi droši","Yes, I'm brave!":"Jā, esmu drosmīgs!","Yes, please break my backup!":"Jā, lūdzu salauziet manu dublējumkopiju!","Yesterday":"Vakardiena","You must enter a name for the backup":"Nepieciešams ievadīt dublējumkopijas nosaukumu","You must enter a passphrase or disable encryption":"Jums nepieciešams ievadīt pieejas frāzi vai atspējot šifrēšanu","You must fill in the password":"Nepieciešams ievadīt paroli!","You must specify a path":"Jums jānorāda ceļš","Your passphrase is easy to guess. Consider changing passphrase.":"Jūsu pieejas frāzi ir vienkārsi uzminēt. Apdomājiet pieejas frāzes nomaiņu.","bucket/folder/subfolder":"spainis/mape/apakšmape","byte":"baits","byte/s":"baiti/sekundē","resume now":"turpināt tagad","{{number}} Hour":"{{number}} Stunda","{{number}} Minutes":"{{number}} Minūtes"}); @@ -24,7 +24,7 @@ angular.module('backupApp').run(['gettextCatalog', function (gettextCatalog) { gettextCatalog.setStrings('ru', {"- pick an option -":"- выберите параметр -","...loading...":"...загрузка...","API Key":"Ключ API","API key":"Ключ API","AWS Access ID":"AWS Access ID","AWS Access Key":"AWS Access Key","AWS IAM Policy":"AWS IAM Policy","About":"О программе","About {{appname}}":"О {{appname}}","Access Key":"Ключ доступа","Access denied":"Доступ запрещен","Access to user interface":"Доступ в веб-интерфейс","Account name":"Имя учётной записи","Activate":"Активировать","Activate failed:":"Активация не удалась:","Add a new backup":"Создать новую резервную копию","Add a path directly":"Добавить путь непосредственно","Add advanced option":"Добавить расширенный параметр","Add backup":"Добавить резервную копию","Add filter":"Добавить фильтр","Add path":"Добавить путь","Adjust bucket name?":"Изменить имя блока?","Adjust path name?":"Изменить имя пути?","Advanced Options":"Расширенные параметры","Advanced options":"Расширенные параметры","Advanced:":"Дополнительно:","All Hyper-V Machines":"Все виртуальные машины Hyper-V","All Microsoft SQL Databases":"Все базы данных Microsoft SQL","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Все отчеты отправляются анонимно и не включают каких-либо персональных данных. Они содержат информацию об аппаратной конфигурации и операционной системе, типе бэкэнда, продолжительности резервного копирования, а также общий размер резервируемых данных и другие подобные данные. Они не включают пути или имена файлов, имена пользователей, пароли или любую другую конфиденциальную информацию.","Allow remote access (requires restart)":"Разрешить удалённый доступ (потребуется перезапуск)","Allowed days":"Разрешенные дни","An existing file was found at the new location":"Существующий файл был найден по новому пути","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Существующий файл был найден по новому пути\nВы точно хотите, чтобы база данных указывала на существующий файл?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"Была обнаружена локальная база данных для хранилища.\nПовторное использование базы данных позволит экземплярам командной строки и сервера работать на одном и том же удаленном хранилище.\n\n Вы хотите использовать существующую базу данных?","Anonymous usage reports":"Анонимные отчёты об использовании","As Command-line":"Как командная строка","AuthID":"AuthID","Authentication password":"Пароль для аутентификации","Authentication username":"Имя пользователя для аутентификации","Autogenerated passphrase":"Сгенерированный пароль","Automatically run backups.":"Запускать резервное копирование автоматически","B2 Application Key":"B2 Application Key","B2 Cloud Storage Account ID":"B2 Cloud Storage Account ID","B2 Cloud Storage Application Key":"B2 Cloud Storage Application Key","Back":"Назад","Backend modules:":"Модули бэкенда:","Backup destination":"Хранение резервной копии","Backup location":"Расположение резервной копии","Backup:":"Резервная копия:","Beta":"Beta","Broken access":"Битый доступ","Browse":"Обзор","Browser default":"Браузер по-умолчанию","Bucket Name":"Имя блока","Bucket create location":"Место создания блока","Bucket create region":"Регион создания блока","Bucket name":"Имя блока","Bucket storage class":"Класс хранения блока","Busy ...":"Занят ...","Canary":"Canary","Cancel":"Отмена","Cannot move to existing file":"Не могу переместить в существующий файл","Changelog":"История изменений","Changelog for {{appname}} {{version}}":"Список изменений для {{appname}} {{version}}","Check failed:":"Проверка не удалась:","Check for updates now":"Проверить наличие обновлений","Checking ...":"Проверка","Chose a storage type to get started":"Для начала выберите тип хранилища","Click the AuthID link to create an AuthID":"Нажмите на ссылку AuthID для создания AuthID","Click to set throttle options":"Нажмите, чтобы установить параметры ограничения скорости","Compact now":"Уплотнить сейчас","Compacting remote data ...":"Уплотнение удаленных данных ...","Compression modules:":"Модули сжатия:","Computer":"Компьютер","Configuration file:":"Файл конфигурации:","Configuration:":"Настройка:","Configure a new backup":"Настройка новой резервной копии","Confirm delete":"Подтвердите удаление","Confirm encryption passphrase":"Подтвердите кодовую фразу шифрования","Confirmation required":"Необходимо подтверждение","Connect":"Подключение","Connect now":"Подключиться сейчас","Connecting to task ....":"Подключение к задаче...","Connecting...":"Подключение...","Connection lost":"Потеряно соединение","Connection worked!":"Подключение работает!","Container name":"Имя контейнера","Container region":"Регион контейнера","Continue":"Продолжить","Continue without encryption":"Продолжить без шифрования","Copied!":"Скопировано!","Copy Destination URL to Clipboard":"Скопировать URL-адрес назначения в буфер обмена","Copy failed. Please manually copy the URL":"Копирование не удалось. Скопируйте URL-адрес вручную","Core options":"Основные параметры","Counting ({{files}} files found, {{size}})":"Сканирование (найдено {{files}} файлов, {{size}})","Crashes only":"Только падения","Create bug report …":"Создать отчет об ошибке…","Create folder?":"Создать папку?","Created new limited user":"Создан новый ограниченный пользователь","Creating bug report …":"Создание отчета об ошибке…","Creating new user with limited access …":"Создание нового пользователя с ограниченным доступом…","Creating target folders …":"Создание целевых папок…","Creating temporary backup …":"Создание временной резервной копии…","Creating user...":"Создание пользователя...","Current action:":"Текущая операция:","Current file:":"Текущий файл:","Current version is {{versionname}} ({{versionnumber}})":"Текущая версия — {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"Пользовательский S3 endpoint","Custom authentication url":"Пользовательский URL-адрес аутентификации","Custom location ({{server}})":"Пользовательское местоположение ({{server}})","Custom region for creating buckets":"Пользовательский регион для создания buckets","Custom region value ({{region}})":"Пользовательское значение региона ({{region}})","Custom server url ({{server}})":"Пользовательский URL-адрес сервера ({{server}})","Custom storage class ({{class}})":"Пользовательский класс хранения ({{class}})","Database …":"База данных…","Days":"Дней","Default":"По умолчанию","Default ({{channelname}})":"По умолчанию ({{channelname}})","Default options":"Параметры по умолчанию","Delete":"Удалить","Delete backup":"Удалить резервную копию","Delete local database":"Удалить локальную базу данных","Delete remote files":"Удалить удаленные файлы","Delete the local database":"Удалить локальную базу данных","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Удалить {{filecount}} файлов ({{filesize}}) из удаленного хранилища?","Delete …":"Удалить…","Deleted":"Удалённые","Deleted Versions":"Удалённые версии","Deleted files":"Удалённые файлы","Description:":"Описание:","Desktop":"Рабочий стол","Destination":"Хранение","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Мы помогли спасти ваши файлы? Если да, пожалуйста, подумайте о поддержке Duplicati пожертвованием. Мы предлагаем {{smallamount}} за частное использование и {{largeamount}} за коммерческое использование.","Direct restore from backup files ...":"Восстановление из резервной копии","Disabled":"Отключено","Dismiss":"Скрыть","Display and color theme":"Отображение и цветовая тема","Do you really want to delete the backup: \"{{name}}\" ?":"Вы действительно хотите удалить резервную копию: «{{name}}» ?","Do you really want to delete the local database for: {{name}}":"Вы действительно хотите удалить локальную базу данных для: {{name}}","Domain Name":"Имя домена","Donate":"Пожертвовать","Donation messages":"Напоминания о пожертвовании","Donation messages are hidden, click to show":"Напоминания о пожертвовании отключены, нажмите, чтобы показывать","Donation messages are visible, click to hide":"Напоминания о пожертвовании включены, нажмите, чтобы скрыть","Done":"Готово","Download":"Скачать","Duplicate option {{opt}}":"Дублировать параметр {{opt}}","Duplicati Website":"Сайт Duplicati ","Duplicati forum":"Форум Duplicati","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Для каждой резервной копии существует связанная с ней локальная база данных, которая хранит на локальной машине информацию об удаленной резервной копии.\nПри удалении резервной копии вы можете также удалить и локальную базу данных, никак не влияя на возможность восстановления удалённых файлов.\nЕсли вы используете локальную базу данных для резервного копирования из командной строки, то вы должны сохранить базу данных.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Каждая резервная копия имеет локальную базу данных, связанную с ним, со сведениями об удаленной резервной копировании на местном компьютере. \\nЭто позволяет быстрее выполнять множество операций и уменьшает объем данных, который необходимо загрузить для каждой операции.","Edit as list":"Редактировать как список","Edit as text":"Редактировать как текст","Encrypt file":"Шифровать файл","Encryption":"Шифрование","Encryption changed":"Шифрование изменено","Encryption modules:":"Модули шифрования:","Enter URL":"Введите URL-адрес","Enter access key":"Введите ключ доступа","Enter account name":"Введите имя учетной записи","Enter backup passphrase, if any":"Введите пароль резервной копии, если таковой имеется","Enter configuration details":"Ввод сведений конфигурации","Enter container name":"Введите имя контейнера","Enter encryption passphrase":"Введите пароль шифрования","Enter expression here":"Введите выражение здесь","Enter folder path name":"Введите путь папки","Enter one option per line in command-line format, eg. {0}":"Введите по одному параметру в строке в формате командной строки, например {0}","Enter the destination path":"Введите путь назначения","Error":"Ошибка","Error!":"Ошибка!","Errors and crashes":"Ошибки и падения","Exclude":"Исключить","Exclude directories whose names contain":"Исключить каталоги, имена которых содержат","Exclude expression":"Выражение для исключения","Exclude file":"Исключить файл","Exclude file extension":"Исключить файловое расширение","Exclude files whose names contain":"Исключить файлы, имена которых содержат","Exclude folder":"Исключить папку","Exclude regular expression":"Регулярное выражение для исключения","Existing file found":"Найден существующий файл","Experimental":"Experimental","Export":"Экспорт","Export backup configuration":"Экспорт конфигурации резервного копирования","Export configuration":"Экспорт конфигурации","FTP (Alternative)":"FTP (Альтернативный)","Failed to build temporary database: {{message}}":"Не удалось построить временную базу данных: {{message}}","Failed to connect:":"Не удается подключиться:","Failed to connect: {{message}}":"Не удается подключиться: {{message}}","Failed to delete:":"Не удалось удалить:","Failed to fetch path information: {{message}}":"Не удалось получить сведения о пути: {{message}}","Failed to import:":"Не удалось импортировать:","Failed to read backup defaults:":"Не удалось прочитать настройки по умолчанию для резервной копии:","Failed to restore files: {{message}}":"Не удалось восстановить файлы: {{message}}","Failed to save:":"Не удалось сохранить:","File":"Файл","Files larger than:":"Файлы размером более:","Filters":"Фильтры","Finished!":"Готово!","First run setup":"Настройка при первом запуске","Folder":"Папка","Folder path":"Путь к папке","Fri":"Пт","GByte":"ГБ","GByte/s":"ГБ/сек","GCS Project ID":"GCS Project ID","General":"Общие","General backup settings":"Общие параметры резервного копирования","General options":"Основные параметры","Generate":"Сгенерировать","Hidden files":"Скрытые файлы","Hide":"Скрыть","Hide hidden folders":"Скрыть скрытые папки","Home":"Главная","Hours":"часов","How do you want to handle existing files?":"Как вы хотите обрабатывать существующие файлы?","Hyper-V Machine":"Hyper-V Машина","Hyper-V Machine:":"Hyper-V Машина:","Hyper-V Machines":"Hyper-V Машины","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Если дата была пропущена, задание будет выполнено как можно скорее.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Если резервное копирование и внешнее хранилище не синхронизированы, Duplicati потребует выполнения операции исправления для синхронизации базы данных. \\nЕсли исправление не удастся, вы можете удалить локальную базу данных для повторного создания.","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Если вы не введете путь, все файлы будут храниться в папке логина.\nВы уверены, что это то, что вы хотите?","If you do not enter an API Key, the tenant name is required":"Если вы не вводите ключ API, требуется имя арендатора","If you want to use the backup later, you can export the configuration before deleting it":"Если вы хотите использовать резервное копирование позже, вы можете экспортировать конфигурацию перед ее удалением","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Если ваш компьютер находится в многопользовательской среде (например, на компьютере имеется несколько учетных записей), вам необходимо установить пароль, чтобы другие пользователи не могли получать доступ к данным вашей учетной записи.\nВы хотите установить пароль сейчас?","Import":"Импорт","Import Destination URL":"Импортировать URL-адрес назначения","Import backup configuration":"Импорт настройки резервной копии","Import completed, but no certificates were found after the import":"Импорт завершен, но после импорта не были найдены сертификаты","Import failed":"Ошибка импорта","Import from a file":"Импортировать из файла","Include a file?":"Включить файл?","Include expression":"Выражение для включения","Include regular expression":"Регулярное выражение для включения","Incorrect answer, try again":"Неправильный ответ, попробуйте еще раз","Information":"Информация","Install":"Установить","Install failed:":"Установка не удалась:","Invalid characters in path":"Недопустимые символы в пути","Invalid retention time":"Недопустимое время хранения","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"К некоторым FTP возможно подключиться без пароля.\nВы уверены, что ваш FTP-сервер поддерживает вход без пароля?","KByte":"КБайт","KByte/s":"КБ/сек","Language in user interface":"Язык пользовательского интерфейса","Last month":"Последний месяц","Latest":"Последнее","Libraries":"Библиотеки","Live":"Текущие","Load a configuration from an exported job or a storage provider":"Загрузить настройки из экспортированного задания или поставщика хранилища","Load destination from an exported job or a storage provider":"Загрузить назначение из экспортированного задания или поставщика хранилища","Load older data":"Загрузить старые данные","Loading ...":"Загрузка ...","Loading remote storage usage ...":"Загрузка использования удаленного хранилища ...","Local database for":"Локальная база данных для","Local database path:":"Путь локальной базы данных:","Local storage":"Локальное хранилище","Location":"Местоположение","Location where buckets are created":"Место где создаются buckets","Log data for {{Backup.Backup.Name}}":"Данные журнала для {{Backup.Backup.Name}}","Log data from the server":"Сообщения журнала сервера","Log out":"Выход","MByte":"Мбайт","MByte/s":"Мбайт/с","Maintenance":"Техническое обслуживание","Manually type path":"Ввести путь вручную","Max download speed":"Максимальная скорость загрузки","Max upload speed":"Максимальная скорость выгрузки","Menu":"Меню","Microsoft SQL Database:":"База данных Microsoft SQL:","Microsoft SQL Databases":"Баз данных Microsoft SQL","Minimum redundancy":"Минимальная избыточность","Minimum redundancy is 1.0":"Минимальная избыточность - 1.0","Minutes":"минут","Missing name":"Отсутствует имя","Missing passphrase":"Отсутствующие парольная фраза","Missing sources":"Отсутствуют источники","Mon":"Пн","Months":"Месяцев","Move existing database":"Перемещение существующей базы данных","Move failed:":"Перемещение не удалось:","My Documents":"Мои документы","My Music":"Моя музыка","My Photos":"Мои фотографии","My Pictures":"Мои Картинки","Name":"Имя","Never":"Никогда","New update found: {{message}}":"Найдено новое обновление: {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"Новое имя пользователя — {{user}}.\nОбновлены учетные данные для использования нового пользователя с ограниченными правами","Next":"Далее","Next scheduled run:":"Следующий запуск:","Next scheduled task:":"Следующий запуск:","Next task:":"Следующая задача:","Next time":"В следующий раз","No":"Нет","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"Сертификат не был указан ранее, пожалуйста проверьте с администратором сервера ключ: {{key}} \n\nВы хотите утвердить полученный ключ сервера?","No editor found for the "{{backend}}" storage type":"Не найден редактор для хранилища типа "{{backend}}"","No encryption":"Без шифрования","No items selected":"Элементы не выбраны","No items to restore, please select one or more items":"Нет элементов для восстановления, выберите один или несколько элементов","No passphrase entered":"Не введена кодовая фраза","No scheduled tasks":"Нет запланированных задач","No, my machine has only a single account":"Нет, мой компьютер имеет единственную учётную запись","Non-matching passphrase":"Кодовые фразы не совпадают","None / disabled":"Нет / отключено","OK":"OK","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack Object Storage / Swift","Operation failed:":"Операция не удалась:","Operations:":"Операции:","Optional authentication password":"Необязательный пароль аутентификации","Optional authentication username":"Необязательное имя пользователя","Options":"Параметры","Options added here are applied to all backups, but can be overridden in each individual backup":"Опции, добавленные здесь применяются ко всем резервным копиям, но могут быть переопределены для каждой резервной копии индивидуально","Original location":"Исходное местоположение","Others":"Другие","Overwrite":"Перезаписать","Passphrase":"Кодовая фраза","Passphrase (if encrypted)":"Кодовая фраза (если зашифрован)","Passphrase changed":"Кодовая фраза изменена","Passphrases are not matching":"Кодовые фразы не совпадают","Password":"Пароль","Path":"Путь","Path not found":"Путь не найден","Path on server":"Путь на сервере","Path or subfolder in the bucket":"Путь или подпапка в bucket","Pause":"Пауза","Pause after startup or hibernation":"Отложенный запуск после включения или спящего режима","Pause options":"Параметры паузы","Permissions":"Разрешения","Pick location":"Выберите местоположение","Point to your backup files and restore from there":"Укажите место хранения резервной копии и восстановите данные из неё","Port":"Порт","Previous":"Назад","ProjectID is optional if the bucket exist":"ProjectID необязателен, если существует bucket","Proprietary":"Проприетарное","Recreate (delete and repair)":"Пересоздать (удалить и исправить)","Relative paths not allowed":"Относительные пути не допускаются","Reload":"Обновить","Remote":"Удаленный","Remove":"Удалить","Remove option":"Удалить параметр","Repair":"Исправить","Repeat Passphrase":"Повторить кодовую фразу","Reporting:":"Отчетность:","Reset":"Сбросить","Restore":"Восстановление","Restore files":"Восстановить файлы","Restore files from {{backupname}}":"Восстановить файлы из {{backupname}}","Restore from":"Восстановить из","Restore from backup configuration":"Восстановить из конфигурации резервной копии","Restore from configuration ...":"Восстановление из конфигурации","Restore options":"Параметры восстановления","Restore read/write permissions":"Восстановить разрешения чтения/записи","Resume":"Продолжить","Run again every":"Запускать каждый","Run now":"Запустить сейчас","Running ....":"Выполнение...","Running commandline entry":"Выполнение записи командной строки","Running task:":"Выполняемая задача:","S3 Compatible":"S3 совместимый","Same as the base install version: {{channelname}}":"Такой же как в базовой версии: {{channelname}}","Sat":"Сб","Save":"Сохранить","Save and repair":"Сохранить и исправить","Save different versions with timestamp in file name":"Сохранить различные версии с отметкой времени в имени файла","Save immediately":"Немедленно сохранить","Schedule":"Расписание","Search":"Поиск","Search for files":"Поиск файлов","Seconds":"Секунд","Select a log level and see messages as they happen:":"Выберите уровень журналирования для просмотра сообщений по мере их возникновения:","Select files":"Выбор файлов","Server":"Сервер","Server and port":"Сервер и порт","Server hostname or IP":"Имя сервера или IP","Server is currently paused,":"Сервер приостановлен,","Server is currently paused, do you want to resume now?":"Сервер в настоящее время приостановлен, вы хотите возобновить сейчас?","Server password":"Пароль сервера","Server paused":"Сервер приостановлен","Server state properties":"Свойства состояния сервера","Settings":"Настройки","Show":"Показать","Show advanced editor":"Текстовое отображение","Show hidden folders":"Показать скрытые папки","Show log":"Журнал","Show treeview":"Древовидное отображение","Sia server password":"Пароль сервера Sia","Some OpenStack providers allow an API key instead of a password and tenant name":"Некоторые провайдеры OpenStack позволяют использовать ключ API вместо имени клиента и пароля","Source Data":"Исходные данные","Source data":"Данные для резервирования","Source folders":"Исходные папки","Source:":"Источник:","Standard protocols":"Стандартные протоколы","Stop after the current file":"Остановиться после текущего файла","Stop now":"Остановить сейчас","Stop running backup":"Остановить резервное копирование","Stop running task":"Остановить задачу","Stopping task:":"Остановка задачи:","Storage Type":"Тип хранилища","Storage class":"Класс хранилища","Storage class for creating a bucket":"Класс хранения для создания bucket","Stored":"Сохраненные","Strong":"Сильный","Success":"Успех","Sun":"Вс","Symbolic link":"Символическая ссылка","System default ({{levelname}})":"По умолчанию ({{levelname}})","System files":"Системные файлы","System info":"Информация о системе","System properties":"Свойства системы","TByte":"ТБайт","TByte/s":"ТБайт/s","Target path, ie /backup":"Целевой путь, т.е. /backup","Task is running":"Выполняется задача","Temporary files":"Временные файлы","Tenant Name":"Имя клиента","Test connection":"Проверить доступ","Testing ...":"Проверка ...","Testing connection ...":"Проверка соединения...","Testing permissions...":"Проверка разрешений...","The bucket name should be all lower-case, convert automatically?":"Имя bucket должно быть строчным, преобразовать автоматически?","The bucket name should start with your username, prepend automatically?":"Имя bucket следует начинать с вашего имени пользователя, вставить автоматически?","The connection to the server is lost, attempting again in {{time}} ...":"Потеряно соединение с сервером, повторная попытка через {{time}} ...","The dark theme (by Michal)":"Тёмная тема (от Michael)","The default blue on white theme (by Alex)":"Стандартная тема синий на белом (от Alex)","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"Ключ узла изменился, пожалуйста, проверьте у администратора сервера так ли это, в противном случае вы можете быть жертвой атаки MAN-IN-THE-MIDDLE.\n\nВы хотите ЗАМЕНИТЬ ваш ТЕКУЩИЙ ключ узла «{{prev}}» ПОЛУЧЕННЫМ ключом хоста: {{key}}?","The path does not appear to exist, do you want to add it anyway?":"Путь, по-видимому, не существует, вы всё равно хотите его добавить?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"Путь не заканчивается символом «{{dirsep}}», что означает, что вы включаете файл, а не папку.\n\nВы хотите включить указанный файл?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"Путь должен быть абсолютным, то есть он должен начинаться с косой черты «/»","The region parameter is only applied when creating a new bucket":"Параметр «регион» применяется только при создании нового bucket","The region parameter is only used when creating a bucket":"Параметр «регион» используется только при создании bucket","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Не удалось проверить сертификат сервера.\nВы хотите утвердить SSL-сертификат с хэшом: {{hash}}?","The storage class affects the availability and price for a stored file":"Класс хранилища влияет на доступность и цену сохраненного файла","The target folder contains encrypted files, please supply the passphrase":"Целевая папка содержит зашифрованные файлы, пожалуйста, укажите кодовую фразу","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"Пользователь имеет слишком много прав. Вы хотите создать нового пользователя с ограниченными правами, с разрешениями только на выбранный путь?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"Эта резервная копия была создана в другой операционной системе. Восстановление файлов без указания папки назначения может повлечь восстановление файлов в неожиданных местах. Вы уверены, что вы хотите продолжить без выбора папки назначения?","This month":"В этом месяце","This week":"На этой неделе","Throttle settings":"Параметры ограничения скорости","Thu":"Чт","To File":"В файл","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Чтобы подтвердить, что вы хотите удалить все дистанционные файлы для «{{name}}», введите слово, которое вы видите ниже","To export without a passphrase, uncheck the \"Encrypt file\" box":"Чтобы экспортировать без кодовой фразы, снимите флажок «Зашифровать файл»","Today":"Сегодня","Trust host certificate?":"Доверять сертификату хоста?","Trust server certificate?":"Доверять сертификату сервера?","Tue":"Вт","Type to highlight files":"Напишите для выделения файлов","Unknown backup size and versions":"Неизвестные размер резервной копии и версии","Until resumed":"До возобновления","Update channel":"Канал обновлений","Update failed:":"Обновление не удалось:","Updating with existing database":"Обновление с существующей базой данных","Usage statistics":"Статистика использования","Usage statistics, warnings, errors, and crashes":"Статистика использования, предупреждения, ошибки и падения","Use SSL":"Использовать SSL","Use existing database?":"Использовать существующую базу данных?","Use weak passphrase":"Использовать слабую кодовую фразу","Useless":"Бесполезно","User data":"Данные пользователя","User has too many permissions":"Пользователь имеет слишком много разрешений","User interface settings":"Настройки интерфейса","Username":"Имя пользователя","Verify files":"Проверить файлы","Verifying ...":"Проверка ...","Verifying answer":"Проверка ответа","Very strong":"Очень надёжный","Very weak":"Очень слабый","Visit us on":"Посетите нас на","WARNING: The remote database is found to be in use by the commandline library":"ВНИМАНИЕ: Удаленная база данных используется библиотекой командной строки","WARNING: This will prevent you from restoring the data in the future.":"ВНИМАНИЕ: В будущем это не позволит вам восстановить данные.","Waiting for task to begin":"Ожидание начала задачи","Waiting for task to start ....":"Ожидание запуска задачи...","Warnings, errors and crashes":"Предупреждения, ошибки и падения","We recommend that you encrypt all backups stored outside your system":"Мы рекомендуем зашифровать все резервные копии, хранящиеся вне вашей системы","Weak":"Слабый","Weak passphrase":"Слабая кодовая фраза","Wed":"Ср","Weeks":"Недель","Where do you want to restore from?":"Откуда вы хотите восстановить данные?","Where do you want to restore the files to?":"Куда вы хотите восстановить файлы?","Years":"Лет","Yes":"Да","Yes, I have stored the passphrase safely":"Да, я надёжно сохранил кодовую фразу","Yes, I'm brave!":"Да, я смелый!","Yes, please break my backup!":"Да, пожалуйста, сломайте мою резервную копию!","Yesterday":"Вчера","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"Вы используете Mono без загруженных SSL-сертификатов.\nВы хотите импортировать список доверенных сертификатов от Mozilla?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"Вы меняете путь базы данных отличный от существующей базы данных.\nВы уверены, что это то, что вы хотите?","You are currently running {{appname}} {{version}}":"Вы используете {{appname}} {{version}}","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"Вы изменили режим шифрования. Это может что-нибудь сломать. Вместо этого вам лучше создать новую резервную копию","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"Вы изменили кодовую фразу, но это не поддерживается. Вместо этого вам стоит создать новую резервную копию.","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"Вы выбрали не шифровать резервную копию. Шифрование рекомендовано для всех данных, хранящихся на удаленном сервере.","You have chosen to restore to a new location, but not entered one":"Вы выбрали новое место для восстановления, но не ввели его","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"Вы использовали сильную парольную фразу. Пожалуйста, убедитесь, что вы надёжно сохранили парольную фразу, ибо восстановление данных невозможно в случае её утраты.","You must choose at least one source folder":"Вы должны выбрать по крайней мере одну исходную папку","You must enter a name for the backup":"Вам необходимо ввести имя резервной копии","You must enter a passphrase or disable encryption":"Вы должны ввести кодовую фразу или отключить шифрование","You must enter a positive number of backups to keep":"Необходимо ввести положительное число резервных копий для хранения","You must enter a tenant name if you do not provide an API Key":"Вам необходимо ввести имя арендатора, если вы не предоставите ключ API","You must enter a valid duration for the time to keep backups":"Необходимо ввести допустимый срок времени хранения резервных копий","You must enter either a password or an API Key":"Вы должны ввести пароль или ключ API","You must enter either a password or an API Key, not both":"Вы должны ввести либо пароль, либо ключ API, но не оба","You must fill in the password":"Вы должны заполнить пароль","You must fill in the server name or address":"Вы должны заполнить имя сервера или адрес","You must fill in the username":"Вы должны заполнить имя пользователя","You must fill in {{field}}":"Вы должны заполнить {{field}}","You must select or fill in the AuthURI":"Вы должны выбрать или заполнить AuthURI","You must select or fill in the server":"Вы должны выбрать или заполнить сервер","You must specify a path":"Вы должны указать путь","Your files and folders have been restored successfully.":"Ваши файлы и папки были восстановлены успешно.","Your passphrase is easy to guess. Consider changing passphrase.":"Вашу кодовую фразу легко отгадать. Подумайте об изменении кодовой фразы.","bucket/folder/subfolder":"bucket/папка/подпапка","byte":"байт","byte/s":"байт/сек","custom":"пользовательские","resume now":"возобновить сейчас","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"Основными разработчиками {{appname}} являются {{dev1}} и {{dev2}}. Последняя версия {{appname}} может быть загружена с сайта {{websitename}}. {{appname}} распространяется под лицензией {{licensename}}.","{{files}} files ({{size}}) to go {{speed_txt}}":"{{files}} файлов ({{size}}) впереди {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{item.Backup.Metadata.TargetSizeString}} / {{$count}} версия","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} версии","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} версий","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} версий"],"{{number}} Hour":"{{number}} Часов","{{number}} Minutes":"{{number}} минут","{{time}} (took {{duration}})":"{{time}} (заняло {{duration}})"}); gettextCatalog.setStrings('sk_SK', {"- pick an option -":"- zadajte voľbu -","...loading...":"...načítavam...","API Key":"API Kľúč","AWS Access ID":"AWS prístupové ID","AWS Access Key":"AWS prístupový kľúč","AWS IAM Policy":"AWS IAM Pravidlá","About":"O","About {{appname}}":"O {{appname}}","Access Key":"Prístupový kľúč","Access denied":"Prístup zakázaný","Access to user interface":"Prístup k používateľskému rozhraniu","Account name":"Užívateľské meno","Activate":"Aktivácia","Activate failed:":"Aktivácia zlyhala:","Add a new backup":"Pridať novú zálohu","Add a path directly":"Pridajte cestu priamo","Add advanced option":"Pridať rozšírenú možnosť","Allowed days":"Povolené dni","AuthID":"AuthID","Authentication password":"Prístupové heslo","Authentication username":"Prístupové užívateľské meno","Autogenerated passphrase":"Autogenerácia hesla","Back":"Späť","Backup:":"Záloha:","Beta":"Beta","Canary":"Canary","Computer":"Počítač","Configuration:":"Konfigurácia:","Confirm encryption passphrase":"Potvrdenie šifrovacej frázy","Continue":"Pokračovať","Continue without encryption":"Pokračovať bez šifrovania","Copied!":"Skopírované!","Create folder?":"Vytvoriť adresár?","Days":"Dni","Delete":"Zmazať","Delete backup":"Zmazať zálohu","Do you really want to delete the backup: \"{{name}}\" ?":"Ozaj chcete zmazať zálohu: \"{{name}}\" ?","Donate":"Darovať","Duplicati Website":"Duplicati stránky","Encryption":"Šifrovanie","Enter URL":"Zadaj URL","Enter access key":"Zadaj prístupový kľúč","Enter account name":"Zadaj prístupové meno","Enter encryption passphrase":"Vložte šifrovacie heslo","Error":"Chyba","Error!":"Chyba!","Path":"Cesta"}); gettextCatalog.setStrings('sk', {"- pick an option -":"- vybrať možnosť -","...loading...":"...nahrávam...","API Key":"API Kľúč","AWS Access ID":"AWS Prístupové ID","AWS Access Key":"AWS Prístupový kľúč","AWS IAM Policy":"AWS IAM Politika","About":"o","About {{appname}}":"O {{appname}}","Access Key":"Prístupový kľúč","Access denied":"Prístup zamietnutý","Access to user interface":"Prístup k používateľskému rozhraniu","Account name":"Názov účtu","Activate":"Aktivovať","Activate failed:":"Aktivácia zlyhala:","Add a new backup":"Pridať novú zálohu","Add a path directly":"Pridajte cestu priamo","Add advanced option":"Pridať rozšírenú možnosť","Add backup":"Pridať zálohu","Add filter":"Pridať filter","Add path":"Pridať cestu","Adjust bucket name?":"Nastaviť názov sektoru?","Adjust path name?":"Upraviť názov cesty?","Advanced Options":"Pokročilé nastavenia","Advanced options":"Pokročilé nastavenia","Advanced:":"Pokročilé:","All Hyper-V Machines":"Všetky stroje Hyper-V","All Microsoft SQL Databases":"Všetky databázy Microsoft SQL","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Všetky správy o používaní sa odosielajú anonymne a neobsahujú žiadne osobné údaje. Obsahujú informácie o hardvéri a operačnom systéme, druhu backendu, trvaní zálohovania, celkovej veľkosti zdrojových dát a podobných údajov. Neobsahujú cesty, názvy súborov, používateľské mená, heslá ani podobné citlivé informácie.","Allow remote access (requires restart)":"Povoliť vzdialený prístup (vyžaduje reštart)","Allowed days":"Povolené dni","An existing file was found at the new location":"Existujúci súbor bol nájdený na novom mieste","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Existujúci súbor bol nájdený na novom mieste\nNaozaj chcete, aby databáza smerovala k existujúcemu súboru?"}); - gettextCatalog.setStrings('sr_RS', {"- pick an option -":"- odaberite opciju -","...loading...":"...učitavanje...","API Key":"API ključ","AWS Access ID":"AWS Access ID","AWS Access Key":"AWS Access Key","AWS IAM Policy":"AWS IAM Policy","About":"O nama","About {{appname}}":"O aplikaciji {{appname}}","Access Key":"Pristupni ključ - access key","Access denied":"Pristup odbijen","Access to user interface":"Pristup korisničkom interfejsu","Account name":"Korisničko ime","Activate":"Aktiviraj","Activate failed:":"Aktivacija nije uspešna:","Add a new backup":"Dodaj novi bekap","Add advanced option":"Dodaj naprednu opciju","Add backup":"Dodaj bekap","Add filter":"Dodaj filter","Add path":"Dodaj putanju","Adjust bucket name?":"Prilagodi ime kofice?","Adjust path name?":"Prilagodi ime putanje?","Advanced Options":"Napredne opcije","Advanced options":"Napredne opcije","Advanced:":"Napredno:","All Hyper-V Machines":"Sve Hyper-V mašine","All Microsoft SQL Databases":"Sve Microsoft SQL baze podataka","Allow remote access (requires restart)":"Dozvoli udaljeni pristup (zahteva restartovanje)","Allowed days":"Dozvoljeni dani","An existing file was found at the new location":"Postojeća datoteka je pronađena na novoj lokaciji","AuthID":"AuthID","Automatically run backups.":"Automatski pokreći backupove.","Back":"Nazad","Backend modules:":"Backend moduli:","Backup destination":"Backup odredište","Backup location":"Backup lokacija","Backup:":"Backup:","Beta":"Beta","Busy ...":"Zauzet ...","Canary":"Canary","Cancel":"Otkaži","Cannot move to existing file":"Nemoguće premestiti u postojeću datoteku","Check for updates now":"Proveri ažuriranja odmah","Checking ...":"Proveravanje ...","Computer":"Računar","Configuration file:":"Datoteka sa podešavanjima:","Configuration:":"Podešavanja:","Confirm delete":"Potvrdi brisanje","Confirmation required":"Neophodna potvrda","Connect":"Poveži","Connect now":"Poveži odmah","Connecting to task ....":"Povezivanje na zadatak ....","Connecting...":"Povezivanje...","Connection lost":"Veza izgubljena","Connection worked!":"Veza je radila!","Continue":"Nastavi","Continue without encryption":"Nastavi bez šifrovanja","Copied!":"Prekopirano!","Copy Destination URL to Clipboard":"Kopiraj odredišni URL u privremenu memoriju","Copy failed. Please manually copy the URL":"Kopiranje nije uspelo. Molimo ručno kopiraj URL","Create folder?":"Napraviti fasciklu?","Created new limited user":"Napravljen novi ograničeni korisnik","Creating user...":"Pravljenje korisnika...","Current version is {{versionname}} ({{versionnumber}})":"Trenutna verzija je {{versionname}} ({{versionnumber}})","Default":"Podrazumevano","Delete":"Obriši","Delete backup":"Obriši backup","Delete local database":"Obriši lokalnu bazu podataka","Delete remote files":"Obriši udaljene datoteke","Delete the local database":"Obriši lokalnu bazu podataka","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Obrisati {{filecount}} datoteka ({{filesize}}) iz udaljenog skladišta?","Desktop":"Radna površina","Destination":"Odredište","Disabled":"Onemogućeno","Dismiss":"Odbaci","Do you really want to delete the backup: \"{{name}}\" ?":"Da li zaista želiš da obrišeš backup: \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Da li zaista želiš da obrišeš lokalnu bazu podataka za: {{name}}","Donate":"Doniraj","Done":"Završi","Download":"Preuzmi","Edit as list":"Izmeni kao listu","Edit as text":"Izmeni kao tekst","Encrypt file":"Šifruj datoteku","Encryption":"Šifrovanje","Encryption changed":"Šifrovanje promenjeno","Enter URL":"Unesi URL","Enter encryption passphrase":"Unesite lozinku šifrovanja","Error":"Greška","Error!":"Greška!","Export":"Izvezi","Export backup configuration":"Izvezi podešavanja backupa","Export configuration":"Izvezi podešavanja","File":"Datoteka","Files larger than:":"Datoteke veće od:","Finished!":"Završeno!","Folder":"Fascikla","Fri":"Pet","GByte":"GBajt","GByte/s":"GBajt/s","Hidden files":"Skrivene datoteke","Hide":"Sakrij","Hide hidden folders":"Sakrij skrivene fascikle","Home":"Glavna","Hours":"Sati","Hyper-V Machine":"Hyper-V mašina","Hyper-V Machine:":"Hyper-V mašina:","Hyper-V Machines":"Hyper-V mašine","ID:":"ID:","Incorrect answer, try again":"Netačan odgovor, pokušajte ponovo","Install":"Instalacija","Install failed:":"Instalacija nije uspela:","KByte":"KBajt","KByte/s":"KBajt/s","Language in user interface":"Jezik u korisničkom interfejsu","Last month":"Prošlog meseca","Libraries":"Biblioteke","Load older data":"Učitaj starije podatke","Loading ...":"Učitavanje ...","Local database for":"Lokalna baza podataka za","Local database path:":"Putanja lokalne baze podataka:","Local storage":"Lokalno skladište","Location":"Lokacija","Log out":"Odjavi se","MByte":"MBajt","MByte/s":"MBajt/s","Maintenance":"Održavanje","Manually type path":"Ručno unesite putanju","Menu":"Meni","Microsoft SQL Database:":"Microsoft SQL baza podataka:","Microsoft SQL Databases":"Microsoft SQL baze podataka","Minutes":"Minute","Missing name":"Nedostaje naziv","Missing passphrase":"Nedostaje lozinka","Mon":"Pon","Months":"Meseci","My Documents":"Moji dokumenti","My Music":"Moja muzika","My Photos":"Moje fotografije","My Pictures":"Moje slike","Name":"Naziv","Never":"Nikad","Next":"Sledeće","Next scheduled run:":"Sledeće zakazano pokretanje:","Next scheduled task:":"Sledeći zakazan zadatak:","Next task:":"Sledeći zadatak:","Next time":"Sledeći put","No":"Ne","No encryption":"Bez šifrovanja","No items selected":"Nema izabranih stavki","No passphrase entered":"Lozinka nije uneta","No scheduled tasks":"Nema zakazanih zadataka","OK":"U redu","Operation failed:":"Operacija neuspešna:","Operations:":"Operacije:","Options":"Opcije","Others":"Ostalo","Overwrite":"Prepiši","Passphrase":"Lozinka","Passphrase (if encrypted)":"Lozinka (ako je šifrovano)","Passphrase changed":"Lozinka promenjena","Passphrases are not matching":"Lozinke se ne poklapaju","Password":"Lozinka","Path not found":"Putanja nije pronađena","Path on server":"Putanja na serveru","Pause":"Pauza","Pause after startup or hibernation":"Pauziraj nakon pokretanja ili hibernacije","Permissions":"Dozvole","Port":"Port","Previous":"Prethodno","Relative paths not allowed":"Relativne putanje nisu dozvoljene","Reload":"Učitaj ponovo","Remote":"Udaljeno","Remove":"Ukloni","Remove option":"Ukloni opciju","Repair":"Popravi","Repeat Passphrase":"Ponovite lozinku","Reset":"Resetovanje","Restore":"Vrati","Restore files":"Vrati datoteke","Restore files from {{backupname}}":"Povrati datoteke iz {{backupname}}","Restore from":"Vrati iz","Restore from backup configuration":"Vrati iz podešavanja backupa","Restore from configuration ...":"Vraćanje iz podešavanja ...","Restore options":"Vrati opcije","Restore read/write permissions":"Vrati dozvole za čitanje i upis","Resume":"Nastavi","Run again every":"Pokreni ponovo svaki","Run now":"Pokreni sad","Running ....":"Izvršavanje ....","Running commandline entry":"Izvrši unos komandne linije","Running task:":"Izvršavanje zadatka:","Sat":"Sub","Save":"Sačuvaj","Save and repair":"Snimi i popravi","Save different versions with timestamp in file name":"Snimi drugu verziju sa vremenom u nazivu datoteke","Save immediately":"Snimi odmah","Schedule":"Raspored","Search":"Pretraga","Search for files":"Pretraga datoteka","Seconds":"Sekunde","Select files":"Izaberite datoteke","Server":"Server","Server and port":"Server i port","Server hostname or IP":"Ime servera ili IP adresa","Server is currently paused,":"Server je trenutno pauziran,","Server is currently paused, do you want to resume now?":"Server je trenutno pauziran, da li želite da nastavite odmah?","Server paused":"Server je pauziran","Server state properties":"Opcije stanja servera","Settings":"Podešavanja","Show":"Prikaži","Show advanced editor":"Prikaži napredni editor","Show hidden folders":"Prikaži skrivene fascikle","Show log":"Prikaži dnevnik","Stop after the current file":"Zaustavi nakon trenutne datoteke","Stop now":"Zaustavi odmah","Stop running backup":"Zaustavi pokrenuti backup","Stop running task":"Zaustavi pokrenuti zadatak","Stopping task:":"Zaustavljanje zadatka:","Storage Type":"Tip skladišta","Storage class":"Klasa skladišta","Stored":"Uskladišteno","Strong":"Jaka","Success":"Uspešno","Sun":"Ned","Symbolic link":"Simbolička veza","System files":"Sistemske datoteke","System info":"Sistemski podaci","System properties":"Sistemske opcije","TByte":"TBajt","TByte/s":"TBajt/s","Task is running":"Zadatak se izvršava","Temporary files":"Privremene datoteke","Test connection":"Probaj vezu","Testing ...":"Proveravanje ...","Testing connection ...":"Proveravanje veze ...","Testing permissions...":"Proveravanje dozvola...","The connection to the server is lost, attempting again in {{time}} ...":"Veza sa serverom je prekinuta, pokušavanje ponovo za {{time}} ...","The dark theme (by Michal)":"Tamna tema (napravio Michal)","The default blue on white theme (by Alex)":"Podrazumevana plavo na belom tema (napravio Alex)","The path does not appear to exist, do you want to add it anyway?":"Putanja izgleda ne postoji, da li svejedno želite da je dodate?","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Sertifikat servera nije mogao biti proveren.\nDa li želite da odobrite SSL sertifikat sa hešom: {{hash}}?","The storage class affects the availability and price for a stored file":"Klasa skladišta utiče na dostupnost i cenu za uskladištenu datoteku","The target folder contains encrypted files, please supply the passphrase":"Ciljana fasckla sadrži šifrovane datoteke, molimo unesite lozinku","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"Korisnik ima previše dozvola, Da li želite da napravite novog ograničenog korisnika, sa samo dozvolama za izabranu putanju?","This month":"Ovog meseca","This week":"Ove sedmice","Thu":"Čet","To File":"U datoteku","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Da potvrdite da želite obrisati sve udaljene datoteke sa imenom \"{{name}}\", molimo unesite reč koju vidite ispod","To export without a passphrase, uncheck the \"Encrypt file\" box":"Za izvoz bez lozinke, polje \"Šifruj datoteku\" ne treba da bude označeno","Today":"Danas","Trust server certificate?":"Veruj sertifikatu servera?","Tue":"Uto","Update failed:":"Ažuriranje nije uspelo:","Updating with existing database":"Ažuriranje sa postojećom bazom podataka","Usage statistics":"Statistika upotrebe","Use SSL":"Koristi SSL","Use existing database?":"Koristi postojeću bazu podataka?","Use weak passphrase":"Koristi slabu lozinku","Useless":"Beskorisno","User data":"Podaci o korisniku","User has too many permissions":"Korisnik ima previše dozvola","User interface settings":"Podešavanja korisničkog interfejsa","Username":"Korisničko ime","Verify files":"Proveri datoteke","Verifying ...":"Proveravanje ...","Verifying answer":"Proveravanje odgovora","Very strong":"Veoma jaka","Very weak":"Veoma slaba","Visit us on":"Posetite nas na","Waiting for task to begin":"Čekanje na početak zadatka","Waiting for task to start ....":"Čekanje na pokretanje zadatka ....","We recommend that you encrypt all backups stored outside your system":"Preporučujemo da šifrujete sve backup-ove uskladištene van Vašeg sistema","Weak":"Slaba","Weak passphrase":"Slaba lozinka","Wed":"Sre","Weeks":"Sedmica","Where do you want to restore from?":"Odakle želite da vratite?","Where do you want to restore the files to?":"Gde želite da vratite datoteke?","Years":"Godina","Yes":"Da","Yes, I have stored the passphrase safely":"Da, uskladištio sam lozinku bezbedno","Yes, I'm brave!":"Da, hrabar sam!","Yesterday":"Juče","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"Izgleda da koristite Mono bez učitanih SSL sertifikata.\nDa li želite da uvezete listu poverljivih sertifikata od Mozille?","You are currently running {{appname}} {{version}}":"Trenutno koristite {{appname}} {{version}}","You must enter a name for the backup":"Morate uneti naziv za backup","You must enter a passphrase or disable encryption":"Morate uneti lozinku ili isključiti šifrovanje","You must enter either a password or an API Key":"Morate uneti ili lozinku ili API ključ","You must enter either a password or an API Key, not both":"Morate uneti ili lozinku ili API ključ, ne oboje","You must fill in the password":"Morate uneti lozinku","You must fill in the server name or address":"Morate uneti naziv servera ili adresu","You must fill in the username":"Morate uneti korisničko ime","You must fill in {{field}}":"Morate uneti {{field}}","You must select or fill in the AuthURI":"Morate izabrati ili uneti AuthURI","You must select or fill in the server":"Morate izabrati ili uneti server","You must specify a path":"Morate navesti putanju","Your files and folders have been restored successfully.":"Vaše datoteke i fascikle su uspešno vraćene.","Your passphrase is easy to guess. Consider changing passphrase.":"Vaša lozinka je laka za pogađanje. Razmislite o promeni lozinke.","byte":"bajt","byte/s":"bajt/s","resume now":"nastavi odmah","{{number}} Hour":"{{number}} sati","{{number}} Minutes":"{{number}} minuta"}); + gettextCatalog.setStrings('sr_RS', {"- pick an option -":"- odaberite opciju -","...loading...":"...učitavanje...","API Key":"API Ključ","API key":"API ključ","AWS Access ID":"AWS Access ID","AWS Access Key":"AWS Access Key","AWS IAM Policy":"AWS IAM Policy","About":"O nama","About {{appname}}":"O aplikaciji {{appname}}","Access Key":"Pristupni ključ - access key","Access denied":"Pristup odbijen","Access grant":"Dozvola za pristup","Access to user interface":"Pristup korisničkom interfejsu","Account name":"Korisničko ime","Activate":"Aktiviraj","Activate failed:":"Aktivacija nije uspešna:","Add a new backup":"Dodaj novu rezervnu kopiju","Add a path directly":"Dodajte direktno putanju","Add advanced option":"Dodaj naprednu opciju","Add backup":"Dodaj rezervnu kopiju","Add filter":"Dodaj filter","Add path":"Dodaj putanju","Added":"Dodato","Adjust bucket name?":"Prilagodi ime segment-a?","Adjust path name?":"Prilagodi ime putanje?","Advanced Options":"Napredne opcije","Advanced options":"Napredne opcije","Advanced:":"Napredno:","All Hyper-V Machines":"Sve Hyper-V mašine","All Microsoft SQL Databases":"Sve Microsoft SQL baze podataka","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"Svi izveštaji o korišćenju se šalju anonimno i ne sadrže nikakve lične podatke. Oni sadrže informacije o hardveru i operativnom sistemu, tipu pozadine, trajanju rezervne kopije, ukupnoj veličini izvornih podataka i sličnim podacima. Ne sadrže putanje, imena datoteka, korisnička imena, lozinke ili slične osetljive informacije.","Allow remote access (requires restart)":"Dozvoli udaljeni pristup (zahteva restartovanje)","Allowed days":"Dozvoljeni dani","An existing file was found at the new location":"Postojeća datoteka je pronađena na novoj lokaciji","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"Postojeća datoteka je pronađena na novoj lokaciji\nDa li ste sigurni da želite da baza podataka ukazuje na postojeću datoteku?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"Pronađena je u skladištu postojeća lokalna baza.\nBaza se ponovo može koristit sa komandne linije i serverske instance na istom skladištu.\n\nDa li želite da koristite postojeću bazu?","Anonymous usage reports":"Anonimni izveštaj o korišćenju","Applications":"Aplikacije","As Command-line":"Kao komandna linija","AuthID":"AuthID","Authentication method":"Metoda autentifikacije","Authentication method ({{auth_method}})":"Metoda autentifikacije ({{auth_method}})","Authentication password":"Lozinka za autentifikaciju","Authentication username":"Korisničko ime za autentifikaciju","Autogenerated passphrase":"Automatski generisana pristupna lozinka","Automatically run backups.":"Automatski pokreći rezervne kopije.","B2 Application ID":"B2 ID aplikacije","B2 Application Key":"B2 aplikacioni ključ","B2 Cloud Storage Account ID":"B2 ID naloga za skladište u oblaku","B2 Cloud Storage Application ID":"B2 ID aplikacije za skladište u oblaku","B2 Cloud Storage Application Key":"B2 ključ aplikacije za skladište u oblaku","Back":"Nazad","Backend modules:":"Moduli u pozadini:","Backup complete!":"Rezervna kopija je završena!","Backup destination":"Odredište rezervne kopije","Backup is encrypted but no passphrase is available.\n Type a passphrase below to use for restoring your files,\n or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n invoking your system's keychain.":"Rezervna kopija je šifrovana ali fraza lozinke nije dostupna.\nUnesite ispod frazu lozinke koju ćete koristiti za vraćanje vaših fajlova,\nili, u slučaju GPG enkripcije, ostavite prazno da biste dozvolili gpg-u da preuzme frazu lozinke\npozivanjem keychain-a vašeg sistema.","Backup location":"Lokacija rezervne kopije","Backup retention":"Čuvanje rezervne kopije","Backup:":"Rezervna kopija:","Beta":"Beta","Broken access":"Neispravan pristup","Browse":"Pregledaj","Browser default":"Podrazumvani pretraživač","Bucket":"Segment","Bucket Name":"Ime segmenta","Bucket create location":"Segment kreira lokaciju","Bucket create region":"Segment kreira region","Bucket name":"Ime segmenta","Bucket storage class":"Klasa skladištenja segment-a","Building list of files to restore …":"Pravljnje liste fajlova za vraćanje ...","Building partial temporary database …":"Pravljenje delimične privremene baze podataka ...","Busy ...":"Zauzet ...","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"Dozvoljavajući daljinski pristup, server sluša zahteve sa bilo koje mašine na vašoj mreži. Ako omogućite ovu opciju, uverite se da uvek koristite računar na bezbednoj mreži zaštićenoj zaštitnim zidom.","By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option.":"Podrazumevano, ikona u traci otvara korisnički interfejs sa tokenom koji otključava korisnički interfejs. Ovo osigurava da možete pristupiti korisničkom interfejsu sa ikone na traci, dok od drugih zahtevate da unesu lozinku. Ako želite da se mora uneti lozinka, čak i kada pristupate korisničkom interfejsu sa ikone na traci, omogućite ovu opciju.","Cache Files":"Keš fajlovi","Canary":"Canary","Cancel":"Otkaži","Cannot move to existing file":"Nemoguće premestiti u postojeću datoteku","Changelog":"Dnevnik promena","Changelog for {{appname}} {{version}}":"Dnevnik promena za {{appname}} {{version}}","Check failed:":"Provera nije uspela:","Check for updates now":"Proveri ažuriranja odmah","Checking ...":"Proveravanje ...","Checking for updates …":"Provera ažuriranja …","Chose a storage type to get started":"Izaberite tip skladištenja da biste započeli","Click the AuthID link to create an AuthID":"Kliknite na vezu AuthID da biste kreirali AuthID","Click to set throttle options":"Kliknite da biste podesili opcije prigušivanja funkcije","Client library to use":"Klijentska biblioteka za korišćenje","Commandline …":"Komandna linija …","Compact Phase":"Faza sažimanja","Compact now":"Sažmi sada","Compacting remote data ...":"Sažimanje udaljenih podataka ...","Compacting remote data …":"Sažimanje udaljenih podataka ...","Complete log":"Kompletiram dnevnik","Completing backup …":"Kompletiranje rezervne kopije","Completing previous backup …":"Kompletiranje prethodne rezervne kopije","Compression modules:":"Moduli za kompresiju:","Computer":"Računar","Configuration file:":"Datoteka sa podešavanjima:","Configuration:":"Podešavanja:","Configure a new backup":"Konfigurišite novu rezervnu kopiju","Confirm delete":"Potvrdi brisanje","Confirm encryption passphrase":"Potvrdite pristupnu frazu lozinke za šifrovanje","Confirm passphrase":"Potvrdite pristupnu frazu lozinke","Confirm password":"Potvrdi lozinku","Confirmation required":"Neophodna potvrda","Connect":"Poveži","Connect now":"Poveži odmah","Connecting to server …":"Povezivanje na server …","Connecting to task ....":"Povezivanje na zadatak ....","Connecting...":"Povezivanje...","Connection lost":"Veza izgubljena","Connection worked!":"Veza je radila!","Container name":"Naziv kontejnera","Container region":"Region kontejnera","Continue":"Nastavi","Continue without encryption":"Nastavi bez šifrovanja","Copied!":"Prekopirano!","Copy":"Kopiraj","Copy Destination URL to Clipboard":"Kopiraj odredišni URL u privremenu memoriju","Copy failed. Please manually copy the URL":"Kopiranje nije uspelo. Molimo ručno kopirajte URL","Core options":"Osnovne opcije","Counting ({{files}} files found, {{size}})":"Brojanjem ({{files}} fajlova pronađeno, {{size}})","Crashes only":"Samo srušeni","Create bug report …":"Kreira se izveštaj o greškama ...","Create folder?":"Napraviti fasciklu?","Created new limited user":"Napravljen novi korisnik sa ograničenjima","Creating bug report …":"Kreira se izveštaj o greškama ...","Creating new user with limited access …":"Pravljenje novog korisnika sa ograničenim pristupom …","Creating target folders …":"Pravljenje ciljnih foldera ...","Creating temporary backup …":"Pravljenje privremene rezervne kopije …","Creating user...":"Pravljenje korisnika...","Current action:":"Trenutna akcija:","Current file:":"Trenutni fajl:","Current version is {{versionname}} ({{versionnumber}})":"Trenutna verzija je {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"Prilagođena krajnja tačka S3","Custom Satellite":"Prilagođeni satelit","Custom Satellite ({{satellite}})":"Prilagođeni satelit ({{satellite}})","Custom authentication url":"Prilagođeni URL za autentifikaciju","Custom backup retention":"Prilagođeno zadržavanje rezervne kopije","Custom location ({{server}})":"Prilagođena lokacija ({{server}})","Custom region for creating buckets":"Prilagođeni region za pravljenje segmenata","Custom region value ({{region}})":"Prilagođena vrednost regiona ({{region}})","Custom server url ({{server}})":"Prilagođeni URL servera ({{server}})","Custom storage class\n ({{class}})":"Prilagođena klasa skladištenja\n({{class}})","Custom storage class ({{class}})":"Prilagođena klasa skladištenja ({{class}})","Database …":"Baza podataka ...","Days":"Dana","Default":"Podrazumevano","Default ({{channelname}})":"Podrazumevano ({{channelname}})","Default excludes":"Podrazumevano isključuje","Default options":"Podrazumevane opcije","Delete":"Obriši","Delete Phase (Old Backup Versions)":"Faza brisanja (stare verzije rezervne kopije)","Delete backup":"Obriši backup","Delete backups that are older than":"Izbrisati rezervne kopije koje su starije od","Delete local database":"Obriši lokalnu bazu podataka","Delete remote files":"Obriši udaljene datoteke","Delete the local database":"Obriši lokalnu bazu podataka","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Obrisati {{filecount}} datoteka ({{filesize}}) iz udaljenog skladišta?","Delete …":"Brisanje …","Deleted":"Izbrisano","Deleted Versions":"Izbrisane verzije","Deleted files":"Izbrisani fajlovi","Deleting remote files …":"Brisanje udaljenih fajlova …","Deleting unwanted files …":"Brisanje neželjenih fajlova …","Description (optional)":"Opis (opciono)","Description:":"Opis:","Desktop":"Radna površina","Destination":"Odredište","Destination path":"Putanja odredišta","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Da li smo pomogli da sačuvate vaše fajlove? Ako jesmo, razmislite o podršci projekta donacijom. Predlažemo {{smallamount}} za privatnu upotrebu i {{largeamount}} za komercijalnu upotrebu.","Direct restore from backup files ...":"Direktno vraćanje fajlova iz rezervna kopija ...","Disabled":"Onemogućeno","Dismiss":"Odbaci","Dismiss all":"Odbaci sve","Display and color theme":"Ekran i tema boja","Do you really want to delete the backup: \"{{name}}\" ?":"Da li zaista želite da obrišete rezervnu kopiju: \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Da li zaista želiš da obrišeš lokalnu bazu podataka za: {{name}}","Domain Name":"Ime domena","Donate":"Doniraj","Donation messages":"Poruke o donacijama","Donation messages are hidden, click to show":"Poruke o donacijama su skrivene, kliknite za prikaz","Donation messages are visible, click to hide":"Poruke o donacijama su vidljive, kliknite da biste ih sakrili","Done":"Završi","Download":"Preuzmi","Downloaded files":"Preuzeti fajlovi","Downloading files …":"Preuzimanje fajlova …","Downloading update…":"Preuzimanje ažuriranja…","Downloading …":"Preuzimanje ...","Duplicate option {{opt}}":"Duplikat opcije {{opt}}","Duplicati Website":"Duplicati veb sajt","Duplicati forum":"Duplicati forum","Duplicati will run when started, but will remain in a paused state for the duration. Duplicati will occupy minimal system resources and no backups will be run.":"Duplicati će se pokrenuti kada se startuje, ali će ostati u pauziranom stanju sve vreme. Duplicati će zauzeti minimalne sistemske resurse i neće praviti rezervne kopije.","Duration":"Trajanje","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Svaka rezervna kopija ima lokalnu bazu podataka koja je povezana sa njom, koja čuva informacije o udaljenoj rezervnoj kopiji na lokalnoj mašini.\nKada brišete rezervnu kopiju, takođe možete izbrisati lokalnu bazu podataka bez uticaja na mogućnost vraćanja udaljenih fajlova.\nAko koristite lokalnu bazu podataka za rezervne kopije sa komandne linije, trebalo bi da zadržite bazu podataka.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Svaka rezervna kopija ima lokalnu bazu podataka koja je povezana sa njom i koja čuva informacije o udaljenoj rezervnoj kopiji na lokalnoj mašini. \\n Ovo čini bržim izvođenje mnogih operacija i smanjuje količinu podataka koje je potrebno preuzeti za svaku operaciju.","Edit as list":"Izmeni kao listu","Edit as text":"Izmeni kao tekst","Edit …":"Izmeni ...","Encrypt file":"Šifrujte fajl","Encryption":"Šifrovanje","Encryption changed":"Šifrovanje promenjeno","Encryption modules:":"Moduli za šifrovanje:","Encryption passphrase":"Šifrovanje pristupne fraze","End":"Kraj","Enter URL":"Unesi URL","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Ručno unesite strategiju zadržavanja. Čuvari mesta su D/W/Y za dane/sedmice/godine i U za neograničeno. Sintaksa je: 7D:1D,4W:1W,36M:1M. Ovaj primer čuva jednu rezervnu kopiju za svaki od narednih 7 dana, jednu za svaku od naredne 4 nedelje i jednu za svaki od narednih 36 meseci. Ovo se takođe može napisati kao 1W:1D,1M:1W,3Y:1M.","Enter access key":"Unesite pristupni ključ","Enter account name":"Unesite naziv naloga","Enter backup passphrase, if any":"Unesite frazu lozinke rezervne kopije, ako postoji","Enter configuration details":"Unesite detalje konfiguracije","Enter container name":"Unesite naziv kontejnera","Enter encryption passphrase":"Unesite frazu lozinke enkripcije","Enter expression here":"Ovde unesite izraz","Enter folder path name":"Unesite ime putanje do fascikle","Enter one option per line in command-line format, eg. {0}":"Unesite jednu opciju po redu u formatu komandne linije, npr. {0}","Enter the destination path":"Unesite odredišnu putanju","Enter the email address of the Office 365 group":"Unesite adresu e-pošte Office 365 grupe","Enter the full destination path, including the server name, but without https":"Unesite punu putanju odredišta, uključujući ime servera, ali bez https","Error":"Greška","Error!":"Greška!","Errors and crashes":"Greške i rušenja","Examined":"Ispitano","Exclude":"Izuzmi","Exclude directories whose names contain":"Izuzmite direktorijume čija imena sadrže","Exclude expression":"Izuzmi izraz","Exclude file":"Izuzmi fajl","Exclude file extension":"Izuzmi ekstenziju fajla","Exclude files whose names contain":"Izuzmi fajlove čija imena sadrže","Exclude filter group":"Izuzmi grupu filtera","Exclude folder":"Izuzmi fasciklu","Exclude regular expression":"Isključi regularni izraz","Existing file found":"Pronađen je postojeći fajl","Experimental":"Eksperimentalno","Export":"Izvezi","Export backup configuration":"Izvezi podešavanja rezervne kopije","Export configuration":"Izvezi podešavanja","Export passwords":"Izvezi lozinke","Export …":"Izvoz ...","Exporting …":"Izvozim ...","External link":"Spoljašnja veza","FTP (Alternative)":"FTP (Alternativno)","Failed to build temporary database: {{message}}":"Pravljenje privremene baze podataka nije uspelo: {{message}}","Failed to connect:":"Neuspelo povezivanje:","Failed to connect: {{message}}":"Neuspelo povezivanje: {{message}}","Failed to delete:":"Brisanje nije uspelo:","Failed to fetch path information: {{message}}":"Nije uspelo preuzimanje informacija o putanji: {{message}}","Failed to find backup:":"Pronalaženje rezervne kopije nije uspelo:","Failed to import:":"Uvoz nije uspeo:","Failed to read backup defaults:":"Čitanje podrazumevanih rezervnih kopija nije uspelo:","Failed to restore files: {{message}}":"Vraćanje fajlova nije uspelo: {{message}}","Failed to save:":"Čuvanje nije uspelo:","Fetching path information …":"Preuzimanje informacija o putanji …","File":"Fajl","Files larger than:":"Fajlovi veći od:","Filters":"Filteri","Finished!":"Završeno!","First run setup":"Podešavanje za prvo pokretanje","Folder":"Fascikla","Folder path":"Putanja do fascikle","Fri":"Pet","GByte":"GBajt","GByte/s":"GBajt/s","GCS Project ID":"GCS ID projekta","General":"Generalno","General backup settings":"Opšta podešavanja rezervnih kopija","General options":"Generalne opcije","Generate":"Generiši","Generate IAM\n access policy":"Generišite IAM\npristupnu politiku","Getting file versions …":"Dohvatanje verzija fajla ...","Group email":"Grupna e-pošta","Hidden files":"Skriveni fajlovi","Hide":"Sakrij","Hide hidden folders":"Sakrij skrivene fascikle","Home":"Glavna","Hostnames":"Imena hostova","Hours":"Sati","How do you want to handle existing files?":"Kako želite da rukujete postojećim fajlovima?","Hyper-V Machine":"Hyper-V mašina","Hyper-V Machine:":"Hyper-V mašina:","Hyper-V Machines":"Hyper-V mašine","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Ako je neki datum propušten, posao će biti pokrenut što je pre moguće.","If at least one newer backup is found, all backups older than this date are deleted.":"Ako se pronađe bar jedna novija rezervna kopija, sve rezervne kopije starije od ovog datuma se brišu.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Ako rezervna kopija i udaljeno skladište nisu sinhronizovani, Duplicati će zahtevati da izvršite operaciju popravke da biste sinhronizovali bazu podataka. \\n Ako popravka ne bude uspešna, možete da obrišete lokalnu bazu podataka i ponovo je generišete.","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Ako rezervna kopija fajla nije preuzeta automatski, kliknite desnim tasterom miša i izaberite "Sačuvaj kao …"","If the backup file was not downloaded automatically, right click and choose "Save as …"":"Ako rezervna kopija fajla nije preuzeta automatski, kliknite desnim tasterom miša i izaberite "Sačuvaj kao …"","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"Ako ne unesete putanju, svi fajlovi će biti sačuvani u fascikli za prijavu.\nJeste li sigurni da je to ono što želite?","If you do not enter an API Key, the tenant name is required":"Ako ne unesete API ključ, potrebno je ime zakupca","If you want to use the backup later, you can export the configuration before deleting it":"Ako želite da koristite rezervnu kopiju kasnije, možete da izvezete konfiguraciju pre nego što je izbrišete","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Ako je vaša mašina u okruženju sa više korisnika (tj. mašina ima više od jednog naloga), potrebno je da postavite lozinku kako biste sprečili druge korisnike da pristupe podacima na vašem nalogu.\nDa li sada želite da postavite lozinku?","Import":"Uvoz","Import Destination URL":"Uvezite odredišnu URL adresu","Import backup configuration":"Uvezite konfiguraciju rezervne kopije","Import completed, but no certificates were found after the import":"Uvoz je završen, ali nakon uvoza nisu pronađeni sertifikati","Import failed":"Uvoz nije uspeo","Import from a file":"Uvezi iz fajla","Import metadata":"Uvezite metapodatke","Importing …":"Uvoz ...","Include a file?":"Uključiti fajl?","Include expression":"Uključite izraz","Include regular expression":"Uključite regularni izraz","Incorrect answer, try again":"Netačan odgovor, pokušajte ponovo","Individual builds for developers only. Not for use with important data.":"Pojedinačne verzije samo za programere. Nije za upotrebu sa važnim podacima.","Information":"Informacije","Install":"Instalacija","Install failed:":"Instalacija nije uspela:","Invalid characters in path":"Nevažeći znakovi u putanji","Invalid retention time":"Nevažeće vreme zadržavanja","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"Moguće je povezati se na neki FTP bez lozinke.\nDa li ste sigurni da vaš FTP server podržava prijavljivanje bez lozinke?","KByte":"KBajt","KByte/s":"KBajt/s","Keep a specific number of backups":"Čuvajte određeni broj rezervnih kopija","Keep all backups":"Čuvajte sve rezervne kopije","Keystone API version":"Keystone API verzija","Language in user interface":"Jezik u korisničkom interfejsu","Last month":"Prošlog meseca","Last successful backup:":"Poslednja uspešna rezervna kopija:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"Poslednje uspešno vraćanje: {{time}} (trajalo je {{duration || '0 seconds'}})","Latest":"Najnovije","Libraries":"Biblioteke","Listing backup dates …":"Navođenje datuma rezervnih kopija …","Listing remote files for purge …":"Lista udaljenih fajlova za čišćenje …","Listing remote files …":"Lista udaljenih fajlova ...","Live":"Uživo","Load a configuration from an exported job or a storage provider":"Učitajte konfiguraciju iz izvezenog posla ili dobavljača skladišta","Load destination from an exported job or a storage provider":"Učitajte odredište iz izvezenog posla ili dobavljača skladišta","Load older data":"Učitaj starije podatke","Loading ...":"Učitavanje ...","Loading remote storage usage ...":"Učitavanje korišćenja udaljenog skladišta ...","Loading …":"Učitavanje ...","Local Repository":"Lokalno spremište","Local database for":"Lokalna baza podataka za","Local database path:":"Putanja lokalne baze podataka:","Local repository":"Lokalno skladište","Local storage":"Lokalno skladište","Location":"Lokacija","Location where buckets are created":"Lokacija na kojoj se kreiraju segmenti","Log data for {{Backup.Backup.Name}}":"Podaci evidencije za {{Backup.Backup.Name}}","Log data from the server":"Evidentirajte podatke sa servera","Log out":"Odjavi se","MByte":"MBajt","MByte/s":"MBajt/s","Maintenance":"Održavanje","Manually type path":"Ručno unesite putanju","Max download speed":"Maksimalna brzina preuzimanja","Max upload speed":"Maksimalna brzina otpremanja","Menu":"Meni","Microsoft SQL Database:":"Microsoft SQL baza podataka:","Microsoft SQL Databases":"Microsoft SQL baze podataka","Minimum redundancy":"Minimalna redundantnost","Minimum redundancy is 1.0":"Minimalna redundantnost je 1.0","Minutes":"Minute","Missing name":"Nedostaje naziv","Missing passphrase":"Nedostaje fraza lozinke","Missing sources":"Nedostaju izvori","Modified":"Modifikovano","Mon":"Pon","Months":"Meseci","Move existing database":"Premesti postojeću bazu podataka","Move failed:":"Premeštanje nije uspelo:","My Documents":"Moji dokumenti","My Music":"Moja muzika","My Photos":"Moje fotografije","My Pictures":"Moje slike","Name":"Naziv","Never":"Nikad","New update found: {{message}}":"Pronađeno je novo ažuriranje: {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"Novo korisničko ime je {{user}}.\nAžurirani akreditivi za korišćenje novog korisnika sa ograničenjem","Next":"Sledeće","Next scheduled run:":"Sledeće zakazano pokretanje:","Next scheduled task:":"Sledeći zakazan zadatak:","Next task:":"Sledeći zadatak:","Next time":"Sledeći put","No":"Ne","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"Nijedan sertifikat prethodno nije naveden, proverite kod administratora servera da li je ključ tačan: {{key}}\n\nDa li želite da odobrite prijavljeni ključ hosta?","No editor found for the "{{backend}}" storage type":"Nije pronađen nijedan uređivač za "{{backend}}" tip skladištenja","No encryption":"Bez šifrovanja","No items selected":"Nema izabranih stavki","No items to restore, please select one or more items":"Nema stavki za vraćanje, izaberite jednu ili više stavki","No passphrase entered":"Lozinka nije uneta","No scheduled tasks":"Nema zakazanih zadataka","No, my machine has only a single account":"Ne, moja mašina ima samo jedan nalog","Non-matching passphrase":"Pristupna fraza koja se ne podudara","None / disabled":"Ništa / onemogućeno","Not using encryption":"Ne koristi šifrovanje","Nothing will be deleted. The backup size will grow with each change.":"Ništa neće biti izbrisano. Veličina rezervne kopije će rasti sa svakom promenom.","OK":"U redu","Once there are more backups than the specified number, the oldest backups are deleted.":"Kada ima više rezervnih kopija od navedenog broja, najstarije rezervne kopije se brišu.","OpenStack AuthURI":"OpenStack AuthURI","OpenStack Object Storage / Swift":"OpenStack Object Storage / Swift","Opened":"Otvoren","Openstack API Key are not supported in v3 keystone API.":"Openstack API ključ nije podržan u v3 keystone API-ju.","Operating System":"Operativni sistem","Operation":"Operacija","Operation failed:":"Operacija neuspešna:","Operations:":"Operacije:","Optional authentication password":"Opciona lozinka za autentifikaciju","Optional authentication username":"Opciono korisničko ime za autentifikaciju","Options":"Opcije","Options added here are applied to all backups, but can be overridden in each individual backup":"Opcije koje se ovde dodaju primenjuju se na sve rezervne kopije, ali se mogu zameniti u svakoj pojedinačnoj rezervnoj kopiji","Original location":"Originalna lokacija","Others":"Ostalo","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"Vremenom će rezervne kopije biti automatski izbrisane. Ostaće po jedna rezervna kopija za svaku od poslednjih 7 dana, svaku od poslednje 4 nedelje, svaku od poslednjih 12 meseci. Uvek će biti najmanje jedna preostala rezervna kopija.","Overwrite":"Prepiši","Passphrase":"Lozinka","Passphrase (if encrypted)":"Lozinka (ako je šifrovano)","Passphrase changed":"Lozinka promenjena","Passphrases are not matching":"Lozinke se ne poklapaju","Passphrases do not match":"Pristupne fraze se ne podudaraju","Password":"Lozinka","Patching files with local blocks …":"Zakrpa fajlova sa lokalnim blokovima …","Path":"Putanja","Path not found":"Putanja nije pronađena","Path on server":"Putanja na serveru","Path or subfolder in the bucket":"Putanja ili podfascikla u segment-u","Pause":"Pauza","Pause after startup or hibernation":"Pauziraj nakon pokretanja ili hibernacije","Pause options":"Opcije pauze","Permissions":"Dozvole","Pick location":"Izaberite lokaciju","Point to your backup files and restore from there":"Postavite pokazivač na svoje rezervne kopije fajlova i vratite ih odatle","Port":"Port","Prevent tray icon automatic log-in":"Sprečite automatsko prijavljivanje ikonom na traci","Previous":"Prethodno","Progress:":"Napredak:","ProjectID is optional if the bucket exist":"ID projekta je opcioni ako segment postoji","Proprietary":"Vlasnički","Purge Phase":"Faza čišćenja","Purging files complete!":"Čišćenje fajlova je završeno!","Purging files …":"Čišćenje fajlova …","Rebuilding local database …":"Ponovno kreiranje lokalne baze podataka …","Recreate (delete and repair)":"Ponovo kreirajte (izbrišite i popravite)","Recreate Database Phase":"Ponovo kreirajte fazu baze podataka","Recreating database …":"Ponovo kreiranje baze podataka …","Registering temporary backup …":"Registrovanje privremene rezervne kopije …","Relative paths not allowed":"Relativne putanje nisu dozvoljene","Reload":"Učitaj ponovo","Remote":"Udaljeno","Remote Path":"Udaljena putanja","Remote Repository":"Udaljeno spremište","Remote path":"Udaljena putanja","Remote repository":"Udaljeno spremište","Remote volume size":"Veličina udljenog volumena","Remove":"Ukloni","Remove option":"Ukloni opciju","Removed files":"Ukloni fajlove","Repair":"Popravi","Repair Phase":"Popravi fazu","Repairing database …":"Popravljanje baze podataka …","Repeat Passphrase":"Ponovite lozinku","Reporting:":"Izveštavanje:","Reset":"Resetovanje","Restore":"Vrati","Restore complete!":"Vraćanje je završeno!","Restore files":"Vrati fajlove","Restore files from {{backupname}}":"Vrati fajlove iz {{backupname}}","Restore files …":"Vraćanje fajlova ...","Restore from":"Vrati iz","Restore from backup configuration":"Vrati iz podešavanja rezervne kopije","Restore from configuration ...":"Vraćanje iz podešavanja ...","Restore options":"Vrati opcije","Restore read/write permissions":"Vrati dozvole za čitanje i upis","Restored Files":"Vraćeni fajlovi","Restored Folders":"Vraćene fascikle","Restored Symlinks":"Vraćeni Symlinks","Restoring files …":"Vraćanje fajlova ...","Resume":"Nastavi","Rewritten File Lists":"Prepisane liste fajlova","Run again every":"Izvrši ponovo svaki","Run now":"Izvrši sad","Running ....":"Izvršavanje ....","Running commandline entry":"Izvrši unos komandne linije","Running task:":"Izvršavanje zadatka:","Running …":"Izvršavanje ...","S3 Compatible":"S3 kompatibilno","Same as the base install version: {{channelname}}":"Isto kao i verzija osnovne instalacije: {{channelname}}","Sat":"Sub","Satellite":"Satelit","Save":"Sačuvaj","Save and repair":"Sačuvaj i popravi","Save different versions with timestamp in file name":"Sačuvaj drugu verziju sa vremenom u nazivu fajla","Save immediately":"Sačuvaj odmah","Scanning existing files …":"Skeniranje postojećih fajlova …","Scanning for local blocks …":"Skeniranje lokalnih blokova ...","Schedule":"Raspored","Search":"Pretraga","Search for files":"Pretraga fajlova","Seconds":"Sekunde","Select a log level and see messages as they happen:":"Izaberite nivo dnevnika i pogledajte poruke kako se dešavaju:","Select files":"Izaberite fajlove","Server":"Server","Server and port":"Server i port","Server hostname or IP":"Ime servera ili IP adresa","Server is currently paused,":"Server je trenutno pauziran,","Server is currently paused, do you want to resume now?":"Server je trenutno pauziran, da li želite da nastavite odmah?","Server password":"Lozinka servera","Server paused":"Server je pauziran","Server state properties":"Opcije stanja servera","Settings":"Podešavanja","Show":"Prikaži","Show advanced editor":"Prikaži napredni editor","Show hidden folders":"Prikaži skrivene fascikle","Show log":"Prikaži dnevnik","Show log …":"Prikazujem dnevnik ...","Show treeview":"Prikazujem izled stabla","Sia server password":"Lozinka za Sia server","Smart backup retention":"Pametno čuvanje rezervne kopije","Some OpenStack providers allow an API key instead of a password and tenant name":"Neki OpenStack provajderi dozvoljavaju API ključ umesto lozinke i imena zakupca","Some S3 providers might only be compatible with a certain client library":"Neki S3 provajderi mogu biti kompatibilni samo sa određenom bibliotekom klijenata","Source Data":"Izvorni podaci","Source Files":"Izvorni fajlovi","Source data":"Izvorni podaci","Source folders":"Izvorne fascikle","Source:":"Izvor:","Specific builds for developers only. Not for use with important data.":"Posebne verzije samo za programere. Nije za upotrebu sa važnim podacima.","Standard protocols":"Standardni protokoli","Start":"Start","Starting backup …":"Startujem rezervnu kopiju ...","Starting restore …":"Startujem obnavljanje ...","Starting the restore process …":"Startujem proces obnavljanja ...","Stop after current file":"Zaustavi nakon trenutnog fajla","Stop after the current file":"Zaustavi nakon trenutnog fajla","Stop now":"Zaustavi odmah","Stop running backup":"Zaustavi pokrenutu rezervnu kopiju","Stop running task":"Zaustavi pokrenuti zadatak","Stopping after the current file:":"Zaustavljanje nakon trenutnog fajla:","Stopping task:":"Zaustavljanje zadatka:","Storage Type":"Tip skladišta","Storage class":"Klasa skladišta","Storage class for creating a bucket":"Klasa skladišta za kreiranje segment-a","Stored":"Uskladišteno","Strong":"Jaka","Success":"Uspešno","Sun":"Ned","Symbolic link":"Simbolička veza","System Files":"Sistemski fajlovi","System default ({{levelname}})":"Podrazumevani sistem ({{levelname}})","System files":"Sistemski fajlovi","System info":"Sistemske informacije","System properties":"Osobine sistema","TByte":"TBajt","TByte/s":"TBajt/s","Target path, ie /backup":"Ciljna putanja, odnosno /rezervna kopija","Task is running":"Zadatak se izvršava","Temporary Files":"Privremeni fajlovi","Temporary files":"Privremene fajlovi","Tenant Name":"Ime zakupca","Test Phase":"Faza testiranje","Test connection":"Ispitaj vezu","Testing ...":"Ispitivanje ...","Testing connection ...":"Ispitivanje veze ...","Testing permissions …":"Ispitivanje dozvola ...","Testing permissions...":"Ispitivanje dozvola...","Testing …":"Ispitivanje ...","The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})":"Polje '{{fieldname}}' sadrži nevažeći znak: {{character}} (vrednost: {{value}}, indeks: {{pos}})","The API key":"API ključ","The backup is missing, has it been deleted?":"Nedostaje rezervna kopija, da li je izbrisana?","The backup was temporary and does not exist anymore, so the log data is lost":"Rezervna kopija je bila privremena i više ne postoji, tako da su podaci dnevnika izgubljeni","The bucket name should be all lower-case, convert automatically?":"Naziv segmenta treba da bude malim slovima, da li da se automatski konvertuje?","The bucket name should start with your username, prepend automatically?":"Naziv segmenta treba da počinje vašim korisničkim imenom, da li da se automatski dodaje?","The configuration should be kept safe. Are you sure you want to save an unencrypted file containing your passwords?":"Konfiguraciju treba čuvati na sigurnom. Da li ste sigurni da želite da sačuvate nešifrovani fajl koji sadrži vaše lozinke?","The connection to the server is lost, attempting again in {{time}} ...":"Veza sa serverom je prekinuta, pokušavam ponovo za {{time}} ...","The dark theme (by Michal)":"Tamna tema (napravio Michal)","The default blue on white theme (by Alex)":"Podrazumevana tema plavo na belom (napravio Alex)","The encryption passphrase":"Pristupna fraza za šifrovanje","The folder {{folder}} does not exist.\nCreate it now?":"Fascikla {{folder}} ne postoji.\nKreirate je sada?","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"Ključ hosta se promenio, proverite kod administratora servera da li je to tačno, inače biste mogli da budete žrtva napada MAN-IN-THE-MIDDLE.\n\nDa li želite da ZAMENITE svoj TRENUTNI ključ hosta \"{{prev}}\" sa PRIJAVLJENIM ključem hosta: {{key}}?","The passwords do not match":"Lozinke se ne poklapaju","The path does not appear to exist, do you want to add it anyway?":"Putanja izgleda ne postoji, da li svejedno želite da je dodate?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"Putanja se ne završava znakom '{{dirsep}}', što znači da uključujete fajl, a ne fasciklu.\n\nDa li želite da uključite navedeni fajl?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"Putanja mora biti apsolutna putanja, tj. mora da počinje sa kosom crtom unapred '/'","The region parameter is only applied when creating a new bucket":"Parametar regiona se primenjuje samo pri kreiranju novog segmenta","The region parameter is only used when creating a bucket":"Parametar regiona se kreira samo kada se koristi segment","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"Sertifikat servera nije mogao biti proveren.\nDa li želite da odobrite SSL sertifikat sa hešom: {{hash}}?","The storage class affects the availability and price for a stored file":"Klasa skladišta utiče na dostupnost i cenu za uskladišteni fajl","The target folder contains encrypted files, please supply the passphrase":"Ciljana fasckla sadrži šifrovane fajlove, molimo unesite pristupnu frazu","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"Korisnik ima previše dozvola, Da li želite da napravite novog ograničenog korisnika, samo sa dozvolama za izabranu putanju?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"Ova rezervna kopija je napravljena na drugom operativnom sistemu. Vraćanje fajlova bez navođenja odredišne fascikle može dovesti do vraćanja fajlova na neočekivana mesta. Da li ste sigurni da želite da nastavite bez odabira odredišne fascikle?","This month":"Ovog meseca","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"Ova opcija se ne odnosi na vašu maksimalnu rezervnu kopiju ili veličinu fajla, niti utiče na stope deduplikacije. Pogledajte ovu stranicu pre nego što promenite veličinu udaljenog volumena. ","This week":"Ove sedmice","Throttle settings":"Podešavanja regulacije","Thu":"Čet","Time":"Vreme","To File":"U datoteku","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"Da potvrdite da želite obrisati sve udaljene datoteke sa imenom \"{{name}}\", molimo unesite reč koju vidite ispod","To export without a passphrase, uncheck the \"Encrypt file\" box":"Za izvoz bez lozinke, polje \"Šifruj datoteku\" ne treba da bude označeno","To prevent various DNS based attacks, Duplicati limits the allowed hostnames to the ones listed here. Direct IP access and localhost is always allowed. Multiple hostnames can be supplied with a semicolon separator. If any of the allowed hostnames is an asterisk (*), all hostnames are allowed and this feature is disabled. If the field is empty, only IP address and localhost access is allowed.":"Da bi sprečio različite napade zasnovane na DNS-u, Duplicati ograničava dozvoljena imena hostova na ona koja su ovde navedena. Direktan IP pristup i lokalni host je uvek dozvoljen. Višestruka imena hostova mogu biti isporučena sa tačkom i zarezom. Ako je neko od dozvoljenih imena hostova zvezdica (*), sva imena hostova su dozvoljena i ova funkcija je onemogućena. Ako je polje prazno, dozvoljen je samo pristup IP adresi i lokalnom hostu.","Today":"Danas","Trust host certificate?":"Verujete sertifikatu hosta?","Trust server certificate?":"Veruj sertifikatu servera?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"Isprobajte nove funkcije na kojima radimo. Trenutno najstabilnija dostupna verzija. Testirajte podatke za vraćanje pre nego što ih upotrebite u proizvodnim okruženjima.","Tue":"Uto","Type passphrase here.":"Ovde unesite pristupnu frazu.","Type to highlight files":"Ukucajte da biste istakli fajlove","Unknown backup size and versions":"Nepoznata veličina i verzije rezervne kopije","Until resumed":"Dok se ne nastavi","Update channel":"Ažurirajte kanal","Update failed:":"Ažuriranje nije uspelo:","Updating with existing database":"Ažuriranje sa postojećom bazom podataka","Uploaded files":"Otpremanje fajlova","Uploading verification file …":"Otpremanje fajla za verifikaciju …","Usage reports help us improve the user experience and evaluate impact of new features. We use them to generate {{'public usage statistics' | translate}}":"Izveštaji o korišćenju nam pomažu da poboljšamo korisničko iskustvo i procenimo uticaj novih funkcija. Koristimo ih za generisanje {{'public usage statistics' | translate}}","Usage statistics":"Statistika upotrebe","Usage statistics, warnings, errors, and crashes":"Statistika korišćenja, upozorenja, greške i rušenja","Use SSL":"Koristi SSL","Use existing database?":"Koristi postojeću bazu podataka?","Use weak passphrase":"Koristi slabu lozinku","Useless":"Beskorisno","User data":"Podaci o korisniku","User domain name":"Ime korisničkog domena","User has too many permissions":"Korisnik ima previše dozvola","User interface settings":"Podešavanja korisničkog interfejsa","Username":"Korisničko ime","Vacuuming database …":"Usisavanje baze podataka …","Validating …":"Provera valjanosti ...","Verifications":"Provere","Verify files":"Proveri datoteke","Verifying ...":"Proveravanje ...","Verifying answer":"Proveravanje odgovora","Verifying backend data …":"Provra pozadinskih podataka ...","Verifying files …":"Provera fajlova ...","Verifying remote data …":"Provera udaljenih podataka ...","Verifying restored files …":"Provera vraćenih fajlova ...","Verifying …":"Provera ...","Version ID":"ID verzije","Very strong":"Veoma jaka","Very weak":"Veoma slaba","Visit us on":"Posetite nas na","WARNING: The remote database is found to be in use by the commandline library":"UPOZORENJE: Biblioteka komandne linije koristi udaljenu bazu podataka","WARNING: This will prevent you from restoring the data in the future.":"UPOZORENJE: Ovo će vas sprečiti da vratite podatke u budućnosti.","Waiting for task to begin":"Čekanje na početak zadatka","Waiting for task to start ....":"Čekanje na pokretanje zadatka ....","Waiting for upload to finish …":"Čeka se da se otpremanje završi …","Warnings, errors and crashes":"Upozorenja, greške i padovi","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"Prihvatamo donacije putem različitih servisa, kao što su OpenCollective, PayPal, BountySource i razne kripto valute.","We recommend that you encrypt all backups stored outside your system":"Preporučujemo da šifrujete sve backup-ove uskladištene van Vašeg sistema","Weak":"Slaba","Weak passphrase":"Slaba lozinka","Wed":"Sre","Weeks":"Sedmica","Where do you want to restore from?":"Odakle želite da vratite?","Where do you want to restore the files to?":"Gde želite da vratite fajlove?","Years":"Godina","Yes":"Da","Yes, I have stored the passphrase safely":"Da, uskladištio sam lozinku bezbedno","Yes, I understand the risk":"Da, razumem rizik","Yes, I'm brave!":"Da, hrabar sam!","Yes, please break my backup!":"Da, molim te pauziraj moju rezervnu kopiju!","Yesterday":"Juče","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"Izgleda da koristite Mono bez učitanih SSL sertifikata.\nDa li želite da uvezete listu poverljivih sertifikata od Mozille?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"Menjate putanju baze podataka dalje od postojeće baze podataka.\nJeste li sigurni da je to ono što želite?","You are currently running {{appname}} {{version}}":"Trenutno koristite {{appname}} {{version}}","You can stop the backup after any file uploads currently in progress have finished.":"Možete da zaustavite pravljenje rezervne kopije nakon što se završi bilo koji fajl koji je trenutno u toku.","You can stop the task immediately, or allow the process to continue its current file and then stop.":"Možete odmah zaustaviti zadatak ili dozvoliti procesu da nastavi sa trenutnim fajlom, a zatim ga zaustavi.","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"Promenili ste režim šifrovanja. Ovo bi moglo biti loš izbor. Preporučujemo vam da umesto toga napravite novu rezervnu kopiju","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"Promenili ste pristupnu frazu lozinke, koja nije podržana. Preporučujemo vam da umesto toga napravite novu rezervnu kopiju.","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"Izabrali ste da ne šifrujete rezervnu kopiju. Šifrovanje se preporučuje za sve podatke uskladištene na udaljenom serveru.","You have chosen to restore to a new location, but not entered one":"Odabrali ste da vratite na novu lokaciju, ali niste je uneli","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"Generisali ste jaku pristupnu frazu lozinke. Uverite se da ste napravili bezbednu kopiju pristupne fraze lozinke, jer podaci ne mogu da se povrate ako izgubite pristupnu frazu lozinke.","You must choose at least one source folder":"Morate odabrati najmanje jednu izvornu fasciklu","You must enter a domain name to use v3 API":"Morate uneti naziv domena da biste koristili v3 API","You must enter a name for the backup":"Morate uneti naziv za rezervnu kopiju","You must enter a passphrase or disable encryption":"Morate uneti lozinku ili isključiti šifrovanje","You must enter a password to use v3 API":"Morate uneti lozinku da biste koristili v3 API","You must enter a positive number of backups to keep":"Morate da unesete važeće vreme trajanje za čuvanje rezervnih kopija","You must enter a tenant (aka project) name to use v3 API":"Morate da unesete ime zakupca (aka projekta) da biste koristili v3 API","You must enter a tenant name if you do not provide an API Key":"Morate da unesete ime zakupca ako ne dostavite API ključ","You must enter a valid duration for the time to keep backups":"Morate da unesete važeće vreme trajanja za čuvanja rezervnih kopija","You must enter a valid retention policy string":"Morate da unesete važeći niz politike retencije","You must enter either a password or an API Key":"Morate uneti ili lozinku ili API ključ","You must enter either a password or an API Key, not both":"Morate uneti ili lozinku ili API ključ, ne oboje","You must fill in the password":"Morate uneti lozinku","You must fill in the server name or address":"Morate uneti naziv servera ili adresu","You must fill in the username":"Morate uneti korisničko ime","You must fill in {{field}}":"Morate uneti {{field}}","You must select or fill in the AuthURI":"Morate izabrati ili uneti AuthURI","You must select or fill in the server":"Morate izabrati ili uneti server","You must specify a path":"Morate navesti putanju","You should fill in {{field}}{{reason}}":"Trebalo bi da popunite {{field}}{{reason}}","Your files and folders have been restored successfully.":"Vaše datoteke i fascikle su uspešno vraćene.","Your passphrase is easy to guess. Consider changing passphrase.":"Vaša lozinka je laka za pogađanje. Razmislite o promeni lozinke.","bucket/folder/subfolder":"segment/fascikla/podfascikla","byte":"bajt","byte/s":"bajt/ova","custom":"poručen","public usage statistics":"statistika javne upotrebe","resume now":"nastavi odmah","unless you are explicitly specifying --group-id":"osim ako izričito ne navedete --group-id","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"{{appname}} su prvenstveno razvili {{dev1}} i {{dev2}}. {{appname}} se može preuzeti sa {{websitename}}. {{appname}} je licenciran pod {{licensename}}.","{{files}} files ({{size}}) to go {{speed_txt}}":"{{files}} fajlovi ({{size}}) da ide {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":["{{item.Backup.Metadata.TargetSizeString}} / {{$count}} verzije","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} verzije","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} verzije"],"{{number}} Hour":"{{number}} sati","{{number}} Hours":"{{number}} sati","{{number}} Minutes":"{{number}} minuta","{{time}} (took {{duration}})":"{{time}} (trajalo {{duration}})","…loading…":"...učitavam..."}); gettextCatalog.setStrings('sv_SE', {"- pick an option -":"- välj ett alternativ -","...loading...":"...laddar...","API Key":"API-nyckel","About":"Om","About {{appname}}":"Om {{appname}}","Access Key":"Åtkomstnyckel","Access denied":"Åtkomst nekad","Access to user interface":"Access till användarinterface","Account name":"Kontonamn","Activate":"Aktivera","Activate failed:":"Aktivering misslyckad:","Add a new backup":"Lägg till ny backup","Add a path directly":"Lägg till direkt sökväg","Add advanced option":"Lägg till avancerade val","Add backup":"Lägg till backup","Add filter":"Lägg till filter","Add path":"Lägg till sökväg","Advanced Options":"Avancerade tillägg","Advanced options":"Avancerade tillägg","Advanced:":"Avancerat:","All Hyper-V Machines":"Alla Hyper-V datorer","All Microsoft SQL Databases":"Alla Microsoft SQL-databaser","Allow remote access (requires restart)":"Tillåt fjärrstyrning (kräver omstart)","Allowed days":"Tillåtna dagar","An existing file was found at the new location":"En existerande fil hittades på den nya platsen","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"En existerande fil hittades på den nya platsen. Är du säker att databasen skall peka till en existerande fil?","Anonymous usage reports":"Anonym användarrapport","As Command-line":"Som kommandorad","AuthID":"AuthID","Authentication password":"Autentiseringslösenord","Authentication username":"Autentiseringsanvändarnamn","Autogenerated passphrase":"Autogenererat lösenord","Automatically run backups.":"Kör backuper automatiskt.","Back":"Åter","Backend modules:":"Backend-moduler:","Backup destination":"Backupmål","Backup location":"Backupplats","Backup retention":"Backup-bibehållning","Backup:":"Backup:","Beta":"Beta","Browse":"Bläddra","Browser default":"Webbläsarens standard","Busy ...":"Upptagen ...","Canary":"Kanariefågel","Cancel":"Avbryt","Cannot move to existing file":"Kan inte flytta till befintlig fil","Changelog":"Ändringslogg","Changelog for {{appname}} {{version}}":"Ändringslogg för {{appname}} {{version}}","Check failed:":"Kontroll misslyckades:","Check for updates now":"Kontrollera uppdateringar nu","Checking ...":"Kontollerar ...","Chose a storage type to get started":"Välj en lagringstyp för att börja","Click the AuthID link to create an AuthID":"Klicka på AuthID-länken för att skapa ett AuthID","Click to set throttle options":"Klicka för att välja begränsningsalternativ","Compact now":"Komprimera nu","Compacting remote data ...":"Komprimerar fjärrdata ...","Compression modules:":"Komprimeringsmoduler:","Computer":"Dator","Configuration file:":"Konfigurationsfil:","Configuration:":"Konfiguration:","Configure a new backup":"Konfigurera en ny backup","Confirm delete":"Bekräfta borttagning","Confirmation required":"Bekräftelse beövs","Connect":"Anslut","Connect now":"Anslut nu","Connecting to task ....":"Ansluter till process ...","Connecting...":"Ansluter...","Connection lost":"Anslutning avbruten","Connection worked!":"Anslutning OK!","Container name":"Behållarnamn","Container region":"Behållarregion","Continue":"Fortsätt","Continue without encryption":"Fortsätt utan kryptering","Copied!":"Kopierad!","Copy":"Kopia","Copy Destination URL to Clipboard":"Kopiera mål-URL till urklipp","Copy failed. Please manually copy the URL":"Kopering misslyckades, var vänlig kopiera URLen manuellt","Core options":"Kärnalternativ","Counting ({{files}} files found, {{size}})":"Beräknar ({{files}} filer hittade, {{size}})","Crashes only":"Endast kraschar","Create folder?":"Skapa mapp?","Created new limited user":"Skapa ny begränsad användare","Creating user...":"Skapar användare ...","Current action:":"Nuvarande åtgärd:","Current file:":"Nuvarande fil:","Current version is {{versionname}} ({{versionnumber}})":"Aktuell version är {{versionname}} ({{versionnumber}})","Custom authentication url":"Anpassad autentiseringsadress","Custom location ({{server}})":"Anpassad plats ({{server}})","Custom region value ({{region}})":"Anpassat värde för region ({{region}})","Custom server url ({{server}})":"Anpassad serveradress ({{server}})","Custom storage class ({{class}})":"Anpassad lagringsklass ({{class}})","Days":"Dagar","Default":"Standard","Default ({{channelname}})":"Standard ({{channelname}})","Default options":"Standardalternativ","Delete":"Radera","Delete backup":"Radera backup","Delete backups that are older than":"Radera backup äldre än","Delete local database":"Radera lokal databas","Delete remote files":"Radera målfiler","Delete the local database":"Radera lokal databas","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"Ta bort {{filecount}} filer ({{filesize}}) från fjärrmålet?","Desktop":"Skrivbord","Destination":"Destination","Destination path":"Fjärrmål","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"Hjälpte vi till att rädda dina filer? Om så är fallet, var vänlig överväg att stödja Duplicati med en donation. Vi föreslår {{smallamount}} för privat bruk och {{largeamount}} för kommersiell användning.","Direct restore from backup files ...":"Direkt återställning från backupfiler ...","Disabled":"Avstängd","Dismiss":"Avfärda","Dismiss all":"Avfärda allt","Display and color theme":"Visnings- och färgtema","Do you really want to delete the backup: \"{{name}}\" ?":"Vill du verkligen radera backupen: \"{{name}}\" ?","Do you really want to delete the local database for: {{name}}":"Vill du verkligen radera den lokala databasen för: {{name}}","Domain Name":"Domännamn","Donate":"Donera","Donation messages":"Donationsmeddelanden","Donation messages are hidden, click to show":"Donationsmeddelanden är dolda, klicka här för att visa dem","Donation messages are visible, click to hide":"Donationsmeddelanden visas, klicka här för att dölja dem","Done":"Klart","Download":"Ladda ner","Duplicate option {{opt}}":"Duplicera alternativ {{opt}}","Duplicati Website":"Duplicatis webbsida","Duplicati forum":"Duplicatis forum","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"Varje backup har en lokal databas som är associerad med den, som lagrar information om fjärrfilerna på den lokala maskinen.\nNär du tar bort en säkerhetskopia kan du också ta bort den lokala databasen utan att påverka möjligheten att återställa fjärrfilerna.\nOm du använder den lokala databasen för säkerhetskopior från kommandoraden bör du behålla databasen.","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"Varje backup har en lokal databas som är associerad med den, som lagrar information om fjärrfilerna på den lokala maskinen. Det gör att det går snabbare att utföra många operationer och minskar mängden data som måste laddas ner för varje operation.","Edit as list":"Ändra som lista","Edit as text":"Ändra som text","Encrypt file":"Kryptera fil","Encryption":"Kryptering","Encryption changed":"Kryptering förändrad","Encryption modules:":"Krypteringsmoduler:","Enter URL":"Ange URL","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"Ange en backupstategi manuellt. Användbara tecken är D/W/Y för dagar/veckor/år och U för obegränsat. Tillåten syntax är: 7D:1D,4W:1W,36M:1M. Detta exempel behåller en backup för var 7:e dag, en för var 4:e vecka och en för var 36:e månad. Detta kan också skriva som 1W:1D,1M:1W,3Y:1M.","Enter access key":"Ange åtkomstnyckel","Enter account name":"Ange kontonamn","Enter backup passphrase, if any":"Ange lösenordsfras, om tillämpligt","Enter configuration details":"Ange konfigurationsdetaljer","Enter container name":"Ange behållarnamn","Enter encryption passphrase":"Ange krypteringslösenord","Enter expression here":"Ange uttryck här","Enter folder path name":"Ange mappsökväg","Enter one option per line in command-line format, eg. {0}":"Ange ett alternativ per rad i kommandorads-format, eg. {0}","Enter the destination path":"Ange målsökväg","Enter the email address of the Office 365 group":"Ange e-postadressen för Office 365-gruppen","Enter the full destination path, including the server name, but without https":"Ange hela målsökvägen, inklusive servernamnet, men utan inledande https","Error":"Fel","Error!":"Fel!","Errors and crashes":"Fel och kraschar","Exclude":"Exkludera","Exclude directories whose names contain":"Exkludera kataloger vars namn innehåller","Exclude expression":"Uteslut enligt uttryck","Exclude file":"Exkludera fil","Exclude file extension":"Uteslut filändelse","Exclude files whose names contain":"Uteslut filer vars namn innehåller","Exclude folder":"Uteslut mapp","Exclude regular expression":"Uteslut enligt reguljärt uttryck","Existing file found":"Filen existerar redan","Experimental":"Experimentell","Export":"Exportera","Export backup configuration":"Exportera backupkonfiguration","Export configuration":"Exportera konfiguration","External link":"Extern länk","FTP (Alternative)":"FTP (alternativ)","Failed to build temporary database: {{message}}":"Misslyckades med att skapa tillfällig databas: {{message}}","Failed to connect:":"Misslyckades med att ansluta:","Failed to connect: {{message}}":"Misslyckades med att ansluta: {{message}}","Failed to delete:":"Misslyckades med att radera:","Failed to fetch path information: {{message}}":"Misslyckades med att hämta sökvägsinformation: {{message}}","Failed to import:":"Import misslyckades: ","Failed to read backup defaults:":"Misslyckades med att läsa standardinställningarna:","Failed to restore files: {{message}}":"Misslyckades med att återställa filer: {{message}}","Failed to save:":"Misslyckades med att spara:","File":"Fil","Files larger than:":"Filer större än:","Filters":"Filter","Finished!":"Klar!","First run setup":"Nyinstallationsinställningar","Folder":"Mapp","Folder path":"Mappsökväg","Fri":"Fre","GByte":"GByte","GByte/s":"GByte/s","GCS Project ID":"GCS Projekt-ID","General":"Generellt","General backup settings":"Generella backupinställningar","General options":"Generella inställningar","Generate":"Skapa","Group email":"Grupp-epost","Hidden files":"Gömda filer","Hide":"Dölj","Hide hidden folders":"Visa dolda mappar","Home":"Hem","Hours":"Timmar","How do you want to handle existing files?":"Hur vill du hantera existerande filer?","Hyper-V Machine":"HyperV-maskin","Hyper-V Machine:":"HyperV-maskin:","Hyper-V Machines":"HyperV-maskiner","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"Om ett tillfälle missades görs uppgiften så fort som möjligt.","If at least one newer backup is found, all backups older than this date are deleted.":"Om minst en nyare backup finns, kommer alla backuper äldre än detta datum att raderas.","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"Om backupen och fjärrlagringen inte är synkroniserade, kommer Duplicati att kräva att du utför en reparation för att synkronisera databasen.\\nOm reparationen inte lyckas kan du radera den lokala databasen och återskapa den igen.","If you do not enter an API Key, the tenant name is required":"Om du inte anger en API-nyckel krävs \"tenant name\"","If you want to use the backup later, you can export the configuration before deleting it":"Om du vill använda säkerhetskopian senare kan du exportera konfigurationen innan du raderar den","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"Om din maskin befinner sig i en fleranvändarmiljö (det vill säga att datorn har mer än ett konto) måste du ange ett lösenord för att förhindra att andra användare kan komma åt datan på ditt konto.\nVill du ställa in ett lösenord nu?","Import":"Importera","Import Destination URL":"Importera destinationsadress","Import backup configuration":"Importera backupkonfiguration","Install":"Installera","Install failed:":"Installationen misslyckades:","Invalid characters in path":"Ogiltiga tecken i sökvägen","Invalid retention time":"Ogiltig bibehållningstid","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"Det är möjligt att ansluta till vissa FTP utan ett lösenord.\nÄr du säker på att din FTP-server stöder lösenordsfria inloggningar?","KByte":"KByte","KByte/s":"KByte/s","Keep a specific number of backups":"Behåll ett visst antal säkerhetskopior","Keep all backups":"Behåll alla säkerhetskopior","Keystone API version":"Keystone API-version","Language in user interface":"Språk i användargränssnittet","Last month":"Förra månaden","Latest":"Senaste","Libraries":"Bibliotek","Live":"Live","Load a configuration from an exported job or a storage provider":"Hämta konfiguration från en exporterad rutin eller en lagringstjänst","Load destination from an exported job or a storage provider":"Hämta mål från en exporterad rutin eller en lagringstjänst","Load older data":"Hämta äldre data","Loading ...":"Laddar ...","Loading remote storage usage ...":"Hämtar uppgifter om använt utrymme från målet ...","Local Repository":"Lokalt arkiv","Local database for":"Lokal databas för","Local database path:":"Sökväg till lokal databas:","Local repository":"Lokalt arkiv","Local storage":"Lokal lagring","Location":"Plats","Log out":"Logga ut","MByte":"MByte","MByte/s":"MByte/s","Maintenance":"Underhåll","Path":"Sökväg","Target path, ie /backup":"Målsökväg, d.v.s. /backup"}); gettextCatalog.setStrings('th', {"- pick an option -":"- เลือกตัวเลือก -","...loading...":"...กำลังดึงข้อมูล...","API Key":"กุญแจ API","About":"เกี่ยวกับ","About {{appname}}":"เกี่ยวกับ {{appname}}","Access Key":"กุญแจเข้าถึง","Access denied":"การเข้าถึงถูกปฏิเสธ","Access to user interface":"การเข้าถึงส่วนติดต่อผู้ใช้","Account name":"ชื่อบัญชี","Activate":"เปิดใช้","Add a new backup":"เพิ่มการสำรองข้อมูลใหม่","Add advanced option":"เพิ่มตัวเลือกขั้นสูง","Add backup":"เพิ่มข้อมูลสำรอง","Add filter":"เพิ่มตัวกรอง","Add path":"เพิ่ม path","Added":"เพิ่มแล้ว","Adjust bucket name?":"ปรับแก้ชื่อถัง?","Adjust path name?":"ปรับแก้ชื่อ path?","Advanced Options":"ตัวเลือกขั้นสูง","Advanced options":"ตัวเลือกขั้นสูง:","Advanced:":"ขั้นสูง:","All Hyper-V Machines":"เครื่อง Hyper-V ทั้งหมด","All Microsoft SQL Databases":"ฐานข้อมูล Microsoft SQL ทั้งหมด","Allow remote access (requires restart)":"อนุญาตการเข้าถึงจากทางไกล (จำเป็นต้องปิดเครื่องแล้วเปิดใหม่)","Allowed days":"วันที่อนุญาต","AuthID":"AuthID","Back":"กลับ","Backend modules:":"มอดูลสนับสนุน:","Backup destination":"ปลายทางข้อมูลสำรอง","Backup location":"ตำแหน่งข้อมูลสำรอง","Backup:":"ข้อมูลสำรอง:","Beta":"เบต้า","Broken access":"การเข้าถึงเสียหาย","Browse":"ดู","Browser default":"ค่ามาตรฐานของเบราว์เซอร์","Bucket Name":"ชื่อถัง","Busy ...":"ยุ่งอยู่ ...","Cancel":"ยกเลิก","Changelog":"ปูมความเปลี่ยนแปลง","Check failed:":"การตรวจสอบล้มเหลว:","Check for updates now":"ตรวจหาการปรับปรุงตอนนี้","Checking ...":"กำลังตรวจสอบ ...","Computer":"คอมพิวเตอร์","Configuration:":"การตั้งค่า:","Configure a new backup":"ตั้งค่าข้อมูลสำรองอันใหม่","Confirm delete":"ยืนยันการลบ","Confirmation required":"จำเป็นต้องได้รับการยืนยัน","Connect":"เชื่อมต่อ","Connect now":"เชื่อมต่อเดี๋ยวนี้","Connecting to task ....":"กำลังเชื่อมต่อไปยังงาน ...","Connecting...":"กำลังเชื่อมต่อ...","Continue":"ทำต่อ","Copied!":"คัดลอกแล้ว!","Copy Destination URL to Clipboard":"คัดลอก URL ปลายทางไปยังคลิปบอร์ด","Create folder?":"สร้างโฟลเดอร์?","Created new limited user":"สร้างผู้ใช้จำกัดสิทธิ์คนใหม่","Creating user...":"กำลังสร้างผู้ใช้...","Days":"วัน","Default":"ปริยาย","Default options":"ตัวเลือกมาตรฐาน","Delete":"ลบ","Delete backup":"ลบข้อมูลสำรอง","Delete local database":"ลบฐานข้อมูลในเครื่อง","Delete remote files":"ลบแฟ้มทางไกล","Delete the local database":"ลบฐานข้อมูลในเครื่อง","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"ลบ {{filecount}} แฟ้ม ({{filesize}}) จากที่เก็บข้อมูลทางไกล?","Desktop":"เดสก์ทอป","Destination":"ปลายทาง","Direct restore from backup files ...":"เรียกคืนข้อมูลโดยตรงจากแฟ้มข้อมูลสำรอง ...","Disabled":"ปิดใช้","Dismiss":"รับทราบ","Display and color theme":"การแสดงผลและชุดสี","Donate":"บริจาค","Donation messages":"ข้อความบริจาค","Donation messages are hidden, click to show":"ข้อความบริจาคถูกซ่อน คลิกเพื่อแสดง","Donation messages are visible, click to hide":"ข้อความบริจาคแสดงอยู่ คลิกเพื่อซ่อน","Done":"เสร็จ","Download":"ดาวน์โหลด","Encrypt file":"เข้ารหัสลับแฟ้ม","Encryption":"การเข้ารหัสลับ","Encryption changed":"การเข้ารหัสลับถูกเปลี่ยนแล้ว","Encryption modules:":"มอดูลเข้ารหัสลับ:","Enter URL":"ใส่ URL","Enter access key":"ใส่กุญแจเข้าถึง","Enter encryption passphrase":"ใส่วลีรหัสผ่านเข้ารหัสลับ","Error":"ผิดพลาด","Error!":"ผิดพลาด!","Errors and crashes":"ผิดพลาดและพัง","Exclude":"ไม่นับรวม","Exclude directories whose names contain":"ไม่นับรวมไดเกทอรีที่ในชื่อมี","Exclude file":"ไม่นับรวมแฟ้ม","Exclude file extension":"ไม่นับรวมสกุลแฟ้ม","Exclude files whose names contain":"ไม่นับรวมแฟ้มที่ในชื่อมี","Exclude folder":"ไม่นับรวมโฟลเดอร์","Exclude regular expression":"ไม่นับรวมตาม regular expression","Export":"ส่งออก","Export configuration":"ส่งออกการตั้งค่า","FTP (Alternative)":"FTP (ทางเลือก)","Failed to delete:":"การลบล้มเหลว:","Failed to import:":"การนำเข้าล้มเหลว:","File":"แฟ้ม","Files larger than:":"แฟ้มที่ใหญ่กว่า:","Filters":"ตัวกรอง","Finished!":"เสร็จสิ้น!","Folder":"โฟลเดอร์","Fri":"ศุกร์","GByte":"กิกะไบต์","GByte/s":"กิกะไบต์/วิ","General":"ทั่วไป","General backup settings":"การตั้งค่าข้อมูลสำรองทั่วไป","General options":"ตัวเลือกทั่วไป","Generate":"สร้าง","Hidden files":"แฟ้มที่ซ่อนอยู่","Hide":"ซ่อน","Hide hidden folders":"ซ่อนโฟลเดอร์ที่ถูกซ่อน","Home":"เหย้า","Hours":"ชั่วโมง","ID:":"ID:","Import":"นำเข้า","Import Destination URL":"นำเข้า URL ปลายทาง","Import backup configuration":"นำเข้าการตั้งค่าข้อมูลสำรอง","Import failed":"การนำเข้าล้มเหลว","Import from a file":"นำเข้าจากแฟ้ม","Include a file?":"นับรวมแฟ้ม?","KByte":"กิโลไบต์","KByte/s":"กิโลไบต์/วิ","Language in user interface":"ภาษาในส่วนติดต่อผู้ใช้","Last month":"เดือนที่แล้ว","Latest":"ล่าสุด","Live":"สด","Load older data":"เรียกข้อมูลที่เก่ากว่า","Loading ...":"กำลังเรียกข้อมูล ...","Loading remote storage usage ...":"กำลังเรียกข้อมูลการใช้งานที่เก็บทางไกล ...","Local storage":"ที่เก็บข้อมูลในท้องถิ่น","Location":"ที่ตั้ง","Log out":"ลงชื่อออก","MByte":"เมกะไบต์","MByte/s":"เมกะไบต์/วิ","Maintenance":"การบำรุงรักษา","Menu":"เมนู","Minutes":"นาที","Mon":"จ","Months":"เดือน","Next":"ถัดไป","No":"ไม่","No encryption":"ไม่เข้ารหัสลับ","OK":"ตกลง","Opened":"เปิดแล้ว","Options":"ตัวเลือก","Original location":"ตำแหน่งที่ตั้งตั้งต้น","Others":"อื่นๆ","Overwrite":"เขียนทับ","Passphrase":"วลีรหัสผ่าน","Passphrase (if encrypted)":"วลีรหัสผ่าน (ถ้าเข้ารหัสลับ)","Passphrase changed":"เปลี่ยนวลีรหัสผ่านแล้ว","Passphrases are not matching":"วลีรหัสผ่านไม่ตรงกัน","Passphrases do not match":"วลีรหัสผ่านไม่ตรง","Password":"รหัสผ่าน","Pause":"หยุดชั่วคราว","Previous":"ก่อหน้า","Progress:":"คืบหน้า:","Remote":"ทางไกล","Repair":"ซ่อม","This month":"เดือนนี้","This week":"สัปดาห์นี้","Thu":"พฤ","Time":"เวลา"}); gettextCatalog.setStrings('zh_CN', {"- pick an option -":"- 选择一个选项 -","...loading...":"…载入中…","API Key":"API 密钥","AWS Access ID":"AWS 访问 ID","AWS Access Key":"AWS 访问密钥","AWS IAM Policy":"AWS IAM 策略","About":"关于","About {{appname}}":"关于 {{appname}}","Access Key":"访问密钥","Access denied":"访问被拒绝","Access to user interface":"访问控制","Account name":"帐户名","Activate":"激活","Activate failed:":"激活失败:","Add a new backup":"添加新备份","Add a path directly":"直接添加路径","Add advanced option":"添加高级选项","Add backup":"新增备份","Add filter":"添加过滤条件","Add path":"添加路径","Adjust bucket name?":"调整 bucket 名称?","Adjust path name?":"调整路径名称?","Advanced Options":"高级选项","Advanced options":"高级选项","Advanced:":"高级:","All Hyper-V Machines":"所有 Hyper-V 机器","All Microsoft SQL Databases":"所有 Microsoft SQL 数据库","All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information.":"所有的使用情况报告都是匿名发送,不含任何个人信息。 其中包括硬件,操作系统,后端类型,备份时长,备份源大小以及类似数据,但不包括路径,文件名,用户名,密码或类似的敏感信息。","Allow remote access (requires restart)":"允许远程访问 (需要重启)","Allowed days":"日期规划","An existing file was found at the new location":"新位置已有文件","An existing file was found at the new location\nAre you sure you want the database to point to an existing file?":"新位置已有文件\n你确定要将数据库指向已存在的文件?","An existing local database for the storage has been found.\nRe-using the database will allow the command-line and server instances to work on the same remote storage.\n\n Do you wish to use the existing database?":"发现此存储在本地已存在数据库\n重新使用该数据库将使用命令行或服务器实例工作在相同的存储\n你希望使用已有的数据库吗?","Anonymous usage reports":"使用情况报告级别","Applications":"应用","As Command-line":"导出为命令行","AuthID":"授权 ID","Authentication password":"认证密码","Authentication username":"认证用户名","Autogenerated passphrase":"自动生成的密码","Automatically run backups.":"自动运行备份","B2 Application Key":"B2 应用密钥","B2 Cloud Storage Account ID":"B2 云存储帐户 ID","B2 Cloud Storage Application Key":"B2 云存储应用密钥","Back":"返回","Backend modules:":"后端模块:","Backup destination":"备份保存位置","Backup location":"备份位置","Backup retention":"备份保留策略","Backup:":"备份数据:","Beta":" Beta","Broken access":"访问错误","Browse":"浏览","Browser default":"浏览器默认语言","Bucket Name":"Bucket 名称","Bucket create location":"Bucket 创建区域","Bucket create region":"Bucket 创建区域","Bucket name":"Bucket 名称","Bucket storage class":"Bucket 存储类型","Busy ...":"忙碌中…","By allowing remote access, the server listens to requests from any machine on your network. If you enable this option, make sure you are always using the computer on a secure firewall protected network.":"允许远程访问,服务器监听并允许来自你网络上任何机器的请求。启用此项,请确保你的网络启用了安全防火墙保护。","Cache Files":"缓存文件","Canary":"Canary","Cancel":"取消","Cannot move to existing file":"不能移动到已有文件","Changelog":"更新日志","Changelog for {{appname}} {{version}}":"{{appname}} {{version}} 更新日志","Check failed:":"检查失败:","Check for updates now":"立即检查更新","Checking ...":"正在检查…","Chose a storage type to get started":"选择存储类型以开始","Click the AuthID link to create an AuthID":"点击\"授权 ID\"链接来创建一个授权 ID","Click to set throttle options":"点击配置限流","Compact now":"立即压实","Compacting remote data ...":"正在压实远程数据…","Compression modules:":"压缩模块:","Computer":"计算机","Configuration file:":"配置文件:","Configuration:":"配置:","Configure a new backup":"配置新备份","Confirm delete":"确认删除","Confirm encryption passphrase":"确认加密密码","Confirmation required":"需要确认","Connect":"连接","Connect now":"立即连接","Connecting to task ....":"正在连接至任务...","Connecting...":"正在连接…","Connection lost":"连接中断","Connection worked!":"连接正常!","Container name":"容器名称","Container region":"容器区域","Continue":"继续","Continue without encryption":"继续且不启用加密","Copied!":"已复制!","Copy":"复制","Copy Destination URL to Clipboard":"复制地址到剪贴板","Copy failed. Please manually copy the URL":"复制失败,请手动复制此地址","Core options":"核心选项","Counting ({{files}} files found, {{size}})":"正在计算 (已找到 {{files}} 个文件,{{size}})","Crashes only":"仅崩溃","Create folder?":"创建文件夹?","Created new limited user":"受限用户已创建","Creating user...":"正在创建用户…","Current action:":"当前操作:","Current file:":"当前文件:","Current version is {{versionname}} ({{versionnumber}})":"当前版本为 {{versionname}} ({{versionnumber}})","Custom S3 endpoint":"自定义 S3 端点","Custom authentication url":"自定义认证地址","Custom backup retention":"自定义备份保留策略","Custom location ({{server}})":"自定义区域 ({{server}})","Custom region for creating buckets":"自定义创建 Bucket 的地区","Custom region value ({{region}})":"自定义地区 ({{region}})","Custom server url ({{server}})":"自定义服务器地址 ({{server}})","Custom storage class ({{class}})":"自定义存储类别 ({{class}})","Days":"天","Default":"默认","Default ({{channelname}})":"默认 ({{channelname}})","Default excludes":"默认排除规则","Default options":"默认选项","Delete":"删除","Delete backup":"删除备份","Delete backups that are older than":"保留指定期限","Delete local database":"删除本地数据库","Delete remote files":"删除远程文件","Delete the local database":"删除本地数据库","Delete {{filecount}} files ({{filesize}}) from the remote storage?":"从远程存储中删除 {{filecount}} 个文件 ({{filesize}}) ?","Desktop":"桌面","Destination":"保存位置","Destination path":"保存位置","Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use.":"若 Duplicati 对你有所帮助,请考虑捐赠来支持我们。个人用途,建议捐赠 {{smallamount}},商业用途,建议捐赠 {{largeamount}}。","Direct restore from backup files ...":"直接从备份文件中恢复...","Disabled":"已禁用","Dismiss":"忽略","Dismiss all":"忽略所有","Display and color theme":"显示和颜色主题","Do you really want to delete the backup: \"{{name}}\" ?":"你确定要删除备份:\"{{name}}\"吗 ?","Do you really want to delete the local database for: {{name}}":"你确定要删除 \"{{name}}\" 的本地数据库吗 ?","Domain Name":"域名称","Donate":"捐赠","Donation messages":"捐赠信息","Donation messages are hidden, click to show":"捐赠信息已隐藏,点击显示","Donation messages are visible, click to hide":"捐赠消息已显示,点击隐藏","Done":"完成","Download":"下载","Duplicate option {{opt}}":"Duplicati 选项 {{opt}}","Duplicati Website":"Duplicati 网站","Duplicati forum":"Duplicati 论坛","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\n When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n If you are using the local database for backups from the commandline, you should keep the database.":"每个备份都有一个关联的本地数据库,用来存储远程备份相关的信息。\n删除一个备份时,你也可以删除其本地数据库,这不会影响从远程文件中恢复数据。\n但如果你通过命令行进行备份,你应当保留此数据库。","Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation.":"每个备份都有一个关联的本地数据库,用来存储远程备份相关的信息。\\n这将加快许多操作的执行时间并减少操作时需要下载的数据量。","Edit as list":"以列表形式编辑","Edit as text":"以文本形式编辑","Encrypt file":"加密文件","Encryption":"加密方式","Encryption changed":"加密方式已更改","Encryption modules:":"加密模块:","Enter URL":"输入地址","Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M.":"请手动输入备份保留策略。占位符 D/W/Y 代表 日/星期/年,U 代表 永久。语法为 7D:1D,4W:1W,36M:1M,这个例子保留7天中每天一份,4个星期中每星期一份,36个月中每月一份,也可以写成 1W:1D,1M:1W,3Y:1M","Enter access key":"输入访问密钥","Enter account name":"输入帐户名称","Enter backup passphrase, if any":"输入备份密码 (若存在)","Enter configuration details":"进入详细配置","Enter container name":"输入容器名称","Enter encryption passphrase":"输入加密密码","Enter expression here":"在此输入表达式","Enter folder path name":"输入文件夹路径名","Enter one option per line in command-line format, eg. {0}":"以命令行格式,一行一个参数,例如 {0}","Enter the destination path":"输入目标路径","Enter the email address of the Office 365 group":"输入 Office 365 群组的邮箱地址","Enter the full destination path, including the server name, but without https":"输入完整的路径,包括服务器名称,但不包括 https","Error":"错误","Error!":"错误!","Errors and crashes":"错误,崩溃","Exclude":"排除","Exclude directories whose names contain":"排除文件夹,名称包括","Exclude expression":"排除表达式","Exclude file":"排除文件","Exclude file extension":"排除文件后缀","Exclude files whose names contain":"排除文件,名称包括","Exclude filter group":"排除过滤条件集","Exclude folder":"排除文件夹","Exclude regular expression":"排除正则表达式","Existing file found":"发现已存在文件","Experimental":"Experimental","Export":"导出","Export backup configuration":"导出备份配置","Export configuration":"导出配置","External link":"外部链接","FTP (Alternative)":"FTP (备选)","Failed to build temporary database: {{message}}":"构建临时数据库失败: {{message}}","Failed to connect:":"连接失败:","Failed to connect: {{message}}":"连接失败:{{message}}","Failed to delete:":"删除失败:","Failed to fetch path information: {{message}}":"获取路径信息失败: {{message}}","Failed to import:":"导入失败:","Failed to read backup defaults:":"读取备份默认设置失败:","Failed to restore files: {{message}}":"恢复文件失败: {{message}}","Failed to save:":"保存失败:","File":"文件","Files larger than:":"文件大于","Filters":"过滤条件","Finished!":"已完成!","First run setup":"初始配置","Folder":"文件夹","Folder path":"文件夹路径","Fri":"周五","GByte":"GB","GByte/s":"GB/s","GCS Project ID":"GCS 项目 ID","General":"常规","General backup settings":"常规备份设置","General options":"常规选项","Generate":"生成","Group email":"群组邮箱","Hidden files":"隐藏文件","Hide":"隐藏","Hide hidden folders":"隐藏被隐藏的文件夹","Home":"首页","Hostnames":"主机名","Hours":"小时","How do you want to handle existing files?":"你想要怎样处理已存在的文件?","Hyper-V Machine":"Hyper-V 虚拟机","Hyper-V Machine:":"Hyper-V 虚拟机:","Hyper-V Machines":"Hyper-V 虚拟机","ID:":"ID:","If a date was missed, the job will run as soon as possible.":"如果时间错过,任务将尽快运行。","If at least one newer backup is found, all backups older than this date are deleted.":"相对于最新备份,早于此期限的备份将被清理","If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate.":"如果备份和远程存储不同步,Duplicati 需要你执行修复操作来同步数据库。\\n如果修复失败,你可以删除本地数据库并重新生成。","If you do not enter a path, all files will be stored in the login folder.\nAre you sure this is what you want?":"如果你不输入路径,所有文件将存储在登录时的默认文件夹。\n你确定这是你想要的吗?","If you do not enter an API Key, the tenant name is required":"如果你不输入 API 密钥,则需要输入租户名称","If you want to use the backup later, you can export the configuration before deleting it":"如果你需要之后使用备份,你可以在删除它之前导出配置","If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\nDo you want to set a password now?":"如果你的机器处于多用户环境(比如机器上有多个帐户),你需要设定一个密码来防止其他帐户访问你的数据。\n你要现在设定密码吗?","Import":"导入","Import Destination URL":"导入地址","Import backup configuration":"导入备份配置","Import completed, but no certificates were found after the import":"导入完成,但是未能找到证书","Import failed":"导入失败","Import from a file":"从文件导入","Import metadata":"导入元数据","Include a file?":"包含一个文件?","Include expression":"包含表达式","Include regular expression":"包含正则表达式","Incorrect answer, try again":"验证失败,请重试","Individual builds for developers only. Not for use with important data.":"面向开发者的个人构建,不适用于重要数据","Information":"信息","Install":"安装","Install failed:":"安装失败:","Invalid characters in path":"路径中包含无效字符","Invalid retention time":"无效的保留时间","It is possible to connect to some FTP without a password.\nAre you sure your FTP server supports password-less logins?":"某些 FTP 不需要密码\n你确定你的 FTP 服务器支持无密码登陆吗?","KByte":"KB","KByte/s":"KB/s","Keep a specific number of backups":"保留指定版本数","Keep all backups":"永久保留","Keystone API version":"Keystone API 版本","Language in user interface":"界面语言","Last month":"上月","Last successful backup:":"上次成功备份于:","Last successful restore: {{time}} (took {{duration || '0 seconds'}})":"上次成功恢复于:{{time}} (耗时 {{duration || '0 秒'}})","Latest":"最新","Libraries":"第三方库","Live":"实时","Load a configuration from an exported job or a storage provider":"从已导出的任务文件或者存储提供商处载入配置","Load destination from an exported job or a storage provider":"从已导出的任务文件或存储提供商处载入目标位置","Load older data":"载入之前的数据","Loading ...":"载入中…","Loading remote storage usage ...":"正在载入远程存储使用量…","Local Repository":"本地仓库","Local database for":"本地数据库","Local database path:":"本地数据库路径:","Local repository":"本地仓库","Local storage":"本地存储","Location":"位置","Location where buckets are created":"请指定 Bucket 创建区域","Log data for {{Backup.Backup.Name}}":"{{Backup.Backup.Name}} 的日志","Log data from the server":"Duplicati 服务器日志","Log out":"登出","MByte":"MB","MByte/s":"MB/s","Maintenance":"维护","Manually type path":"手动输入路径…","Max download speed":"最大下载速度","Max upload speed":"最大上传速度","Menu":"菜单","Microsoft SQL Database:":"Microsoft SQL 数据库:","Microsoft SQL Databases":"Microsoft SQL 数据库","Minimum redundancy":"最小冗余","Minimum redundancy is 1.0":"最小冗余为 1.0","Minutes":"分钟","Missing name":"缺少名称","Missing passphrase":"缺少密码","Missing sources":"缺少源数据","Mon":"周一","Months":"月","Move existing database":"移动已有数据库","Move failed:":"移动失败:","My Documents":"我的文档","My Music":"我的音乐","My Photos":"我的照片","My Pictures":"我的图片","Name":"名称","Never":"从不","New update found: {{message}}":"发现新版本: {{message}}","New user name is {{user}}.\nUpdated credentials to use the new limited user":"新用户名为 {{user}}\n已为新的受限用户更新证书","Next":"下一步","Next scheduled run:":"下一次计划运行于:","Next scheduled task:":"下一次计划任务:","Next task:":"下一次任务:","Next time":"下一次运行时间:","No":"否","No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n\nDo you want to approve the reported host key?":"未预先指定证书,请与服务器管理员确认密钥 {{key}} 是否正确\n\n你想要允许此主机密钥吗?","No editor found for the "{{backend}}" storage type":"未找到 "{{backend}}" 存储类型的编辑器","No encryption":"无加密","No items selected":"未选中项目","No items to restore, please select one or more items":"未恢复项目,请至少选择一项","No passphrase entered":"未输入密码","No scheduled tasks":"暂无计划任务","No, my machine has only a single account":"否,我的机器只有一个帐户","Non-matching passphrase":"密码不匹配","None / disabled":"无 / 禁用","Nothing will be deleted. The backup size will grow with each change.":"不会清理任何备份,备份大小将持续增长","OK":"确定","Once there are more backups than the specified number, the oldest backups are deleted.":"一旦备份版本数超过此值,最旧的备份将被清理","OpenStack AuthURI":"OpenStack 认证地址","OpenStack Object Storage / Swift":"OpenStack 对象存储 / Swift","Openstack API Key are not supported in v3 keystone API.":"v3 keystone API 不支持 Openstack API 密钥","Operating System":"操作系统","Operation failed:":"操作失败:","Operations:":"操作:","Optional authentication password":"如果需要,请输入认证密码","Optional authentication username":"如果需要,请输入认证用户名","Options":"选项","Options added here are applied to all backups, but can be overridden in each individual backup":"此处选项将对所有备份生效,但你可以单独设置备份来覆盖它","Original location":"原位置","Others":"其它","Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup.":"随着时间,备份将被自动清理。这将保留最近7天中每天一份,最近4个星期中每星期一份,最近12个月中每月一份,而且保证总是至少存在一个备份","Overwrite":"覆盖","Passphrase":"密码","Passphrase (if encrypted)":"密码 (若启用加密)","Passphrase changed":"密码已更改","Passphrases are not matching":"密码不匹配","Password":"密码","Path":"路径","Path not found":"路径未找到","Path on server":"服务器上路径","Path or subfolder in the bucket":" Bucket 中路径或子文件夹","Pause":"暂停","Pause after startup or hibernation":"开机或唤醒后暂缓","Pause options":"暂停选项","Permissions":"权限","Pick location":"选择位置","Point to your backup files and restore from there":"指向你的备份文件,将从中恢复","Port":"端口","Prevent tray icon automatic log-in":"保持托盘图标自动登录","Previous":"上一步","Progress:":"进度:","ProjectID is optional if the bucket exist":"若 Bucket 存在, 则项目ID 可选","Proprietary":"专有","Recreate (delete and repair)":"重建 (删除并修复)","Relative paths not allowed":"不允许相对路径","Reload":"重新载入","Remote":"远程","Remote Path":"远程路径","Remote Repository":"远程仓库","Remote path":"远程路径","Remote repository":"远程仓库","Remote volume size":"远程卷大小","Remove":"移除","Remove option":"移除选项","Repair":"修复","Repeat Passphrase":"重复密码","Reporting:":"报告:","Reset":"重置","Restore":"恢复文件","Restore files":"恢复文件","Restore files from {{backupname}}":"从 {{backupname}} 恢复文件","Restore from":"恢复自","Restore from backup configuration":"从备份配置中恢复","Restore from configuration ...":"从配置中恢复...","Restore options":"恢复选项","Restore read/write permissions":"恢复读写权限","Resume":"恢复运行","Run again every":"重复运行每","Run now":"立即运行","Running ....":"正在运行...","Running commandline entry":"正在运行命令行","Running task:":"运行中的任务:","S3 Compatible":"S3 兼容","Same as the base install version: {{channelname}}":"与当前安装版本一致:{{channelname}}","Sat":"周六","Save":"保存","Save and repair":"保存并修复","Save different versions with timestamp in file name":"保存不同版本 (文件名中添加时间戳)","Save immediately":"立即保存","Schedule":"计划","Search":"搜索","Search for files":"搜索文件","Seconds":"秒","Select a log level and see messages as they happen:":"选择日志级别并实时查看","Select files":"选择文件","Server":"服务器","Server and port":"服务器与端口","Server hostname or IP":"服务器主机名或 IP","Server is currently paused,":"服务器暂停中,","Server is currently paused, do you want to resume now?":"Duplicati 服务器暂停中,你想要立即恢复运行吗?","Server password":"服务器密码","Server paused":"服务器已暂停","Server state properties":"Duplicati 服务器状态","Settings":"设置","Show":"查看","Show advanced editor":"显示高级编辑器","Show hidden folders":"显示隐藏文件夹","Show log":"日志","Show treeview":"显示树状视图","Sia server password":"Sia 服务器密码","Smart backup retention":"智能备份保留策略","Some OpenStack providers allow an API key instead of a password and tenant name":"一些 OpenStack 提供商使用 API 密钥,而不是租户名称和密码","Source Data":"源数据","Source data":"源数据","Source folders":"源文件夹","Source:":"源数据:","Specific builds for developers only. Not for use with important data.":"面向开发者的特定构建,不适用于重要数据","Standard protocols":"标准协议","Stop after the current file":"当前文件完成后停止","Stop now":"立即停止","Stop running backup":"停止正在运行的备份","Stop running task":"停止正在运行的任务","Stopping task:":"正在停止任务:","Storage Type":"存储类型","Storage class":"存储类别","Storage class for creating a bucket":"创建 Bucket 的存储类别","Stored":"存档","Strong":"强度高","Success":"成功","Sun":"周日","Symbolic link":"符号链接","System Files":"系统文件","System default ({{levelname}})":"默认 ({{levelname}})","System files":"系统文件","System info":"系统信息","System properties":"系统属性","TByte":"TB","TByte/s":"TB/s","Target path, ie /backup":"目标路径,例如 /backup","Task is running":"任务正在运行中","Temporary Files":"临时文件","Temporary files":"临时文件","Tenant Name":"租户名称","Test connection":"测试连接","Testing ...":"正在测试…","Testing connection ...":"正在测试连接…","Testing permissions...":"正在测试权限…","The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})":"字段 '{{fieldname}}' 包含无效字符:{{character}} (值: {{value}}, 位置: {{pos}})","The bucket name should be all lower-case, convert automatically?":"Bucket 名称应当是全小写,自动转换?","The bucket name should start with your username, prepend automatically?":"Bucket 名称应该以你的用户名开头,自动加上?","The connection to the server is lost, attempting again in {{time}} ...":"服务器连接中断,将在 {{time}} 后重新连接…","The dark theme (by Michal)":"黑色主题 (by Michal)","The default blue on white theme (by Alex)":"默认蓝白主题 (by Alex)","The folder {{folder}} does not exist.\nCreate it now?":"文件夹 {{folder}} 不存在\n是否现在创建?","The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n\nDo you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?":"主机密钥已更改,请与服务器管理员确认其是否正确,否则你可能正在被中间人攻击。\n\n你想要把现有密钥 \"{{prev}}\" 替换为 {{key}} 吗?","The path does not appear to exist, do you want to add it anyway?":"路径似乎不存在,你确定要添加它吗?","The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n\nDo you want to include the specified file?":"路径不应该以 '{{dirsep}}' 字符结尾,这意味你想要包含一个文件而不是文件夹。\n你想要包含指定文件吗?","The path must be an absolute path, i.e. it must start with a forward slash '/'":"路径必须为绝对路径,也就是以斜杠 '/' 开头","The region parameter is only applied when creating a new bucket":"\"地区\"参数只在创建新 Bucket 时生效","The region parameter is only used when creating a bucket":"\"参数只在创建新 Bucket 时使用","The server certificate could not be validated.\nDo you want to approve the SSL certificate with the hash: {{hash}}?":"服务器证书验证失败\n你想要允许此 SSL证书吗?其哈希值为 {{hash}}","The storage class affects the availability and price for a stored file":"存储类别影响文件可用性和价格","The target folder contains encrypted files, please supply the passphrase":"目标文件夹包含加密文件,请提供密码","The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?":"此用户权限太多,你想要创建一个只能访问所选路径的受限用户吗?","This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?":"此备份创建于其他操作系统上。恢复时不指定目标文件夹可能会使文件恢复到未知的位置。你确定要继续吗?","This month":"本月","This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size.":"此选项与最大允许的备份大小或文件大小无关,也不影响去重率。在你修改远程卷大小前,请参见此页面","This week":"本周","Throttle settings":"限流设置","Thu":"周四","To File":"导出为文件","To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below":"为确认你想要删除 \"{{name}}\" 的所有远程文件,请输入以下单词","To export without a passphrase, uncheck the \"Encrypt file\" box":"如果不想使用密码加密导出的文件,请去除勾选\"加密文件\"","To prevent various DNS based attacks, Duplicati limits the allowed hostnames to the ones listed here. Direct IP access and localhost is always allowed. Multiple hostnames can be supplied with a semicolon separator. If any of the allowed hostnames is an asterisk (*), all hostnames are allowed and this feature is disabled. If the field is empty, only IP address and localhost access is allowed.":"为了防止各种基于 DNS 的攻击,Duplicati 将仅允许此处列出的主机名。直接使用 IP 和 localhost 访问是始终允许的。可以使用分号分隔多个主机名,星号(*) 代表允许所有主机名,同时禁用所有限制。如果该字段为空,则仅允许 IP 地址和本地主机访问。","Today":"今天","Trust host certificate?":"信任主机证书?","Trust server certificate?":"信任服务器证书?","Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments.":"这是当前最稳定的版本,可以试用我们开发的新特性。如果要在生产环境使用,请事先测试恢复数据。","Tue":"周二","Type to highlight files":"输入以高亮文件","Unknown backup size and versions":"未知的备份大小和版本","Until resumed":"直到手动恢复运行","Update channel":"更新分支","Update failed:":"更新失败:","Updating with existing database":"正在更新存在的数据库","Usage statistics":"使用情况统计","Usage statistics, warnings, errors, and crashes":"使用情况统计,警告,错误,崩溃","Use SSL":"启用 SSL","Use existing database?":"使用已存在的数据库?","Use weak passphrase":"确定使用弱密码","Useless":"无用","User data":"用户数据","User domain name":"用户域名称","User has too many permissions":"用户权限太多","User interface settings":"界面设置","Username":"用户名","Verify files":"校验文件","Verifying ...":"正在校验…","Verifying answer":"正在验证","Very strong":"强度非常高","Very weak":"强度非常低","Visit us on":"了解我们","WARNING: The remote database is found to be in use by the commandline library":"警告:远程数据库正在被命令行库使用","WARNING: This will prevent you from restoring the data in the future.":"警告:这将使你以后不再能恢复数据","Waiting for task to begin":"等待任务开始…","Waiting for task to start ....":"正在等待任务开始...","Warnings, errors and crashes":"警告,错误,崩溃","We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies.":"我们接受多种渠道的捐赠,例如OpenCollective,PayPal,BountySource 以及多种加密货币","We recommend that you encrypt all backups stored outside your system":"我们推荐加密所有保存在第三方系统中的数据","Weak":"强度低","Weak passphrase":"弱密码","Wed":"周三","Weeks":"周","Where do you want to restore from?":"你想从哪里恢复呢?","Where do you want to restore the files to?":"你想把文件恢复到哪里?","Years":"年","Yes":"是","Yes, I have stored the passphrase safely":"是,我已将密码安全保存","Yes, I'm brave!":"是,我无所谓","Yes, please break my backup!":"是,请清除我的备份","Yesterday":"昨天","You appear to be running Mono with no SSL certificates loaded.\nDo you want to import the list of trusted certificates from Mozilla?":"看起来 Mono 当前没有载入 SSL 证书。\n你想要从 Mozilla 导入可信任的证书吗?","You are changing the database path away from an existing database.\nAre you sure this is what you want?":"你正在改变数据库路径。\n你确定想要这么做吗?","You are currently running {{appname}} {{version}}":"当前正在运行 {{appname}} {{version}}","You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead":"你已经更改了加密方式,这可能破坏备份。你更应当创建新备份。","You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead.":"你已经更改密码,这是不支持的操作。你更应当创建新备份。","You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server.":"你已选择不加密备份,推荐加密所有存储在远程服务器上的数据。","You have chosen to restore to a new location, but not entered one":"你选择了恢复到新位置,却没有指定具体位置","You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase.":"你已经生成了一个强密码,确保你安全记录下了此密码,否则,万一你丢失了密码,数据将不能恢复。","You must choose at least one source folder":"你必须选择至少一个源文件夹","You must enter a domain name to use v3 API":"要使用 v3 API,你必须输入域名称","You must enter a name for the backup":"你必须输入备份名称","You must enter a passphrase or disable encryption":"你必须输入加密密码或禁用加密","You must enter a password to use v3 API":"要使用 v3 API,你必须输入密码","You must enter a positive number of backups to keep":"你输入要保留的版本数必须为正","You must enter a tenant (aka project) name to use v3 API":"要使用 v3 API,你必须输入租户(也就是项目)","You must enter a tenant name if you do not provide an API Key":"如果你没有提供 API 密钥,你必须输入租户名称","You must enter a valid duration for the time to keep backups":"你必须输入有效的保留时长","You must enter either a password or an API Key":"你必须输入一个密码或 API 密钥","You must enter either a password or an API Key, not both":"你必须只输入一个密码或 API 密钥,而不是两者同时","You must fill in the password":"你必须填写密码","You must fill in the server name or address":"你必须填写服务器主机名或地址","You must fill in the username":"你必须填写用户名","You must fill in {{field}}":"你必须填写 {{field}}","You must select or fill in the AuthURI":"你必须选择或填写认证地址","You must select or fill in the server":"你必须选择或填写服务器","You must specify a path":"你必须指定路径","You should fill in {{field}}{{reason}}":"你应当填写 {{field}}{{reason}}","Your files and folders have been restored successfully.":"文件恢复成功!","Your passphrase is easy to guess. Consider changing passphrase.":"你的密码很容易被破解,请考虑更换一个强密码","bucket/folder/subfolder":"Bucket / 文件夹 / 子文件夹","byte":"B","byte/s":"B/s","custom":"自定义","resume now":"立即恢复运行","unless you are explicitly specifying --group-id":"除非你通过 --group-id 具体指定","{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}.":"{{appname}} 主要由 {{dev1}} 和 {{dev2}} 开发. {{appname}} 可以从 {{websitename}} 下载. {{appname}} 采用 {{licensename}} 授权.","{{files}} files ({{size}}) to go {{speed_txt}}":"剩余 {{files}} 个文件 ({{size}}) {{speed_txt}}","{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version":"{{item.Backup.Metadata.TargetSizeString}} / {{$count}} 个版本","{{number}} Hour":"{{number}} 小时","{{number}} Minutes":"{{number}} 分钟","{{time}} (took {{duration}})":"{{time}} (耗时 {{duration}})"}); diff --git a/Duplicati/Service/Duplicati.Service.csproj b/Duplicati/Service/Duplicati.Service.csproj index 03cb14a81..66fd2ccba 100644 --- a/Duplicati/Service/Duplicati.Service.csproj +++ b/Duplicati/Service/Duplicati.Service.csproj @@ -1,8 +1,9 @@ - + net8.0 Duplicati.Service.Implementation + Copyright © 2024 Team Duplicati, MIT license @@ -16,4 +17,4 @@ - \ No newline at end of file + diff --git a/Duplicati/Tools/Duplicati.Tools.csproj b/Duplicati/Tools/Duplicati.Tools.csproj index f7b85971e..ecb48b4cc 100644 --- a/Duplicati/Tools/Duplicati.Tools.csproj +++ b/Duplicati/Tools/Duplicati.Tools.csproj @@ -1,8 +1,9 @@ - + net8.0 Library + Copyright © 2024 Team Duplicati, MIT license @@ -31,4 +32,4 @@ - \ No newline at end of file + diff --git a/Duplicati/UnitTest/Duplicati.UnitTest.csproj b/Duplicati/UnitTest/Duplicati.UnitTest.csproj index 21e5cccd6..d8a930cdf 100644 --- a/Duplicati/UnitTest/Duplicati.UnitTest.csproj +++ b/Duplicati/UnitTest/Duplicati.UnitTest.csproj @@ -1,4 +1,4 @@ - + Exe @@ -6,6 +6,7 @@ false false Duplicati.UnitTest + Copyright © 2024 Team Duplicati, MIT license @@ -44,3 +45,4 @@ + diff --git a/Duplicati/WebserverCore/Duplicati.WebserverCore.csproj b/Duplicati/WebserverCore/Duplicati.WebserverCore.csproj index a605480bb..26ab7bbb1 100644 --- a/Duplicati/WebserverCore/Duplicati.WebserverCore.csproj +++ b/Duplicati/WebserverCore/Duplicati.WebserverCore.csproj @@ -7,6 +7,7 @@ enable true Duplicati.WebserverCore + Copyright © 2024 Team Duplicati, MIT license @@ -23,3 +24,4 @@ + diff --git a/Duplicati/WindowsService/WindowsService.csproj b/Duplicati/WindowsService/WindowsService.csproj index 96fd61bb8..144337a1e 100644 --- a/Duplicati/WindowsService/WindowsService.csproj +++ b/Duplicati/WindowsService/WindowsService.csproj @@ -1,8 +1,9 @@ - + net8.0 Duplicati.WindowsService.Implementation + Copyright © 2024 Team Duplicati, MIT license @@ -27,4 +28,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine.AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj b/Executables/net8/Duplicati.CommandLine.AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj index 2526fcc2a..85ce10fd2 100644 --- a/Executables/net8/Duplicati.CommandLine.AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj +++ b/Executables/net8/Duplicati.CommandLine.AutoUpdater/Duplicati.CommandLine.AutoUpdater.csproj @@ -1,9 +1,10 @@ - + Exe net8.0 AutoUpdater tool for Duplicati + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine.BackendTester/Duplicati.CommandLine.BackendTester.csproj b/Executables/net8/Duplicati.CommandLine.BackendTester/Duplicati.CommandLine.BackendTester.csproj index 67a4cae20..e48943a9a 100644 --- a/Executables/net8/Duplicati.CommandLine.BackendTester/Duplicati.CommandLine.BackendTester.csproj +++ b/Executables/net8/Duplicati.CommandLine.BackendTester/Duplicati.CommandLine.BackendTester.csproj @@ -1,9 +1,10 @@ - + Exe net8.0 A backend debugging tool for Duplicati + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine.BackendTool/Duplicati.CommandLine.BackendTool.csproj b/Executables/net8/Duplicati.CommandLine.BackendTool/Duplicati.CommandLine.BackendTool.csproj index f177e375f..a45023adb 100644 --- a/Executables/net8/Duplicati.CommandLine.BackendTool/Duplicati.CommandLine.BackendTool.csproj +++ b/Executables/net8/Duplicati.CommandLine.BackendTool/Duplicati.CommandLine.BackendTool.csproj @@ -1,9 +1,10 @@ - + Exe net8.0 Tool for file-level access to remote destinations + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine.ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj b/Executables/net8/Duplicati.CommandLine.ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj index 0bb0f5098..cee204c7c 100644 --- a/Executables/net8/Duplicati.CommandLine.ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj +++ b/Executables/net8/Duplicati.CommandLine.ConfigurationImporter/Duplicati.CommandLine.ConfigurationImporter.csproj @@ -1,9 +1,10 @@ - + Exe net8.0 Configuration Import Tool for Duplicati + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine.RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj b/Executables/net8/Duplicati.CommandLine.RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj index 3e084f36b..4fb38c689 100644 --- a/Executables/net8/Duplicati.CommandLine.RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj +++ b/Executables/net8/Duplicati.CommandLine.RecoveryTool/Duplicati.CommandLine.RecoveryTool.csproj @@ -1,9 +1,10 @@ - + Exe net8.0 RecoveryTool for Duplicati + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine.SharpAESCrypt/Duplicati.CommandLine.SharpAESCrypt.csproj b/Executables/net8/Duplicati.CommandLine.SharpAESCrypt/Duplicati.CommandLine.SharpAESCrypt.csproj index d01f61af3..f6a9c3465 100644 --- a/Executables/net8/Duplicati.CommandLine.SharpAESCrypt/Duplicati.CommandLine.SharpAESCrypt.csproj +++ b/Executables/net8/Duplicati.CommandLine.SharpAESCrypt/Duplicati.CommandLine.SharpAESCrypt.csproj @@ -1,10 +1,11 @@ - + Exe net8.0 The Server SharpAESCrypt implementation Duplicati.CommandLine.SharpAESCrypt + Copyright © 2024 Team Duplicati, MIT license @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine.Snapshots/Duplicati.CommandLine.Snapshots.csproj b/Executables/net8/Duplicati.CommandLine.Snapshots/Duplicati.CommandLine.Snapshots.csproj index 6cd6b7c6e..1ea7e7aa3 100644 --- a/Executables/net8/Duplicati.CommandLine.Snapshots/Duplicati.CommandLine.Snapshots.csproj +++ b/Executables/net8/Duplicati.CommandLine.Snapshots/Duplicati.CommandLine.Snapshots.csproj @@ -1,10 +1,11 @@ - + Exe net8.0 The Server Snapshots implementation Duplicati.CommandLine.Snapshots + Copyright © 2024 Team Duplicati, MIT license @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.CommandLine/Duplicati.CommandLine.csproj b/Executables/net8/Duplicati.CommandLine/Duplicati.CommandLine.csproj index fd8006df1..5fc6eb51a 100644 --- a/Executables/net8/Duplicati.CommandLine/Duplicati.CommandLine.csproj +++ b/Executables/net8/Duplicati.CommandLine/Duplicati.CommandLine.csproj @@ -4,6 +4,7 @@ Exe net8.0 Commandline implementation of Duplicati + Copyright © 2024 Team Duplicati, MIT license @@ -18,3 +19,4 @@ + diff --git a/Executables/net8/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj b/Executables/net8/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj index 5ea7662c1..12f91f8c7 100644 --- a/Executables/net8/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj +++ b/Executables/net8/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj @@ -1,10 +1,11 @@ - + WinExe net8.0 The Duplicati Tray implementation ..\..\..\Duplicati\GUI\Duplicati.GUI.TrayIcon\Duplicati.ico + Copyright © 2024 Team Duplicati, MIT license @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.Server/Duplicati.Server.csproj b/Executables/net8/Duplicati.Server/Duplicati.Server.csproj index 07c58c7b4..99740ab88 100644 --- a/Executables/net8/Duplicati.Server/Duplicati.Server.csproj +++ b/Executables/net8/Duplicati.Server/Duplicati.Server.csproj @@ -1,9 +1,10 @@ - + Exe net8.0 The Duplicati Server implementation + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.Service/Duplicati.Service.csproj b/Executables/net8/Duplicati.Service/Duplicati.Service.csproj index 090650c3f..98694f410 100644 --- a/Executables/net8/Duplicati.Service/Duplicati.Service.csproj +++ b/Executables/net8/Duplicati.Service/Duplicati.Service.csproj @@ -1,9 +1,10 @@ - + Exe net8.0 Service controller for Duplicati + Copyright © 2024 Team Duplicati, MIT license @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/Executables/net8/Duplicati.WindowsService/Duplicati.WindowsService.csproj b/Executables/net8/Duplicati.WindowsService/Duplicati.WindowsService.csproj index b0b830e20..f523d0930 100644 --- a/Executables/net8/Duplicati.WindowsService/Duplicati.WindowsService.csproj +++ b/Executables/net8/Duplicati.WindowsService/Duplicati.WindowsService.csproj @@ -1,10 +1,11 @@ - + Exe net8.0 WindowsService for Duplicati Duplicati.WindowsService + Copyright © 2024 Team Duplicati, MIT license @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/Localizations/.tx/config b/Localizations/.tx/config index 19852283b..b6258ce1b 100644 --- a/Localizations/.tx/config +++ b/Localizations/.tx/config @@ -1,14 +1,23 @@ [main] host = https://www.transifex.com -[duplicati.duplicati] -source_file = duplicati/localization.pot -file_filter = duplicati/localization-.po -source_lang = en -type = PO +[o:duplicati:p:duplicati:r:duplicati] +file_filter = duplicati/localization-.po +source_file = duplicati/localization.pot +source_lang = en +type = PO +minimum_perc = 0 +resource_name = localization.pot +replace_edited_strings = false +keep_translations = false + +[o:duplicati:p:duplicati:r:webroot] +file_filter = webroot/localization_webroot-.po +source_file = webroot/localization_webroot.pot +source_lang = en +type = PO +minimum_perc = 0 +resource_name = localization_webroot.pot +replace_edited_strings = false +keep_translations = false -[duplicati.webroot] -source_file = webroot/localization_webroot.pot -file_filter = webroot/localization_webroot-.po -source_lang = en -type = PO diff --git a/Localizations/duplicati/localization-it.mo b/Localizations/duplicati/localization-it.mo index 6c064970b..59b4d26ab 100644 Binary files a/Localizations/duplicati/localization-it.mo and b/Localizations/duplicati/localization-it.mo differ diff --git a/Localizations/duplicati/localization-it.po b/Localizations/duplicati/localization-it.po index eeec89a10..ec3907682 100644 --- a/Localizations/duplicati/localization-it.po +++ b/Localizations/duplicati/localization-it.po @@ -7,9 +7,9 @@ # Andrea Ricci , 2016 # Andrea De Lunardi , 2017 # Francesco Infantini , 2018 -# albanobattistella , 2019 # Antonio Mazzarino , 2020 -# Folgore101 , 2020 +# albanobattistella , 2020 +# Folgore101 , 2024 # #, fuzzy msgid "" @@ -18,13 +18,13 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-21 17:27+0200\n" "PO-Revision-Date: 2016-10-04 18:53+0000\n" -"Last-Translator: Folgore101 , 2020\n" -"Language-Team: Italian (https://www.transifex.com/duplicati/teams/67655/it/)\n" +"Last-Translator: Folgore101 , 2024\n" +"Language-Team: Italian (https://app.transifex.com/duplicati/teams/67655/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: Server/Strings.cs:7 msgid "Another instance is running, and was notified" @@ -919,7 +919,7 @@ msgstr "Devi fornire un ID progetto con --{0} per creare un bucket" #: Library/Backend/GoogleServices/Strings.cs:26 #: Library/Backend/GoogleServices/Strings.cs:42 #: Library/Backend/Box/Strings.cs:23 Library/Backend/OneDrive/Strings.cs:6 -#: Library/Backend/Dropbox/Strings.cs:24 +#: Library/Backend/HubiC/Strings.cs:23 Library/Backend/Dropbox/Strings.cs:24 #: Library/Backend/OAuthHelper/Strings.cs:9 msgid "The authorization code" msgstr "Il codice di autorizzazione" @@ -927,7 +927,7 @@ msgstr "Il codice di autorizzazione" #: Library/Backend/GoogleServices/Strings.cs:27 #: Library/Backend/GoogleServices/Strings.cs:43 #: Library/Backend/Box/Strings.cs:24 Library/Backend/OneDrive/Strings.cs:7 -#: Library/Backend/Dropbox/Strings.cs:25 +#: Library/Backend/HubiC/Strings.cs:24 Library/Backend/Dropbox/Strings.cs:25 #: Library/Backend/OAuthHelper/Strings.cs:10 #, csharp-format msgid "The authorization token retrieved from {0}" @@ -1164,14 +1164,14 @@ msgstr "Impossibile determinare il nome del bucket per l'host: {0}" msgid "" "This flag toggles the use of the special RRS header. Files stored using RRS " "are more likely to disappear than those stored normally, but also costs less" -" to store. See the full description here: http://aws.amazon.com/about-aws" -"/whats-new/2010/05/19/announcing-amazon-s3-reduced-redundancy-storage/" +" to store. See the full description here: http://aws.amazon.com/about-" +"aws/whats-new/2010/05/19/announcing-amazon-s3-reduced-redundancy-storage/" msgstr "" "Questo flag attiva/disattiva l'utilizzo dell'intestazione speciale RRS. I " "file archiviati utilizzando RRS hanno maggiori probabilità di essere persi " "rispetto a quelli archiviati normalmente, ma anche costi di archiviazione " -"minori. Guarda la descrizione completa qui: http://aws.amazon.com/about-aws" -"/whats-new/2010/05/19/announcing-amazon-s3-reduced-redundancy-storage/" +"minori. Guarda la descrizione completa qui: http://aws.amazon.com/about-" +"aws/whats-new/2010/05/19/announcing-amazon-s3-reduced-redundancy-storage/" #: Library/Backend/S3/Strings.cs:21 msgid "Use Reduced Redundancy Storage" @@ -1681,6 +1681,17 @@ msgid "" " a username and password is supplied, the same credentials are used for all " "destinations." msgstr "" +"Questa opzione consente di specificare più target. Il percorso di " +"destinazione principale viene posizionato prima dell'elenco dei percorsi " +"forniti con questa opzione. Prima di avviare il backup, viene verificata " +"l'esistenza di ogni cartella nell'elenco e, facoltativamente, la presenza " +"del file marker fornito da - {0}. Il primo percorso esistente che contiene " +"facoltativamente il file marker viene quindi utilizzato come destinazione. " +"Più destinazioni sono separate da un \"{1}\". Su Windows, il percorso può " +"essere un percorso UNC e la lettera dell'unità può essere sostituita da un " +"asterisco (*), ad esempio: \"*: \\ backup\", che esaminerà tutte le lettere " +"dell'unità. Se vengono forniti un nome utente e una password, vengono " +"utilizzate le stesse credenziali per tutte le destinazioni." #: Library/Backend/File/Strings.cs:7 msgid "A list of secondary target paths" @@ -1726,6 +1737,12 @@ msgid "" "to fail. This option has no effect unless the --disable-streaming-transfers" " option is activated." msgstr "" +"Quando si memorizza il file, l'operazione standard è quella di copiare il " +"file ed eliminare l'originale. Questa sequenza assicura che l'operazione " +"possa essere ritentata se qualcosa va storto. L'attivazione di questa " +"opzione potrebbe non riuscire a ripetere l'operazione. Questa opzione non ha" +" effetto a meno che non sia attivata l'opzione --disabilita-trasferimento-" +"streaming." #: Library/Backend/File/Strings.cs:17 msgid "Move the file instead of copying it" @@ -2045,6 +2062,18 @@ msgstr "Sono stati trovati più gruppi con l'indirizzo email specificato: {0}" msgid "Conflicting group IDs used: given {0} but found {1}" msgstr "Conflitto ID utilizzati per il gruppo: dato {0} ma trovato {1}" +#: Library/Backend/HubiC/Strings.cs:21 +msgid "" +"This backend can read and write data to HubiC. Supported format is " +"\"hubic://container/folder\"." +msgstr "" +"Questo backend può leggere e scrivere dati su HubiC. Il formato supportato è" +" \"hubic://container/folder\"." + +#: Library/Backend/HubiC/Strings.cs:22 +msgid "HubiC" +msgstr "HubiC" + #: Library/Backend/AzureBlob/Strings.cs:4 msgid "All files will be written to the container specified" msgstr "Tutti i file saranno scritti nel contenitore specificato" @@ -2123,6 +2152,8 @@ msgid "" "The authentication method describes which way to use to connect to the " "network - either via API key or via an access grant." msgstr "" +"Il metodo di autenticazione descrive quale modo utilizzare per connettersi " +"alla rete - tramite chiave API o tramite una concessione di accesso." #: Library/Backend/Tardigrade/Strings.cs:17 msgid "The satellite" @@ -2148,6 +2179,9 @@ msgid "" "Head over to the dashboard of your satellite to create one if you do not " "already have an API key." msgstr "" +"La chiave API consente l'accesso a un progetto specifico sul satellite " +"scelto. Vai al pannello di controllo del tuo satellite per crearne uno se " +"non disponi già di una chiave API." #: Library/Backend/Tardigrade/Strings.cs:21 msgid "The encryption passphrase" @@ -2174,6 +2208,9 @@ msgid "" "An access grant contains all information in one encrypted string. You may " "use it instead of a satellite, API key and secret." msgstr "" +"Una concessione di accesso contiene tutte le informazioni in una stringa " +"crittografata. È possibile utilizzarla al posto di un satellite, chiave API " +"e segreto." #: Library/Backend/Tardigrade/Strings.cs:25 msgid "The bucket" @@ -2886,13 +2923,13 @@ msgid "" "when encountered." msgstr "" "Se un backup è interrotto ci saranno probabilmente file parziali presenti " -"sul backend. Usa questo flag, Duplicati rimuoverà automaticamente questi " +"sul backend. Usando questo flag, Duplicati rimuoverà automaticamente questi " "file quando saranno rilevati." #: Library/Main/Strings.cs:37 msgid "A flag indicating that Duplicati should remove unused files" msgstr "" -"Un flag che indica che Duplicati dovrebbero rimuovere i file inutilizzati" +"Un flag che indica che Duplicati dovrebbe rimuovere i file inutilizzati" #: Library/Main/Strings.cs:38 msgid "" @@ -2997,9 +3034,9 @@ msgid "" "If an upload or download fails, Duplicati will retry a number of times " "before failing. Use this to handle unstable network connections better." msgstr "" -"Se l'operazione di caricare o scaricare non riesce, Duplicati ritenterà per " -"un certo numero di volte prima di fallire. Usa questo per gestire meglio le " -"connessioni di rete instabili." +"Se l'operazione di caricare o scaricare fallisce, Duplicati riproverà più " +"volte prima di fallire. Usalo per gestire meglio le connessioni di rete " +"instabili." #: Library/Main/Strings.cs:53 msgid "Number of times to retry a failed transmission" @@ -3261,8 +3298,8 @@ msgstr "" "se non è consentita o supportata, in caso di errore non sarà prodotta " "nessuna notifica (si noti che il sistema operativo può ancora registrare gli" " avvisi di sistema). Impostandola su \"On\" Duplicati tenterà di creare " -"un'istantanea ma se fallisce, mostrerà un messaggio di avviso nel registro." -"  Impostandola su \"Required\", Duplicati interromperà il backup se la " +"un'istantanea ma se fallisce, mostrerà un messaggio di avviso nel registro. " +" Impostandola su \"Required\", Duplicati interromperà il backup se la " "creazione dell'istantanea fallisce. Su Windows questa funzione utilizza il " "Volume Shadow Copy Services (VSS) e richiede privilegi amministrativi. Su " "Linux questa funzione utilizza Logical Volume Management (LVM) e richiede i " @@ -4514,7 +4551,7 @@ msgstr "La passphrase non può essere modificata per un backup esistente" #: Library/Main/Strings.cs:282 #, csharp-format msgid "Failed to create a snapshot: {0}" -msgstr "Creare dell'istantanea fallita: {0}" +msgstr "Impossibile creare un'istantanea: {0}" #: Library/Main/BackendManager.cs:589 #, csharp-format @@ -4997,8 +5034,8 @@ msgid "" msgstr "" "Puoi specificare uno di questi \"{0}\", \"{1}\", \"{2}\", \"{3}\". Puoi " "fornire più opzioni separandole con una virgola, es. \"{0},{1}\". Il valore " -"speciale \"{4}\" è una scorciatoia per \"{0},{1},{2},{3}\" e avvierà tutte " -"le operazioni di backup per inviare una email." +"speciale \"{4}\" è una scorciatoia per \"{0},{1},{2},{3}\" e invierà una " +"email per tutte le operazioni di backup." #: Library/Modules/Builtin/Strings.cs:103 #: Library/Modules/Builtin/Strings.cs:135 @@ -5133,7 +5170,7 @@ msgid "" "You can supply multiple options with a comma separator, e.g. \"{0},{1}\". The special value \"{4}\" is a shorthand for \"{0},{1},{2},{3}\" and will cause all backup operations to send a message." msgstr "" "Puoi specificare uno di \"{0}\", \"{1}\", \"{2}\", \"{3}\".\n" -"Puoi fornire più opzioni con una virgola come separatore, es. \"{0},{1}\". Il valore speciale \"{4}\" è una scorciatoia per \"{0},{1},{2},{3}\" e avvierà tutte le operazioni di backup per inviare un messaggio." +"Puoi fornire più opzioni con una virgola come separatore, es. \"{0},{1}\". Il valore speciale \"{4}\" è una scorciatoia per \"{0},{1},{2},{3}\" e invierà una messaggio per tutte le operazioni di backup." #: Library/Modules/Builtin/Strings.cs:138 #: Library/Modules/Builtin/Strings.cs:168 diff --git a/Localizations/duplicati/localization-ja_JP.mo b/Localizations/duplicati/localization-ja_JP.mo index 23fe64cde..2f8ffab1a 100644 Binary files a/Localizations/duplicati/localization-ja_JP.mo and b/Localizations/duplicati/localization-ja_JP.mo differ diff --git a/Localizations/duplicati/localization-ja_JP.po b/Localizations/duplicati/localization-ja_JP.po index 971dc388f..cab956940 100644 --- a/Localizations/duplicati/localization-ja_JP.po +++ b/Localizations/duplicati/localization-ja_JP.po @@ -6,6 +6,8 @@ # Translators: # AlbireoGT, 2017 # yu hi , 2019 +# あわしろいくや , 2020 +# Suguru Hirahara, 2024 # #, fuzzy msgid "" @@ -14,8 +16,8 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-21 17:27+0200\n" "PO-Revision-Date: 2016-10-04 18:53+0000\n" -"Last-Translator: yu hi , 2019\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/duplicati/teams/67655/ja_JP/)\n" +"Last-Translator: Suguru Hirahara, 2024\n" +"Language-Team: Japanese (Japan) (https://app.transifex.com/duplicati/teams/67655/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,7 +26,7 @@ msgstr "" #: Server/Strings.cs:7 msgid "Another instance is running, and was notified" -msgstr "" +msgstr "他のインスタンスが存在しています。通知しました" #: Server/Strings.cs:8 #, csharp-format @@ -32,21 +34,25 @@ msgid "" "Failed to create, open or upgrade the database.\n" "Error message: {0}" msgstr "" +"データベースを作成、アップグレード、または開けませんでした。\n" +"エラーメッセージ:{0}" #: Server/Strings.cs:10 msgid "Displays this help" -msgstr "" +msgstr "このヘルプを表示" #: Server/Strings.cs:11 msgid "" "Supported commandline arguments:\n" "\n" msgstr "" +"サポートするコマンドラインの引数:\n" +"\n" #: Server/Strings.cs:14 #, csharp-format msgid "--{0}: {1}" -msgstr "" +msgstr "--{0}: {1}" #: Server/Strings.cs:15 CommandLine/Strings.cs:21 #, csharp-format @@ -65,7 +71,7 @@ msgstr "" #: Server/Strings.cs:16 CommandLine/Strings.cs:22 msgid "Path to a file with parameters" -msgstr "" +msgstr "パラメーターのファイルへのパス" #: Server/Strings.cs:17 CommandLine/Strings.cs:19 #, csharp-format @@ -75,30 +81,32 @@ msgid "" "specify filters inside the parameter file. Each filter must be prefixed with" " either a + or a -, and multiple filters must be joined with {3}" msgstr "" +"パラメーターのファイルにフィルターが指定されている場合、フィルターをコマンドラインで指定することはできません。--{0}、--{1}、または--{2}の特殊オプションを使用すると、パラメーターのファイルでフィルターを設定できます。各フィルターの先頭には+または-" +"が付いていなければならず、複数のフィルターがある場合は{3}で結合する必要があります。" #: Server/Strings.cs:18 CommandLine/Strings.cs:18 #, csharp-format msgid "Unable to read the parameters file \"{0}\", reason: {1}" -msgstr "" +msgstr "パラメーターのファイル \"{0}\" を読み込めません。理由:{1}" #: Server/Strings.cs:20 msgid "Outputs log information to the file given" -msgstr "" +msgstr "指定されたファイルにログの情報を出力" #: Server/Strings.cs:21 msgid "Determines the amount of information written in the log file" -msgstr "" +msgstr "ログファイルに記入される情報量を決定" #: Server/Strings.cs:22 msgid "" "Activates portable mode where the database is placed below the program " "executable" -msgstr "" +msgstr "ポータブルモードを有効にする(データベースがプログラムの実行ファイル以下に保存されます)" #: Server/Strings.cs:23 #, csharp-format msgid "A serious error occurred in Duplicati: {0}" -msgstr "" +msgstr "Duplicatiで深刻なエラーが発生しました: {0}" #: Server/Strings.cs:24 #, csharp-format @@ -106,37 +114,40 @@ msgid "" "Unable to start up, perhaps another process is already running?\n" "Error message: {0}" msgstr "" +"開始できませんでした。他のプロセスが既に起動している可能性があります。\n" +"エラーメッセージ:{0}" #: Server/Strings.cs:26 msgid "Disables database encryption" -msgstr "" +msgstr "データベースの暗号化を無効にする" #: Server/Strings.cs:27 #, csharp-format msgid "Unsupported version of SQLite detected ({0}), must be {1} or higher" -msgstr "" +msgstr "サポートされていないSQLiteのバージョンが検知されました({0})。{1}以上のバージョンを使用してください" #: Server/Strings.cs:28 msgid "" "The path to the folder where the static files for the webserver is present. " "The folder must be located beneath the installation folder" msgstr "" +"ウェブサーバーの静的なファイルが保存されているフォルダーのパス。フォルダーは、プログラムがインストールされているフォルダーの内側に設定してください" #: Server/Strings.cs:29 msgid "" "The port the webserver listens on. Multiple values may be supplied with a " "comma in between." -msgstr "" +msgstr "ウェブサーバーがリクエストを受け付けるポート番号。複数の値をコンマで区切って指定できます。" #: Server/Strings.cs:30 msgid "" "The certificate and key file in PKCS #12 format the webserver use for SSL. " "Only RSA/DSA keys are supported." -msgstr "" +msgstr "ウェブサーバーがSSL通信に使用するPKCS #12形式の証明書と鍵のファイル。RSAまたはDSAの鍵のみをサポートします。" #: Server/Strings.cs:31 msgid "The password for decryption of certificate PKCS #12 file." -msgstr "" +msgstr "PKCS #12 ファイルの証明書を復号するためのパスワード" #: Server/Strings.cs:32 msgid "" @@ -151,13 +162,14 @@ msgid "" "do not need to set it on each run. Setting an empty value disables the " "password." msgstr "" +"ウェブサーバーにアクセスする際に必要となるパスワード。このオプションは保存されるため毎回入力する必要はありません。値を入力しない場合、パスワードは無効となります。" #: Server/Strings.cs:34 msgid "" "The hostnames that are accepted, separated with semicolons. If any of the " "hostnames are \"*\", all hostnames are allowed and the hostname checking is " "disabled." -msgstr "" +msgstr "許可するホスト名。セミコロンで分けて入力。ホスト名に「*」を設定した場合、全てのホスト名が許可され、ホスト名の確認は行いません。" #: Server/Strings.cs:35 msgid "Enables the ping-pong responder" @@ -172,15 +184,15 @@ msgstr "" #: Server/Strings.cs:37 Library/Main/Strings.cs:214 msgid "Clean up old log data" -msgstr "" +msgstr "古いログデータを消去" #: Server/Strings.cs:38 Library/Main/Strings.cs:215 msgid "Set the time after which log data will be purged from the database." -msgstr "" +msgstr "データベースからログデータを削除するまでの時間を設定できます。" #: Server/Strings.cs:39 msgid "Sets the folder where settings are stored" -msgstr "" +msgstr "設定を保存するフォルダーを設定" #: Server/Strings.cs:40 #, csharp-format @@ -189,10 +201,12 @@ msgid "" " to choose where the settings are stored. This option can also be set with " "the environment variable {0}." msgstr "" +"Duplicatiは全ての設定に関してデータベースを保存する必要があります。このオプションで、設定を保存する場所を指定できます。このオプションは環境変数" +" {0} でも設定できます。" #: Server/Strings.cs:41 msgid "Sets the database encryption key" -msgstr "" +msgstr "データベースの暗号鍵を設定" #: Server/Strings.cs:42 #, csharp-format @@ -201,10 +215,11 @@ msgid "" "database. This option can also be set with the environment variable {0}. Use" " the option --{1} to disable the database scrambling." msgstr "" +"このオプションは、ローカルの設定のデータベースを暗号化するための鍵を設定します。このオプションは環境変数の{0}でも設定できます。オプションの--{1}でデータベースの暗号化を無効にできます。" #: Server/Strings.cs:43 Library/Main/Strings.cs:74 msgid "Temporary storage folder" -msgstr "" +msgstr "一時的な保存フォルダー" #: Server/Strings.cs:44 Library/Main/Strings.cs:75 msgid "" @@ -212,6 +227,7 @@ msgid "" "storage. By default the system default temporary folder is used. Note that " "also SQLite will put temporary files in this temporary folder." msgstr "" +"このオプションで、一時的な保存領域として使うフォルダーを指定できます。既定ではシステムの一時フォルダーを使用します。SQLiteも一時ファイルをここで設定したフォルダーに保存します。" #: Server/Strings.cs:47 #, csharp-format @@ -223,33 +239,33 @@ msgstr "" #: Server/Strings.cs:52 #, csharp-format msgid "Server has started and is listening on {0}, port {1}" -msgstr "" +msgstr "サーバーが起動しました。{0}のポート{1}でリクエストを待ち受けています" #: Server/Strings.cs:53 #, csharp-format msgid "" "Unable to create SSL certificate using provided parameters. Exception " "detail: {0}" -msgstr "" +msgstr "指定されたパラメーターでSSL証明書を作成できません。例外に関する詳細:{0}" #: Server/Strings.cs:54 #, csharp-format msgid "Unable to open a socket for listening, tried ports: {0}" -msgstr "" +msgstr "待ち受け用のソケットを設定できません。試したポート番号:{0}" #: Library/Encryption/Strings.cs:26 msgid "" "This module encrypts all files in the same way that AESCrypt does, using 256" " bit AES encryption." -msgstr "" +msgstr "このモジュールは、256ビットのAES暗号化を行い、AESCryptと同じ方法で全てのファイルを暗号化します。" #: Library/Encryption/Strings.cs:27 msgid "AES-256 encryption, built in" -msgstr "" +msgstr "AES-256による暗号化(内蔵)" #: Library/Encryption/Strings.cs:28 msgid "Empty passphrase not allowed" -msgstr "" +msgstr "パスフレーズを入力してください" #: Library/Encryption/Strings.cs:29 msgid "" @@ -257,15 +273,16 @@ msgid "" "Valid values are 0 (uses default), or from 1 (no multithreading) to 4 (max. " "multithreading)" msgstr "" +"このオプションで、AESによる暗号化で許可するスレッドの水準を設定できます。数値には0(既定値)、または、1(マルチスレッド化を行わない)から4(マルチスレッド化を最大限に行う)までの値を指定できます。" #: Library/Encryption/Strings.cs:30 msgid "Set thread level utilized for crypting (0-4)" -msgstr "" +msgstr "暗号化に使用するスレッドの優先度(0〜4)を設定" #: Library/Encryption/Strings.cs:34 #, csharp-format msgid "Failed to decrypt data (invalid passphrase?): {0}" -msgstr "" +msgstr "データを復号できませんでした(パスフレーズが正しくない可能性があります):{0}" #: Library/Encryption/Strings.cs:38 msgid "" @@ -276,119 +293,132 @@ msgid "" "program is available via the PATH environment variable. It is possible to " "supply the path to GPG using the --gpg-program-path switch." msgstr "" +"GPG暗号化モジュールは、GNU Privacy " +"Guardプログラムを使ってファイルの暗号化と復号を行います。これを使用するにはgpgの実行ファイルがシステムで利用可能になっている必要があります。Windowsの場合は、Program" +" " +"Files内の既定のフォルダーにインストールされていること、また、LinuxとmacOSの場合は、環境変数のPATHで利用できるようになっているという前提で進めます。GPGのパスは" +" --gpg-program-path のスイッチで設定できます。" #: Library/Encryption/Strings.cs:39 msgid "GNU Privacy Guard, external" -msgstr "" +msgstr "GNU Privacy Guard(外部)" #: Library/Encryption/Strings.cs:40 msgid "" "Use this switch to specify any extra options to GPG. You cannot specify the " "--passphrase-fd option here. The --decrypt option is always specified." msgstr "" +"このスイッチで追加のオプションをGPGに指定できます。--passphrase-fd オプションは指定できません。--decrypt " +"オプションは常に指定されます。" #: Library/Encryption/Strings.cs:41 msgid "Extra GPG commandline options for decryption" -msgstr "" +msgstr "復号に使用するGPG用の追加のコマンドラインオプション" #: Library/Encryption/Strings.cs:42 msgid "" "The GPG encryption/decryption will use the --armor option for GPG to protect" " the files with armor. Specify this switch to remove the --armor option." msgstr "" +"GPGによる暗号化と復号を行う際には、--armor オプションでファイルを保護します。このスイッチで--armor オプションを外すことができます。" #: Library/Encryption/Strings.cs:43 msgid "Don't use GPG Armor" -msgstr "" +msgstr "GPG Armorを使用しない" #: Library/Encryption/Strings.cs:44 msgid "" "Use this switch to specify any extra options to GPG. You cannot specify the " "--passphrase-fd option here. The --encrypt option is always specified." msgstr "" +"このスイッチで追加のオプションをGPGに指定できます。--passphrase-fd オプションは指定できません。--encrypt " +"オプションは常に指定されます。" #: Library/Encryption/Strings.cs:45 msgid "Extra GPG commandline options for encryption" -msgstr "" +msgstr "暗号化に使用するGPG用の追加のコマンドラインオプション" #: Library/Encryption/Strings.cs:46 #, csharp-format msgid "Failed to execute GPG with \"{0} {1}\": {2}" -msgstr "" +msgstr "「{0} {1}」でGPGを実行できませんでした:{2}" #: Library/Encryption/Strings.cs:47 msgid "" "The path to the GNU Privacy Guard program. If not supplied, Duplicati will " "assume that the program \"gpg\" is available in the system path." msgstr "" +"GNU Privacy " +"Guardプログラムのパス。指定されていない場合、Duplicatiは「gpg」プログラムがシステムのパスで利用できるとみなします。" #: Library/Encryption/Strings.cs:48 msgid "The path to GnuPG" -msgstr "" +msgstr "GnuPGへのパス" #: Library/Encryption/Strings.cs:49 #, csharp-format msgid "" "This option has non-standard handling, please use the --{0} option instead." -msgstr "" +msgstr "このオプションは非標準の処理を行います。オプション --{0} を代わりに使用してください。" #: Library/Encryption/Strings.cs:50 msgid "" "Use this option to supply the --armor option to GPG. The files will be " "larger but can be sent as pure text files." msgstr "" +"このオプションでGPGに--armorオプションを渡します。ファイルのサイズは大きくなりますが、テキストファイルとして送信できるようになります。" #: Library/Encryption/Strings.cs:51 msgid "Use GPG Armor" -msgstr "" +msgstr "GPG Armorを使用" #: Library/Encryption/Strings.cs:52 msgid "Overrides the GPG command supplied for decryption" -msgstr "" +msgstr "復号に使用するGPGのコマンドを上書き" #: Library/Encryption/Strings.cs:53 msgid "The GPG decryption command" -msgstr "" +msgstr "GPGの復号用のコマンド" #: Library/Encryption/Strings.cs:54 #, csharp-format msgid "" "Overrides the default GPG encryption command \"{0}\", normal usage is to " "request asymetric encryption with the setting {1}" -msgstr "" +msgstr "既定のGPG暗号化のコマンド「{0}」を上書きします。通常は、{1}の設定で非対称暗号化を要求する際に使用されます。" #: Library/Encryption/Strings.cs:55 msgid "The GPG encryption command" -msgstr "" +msgstr "GPGの暗号化のコマンド" #: Library/Encryption/Strings.cs:59 #, csharp-format msgid "Decryption failed: {0}" -msgstr "" +msgstr "復号化できませんでした:{0}" #: Library/Encryption/Strings.cs:60 msgid "Failure while invoking GnuPG, program won't flush output" -msgstr "" +msgstr "GnuPGを実行できませんでした。出力は行われません" #: Library/Encryption/Strings.cs:61 msgid "Failure while invoking GnuPG, program won't terminate" -msgstr "" +msgstr "GnuPGを実行できませんでした。プログラムは終了しません" #: Library/Interface/Strings.cs:4 msgid "aliases" -msgstr "" +msgstr "エイリアス" #: Library/Interface/Strings.cs:5 msgid "default value" -msgstr "" +msgstr "既定値" #: Library/Interface/Strings.cs:6 msgid "[DEPRECATED]" -msgstr "" +msgstr "[非推奨]" #: Library/Interface/Strings.cs:7 msgid "values" -msgstr "" +msgstr "値" #: Library/Interface/Strings.cs:10 msgid "Boolean" @@ -396,15 +426,15 @@ msgstr "" #: Library/Interface/Strings.cs:11 msgid "Enumeration" -msgstr "" +msgstr "列挙" #: Library/Interface/Strings.cs:12 msgid "Flags" -msgstr "" +msgstr "フラグ" #: Library/Interface/Strings.cs:13 msgid "Integer" -msgstr "" +msgstr "整数" #: Library/Interface/Strings.cs:14 msgid "Path" @@ -412,11 +442,11 @@ msgstr "パス" #: Library/Interface/Strings.cs:15 msgid "Size" -msgstr "" +msgstr "サイズ" #: Library/Interface/Strings.cs:16 msgid "String" -msgstr "" +msgstr "文字列" #: Library/Interface/Strings.cs:17 msgid "Timespan" @@ -424,25 +454,25 @@ msgstr "" #: Library/Interface/Strings.cs:18 msgid "Unknown" -msgstr "" +msgstr "不明" #: Library/Interface/Strings.cs:21 msgid "The folder cannot be created because it already exists" -msgstr "" +msgstr "既に存在するフォルダーは作成できません" #: Library/Interface/Strings.cs:22 msgid "The requested folder does not exist" -msgstr "" +msgstr "要求されたフォルダーは存在しません" #: Library/Interface/Strings.cs:23 msgid "Cancelled" -msgstr "" +msgstr "キャンセル済" #: Library/Interface/CustomExceptions.cs:82 #: Library/Interface/CustomExceptions.cs:90 #: Library/Backend/Jottacloud/Jottacloud.cs:301 msgid "The requested file does not exist" -msgstr "" +msgstr "要求されたファイルは存在しません" #: Library/Snapshots/Strings.cs:4 #, csharp-format @@ -451,88 +481,91 @@ msgid "" "Error message: {0}\n" "Command: {1} {2}" msgstr "" +"外部コマンドを開始できませんでした。\n" +"エラーメッセージ:{0}\n" +"コマンド:{1} {2}" #: Library/Snapshots/Strings.cs:7 #, csharp-format msgid "" "The external command failed to complete within the set time limit: {0} {1}" -msgstr "" +msgstr "外部コマンドを制限時間内に完了できませんでした:{0} {1}" #: Library/Snapshots/Strings.cs:8 #, csharp-format msgid "Unable to match local path {0} with any snapshot path: {1}" -msgstr "" +msgstr "ローカルのパス {0} とスナップショットのパス {1} を合致できません" #: Library/Snapshots/Strings.cs:9 #, csharp-format msgid "" "Script returned successfully, but the temporary folder {0} does not exist: " "{1}" -msgstr "" +msgstr "スクリプトを実行しましたが、一時フォルダー {0} がありません:{1}" #: Library/Snapshots/Strings.cs:10 #, csharp-format msgid "" "Script returned successfully, but the temporary folder {0} still exist: {1}" -msgstr "" +msgstr "スクリプトを実行しましたが、一時フォルダー {0} が残っています:{1}" #: Library/Snapshots/Strings.cs:11 #, csharp-format msgid "The script returned exit code {0}, but {1} was expected: {2}" -msgstr "" +msgstr "スクリプトは終了コード {0} を返しましたが、期待されていたコードは {1} です:{2}" #: Library/Snapshots/Strings.cs:12 #, csharp-format msgid "" "Script returned successfully, but the output was missing the {0} parameter: " "{1}" -msgstr "" +msgstr "スクリプトを実行しましたが、出力された結果には {0} のパラメーターが欠けています:{1}" #: Library/Snapshots/Strings.cs:15 msgid "Unable to determine full file path for USN entry" -msgstr "" +msgstr "USNエントリーの完全なファイルパスを決定できません" #: Library/Snapshots/Strings.cs:16 msgid "USN journal entries were purged since last scan" -msgstr "" +msgstr "USNジャーナルのエントリーが直近のスキャン後に削除されました" #: Library/Snapshots/Strings.cs:17 msgid "Unexpected empty response while enumerating" -msgstr "" +msgstr "列挙中に予期しない空の応答がありました" #: Library/Snapshots/Strings.cs:18 msgid "USN is not supported on Linux" -msgstr "" +msgstr "USNはLinuxではサポートされていません" #: Library/Snapshots/Strings.cs:19 msgid "" "The number of files returned by USN was zero. This is likely an error. To " "remedy this, USN has been disabled." -msgstr "" +msgstr "USNが返したファイルの数は0です。これはおそらくエラーです。それを修正するため、USNを無効としました。" #: Library/Snapshots/Strings.cs:20 msgid "Unexpected path format encountered" -msgstr "" +msgstr "予期しないパスのフォーマットです" #: Library/Snapshots/Strings.cs:21 msgid "Unsupported USN journal version." -msgstr "" +msgstr "サポートしていないUSNジャーナルのバージョンです。" #: Library/Snapshots/Strings.cs:22 msgid "Previous backup did not record USN journal info" -msgstr "" +msgstr "以前のバックアップにはUSNジャーナルの情報が記録されていません" #: Library/Snapshots/Strings.cs:23 msgid "USN journal ID changed" -msgstr "" +msgstr "USNのジャーナルIDが変更されました" #: Library/Snapshots/Strings.cs:24 msgid "Next USN is zero" -msgstr "" +msgstr "次のUSNはゼロです" #: Library/Snapshots/Strings.cs:25 msgid "Backup configuration changed" -msgstr "" +msgstr "バックアップの設定を変更しました" #: Library/Snapshots/Strings.cs:28 msgid "Calling process does not have the backup privilege" @@ -543,15 +576,17 @@ msgid "" "This backend can read and write data to Swift (OpenStack Object Storage). " "Supported format is \"openstack://container/folder\"." msgstr "" +"このバックエンドでSwift(OpenStack " +"オブジェクトストレージ)との間でデータの読み書きを実行できます。サポートされている形式は、「openstack://コンテナー/フォルダー」となります。" #: Library/Backend/OpenStack/Strings.cs:24 msgid "OpenStack Simple Storage" -msgstr "" +msgstr "OpenStack シンプルストレージ" #: Library/Backend/OpenStack/Strings.cs:25 #, csharp-format msgid "Missing required option: {0}" -msgstr "" +msgstr "必要なオプションが指定されていません:{0}" #: Library/Backend/OpenStack/Strings.cs:26 #, csharp-format @@ -560,6 +595,7 @@ msgid "" " environment variable \"AUTH_PASSWORD\". If the password is supplied, --{0} " "must also be set" msgstr "" +"サーバーに接続する際に使用するパスワード。環境変数「AUTH_PASSWORD」でも指定できます。パスワードを指定する際には、--{0}もまた設定する必要があります" #: Library/Backend/OpenStack/Strings.cs:27 Library/Backend/FTP/Strings.cs:13 #: Library/Backend/CloudFiles/Strings.cs:7 Library/Backend/S3/Strings.cs:10 @@ -570,15 +606,15 @@ msgstr "" #: Library/Backend/Jottacloud/Strings.cs:14 Library/Backend/Mega/Strings.cs:6 #: Library/Backend/SharePoint/Strings.cs:9 Library/Backend/WEBDAV/Strings.cs:8 msgid "Supplies the password used to connect to the server" -msgstr "" +msgstr "サーバーの接続に使用するパスワード" #: Library/Backend/OpenStack/Strings.cs:28 msgid "The domain name of the user used to connect to the server." -msgstr "" +msgstr "サーバーの接続に使用するユーザーのドメイン名" #: Library/Backend/OpenStack/Strings.cs:29 msgid "Supplies the domain used to connect to the server" -msgstr "" +msgstr "サーバーの接続に使用するドメイン" #: Library/Backend/OpenStack/Strings.cs:30 Library/Backend/FTP/Strings.cs:14 #: Library/Backend/CloudFiles/Strings.cs:8 Library/Backend/S3/Strings.cs:11 @@ -592,7 +628,7 @@ msgstr "" msgid "" "The username used to connect to the server. This may also be supplied as the" " environment variable \"AUTH_USERNAME\"." -msgstr "" +msgstr "サーバーの接続に使用するユーザー名。環境変数「AUTH_USERNAME」でも指定できます。" #: Library/Backend/OpenStack/Strings.cs:31 Library/Backend/FTP/Strings.cs:15 #: Library/Backend/CloudFiles/Strings.cs:9 Library/Backend/S3/Strings.cs:12 @@ -604,7 +640,7 @@ msgstr "" #: Library/Backend/SharePoint/Strings.cs:11 #: Library/Backend/WEBDAV/Strings.cs:10 msgid "Supplies the username used to connect to the server" -msgstr "" +msgstr "サーバーの接続に使用するユーザー名" #: Library/Backend/OpenStack/Strings.cs:32 msgid "" @@ -612,20 +648,21 @@ msgid "" "be supplied when authenticating with a password, but is not required when " "using an API key." msgstr "" +"テナント名は一般に、料金の支払いを行うユーザーのアカウント名です。このオプションは、パスワードで認証する際には必須となりますが、APIキーで認証する際には必要ありません。" #: Library/Backend/OpenStack/Strings.cs:33 msgid "Supplies the Tenant Name used to connect to the server" -msgstr "" +msgstr "サーバーとの接続に使用するテナント名を指定" #: Library/Backend/OpenStack/Strings.cs:34 msgid "" "The API key can be used to connect without supplying a password and tenant " "ID with some providers." -msgstr "" +msgstr "APIキーを入力すると、パスワードとテナントIDを指定する必要なく、サービス提供者に接続することができます。" #: Library/Backend/OpenStack/Strings.cs:35 msgid "Supplies the API key used to connect to the server" -msgstr "" +msgstr "サーバーの接続に使用するAPIキー" #: Library/Backend/OpenStack/Strings.cs:36 #, csharp-format @@ -633,18 +670,19 @@ msgid "" "The authentication URL is used to authenticate the user and find the storage" " service. The URL commonly ends with \"/v2.0\". Known providers are: {0}{1}" msgstr "" +"認証用URLでユーザーの認証と、ストレージサービスの検知を行えます。URLは通常「/v2.0」で終わります。既知のサービス提供者は{0}{1}です。" #: Library/Backend/OpenStack/Strings.cs:37 msgid "Supplies the authentication URL" -msgstr "" +msgstr "認証用URLを指定" #: Library/Backend/OpenStack/Strings.cs:38 msgid "The keystone API version to use, valid values are 'v2' and 'v3'." -msgstr "" +msgstr "使用するKeystone APIのバージョン。正常値は「v2」と「v3」です。" #: Library/Backend/OpenStack/Strings.cs:39 msgid "The keystone API version to use" -msgstr "" +msgstr "使用するKeystone APIのバージョン" #: Library/Backend/OpenStack/Strings.cs:40 msgid "" @@ -652,10 +690,11 @@ msgid "" "where the container should be placed. Consult your provider for a list of " "valid regions, or leave empty for the default region." msgstr "" +"このオプションはコンテナーの作成時に、コンテナーを作成するリージョンの指定にのみ使用されます。リージョンの一覧についてはサービス提供者に確認してください。指定しない場合は既定のリージョンが設定されます。" #: Library/Backend/OpenStack/Strings.cs:41 msgid "Supplies the region used for creating a container" -msgstr "" +msgstr "コンテナーの作成に使用するリージョンを指定" #: Library/Backend/FTP/Strings.cs:7 msgid "" @@ -663,16 +702,19 @@ msgid "" "formats are \"ftp://hostname/folder\" or " "\"ftp://username:password@hostname/folder\"" msgstr "" +"このバックエンドでは、FTPをベースとしたバックエンドとの間でデータの読み書きを実行できます。サポートされている形式は、「ftp://ホスト名/フォルダー」または「ftp://ユーザー名:パスワード@ホスト名/フォルダー」となります。" #: Library/Backend/FTP/Strings.cs:8 msgid "" "If this flag is set, the FTP connection is made in active mode. Even if the " "\"ftp-passive\" flag is also set, the connection will be made in active mode" msgstr "" +"このフラグを設定すると、FTP接続はアクティブモードで行われます。「ftp-" +"passive」フラグが同時に設定されている場合でも、接続はアクティブモードで行われます" #: Library/Backend/FTP/Strings.cs:9 Library/Backend/FTP/Strings.cs:11 msgid "Toggles the FTP connections method" -msgstr "" +msgstr "FTP接続の方法を切り替える" #: Library/Backend/FTP/Strings.cs:10 msgid "" @@ -680,6 +722,8 @@ msgid "" " better with some firewalls. If the \"ftp-regular\" flag is also set, this " "flag is ignored" msgstr "" +"このフラグを設定すると、FTP接続はパッシブモードで行われます。一部のファイヤーウォールではそれにより動作が改善する場合があります。「ftp-" +"regular」フラグが同時に設定されている場合、このフラグは無視されます" #: Library/Backend/FTP/Strings.cs:12 Library/Backend/CloudFiles/Strings.cs:6 #: Library/Backend/S3/Strings.cs:9 @@ -692,17 +736,17 @@ msgstr "" msgid "" "The password used to connect to the server. This may also be supplied as the" " environment variable \"AUTH_PASSWORD\"." -msgstr "" +msgstr "サーバーの接続に使用するパスワード。環境変数「AUTH_PASSWORD」でも指定できます。" #: Library/Backend/FTP/Strings.cs:16 msgid "" "Use this flag to communicate using Secure Socket Layer (SSL) over ftp " "(ftps)." -msgstr "" +msgstr "このフラグで、FTP通信にSecure Socket Layer(SSL)を使用するよう設定できます(ftps)。" #: Library/Backend/FTP/Strings.cs:17 msgid "Instructs Duplicati to use an SSL (ftps) connection" -msgstr "" +msgstr "DuplicatiにSSL(ftps)接続を行うよう指示" #: Library/Backend/FTP/Strings.cs:18 msgid "FTP" @@ -712,7 +756,7 @@ msgstr "FTP" #: Library/Backend/TahoeLAFS/Strings.cs:8 #, csharp-format msgid "The folder {0} was not found, message: {1}" -msgstr "" +msgstr "フォルダー {0} は見つかりませんでした。メッセージ: {1}" #: Library/Backend/FTP/Strings.cs:20 #: Library/Backend/AlternativeFTP/Strings.cs:16 @@ -728,12 +772,12 @@ msgstr "" msgid "" "The file {0} was uploaded but the returned size was {1} and it was expected " "to be {2}" -msgstr "" +msgstr "ファイル {0} をアップロードしましたが、サイズ {1} は正しいサイズ {2} と等しくありません" #: Library/Backend/FTP/Strings.cs:22 #: Library/Backend/AlternativeFTP/Strings.cs:18 msgid "Disable upload verification" -msgstr "" +msgstr "アップロードの検証を無効にする" #: Library/Backend/FTP/Strings.cs:23 msgid "" @@ -741,12 +785,15 @@ msgid "" "verified. Use this option to disable this verification to make the upload " "faster but less reliable." msgstr "" +"ネットワークの不具合に対処するために、全てのアップロードに関して検証が試みられます。このオプションを使うと検証が無効になり、アップロードの速度を向上できますが、アップロードの信頼性は減少します。" #: Library/Backend/GoogleServices/Strings.cs:22 msgid "" "This backend can read and write data to Google Cloud Storage. Supported " "format is \"gcs://bucket/folder\"." msgstr "" +"このバックエンドでGoogle " +"クラウドストレージとの間でデータの読み書きを実行できます。サポートされている形式は、「gcs://バケット/フォルダー」となります。" #: Library/Backend/GoogleServices/Strings.cs:23 msgid "Google Cloud Storage" @@ -756,29 +803,29 @@ msgstr "Google Cloud Storage" #: Library/Backend/OAuthHelper/Strings.cs:6 #, csharp-format msgid "You need an AuthID, you can get it from: {0}" -msgstr "" +msgstr "認証IDが必要です。{0}で取得できます。" #: Library/Backend/GoogleServices/Strings.cs:25 #, csharp-format msgid "You must supply a project ID with --{0} for creating a bucket" -msgstr "" +msgstr "バケットの作成時には --{0} でプロジェクトのIDを指定してください" #: Library/Backend/GoogleServices/Strings.cs:26 #: Library/Backend/GoogleServices/Strings.cs:42 #: Library/Backend/Box/Strings.cs:23 Library/Backend/OneDrive/Strings.cs:6 -#: Library/Backend/Dropbox/Strings.cs:24 +#: Library/Backend/HubiC/Strings.cs:23 Library/Backend/Dropbox/Strings.cs:24 #: Library/Backend/OAuthHelper/Strings.cs:9 msgid "The authorization code" -msgstr "" +msgstr "認証コード" #: Library/Backend/GoogleServices/Strings.cs:27 #: Library/Backend/GoogleServices/Strings.cs:43 #: Library/Backend/Box/Strings.cs:24 Library/Backend/OneDrive/Strings.cs:7 -#: Library/Backend/Dropbox/Strings.cs:25 +#: Library/Backend/HubiC/Strings.cs:24 Library/Backend/Dropbox/Strings.cs:25 #: Library/Backend/OAuthHelper/Strings.cs:10 #, csharp-format msgid "The authorization token retrieved from {0}" -msgstr "" +msgstr "{0}で取得される認証コード" #: Library/Backend/GoogleServices/Strings.cs:29 #, csharp-format @@ -786,10 +833,13 @@ msgid "" "This option is only used when creating new buckets. Use this option to change what region the data is stored in. Charges vary with bucket location. Known bucket locations:\n" "{0}" msgstr "" +"このオプションは新しいバケットの作成時にのみ使用されます。このオプションで、データを保存するリージョンを変更できます。利用料金はバケットの場所に応じて変わります。\n" +"既知のバケットの場所:\n" +"{0}" #: Library/Backend/GoogleServices/Strings.cs:31 msgid "Specifies location option for creating a bucket" -msgstr "" +msgstr "バケットの作成場所のオプションを指定" #: Library/Backend/GoogleServices/Strings.cs:32 #, csharp-format @@ -797,14 +847,17 @@ msgid "" "This option is only used when creating new buckets. Use this option to change what storage type the bucket has. Charges and functionality vary with bucket storage class. Known storage classes:\n" "{0}" msgstr "" +"このオプションは新しいバケットの作成時にのみ使用されます。このオプションで、バケットの保存領域のタイプを変更できます。利用料金と機能はバケットの保存領域のクラスに応じて変わります。\n" +"既知の保存領域のクラス:\n" +"{0}" #: Library/Backend/GoogleServices/Strings.cs:34 msgid "Specifies storage class for creating a bucket" -msgstr "" +msgstr "バケットを作成する保存領域のクラスを指定" #: Library/Backend/GoogleServices/Strings.cs:35 msgid "Specifies project for creating a bucket" -msgstr "" +msgstr "バケットを作成するプロジェクトを指定" #: Library/Backend/GoogleServices/Strings.cs:36 msgid "" @@ -812,12 +865,15 @@ msgid "" "supply the project ID that the bucket is attached to. The project determines" " where usage charges are applied" msgstr "" +"このオプションは新しいバケットの作成時にのみ使用されます。このオプションで、バケットが存在するプロジェクトのIDを指定できます。利用料金の請求先はプロジェクトにより決定されます。" #: Library/Backend/GoogleServices/Strings.cs:41 msgid "" "This backend can read and write data to Google Drive. Supported format is " "\"googledrive://folder/subfolder\"." msgstr "" +"このバックエンドでGoogle " +"ドライブとの間でデータの読み書きを実行できます。サポートされている形式は、「googledrive://フォルダー/サブフォルダー」となります。" #: Library/Backend/GoogleServices/Strings.cs:44 msgid "Google Drive" @@ -826,17 +882,17 @@ msgstr "Google Drive" #: Library/Backend/GoogleServices/Strings.cs:45 #, csharp-format msgid "There is more than one item named \"{0}\" in the folder \"{1}\"" -msgstr "" +msgstr "フォルダー「{1}」内に「{0}」の名前のファイルが2つ以上存在しています" #: Library/Backend/GoogleServices/Strings.cs:46 msgid "Team drive ID" -msgstr "" +msgstr "チームのドライブID" #: Library/Backend/GoogleServices/Strings.cs:47 msgid "" "This option sets the team drive to use. Leaving it empty uses the personal " "drive" -msgstr "" +msgstr "このオプションで、使用するチームのドライブを指定できます。オプションを設定しない場合、個人用のドライブを使用します。" #: Library/Backend/CloudFiles/Strings.cs:4 #, csharp-format @@ -845,18 +901,19 @@ msgid "" "account resides, use this option to set an alternate authentication URL. " "This option overrides --{0}." msgstr "" +"CloudFilesはアカウントの所在地に応じて異なるサーバーを認証に使用しています。このオプションで、別の認証用URLを指定できます。このオプションは、--{0}を上書きします。" #: Library/Backend/CloudFiles/Strings.cs:5 msgid "Provide another authentication URL" -msgstr "" +msgstr "別の認証用URLを指定" #: Library/Backend/CloudFiles/Strings.cs:10 msgid "Supplies the API Access Key used to authenticate with CloudFiles." -msgstr "" +msgstr "CloudFilesとの認証用に使用するAPIアクセスキーを指定。" #: Library/Backend/CloudFiles/Strings.cs:11 msgid "Supplies the access key used to connect to the server" -msgstr "" +msgstr "サーバーとの接続に使用するアクセスキーを指定" #: Library/Backend/CloudFiles/Strings.cs:12 #, csharp-format @@ -865,85 +922,89 @@ msgid "" "this option if the account is a UK based account. Note that this is " "equivalent to setting --{0}={1}." msgstr "" +"Duplicatiは、指定されたログイン情報がアメリカ合衆国向けのアカウントのものであると想定します。イギリス向けのアカウントを使用している場合は、このオプションを使用してください。なおこれは「--{0}={1}」の設定と同等のものです。" #: Library/Backend/CloudFiles/Strings.cs:13 msgid "Use a UK account" -msgstr "" +msgstr "イギリスのアカウントを使用" #: Library/Backend/CloudFiles/Strings.cs:14 msgid "Supplies the username used to authenticate with CloudFiles." -msgstr "" +msgstr "CloudFilesの認証時に使用するユーザー名を指定。" #: Library/Backend/CloudFiles/Strings.cs:15 msgid "Supplies the username used to authenticate with CloudFiles" -msgstr "" +msgstr "CloudFilesの認証時に使用するユーザー名を指定" #: Library/Backend/CloudFiles/Strings.cs:16 msgid "" "Supports connections to the CloudFiles backend. Allowed formats is " "\"cloudfiles://container/folder\"." msgstr "" +"CloudFilesのバックエンドとの接続をサポートします。許可されている形式は、「cloudfiles://コンテナー/フォルダー」となります。" #: Library/Backend/CloudFiles/Strings.cs:17 msgid "Rackspace CloudFiles" -msgstr "" +msgstr "Rackspace CloudFiles" #: Library/Backend/CloudFiles/Strings.cs:18 msgid "MD5 Hash (ETag) verification failed" -msgstr "" +msgstr "MD5ハッシュ(ETag)認証を行えませんでした" #: Library/Backend/CloudFiles/Strings.cs:19 msgid "Failed to delete file" -msgstr "ファイル削除に失敗しました" +msgstr "ファイルを削除できませんでした" #: Library/Backend/CloudFiles/Strings.cs:20 #: Library/Backend/Jottacloud/Strings.cs:11 msgid "Failed to upload file" -msgstr "ファイルのアップロードに失敗しました" +msgstr "ファイルをアップロードできませんでした" #: Library/Backend/CloudFiles/Strings.cs:21 msgid "No CloudFiles API Access Key given" -msgstr "" +msgstr "CloudFiles APIのアクセスキーが指定されていません" #: Library/Backend/CloudFiles/Strings.cs:22 msgid "No CloudFiles userID given" -msgstr "" +msgstr "CloudFilesのユーザーIDが指定されていません" #: Library/Backend/CloudFiles/Strings.cs:23 msgid "Unexpected CloudFiles response, perhaps the API has changed?" -msgstr "" +msgstr "CloudFilesから予期しない応答がありました。APIが変更された可能性があります。" #: Library/Backend/S3/Strings.cs:4 msgid "" "The AWS \"Secret Access Key\" can be obtained after logging into your AWS " "account, this can also be supplied through the \"auth-password\" property" msgstr "" +"AWSの「秘密アクセスキー」はAWSのアカウントにログインしてから取得できます。「auth-password」のプロパティーでも指定できます。" #: Library/Backend/S3/Strings.cs:5 msgid "The AWS \"Secret Access Key\"" -msgstr "" +msgstr "AWSの「秘密アクセスキー」" #: Library/Backend/S3/Strings.cs:6 msgid "" "The AWS \"Access Key ID\" can be obtained after logging into your AWS " "account, this can also be supplied through the \"auth-username\" property" msgstr "" +"AWSの「アクセスキーID」はAWSのアカウントにログインしてから取得できます。「auth-username」のプロパティーでも指定できます。" #: Library/Backend/S3/Strings.cs:7 msgid "The AWS \"Access Key ID\"" -msgstr "" +msgstr "AWSの「アクセスキーID」" #: Library/Backend/S3/Strings.cs:8 msgid "S3 compatible" -msgstr "" +msgstr "S3互換" #: Library/Backend/S3/Strings.cs:13 msgid "No S3 secret key given" -msgstr "" +msgstr "S3の秘密鍵が指定されていません" #: Library/Backend/S3/Strings.cs:14 msgid "No S3 userID given" -msgstr "" +msgstr "S3のユーザーIDが指定されていません" #: Library/Backend/S3/Strings.cs:15 msgid "" @@ -951,16 +1012,18 @@ msgid "" "bucket is created on a European server. This flag forces the \"s3-use-new-" "style\" flag. Amazon charges slightly more for European buckets." msgstr "" +"このフラグは新しいバケットの作成時にのみ使用されます。このフラグを設定すると、ヨーロッパのサーバーにバケットを作成します。このフラグは「s3-use-" +"new-style」のフラグを強制的にて供します。Amazonは、ヨーロッパにあるバケットに対して、少し高い利用料金を請求します。" #: Library/Backend/S3/Strings.cs:16 msgid "Use a European server" -msgstr "" +msgstr "ヨーロッパのサーバーを使用" #: Library/Backend/S3/Strings.cs:17 msgid "" "Specify this argument to make the S3 backend use subdomains rather than the " "previous url prefix method. See the S3 documentation for more details." -msgstr "" +msgstr "この因数を指定すると、S3のバックエンドは、URLのプレフィックスを使用する方法ではなく、サブドメインを使用します。" #: Library/Backend/S3/Strings.cs:18 msgid "Use subdomain calling style" @@ -969,14 +1032,14 @@ msgstr "" #: Library/Backend/S3/Strings.cs:19 #, csharp-format msgid "Unable to determine the bucket name for host: {0}" -msgstr "" +msgstr "ホストのバケット名を決定できません:{0}" #: Library/Backend/S3/Strings.cs:20 msgid "" "This flag toggles the use of the special RRS header. Files stored using RRS " "are more likely to disappear than those stored normally, but also costs less" -" to store. See the full description here: http://aws.amazon.com/about-aws" -"/whats-new/2010/05/19/announcing-amazon-s3-reduced-redundancy-storage/" +" to store. See the full description here: http://aws.amazon.com/about-" +"aws/whats-new/2010/05/19/announcing-amazon-s3-reduced-redundancy-storage/" msgstr "" #: Library/Backend/S3/Strings.cs:21 @@ -986,23 +1049,24 @@ msgstr "" #: Library/Backend/S3/Strings.cs:22 #, csharp-format msgid "You are using a deprected url format, please change it to: {0}" -msgstr "" +msgstr "非推奨のURLの形式を使用しています。以下の形式に変更してください:{0}" #: Library/Backend/S3/Strings.cs:23 msgid "" "This backend can read and write data to an S3 compatible server. Allowed " "formats are: \"s3://bucketname/prefix\"" msgstr "" +"このバックエンドでS3互換サーバーとの間でデータの読み書きを実行できます。許可されている形式は、「s3://バケット名/プレフィックス」となります。" #: Library/Backend/S3/Strings.cs:24 #, csharp-format msgid "The options --{0} and --{1} are mutually exclusive" -msgstr "" +msgstr "オプション --{0}と--{1}は同時に使用できません" #: Library/Backend/S3/Strings.cs:25 Library/Backend/S3/Strings.cs:40 #, csharp-format msgid "Please use --{0}={1} instead" -msgstr "" +msgstr "--{0}={1}を代わりに使用してください" #: Library/Backend/S3/Strings.cs:26 #, csharp-format @@ -1010,10 +1074,13 @@ msgid "" "This option is only used when creating new buckets. Use this option to change what region the data is stored in. Amazon charges slightly more for non-US buckets. Known bucket locations:\n" "{0}" msgstr "" +"このオプションは新しいバケットの作成時にのみ使用されます。このオプションで、データを保存するリージョンを変更できます。Amazonは、米国国外にあるバケットに対して、少し高い利用料金を請求します。\n" +"バケットが存在する既知の場所:\n" +"{0}" #: Library/Backend/S3/Strings.cs:28 msgid "Specifies S3 location constraints" -msgstr "" +msgstr "S3のロケーションに関する制約を指定" #: Library/Backend/S3/Strings.cs:29 #, csharp-format @@ -1021,14 +1088,16 @@ msgid "" "Companies other than Amazon are now supporting the S3 API, meaning that this backend can read and write data to those providers as well. Use this option to set the hostname. Currently known providers are:\n" "{0}" msgstr "" +"現在、Amazon以外の企業もS3のAPIをサポートしています。このバックエンドで、それらの企業との間でもデータの読み書きを実行できます。このオプションでホスト名を設定してください。サービスを提供している既知の企業には以下のものがあります。\n" +"{0}" #: Library/Backend/S3/Strings.cs:31 msgid "Specifies an alternate S3 server name" -msgstr "" +msgstr "代替のS3サーバー名を指定" #: Library/Backend/S3/Strings.cs:32 msgid "Specifies the S3 client library to use" -msgstr "" +msgstr "使用するS3のクライアントライブラリーを指定" #: Library/Backend/S3/Strings.cs:33 msgid "" @@ -1042,27 +1111,29 @@ msgid "" "(https). Note that bucket names containing a period has problems with SSL " "connections." msgstr "" +"このフラグで、HTTP通信にSecure Socket " +"Layer(SSL)を使用するよう設定できます(https)。なおSSL接続では、バケット名にドット(.)がある場合、適切に接続を行うことができないため、ご注意ください。" #: Library/Backend/S3/Strings.cs:35 msgid "" "Set either to aws or minio . Then either the AWS SDK or Minio SDK will used " "to communicate with S3 services." -msgstr "" +msgstr "awsまたはminioを設定してください。設定後、AWS SDKまたはMinio SDKを使用してS3のサービスとの通信を行います。" #: Library/Backend/S3/Strings.cs:36 Library/Backend/WEBDAV/Strings.cs:20 #: Library/Backend/TahoeLAFS/Strings.cs:6 msgid "Instructs Duplicati to use an SSL (https) connection" -msgstr "" +msgstr "DuplicatiにSSL(https)接続を使用するよう指示" #: Library/Backend/S3/Strings.cs:38 msgid "" "Use this option to specify a storage class. If this option is not used, the " "server will choose a default storage class." -msgstr "" +msgstr "このオプションで保存領域のクラスを指定できます。オプションが使用されていない場合には、既定の保存領域のクラスが選択されます。" #: Library/Backend/S3/Strings.cs:39 msgid "Specify storage class" -msgstr "" +msgstr "保存領域のクラスを指定" #: Library/Backend/AlternativeFTP/Strings.cs:9 msgid "" @@ -1070,15 +1141,16 @@ msgid "" "alternative FTP client. Allowed formats are \"aftp://hostname/folder\" or " "\"aftp://username:password@hostname/folder\"" msgstr "" +"このバックエンドでは、代替のFTPクライアントを使用して、FTPをベースとしたバックエンドとの間でデータの読み書きを実行できます。サポートされている形式は、「aftp://ホスト名/フォルダー」または「aftp://ユーザー名:パスワード@ホスト名/フォルダー」となります。" #: Library/Backend/AlternativeFTP/Strings.cs:14 msgid "Alternative FTP" -msgstr "" +msgstr "代替FTP" #: Library/Backend/AlternativeFTP/Strings.cs:15 #, csharp-format msgid "The folder {0} was not found. Message: {1}" -msgstr "フォルダ「 {0} 」が見つかりません。メッセージ: {1}" +msgstr "フォルダー「 {0} 」が見つかりません。メッセージ:{1}" #: Library/Backend/AlternativeFTP/Strings.cs:19 msgid "" @@ -1086,34 +1158,35 @@ msgid "" "attempted to be verified. Use this option to disable this verification to " "make the upload faster but less reliable." msgstr "" +"ネットワークまたはサーバーの不具合に対処するために、全てのアップロードに関して検証が試みられます。このオプションを使うと検証が無効になり、アップロードの速度を向上できますが、アップロードの信頼性は減少します。" #: Library/Backend/AlternativeFTP/Strings.cs:20 msgid "" "If this flag is set, the FTP data connection type will be changed to the " "selected option." -msgstr "" +msgstr "このフラグを設定すると、FTPのデータ通信モードが、設定したオプションに変更されます。" #: Library/Backend/AlternativeFTP/Strings.cs:21 msgid "Configure the FTP data connection type" -msgstr "" +msgstr "FTPのデータ通信の種類を設定" #: Library/Backend/AlternativeFTP/Strings.cs:22 msgid "" "If this flag is set, the FTP encryption mode will be changed to the selected" " option." -msgstr "" +msgstr "このフラグを設定すると、FTPの暗号化モードが、設定したオプションに変更されます。" #: Library/Backend/AlternativeFTP/Strings.cs:23 msgid "Configure the FTP encryption mode" -msgstr "" +msgstr "FTPの暗号化モードを設定" #: Library/Backend/AlternativeFTP/Strings.cs:24 msgid "This flag controls the SSL policy to use when encryption is enabled." -msgstr "" +msgstr "このフラグは、暗号化が有効になっている場合に使用するSSLのポリシーを管理します。" #: Library/Backend/AlternativeFTP/Strings.cs:25 msgid "Configure the SSL policy to use when encryption is enabled" -msgstr "" +msgstr "暗号化が有効な場合に使用するSSLポリシーを設定" #: Library/Backend/AlternativeFTP/Strings.cs:26 msgid "" @@ -1121,83 +1194,84 @@ msgid "" "The required delay depends on network topology. If you experience errors " "related to the upload size not matching, try adding a few seconds delay." msgstr "" +"一部のFTPサーバーでは、ファイルの正確なサイズを報告するのにわずかな遅延が必要とされます。必要とされる遅延は、ネットワークのトポロジーに依存します。アップロードのサイズの不一致に関するエラーが報告される場合は、数秒の遅延を追加してみてください。" #: Library/Backend/AlternativeFTP/Strings.cs:27 msgid "Add a delay after uploading a file" -msgstr "" +msgstr "ファイルのアップロード後に遅延を追加" #: Library/Backend/AlternativeFTP/Strings.cs:28 #, csharp-format msgid "Error on deleting file: {0}" -msgstr "" +msgstr "ファイル {0} の削除時にエラーが発生しました" #: Library/Backend/AlternativeFTP/Strings.cs:29 #, csharp-format msgid "Error reading file: {0}" -msgstr "" +msgstr "ファイル {0} の読み込み中にエラーが発生しました" #: Library/Backend/AlternativeFTP/Strings.cs:30 #, csharp-format msgid "Error writing file: {0}" -msgstr "" +msgstr "ファイル {0} の書き込み中にエラーが発生しました" #: Library/Backend/SSHv2/Strings.cs:4 msgid "Module for generating SSH private/public keys" -msgstr "" +msgstr "SSHの公開鍵と秘密鍵を生成するためのモジュール" #: Library/Backend/SSHv2/Strings.cs:5 msgid "SSH Key Generator" -msgstr "" +msgstr "SSH鍵の生成モジュール" #: Library/Backend/SSHv2/Strings.cs:6 msgid "Public key username" -msgstr "" +msgstr "公開鍵のユーザー名" #: Library/Backend/SSHv2/Strings.cs:7 msgid "A username to append to the public key" -msgstr "" +msgstr "公開鍵に付けられるユーザー名" #: Library/Backend/SSHv2/Strings.cs:8 msgid "The key type" -msgstr "" +msgstr "鍵の種類" #: Library/Backend/SSHv2/Strings.cs:9 msgid "Determines the type of key to generate" -msgstr "" +msgstr "生成する鍵の種類を決定" #: Library/Backend/SSHv2/Strings.cs:10 msgid "The key length" -msgstr "" +msgstr "鍵の長さ" #: Library/Backend/SSHv2/Strings.cs:11 msgid "The length of the key in bits" -msgstr "" +msgstr "ビットで計測される鍵の長さ" #: Library/Backend/SSHv2/Strings.cs:14 msgid "Module for uploading SSH public keys" -msgstr "" +msgstr "SSHの公開鍵をアップロードするためのモジュール" #: Library/Backend/SSHv2/Strings.cs:15 msgid "SSH Key Uploader" -msgstr "" +msgstr "SSHキー アップローダー" #: Library/Backend/SSHv2/Strings.cs:16 msgid "The SSH connection URL" -msgstr "" +msgstr "SSH接続のURL" #: Library/Backend/SSHv2/Strings.cs:17 msgid "The SSH connection URL used to establish the connection" -msgstr "" +msgstr "接続を確立する際に使用されるSSH接続のURL" #: Library/Backend/SSHv2/Strings.cs:18 msgid "The SSH public key to append" -msgstr "" +msgstr "追加するSSHの公開鍵" #: Library/Backend/SSHv2/Strings.cs:19 msgid "" "The SSH public key must be a valid SSH string, which is appended to the " ".ssh/authorized_keys file" -msgstr "" +msgstr "SSHの公開鍵にはSSHの文字列を正しく指定してください。文字列は.ssh/authorized_keysのファイルに追加されます。" #: Library/Backend/SSHv2/Strings.cs:22 msgid "" @@ -1205,16 +1279,19 @@ msgid "" "Allowed formats are \"ssh://hostname/folder\" or " "\"ssh://username:password@hostname/folder\"." msgstr "" +"このバックエンドでは、SFTPクライアントを使用して、SSHをベースとしたバックエンドとの間でデータの読み書きを実行できます。サポートされている形式は、「ssh://ホスト名/フォルダー」または「ssh://ユーザー名:パスワード@ホスト名/フォルダー」となります。" #: Library/Backend/SSHv2/Strings.cs:27 msgid "" "The server fingerprint used for validation of server identity. Format is eg." " \"ssh-rsa 4096 11:22:33:44:55:66:77:88:99:00:11:22:33:44:55:66\"." msgstr "" +"サーバーのフィンガープリント。サーバーのIDの検証に使用します。フィンガープリントは、「ssh-rsa 4096 " +"11:22:33:44:55:66:77:88:99:00:11:22:33:44:55:66」のような形式です。" #: Library/Backend/SSHv2/Strings.cs:28 msgid "Supplies server fingerprint used for validation of server identity" -msgstr "" +msgstr "サーバーのフィンガープリントを指定。サーバーのIDの検証に使用" #: Library/Backend/SSHv2/Strings.cs:29 msgid "" @@ -1222,10 +1299,11 @@ msgid "" "verified on connection. Use this option to disable host-key fingerprint " "verification. You should only use this option for testing." msgstr "" +"中間者攻撃を防ぐために、サーバーのフィンガープリントを接続時に検証します。このオプションでホストの鍵のフィンガープリントの検証を無効にできます。テスト用にのみ使用してください。" #: Library/Backend/SSHv2/Strings.cs:30 msgid "Disables fingerprint validation" -msgstr "" +msgstr "フィンガープリントの検証を無効にする" #: Library/Backend/SSHv2/Strings.cs:31 msgid "" @@ -1234,10 +1312,11 @@ msgid "" "password is not used to authenticate. This option only works when using the " "managed SSH client." msgstr "" +"OpenSSHの鍵ファイルを指定できます。ファイルが暗号化されている場合は、指定されたパスワードを使って鍵ファイルを復号します。このオプションが指定されている場合は、パスワードによる認証は行いません。なお、このオプションは、管理されているSSHクライアントを使用する場合にのみ機能します。" #: Library/Backend/SSHv2/Strings.cs:32 Library/Backend/SSHv2/Strings.cs:34 msgid "Uses a SSH private key to authenticate" -msgstr "" +msgstr "SSHの秘密鍵を使用して認証" #: Library/Backend/SSHv2/Strings.cs:33 #, csharp-format @@ -1247,16 +1326,18 @@ msgid "" "keyfile. If this option is supplied, the password is not used to " "authenticate. This option only works when using the managed SSH client." msgstr "" +"URL形式にエンコードしたSSHの秘密鍵を指定できます。秘密鍵の先頭には{0}を付ける必要があります。ファイルが暗号化されている場合は、指定されたパスワードを使って鍵ファイルを復号します。このオプションが指定されている場合は、パスワードによる認証は行いません。なお、このオプションは、管理されているSSHクライアントを使用する場合にのみ機能します。" #: Library/Backend/SSHv2/Strings.cs:35 msgid "" "Use this option to manage the internal timeout for SSH operations. If this " "options is set to zero, the operations will not time out" msgstr "" +"このオプションで、SSH経由の操作に関してDuplicatiで指定するタイムアウトの数値を調整できます。0を設定した場合、操作はタイムアウトしません。" #: Library/Backend/SSHv2/Strings.cs:36 msgid "Sets the operation timeout value" -msgstr "" +msgstr "操作のタイムアウトの数値を設定" #: Library/Backend/SSHv2/Strings.cs:37 msgid "" @@ -1265,10 +1346,12 @@ msgid "" "connection. Using keep-alive will keep the connection open in this scenario." " If this value is set to zero, the keep-alive is disabled." msgstr "" +"SSH接続用にkeep-aliveを送信する間隔を指定できます。接続がアイドルの場合、ファイヤーウォールの中には接続を切断するものがあります。Keep-" +"aliveを設定すると、そうした状況でも接続を維持できます。数値を0に設定すると、keep-aliveは無効となります。" #: Library/Backend/SSHv2/Strings.cs:38 msgid "Sets a keepalive value" -msgstr "" +msgstr "keepaliveの値を設定" #: Library/Backend/SSHv2/Strings.cs:39 msgid "SFTP (SSH)" @@ -1277,7 +1360,7 @@ msgstr "SFTP (SSH)" #: Library/Backend/SSHv2/Strings.cs:40 #, csharp-format msgid "Unable to set folder to {0}, error message: {1}" -msgstr "" +msgstr "フォルダーを{0}に設定できませんでした。エラーメッセージ:{1}" #: Library/Backend/SSHv2/Strings.cs:41 #, csharp-format @@ -1299,14 +1382,15 @@ msgid "" "This backend can read and write data to Box.com. Supported format is " "\"box://folder/subfolder\"." msgstr "" +"このバックエンドでBox.comとの間でデータの読み書きを実行できます。サポートされている形式は、「box://フォルダー/サブフォルダー」となります。" #: Library/Backend/Box/Strings.cs:22 msgid "Box.com" -msgstr "" +msgstr "Box.com" #: Library/Backend/Box/Strings.cs:25 msgid "Force delete files" -msgstr "" +msgstr "ファイルを強制削除" #: Library/Backend/Box/Strings.cs:26 msgid "" @@ -1314,59 +1398,63 @@ msgid "" "deleted after a grace period. Use this command to force immediate removal of" " delete files." msgstr "" +"ファイルを削除する際、ファイルはごみ箱に移動されてから一定期間経った後に削除される可能性があります。このコマンドを使用すると、ファイルを即座に強制削除できます。" #: Library/Backend/Rclone/Strings.cs:6 msgid "Rclone" -msgstr "" +msgstr "Rclone" #: Library/Backend/Rclone/Strings.cs:7 msgid "This backend can read and write data to Rclone." -msgstr "" +msgstr "このバックエンドでRcloneによるデータの読み書きができます。" #: Library/Backend/Rclone/Strings.cs:8 msgid "Local repository" -msgstr "" +msgstr "ローカルのリポジトリー" #: Library/Backend/Rclone/Strings.cs:9 msgid "" "Local repository for Rclone. Make sure it is configured as a local drive, as" " it needs access to the files generated by Duplicati." msgstr "" +"Rclone用のローカルのリポジトリー。Duplicatiが生成したファイルにアクセスする必要があるため、ローカルのドライブとして指定してください。" #: Library/Backend/Rclone/Strings.cs:10 msgid "Remote repository" -msgstr "リモートリポジトリ" +msgstr "リモートのリポジトリー" #: Library/Backend/Rclone/Strings.cs:11 msgid "" "Remote repository for Rclone. This can be any of the backends provided by " "Rclone. More info available on https://rclone.org/." msgstr "" +"Rclone用のリモートのリポジトリー。Rcloneがサポートしているバックエンドであればどれでも利用できます。詳細については " +"https://rclone.org/ を確認してください。" #: Library/Backend/Rclone/Strings.cs:12 msgid "Remote path" -msgstr "リモートパス" +msgstr "リモートのパス" #: Library/Backend/Rclone/Strings.cs:13 msgid "Path on the Remote repository. " -msgstr "" +msgstr "リモートのリポジトリーのパス。" #: Library/Backend/Rclone/Strings.cs:14 msgid "Rclone options." -msgstr "" +msgstr "Rcloneのオプション。" #: Library/Backend/Rclone/Strings.cs:15 msgid "Options will be transferred to rclone." -msgstr "" +msgstr "オプションはRcloneに渡されます。" #: Library/Backend/Rclone/Strings.cs:16 msgid "Rclone executable" -msgstr "" +msgstr "Rcloneの実行ファイル" #: Library/Backend/Rclone/Strings.cs:17 msgid "" "Full path to the rclone executable. Only needed if it's not in your path." -msgstr "" +msgstr "Rcloneの実行ファイルへの完全パス。パスに含まれていない場合にのみ必要です。" #: Library/Backend/File/Strings.cs:4 #, csharp-format @@ -1379,10 +1467,11 @@ msgid "" "unwanted external drive. The contents of the file are never examined, only " "file existence." msgstr "" +"このオプションは--{0}のオプションも併せて指定されている場合にのみ機能します。後者のオプションで代替のパスが指定されている場合、このオプションは、フォルダー内に置かれるマーカー用ファイルの名称を指定します。これは、外部ドライブがドライブの文字やマウントポイントを変更する場合への対処に使用できます。特定のファイルが存在することを確認することで、外部ドライブの想定されていない場所にファイルが書き込まれることを防ぐことができます。ファイルの内容は確認されず、ファイルが存在することだけが確認されます。" #: Library/Backend/File/Strings.cs:5 msgid "Look for a file in the destination folder" -msgstr "" +msgstr "バックアップ先のフォルダー内のファイルを検索" #: Library/Backend/File/Strings.cs:6 #, csharp-format @@ -1414,12 +1503,12 @@ msgstr "" #: Library/Backend/File/Strings.cs:13 msgid "Local folder or drive" -msgstr "ローカルフォルダまたはドライブ" +msgstr "ローカルフォルダーまたはドライブ" #: Library/Backend/File/Strings.cs:14 #, csharp-format msgid "The folder {0} does not exist" -msgstr "フォルダ「 {0} 」は存在しません" +msgstr "フォルダー「 {0} 」は存在しません" #: Library/Backend/File/Strings.cs:15 #, csharp-format @@ -1436,10 +1525,12 @@ msgid "" "to fail. This option has no effect unless the --disable-streaming-transfers" " option is activated." msgstr "" +"ファイルを保存する際、通常の手順では、ファイルをコピーしてからオリジナルのファイルを削除します。そのようにすることで、何か問題が発生した場合に操作をやり直せるようにしています。このオプションを有効にすると、再試行の操作が失敗する可能性があります。なお、このオプションは、--disable-" +"streaming-transfersのオプションが有効にされていない限り機能しません。" #: Library/Backend/File/Strings.cs:17 msgid "Move the file instead of copying it" -msgstr "" +msgstr "ファイルをコピーする代わりに移動" #: Library/Backend/File/Strings.cs:18 msgid "Force authentication against remote share" @@ -1457,10 +1548,12 @@ msgid "" "your Backblaze account, this can also be supplied through the \"auth-" "password\" property" msgstr "" +"「B2 クラウドストレージアプリケーションキー」はBackblazeのアカウントにログインしてから取得できます。「auth-" +"password」のプロパティーでも指定できます。" #: Library/Backend/Backblaze/Strings.cs:5 msgid "The \"B2 Cloud Storage Application Key\"" -msgstr "" +msgstr "「B2 クラウドストレージアプリケーションキー」" #: Library/Backend/Backblaze/Strings.cs:6 msgid "" @@ -1468,38 +1561,43 @@ msgid "" "Backblaze account, this can also be supplied through the \"auth-username\" " "property" msgstr "" +"「B2 クラウドストレージアカウントID」はBackblazeのアカウントにログインしてから取得できます。「auth-" +"username」のプロパティーでも指定できます。" #: Library/Backend/Backblaze/Strings.cs:7 msgid "The \"B2 Cloud Storage Account ID\"" -msgstr "" +msgstr "「B2 クラウドストレージアカウントID」" #: Library/Backend/Backblaze/Strings.cs:8 msgid "B2 Cloud Storage" -msgstr "" +msgstr "B2 クラウドストレージ" #: Library/Backend/Backblaze/Strings.cs:13 msgid "No \"B2 Cloud Storage Application Key\" given" -msgstr "" +msgstr "B2 クラウドストレージのアカウントキーが指定されていません" #: Library/Backend/Backblaze/Strings.cs:14 msgid "No \"B2 Cloud Storage Account ID\" given" -msgstr "" +msgstr "B2 クラウドストレージのアカウントIDが指定されていません" #: Library/Backend/Backblaze/Strings.cs:15 msgid "" "This backend can read and write data to the Backblaze B2 Cloud Storage. " "Allowed formats are: \"b2://bucketname/prefix\"" msgstr "" +"このバックエンドでBackblaze B2 " +"クラウドストレージとの間でデータの読み書きを実行できます。許可されている形式は、「b2://バケット名/プレフィックス」となります。" #: Library/Backend/Backblaze/Strings.cs:16 msgid "" "By default, a private bucket is created. Use this option to set the bucket " "type. Refer to the B2 documentation for allowed types " msgstr "" +"既定では非公開のバケットが作成されます。このオプションでバケットの種類を設定できます。許可されている種類についてはB2のドキュメンテーションを参照してください" #: Library/Backend/Backblaze/Strings.cs:17 msgid "The bucket type used when creating a bucket" -msgstr "" +msgstr "作成する種類のバケット" #: Library/Backend/Backblaze/Strings.cs:18 msgid "" @@ -1507,10 +1605,11 @@ msgid "" "lower number means less data, but can increase the number of Class C " "transaction on B2. Suggested values are between 100 and 1000" msgstr "" +"このオプションで、B2のバケットの内容の一覧ページのサイズを設定できます。サイズが小さければデータ量も減りますが、B2でのクラスCのトランザクション数が多くなる可能性があります。100から1000までの間の数値を指定することを推奨します。" #: Library/Backend/Backblaze/Strings.cs:19 msgid "The size of file-listing pages" -msgstr "" +msgstr "ファイルの一覧ページのサイズ" #: Library/Backend/Backblaze/Strings.cs:20 msgid "" @@ -1518,29 +1617,30 @@ msgid "" "uploading will not be affected. The default download url depends on your " "account and looks like \"https://f00X.backblazeb2.com\"" msgstr "" +"ファイルのダウンロード元のカスタムドメインを設定できます。アップロードには影響しません。既定のダウンロード元のURLはアカウントに従い、「https://f00X.backblazeb2.com」のようなドメインのはずです。" #: Library/Backend/Backblaze/Strings.cs:21 msgid "The base URL to use for downloading files" -msgstr "" +msgstr "ファイルのダウンロードに使うベースのURL" #: Library/Backend/Backblaze/Strings.cs:22 #, csharp-format msgid "" "The setting \"{0}\" is invalid for \"{1}\", it must be an integer larger " "than zero" -msgstr "" +msgstr "\"{0}\"の設定は\"{1}\"にとって正しくありません。0よりも大きい整数に設定してください。" #: Library/Backend/Sia/Strings.cs:6 msgid "Sia Decentralized Cloud" -msgstr "" +msgstr "Sia 分散型クラウド" #: Library/Backend/Sia/Strings.cs:7 msgid "This backend can read and write data to Sia." -msgstr "" +msgstr "このバックエンドでSiaとの間でデータの読み書きを実行できます。" #: Library/Backend/Sia/Strings.cs:8 msgid "Backup path" -msgstr "" +msgstr "バックアップのパス" #: Library/Backend/Sia/Strings.cs:9 msgid "Target path, ie /backup" @@ -1548,20 +1648,20 @@ msgstr "" #: Library/Backend/Sia/Strings.cs:10 Library/Backend/Sia/Strings.cs:11 msgid "Sia password" -msgstr "" +msgstr "Siaのパスワード" #: Library/Backend/Sia/Strings.cs:12 msgid "3" -msgstr "" +msgstr "3" #: Library/Backend/Sia/Strings.cs:13 msgid "Minimum value is 3." -msgstr "" +msgstr "最小値は3です。" #: Library/Backend/OneDrive/Strings.cs:8 #, csharp-format msgid "No Auth-ID was provided - you can get one from {0}" -msgstr "" +msgstr "認証IDが指定されていません。{0}で取得できます" #: Library/Backend/OneDrive/Strings.cs:9 msgid "Fragment size for large uploads" @@ -1597,15 +1697,15 @@ msgstr "" #: Library/Backend/OneDrive/Strings.cs:15 msgid "Whether the HttpClient class should be used" -msgstr "" +msgstr "HttpClientクラスの使用を選択" #: Library/Backend/OneDrive/Strings.cs:16 msgid "Whether the HttpClient class should be used to perform HTTP requests" -msgstr "" +msgstr "HTTPリクエストを行う際に、HttpClientクラスを使用するかどうかを選択してください" #: Library/Backend/OneDrive/Strings.cs:21 msgid "Microsoft OneDrive v2" -msgstr "" +msgstr "Microsoft OneDrive バージョン2" #: Library/Backend/OneDrive/Strings.cs:22 #, csharp-format @@ -1614,10 +1714,12 @@ msgid "" "the Microsoft Graph API. Usage of this backend requires that you agree to " "the terms in {0} ({1}) and {2} ({3})" msgstr "" +"Microsoft Graph APIでファイルをMicrosoft OneDriveまたはMicrosoft OneDrive for " +"Businessに保存します。このバックエンドを使用するには{0}({1})と{2}({3})の利用規約に同意する必要があります。" #: Library/Backend/OneDrive/Strings.cs:23 msgid "Optional ID of the drive" -msgstr "" +msgstr "ドライブのID(オプション)" #: Library/Backend/OneDrive/Strings.cs:24 #, csharp-format @@ -1625,10 +1727,12 @@ msgid "" "ID of the drive to store data in. If no drive is specified, the default " "OneDrive or OneDrive for Business drive will be used via '{0}'." msgstr "" +"データを保存するドライブのID。ドライブが指定されていない場合は、「{0}」を介して、OneDriveまたはOneDrive for " +"Businessの既定のドライブを使用します。" #: Library/Backend/OneDrive/Strings.cs:29 msgid "Microsoft SharePoint v2" -msgstr "" +msgstr "Microsoft SharePoint v2" #: Library/Backend/OneDrive/Strings.cs:30 #, csharp-format @@ -1637,27 +1741,29 @@ msgid "" "Usage of this backend requires that you agree to the terms in {0} ({1}) and " "{2} ({3})" msgstr "" +"Microsoft Graph APIでファイルをMicrosoft " +"SharePointのサイトに保存します。このバックエンドを使用するには{0}({1})と{2}({3})の利用規約に同意する必要があります。" #: Library/Backend/OneDrive/Strings.cs:31 msgid "ID of the site" -msgstr "" +msgstr "サイトのID" #: Library/Backend/OneDrive/Strings.cs:32 msgid "ID of the site to store data in" -msgstr "" +msgstr "データを保存するサイトのID" #: Library/Backend/OneDrive/Strings.cs:33 msgid "No site ID was provided" -msgstr "" +msgstr "サイトのIDが指定されていません" #: Library/Backend/OneDrive/Strings.cs:34 #, csharp-format msgid "Conflicting site IDs used: given {0} but found {1}" -msgstr "" +msgstr "サイトIDが衝突しています。{0}が指定されましたが、{1}が見つかりました" #: Library/Backend/OneDrive/Strings.cs:39 msgid "Microsoft Office 365 Group" -msgstr "" +msgstr "Microsoft Office 365グループ" #: Library/Backend/OneDrive/Strings.cs:40 #, csharp-format @@ -1673,46 +1779,57 @@ msgstr "" #: Library/Backend/OneDrive/Strings.cs:41 msgid "ID of the group" -msgstr "" +msgstr "グループのID" #: Library/Backend/OneDrive/Strings.cs:42 msgid "ID of the group to store data in" -msgstr "" +msgstr "データを保存するグループのID" #: Library/Backend/OneDrive/Strings.cs:43 msgid "Email address of the group" -msgstr "" +msgstr "グループの電子メールアドレス" #: Library/Backend/OneDrive/Strings.cs:44 msgid "Email address of the group to store data in" -msgstr "" +msgstr "データを保存するグループの電子メールアドレス" #: Library/Backend/OneDrive/Strings.cs:45 msgid "No group ID or group email address was provided" -msgstr "" +msgstr "グループのIDまたは電子メールアドレスが指定されていません" #: Library/Backend/OneDrive/Strings.cs:46 #, csharp-format msgid "No groups were found with the given email address: {0}" -msgstr "" +msgstr "指定した電子メールアドレスが見つかるグループはありませんでした:{0}" #: Library/Backend/OneDrive/Strings.cs:47 #, csharp-format msgid "Multiple groups were found with the given email address: {0}" -msgstr "" +msgstr "複数のグループが指定した電子メールアドレスで見つかりました:{0}" #: Library/Backend/OneDrive/Strings.cs:48 #, csharp-format msgid "Conflicting group IDs used: given {0} but found {1}" +msgstr "使用されているグループIDが矛盾しています。{0}が指定されましたが、見つかったIDは{1}です。" + +#: Library/Backend/HubiC/Strings.cs:21 +msgid "" +"This backend can read and write data to HubiC. Supported format is " +"\"hubic://container/folder\"." msgstr "" +"このバックエンドでHubicとの間でデータの読み書きを実行できます。サポートされている形式は、「hubic://コンテナー/フォルダー」となります。" + +#: Library/Backend/HubiC/Strings.cs:22 +msgid "HubiC" +msgstr "HubiC" #: Library/Backend/AzureBlob/Strings.cs:4 msgid "All files will be written to the container specified" -msgstr "" +msgstr "全てのファイルは指定したコンテナーに書き込まれます" #: Library/Backend/AzureBlob/Strings.cs:5 msgid "The name of the storage container " -msgstr "" +msgstr "ストレージのコンテナーの名称" #: Library/Backend/AzureBlob/Strings.cs:6 msgid "Azure blob" @@ -1720,65 +1837,66 @@ msgstr "Azure blob" #: Library/Backend/AzureBlob/Strings.cs:7 msgid "No Azure storage account name given" -msgstr "" +msgstr "Azure ストレージのアカウント名が指定されていません" #: Library/Backend/AzureBlob/Strings.cs:8 msgid "" "The Azure storage account name which can be obtained by clicking the " "\"Manage Access Keys\" button on the storage account dashboard" -msgstr "" +msgstr "Azureのストレージアカウントの名称は、アカウントのダッシュボードにある「アクセスキーの管理」ボタンをクリックして取得できます" #: Library/Backend/AzureBlob/Strings.cs:9 msgid "The storage account name" -msgstr "" +msgstr "ストレージのアカウント名" #: Library/Backend/AzureBlob/Strings.cs:10 msgid "" "The Azure access key which can be obtained by clicking the \"Manage Access " "Keys\" button on the storage account dashboard" -msgstr "" +msgstr "Azureのアクセスキーは、アカウントのダッシュボードにある「アクセスキーの管理」ボタンをクリックして取得できます" #: Library/Backend/AzureBlob/Strings.cs:11 msgid "The access key" -msgstr "" +msgstr "アクセスキー" #: Library/Backend/AzureBlob/Strings.cs:12 msgid "No Azure access key given" -msgstr "" +msgstr "Azureのアクセスキーが指定されていません" #: Library/Backend/AzureBlob/Strings.cs:17 msgid "" "This backend can read and write data to Azure blob storage. Allowed formats" " are: \"azure://bucketname\"" msgstr "" +"このバックエンドでAzure blobストレージとの間でデータの読み書きを実行できます。許可されている形式は、「azure://バケット名」となります。" #: Library/Backend/Tardigrade/Strings.cs:12 msgid "Tardigrade Decentralized Cloud Storage" -msgstr "" +msgstr "Tardigrade 分散型クラウドストレージ" #: Library/Backend/Tardigrade/Strings.cs:13 msgid "" "This backend can read and write data to the Tardigrade Decentralized Cloud " "Storage." -msgstr "" +msgstr "このバックエンドでTardigrade 分散型クラウドストレージとの間でデータの読み書きを実行できます。" #: Library/Backend/Tardigrade/Strings.cs:14 msgid "The connection-test failed." -msgstr "" +msgstr "接続試験に失敗しました。" #: Library/Backend/Tardigrade/Strings.cs:15 msgid "The authentication method" -msgstr "" +msgstr "認証方法" #: Library/Backend/Tardigrade/Strings.cs:16 msgid "" "The authentication method describes which way to use to connect to the " "network - either via API key or via an access grant." -msgstr "" +msgstr "APIキーまたはアクセス権のどちらで認証し、ネットワークに接続するかを選択してください。" #: Library/Backend/Tardigrade/Strings.cs:17 msgid "The satellite" -msgstr "" +msgstr "サテライト" #: Library/Backend/Tardigrade/Strings.cs:18 msgid "" @@ -1789,7 +1907,7 @@ msgstr "" #: Library/Backend/Tardigrade/Strings.cs:19 msgid "The API key" -msgstr "" +msgstr "APIキー" #: Library/Backend/Tardigrade/Strings.cs:20 msgid "" @@ -1797,10 +1915,11 @@ msgid "" "Head over to the dashboard of your satellite to create one if you do not " "already have an API key." msgstr "" +"APIキーを指定すると、選択したサテライトの特定のプロジェクトにアクセスできます。APIキーが無い場合は、あなたのサテライトのダッシュボードで作成することができます。" #: Library/Backend/Tardigrade/Strings.cs:21 msgid "The encryption passphrase" -msgstr "" +msgstr "暗号化用のパスフレーズ" #: Library/Backend/Tardigrade/Strings.cs:22 msgid "" @@ -1812,59 +1931,60 @@ msgstr "" #: Library/Backend/Tardigrade/Strings.cs:23 msgid "The access grant" -msgstr "" +msgstr "アクセス権" #: Library/Backend/Tardigrade/Strings.cs:24 msgid "" "An access grant contains all information in one encrypted string. You may " "use it instead of a satellite, API key and secret." -msgstr "" +msgstr "アクセス権は、必要な全ての情報を暗号化した文字列からなります。サテライト、APIキー、秘密鍵の代わりに使用できます。" #: Library/Backend/Tardigrade/Strings.cs:25 msgid "The bucket" -msgstr "" +msgstr "バケット" #: Library/Backend/Tardigrade/Strings.cs:26 msgid "The bucket where the backup will reside in." -msgstr "" +msgstr "バックアップを保存するバケット。" #: Library/Backend/Tardigrade/Strings.cs:27 msgid "The folder" -msgstr "" +msgstr "フォルダー" #: Library/Backend/Tardigrade/Strings.cs:28 msgid "The folder within the bucket where the backup will reside in." -msgstr "" +msgstr "バックアップを保存する、バケット内のフォルダー。" #: Library/Backend/Jottacloud/Strings.cs:5 msgid "Jottacloud" -msgstr "" +msgstr "Jottacloud" #: Library/Backend/Jottacloud/Strings.cs:6 msgid "" "This backend can read and write data to Jottacloud using it's REST protocol." " Allowed format is \"jottacloud://folder/subfolder\"." msgstr "" +"このバックエンドでJottacloudとの間でRESTプロトコルを使いデータの読み書きを実行できます。許可されている形式は、「jottacloud://フォルダー/サブフォルダー」となります。" #: Library/Backend/Jottacloud/Strings.cs:7 Library/Backend/Mega/Strings.cs:10 msgid "No username given" -msgstr "" +msgstr "ユーザー名が入力されていません" #: Library/Backend/Jottacloud/Strings.cs:8 Library/Backend/Mega/Strings.cs:9 msgid "No password given" -msgstr "" +msgstr "パスワードが入力されていません" #: Library/Backend/Jottacloud/Strings.cs:9 msgid "No path given, cannot upload files to the root folder" -msgstr "" +msgstr "パスが指定されていません。ルートフォルダーにはファイルをアップロードできません" #: Library/Backend/Jottacloud/Strings.cs:10 msgid "Illegal mount point given." -msgstr "" +msgstr "不正なマウントポイントが指定されています。" #: Library/Backend/Jottacloud/Strings.cs:16 msgid "Supplies the backup device to use" -msgstr "" +msgstr "使用するバックアップ用デバイスを指定" #: Library/Backend/Jottacloud/Strings.cs:17 #, csharp-format @@ -1874,10 +1994,11 @@ msgid "" "When you specify a custom device you should also specify the mount point to " "use on this device with the \"{0}\" option." msgstr "" +"使用するバックアップ用のデバイス。存在しない場合はこれを作成します。デバイスはJottacloudのウェブインターフェースのバックアップパネルで管理できます。ユーザー定義のデバイスを指定する場合は、「{0}」オプションで、デバイスで使用するマウントポイントも指定してください。" #: Library/Backend/Jottacloud/Strings.cs:18 msgid "Supplies the mount point to use on the server" -msgstr "" +msgstr "サーバーで使用するマウントポイントを指定" #: Library/Backend/Jottacloud/Strings.cs:19 #, csharp-format @@ -1888,10 +2009,11 @@ msgid "" "custom device with option \"{0}\" you are free to name the mount point as " "you like." msgstr "" +"サーバーで使用するマウントポイント。既定では、組み込み型のアーカイブのマウントポイントを使用するように「Archive」が設定されます。「Sync」に設定すると、組み込み型の同期用マウントポイントが設定されます。「{0}」でカスタムデバイスを指定した場合は、任意に名前を設定して構いません。" #: Library/Backend/Jottacloud/Strings.cs:20 msgid "Number of threads for restore operations." -msgstr "" +msgstr "復元の操作に使用するスレッド数" #: Library/Backend/Jottacloud/Strings.cs:21 msgid "" @@ -1899,16 +2021,17 @@ msgid "" " limited to 18.5 Mbps per stream. Use multiple threads to increase " "throughput." msgstr "" +"復元操作に使用するスレッド数。いくつかの場合では、各ストリームのダウンロードスピードが18.5Mbpsに制限されることがあります。その際、複数のスレッドを使用すると、スループットを向上される可能性があります。" #: Library/Backend/Jottacloud/Strings.cs:22 msgid "The chunk size for simultaneous downloading." -msgstr "" +msgstr "並行ダウンロード用のチャンクのサイズ" #: Library/Backend/Jottacloud/Strings.cs:23 msgid "" "The chunk size for simultaneous downloading. These chunks will be held in " "memory, so keep it as low as possible." -msgstr "" +msgstr "並行ダウンロードの際のチャンクのサイズ。その際、チャンクはメモリーに保存されるため、可能な限り小さいサイズを設定してください。" #: Library/Backend/Mega/Strings.cs:4 msgid "mega.nz" @@ -1919,6 +2042,7 @@ msgid "" "This backend can read and write data to Mega.co.nz. Allowed formats are: " "\"mega://folder/subfolder\"" msgstr "" +"このバックエンドでMega.co.czとの間でデータの読み書きを実行できます。許可されている形式は、「mega://フォルダー/サブフォルダー」となります。" #: Library/Backend/SharePoint/Strings.cs:6 msgid "Microsoft SharePoint" @@ -1941,21 +2065,22 @@ msgid "" "option enables that authentication method. This is likely only available " "with windows servers and clients." msgstr "" +"サーバーとクライアントの両方が、統合されている認証をサポートしている場合、このオプションでその認証方法を有効にできます。これはおそらくWindowsのサーバーとクライアントの間でのみ利用できます。" #: Library/Backend/SharePoint/Strings.cs:13 #: Library/Backend/WEBDAV/Strings.cs:12 msgid "Use windows integrated authentication to connect to the server" -msgstr "" +msgstr "Windowsに統合されている認証でサーバーに接続" #: Library/Backend/SharePoint/Strings.cs:14 msgid "" "Use this option to have files moved to the recycle bin folder instead of " "removing them permanently when compacting or deleting backups." -msgstr "" +msgstr "このオプションを使用すると、バックアップを圧縮または削除する際に、ファイルを完全に削除する代わりにごみ箱のフォルダーに移動します。" #: Library/Backend/SharePoint/Strings.cs:15 msgid "Move deleted files to the recycle bin" -msgstr "" +msgstr "削除したファイルをごみ箱に移動" #: Library/Backend/SharePoint/Strings.cs:17 msgid "" @@ -1964,10 +2089,11 @@ msgid "" "recoverable timeouts under certain conditions. Use this option only with " "very fast and stable internet connections." msgstr "" +"このオプションで、SharePointへのファイルのアップロード全体をバイナリーダイレクトモードで行います。これは最も効率的なアップロードの方法ですが、復帰不能なタイムアウトを引き起こす場合があります。非常に高速で安定したインターネット接続でのみ使用してください。" #: Library/Backend/SharePoint/Strings.cs:18 msgid "Upload files using binary direct mode." -msgstr "" +msgstr "バイナリーダイレクトモードでファイルをアップロード。" #: Library/Backend/SharePoint/Strings.cs:20 msgid "" @@ -1977,17 +2103,17 @@ msgstr "" #: Library/Backend/SharePoint/Strings.cs:21 msgid "Set timeout for SharePoint web operations." -msgstr "" +msgstr "SharePointのウェブでの操作がタイムアウトするまでの時間を設定。" #: Library/Backend/SharePoint/Strings.cs:23 msgid "" "Use this option to specify the size of each chunk when uploading to " "SharePoint Server. Recommended value is 4MB." -msgstr "" +msgstr "このオプションでSharePoint サーバーにアップロードするファイルのチャンクのサイズを指定できます。推奨値は4メガバイトです。" #: Library/Backend/SharePoint/Strings.cs:24 msgid "Set block size for chunked uploads to SharePoint." -msgstr "" +msgstr "SharePointへのチャンクによるアップロードのブロックのサイズを設定。" #: Library/Backend/SharePoint/Strings.cs:26 #, csharp-format @@ -2005,7 +2131,7 @@ msgstr "" msgid "" "Everything seemed alright, but then web title could not be read to test " "connection. Something's wrong." -msgstr "" +msgstr "問題が発生したため、接続試験でウェブタイトルを読み込めませんでした。" #: Library/Backend/SharePoint/Strings.cs:33 msgid "Microsoft OneDrive for Business" @@ -2027,6 +2153,7 @@ msgid "" "This backend can read and write data to Dropbox. Supported format is " "\"dropbox://folder/subfolder\"." msgstr "" +"このバックエンドでDropboxとの間でデータの読み書きを実行できます。サポートされている形式は、「dropbox://フォルダー/サブフォルダー」となります。" #: Library/Backend/Dropbox/Strings.cs:23 msgid "Dropbox" @@ -2038,6 +2165,7 @@ msgid "" "protocol. Allowed formats are \"webdav://hostname/folder\" or " "\"webdav://username:password@hostname/folder\"." msgstr "" +"HTTPプロトコルで、WebDAVが有効に設定されているサーバーとの接続を行うことができます。サポートされている形ユーザー名式は、「webdav://ホスト名/フォルダー」または「webdav://ユーザー名:パスワード@ホスト名/フォルダー」となります。" #: Library/Backend/WEBDAV/Strings.cs:5 msgid "" @@ -2062,7 +2190,7 @@ msgstr "WebDAV" msgid "" "The server returned the error code {0} ({1}), indicating that the server " "does not support WebDAV connections" -msgstr "" +msgstr "サーバーがエラーコード {0}({1})を返しました。サーバーはWebDAVの接続をサポートしていないようです。" #: Library/Backend/WEBDAV/Strings.cs:16 #, csharp-format @@ -2076,13 +2204,13 @@ msgstr "" msgid "" "Use this flag to communicate using Secure Socket Layer (SSL) over http " "(https)." -msgstr "" +msgstr "このフラグで、HTTP通信にSecure Socket Layer(SSL)を使用するよう設定できます(https)。" #: Library/Backend/WEBDAV/Strings.cs:21 msgid "" "To aid in debugging issues, it is possible to set a path to a file that will" " be overwritten with the PROPFIND response" -msgstr "" +msgstr "デバッグを行う際に、PROPFINDのレスポンスで上書きされるファイルへのパスを設定することができます" #: Library/Backend/WEBDAV/Strings.cs:22 msgid "Dump the PROPFIND response" @@ -2093,55 +2221,57 @@ msgid "" "This backend can read and write data to a Tahoe-LAFS based backend. Allowed " "format is \"tahoe://hostname:port/uri/$DIRCAP\"." msgstr "" +"このバックエンドで、Tahoe-" +"LAFSに基づくバックエンドとの間でデータの読み書きを実行できます。サポートされている形式は、「tahoe://ホスト名:ポート番号/uri/$DIRCAP」となります。" #: Library/Backend/TahoeLAFS/Strings.cs:7 msgid "Tahoe-LAFS" -msgstr "" +msgstr "Tahoe-LAFS" #: Library/Backend/TahoeLAFS/Strings.cs:9 msgid "Unsupported URL format, must start with \"uri/URI:DIR2:\"" -msgstr "" +msgstr "サポートしていないURLの形式です。「uri/URI:DIR2:」で開始してください。" #: Library/Backend/OAuthHelper/Strings.cs:7 #, csharp-format msgid "" "Failed to authorize using the OAuth service: {0}. If the problem persists, " "try generating a new authid token from: {1}" -msgstr "" +msgstr "OAuthサービスの使用を認証できませんでした:{0}。問題が解決されない場合は、以下で新しい認証IDを生成してみてください:{1}" #: Library/Backend/OAuthHelper/Strings.cs:8 #, csharp-format msgid "Unexpected error code: {0} - {1}" -msgstr "" +msgstr "予期されていないエラーコード:{0} - {1}" #: Library/Backend/OAuthHelper/Strings.cs:11 msgid "The OAuth service is currently over quota, try again in a few hours" -msgstr "" +msgstr "現在OAuthのサービスは割り当て量を超えています。数時間後に再度試してください" #: Library/DynamicLoader/Strings.cs:4 #, csharp-format msgid "Failed to load assembly {0}, error message: {1}" -msgstr "" +msgstr "アセンブリー {0} を読み込めませんでした。エラーメッセージ:{1}" #: Library/DynamicLoader/Strings.cs:5 #, csharp-format msgid "Failed to load process type {0} assembly {1}, error message: {2}" -msgstr "" +msgstr "プロセスの種類 {0} アセンブリー {1} を読み込めませんでした。エラーメッセージ:{2}" #: Library/Compression/Strings.cs:4 #, csharp-format msgid "Please use the {0} option instead" -msgstr "" +msgstr "代わりに{0}オプションを使用してください" #: Library/Compression/Strings.cs:5 Library/Compression/Strings.cs:23 msgid "" "This option controls the compression level used. A setting of zero gives no " "compression, and a setting of 9 gives maximum compression." -msgstr "" +msgstr "使用する圧縮レベルを操作できます。0に設定すると圧縮は行わず、9に設定すると圧縮を最大限に行います。" #: Library/Compression/Strings.cs:6 msgid "Sets the Zip compression level" -msgstr "" +msgstr "Zip圧縮のレベルの設定" #: Library/Compression/Strings.cs:7 #, csharp-format @@ -2149,36 +2279,37 @@ msgid "" "This option can be used to set an alternative compressor method, such as " "LZMA. Note that using another value than Deflate will cause the {0} option " "to be ignored." -msgstr "" +msgstr "LZMAなど別の圧縮方法を設定できます。Deflate以外の値を設定すると{0}のオプションは無視されます。" #: Library/Compression/Strings.cs:8 msgid "Sets the Zip compression method" -msgstr "" +msgstr "Zip圧縮方法を設定" #: Library/Compression/Strings.cs:9 msgid "Toggles Zip64 support" -msgstr "" +msgstr "Zip64のサポートを切り替える" #: Library/Compression/Strings.cs:10 msgid "" "The zip64 format is required for files larger than 4GiB, use this flag to " "toggle it" -msgstr "" +msgstr "Zip64のフォーマットには4GiB以上のファイルが必要となります。このフラグでフォーマットのサポートを切り替えられます。" #: Library/Compression/Strings.cs:11 msgid "" "This module provides the industry standard Zip compression. Files created " "with this module can be read by any standard-compliant zip application." msgstr "" +"このモジュールは業界標準のZip圧縮をサポートします。このモジュールで作成したファイルは、標準に準拠するZipアプリケーションで読み込むことができます。" #: Library/Compression/Strings.cs:12 msgid "Zip compression" -msgstr "" +msgstr "Zip圧縮" #: Library/Compression/Strings.cs:13 #, csharp-format msgid "File not found: {0}" -msgstr "ファイルが見つかりません: {0}" +msgstr "ファイルが見つかりません:{0}" #: Library/Compression/Strings.cs:16 msgid "Archive not opened for writing" @@ -2190,49 +2321,49 @@ msgstr "" #: Library/Compression/Strings.cs:18 msgid "The given file is not part of this archive" -msgstr "" +msgstr "指定したファイルはこのアーカイブに含まれていません" #: Library/Compression/Strings.cs:19 msgid "*Experimental*: 7z Archive with LZMA2 support." -msgstr "" +msgstr "*実験的*:LZMA2をサポートする7zアーカイブ。" #: Library/Compression/Strings.cs:20 msgid "Experimental - 7z Archive" -msgstr "" +msgstr "実験的 - 7zアーカイブ" #: Library/Compression/Strings.cs:21 msgid "" "The number of threads used in LZMA 2 compression. Defaults to the number of " "processor cores." -msgstr "" +msgstr "LZMA 2による圧縮に使用するスレッドの数。既定ではプロセッサーのコアの数が指定されます。" #: Library/Compression/Strings.cs:22 msgid "Number of threads used in compression" -msgstr "" +msgstr "圧縮に使用するスレッド数" #: Library/Compression/Strings.cs:24 msgid "Sets the 7z compression level" -msgstr "" +msgstr "7z圧縮のレベルの設定" #: Library/Compression/Strings.cs:25 msgid "" "This option controls the compression algorithm used. Enabling this option " "will cause 7z to use the fast algorithm, which produces slightly less " "compression." -msgstr "" +msgstr "使用する圧縮アルゴリズムを制御します。このオプションを有効にすると、7zは、圧縮率がわずかに下がる高速アルゴリズムを使用します。" #: Library/Compression/Strings.cs:26 msgid "Sets the 7z fast algorithm usage" -msgstr "" +msgstr "7zの高速アルゴリズムを使用" #: Library/SQLiteHelper/Strings.cs:4 msgid "backup" -msgstr "" +msgstr "バックアップ" #: Library/SQLiteHelper/Strings.cs:5 #, csharp-format msgid "Unable to determine database format: {0}" -msgstr "" +msgstr "データベースの種類を決定できません:{0}" #: Library/SQLiteHelper/Strings.cs:6 #, csharp-format @@ -2246,7 +2377,7 @@ msgstr "" #: Library/SQLiteHelper/Strings.cs:11 msgid "Unknown table layout detected" -msgstr "" +msgstr "不明なテーブルのレイアウトを検知しました" #: Library/SQLiteHelper/Strings.cs:12 #, csharp-format @@ -2255,43 +2386,46 @@ msgid "" "Error: {1}\n" "Database is NOT upgraded." msgstr "" +"SQLを実行できませんでした:{0}\n" +"エラー:{1}\n" +"データベースはアップグレードされていません。" #: Library/Main/Strings.cs:8 #, csharp-format msgid "Hash mismatch on file \"{0}\", recorded hash: {1}, actual hash {2}" -msgstr "" +msgstr "ファイル「{0}」のハッシュ値が一致していません。記録されているハッシュ値:{1}、実際のハッシュ値:{2}" #: Library/Main/Strings.cs:9 #, csharp-format msgid "" "The file {0} was downloaded and had size {1} but the size was expected to be" " {2}" -msgstr "" +msgstr "ファイル {0} をダウンロードしましたが、サイズ {1} は正しいサイズ {2} と等しくありません" #: Library/Main/Strings.cs:10 #, csharp-format msgid "The option {0} is deprecated: {1}" -msgstr "" +msgstr "オプション {0} は非推奨です:{1}" #: Library/Main/Strings.cs:11 #, csharp-format msgid "" "The option --{0} exists more than once, please report this to the developers" -msgstr "" +msgstr "オプション--{0}が2つ以上存在しています。この問題を開発者に報告してください" #: Library/Main/Strings.cs:12 msgid "No source folders specified for backup" -msgstr "" +msgstr "バックアップ元のフォルダーが指定されていません" #: Library/Main/Strings.cs:13 #, csharp-format msgid "The source folder {0} does not exist, aborting backup" -msgstr "" +msgstr "バックアップ元のフォルダー {0} が存在しません。バックアップを中断します" #: Library/Main/Strings.cs:14 #, csharp-format msgid "Unauthorized to access source folder {0}, aborting backup" -msgstr "" +msgstr "バックアップ元のフォルダー {0} へのアクセスが承認されていません。バックアップを中断します" #: Library/Main/Strings.cs:15 #, csharp-format @@ -2305,66 +2439,66 @@ msgstr "" msgid "" "The option --{0} does not support the value \"{1}\", supported values are: " "{2}" -msgstr "" +msgstr "オプション --{0} は値「{1}」をサポートしていません。サポートしている値は{2}です。" #: Library/Main/Strings.cs:17 #, csharp-format msgid "" "The option --{0} does not support the value \"{1}\", supported flag values " "are: {2}" -msgstr "" +msgstr "オプション --{0} は値「{1}」をサポートしていません。サポートしているフラグは{2}です。" #: Library/Main/Strings.cs:18 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid integer" -msgstr "" +msgstr "--{0}に指定された値「{1}」は正しい整数ではありません" #: Library/Main/Strings.cs:19 #, csharp-format msgid "" "The option --{0} is not supported because the module {1} is not currently " "loaded" -msgstr "" +msgstr "モジュール {1} が現在読み込まれていないため、オプション --{0} はサポートされていません" #: Library/Main/Strings.cs:20 #, csharp-format msgid "The supplied option --{0} is not supported and will be ignored" -msgstr "" +msgstr "指定したオプションの--{0}はサポートされていないため、無視されます" #: Library/Main/Strings.cs:21 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid path" -msgstr "" +msgstr "--{0}に指定された値「{1}」は正しいパスではありません" #: Library/Main/Strings.cs:22 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid size" -msgstr "" +msgstr "--{0}に指定された値「{1}」は正しいサイズではありません" #: Library/Main/Strings.cs:23 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid time" -msgstr "" +msgstr "--{0}に指定された値「{1}」は正しい時間ではありません" #: Library/Main/Strings.cs:24 #, csharp-format msgid "The operation {0} has started" -msgstr "" +msgstr "操作 {0} が開始しました" #: Library/Main/Strings.cs:25 #, csharp-format msgid "The operation {0} has completed" -msgstr "" +msgstr "操作 {0} が完了しました" #: Library/Main/Strings.cs:26 #, csharp-format msgid "The operation {0} has failed with error: {1}" -msgstr "" +msgstr "操作 {0} はエラーのため失敗しました。エラー:{1}" #: Library/Main/Strings.cs:27 #, csharp-format msgid "Invalid path: \"{0}\" ({1})" -msgstr "" +msgstr "パスが不正です:「{0}」({1})" #: Library/Main/Strings.cs:28 #, csharp-format @@ -2376,13 +2510,13 @@ msgstr "" #: Library/Main/Strings.cs:29 #, csharp-format msgid "The source {0} uses an invalid volume name, aborting backup" -msgstr "" +msgstr "バックアップ元 {0} は不正なボリューム名を使用しています。バックアップを中断します" #: Library/Main/Strings.cs:30 #, csharp-format msgid "" "The source {0} is on volume {1}, which could not be found, aborting backup" -msgstr "" +msgstr "バックアップ元 {0 }はボリューム {1} にありますが、ボリュームが見つかりません。バックアップを中断します" #: Library/Main/Strings.cs:31 #, csharp-format @@ -2398,6 +2532,7 @@ msgid "" " backend. Using this flag, Duplicati will automatically remove such files " "when encountered." msgstr "" +"バックアップが中断された場合、バックエンドには未処理のファイルが残る可能性があります。このフラグを使うと、Duplicatiはそうしたファイルを検出した場合に、これを自動的に削除します。" #: Library/Main/Strings.cs:37 msgid "A flag indicating that Duplicati should remove unused files" @@ -2410,10 +2545,11 @@ msgid "" "a hyphen (-), but can contain all other characters allowed by the remote " "storage." msgstr "" +"リモートのボリュームのファイル名の先頭に付ける文字列。リモートの同じフォルダーに複数のバックアップを保存するのに使用できます。半角ハイフン以外で、リモートの保存領域で使用できるものであれば、どの文字列も使用できます。" #: Library/Main/Strings.cs:39 msgid "Remote filename prefix" -msgstr "" +msgstr "リモートのファイル名の先頭に付ける文字列" #: Library/Main/Strings.cs:40 msgid "" @@ -2422,30 +2558,31 @@ msgid "" "modified. If some application deliberately modifies this information, " "Duplicati won't work correctly unless this flag is set." msgstr "" +"オペレーティングシステムには、ファイルが書き込まれた最終日時が記録されます。この情報を使用することによって、Duplicatiはファイルが変更されているかどうかを高速に確認する仕組みとなっています。ファイルの最終更新日時に関する情報を変更する場合、このフラグを設定しない限り、Duplicatiは適切に機能しません。" #: Library/Main/Strings.cs:41 msgid "Disable checks based on file time" -msgstr "" +msgstr "ファイルの更新日時に基づくチェックを無効にする" #: Library/Main/Strings.cs:42 msgid "" "By default, files will be restored in the source folders, use this option to" " restore to another folder" -msgstr "" +msgstr "既定では、ファイルはバックアップ元のフォルダーに復元されます。このオプションで、別のフォルダーに復元することができます。" #: Library/Main/Strings.cs:43 msgid "Restore to another folder" -msgstr "" +msgstr "他のフォルダーに復元" #: Library/Main/Strings.cs:44 msgid "Toggles system sleep mode" -msgstr "" +msgstr "システムのスリープモードを切り替える" #: Library/Main/Strings.cs:45 msgid "" "Allow system to enter sleep power modes for inactivity during backup/restore" " operations (Windows/OSX only)" -msgstr "" +msgstr "バックアップまたは復元中にシステムが非アクティブの場合、システムがスリープモードに入ることを許可(WindowsまたはmacOSのみ)" #: Library/Main/Strings.cs:46 msgid "" @@ -2453,10 +2590,11 @@ msgid "" "for downloads. Setting this limit can make the backups take longer, but will" " make Duplicati less intrusive." msgstr "" +"この数値を設定すると、Duplicatiがダウンロードに使用する帯域幅を調整することができます。バックアップに掛かる時間は長くなる可能性がありますが、Duplicatiが回線を占拠する程度は減少します。" #: Library/Main/Strings.cs:47 msgid "Max number of kilobytes to download pr. second" -msgstr "" +msgstr "1秒毎にダウンロードする最大のキロバイト数" #: Library/Main/Strings.cs:48 msgid "" @@ -2464,30 +2602,32 @@ msgid "" "for uploads. Setting this limit can make the backups take longer, but will " "make Duplicati less intrusive." msgstr "" +"この数値を設定すると、Duplicatiがアップロードに使用する帯域幅を調整することができます。バックアップに掛かる時間は長くなる可能性がありますが、Duplicatiが回線を占拠する程度は減少します。" #: Library/Main/Strings.cs:49 msgid "Max number of kilobytes to upload pr. second" -msgstr "" +msgstr "1秒毎にアップロードする最大のキロバイト数" #: Library/Main/Strings.cs:50 msgid "" "If you store the backups on a local disk, and prefer that they are kept " "unencrypted, you can turn of encryption completely by using this switch." -msgstr "" +msgstr "バックアップを暗号化せずローカルのハードディスクに保存する場合、このスイッチで暗号化を完全に無効にすることができます。" #: Library/Main/Strings.cs:51 msgid "Disable encryption" -msgstr "" +msgstr "暗号化を無効にする" #: Library/Main/Strings.cs:52 msgid "" "If an upload or download fails, Duplicati will retry a number of times " "before failing. Use this to handle unstable network connections better." msgstr "" +"アップロードまたはダウンロードに失敗した場合、Duplicatiは最終的に失敗したと判断するまで、ファイルの転送を数回再試行します。回線の接続が不安定な場合、この回数を調整することで、ファイルの転送を改善できる可能性があります。" #: Library/Main/Strings.cs:53 msgid "Number of times to retry a failed transmission" -msgstr "" +msgstr "失敗したファイル転送を再試行する回数" #: Library/Main/Strings.cs:54 msgid "" @@ -2495,10 +2635,12 @@ msgid "" "making them unreadable without the passphrase. This variable can also be " "supplied through the environment variable PASSPHRASE." msgstr "" +"Duplicatiがバックアップのボリュームを暗号化する際に使用するパスフレーズを指定できます。このパスフレーズが無ければ、バックアップを読み取ることはできません。パスフレーズは、環境変数" +" PASSPHRASE で指定することもできます。" #: Library/Main/Strings.cs:55 msgid "Passphrase used to encrypt backups" -msgstr "" +msgstr "バックアップの暗号化に使用するパスフレーズ" #: Library/Main/Strings.cs:56 msgid "" @@ -2506,10 +2648,11 @@ msgid "" "backup, use this option to select another item. You may use relative times, " "like \"-2M\" for a backup from two months ago." msgstr "" +"既定では、Duplicatiは直近のバックアップをもとにファイルの一覧を作成し、ファイルを復元します。このオプションで、別のバックアップを選択できます。時間は相対的に指定できます。例えば「-2M」とすると、2か月前のバックアップを選択できます。" #: Library/Main/Strings.cs:57 msgid "The time to list/restore files" -msgstr "" +msgstr "ファイルの一覧表示または復元を行う時点" #: Library/Main/Strings.cs:58 msgid "" @@ -2517,20 +2660,21 @@ msgid "" "backup, use this option to select another item. You may enter multiple " "values separated with comma, and ranges using -, e.g. \"0,2-4,7\" ." msgstr "" +"既定では、Duplicatiは直近のバックアップのファイルを一覧で表示または復元します。このオプションで、別のバージョンを選択できます。コンマで数値を区切ったり、半角ハイフンで範囲を指定したりできます。例:「0,2-4,7」" #: Library/Main/Strings.cs:59 msgid "The version to list/restore files" -msgstr "" +msgstr "一覧で表示または復元するファイルのバージョン" #: Library/Main/Strings.cs:60 msgid "" "When searching for files, only the most recent backup is searched. Use this " "option to show all previous versions too." -msgstr "" +msgstr "ファイルを検索する際には、直近のバックアップのみを対象として検索します。このオプションで、以前の全てのバージョンも表示できます。" #: Library/Main/Strings.cs:61 msgid "Show all versions" -msgstr "" +msgstr "全てのバージョンを表示" #: Library/Main/Strings.cs:62 msgid "" @@ -2547,10 +2691,11 @@ msgid "" "When searching for files, all matching files are returned. Use this option " "to return only the entries found in the folder specified as filter." msgstr "" +"ファイルを検索する際、該当する全てのファイルが返されます。このオプションで、フィルターで指定されたフォルダーにあるエントリーのみが返されます。" #: Library/Main/Strings.cs:65 msgid "Show folder contents" -msgstr "" +msgstr "フォルダーの内容を表示" #: Library/Main/Strings.cs:66 msgid "" @@ -2558,58 +2703,62 @@ msgid "" "attempting again. This is useful if the network drops out occasionally " "during transmissions." msgstr "" +"ファイルの転送に失敗した後で、Duplicatiは少し待機してから再びファイルの転送を試みます。この設定は、ファイルの転送中にネットワークの接続が途切れる場合に有効です。" #: Library/Main/Strings.cs:67 msgid "Time to wait between retries" -msgstr "" +msgstr "再試行の間の待機時間" #: Library/Main/Strings.cs:68 msgid "Use this option to attach extra files to the newly uploaded filelists." -msgstr "" +msgstr "このオプションで、新しくアップロードされたファイルリストに追加のファイルを添付することができます。" #: Library/Main/Strings.cs:69 msgid "Set control files" -msgstr "" +msgstr "コントロール用のファイルを設定" #: Library/Main/Strings.cs:70 msgid "" "If the hash for the volume does not match, Duplicati will refuse to use the " "backup. Supply this flag to allow Duplicati to proceed anyway." msgstr "" +"ボリュームのハッシュ値が一致しない場合、Duplicatiはそのバックアップの使用を拒否します。このフラグを指定すると、Duplicatiはそうしたバックアップを使用して続行できるようになります。" #: Library/Main/Strings.cs:71 msgid "Set this flag to skip hash checks" -msgstr "" +msgstr "このフラグを設定するとハッシュの確認をスキップ" #: Library/Main/Strings.cs:72 msgid "" "This option allows you to exclude files that are larger than the given " "value. Use this to prevent backups becoming extremely large." msgstr "" +"このオプションで、指定したサイズよりも大きいファイルをバックアップから除外することができます。バックアップのサイズを制限したい場合に、このオプションを使用してください。" #: Library/Main/Strings.cs:73 msgid "Limit the size of files being backed up" -msgstr "" +msgstr "バックアップするファイルのサイズを制限" #: Library/Main/Strings.cs:76 msgid "" "Selects another thread priority for the process. Use this to set Duplicati " "to be more or less CPU intensive." -msgstr "" +msgstr "プロセスに関するスレッドの優先度を指定できます。この設定で、DuplicatiのCPUの使用量を調節できます。" #: Library/Main/Strings.cs:77 msgid "Thread priority" -msgstr "" +msgstr "スレッドの優先度" #: Library/Main/Strings.cs:78 msgid "" "This option can change the maximum size of dblock files. Changing the size " "can be useful if the backend has a limit on the size of each individual file" msgstr "" +"このオプションでdblockファイルの最大のサイズを変更できます。バックエンドが各ファイルのサイズを制限している場合、サイズの変更が役立つ可能性があります" #: Library/Main/Strings.cs:79 msgid "Limit the size of the volumes" -msgstr "" +msgstr "ボリュームのサイズを制限" #: Library/Main/Strings.cs:80 msgid "" @@ -2617,10 +2766,11 @@ msgid "" "means that transfer progress bars will not show, and bandwidth throttle " "settings will be ignored." msgstr "" +"このオプションを有効にすると、ストリーミングインターフェースの使用が禁止されます。転送の経過は表示されなくなり、帯域の速度制限に関する設定は無視されます。" #: Library/Main/Strings.cs:81 msgid "Disables use of the streaming transfer method" -msgstr "" +msgstr "ストリーミング転送法の使用を無効にする" #: Library/Main/Strings.cs:82 msgid "" @@ -2640,10 +2790,11 @@ msgid "" "volumes, when reading an existing file, the filename is used to select the " "compression module." msgstr "" +"Duplicatiは外部の圧縮用モジュールの使用をサポートしています。このオプションで、圧縮に使用するモジュールを選択できます。これは新しいボリュームを作成する際にのみ適用されます。既存のファイルを読み込む際には、ファイル名を使用して圧縮用モジュールが選択されます。" #: Library/Main/Strings.cs:85 msgid "Select what module to use for compression" -msgstr "" +msgstr "圧縮に使用するモジュールを選択" #: Library/Main/Strings.cs:86 msgid "" @@ -2652,26 +2803,27 @@ msgid "" "volumes, when reading an existing file, the filename is used to select the " "encryption module." msgstr "" +"Duplicatiは外部の暗号化モジュールの使用をサポートしています。このオプションで、暗号化に使用するモジュールを選択できます。これは新しいボリュームを作成する際にのみ適用されます。既存のファイルを読み込む際には、ファイル名を使用して暗号化モジュールが選択されます。" #: Library/Main/Strings.cs:87 msgid "Select what module to use for encryption" -msgstr "" +msgstr "暗号化に使用するモジュールを選択してください" #: Library/Main/Strings.cs:88 msgid "Supply one or more module names, separated by commas to unload them" -msgstr "" +msgstr "無効にするモジュールを入力してください。複数ある場合はコンマで区切ってください" #: Library/Main/Strings.cs:89 msgid "Disables one or more modules" -msgstr "" +msgstr "モジュールを無効にする" #: Library/Main/Strings.cs:90 msgid "Supply one or more module names, separated by commas to load them" -msgstr "" +msgstr "読み込むモジュールを入力してください。複数ある場合はコンマで区切ってください" #: Library/Main/Strings.cs:91 msgid "Enables one or more modules" -msgstr "" +msgstr "モジュールを有効にする" #: Library/Main/Strings.cs:92 msgid "" @@ -2687,10 +2839,11 @@ msgid "" "and requires administrative privileges. On Linux this uses Logical Volume " "Management (LVM) and requires root privileges." msgstr "" +"この設定で、スナップショットを使用するかどうかを制御できます。スナップショットを使うと、Duplicatiは他のプログラムによりロックされているファイルをバックアップすることができます。この設定を「off」にした場合、Duplicatiはディスクのスナップショットの作成を試みません。「auto」にした場合、Duplicatiはスナップショットの作成を試み、それが許可されていなかったり失敗したりした場合は、通知を行わずにスナップショットの作成の試みを終了します。「on」に設定した場合は、スナップショットの作成を試み、失敗した場合は警告メッセージをログに出力します。「required」を設定すると、スナップショットを作成できなかった場合、Duplicatiはバックアップを中断します。Windowsでは、スナップショットの作成は「ボリュームシャドウコピーサービス」(VSS)により行い、管理者権限が必要となります。Linuxでは、スナップショットの作成は論理ボリューム管理(LVM)により行い、ルート権限が必要となります。" #: Library/Main/Strings.cs:93 msgid "Controls the use of disk snapshots" -msgstr "" +msgstr "ディスクのスナップショットの使用を制御" #: Library/Main/Strings.cs:94 msgid "" @@ -2698,10 +2851,11 @@ msgid "" "default, this option can set a different folder for placing the temporary " "volumes, despite the name, this also works for synchronous runs" msgstr "" +"既定では、事前に作成したボリュームが一時フォルダーに保存されます。このオプションで、一時的なボリュームを保存するフォルダーを設定できます。なお、オプションの名称とは異なり、これは同期アップロードでも機能します。" #: Library/Main/Strings.cs:95 msgid "The path where ready volumes are placed until uploaded" -msgstr "" +msgstr "アップロードの準備ができたボリュームを保管しておく場所のパス" #: Library/Main/Strings.cs:96 msgid "" @@ -2710,63 +2864,65 @@ msgid "" "option limits the number of pending uploads. Set to zero to disable the " "limit" msgstr "" +"非同期アップロードを実行する際、Duplicatiはアップロードするボリュームを作成します。Duplicatiがボリュームを作りすぎるのを防ぐために、このオプションを使うと、待機中のアップロードの数を制限できます。0に設定すると、制限を無効にできます。" #: Library/Main/Strings.cs:97 msgid "The number of volumes to create ahead of time" -msgstr "" +msgstr "アップロードに先立って作成するボリュームの数" #: Library/Main/Strings.cs:98 msgid "" "When performing asynchronous uploads, the maximum number of concurrent " "uploads allowed. Set to zero to disable the limit." -msgstr "" +msgstr "非同期アップロードを実行する際に許可する、並行アップロードの最大数を設定できます。0に設定すると、最大数の制限を無効にできます。" #: Library/Main/Strings.cs:99 msgid "The number of concurrent uploads allowed" -msgstr "" +msgstr "許可する並行アップロードの数" #: Library/Main/Strings.cs:100 msgid "" "Activating this option will make some error messages more verbose, which may" " help you track down a particular issue" -msgstr "" +msgstr "このオプションを有効にすると、エラーメッセージの一部がより詳細に出力されるため、トラブルシューティングが容易になります" #: Library/Main/Strings.cs:101 msgid "Enables debugging output" -msgstr "" +msgstr "デバッグ用の出力を有効にする" #: Library/Main/Strings.cs:102 msgid "Log internal information to a file" -msgstr "" +msgstr "内部情報をファイルに記録" #: Library/Main/Strings.cs:103 msgid "Logs information to the file specified" -msgstr "" +msgstr "指定したファイルに情報を記録" #: Library/Main/Strings.cs:104 msgid "" "Specifies the amount of log information to write into the file specified by " "--log-file" -msgstr "" +msgstr "--log-fileで指定したファイルに書き込む情報の量を指定" #: Library/Main/Strings.cs:105 msgid "Log information level" -msgstr "" +msgstr "ログに記録する情報のレベル" #: Library/Main/Strings.cs:106 #, csharp-format msgid "Use the {0} and {1} options instead" -msgstr "" +msgstr "代わりに{0}と{1}のオプションを使用してください" #: Library/Main/Strings.cs:107 msgid "" "If Duplicati detects that the target folder is missing, it will create it " "automatically. Activate this option to prevent automatic folder creation." msgstr "" +"バックアップの作成先のフォルダーが存在しない場合、Duplicatiは自動的にフォルダーを作成します。このオプションを有効にすると、フォルダーは自動的に作成されなくなります。" #: Library/Main/Strings.cs:108 msgid "Disables automatic folder creation" -msgstr "" +msgstr "自動フォルダー作成を無効にする" #: Library/Main/Strings.cs:109 msgid "" @@ -2794,10 +2950,11 @@ msgid "" "usage fails. This feature is only supported on Windows and requires " "administrative privileges." msgstr "" +"この設定で、NTFSのUSN番号を使用するかどうかを制御できます。USNを使うと、Duplicatiはファイルとフォルダーの一覧をより迅速に取得できます。この設定を「off」にした場合、DuplicatiはUSNの使用を試みません。「auto」にした場合、DuplicatiはUSNの使用を試み、それが許可されていなかったり失敗したりした場合は、通知を行わずにUSNを使用する試みを終了します。「on」に設定した場合は、USNの使用を試み、失敗した場合は警告メッセージをログに出力します。「required」を設定すると、USNを使用できなかった場合、Duplicatiはバックアップを中断します。この機能はWindowsでのみサポートされており、管理者権限が必要となります。" #: Library/Main/Strings.cs:112 msgid "Controls the use of NTFS Update Sequence Numbers" -msgstr "" +msgstr "NTFSのUpdate Sequence Numbersの使用を制御" #: Library/Main/Strings.cs:113 #, csharp-format @@ -2818,7 +2975,7 @@ msgstr "" #: Library/Main/Strings.cs:115 msgid "Verify uploads by listing contents" -msgstr "" +msgstr "ファイルのリスト作成でアップロードを検証" #: Library/Main/Strings.cs:116 msgid "" @@ -2826,10 +2983,11 @@ msgid "" "which usually makes the backup faster. Use this flag to turn the behavior " "off, so that Duplicati will wait for each volume to complete." msgstr "" +"Duplicatiは、ディスクのスキャンとボリュームの作成と並行してファイルをアップロードすることで、バックアップの高速化を図ります。このフラグでそれを無効にし、各ボリュームの作成が完了するまでDuplicatiに待機させることができます。" #: Library/Main/Strings.cs:117 msgid "Upload files synchronously" -msgstr "" +msgstr "複数のファイルを並行してアップロード" #: Library/Main/Strings.cs:118 msgid "" @@ -2838,10 +2996,11 @@ msgid "" "process. This option can be used to ensure that each operation is performed " "on a seperate connection" msgstr "" +"Duplicatiは、ログインを1度だけ行うことによって処理を高速化するために、1個の接続で複数の操作を実行します。このオプションで、それぞれの操作を個別の接続で実行するように設定できます。" #: Library/Main/Strings.cs:119 msgid "Do not re-use connections" -msgstr "" +msgstr "接続を再利用しない" #: Library/Main/Strings.cs:120 msgid "" @@ -2849,10 +3008,11 @@ msgid "" "number of retries. Enable this option to have the error messages displayed " "when a retry is performed." msgstr "" +"エラーが発生した場合、Duplicatiはエラーを表示せず、再試行した回数だけを報告します。このオプションを有効にすると、再試行が行われた際にエラーメッセージを表示させることができます。" #: Library/Main/Strings.cs:121 msgid "Show error messages when a retry is performed" -msgstr "" +msgstr "再試行が行われた際にエラーメッセージを表示" #: Library/Main/Strings.cs:122 msgid "" @@ -2860,10 +3020,11 @@ msgid "" "backup data is used to verify that a backup was executed, this option will " "make Duplicati upload a backupset even if it is empty" msgstr "" +"変更されたファイルが無い場合、Duplicatiはバックアップのセットをアップロードしません。バックアップのデータを使って、バックアップが実行されたことを検証する場合、このオプションで、バックアップのセットが空だったとしても、Duplicatiにバックアップのセットをアップロードするように設定できます。" #: Library/Main/Strings.cs:123 msgid "Upload empty backup files" -msgstr "" +msgstr "空のバックアップファイルをアップロード" #: Library/Main/Strings.cs:124 msgid "" @@ -2890,7 +3051,7 @@ msgstr "" #: Library/Main/Strings.cs:128 msgid "Symlink handling" -msgstr "" +msgstr "シンボリックリンクの扱い方" #: Library/Main/Strings.cs:129 #, csharp-format @@ -2906,7 +3067,7 @@ msgstr "" #: Library/Main/Strings.cs:130 msgid "Hardlink handling" -msgstr "" +msgstr "ハードリンクの扱い方" #: Library/Main/Strings.cs:131 #, csharp-format @@ -2920,7 +3081,7 @@ msgstr "" #: Library/Main/Strings.cs:132 msgid "Exclude files by attribute" -msgstr "" +msgstr "属性でファイルを除外" #: Library/Main/Strings.cs:133 #, csharp-format @@ -2946,11 +3107,11 @@ msgstr "" msgid "" "A display name that is attached to this backup. Can be used to identify the " "backup when sending mail or running scripts." -msgstr "" +msgstr "バックアップに与えられる表示名。電子メールを送信したり、スクリプトを実行したりする際に、バックアップを一意に特定するのに使用できます。" #: Library/Main/Strings.cs:137 msgid "Name of the backup" -msgstr "" +msgstr "バックアップの名称" #: Library/Main/Strings.cs:138 #, csharp-format @@ -2978,7 +3139,7 @@ msgstr "" #: Library/Main/Strings.cs:141 msgid "Block size used in hashing" -msgstr "" +msgstr "ハッシュ化に使用するブロックのサイズ" #: Library/Main/Strings.cs:142 msgid "" @@ -2986,15 +3147,16 @@ msgid "" "have changed. This is usually only activated in combination with a " "filesystem watcher that keeps track of file changes." msgstr "" +"このオプションで、変更が検知されたファイルのみにスキャンを限定できます。これは通常、ファイルの変更を監視するファイルシステムの監視機能と併用する場合にのみ機能します。" #: Library/Main/Strings.cs:143 msgid "List of files to examine for changes" -msgstr "" +msgstr "変更を確認するファイルのリスト" #: Library/Main/Strings.cs:144 msgid "" "Path to the file containing the local cache of the remote file database" -msgstr "" +msgstr "リモートのファイルデータベースのローカルのキャッシュを含むファイルのパス" #: Library/Main/Strings.cs:145 msgid "Path to the local state database" @@ -3005,11 +3167,11 @@ msgstr "" msgid "" "This option can be used to supply a list of deleted files. This option will " "be ignored unless the option --{0} is also set." -msgstr "" +msgstr "削除したファイルの一覧の指定に使用できます。--{0}が併せて設定されていない限り、このオプションは無視されます。" #: Library/Main/Strings.cs:147 msgid "List of deleted files" -msgstr "" +msgstr "削除されたファイルの一覧" #: Library/Main/Strings.cs:148 msgid "" @@ -3024,11 +3186,11 @@ msgstr "" #: Library/Main/Strings.cs:150 msgid "" "This option can be used to increase speed in exchange for extra memory use." -msgstr "" +msgstr "このオプションでメモリーを追加で使用することにより、速度を高めることができます。" #: Library/Main/Strings.cs:151 msgid "Store an in-memory block cache" -msgstr "" +msgstr "メモリー内のブロックのキャッシュを保存" #: Library/Main/Strings.cs:152 msgid "" @@ -3036,6 +3198,7 @@ msgid "" "filelist on startup. The intended usage for this option is to work correctly" " in cases where the filelisting is broken or unavailable." msgstr "" +"このフラグを設定すると、起動時にローカルのデータベースとリモートのファイル一覧は比較されません。ファイルの一覧表示が適切に機能しない場合、このオプションが役立つ可能性があります。" #: Library/Main/Strings.cs:153 msgid "Do not query backend at startup" @@ -3049,10 +3212,11 @@ msgid "" "tradeoff is that larger index files take up more remote space and which may " "never be used." msgstr "" +"インデックスファイルを使うと、ローカルのデータベースが存在しない場合に、dblockファイルをダウンロードする必要を制限することができます。インデックスファイルに多くの情報が記録されるほど、操作はデータベースを使わず、より一層高速に実行されます。ただし、インデックスファイルのサイズが大きくなると、リモートの保存領域の使用量が増えてしまうため、注意して使用してください。" #: Library/Main/Strings.cs:155 msgid "Determines usage of index files" -msgstr "" +msgstr "インデックスファイルを使用" #: Library/Main/Strings.cs:156 msgid "" @@ -3061,20 +3225,21 @@ msgid "" "contain before being reclaimed. This value is a percentage used on each " "volume and the total storage." msgstr "" +"ファイルが変更されるにつれて、リモートのバックアップ先にある一部のファイルは不要になることがあります。このオプションで、バックアップ先で余分に使用されている保存領域を、再度使用可能に設定するまで、どの程度まで許容するか調節できます。数値には、各ボリュームと保存領域全体で使用される割合を百分率(パーセント)で指定してください。" #: Library/Main/Strings.cs:157 msgid "The maximum wasted space in percent" -msgstr "" +msgstr "余分に使用されている保存領域を許容する程度を百分率(パーセント)で指定" #: Library/Main/Strings.cs:158 msgid "" "This option can be used to experiment with different settings and observe " "the outcome without changing actual files." -msgstr "" +msgstr "このオプションを使うと、実際にファイルを変更することなく、異なる設定を試して、その結果を確認することができます。" #: Library/Main/Strings.cs:159 msgid "Does not perform any modifications" -msgstr "" +msgstr "いかなる変更も実行しない" #: Library/Main/Strings.cs:160 msgid "" @@ -3082,10 +3247,11 @@ msgid "" "hash algorithm with smaller or larger hash size, for performance or storage " "space reasons." msgstr "" +"これは非常に高度な設定です!このオプションで、性能または保存領域のサイズの観点から、ハッシュのサイズが異なるブロック用ハッシュアルゴリズムを選択できます。" #: Library/Main/Strings.cs:161 msgid "The hash algorithm used on blocks" -msgstr "" +msgstr "ブロックに使用するハッシュ化アルゴリズム" #: Library/Main/Strings.cs:162 msgid "" @@ -3093,10 +3259,11 @@ msgid "" "hash algorithm with smaller or larger hash size, for performance or storage " "space reasons." msgstr "" +"これは非常に高度な設定です!このオプションで、性能または保存領域のサイズの観点から、ハッシュのサイズが異なるファイル用ハッシュアルゴリズムを選択できます。" #: Library/Main/Strings.cs:163 msgid "The hash algorithm used on files" -msgstr "" +msgstr "ファイルに使用するハッシュ化アルゴリズム" #: Library/Main/Strings.cs:164 msgid "" @@ -3105,10 +3272,11 @@ msgid "" "Use this option to disable such automatic compacting and only compact when " "running the compact command." msgstr "" +"バックアップ中に小さいサイズのファイルが大量に検知された場合、または、バックアップを削除した後で余分に使用されている保存領域が検知された場合には、リモートのデータを圧縮します。このオプションで、自動圧縮を無効にし、圧縮用のコマンドを実行した場合にのみ圧縮を行うよう設定できます。" #: Library/Main/Strings.cs:165 msgid "Disable automatic compacting" -msgstr "" +msgstr "自動圧縮を無効にする" #: Library/Main/Strings.cs:166 msgid "" @@ -3120,7 +3288,7 @@ msgstr "" #: Library/Main/Strings.cs:167 msgid "Volume size threshold" -msgstr "" +msgstr "ボリュームのサイズの閾値" #: Library/Main/Strings.cs:168 msgid "" @@ -3131,7 +3299,7 @@ msgstr "" #: Library/Main/Strings.cs:169 msgid "Maximum number of small volumes" -msgstr "" +msgstr "小サイズのボリュームの最大数" #: Library/Main/Strings.cs:170 msgid "" @@ -3142,11 +3310,11 @@ msgstr "" #: Library/Main/Strings.cs:171 msgid "Use local file data when restoring" -msgstr "" +msgstr "復元時にローカルのファイルデータを使用" #: Library/Main/Strings.cs:172 msgid "Disables the local database" -msgstr "" +msgstr "ローカルのデータベースを無効にする" #: Library/Main/Strings.cs:173 msgid "" @@ -3154,28 +3322,29 @@ msgid "" "skipped. This is usually slower, but can be used to verify the actual " "contents of the remote store" msgstr "" +"内容を一覧表示したり、ファイルを復元したりする場合、ローカルのデータベースをスキップすることができます。スキップすると、処理は通常遅くなりますが、リモートに保存している実際の内容を検証することができます。" #: Library/Main/Strings.cs:174 msgid "Keep a number of versions" -msgstr "" +msgstr "維持するバージョン数" #: Library/Main/Strings.cs:175 msgid "" "Use this option to set number of versions to keep, supply -1 to keep all " "versions" -msgstr "" +msgstr "このオプションで、維持するバージョンの数を設定できます。-1を指定すると全てのバージョンを維持します" #: Library/Main/Strings.cs:176 msgid "Keep all versions within a timespan" -msgstr "" +msgstr "特定の期間の全てのバックアップを維持" #: Library/Main/Strings.cs:177 msgid "Use this option to set the timespan in which backups are kept." -msgstr "" +msgstr "このオプションで、バックアップを保存する期間を設定できます。" #: Library/Main/Strings.cs:178 msgid "Reduce number of versions by deleting old intermediate backups" -msgstr "" +msgstr "古い中間のバックアップを削除してバージョンの数を減らす" #: Library/Main/Strings.cs:179 msgid "" @@ -3191,31 +3360,32 @@ msgstr "" #: Library/Main/Strings.cs:180 msgid "Ignore missing source elements" -msgstr "" +msgstr "欠けているバックアップ元の要素を無視" #: Library/Main/Strings.cs:181 msgid "Use this option to continue even if some source entries are missing." -msgstr "" +msgstr "このオプションを使うと、バックアップ元のエントリーが欠けている場合でも続行できます。" #: Library/Main/Strings.cs:182 msgid "Overwrite files when restoring" -msgstr "" +msgstr "復元時にファイルを上書き" #: Library/Main/Strings.cs:183 msgid "" "Use this option to overwrite target files when restoring, if this option is " "not set the files will be restored with a timestamp and a number appended." msgstr "" +"このオプションを有効にすると、ファイルを復元する際に、復元先にあるファイルを上書きします。このオプションを無効にすると、タイムスタンプと数字をファイル名に付けて、ファイルを復元します。" #: Library/Main/Strings.cs:184 msgid "Output more progress information" -msgstr "" +msgstr "進捗状況に関するより詳細な情報を出力" #: Library/Main/Strings.cs:185 msgid "" "Use this option to increase the amount of output generated when running an " "option. Generally this option will produce a line for each file processed." -msgstr "" +msgstr "このオプションで、進捗状況に関して出力するデータの量を増やすことができます。通常、処理した各ファイルについて、情報を1行ずつ出力します。" #: Library/Main/Strings.cs:186 msgid "Set a log-level for the desired output method instead" @@ -3223,17 +3393,17 @@ msgstr "" #: Library/Main/Strings.cs:187 msgid "Output full results" -msgstr "" +msgstr "完全な結果を出力" #: Library/Main/Strings.cs:188 msgid "" "Use this option to increase the amount of output generated as the result of " "the operation, including all filenames." -msgstr "" +msgstr "このオプションで、全てのファイル名を含めて、操作により生成される出力の量を増やすことができます。" #: Library/Main/Strings.cs:189 msgid "Determine if verification files are uploaded" -msgstr "" +msgstr "検証ファイルをアップロードするか否かを決定" #: Library/Main/Strings.cs:190 msgid "" @@ -3242,10 +3412,11 @@ msgid "" "of all the remote files and can be used to verify the integrity of the " "files." msgstr "" +"このオプションで、リモートの保存領域の変更後に検証用のファイルをアップロードすることができます。ファイルは暗号化されておらず、全てのリモートのファイルのSHA256によるハッシュ値を含んでおり、ファイルの整合性の検証に利用できます。" #: Library/Main/Strings.cs:191 msgid "The number of samples to test after a backup" -msgstr "" +msgstr "バックアップ後にテストするサンプルの数" #: Library/Main/Strings.cs:192 #, csharp-format @@ -3256,10 +3427,13 @@ msgid "" "samples tested is the maximum implied by the two options. If this value is " "set to 0 or the option --{0} is set, no remote files are verified" msgstr "" +"バックアップが完了した後で、一部のファイル(dblock、dindex、dlist)がリモートのバックエンドから検証用に選択されます。このオプションで、検証するファイル数を変更できます。backup-" +"test-" +"percentageのオプションが同時に指定されている場合は、テストするサンプル数の指定の方が優先されます。この値を0に設定するか、あるいはオプションの--{0}が設定されている場合は、リモートのファイルは一切検証しません。" #: Library/Main/Strings.cs:193 msgid "The percentage of samples to test after a backup" -msgstr "" +msgstr "バックアップ後にテストするサンプルの割合" #: Library/Main/Strings.cs:194 msgid "" @@ -3270,10 +3444,13 @@ msgid "" "implied by the two options. If the no-backend-verification option is " "provided, no remote files are verified." msgstr "" +"バックアップが完了した後で、一部のファイル(dblock、dindex、dlist)がリモートのバックエンドから検証用に選択されます。このオプションで、検証するファイルの割合(0から100まで)を指定できます。backup-" +"test-samplesのオプションが同時に指定されている場合は、テストするサンプル数の指定の方が優先されます。オプションのno-backend-" +"verificationが設定されている場合は、リモートのファイルは一切検証しません。" #: Library/Main/Strings.cs:195 msgid "Activates in-depth verification of files" -msgstr "" +msgstr "ファイルの詳細な検証を有効にする" #: Library/Main/Strings.cs:196 #, csharp-format @@ -3285,40 +3462,42 @@ msgid "" "--{0} is set, no remote files are verified. This option is automatically set" " when then verification is performed directly." msgstr "" +"バックアップが完了した後で、一部のファイル(dblock、dindex、dlist)がリモートのバックエンドから検証用に選択されます。このオプションを有効にすると、単純にハッシュ値を検証する代わりに、ファイルを復号してそれぞれのボリュームの内容を検査し、完全な検証を実行します。オプションの--{0}が設定されている場合は、リモートのファイルは一切検証しません。検証が直接実行される場合は、このオプションは自動的に設定されます。" #: Library/Main/Strings.cs:197 msgid "Size of the file read buffer" -msgstr "" +msgstr "ファイルの読み込みバッファーのサイズ" #: Library/Main/Strings.cs:198 msgid "" "Use this size to control how many bytes are read from a file before " "processing" -msgstr "" +msgstr "このサイズを使用して、ファイルを処理する前に読み込むバイト数を調整できます" #: Library/Main/Strings.cs:199 msgid "Allow the passphrase to change" -msgstr "" +msgstr "パスフレーズの変更を許可" #: Library/Main/Strings.cs:200 msgid "" "Use this option to allow the passphrase to change, note that this option is " "not permitted for a backup or repair operation" -msgstr "" +msgstr "このオプションでパスフレーズを変更できます。なお、このオプションはバックアップまたは修復の操作に関しては許可されていません" #: Library/Main/Strings.cs:201 msgid "List only filesets" -msgstr "" +msgstr "ファイルのセットのみを一覧表示" #: Library/Main/Strings.cs:202 msgid "" "Use this option to only list filesets and avoid traversing file names and " "other metadata which slows down the process" msgstr "" +"このオプションを使用すると、処理速度を改善するため、ファイルのセットの一覧表示だけを行い、ファイル名やその他のメタデータのスキャンは行いません" #: Library/Main/Strings.cs:204 msgid "Don't store metadata" -msgstr "" +msgstr "メタデータを保存しない" #: Library/Main/Strings.cs:205 msgid "" @@ -3326,20 +3505,21 @@ msgid "" " Disabling metadata storage will speed up the backup and restore operations," " but does not affect file size much." msgstr "" +"このオプションで、ファイルのタイムスタンプなどのメタデータの保存を無効にできます。メタデータの保存を無効にすると、バックアップと復元の処理速度は向上しますが、ファイルのサイズにはさほど影響をあたえません。" #: Library/Main/Strings.cs:206 msgid "Restore file permissions" -msgstr "" +msgstr "ファイルの権限を復元" #: Library/Main/Strings.cs:207 msgid "" "By default permissions are not restored as they might prevent you from " "accessing your files. Use this option to restore the permissions as well." -msgstr "" +msgstr "ファイルにアクセスできなくなる可能性があるため、既定では権限は復元されません。このオプションを使用すると、権限も復元できます。" #: Library/Main/Strings.cs:208 msgid "Skip restored file check" -msgstr "" +msgstr "復元したファイルの確認をスキップ" #: Library/Main/Strings.cs:209 msgid "" @@ -3347,10 +3527,11 @@ msgid "" "verify that the restore was successful. Use this option to disable the check" " and avoid waiting for the verification." msgstr "" +"ファイルを復元した後、復元が正常に行われたことを検証するために、全てのファイルのハッシュ値が確認されます。このオプションを使用すると、ハッシュ値の確認と、復元の検証を無効にできます。" #: Library/Main/Strings.cs:210 msgid "Do not use local data" -msgstr "" +msgstr "ローカルのデータを使用しない" #: Library/Main/Strings.cs:211 msgid "" @@ -3358,20 +3539,22 @@ msgid "" "of downloaded data. Use this option to skip this optimization and only use " "remote data." msgstr "" +"Duplicatiは、ダウンロードするデータ量を最小にするため、バックアップ元のファイルのデータを使用するよう試みます。このオプションでそれを無効とし、リモートのデータのみを使用するよう設定できます。" #: Library/Main/Strings.cs:212 msgid "Check block hashes" -msgstr "" +msgstr "ブロックのハッシュ値を確認" #: Library/Main/Strings.cs:213 msgid "" "Use this option to increase verification by checking the hash of blocks read" " from a volume before patching restored files with the data." msgstr "" +"このオプションを使うと、復元したファイルをデータで修復する前に、ボリュームから読み込んだブロックのハッシュ値を確認することで、検証を強化することができます。" #: Library/Main/Strings.cs:216 msgid "Repair database with paths" -msgstr "" +msgstr "データベースをパスで修復" #: Library/Main/Strings.cs:217 msgid "" @@ -3380,10 +3563,11 @@ msgid "" "locate certain content without needing to reconstruct all information. The " "resulting database can be searched, but cannot be used to restore data with." msgstr "" +"このオプションで、パスの情報しか含まないデータベースを検索可能なものとしてローカルで作成します。これは、全ての情報を再構築する必要がない場合に、ファイルの場所を特定するためのデータベースを迅速に作成するために使用できます。作成したデータベースを使ってファイルの検索を行うことはできますが、ファイルを実際に復元することはできません。" #: Library/Main/Strings.cs:218 msgid "Force the locale setting" -msgstr "" +msgstr "ロケールの設定を強制" #: Library/Main/Strings.cs:219 msgid "" @@ -3392,10 +3576,11 @@ msgid "" " in another language. This option can be used to set the locale. Supply a " "blank string to choose the \"Invariant Culture\"." msgstr "" +"既定では、システムのロケールの設定が使用されますが、別の言語でメッセージを受信する際など、場合によっては、別のロケールで実行したくなることがあるかもしれません。このオプションで、ロケールを設定できます。空白にするとロケールの設定は行われません。" #: Library/Main/Strings.cs:220 msgid "Forces the display of the actual date instead of calendar date" -msgstr "" +msgstr "カレンダーの日付に代えて実際の日付の表示を強制" #: Library/Main/Strings.cs:221 msgid "" @@ -3403,10 +3588,12 @@ msgid "" " \"Last Thursday\". By setting this option, only the actual dates are " "displayed, \"Nov 12, 2018, 8:01 AM\" for example." msgstr "" +"既定では、日付は「今日」や「先週の木曜日」など、カレンダーの形式で表示されます。このオプションを設定すると、例えば「Nov 12, 2018, 8:01" +" AM」のように、実際の日時のみが表示されます。" #: Library/Main/Strings.cs:222 msgid "Handle file communication with backend using threaded pipes" -msgstr "" +msgstr "スレッド化したパイプを使用してバックエンドとのファイルの通信を扱う" #: Library/Main/Strings.cs:223 msgid "" @@ -3414,36 +3601,37 @@ msgid "" " can significantly speed up backend operations depending on the hardware " "you're running on and the transfer rate of your backend." msgstr "" +"このオプションでアップロードとダウンロードのマルチスレッド化を無効にできます。使用しているハードウェアと、バックエンドの転送速度に応じて、バックエンドの処理速度を大幅に向上させられる場合があります。" #: Library/Main/Strings.cs:224 msgid "Limit number of concurrent threads" -msgstr "" +msgstr "並行するスレッドの数を制限" #: Library/Main/Strings.cs:225 msgid "" "Use this option to set the maximum number of threads used. Setting this " "value to zero or less will dynamically balance the number of active threads " "to fit the hardware." -msgstr "" +msgstr "スレッドの最大使用数を設定できます。0以下に設定すると、アクティブなスレッドの数を、ハードウェアに適した数に動的に設定できます。" #: Library/Main/Strings.cs:226 msgid "Specify the number of concurrent hashing processes" -msgstr "" +msgstr "並行するハッシュ化のプロセスの数を指定" #: Library/Main/Strings.cs:227 msgid "" "Use this option to set the number of processes that perform hashing of data." -msgstr "" +msgstr "このオプションで、データのハッシュ化を行うプロセスの数を設定できます。" #: Library/Main/Strings.cs:228 msgid "Specify the number of concurrent compression processes" -msgstr "" +msgstr "並行する圧縮のプロセスの数を指定" #: Library/Main/Strings.cs:229 msgid "" "Use this option to set the number of processes that perform compression of " "output data." -msgstr "" +msgstr "このオプションで、出力データの圧縮を行うプロセスの数を設定できます。" #: Library/Main/Strings.cs:230 msgid "" @@ -3466,11 +3654,11 @@ msgstr "" #: Library/Main/Strings.cs:233 msgid "Checks only file lastmodified" -msgstr "" +msgstr "ファイルの最終更新日時のみを確認" #: Library/Main/Strings.cs:234 msgid "Disables path compression on restore" -msgstr "" +msgstr "復元時にパスの圧縮を無効にする" #: Library/Main/Strings.cs:235 msgid "" @@ -3479,10 +3667,11 @@ msgid "" "flag to skip this compression, such that the entire original folder " "structure is preserved, including upper level empty folders." msgstr "" +"バックアップの部分を新しいフォルダーに復元する場合には、空のフォルダーの階層が生成されないよう、出来る限り最短のパスが使用されます。このフラグでパスの圧縮をスキップして、上位の空のフォルダーも含めた、元々のフォルダーの全体の構造を保存することができます。" #: Library/Main/Strings.cs:236 msgid "Allow removing all filesets" -msgstr "" +msgstr "全てのファイルのセットの削除を許可" #: Library/Main/Strings.cs:237 msgid "" @@ -3490,10 +3679,11 @@ msgid "" "sure that all remote data is not deleted by a configuration mistake. Use " "this flag to disable that protection, such that all filesets can be deleted." msgstr "" +"既定では、最後のファイルのセットは削除できません。これは設定ミスで全てのリモートのデータが削除されてしまうことに対する予防のためです。このフラグで保護を無効にすると、全てのファイルセットを削除できるようになります。" #: Library/Main/Strings.cs:238 msgid "Allow automatic rebuilding of local database to save space." -msgstr "" +msgstr "スペースの節約のためローカルのデータベースを自動的に再構築することを許可。" #: Library/Main/Strings.cs:239 msgid "" @@ -3504,6 +3694,7 @@ msgid "" "this to true will allow Duplicati to perform VACUUM operations at its " "discretion." msgstr "" +"ローカルのデータベースを変更する操作の中には、未使用のエントリーを残してしまうものがあります。これらのエントリーは、VACUUMを実行するまで、ハードディスクからは削除されません。VACUUMを実行すると、長期的にはディスクの保存領域を節約できますが、データベースにある全ての正常なエントリーのコピーを一時的に作成する必要があります。このオプションをtrueに設定すると、DuplicatiがVACUUMを自らの判断で行えるようになります。" #: Library/Main/Strings.cs:240 msgid "Disable the read-ahead scanner" @@ -3519,7 +3710,7 @@ msgstr "" #: Library/Main/Strings.cs:242 msgid "Disable filelist consistency checks" -msgstr "" +msgstr "ファイルの一覧の一貫性の確認を無効にする" #: Library/Main/Strings.cs:243 msgid "" @@ -3527,10 +3718,11 @@ msgid "" "large part of the backup time. If you disable the checks, make sure you run " "regular check commands to ensure that everything is working as expected." msgstr "" +"多くのファイルセットがあるバックアップでは、検証作業がバックアップに掛かる時間の大部分を占めることがあります。この確認を無効にした場合は、定期的に確認コマンドを実行して、全てが問題なく機能していることをか確認してください。" #: Library/Main/Strings.cs:244 msgid "Disable the backup when on battery power" -msgstr "" +msgstr "バッテリーで動作している際にバックアップを無効にする" #: Library/Main/Strings.cs:245 msgid "" @@ -3539,14 +3731,15 @@ msgid "" " still be run). If the detected power source is mains (i.e., AC) or " "unknown, then scheduled backups will proceed as normal." msgstr "" +"このフラグを有効にすると、システムがバッテリーで動作していることが検知された場合、予定されているバックアップは行いません(手動またはコマンドラインによるバックアップは実行します)。電源がメイン電源(交流など)または不明な場合、予定されているバックアップは通常通り行います。" #: Library/Main/Strings.cs:247 msgid "Log file information level" -msgstr "" +msgstr "ログファイルに記録する情報の水準" #: Library/Main/Strings.cs:248 msgid "Applies filters to the file log data" -msgstr "" +msgstr "ファイルのログデータにフィルターを適用" #: Library/Main/Strings.cs:249 #, csharp-format @@ -3557,14 +3750,15 @@ msgid "" "they start with '-'. Regular expressions are supported within hard braces. " "Example: \"+Path*{0}+*Mail*{0}-[.*DNS]\" " msgstr "" +"メッセージを取り除いたり含んだりするフィルターを設定できます。ログの水準は考慮されません。「{0}」で区切ると、複数のフィルターを設定できます。フィルターはログのタグについて設定され、半角ハイフンで始まるものについては除外されます。中括弧で正規表現をサポートします。例:「+Path*{0}+*Mail*{0}-[.*DNS]」" #: Library/Main/Strings.cs:250 msgid "Console information level" -msgstr "" +msgstr "コンソールに表示する情報の水準" #: Library/Main/Strings.cs:251 msgid "Applies filters to the console log data" -msgstr "" +msgstr "フィルターをコンソールのログデータに適用" #: Library/Main/Strings.cs:254 msgid "Sets the process to use low IO priority" @@ -3591,7 +3785,7 @@ msgstr "" #: Library/Main/Strings.cs:266 msgid "Activates logging of all database queries" -msgstr "" +msgstr "データベースの全てのクエリーに関するログを記録" #: Library/Main/Strings.cs:267 #, csharp-format @@ -3601,6 +3795,8 @@ msgid "" "remember to set either --{0}={2} or --{1}={2} to report the additional log " "data" msgstr "" +"バックアップの性能を改善するために、既定では、頻繁に行われるデータベースのクエリーに関するログは記録されません。このオプションを有効にすると、データベースの全てのクエリーに関するログを記録します。その際には、追加のログデータを報告するために、--{0}={2}" +" または --{1}={2} を忘れずに設定してください" #: Library/Main/Strings.cs:279 #, csharp-format @@ -3612,21 +3808,21 @@ msgstr "" #: Library/Main/Strings.cs:280 #, csharp-format msgid "The cryptolibrary does not support the hash algorithm {0}" -msgstr "" +msgstr "暗号化ライブラリーはハッシュ化アルゴリズムの{0}をサポートしていません" #: Library/Main/Strings.cs:281 msgid "The passphrase cannot be changed for an existing backup" -msgstr "" +msgstr "既存のバックアップのパスフレーズは変更できません" #: Library/Main/Strings.cs:282 #, csharp-format msgid "Failed to create a snapshot: {0}" -msgstr "" +msgstr "スナップショットを作成できませんでした: {0}" #: Library/Main/BackendManager.cs:589 #, csharp-format msgid "Failed to delete file {0}, testing if file exists" -msgstr "" +msgstr "ファイル {0} を削除できませんでした。ファイルが存在するかテストしています" #: Library/Main/BackendManager.cs:595 #, csharp-format @@ -3636,7 +3832,7 @@ msgstr "" #: Library/Main/BackendManager.cs:600 #, csharp-format msgid "Failed to recover from error deleting file {0}" -msgstr "" +msgstr "ファイル {0} を削除する際に発生したエラーから回復できませんでした" #: Library/Main/BackendManager.cs:1102 #, csharp-format @@ -3655,33 +3851,34 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:8 msgid "Confirm encryption passphrase" -msgstr "" +msgstr "暗号化用パスフレーズを確認" #: Library/Modules/Builtin/Strings.cs:9 msgid "" "This module will ask the user for an encryption password on the command line" " unless encryption is disabled or the password is supplied by other means" msgstr "" +"このモジュールは、暗号化が無効になっているか、パスワードが別の方法で指定されているのでない限り、コマンドラインで暗号化用のパスワードをユーザーに確認します" #: Library/Modules/Builtin/Strings.cs:10 msgid "Password prompt" -msgstr "" +msgstr "パスワードの入力を要求" #: Library/Modules/Builtin/Strings.cs:11 msgid "Empty passphrases are not allowed" -msgstr "" +msgstr "パスフレーズを入力してください" #: Library/Modules/Builtin/Strings.cs:12 msgid "Enter encryption passphrase" -msgstr "パスフレーズを入力" +msgstr "暗号化用のパスフレーズを入力してください" #: Library/Modules/Builtin/Strings.cs:13 msgid "The passphrases do not match" -msgstr "" +msgstr "パスフレーズが一致しません" #: Library/Modules/Builtin/Strings.cs:14 msgid "Read passphrase from STDIN" -msgstr "" +msgstr "STDINからパスフレーズを読み込む" #: Library/Modules/Builtin/Strings.cs:15 msgid "" @@ -3700,7 +3897,7 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:19 msgid "Check for SSL certificates" -msgstr "" +msgstr "SSL証明書を確認" #: Library/Modules/Builtin/Strings.cs:20 #, csharp-format @@ -3711,6 +3908,11 @@ msgid "" "derivatives{0} curl -O https://curl.haxx.se/ca/cacert.pem; cert-sync " "--user cacert.pem; rm cacert.pem #for MacOS{0}Read more: {1}" msgstr "" +"証明書が見つかりません。以下のコマンドのいずれかでインストールできます:{0} cert-sync /etc/ssl/certs/ca-" +"certificates.crt #Debianベースのシステムの場合{0} cert-sync /etc/pki/tls/certs/ca-" +"bundle.crt #RedHat系のシステムの場合{0} curl -O " +"https://curl.haxx.se/ca/cacert.pem; cert-sync --user cacert.pem; rm " +"cacert.pem #macOSの場合{0}詳細を確認: {1}" #: Library/Modules/Builtin/Strings.cs:23 msgid "" @@ -3724,10 +3926,12 @@ msgid "" "it may have. Please use --accept-specified-ssl-hash instead, whenever " "possible." msgstr "" +"このオプションを使用すると、エラーの有無にかかわらず、いかなるサーバー証明書も受け入れます。可能な場合は--accept-specified-ssl-" +"hashを代わりに使用してください。" #: Library/Modules/Builtin/Strings.cs:25 msgid "Accept any server certificate" -msgstr "" +msgstr "任意のサーバー証明書を許可" #: Library/Modules/Builtin/Strings.cs:26 msgid "" @@ -3736,10 +3940,11 @@ msgid "" "anyway. The hash value must be entered in hex format without spaces or " "colons. You can enter multiple hashes separated by commas." msgstr "" +"サーバーの証明書が不正であると報告された場合(例えば、自己署名証明書が使われている場合)に、証明書のハッシュ値(SHA1)を指定して証明書を承認することができます。ハッシュ値はスペースやコロンを入れずに、hexフォーマットで入力してください。コンマで区切り、複数のハッシュ値を入力できます。" #: Library/Modules/Builtin/Strings.cs:27 msgid "Optionally accept a known SSL certificate" -msgstr "" +msgstr "既知のSSL証明書を許可(オプション)" #: Library/Modules/Builtin/Strings.cs:28 msgid "" @@ -3747,28 +3952,33 @@ msgid "" "which allows some optimizations when authenticating, but also breaks some " "web servers, causing them to report \"417 - Expectation failed\"" msgstr "" +"HTTPリクエストには既定で、「Expect: " +"100-Continue」のヘッダーが付けられます。このヘッダーにより、認証を行う際にいくつかの最適化が行われるようになりますが、一部のウェブサーバーでは不具合を起こして「417" +" - Expectation failed」を報告することがあります。" #: Library/Modules/Builtin/Strings.cs:29 msgid "Disable the expect header" -msgstr "" +msgstr "Expectヘッダーを無効にする" #: Library/Modules/Builtin/Strings.cs:30 msgid "" "By default the http requests use the RFC 896 nagling algorithm to support " "transfer of small packages more efficiently." msgstr "" +"HTTPリクエストは既定で、RFC " +"896で定義されているNagleアルゴリズムを使用し、小さなサイズのパケットをより効率的に配送する仕組みになっています。" #: Library/Modules/Builtin/Strings.cs:31 msgid "Disable nagling" -msgstr "" +msgstr "Nagleアルゴリズムを無効にする" #: Library/Modules/Builtin/Strings.cs:32 msgid "Configure http requests" -msgstr "" +msgstr "HTTPのリクエストを設定" #: Library/Modules/Builtin/Strings.cs:33 msgid "Alternate OAuth URL" -msgstr "" +msgstr "OAuthの代替URL" #: Library/Modules/Builtin/Strings.cs:34 msgid "" @@ -3776,10 +3986,12 @@ msgid "" "If you have set up your own Duplicati OAuth server, you can supply the " "refresh url." msgstr "" +"DuplicatiはOAuthによる認証フローをサポートする外部サーバーを使用します。あなた自身のDuplicati " +"OAuthサーバーを設定した場合は、ここに更新URLを指定してください。" #: Library/Modules/Builtin/Strings.cs:35 msgid "Sets allowed SSL versions" -msgstr "" +msgstr "許可するSSLのバージョンを設定" #: Library/Modules/Builtin/Strings.cs:36 msgid "" @@ -3787,16 +3999,18 @@ msgid "" "option and should only be used if you want to enhance security or work " "around an issue with a particular SSL protocol." msgstr "" +"許可するデフォルトのSSLのバージョンを変更できます。これは高度な設定です。セキュリティーを向上したい場合、または、特定のSSLのプロトコルでの問題を回避したい場合にのみ使用してください。" #: Library/Modules/Builtin/Strings.cs:37 msgid "Sets the default operation timeout" -msgstr "" +msgstr "操作に関する既定のタイムアウトの値を設定" #: Library/Modules/Builtin/Strings.cs:38 msgid "" "This option changes the default timeout for any HTTP request, the time " "covers the entire operation from initial packet to shutdown" msgstr "" +"HTTPリクエストのタイムアウトの既定の値を変更できます。タイムアウトに達するまでの時間には、最初のパケットから終了までの操作全体が含まれます" #: Library/Modules/Builtin/Strings.cs:39 msgid "Sets readwrite" @@ -3808,10 +4022,11 @@ msgid "" "used to detect a stalled requests, and this option configures the maximum " "time between activity on a connection." msgstr "" +"データの読み書きに関するタイムアウトの既定の値を変更できます。タイムアウトは、処理が停止しているリクエストの検知に使用されます。このオプションを使うと、接続している回線で行われる処理間で許容される最大の時間を設定できます。" #: Library/Modules/Builtin/Strings.cs:41 msgid "Sets HTTP buffering" -msgstr "" +msgstr "HTTPバッファリングを設定" #: Library/Modules/Builtin/Strings.cs:42 #, csharp-format @@ -3819,55 +4034,56 @@ msgid "" "This option sets the HTTP buffering. Setting this to \"{0}\" can cause " "memory leaks, but can also improve performance in some cases." msgstr "" +"このオプションはHTTPバッファリングを設定します。「{0}」に設定するとメモリーのリークが生じる可能性がありますが、パフォーマンスが改善される場合もあります。" #: Library/Modules/Builtin/Strings.cs:45 msgid "" "This module works internaly to parse source parameters to backup Hyper-V " "virtual machines" -msgstr "" +msgstr "このモジュールは、Hyper-V仮想マシンをバックアップするために、ソースパラメーターを解析します" #: Library/Modules/Builtin/Strings.cs:46 msgid "Configure Hyper-V module" -msgstr "" +msgstr "Hyper-Vモジュールを設定" #: Library/Modules/Builtin/Strings.cs:50 msgid "" "This module works internaly to parse source parameters to backup Microsoft " "SQL Server databases" -msgstr "" +msgstr "このモジュールは、Microsoft SQL Serverのデータベースをバックアップするために、ソースパラメーターを解析します" #: Library/Modules/Builtin/Strings.cs:51 msgid "Configure Microsoft SQL Server module" -msgstr "" +msgstr "Microsoft SQLサーバーモジュールを設定" #: Library/Modules/Builtin/Strings.cs:54 msgid "" "Executes a script before starting an operation, and again on completion" -msgstr "" +msgstr "バックアップの操作を開始する前と、バックアップの完了後に実行するスクリプトを設定できます。" #: Library/Modules/Builtin/Strings.cs:55 msgid "Run script" -msgstr "" +msgstr "スクリプトを実行" #: Library/Modules/Builtin/Strings.cs:56 msgid "" "Executes a script after performing an operation. The script will receive the" " operation results written to stdout." -msgstr "" +msgstr "バックアップの操作を行った後に実行するスクリプトを設定できます。スクリプトは、標準出力に書き込まれたバックアップの結果を受け取ります。" #: Library/Modules/Builtin/Strings.cs:57 msgid "Run a script on exit" -msgstr "" +msgstr "スクリプトを終了時に実行" #: Library/Modules/Builtin/Strings.cs:58 #, csharp-format msgid "The script \"{0}\" returned with exit code {1}" -msgstr "" +msgstr "スクリプトの「{0}」は終了コード {1} を返しました" #: Library/Modules/Builtin/Strings.cs:59 #, csharp-format msgid "The script \"{0}\" returned with exit code {1}{2}" -msgstr "" +msgstr "スクリプトの「{0}」は終了コード {1}{2} を返しました" #: Library/Modules/Builtin/Strings.cs:60 msgid "" @@ -3875,46 +4091,48 @@ msgid "" "until the script has completed or timed out. If the script returns a non-" "zero error code or times out, the operation will be aborted." msgstr "" +"バックアップの操作を行う前に実行するスクリプトを設定できます。スクリプトが完了するかタイムアウトになるまで、バックアップの操作は実行されません。スクリプトが0以外のエラーコードを返すか、タイムアウトになった場合、バックアップの操作は中断されます。" #: Library/Modules/Builtin/Strings.cs:61 msgid "Run a required script on startup" -msgstr "" +msgstr "必要なスクリプトを開始時に実行" #: Library/Modules/Builtin/Strings.cs:62 #: Library/Modules/Builtin/Strings.cs:185 msgid "Selects the output format for results" -msgstr "" +msgstr "結果の出力形式を選択" #: Library/Modules/Builtin/Strings.cs:63 #: Library/Modules/Builtin/Strings.cs:186 #, csharp-format msgid "Selects the output format for results. Available formats: {0}" -msgstr "" +msgstr "結果の出力形式を選択できます。利用可能なフォーマット:{0}" #: Library/Modules/Builtin/Strings.cs:64 #, csharp-format msgid "Error while executing script \"{0}\": {1}" -msgstr "" +msgstr "スクリプト「{0}」を実行する際にエラーが発生しました:{1}" #: Library/Modules/Builtin/Strings.cs:65 #, csharp-format msgid "Execution of the script \"{0}\" timed out" -msgstr "" +msgstr "スクリプト「{0}」の実行がタイムアウトしました" #: Library/Modules/Builtin/Strings.cs:66 msgid "" "Executes a script before performing an operation. The operation will block " "until the script has completed or timed out." msgstr "" +"バックアップの操作を行う前に実行するスクリプトを設定できます。スクリプトが完了するかタイムアウトになるまで、バックアップの操作は実行されません。" #: Library/Modules/Builtin/Strings.cs:67 msgid "Run a script on startup" -msgstr "" +msgstr "スクリプトを開始時に実行" #: Library/Modules/Builtin/Strings.cs:68 #, csharp-format msgid "The script \"{0}\" reported error messages: {1}" -msgstr "" +msgstr "スクリプト「{0}」はエラーメッセージを返しました:{1}" #: Library/Modules/Builtin/Strings.cs:69 msgid "" @@ -3922,25 +4140,26 @@ msgid "" "completed within this time, it will continue to execute but the operation " "will continue too, and no script output will be processed." msgstr "" +"スクリプトが実行できる最大の時間を設定。スクリプトがここで設定した時間内に完了しない場合、完了を待たずにバックアップの操作も継続します。また、スクリプトの実行結果も処理されません。" #: Library/Modules/Builtin/Strings.cs:70 msgid "Sets the script timeout" -msgstr "" +msgstr "スクリプトのタイムアウトを設定" #: Library/Modules/Builtin/Strings.cs:73 msgid "This module can send email after an operation completes" -msgstr "" +msgstr "このモジュールを使うと操作が完了した後で電子メールを送信できます" #: Library/Modules/Builtin/Strings.cs:74 msgid "Send mail" -msgstr "" +msgstr "メールを送信" #: Library/Modules/Builtin/Strings.cs:75 #, csharp-format msgid "" "Unable to find the destination mail server through MX lookup, please use the" " option {0} to specify what smtp server to use." -msgstr "" +msgstr "目的のメールサーバーをMXルックアップで見つけられません。オプションの{0}で、使用するSMTPサーバーを指定してください。" #: Library/Modules/Builtin/Strings.cs:76 msgid "" @@ -3957,15 +4176,15 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:85 msgid "The message body" -msgstr "" +msgstr "メッセージの本文" #: Library/Modules/Builtin/Strings.cs:86 msgid "The password used to authenticate with the SMTP server if required." -msgstr "" +msgstr "SMTPサーバーの認証が必要な場合に使用するパスワード。" #: Library/Modules/Builtin/Strings.cs:87 msgid "SMTP Password" -msgstr "" +msgstr "SMTPのパスワード" #: Library/Modules/Builtin/Strings.cs:88 msgid "" @@ -3977,17 +4196,17 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:92 msgid "Email recipient(s)" -msgstr "" +msgstr "電子メールの受信者" #: Library/Modules/Builtin/Strings.cs:93 msgid "" "By default, mail will only be sent after a Backup operation. Use this option" " to send mail for all operations." -msgstr "" +msgstr "既定では、メールはバックアップの操作の後にしか送信されません。このオプションで、全ての操作についてメールを送信することができます。" #: Library/Modules/Builtin/Strings.cs:94 msgid "Send email for all operations" -msgstr "" +msgstr "全ての操作に関して電子メールを送信" #: Library/Modules/Builtin/Strings.cs:95 msgid "" @@ -3998,10 +4217,16 @@ msgid "" "Mail Sender \n" "Mail Sender " msgstr "" +"電子メールの送信元のアドレス。ホストが指定されていない場合は、最初の受信者のホスト名を使用します。以下に許可されている形式の例を示します。\n" +"\n" +"sender\n" +"sender@example.com\n" +"メールの送信者 \n" +"メールの送信者 " #: Library/Modules/Builtin/Strings.cs:101 msgid "Email sender" -msgstr "" +msgstr "電子メールの送信者" #: Library/Modules/Builtin/Strings.cs:102 #, csharp-format @@ -4016,7 +4241,7 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:135 #: Library/Modules/Builtin/Strings.cs:165 msgid "The messages to send" -msgstr "" +msgstr "送信するメッセージ" #: Library/Modules/Builtin/Strings.cs:104 msgid "" @@ -4028,7 +4253,7 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:108 msgid "SMTP Url" -msgstr "" +msgstr "SMTPのURL" #: Library/Modules/Builtin/Strings.cs:109 #, csharp-format @@ -4039,20 +4264,20 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:110 msgid "The email subject" -msgstr "" +msgstr "メールの題名" #: Library/Modules/Builtin/Strings.cs:111 msgid "The username used to authenticate with the SMTP server if required." -msgstr "" +msgstr "SMTPサーバーの認証が必要な場合に使用するユーザー名。" #: Library/Modules/Builtin/Strings.cs:112 msgid "SMTP Username" -msgstr "" +msgstr "SMTPのユーザー名" #: Library/Modules/Builtin/Strings.cs:113 #, csharp-format msgid "Failed to send email: {0}" -msgstr "" +msgstr "電子メールを送信できませんでした: {0}" #: Library/Modules/Builtin/Strings.cs:114 #, csharp-format @@ -4067,7 +4292,7 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:116 #, csharp-format msgid "Email sent successfully using server: {0}" -msgstr "" +msgstr "サーバーを使用して電子メールを送信しました:{0}" #: Library/Modules/Builtin/Strings.cs:119 msgid "XMPP recipient email" @@ -4082,7 +4307,7 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:121 #: Library/Modules/Builtin/Strings.cs:151 msgid "The message template" -msgstr "" +msgstr "メッセージのひな型" #: Library/Modules/Builtin/Strings.cs:122 #: Library/Modules/Builtin/Strings.cs:152 @@ -4100,21 +4325,21 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:131 msgid "The XMPP username" -msgstr "" +msgstr "XMPPのユーザー名" #: Library/Modules/Builtin/Strings.cs:132 msgid "" "The username for the account that will send the message, including the " "hostname. I.e. \"account@jabber.org/Home\"" -msgstr "" +msgstr "メッセージの送信を行うアカウントのユーザー名。ホスト名も含めてください。例:「account@jabber.org/Home」" #: Library/Modules/Builtin/Strings.cs:133 msgid "The XMPP password" -msgstr "" +msgstr "XMPPのパスワード" #: Library/Modules/Builtin/Strings.cs:134 msgid "The password for the account that will send the message" -msgstr "" +msgstr "メッセージの送信を行うアカウントのパスワード" #: Library/Modules/Builtin/Strings.cs:136 #: Library/Modules/Builtin/Strings.cs:166 @@ -4127,46 +4352,46 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:138 #: Library/Modules/Builtin/Strings.cs:168 msgid "Send messages for all operations" -msgstr "" +msgstr "全ての操作に関してメッセージを送信" #: Library/Modules/Builtin/Strings.cs:139 #: Library/Modules/Builtin/Strings.cs:169 msgid "" "By default, messages will only be sent after a Backup operation. Use this " "option to send messages for all operations" -msgstr "" +msgstr "既定では、メッセージはバックアップの操作の後にしか送信されません。このオプションで、全ての操作についてメッセージを送信することができます。" #: Library/Modules/Builtin/Strings.cs:140 msgid "XMPP report module" -msgstr "" +msgstr "XMPPのレポートモジュール" #: Library/Modules/Builtin/Strings.cs:141 msgid "" "This module provides support for sending status reports via XMPP messages" -msgstr "" +msgstr "このモジュールを使用すると、状態に関する報告をXMPPによるメッセージで送信できるようになります" #: Library/Modules/Builtin/Strings.cs:142 msgid "Timeout occurred while logging in to jabber server" -msgstr "" +msgstr "Jabberサーバーのログイン中にタイムアウトになりました" #: Library/Modules/Builtin/Strings.cs:143 #, csharp-format msgid "Failed to send jabber message: {0}" -msgstr "" +msgstr "Jabberメッセージを送信できませんでした:{0}" #: Library/Modules/Builtin/Strings.cs:147 msgid "HTTP report module" -msgstr "" +msgstr "HTTPのレポートモジュール" #: Library/Modules/Builtin/Strings.cs:148 msgid "" "This module provides support for sending status reports via HTTP messages" -msgstr "" +msgstr "このモジュールを使用すると、状態に関する報告をHTTPによるメッセージで送信できるようになります" #: Library/Modules/Builtin/Strings.cs:149 #: Library/Modules/Builtin/Strings.cs:150 msgid "HTTP report url" -msgstr "" +msgstr "HTTPのレポートのURL" #: Library/Modules/Builtin/Strings.cs:161 msgid "The name of the parameter to send the message as" @@ -4189,15 +4414,15 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:170 #, csharp-format msgid "Failed to send http message: {0}" -msgstr "" +msgstr "HTTPメッセージを送信できませんでした:{0}" #: Library/Modules/Builtin/Strings.cs:171 msgid "Send data as JSON body" -msgstr "" +msgstr "データをJSON bodyとして送信" #: Library/Modules/Builtin/Strings.cs:172 msgid "Use this flag to send the result data as a JSON object" -msgstr "" +msgstr "このフラグを設定すると、結果のデータをJSONオブジェクトとして送信します" #: Library/Modules/Builtin/Strings.cs:173 msgid "Sets the HTTP verb to use" @@ -4211,46 +4436,46 @@ msgstr "" #: Library/Modules/Builtin/Strings.cs:178 #, csharp-format msgid "Failed to send message: {0}" -msgstr "" +msgstr "メッセージを送信できませんでした: {0}" #: Library/Modules/Builtin/Strings.cs:179 msgid "Defines a log level for messages" -msgstr "" +msgstr "メッセージに記録するログの水準を規定" #: Library/Modules/Builtin/Strings.cs:180 msgid "" "Use this option to set the log level for messages to include in the report" -msgstr "" +msgstr "レポートに含むメッセージに関するログの水準を設定できます" #: Library/Modules/Builtin/Strings.cs:181 msgid "Log message filter" -msgstr "" +msgstr "ログメッセージのフィルター" #: Library/Modules/Builtin/Strings.cs:182 msgid "" "Use this option to set a filter expression that defines what options are " "included in the report" -msgstr "" +msgstr "レポートに含むオプションを定めるフィルターの表現を設定できます" #: Library/Modules/Builtin/Strings.cs:183 msgid "Limits log lines" -msgstr "" +msgstr "ログの行を制限" #: Library/Modules/Builtin/Strings.cs:184 msgid "" "Use this option to set the maximum number of log lines to include in the " "report. Zero or negative values means unlimited." -msgstr "" +msgstr "レポートに含むログの最大行数を設定できます。0または負の値を設定すると、最大行数は無制限になります。" #: Library/Modules/Builtin/ResultSerialization/ResultFormatSerializerProvider.cs:19 #, csharp-format msgid "The format is not supported: {0}" -msgstr "" +msgstr "このフォーマットはサポートされていません:{0}" #: Library/Utility/Strings.cs:7 #, csharp-format msgid "Invalid size value: {0}" -msgstr "" +msgstr "大きさの値が不正です: {0}" #: Library/Utility/Strings.cs:10 msgid "The SSL certificate validator was called in an incorrect order" @@ -4284,7 +4509,7 @@ msgstr "" #: Library/Utility/Strings.cs:16 #, csharp-format msgid "Temporary folder does not exist: {0}" -msgstr "" +msgstr "一時フォルダーが存在しません:{0}" #: Library/Utility/Strings.cs:19 #, csharp-format @@ -4304,42 +4529,42 @@ msgstr "" #: Library/Utility/Strings.cs:24 #, csharp-format msgid "The Uri is invalid: {0}" -msgstr "" +msgstr "URIが不正です: {0}" #: Library/Utility/Strings.cs:25 #, csharp-format msgid "The Uri is missing a hostname: {0}" -msgstr "" +msgstr "URIにホスト名がありません:{0}" #: Library/Utility/Strings.cs:28 #, csharp-format msgid "{0} bytes" -msgstr "" +msgstr "{0}バイト" #: Library/Utility/Strings.cs:29 #, csharp-format msgid "{0:N} GB" -msgstr "" +msgstr "{0:N}GB" #: Library/Utility/Strings.cs:30 #, csharp-format msgid "{0:N} KB" -msgstr "" +msgstr "{0:N}KB" #: Library/Utility/Strings.cs:31 #, csharp-format msgid "{0:N} MB" -msgstr "" +msgstr "{0:N}MB" #: Library/Utility/Strings.cs:32 #, csharp-format msgid "{0:N} TB" -msgstr "" +msgstr "{0:N}TB" #: Library/Utility/Strings.cs:33 #, csharp-format msgid "The string \"{0}\" could not be parsed into a date" -msgstr "" +msgstr "文字列「{0}」を日付に変換できませんでした" #: Library/Utility/Strings.cs:36 msgid "Cannot read and write on the same stream" @@ -4355,7 +4580,7 @@ msgstr "" #: Library/Utility/FilterGroups.cs:185 #, csharp-format msgid "{0}: Selects no filters." -msgstr "" +msgstr "{0}:選択するフィルターはありません。" #: Library/Utility/FilterGroups.cs:186 #, csharp-format @@ -4370,7 +4595,7 @@ msgstr "" #: Library/Utility/FilterGroups.cs:198 #, csharp-format msgid " Aliases: {0}" -msgstr "" +msgstr "エイリアス:{0}" #: Library/Utility/FilterGroups.cs:211 #, csharp-format @@ -4379,18 +4604,19 @@ msgid "" "includes any operating system reported protected files. Most users should at" " least apply these filters." msgstr "" +"{0}:システムが所有するか、バックアップに適していないファイル。オペレーティングシステムにより保護されているファイルの全てが該当します。最低限このフィルターは適用すべきです。" #: Library/Utility/FilterGroups.cs:213 #, csharp-format msgid "" "{0}: Files that belong to the operating system. These files are restored " "when the operating system is re-installed." -msgstr "" +msgstr "{0}:オペレーティングシステムに属するファイル。これらのファイルは、オペレーティングシステムを再インストールした際に復元されます。" #: Library/Utility/FilterGroups.cs:215 #, csharp-format msgid "{0}: Files and folders that are known to be storage of temporary data." -msgstr "" +msgstr "{0}:一時データの保存領域として知られるファイルとフォルダー。" #: Library/Utility/FilterGroups.cs:217 #, csharp-format @@ -4407,7 +4633,7 @@ msgstr "" #: CommandLine/Strings.cs:4 #, csharp-format msgid "The command {0} needs at least one of the following options set: {1}" -msgstr "" +msgstr "コマンド {0} には少なくとも以下のオプションのセットの1つが必要です: {1}" #: CommandLine/Strings.cs:5 #, csharp-format @@ -4419,47 +4645,47 @@ msgstr "" #: CommandLine/Strings.cs:7 #, csharp-format msgid "Command not supported: {0}" -msgstr "" +msgstr "このコマンドはサポートしていません:{0}" #: CommandLine/Strings.cs:8 msgid "No filesets matched the criteria" -msgstr "" +msgstr "条件に一致するファイルのセットはありません" #: CommandLine/Strings.cs:9 msgid "The following filesets would be deleted:" -msgstr "" +msgstr "以下のファイルのセットが削除されます:" #: CommandLine/Strings.cs:10 msgid "These filesets were deleted:" -msgstr "" +msgstr "以下のファイルのセットが削除されました:" #: CommandLine/Strings.cs:11 msgid "Supported backends:" -msgstr "" +msgstr "サポートするバックエンド:" #: CommandLine/Strings.cs:12 msgid "Supported compression modules:" -msgstr "" +msgstr "サポートする圧縮モジュール:" #: CommandLine/Strings.cs:13 msgid "Supported encryption modules:" -msgstr "" +msgstr "サポートする暗号化モジュール:" #: CommandLine/Strings.cs:14 msgid "Supported options:" -msgstr "" +msgstr "サポートするオプション:" #: CommandLine/Strings.cs:15 msgid "Module is loaded automatically, use --disable-module to prevent this" -msgstr "" +msgstr "モジュールは自動的に読み込まれます。--disable-moduleで自動読込を無効に設定できます" #: CommandLine/Strings.cs:16 msgid "Module is not loaded automatically, use --enable-module to load it" -msgstr "" +msgstr "モジュールは自動的に読み込まれません。--enable-moduleでモジュールを読み込むことができます" #: CommandLine/Strings.cs:17 msgid "Supported generic modules:" -msgstr "" +msgstr "サポートする一般モジュール:" #: CommandLine/Strings.cs:20 #, csharp-format @@ -4471,12 +4697,12 @@ msgstr "" #: CommandLine/Strings.cs:23 #, csharp-format msgid "An error occured: {0}" -msgstr "エラーが発生しました: {0}" +msgstr "エラーが発生しました:{0}" #: CommandLine/Strings.cs:24 #, csharp-format msgid "The inner error message is: {0}" -msgstr "内部エラーメッセージ: {0}" +msgstr "内部エラーメッセージ:{0}" #: CommandLine/Strings.cs:25 msgid "" @@ -4491,7 +4717,7 @@ msgstr "" #: CommandLine/Strings.cs:26 msgid "Include files" -msgstr "" +msgstr "含めるファイル" #: CommandLine/Strings.cs:27 msgid "" @@ -4506,7 +4732,7 @@ msgstr "" #: CommandLine/Strings.cs:28 msgid "Exclude files" -msgstr "" +msgstr "除外するファイル" #: CommandLine/Strings.cs:29 msgid "" @@ -4517,29 +4743,29 @@ msgstr "" #: CommandLine/Strings.cs:30 msgid "Use control files" -msgstr "" +msgstr "コントロール用のファイルを使用" #: CommandLine/Strings.cs:31 msgid "" "If this option is set, progress reports and other messages that would " "normally go to the console will be redirected to the log." -msgstr "" +msgstr "このオプションを有効にすると、通常はコンソールに表示される経過情報やその他のメッセージをログに記録します。" #: CommandLine/Strings.cs:32 msgid "Disable console output" -msgstr "" +msgstr "コンソールの出力を無効にする" #: CommandLine/Strings.cs:41 #, csharp-format msgid "This link may provide additional information: {0}" -msgstr "" +msgstr "このリンクから追加の情報を確認できる可能性があります:{0}" #: CommandLine/Program.cs:283 msgid "Toggle automatic updates" -msgstr "" +msgstr "自動アップデートを切り替える" #: CommandLine/Program.cs:283 msgid "" "Set this option if you prefer to have the commandline version automatically " "update" -msgstr "" +msgstr "コマンドライン版を自動的にアップデートしたい場合は、このオプションを設定してください" diff --git a/Localizations/duplicati/localization-sr_RS.mo b/Localizations/duplicati/localization-sr_RS.mo index 65d44927a..99fc3219c 100644 Binary files a/Localizations/duplicati/localization-sr_RS.mo and b/Localizations/duplicati/localization-sr_RS.mo differ diff --git a/Localizations/duplicati/localization.pot b/Localizations/duplicati/localization.pot index e212bbfde..0da465dc3 100644 --- a/Localizations/duplicati/localization.pot +++ b/Localizations/duplicati/localization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-21 17:27+0200\n" +"POT-Creation-Date: 2024-07-18 09:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,252 +17,39 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: Server/Strings.cs:7 -msgid "Another instance is running, and was notified" -msgstr "" - -#: Server/Strings.cs:8 -#, csharp-format -msgid "" -"Failed to create, open or upgrade the database.\n" -"Error message: {0}" -msgstr "" - -#: Server/Strings.cs:10 -msgid "Displays this help" -msgstr "" - -#: Server/Strings.cs:11 -msgid "" -"Supported commandline arguments:\n" -"\n" -msgstr "" - -#: Server/Strings.cs:14 -#, csharp-format -msgid "--{0}: {1}" -msgstr "" - -#: Server/Strings.cs:15 CommandLine/Strings.cs:21 -#, csharp-format -msgid "" -"This option can be used to store some or all of the options given to the " -"commandline client. The file must be a plain text file, UTF-8 encoding is " -"preferred. Each line in the file should be of the format --option=value. The " -"special options --{0} and --{1} can be used to override the localpath and " -"the remote destination uri, respectively. The options in this file take " -"precedence over the options provided on the commandline. You cannot specify " -"filters in both the file and on the commandline. Instead, you can use the " -"special --{2}, --{3}, or --{4} options to specify filters inside the " -"parameter file. Each filter must be prefixed with either a + or a -, and " -"multiple filters must be joined with {5} " -msgstr "" - -#: Server/Strings.cs:16 CommandLine/Strings.cs:22 -msgid "Path to a file with parameters" -msgstr "" - -#: Server/Strings.cs:17 CommandLine/Strings.cs:19 -#, csharp-format -msgid "" -"Filters cannot be specified on the commandline if filters are also present " -"in the parameter file. Use the special --{0}, --{1}, or --{2} options to " -"specify filters inside the parameter file. Each filter must be prefixed with " -"either a + or a -, and multiple filters must be joined with {3}" -msgstr "" - -#: Server/Strings.cs:18 CommandLine/Strings.cs:18 -#, csharp-format -msgid "Unable to read the parameters file \"{0}\", reason: {1}" -msgstr "" - -#: Server/Strings.cs:20 -msgid "Outputs log information to the file given" -msgstr "" - -#: Server/Strings.cs:21 -msgid "Determines the amount of information written in the log file" -msgstr "" - -#: Server/Strings.cs:22 -msgid "" -"Activates portable mode where the database is placed below the program " -"executable" -msgstr "" - -#: Server/Strings.cs:23 -#, csharp-format -msgid "A serious error occurred in Duplicati: {0}" -msgstr "" - -#: Server/Strings.cs:24 -#, csharp-format -msgid "" -"Unable to start up, perhaps another process is already running?\n" -"Error message: {0}" -msgstr "" - -#: Server/Strings.cs:26 -msgid "Disables database encryption" -msgstr "" - -#: Server/Strings.cs:27 -#, csharp-format -msgid "Unsupported version of SQLite detected ({0}), must be {1} or higher" -msgstr "" - -#: Server/Strings.cs:28 -msgid "" -"The path to the folder where the static files for the webserver is present. " -"The folder must be located beneath the installation folder" -msgstr "" - -#: Server/Strings.cs:29 -msgid "" -"The port the webserver listens on. Multiple values may be supplied with a " -"comma in between." -msgstr "" - -#: Server/Strings.cs:30 -msgid "" -"The certificate and key file in PKCS #12 format the webserver use for SSL. " -"Only RSA/DSA keys are supported." -msgstr "" - -#: Server/Strings.cs:31 -msgid "The password for decryption of certificate PKCS #12 file." -msgstr "" - -#: Server/Strings.cs:32 -msgid "" -"The interface the webserver listens on. The special values \"*\" and \"any\" " -"means any interface. The special value \"loopback\" means the loopback " -"adapter." -msgstr "" - -#: Server/Strings.cs:33 -msgid "" -"The password required to access the webserver. This option is saved so you " -"do not need to set it on each run. Setting an empty value disables the " -"password." -msgstr "" - -#: Server/Strings.cs:34 -msgid "" -"The hostnames that are accepted, separated with semicolons. If any of the " -"hostnames are \"*\", all hostnames are allowed and the hostname checking is " -"disabled." -msgstr "" - -#: Server/Strings.cs:35 -msgid "Enables the ping-pong responder" -msgstr "" - -#: Server/Strings.cs:36 -msgid "" -"When running as a server, the service daemon must verify that the process is " -"responding. If this option is enabled, the server reads stdin and writes a " -"reply to each line read" -msgstr "" - -#: Server/Strings.cs:37 Library/Main/Strings.cs:214 -msgid "Clean up old log data" -msgstr "" - -#: Server/Strings.cs:38 Library/Main/Strings.cs:215 -msgid "Set the time after which log data will be purged from the database." -msgstr "" - -#: Server/Strings.cs:39 -msgid "Sets the folder where settings are stored" -msgstr "" - -#: Server/Strings.cs:40 -#, csharp-format -msgid "" -"Duplicati needs to store a small database with all settings. Use this option " -"to choose where the settings are stored. This option can also be set with " -"the environment variable {0}." -msgstr "" - -#: Server/Strings.cs:41 -msgid "Sets the database encryption key" -msgstr "" - -#: Server/Strings.cs:42 -#, csharp-format -msgid "" -"This option sets the encryption key used to scramble the local settings " -"database. This option can also be set with the environment variable {0}. Use " -"the option --{1} to disable the database scrambling." -msgstr "" - -#: Server/Strings.cs:43 Library/Main/Strings.cs:74 -msgid "Temporary storage folder" -msgstr "" - -#: Server/Strings.cs:44 Library/Main/Strings.cs:75 -msgid "" -"This option can be used to supply an alternative folder for temporary " -"storage. By default the system default temporary folder is used. Note that " -"also SQLite will put temporary files in this temporary folder." -msgstr "" - -#: Server/Strings.cs:47 -#, csharp-format -msgid "" -"Unable to find a valid date, given the start date {0}, the repetition " -"interval {1} and the allowed days {2}" -msgstr "" - -#: Server/Strings.cs:52 -#, csharp-format -msgid "Server has started and is listening on {0}, port {1}" -msgstr "" - -#: Server/Strings.cs:53 -#, csharp-format -msgid "" -"Unable to create SSL certificate using provided parameters. Exception " -"detail: {0}" -msgstr "" - -#: Server/Strings.cs:54 -#, csharp-format -msgid "Unable to open a socket for listening, tried ports: {0}" -msgstr "" - -#: Library/Encryption/Strings.cs:26 +#: Library/Encryption/Strings.cs:28 msgid "" "This module encrypts all files in the same way that AESCrypt does, using 256 " "bit AES encryption." msgstr "" -#: Library/Encryption/Strings.cs:27 +#: Library/Encryption/Strings.cs:29 msgid "AES-256 encryption, built in" msgstr "" -#: Library/Encryption/Strings.cs:28 +#: Library/Encryption/Strings.cs:30 msgid "Empty passphrase not allowed" msgstr "" -#: Library/Encryption/Strings.cs:29 +#: Library/Encryption/Strings.cs:31 msgid "" -"Use this option to set the thread level allowed for AES crypt operations. " -"Valid values are 0 (uses default), or from 1 (no multithreading) to 4 (max. " -"multithreading)" +"Use this option to set the thread level allowed for AES crypt operations." msgstr "" -#: Library/Encryption/Strings.cs:30 -msgid "Set thread level utilized for crypting (0-4)" +#: Library/Encryption/Strings.cs:32 +msgid "Set thread level utilized for crypting" msgstr "" -#: Library/Encryption/Strings.cs:34 +#: Library/Encryption/Strings.cs:33 +msgid "This option has no effect and should not be used" +msgstr "" + +#: Library/Encryption/Strings.cs:37 #, csharp-format msgid "Failed to decrypt data (invalid passphrase?): {0}" msgstr "" -#: Library/Encryption/Strings.cs:38 +#: Library/Encryption/Strings.cs:41 msgid "" "The GPG encryption module uses the GNU Privacy Guard program to encrypt and " "decrypt files. It requires that the gpg executable is available on the " @@ -272,59 +59,43 @@ msgid "" "supply the path to GPG using the --gpg-program-path switch." msgstr "" -#: Library/Encryption/Strings.cs:39 +#: Library/Encryption/Strings.cs:42 msgid "GNU Privacy Guard, external" msgstr "" -#: Library/Encryption/Strings.cs:40 +#: Library/Encryption/Strings.cs:43 msgid "" "Use this switch to specify any extra options to GPG. You cannot specify the " "--passphrase-fd option here. The --decrypt option is always specified." msgstr "" -#: Library/Encryption/Strings.cs:41 +#: Library/Encryption/Strings.cs:44 msgid "Extra GPG commandline options for decryption" msgstr "" -#: Library/Encryption/Strings.cs:42 -msgid "" -"The GPG encryption/decryption will use the --armor option for GPG to protect " -"the files with armor. Specify this switch to remove the --armor option." -msgstr "" - -#: Library/Encryption/Strings.cs:43 -msgid "Don't use GPG Armor" -msgstr "" - -#: Library/Encryption/Strings.cs:44 +#: Library/Encryption/Strings.cs:45 msgid "" "Use this switch to specify any extra options to GPG. You cannot specify the " "--passphrase-fd option here. The --encrypt option is always specified." msgstr "" -#: Library/Encryption/Strings.cs:45 +#: Library/Encryption/Strings.cs:46 msgid "Extra GPG commandline options for encryption" msgstr "" -#: Library/Encryption/Strings.cs:46 +#: Library/Encryption/Strings.cs:47 #, csharp-format msgid "Failed to execute GPG with \"{0} {1}\": {2}" msgstr "" -#: Library/Encryption/Strings.cs:47 +#: Library/Encryption/Strings.cs:48 msgid "" "The path to the GNU Privacy Guard program. If not supplied, Duplicati will " -"assume that the program \"gpg\" is available in the system path." -msgstr "" - -#: Library/Encryption/Strings.cs:48 -msgid "The path to GnuPG" +"search for \"gpg2\" and \"gpg\" on the system." msgstr "" #: Library/Encryption/Strings.cs:49 -#, csharp-format -msgid "" -"This option has non-standard handling, please use the --{0} option instead." +msgid "The path to GnuPG" msgstr "" #: Library/Encryption/Strings.cs:50 @@ -369,77 +140,77 @@ msgstr "" msgid "Failure while invoking GnuPG, program won't terminate" msgstr "" -#: Library/Interface/Strings.cs:4 +#: Library/Interface/Strings.cs:24 msgid "aliases" msgstr "" -#: Library/Interface/Strings.cs:5 +#: Library/Interface/Strings.cs:25 msgid "default value" msgstr "" -#: Library/Interface/Strings.cs:6 +#: Library/Interface/Strings.cs:26 msgid "[DEPRECATED]" msgstr "" -#: Library/Interface/Strings.cs:7 +#: Library/Interface/Strings.cs:27 msgid "values" msgstr "" -#: Library/Interface/Strings.cs:10 +#: Library/Interface/Strings.cs:30 msgid "Boolean" msgstr "" -#: Library/Interface/Strings.cs:11 +#: Library/Interface/Strings.cs:31 msgid "Enumeration" msgstr "" -#: Library/Interface/Strings.cs:12 +#: Library/Interface/Strings.cs:32 msgid "Flags" msgstr "" -#: Library/Interface/Strings.cs:13 +#: Library/Interface/Strings.cs:33 msgid "Integer" msgstr "" -#: Library/Interface/Strings.cs:14 +#: Library/Interface/Strings.cs:34 msgid "Path" msgstr "" -#: Library/Interface/Strings.cs:15 +#: Library/Interface/Strings.cs:35 msgid "Size" msgstr "" -#: Library/Interface/Strings.cs:16 +#: Library/Interface/Strings.cs:36 msgid "String" msgstr "" -#: Library/Interface/Strings.cs:17 +#: Library/Interface/Strings.cs:37 msgid "Timespan" msgstr "" -#: Library/Interface/Strings.cs:18 +#: Library/Interface/Strings.cs:38 msgid "Unknown" msgstr "" -#: Library/Interface/Strings.cs:21 +#: Library/Interface/Strings.cs:41 msgid "The folder cannot be created because it already exists" msgstr "" -#: Library/Interface/Strings.cs:22 +#: Library/Interface/Strings.cs:42 msgid "The requested folder does not exist" msgstr "" -#: Library/Interface/Strings.cs:23 +#: Library/Interface/Strings.cs:43 msgid "Cancelled" msgstr "" -#: Library/Interface/CustomExceptions.cs:82 -#: Library/Interface/CustomExceptions.cs:90 -#: Library/Backend/Jottacloud/Jottacloud.cs:301 +#: Library/Interface/CustomExceptions.cs:84 +#: Library/Interface/CustomExceptions.cs:92 +#: Library/Backend/Jottacloud/Jottacloud.cs:286 msgid "The requested file does not exist" msgstr "" -#: Library/Snapshots/Strings.cs:4 +#: Library/Snapshots/Strings.cs:24 #, csharp-format msgid "" "The external command failed to start.\n" @@ -447,108 +218,108 @@ msgid "" "Command: {1} {2}" msgstr "" -#: Library/Snapshots/Strings.cs:7 +#: Library/Snapshots/Strings.cs:27 #, csharp-format msgid "" "The external command failed to complete within the set time limit: {0} {1}" msgstr "" -#: Library/Snapshots/Strings.cs:8 +#: Library/Snapshots/Strings.cs:28 #, csharp-format msgid "Unable to match local path {0} with any snapshot path: {1}" msgstr "" -#: Library/Snapshots/Strings.cs:9 +#: Library/Snapshots/Strings.cs:29 #, csharp-format msgid "" "Script returned successfully, but the temporary folder {0} does not exist: " "{1}" msgstr "" -#: Library/Snapshots/Strings.cs:10 +#: Library/Snapshots/Strings.cs:30 #, csharp-format msgid "" "Script returned successfully, but the temporary folder {0} still exist: {1}" msgstr "" -#: Library/Snapshots/Strings.cs:11 +#: Library/Snapshots/Strings.cs:31 #, csharp-format msgid "The script returned exit code {0}, but {1} was expected: {2}" msgstr "" -#: Library/Snapshots/Strings.cs:12 +#: Library/Snapshots/Strings.cs:32 #, csharp-format msgid "" "Script returned successfully, but the output was missing the {0} parameter: " "{1}" msgstr "" -#: Library/Snapshots/Strings.cs:15 +#: Library/Snapshots/Strings.cs:35 msgid "Unable to determine full file path for USN entry" msgstr "" -#: Library/Snapshots/Strings.cs:16 +#: Library/Snapshots/Strings.cs:36 msgid "USN journal entries were purged since last scan" msgstr "" -#: Library/Snapshots/Strings.cs:17 +#: Library/Snapshots/Strings.cs:37 msgid "Unexpected empty response while enumerating" msgstr "" -#: Library/Snapshots/Strings.cs:18 +#: Library/Snapshots/Strings.cs:38 msgid "USN is not supported on Linux" msgstr "" -#: Library/Snapshots/Strings.cs:19 +#: Library/Snapshots/Strings.cs:39 msgid "" "The number of files returned by USN was zero. This is likely an error. To " "remedy this, USN has been disabled." msgstr "" -#: Library/Snapshots/Strings.cs:20 +#: Library/Snapshots/Strings.cs:40 msgid "Unexpected path format encountered" msgstr "" -#: Library/Snapshots/Strings.cs:21 +#: Library/Snapshots/Strings.cs:41 msgid "Unsupported USN journal version." msgstr "" -#: Library/Snapshots/Strings.cs:22 +#: Library/Snapshots/Strings.cs:42 msgid "Previous backup did not record USN journal info" msgstr "" -#: Library/Snapshots/Strings.cs:23 +#: Library/Snapshots/Strings.cs:43 msgid "USN journal ID changed" msgstr "" -#: Library/Snapshots/Strings.cs:24 +#: Library/Snapshots/Strings.cs:44 msgid "Next USN is zero" msgstr "" -#: Library/Snapshots/Strings.cs:25 +#: Library/Snapshots/Strings.cs:45 msgid "Backup configuration changed" msgstr "" -#: Library/Snapshots/Strings.cs:28 +#: Library/Snapshots/Strings.cs:48 msgid "Calling process does not have the backup privilege" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:23 +#: Library/Backend/OpenStack/Strings.cs:27 msgid "" "This backend can read and write data to Swift (OpenStack Object Storage). " "Supported format is \"openstack://container/folder\"." msgstr "" -#: Library/Backend/OpenStack/Strings.cs:24 +#: Library/Backend/OpenStack/Strings.cs:28 msgid "OpenStack Simple Storage" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:25 +#: Library/Backend/OpenStack/Strings.cs:29 #, csharp-format msgid "Missing required option: {0}" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:26 +#: Library/Backend/OpenStack/Strings.cs:30 #, csharp-format msgid "" "The password used to connect to the server. This may also be supplied as the " @@ -556,223 +327,253 @@ msgid "" "must also be set" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:27 Library/Backend/FTP/Strings.cs:13 -#: Library/Backend/CloudFiles/Strings.cs:7 Library/Backend/S3/Strings.cs:10 -#: Library/Backend/AlternativeFTP/Strings.cs:11 -#: Library/Backend/SSHv2/Strings.cs:24 Library/Backend/File/Strings.cs:10 -#: Library/Backend/Backblaze/Strings.cs:10 -#: Library/Backend/AzureBlob/Strings.cs:14 -#: Library/Backend/Jottacloud/Strings.cs:14 Library/Backend/Mega/Strings.cs:6 -#: Library/Backend/SharePoint/Strings.cs:9 Library/Backend/WEBDAV/Strings.cs:8 +#: Library/Backend/OpenStack/Strings.cs:31 Library/Backend/FTP/Strings.cs:33 +#: Library/Backend/CloudFiles/Strings.cs:27 Library/Backend/S3/Strings.cs:32 +#: Library/Backend/AlternativeFTP/Strings.cs:32 +#: Library/Backend/SSHv2/Strings.cs:48 Library/Backend/File/Strings.cs:30 +#: Library/Backend/Backblaze/Strings.cs:31 +#: Library/Backend/AzureBlob/Strings.cs:37 Library/Backend/Mega/Strings.cs:26 +#: Library/Backend/SharePoint/Strings.cs:29 +#: Library/Backend/WEBDAV/Strings.cs:28 msgid "Supplies the password used to connect to the server" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:28 +#: Library/Backend/OpenStack/Strings.cs:32 msgid "The domain name of the user used to connect to the server." msgstr "" -#: Library/Backend/OpenStack/Strings.cs:29 +#: Library/Backend/OpenStack/Strings.cs:33 msgid "Supplies the domain used to connect to the server" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:30 Library/Backend/FTP/Strings.cs:14 -#: Library/Backend/CloudFiles/Strings.cs:8 Library/Backend/S3/Strings.cs:11 -#: Library/Backend/AlternativeFTP/Strings.cs:12 -#: Library/Backend/SSHv2/Strings.cs:25 Library/Backend/File/Strings.cs:11 -#: Library/Backend/Backblaze/Strings.cs:11 -#: Library/Backend/AzureBlob/Strings.cs:15 -#: Library/Backend/Jottacloud/Strings.cs:13 Library/Backend/Mega/Strings.cs:7 -#: Library/Backend/SharePoint/Strings.cs:10 Library/Backend/WEBDAV/Strings.cs:9 +#: Library/Backend/OpenStack/Strings.cs:34 Library/Backend/FTP/Strings.cs:34 +#: Library/Backend/CloudFiles/Strings.cs:28 Library/Backend/S3/Strings.cs:33 +#: Library/Backend/AlternativeFTP/Strings.cs:33 +#: Library/Backend/SSHv2/Strings.cs:49 Library/Backend/File/Strings.cs:31 +#: Library/Backend/Backblaze/Strings.cs:32 +#: Library/Backend/AzureBlob/Strings.cs:38 Library/Backend/Mega/Strings.cs:27 +#: Library/Backend/SharePoint/Strings.cs:30 +#: Library/Backend/WEBDAV/Strings.cs:29 msgid "" "The username used to connect to the server. This may also be supplied as the " "environment variable \"AUTH_USERNAME\"." msgstr "" -#: Library/Backend/OpenStack/Strings.cs:31 Library/Backend/FTP/Strings.cs:15 -#: Library/Backend/CloudFiles/Strings.cs:9 Library/Backend/S3/Strings.cs:12 -#: Library/Backend/AlternativeFTP/Strings.cs:13 -#: Library/Backend/SSHv2/Strings.cs:26 Library/Backend/File/Strings.cs:12 -#: Library/Backend/Backblaze/Strings.cs:12 -#: Library/Backend/AzureBlob/Strings.cs:16 -#: Library/Backend/Jottacloud/Strings.cs:12 Library/Backend/Mega/Strings.cs:8 -#: Library/Backend/SharePoint/Strings.cs:11 -#: Library/Backend/WEBDAV/Strings.cs:10 +#: Library/Backend/OpenStack/Strings.cs:35 Library/Backend/FTP/Strings.cs:35 +#: Library/Backend/CloudFiles/Strings.cs:29 Library/Backend/S3/Strings.cs:34 +#: Library/Backend/AlternativeFTP/Strings.cs:34 +#: Library/Backend/SSHv2/Strings.cs:50 Library/Backend/File/Strings.cs:32 +#: Library/Backend/Backblaze/Strings.cs:33 +#: Library/Backend/AzureBlob/Strings.cs:39 Library/Backend/Mega/Strings.cs:28 +#: Library/Backend/SharePoint/Strings.cs:31 +#: Library/Backend/WEBDAV/Strings.cs:30 msgid "Supplies the username used to connect to the server" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:32 +#: Library/Backend/OpenStack/Strings.cs:36 msgid "" "The Tenant Name is commonly the paying user account name. This option must " "be supplied when authenticating with a password, but is not required when " "using an API key." msgstr "" -#: Library/Backend/OpenStack/Strings.cs:33 +#: Library/Backend/OpenStack/Strings.cs:37 msgid "Supplies the Tenant Name used to connect to the server" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:34 +#: Library/Backend/OpenStack/Strings.cs:38 msgid "" "The API key can be used to connect without supplying a password and tenant " "ID with some providers." msgstr "" -#: Library/Backend/OpenStack/Strings.cs:35 +#: Library/Backend/OpenStack/Strings.cs:39 msgid "Supplies the API key used to connect to the server" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:36 +#: Library/Backend/OpenStack/Strings.cs:40 #, csharp-format msgid "" "The authentication URL is used to authenticate the user and find the storage " "service. The URL commonly ends with \"/v2.0\". Known providers are: {0}{1}" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:37 +#: Library/Backend/OpenStack/Strings.cs:41 msgid "Supplies the authentication URL" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:38 +#: Library/Backend/OpenStack/Strings.cs:42 msgid "The keystone API version to use, valid values are 'v2' and 'v3'." msgstr "" -#: Library/Backend/OpenStack/Strings.cs:39 +#: Library/Backend/OpenStack/Strings.cs:43 msgid "The keystone API version to use" msgstr "" -#: Library/Backend/OpenStack/Strings.cs:40 +#: Library/Backend/OpenStack/Strings.cs:44 msgid "" "This option is only used when creating a container, and is used to indicate " "where the container should be placed. Consult your provider for a list of " "valid regions, or leave empty for the default region." msgstr "" -#: Library/Backend/OpenStack/Strings.cs:41 +#: Library/Backend/OpenStack/Strings.cs:45 msgid "Supplies the region used for creating a container" msgstr "" -#: Library/Backend/FTP/Strings.cs:7 +#: Library/Backend/OpenStack/OpenStackConfig.cs:67 +msgid "OpenStack configuration module" +msgstr "" + +#: Library/Backend/OpenStack/OpenStackConfig.cs:69 +msgid "Exposes OpenStack configuration as a web module" +msgstr "" + +#: Library/Backend/OpenStack/OpenStackConfig.cs:77 +#: Library/Backend/GoogleServices/GCSConfig.cs:81 +#: Library/Backend/S3/S3Config.cs:84 Library/Backend/Storj/StorjConfig.cs:53 +msgid "The config to get" +msgstr "" + +#: Library/Backend/OpenStack/OpenStackConfig.cs:77 +#: Library/Backend/GoogleServices/GCSConfig.cs:81 +#: Library/Backend/S3/S3Config.cs:84 Library/Backend/Storj/StorjConfig.cs:53 +msgid "Provides different config values" +msgstr "" + +#: Library/Backend/FTP/Strings.cs:27 msgid "" "This backend can read and write data to an FTP based backend. Allowed " "formats are \"ftp://hostname/folder\" or \"ftp://username:password@hostname/" "folder\"" msgstr "" -#: Library/Backend/FTP/Strings.cs:8 +#: Library/Backend/FTP/Strings.cs:28 msgid "" "If this flag is set, the FTP connection is made in active mode. Even if the " "\"ftp-passive\" flag is also set, the connection will be made in active mode" msgstr "" -#: Library/Backend/FTP/Strings.cs:9 Library/Backend/FTP/Strings.cs:11 +#: Library/Backend/FTP/Strings.cs:29 Library/Backend/FTP/Strings.cs:31 msgid "Toggles the FTP connections method" msgstr "" -#: Library/Backend/FTP/Strings.cs:10 +#: Library/Backend/FTP/Strings.cs:30 msgid "" "If this flag is set, the FTP connection is made in passive mode, which works " "better with some firewalls. If the \"ftp-regular\" flag is also set, this " "flag is ignored" msgstr "" -#: Library/Backend/FTP/Strings.cs:12 Library/Backend/CloudFiles/Strings.cs:6 -#: Library/Backend/S3/Strings.cs:9 Library/Backend/AlternativeFTP/Strings.cs:10 -#: Library/Backend/SSHv2/Strings.cs:23 Library/Backend/File/Strings.cs:9 -#: Library/Backend/Backblaze/Strings.cs:9 -#: Library/Backend/AzureBlob/Strings.cs:13 -#: Library/Backend/Jottacloud/Strings.cs:15 Library/Backend/Mega/Strings.cs:5 -#: Library/Backend/SharePoint/Strings.cs:8 Library/Backend/WEBDAV/Strings.cs:7 +#: Library/Backend/FTP/Strings.cs:32 Library/Backend/CloudFiles/Strings.cs:26 +#: Library/Backend/S3/Strings.cs:31 +#: Library/Backend/AlternativeFTP/Strings.cs:31 +#: Library/Backend/SSHv2/Strings.cs:47 Library/Backend/File/Strings.cs:29 +#: Library/Backend/Backblaze/Strings.cs:30 +#: Library/Backend/AzureBlob/Strings.cs:36 Library/Backend/Mega/Strings.cs:25 +#: Library/Backend/SharePoint/Strings.cs:28 +#: Library/Backend/WEBDAV/Strings.cs:27 msgid "" "The password used to connect to the server. This may also be supplied as the " "environment variable \"AUTH_PASSWORD\"." msgstr "" -#: Library/Backend/FTP/Strings.cs:16 +#: Library/Backend/FTP/Strings.cs:36 msgid "" "Use this flag to communicate using Secure Socket Layer (SSL) over ftp (ftps)." msgstr "" -#: Library/Backend/FTP/Strings.cs:17 +#: Library/Backend/FTP/Strings.cs:37 msgid "Instructs Duplicati to use an SSL (ftps) connection" msgstr "" -#: Library/Backend/FTP/Strings.cs:18 +#: Library/Backend/FTP/Strings.cs:38 msgid "FTP" msgstr "" -#: Library/Backend/FTP/Strings.cs:19 Library/Backend/WEBDAV/Strings.cs:15 -#: Library/Backend/TahoeLAFS/Strings.cs:8 +#: Library/Backend/FTP/Strings.cs:39 Library/Backend/WEBDAV/Strings.cs:35 +#: Library/Backend/TahoeLAFS/Strings.cs:28 #, csharp-format msgid "The folder {0} was not found, message: {1}" msgstr "" -#: Library/Backend/FTP/Strings.cs:20 -#: Library/Backend/AlternativeFTP/Strings.cs:16 +#: Library/Backend/FTP/Strings.cs:40 +#: Library/Backend/AlternativeFTP/Strings.cs:41 #, csharp-format msgid "" "The file {0} was uploaded but not found afterwards, the file listing " "returned {1}" msgstr "" -#: Library/Backend/FTP/Strings.cs:21 -#: Library/Backend/AlternativeFTP/Strings.cs:17 +#: Library/Backend/FTP/Strings.cs:41 +#: Library/Backend/AlternativeFTP/Strings.cs:42 #, csharp-format msgid "" "The file {0} was uploaded but the returned size was {1} and it was expected " "to be {2}" msgstr "" -#: Library/Backend/FTP/Strings.cs:22 -#: Library/Backend/AlternativeFTP/Strings.cs:18 +#: Library/Backend/FTP/Strings.cs:42 +#: Library/Backend/AlternativeFTP/Strings.cs:43 msgid "Disable upload verification" msgstr "" -#: Library/Backend/FTP/Strings.cs:23 +#: Library/Backend/FTP/Strings.cs:43 msgid "" "To protect against network failures, every upload will be attempted " "verified. Use this option to disable this verification to make the upload " "faster but less reliable." msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:22 +#: Library/Backend/GoogleServices/GCSConfig.cs:71 +msgid "Google Cloud Storage configuration module" +msgstr "" + +#: Library/Backend/GoogleServices/GCSConfig.cs:73 +msgid "Exposes Google Cloud Storage configuration as a web module" +msgstr "" + +#: Library/Backend/GoogleServices/Strings.cs:27 msgid "" "This backend can read and write data to Google Cloud Storage. Supported " "format is \"gcs://bucket/folder\"." msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:23 +#: Library/Backend/GoogleServices/Strings.cs:28 msgid "Google Cloud Storage" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:24 -#: Library/Backend/OAuthHelper/Strings.cs:6 +#: Library/Backend/GoogleServices/Strings.cs:29 +#: Library/Backend/OAuthHelper/Strings.cs:26 #, csharp-format msgid "You need an AuthID, you can get it from: {0}" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:25 +#: Library/Backend/GoogleServices/Strings.cs:30 #, csharp-format msgid "You must supply a project ID with --{0} for creating a bucket" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:26 -#: Library/Backend/GoogleServices/Strings.cs:42 -#: Library/Backend/Box/Strings.cs:23 Library/Backend/OneDrive/Strings.cs:6 -#: Library/Backend/Dropbox/Strings.cs:24 -#: Library/Backend/OAuthHelper/Strings.cs:9 +#: Library/Backend/GoogleServices/Strings.cs:31 +#: Library/Backend/GoogleServices/Strings.cs:47 +#: Library/Backend/Box/Strings.cs:27 Library/Backend/OneDrive/Strings.cs:26 +#: Library/Backend/Jottacloud/Strings.cs:27 +#: Library/Backend/Dropbox/Strings.cs:29 +#: Library/Backend/OAuthHelper/Strings.cs:29 msgid "The authorization code" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:27 -#: Library/Backend/GoogleServices/Strings.cs:43 -#: Library/Backend/Box/Strings.cs:24 Library/Backend/OneDrive/Strings.cs:7 -#: Library/Backend/Dropbox/Strings.cs:25 -#: Library/Backend/OAuthHelper/Strings.cs:10 +#: Library/Backend/GoogleServices/Strings.cs:32 +#: Library/Backend/GoogleServices/Strings.cs:48 +#: Library/Backend/Box/Strings.cs:28 Library/Backend/OneDrive/Strings.cs:27 +#: Library/Backend/Jottacloud/Strings.cs:28 +#: Library/Backend/Dropbox/Strings.cs:30 +#: Library/Backend/OAuthHelper/Strings.cs:30 #, csharp-format msgid "The authorization token retrieved from {0}" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:29 +#: Library/Backend/GoogleServices/Strings.cs:34 #, csharp-format msgid "" "This option is only used when creating new buckets. Use this option to " @@ -781,11 +582,11 @@ msgid "" "{0}" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:31 +#: Library/Backend/GoogleServices/Strings.cs:36 msgid "Specifies location option for creating a bucket" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:32 +#: Library/Backend/GoogleServices/Strings.cs:37 #, csharp-format msgid "" "This option is only used when creating new buckets. Use this option to " @@ -794,47 +595,47 @@ msgid "" "{0}" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:34 +#: Library/Backend/GoogleServices/Strings.cs:39 msgid "Specifies storage class for creating a bucket" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:35 +#: Library/Backend/GoogleServices/Strings.cs:40 msgid "Specifies project for creating a bucket" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:36 +#: Library/Backend/GoogleServices/Strings.cs:41 msgid "" "This option is only used when creating new buckets. Use this option to " "supply the project ID that the bucket is attached to. The project determines " "where usage charges are applied" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:41 +#: Library/Backend/GoogleServices/Strings.cs:46 msgid "" "This backend can read and write data to Google Drive. Supported format is " "\"googledrive://folder/subfolder\"." msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:44 +#: Library/Backend/GoogleServices/Strings.cs:49 msgid "Google Drive" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:45 +#: Library/Backend/GoogleServices/Strings.cs:50 #, csharp-format msgid "There is more than one item named \"{0}\" in the folder \"{1}\"" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:46 +#: Library/Backend/GoogleServices/Strings.cs:51 msgid "Team drive ID" msgstr "" -#: Library/Backend/GoogleServices/Strings.cs:47 +#: Library/Backend/GoogleServices/Strings.cs:52 msgid "" "This option sets the team drive to use. Leaving it empty uses the personal " "drive" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:4 +#: Library/Backend/CloudFiles/Strings.cs:24 #, csharp-format msgid "" "CloudFiles use different servers for authentication based on where the " @@ -842,19 +643,19 @@ msgid "" "This option overrides --{0}." msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:5 +#: Library/Backend/CloudFiles/Strings.cs:25 msgid "Provide another authentication URL" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:10 +#: Library/Backend/CloudFiles/Strings.cs:30 msgid "Supplies the API Access Key used to authenticate with CloudFiles." msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:11 +#: Library/Backend/CloudFiles/Strings.cs:31 msgid "Supplies the access key used to connect to the server" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:12 +#: Library/Backend/CloudFiles/Strings.cs:32 #, csharp-format msgid "" "Duplicati will assume that the credentials given are for a US account, use " @@ -862,145 +663,100 @@ msgid "" "equivalent to setting --{0}={1}." msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:13 +#: Library/Backend/CloudFiles/Strings.cs:33 msgid "Use a UK account" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:14 +#: Library/Backend/CloudFiles/Strings.cs:34 msgid "Supplies the username used to authenticate with CloudFiles." msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:15 +#: Library/Backend/CloudFiles/Strings.cs:35 msgid "Supplies the username used to authenticate with CloudFiles" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:16 +#: Library/Backend/CloudFiles/Strings.cs:36 msgid "" "Supports connections to the CloudFiles backend. Allowed formats is " "\"cloudfiles://container/folder\"." msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:17 +#: Library/Backend/CloudFiles/Strings.cs:37 msgid "Rackspace CloudFiles" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:18 +#: Library/Backend/CloudFiles/Strings.cs:38 msgid "MD5 Hash (ETag) verification failed" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:19 +#: Library/Backend/CloudFiles/Strings.cs:39 msgid "Failed to delete file" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:20 -#: Library/Backend/Jottacloud/Strings.cs:11 +#: Library/Backend/CloudFiles/Strings.cs:40 +#: Library/Backend/Jottacloud/Strings.cs:32 msgid "Failed to upload file" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:21 +#: Library/Backend/CloudFiles/Strings.cs:41 msgid "No CloudFiles API Access Key given" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:22 +#: Library/Backend/CloudFiles/Strings.cs:42 msgid "No CloudFiles userID given" msgstr "" -#: Library/Backend/CloudFiles/Strings.cs:23 +#: Library/Backend/CloudFiles/Strings.cs:43 msgid "Unexpected CloudFiles response, perhaps the API has changed?" msgstr "" -#: Library/Backend/S3/Strings.cs:4 +#: Library/Backend/S3/S3Config.cs:75 +msgid "S3 configuration module" +msgstr "" + +#: Library/Backend/S3/S3Config.cs:77 +msgid "Exposes S3 configuration as a web module" +msgstr "" + +#: Library/Backend/S3/Strings.cs:26 msgid "" "The AWS \"Secret Access Key\" can be obtained after logging into your AWS " "account, this can also be supplied through the \"auth-password\" property" msgstr "" -#: Library/Backend/S3/Strings.cs:5 +#: Library/Backend/S3/Strings.cs:27 msgid "The AWS \"Secret Access Key\"" msgstr "" -#: Library/Backend/S3/Strings.cs:6 +#: Library/Backend/S3/Strings.cs:28 msgid "" "The AWS \"Access Key ID\" can be obtained after logging into your AWS " "account, this can also be supplied through the \"auth-username\" property" msgstr "" -#: Library/Backend/S3/Strings.cs:7 +#: Library/Backend/S3/Strings.cs:29 msgid "The AWS \"Access Key ID\"" msgstr "" -#: Library/Backend/S3/Strings.cs:8 +#: Library/Backend/S3/Strings.cs:30 msgid "S3 compatible" msgstr "" -#: Library/Backend/S3/Strings.cs:13 +#: Library/Backend/S3/Strings.cs:35 msgid "No S3 secret key given" msgstr "" -#: Library/Backend/S3/Strings.cs:14 +#: Library/Backend/S3/Strings.cs:36 msgid "No S3 userID given" msgstr "" -#: Library/Backend/S3/Strings.cs:15 -msgid "" -"This flag is only used when creating new buckets. If the flag is set, the " -"bucket is created on a European server. This flag forces the \"s3-use-new-" -"style\" flag. Amazon charges slightly more for European buckets." -msgstr "" - -#: Library/Backend/S3/Strings.cs:16 -msgid "Use a European server" -msgstr "" - -#: Library/Backend/S3/Strings.cs:17 -msgid "" -"Specify this argument to make the S3 backend use subdomains rather than the " -"previous url prefix method. See the S3 documentation for more details." -msgstr "" - -#: Library/Backend/S3/Strings.cs:18 -msgid "Use subdomain calling style" -msgstr "" - -#: Library/Backend/S3/Strings.cs:19 -#, csharp-format -msgid "Unable to determine the bucket name for host: {0}" -msgstr "" - -#: Library/Backend/S3/Strings.cs:20 -msgid "" -"This flag toggles the use of the special RRS header. Files stored using RRS " -"are more likely to disappear than those stored normally, but also costs less " -"to store. See the full description here: http://aws.amazon.com/about-aws/" -"whats-new/2010/05/19/announcing-amazon-s3-reduced-redundancy-storage/" -msgstr "" - -#: Library/Backend/S3/Strings.cs:21 -msgid "Use Reduced Redundancy Storage" -msgstr "" - -#: Library/Backend/S3/Strings.cs:22 -#, csharp-format -msgid "You are using a deprected url format, please change it to: {0}" -msgstr "" - -#: Library/Backend/S3/Strings.cs:23 +#: Library/Backend/S3/Strings.cs:37 msgid "" "This backend can read and write data to an S3 compatible server. Allowed " "formats are: \"s3://bucketname/prefix\"" msgstr "" -#: Library/Backend/S3/Strings.cs:24 -#, csharp-format -msgid "The options --{0} and --{1} are mutually exclusive" -msgstr "" - -#: Library/Backend/S3/Strings.cs:25 Library/Backend/S3/Strings.cs:40 -#, csharp-format -msgid "Please use --{0}={1} instead" -msgstr "" - -#: Library/Backend/S3/Strings.cs:26 +#: Library/Backend/S3/Strings.cs:38 #, csharp-format msgid "" "This option is only used when creating new buckets. Use this option to " @@ -1009,11 +765,11 @@ msgid "" "{0}" msgstr "" -#: Library/Backend/S3/Strings.cs:28 +#: Library/Backend/S3/Strings.cs:40 msgid "Specifies S3 location constraints" msgstr "" -#: Library/Backend/S3/Strings.cs:29 +#: Library/Backend/S3/Strings.cs:41 #, csharp-format msgid "" "Companies other than Amazon are now supporting the S3 API, meaning that this " @@ -1022,243 +778,296 @@ msgid "" "{0}" msgstr "" -#: Library/Backend/S3/Strings.cs:31 +#: Library/Backend/S3/Strings.cs:43 msgid "Specifies an alternate S3 server name" msgstr "" -#: Library/Backend/S3/Strings.cs:32 +#: Library/Backend/S3/Strings.cs:44 msgid "Specifies the S3 client library to use" msgstr "" -#: Library/Backend/S3/Strings.cs:33 -msgid "" -"The subdomain calling option does nothing, the library will pick the right " -"calling convention" -msgstr "" - -#: Library/Backend/S3/Strings.cs:34 +#: Library/Backend/S3/Strings.cs:45 msgid "" "Use this flag to communicate using Secure Socket Layer (SSL) over http " "(https). Note that bucket names containing a period has problems with SSL " "connections." msgstr "" -#: Library/Backend/S3/Strings.cs:35 +#: Library/Backend/S3/Strings.cs:46 msgid "" "Set either to aws or minio . Then either the AWS SDK or Minio SDK will used " "to communicate with S3 services." msgstr "" -#: Library/Backend/S3/Strings.cs:36 Library/Backend/WEBDAV/Strings.cs:20 -#: Library/Backend/TahoeLAFS/Strings.cs:6 +#: Library/Backend/S3/Strings.cs:47 Library/Backend/WEBDAV/Strings.cs:40 +#: Library/Backend/TahoeLAFS/Strings.cs:26 msgid "Instructs Duplicati to use an SSL (https) connection" msgstr "" -#: Library/Backend/S3/Strings.cs:38 +#: Library/Backend/S3/Strings.cs:48 +msgid "" +"This disables chunk encoding for the aws client, which is not supported by " +"all S3 providers." +msgstr "" + +#: Library/Backend/S3/Strings.cs:49 +msgid "Disable chunk encoding (aws client only)" +msgstr "" + +#: Library/Backend/S3/Strings.cs:50 msgid "" "Use this option to specify a storage class. If this option is not used, the " "server will choose a default storage class." msgstr "" -#: Library/Backend/S3/Strings.cs:39 +#: Library/Backend/S3/Strings.cs:51 msgid "Specify storage class" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:9 +#: Library/Backend/S3/S3IAM.cs:71 +msgid "S3 IAM support module" +msgstr "" + +#: Library/Backend/S3/S3IAM.cs:73 +msgid "Exposes S3 IAM manipulation as a web module" +msgstr "" + +#: Library/Backend/S3/S3IAM.cs:81 +msgid "The operation to perform" +msgstr "" + +#: Library/Backend/S3/S3IAM.cs:81 +msgid "Selects the operation to perform" +msgstr "" + +#: Library/Backend/S3/S3IAM.cs:82 +msgid "The username" +msgstr "" + +#: Library/Backend/S3/S3IAM.cs:82 +msgid "The Amazon Access Key ID" +msgstr "" + +#: Library/Backend/S3/S3IAM.cs:83 +msgid "The password" +msgstr "" + +#: Library/Backend/S3/S3IAM.cs:83 +msgid "The Amazon Secret Key" +msgstr "" + +#: Library/Backend/AlternativeFTP/Strings.cs:30 msgid "" "This backend can read and write data to an FTP based backend using an " "alternative FTP client. Allowed formats are \"aftp://hostname/folder\" or " "\"aftp://username:password@hostname/folder\"" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:14 +#: Library/Backend/AlternativeFTP/Strings.cs:35 +msgid "Log FTP dialog to terminal console for debugging purposes" +msgstr "" + +#: Library/Backend/AlternativeFTP/Strings.cs:36 +msgid "Log FTP dialog to terminal console" +msgstr "" + +#: Library/Backend/AlternativeFTP/Strings.cs:37 +msgid "" +"Log FTP PRIVATE info (username, password) to console for debugging purposes " +"(DO NOT POST THIS TO THE INTERNET!)" +msgstr "" + +#: Library/Backend/AlternativeFTP/Strings.cs:38 +msgid "Log FTP PRIVATE info to console" +msgstr "" + +#: Library/Backend/AlternativeFTP/Strings.cs:39 msgid "Alternative FTP" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:15 +#: Library/Backend/AlternativeFTP/Strings.cs:40 #, csharp-format msgid "The folder {0} was not found. Message: {1}" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:19 +#: Library/Backend/AlternativeFTP/Strings.cs:44 msgid "" "To protect against network or server failures, every upload will be " "attempted to be verified. Use this option to disable this verification to " "make the upload faster but less reliable." msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:20 +#: Library/Backend/AlternativeFTP/Strings.cs:45 msgid "" "If this flag is set, the FTP data connection type will be changed to the " "selected option." msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:21 +#: Library/Backend/AlternativeFTP/Strings.cs:46 msgid "Configure the FTP data connection type" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:22 +#: Library/Backend/AlternativeFTP/Strings.cs:47 msgid "" "If this flag is set, the FTP encryption mode will be changed to the selected " "option." msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:23 +#: Library/Backend/AlternativeFTP/Strings.cs:48 msgid "Configure the FTP encryption mode" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:24 +#: Library/Backend/AlternativeFTP/Strings.cs:49 msgid "This flag controls the SSL policy to use when encryption is enabled." msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:25 +#: Library/Backend/AlternativeFTP/Strings.cs:50 msgid "Configure the SSL policy to use when encryption is enabled" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:26 +#: Library/Backend/AlternativeFTP/Strings.cs:51 msgid "" "Some FTP servers need a small delay before reporting the correct file size. " "The required delay depends on network topology. If you experience errors " "related to the upload size not matching, try adding a few seconds delay." msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:27 +#: Library/Backend/AlternativeFTP/Strings.cs:52 msgid "Add a delay after uploading a file" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:28 +#: Library/Backend/AlternativeFTP/Strings.cs:53 #, csharp-format msgid "Error on deleting file: {0}" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:29 +#: Library/Backend/AlternativeFTP/Strings.cs:54 #, csharp-format msgid "Error reading file: {0}" msgstr "" -#: Library/Backend/AlternativeFTP/Strings.cs:30 +#: Library/Backend/AlternativeFTP/Strings.cs:55 #, csharp-format msgid "Error writing file: {0}" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:4 +#: Library/Backend/SSHv2/Strings.cs:26 msgid "Module for generating SSH private/public keys" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:5 +#: Library/Backend/SSHv2/Strings.cs:27 msgid "SSH Key Generator" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:6 +#: Library/Backend/SSHv2/Strings.cs:28 msgid "Public key username" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:7 +#: Library/Backend/SSHv2/Strings.cs:29 msgid "A username to append to the public key" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:8 +#: Library/Backend/SSHv2/Strings.cs:30 msgid "The key type" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:9 +#: Library/Backend/SSHv2/Strings.cs:31 msgid "Determines the type of key to generate" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:10 +#: Library/Backend/SSHv2/Strings.cs:32 msgid "The key length" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:11 +#: Library/Backend/SSHv2/Strings.cs:33 msgid "The length of the key in bits" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:14 +#: Library/Backend/SSHv2/Strings.cs:37 msgid "Module for uploading SSH public keys" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:15 +#: Library/Backend/SSHv2/Strings.cs:38 msgid "SSH Key Uploader" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:16 +#: Library/Backend/SSHv2/Strings.cs:39 msgid "The SSH connection URL" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:17 +#: Library/Backend/SSHv2/Strings.cs:40 msgid "The SSH connection URL used to establish the connection" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:18 +#: Library/Backend/SSHv2/Strings.cs:41 msgid "The SSH public key to append" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:19 +#: Library/Backend/SSHv2/Strings.cs:42 msgid "" "The SSH public key must be a valid SSH string, which is appended to the .ssh/" "authorized_keys file" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:22 +#: Library/Backend/SSHv2/Strings.cs:46 msgid "" "This backend can read and write data to an SSH based backend, using SFTP. " "Allowed formats are \"ssh://hostname/folder\" or \"ssh://username:" "password@hostname/folder\"." msgstr "" -#: Library/Backend/SSHv2/Strings.cs:27 +#: Library/Backend/SSHv2/Strings.cs:51 msgid "" "The server fingerprint used for validation of server identity. Format is eg. " "\"ssh-rsa 4096 11:22:33:44:55:66:77:88:99:00:11:22:33:44:55:66\"." msgstr "" -#: Library/Backend/SSHv2/Strings.cs:28 +#: Library/Backend/SSHv2/Strings.cs:52 msgid "Supplies server fingerprint used for validation of server identity" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:29 +#: Library/Backend/SSHv2/Strings.cs:53 msgid "" "To guard against man-in-the-middle attacks, the server fingerprint is " "verified on connection. Use this option to disable host-key fingerprint " "verification. You should only use this option for testing." msgstr "" -#: Library/Backend/SSHv2/Strings.cs:30 +#: Library/Backend/SSHv2/Strings.cs:54 msgid "Disables fingerprint validation" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:31 +#: Library/Backend/SSHv2/Strings.cs:55 msgid "" "Points to a valid OpenSSH keyfile. If the file is encrypted, the password " "supplied is used to decrypt the keyfile. If this option is supplied, the " -"password is not used to authenticate. This option only works when using the " -"managed SSH client." +"password is not used to authenticate." msgstr "" -#: Library/Backend/SSHv2/Strings.cs:32 Library/Backend/SSHv2/Strings.cs:34 +#: Library/Backend/SSHv2/Strings.cs:56 Library/Backend/SSHv2/Strings.cs:58 msgid "Uses a SSH private key to authenticate" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:33 +#: Library/Backend/SSHv2/Strings.cs:57 #, csharp-format msgid "" "An url-encoded SSH private key. The private key must be prefixed with {0}. " "If the file is encrypted, the password supplied is used to decrypt the " "keyfile. If this option is supplied, the password is not used to " -"authenticate. This option only works when using the managed SSH client." +"authenticate." msgstr "" -#: Library/Backend/SSHv2/Strings.cs:35 +#: Library/Backend/SSHv2/Strings.cs:59 msgid "" "Use this option to manage the internal timeout for SSH operations. If this " "options is set to zero, the operations will not time out" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:36 +#: Library/Backend/SSHv2/Strings.cs:60 msgid "Sets the operation timeout value" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:37 +#: Library/Backend/SSHv2/Strings.cs:61 msgid "" "This option can be used to enable the keep-alive interval for the SSH " "connection. If the connection is idle, aggressive firewalls might close the " @@ -1266,20 +1075,20 @@ msgid "" "If this value is set to zero, the keep-alive is disabled." msgstr "" -#: Library/Backend/SSHv2/Strings.cs:38 +#: Library/Backend/SSHv2/Strings.cs:62 msgid "Sets a keepalive value" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:39 +#: Library/Backend/SSHv2/Strings.cs:63 msgid "SFTP (SSH)" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:40 +#: Library/Backend/SSHv2/Strings.cs:64 #, csharp-format msgid "Unable to set folder to {0}, error message: {1}" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:41 +#: Library/Backend/SSHv2/Strings.cs:65 #, csharp-format msgid "" "Validation of server fingerprint failed. Server returned fingerprint " @@ -1287,88 +1096,88 @@ msgid "" "the-middle attack!" msgstr "" -#: Library/Backend/SSHv2/Strings.cs:42 +#: Library/Backend/SSHv2/Strings.cs:66 #, csharp-format msgid "" "Please add --{1}=\"{0}\" to trust this host. Optionally you can use --{2} " "(NOT SECURE) for testing!" msgstr "" -#: Library/Backend/Box/Strings.cs:21 +#: Library/Backend/Box/Strings.cs:25 msgid "" "This backend can read and write data to Box.com. Supported format is \"box://" "folder/subfolder\"." msgstr "" -#: Library/Backend/Box/Strings.cs:22 +#: Library/Backend/Box/Strings.cs:26 msgid "Box.com" msgstr "" -#: Library/Backend/Box/Strings.cs:25 +#: Library/Backend/Box/Strings.cs:29 msgid "Force delete files" msgstr "" -#: Library/Backend/Box/Strings.cs:26 +#: Library/Backend/Box/Strings.cs:30 msgid "" "After deleting a file, it may end up in the trash folder where it will be " "deleted after a grace period. Use this command to force immediate removal of " "delete files." msgstr "" -#: Library/Backend/Rclone/Strings.cs:6 +#: Library/Backend/Rclone/Strings.cs:26 msgid "Rclone" msgstr "" -#: Library/Backend/Rclone/Strings.cs:7 +#: Library/Backend/Rclone/Strings.cs:27 msgid "This backend can read and write data to Rclone." msgstr "" -#: Library/Backend/Rclone/Strings.cs:8 +#: Library/Backend/Rclone/Strings.cs:28 msgid "Local repository" msgstr "" -#: Library/Backend/Rclone/Strings.cs:9 +#: Library/Backend/Rclone/Strings.cs:29 msgid "" "Local repository for Rclone. Make sure it is configured as a local drive, as " "it needs access to the files generated by Duplicati." msgstr "" -#: Library/Backend/Rclone/Strings.cs:10 +#: Library/Backend/Rclone/Strings.cs:30 msgid "Remote repository" msgstr "" -#: Library/Backend/Rclone/Strings.cs:11 +#: Library/Backend/Rclone/Strings.cs:31 msgid "" "Remote repository for Rclone. This can be any of the backends provided by " "Rclone. More info available on https://rclone.org/." msgstr "" -#: Library/Backend/Rclone/Strings.cs:12 +#: Library/Backend/Rclone/Strings.cs:32 msgid "Remote path" msgstr "" -#: Library/Backend/Rclone/Strings.cs:13 +#: Library/Backend/Rclone/Strings.cs:33 msgid "Path on the Remote repository. " msgstr "" -#: Library/Backend/Rclone/Strings.cs:14 +#: Library/Backend/Rclone/Strings.cs:34 msgid "Rclone options." msgstr "" -#: Library/Backend/Rclone/Strings.cs:15 +#: Library/Backend/Rclone/Strings.cs:35 msgid "Options will be transferred to rclone." msgstr "" -#: Library/Backend/Rclone/Strings.cs:16 +#: Library/Backend/Rclone/Strings.cs:36 msgid "Rclone executable" msgstr "" -#: Library/Backend/Rclone/Strings.cs:17 +#: Library/Backend/Rclone/Strings.cs:37 msgid "" "Full path to the rclone executable. Only needed if it's not in your path." msgstr "" -#: Library/Backend/File/Strings.cs:4 +#: Library/Backend/File/Strings.cs:24 #, csharp-format msgid "" "This option only works when the --{0} option is also specified. If there are " @@ -1380,11 +1189,11 @@ msgid "" "file existence." msgstr "" -#: Library/Backend/File/Strings.cs:5 +#: Library/Backend/File/Strings.cs:25 msgid "Look for a file in the destination folder" msgstr "" -#: Library/Backend/File/Strings.cs:6 +#: Library/Backend/File/Strings.cs:26 #, csharp-format msgid "" "This option allows multiple targets to be specified. The primary target path " @@ -1399,36 +1208,36 @@ msgid "" "destinations." msgstr "" -#: Library/Backend/File/Strings.cs:7 +#: Library/Backend/File/Strings.cs:27 msgid "A list of secondary target paths" msgstr "" -#: Library/Backend/File/Strings.cs:8 +#: Library/Backend/File/Strings.cs:28 msgid "" "This backend can read and write data to an file based backend. Allowed " "formats are \"file://hostname/folder\" or \"file://username:" -"password@hostname/folder\". You may supply UNC paths (eg: \"file://\\\\server" -"\\folder\") or local paths (eg: (win) \"file://c:\\folder\", (linux) " +"password@hostname/folder\". You may supply UNC paths (eg: \"file://\\" +"\\server\\folder\") or local paths (eg: (win) \"file://c:\\folder\", (linux) " "\"file:///usr/pub/files\")" msgstr "" -#: Library/Backend/File/Strings.cs:13 +#: Library/Backend/File/Strings.cs:33 msgid "Local folder or drive" msgstr "" -#: Library/Backend/File/Strings.cs:14 +#: Library/Backend/File/Strings.cs:34 #, csharp-format msgid "The folder {0} does not exist" msgstr "" -#: Library/Backend/File/Strings.cs:15 +#: Library/Backend/File/Strings.cs:35 #, csharp-format msgid "" "The marker file \"{0}\" was not found in any of the examined destinations: " "{1}" msgstr "" -#: Library/Backend/File/Strings.cs:16 +#: Library/Backend/File/Strings.cs:36 msgid "" "When storing the file, the standard operation is to copy the file and delete " "the original. This sequence ensures that the operation can be retried if " @@ -1437,137 +1246,147 @@ msgid "" "option is activated." msgstr "" -#: Library/Backend/File/Strings.cs:17 +#: Library/Backend/File/Strings.cs:37 msgid "Move the file instead of copying it" msgstr "" -#: Library/Backend/File/Strings.cs:18 +#: Library/Backend/File/Strings.cs:38 msgid "Force authentication against remote share" msgstr "" -#: Library/Backend/File/Strings.cs:19 +#: Library/Backend/File/Strings.cs:39 msgid "" "If this option is set, any existing authentication against the remote share " "is dropped before attempting to authenticate" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:4 -msgid "" -"The \"B2 Cloud Storage Application Key\" can be obtained after logging into " -"your Backblaze account, this can also be supplied through the \"auth-password" -"\" property" +#: Library/Backend/File/Strings.cs:40 +msgid "Disable length verification" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:5 +#: Library/Backend/File/Strings.cs:41 +msgid "" +"As an extra precaution the uploaded file length will be checked against the " +"local source length." +msgstr "" + +#: Library/Backend/Backblaze/Strings.cs:25 +msgid "" +"The \"B2 Cloud Storage Application Key\" can be obtained after logging into " +"your Backblaze account, this can also be supplied through the \"auth-" +"password\" property" +msgstr "" + +#: Library/Backend/Backblaze/Strings.cs:26 msgid "The \"B2 Cloud Storage Application Key\"" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:6 +#: Library/Backend/Backblaze/Strings.cs:27 msgid "" "The \"B2 Cloud Storage Account ID\" can be obtained after logging into your " "Backblaze account, this can also be supplied through the \"auth-username\" " "property" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:7 +#: Library/Backend/Backblaze/Strings.cs:28 msgid "The \"B2 Cloud Storage Account ID\"" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:8 +#: Library/Backend/Backblaze/Strings.cs:29 msgid "B2 Cloud Storage" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:13 +#: Library/Backend/Backblaze/Strings.cs:34 msgid "No \"B2 Cloud Storage Application Key\" given" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:14 +#: Library/Backend/Backblaze/Strings.cs:35 msgid "No \"B2 Cloud Storage Account ID\" given" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:15 +#: Library/Backend/Backblaze/Strings.cs:36 msgid "" "This backend can read and write data to the Backblaze B2 Cloud Storage. " "Allowed formats are: \"b2://bucketname/prefix\"" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:16 +#: Library/Backend/Backblaze/Strings.cs:37 msgid "" "By default, a private bucket is created. Use this option to set the bucket " "type. Refer to the B2 documentation for allowed types " msgstr "" -#: Library/Backend/Backblaze/Strings.cs:17 +#: Library/Backend/Backblaze/Strings.cs:38 msgid "The bucket type used when creating a bucket" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:18 +#: Library/Backend/Backblaze/Strings.cs:39 msgid "" "Use this option to set the page size for listing contents of B2 buckets. A " "lower number means less data, but can increase the number of Class C " "transaction on B2. Suggested values are between 100 and 1000" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:19 +#: Library/Backend/Backblaze/Strings.cs:40 msgid "The size of file-listing pages" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:20 +#: Library/Backend/Backblaze/Strings.cs:41 msgid "" "Change this if you want to use your custom domain to download files, and " "uploading will not be affected. The default download url depends on your " "account and looks like \"https://f00X.backblazeb2.com\"" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:21 +#: Library/Backend/Backblaze/Strings.cs:42 msgid "The base URL to use for downloading files" msgstr "" -#: Library/Backend/Backblaze/Strings.cs:22 +#: Library/Backend/Backblaze/Strings.cs:43 #, csharp-format msgid "" "The setting \"{0}\" is invalid for \"{1}\", it must be an integer larger " "than zero" msgstr "" -#: Library/Backend/Sia/Strings.cs:6 +#: Library/Backend/Sia/Strings.cs:26 msgid "Sia Decentralized Cloud" msgstr "" -#: Library/Backend/Sia/Strings.cs:7 +#: Library/Backend/Sia/Strings.cs:27 msgid "This backend can read and write data to Sia." msgstr "" -#: Library/Backend/Sia/Strings.cs:8 +#: Library/Backend/Sia/Strings.cs:28 msgid "Backup path" msgstr "" -#: Library/Backend/Sia/Strings.cs:9 +#: Library/Backend/Sia/Strings.cs:29 msgid "Target path, ie /backup" msgstr "" -#: Library/Backend/Sia/Strings.cs:10 Library/Backend/Sia/Strings.cs:11 +#: Library/Backend/Sia/Strings.cs:30 Library/Backend/Sia/Strings.cs:31 msgid "Sia password" msgstr "" -#: Library/Backend/Sia/Strings.cs:12 +#: Library/Backend/Sia/Strings.cs:32 msgid "3" msgstr "" -#: Library/Backend/Sia/Strings.cs:13 +#: Library/Backend/Sia/Strings.cs:33 msgid "Minimum value is 3." msgstr "" -#: Library/Backend/OneDrive/Strings.cs:8 +#: Library/Backend/OneDrive/Strings.cs:28 #, csharp-format msgid "No Auth-ID was provided - you can get one from {0}" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:9 +#: Library/Backend/OneDrive/Strings.cs:29 msgid "Fragment size for large uploads" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:10 +#: Library/Backend/OneDrive/Strings.cs:30 msgid "" "Size of individual fragments which are uploaded separately for large files. " "It is recommended to be between 5-10 MiB (though a smaller value may work " @@ -1575,39 +1394,39 @@ msgid "" "KiB." msgstr "" -#: Library/Backend/OneDrive/Strings.cs:11 +#: Library/Backend/OneDrive/Strings.cs:31 msgid "Number of retries for each fragment" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:12 +#: Library/Backend/OneDrive/Strings.cs:32 msgid "" "Number of retry attempts made for each fragment before failing the overall " "file upload" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:13 +#: Library/Backend/OneDrive/Strings.cs:33 msgid "Millisecond delay between fragment errors" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:14 +#: Library/Backend/OneDrive/Strings.cs:34 msgid "" "Amount of time (in milliseconds) to wait between failures when uploading " "fragments" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:15 +#: Library/Backend/OneDrive/Strings.cs:35 msgid "Whether the HttpClient class should be used" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:16 +#: Library/Backend/OneDrive/Strings.cs:36 msgid "Whether the HttpClient class should be used to perform HTTP requests" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:21 +#: Library/Backend/OneDrive/Strings.cs:41 msgid "Microsoft OneDrive v2" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:22 +#: Library/Backend/OneDrive/Strings.cs:42 #, csharp-format msgid "" "Stores files in Microsoft OneDrive or Microsoft OneDrive for Business via " @@ -1615,22 +1434,22 @@ msgid "" "the terms in {0} ({1}) and {2} ({3})" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:23 +#: Library/Backend/OneDrive/Strings.cs:43 msgid "Optional ID of the drive" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:24 +#: Library/Backend/OneDrive/Strings.cs:44 #, csharp-format msgid "" "ID of the drive to store data in. If no drive is specified, the default " "OneDrive or OneDrive for Business drive will be used via '{0}'." msgstr "" -#: Library/Backend/OneDrive/Strings.cs:29 +#: Library/Backend/OneDrive/Strings.cs:49 msgid "Microsoft SharePoint v2" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:30 +#: Library/Backend/OneDrive/Strings.cs:50 #, csharp-format msgid "" "Stores files in a Microsoft SharePoint site via the Microsoft Graph API. " @@ -1638,28 +1457,28 @@ msgid "" "{2} ({3})" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:31 +#: Library/Backend/OneDrive/Strings.cs:51 msgid "ID of the site" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:32 +#: Library/Backend/OneDrive/Strings.cs:52 msgid "ID of the site to store data in" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:33 +#: Library/Backend/OneDrive/Strings.cs:53 msgid "No site ID was provided" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:34 +#: Library/Backend/OneDrive/Strings.cs:54 #, csharp-format msgid "Conflicting site IDs used: given {0} but found {1}" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:39 +#: Library/Backend/OneDrive/Strings.cs:59 msgid "Microsoft Office 365 Group" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:40 +#: Library/Backend/OneDrive/Strings.cs:60 #, csharp-format msgid "" "Stores files in a Microsoft Office 365 Group via the Microsoft Graph API. " @@ -1671,202 +1490,246 @@ msgid "" "({3})" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:41 +#: Library/Backend/OneDrive/Strings.cs:61 msgid "ID of the group" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:42 +#: Library/Backend/OneDrive/Strings.cs:62 msgid "ID of the group to store data in" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:43 +#: Library/Backend/OneDrive/Strings.cs:63 msgid "Email address of the group" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:44 +#: Library/Backend/OneDrive/Strings.cs:64 msgid "Email address of the group to store data in" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:45 +#: Library/Backend/OneDrive/Strings.cs:65 msgid "No group ID or group email address was provided" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:46 +#: Library/Backend/OneDrive/Strings.cs:66 #, csharp-format msgid "No groups were found with the given email address: {0}" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:47 +#: Library/Backend/OneDrive/Strings.cs:67 #, csharp-format msgid "Multiple groups were found with the given email address: {0}" msgstr "" -#: Library/Backend/OneDrive/Strings.cs:48 +#: Library/Backend/OneDrive/Strings.cs:68 #, csharp-format msgid "Conflicting group IDs used: given {0} but found {1}" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:4 +#: Library/Backend/AliyunOSS/Strings.cs:7 +msgid "Aliyun OSS" +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:8 +msgid "" +"Aliyun Object Storage Service (OSS) is a massive, secure, low-cost, and " +"highly reliable cloud storage service, offering up to 99.995% service " +"availability." +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:10 +msgid "Access Key Id" +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:11 +msgid "AccessKeyId is used to identify the user." +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:13 +msgid "Access Key Secret" +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:14 +msgid "" +"AccessKeySecret is the key used by the user to encrypt signature strings and " +"by OSS to verify these signature strings" +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:16 +msgid "Bucket Name" +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:17 +msgid "" +"A storage space is a container used to store objects (Object), and all " +"objects must belong to a specific storage space." +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:19 +msgid "Region" +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:20 +msgid "Region indicates the physical location of the OSS data center." +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:22 +msgid "Endpoint" +msgstr "" + +#: Library/Backend/AliyunOSS/Strings.cs:23 +msgid "" +"Endpoint refers to the domain name through which OSS provides external " +"services." +msgstr "" + +#: Library/Backend/AzureBlob/Strings.cs:25 msgid "All files will be written to the container specified" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:5 +#: Library/Backend/AzureBlob/Strings.cs:26 msgid "The name of the storage container " msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:6 +#: Library/Backend/AzureBlob/Strings.cs:27 msgid "Azure blob" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:7 +#: Library/Backend/AzureBlob/Strings.cs:28 msgid "No Azure storage account name given" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:8 +#: Library/Backend/AzureBlob/Strings.cs:29 msgid "" "The Azure storage account name which can be obtained by clicking the " "\"Manage Access Keys\" button on the storage account dashboard" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:9 +#: Library/Backend/AzureBlob/Strings.cs:30 msgid "The storage account name" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:10 +#: Library/Backend/AzureBlob/Strings.cs:31 msgid "" "The Azure access key which can be obtained by clicking the \"Manage Access " "Keys\" button on the storage account dashboard" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:11 +#: Library/Backend/AzureBlob/Strings.cs:32 msgid "The access key" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:12 -msgid "No Azure access key given" +#: Library/Backend/AzureBlob/Strings.cs:33 +msgid "" +"The Azure shared access signature (SAS) token which can be obtained by " +"selecting the \"Shared access signature\" blade on the storage account " +"dashboard, or inside a container blade" msgstr "" -#: Library/Backend/AzureBlob/Strings.cs:17 +#: Library/Backend/AzureBlob/Strings.cs:34 +msgid "The SAS token" +msgstr "" + +#: Library/Backend/AzureBlob/Strings.cs:35 +msgid "No Azure access key or SAS token given" +msgstr "" + +#: Library/Backend/AzureBlob/Strings.cs:40 msgid "" "This backend can read and write data to Azure blob storage. Allowed formats " "are: \"azure://bucketname\"" msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:12 -msgid "Tardigrade Decentralized Cloud Storage" +#: Library/Backend/TencentCOS/Strings.cs:27 +msgid "Tencent COS" msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:13 +#: Library/Backend/TencentCOS/Strings.cs:28 msgid "" -"This backend can read and write data to the Tardigrade Decentralized Cloud " -"Storage." +"Object storage (Cloud Object Storage, COS) is a distributed storage service " +"for storing massive files provided by Tencent Cloud, which has the " +"advantages of high scalability, low cost, reliability and security." msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:14 -msgid "The connection-test failed." +#: Library/Backend/TencentCOS/Strings.cs:30 +msgid "Account ID" msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:15 -msgid "The authentication method" +#: Library/Backend/TencentCOS/Strings.cs:31 +msgid "Account ID of Tencent Cloud Account" msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:16 +#: Library/Backend/TencentCOS/Strings.cs:33 +msgid "Secret Id" +msgstr "" + +#: Library/Backend/TencentCOS/Strings.cs:34 +msgid "Cloud API Secret Id" +msgstr "" + +#: Library/Backend/TencentCOS/Strings.cs:36 +msgid "Secret Key" +msgstr "" + +#: Library/Backend/TencentCOS/Strings.cs:37 +msgid "Cloud API Secret Key" +msgstr "" + +#: Library/Backend/TencentCOS/Strings.cs:39 +msgid "Bucket" +msgstr "" + +#: Library/Backend/TencentCOS/Strings.cs:40 +msgid "Bucket, format: BucketName-APPID" +msgstr "" + +#: Library/Backend/TencentCOS/Strings.cs:42 +msgid "Specifies COS location constraints" +msgstr "" + +#: Library/Backend/TencentCOS/Strings.cs:43 msgid "" -"The authentication method describes which way to use to connect to the " -"network - either via API key or via an access grant." +"Region (Region) is the distribution area of ​​the Tencent cloud hosting " +"machine room, the object storage COS data is stored in the storage buckets " +"of these regions. https://intl.cloud.tencent.com/document/product/436/6224" msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:17 -msgid "The satellite" +#: Library/Backend/TencentCOS/Strings.cs:45 +msgid "Storage class of the object" msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:18 +#: Library/Backend/TencentCOS/Strings.cs:46 msgid "" -"The satellite that keeps track of all metadata. Use a Tardigrade-grade " -"server for high-performance SLA-backed connectivity or use a community " -"server. Or even host your own." +"Storage class of the object; check enumerated values at https://intl.cloud." +"tencent.com/document/product/436/30925" msgstr "" -#: Library/Backend/Tardigrade/Strings.cs:19 -msgid "The API key" -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:20 -msgid "" -"The API key grants access to a specific project on your chosen satellite. " -"Head over to the dashboard of your satellite to create one if you do not " -"already have an API key." -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:21 -msgid "The encryption passphrase" -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:22 -msgid "" -"The encryption passphrase is used to encrypt your data before sending it to " -"the tardigrade network. This passphrase can be the only secret to provide - " -"for Tardigrade you do not necessary need any additional encryption (from " -"Duplicati) in place." -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:23 -msgid "The access grant" -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:24 -msgid "" -"An access grant contains all information in one encrypted string. You may " -"use it instead of a satellite, API key and secret." -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:25 -msgid "The bucket" -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:26 -msgid "The bucket where the backup will reside in." -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:27 -msgid "The folder" -msgstr "" - -#: Library/Backend/Tardigrade/Strings.cs:28 -msgid "The folder within the bucket where the backup will reside in." -msgstr "" - -#: Library/Backend/Jottacloud/Strings.cs:5 +#: Library/Backend/Jottacloud/Strings.cs:25 msgid "Jottacloud" msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:6 +#: Library/Backend/Jottacloud/Strings.cs:26 msgid "" "This backend can read and write data to Jottacloud using it's REST protocol. " "Allowed format is \"jottacloud://folder/subfolder\"." msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:7 Library/Backend/Mega/Strings.cs:10 -msgid "No username given" +#: Library/Backend/Jottacloud/Strings.cs:29 +msgid "No username found" msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:8 Library/Backend/Mega/Strings.cs:9 -msgid "No password given" -msgstr "" - -#: Library/Backend/Jottacloud/Strings.cs:9 +#: Library/Backend/Jottacloud/Strings.cs:30 msgid "No path given, cannot upload files to the root folder" msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:10 +#: Library/Backend/Jottacloud/Strings.cs:31 msgid "Illegal mount point given." msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:16 +#: Library/Backend/Jottacloud/Strings.cs:33 msgid "Supplies the backup device to use" msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:17 +#: Library/Backend/Jottacloud/Strings.cs:34 #, csharp-format msgid "" "The backup device to use. Will be created if not already exists. You can " @@ -1875,11 +1738,11 @@ msgid "" "use on this device with the \"{0}\" option." msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:18 +#: Library/Backend/Jottacloud/Strings.cs:35 msgid "Supplies the mount point to use on the server" msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:19 +#: Library/Backend/Jottacloud/Strings.cs:36 #, csharp-format msgid "" "The mount point to use on the server. The default is \"Archive\" for using " @@ -1889,41 +1752,101 @@ msgid "" "you like." msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:20 +#: Library/Backend/Jottacloud/Strings.cs:37 msgid "Number of threads for restore operations." msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:21 +#: Library/Backend/Jottacloud/Strings.cs:38 msgid "" "Number of threads for restore operations. In some cases the download rate is " "limited to 18.5 Mbps per stream. Use multiple threads to increase throughput." msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:22 +#: Library/Backend/Jottacloud/Strings.cs:39 msgid "The chunk size for simultaneous downloading." msgstr "" -#: Library/Backend/Jottacloud/Strings.cs:23 +#: Library/Backend/Jottacloud/Strings.cs:40 msgid "" "The chunk size for simultaneous downloading. These chunks will be held in " "memory, so keep it as low as possible." msgstr "" -#: Library/Backend/Mega/Strings.cs:4 +#: Library/Backend/Mega/Strings.cs:24 msgid "mega.nz" msgstr "" -#: Library/Backend/Mega/Strings.cs:11 +#: Library/Backend/Mega/Strings.cs:29 +msgid "The shared secret used to generate two-factor TOTP codes." +msgstr "" + +#: Library/Backend/Mega/Strings.cs:30 +msgid "" +"For accounts with two-factor authentication enabled, this is the shared " +"secret used to generate the two-factor TOTP codes." +msgstr "" + +#: Library/Backend/Mega/Strings.cs:31 +msgid "No password given" +msgstr "" + +#: Library/Backend/Mega/Strings.cs:32 +msgid "No username given" +msgstr "" + +#: Library/Backend/Mega/Strings.cs:33 msgid "" "This backend can read and write data to Mega.co.nz. Allowed formats are: " "\"mega://folder/subfolder\"" msgstr "" -#: Library/Backend/SharePoint/Strings.cs:6 +#: Library/Backend/Idrivee2/Strings.cs:24 +msgid "" +"The \"Access Key Secret \" can be obtained after logging into your IDrive e2 " +"account, this can also be supplied through the \"auth-password\" property." +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:25 +msgid "The \"Access Key Secret\"" +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:26 +msgid "" +"The \"Access Key ID\" can be obtained after logging into your IDrive e2 " +"account., this can also be supplied through the \"auth-username\" property." +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:27 +msgid "The \"Access Key ID\"" +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:29 +msgid "" +"The \"Bucket Name or Complete Path\" is name of target bucket or complete of " +"a folder inside the bucket." +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:30 +msgid "The \"Bucket Name or Complete Path\"" +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:32 +msgid "IDrive e2" +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:33 +msgid "No Access key secret given" +msgstr "" + +#: Library/Backend/Idrivee2/Strings.cs:34 +msgid "No Access key Id given" +msgstr "" + +#: Library/Backend/SharePoint/Strings.cs:26 msgid "Microsoft SharePoint" msgstr "" -#: Library/Backend/SharePoint/Strings.cs:7 +#: Library/Backend/SharePoint/Strings.cs:27 msgid "" "Supports connections to a SharePoint server (including OneDrive for " "Business). Allowed formats are \"mssp://tennant.sharepoint.com/PathToWeb//" @@ -1932,30 +1855,30 @@ msgid "" "path to denote the web from the documents library." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:12 -#: Library/Backend/WEBDAV/Strings.cs:11 +#: Library/Backend/SharePoint/Strings.cs:32 +#: Library/Backend/WEBDAV/Strings.cs:31 msgid "" "If the server and client both supports integrated authentication, this " "option enables that authentication method. This is likely only available " "with windows servers and clients." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:13 -#: Library/Backend/WEBDAV/Strings.cs:12 +#: Library/Backend/SharePoint/Strings.cs:33 +#: Library/Backend/WEBDAV/Strings.cs:32 msgid "Use windows integrated authentication to connect to the server" msgstr "" -#: Library/Backend/SharePoint/Strings.cs:14 +#: Library/Backend/SharePoint/Strings.cs:34 msgid "" "Use this option to have files moved to the recycle bin folder instead of " "removing them permanently when compacting or deleting backups." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:15 +#: Library/Backend/SharePoint/Strings.cs:35 msgid "Move deleted files to the recycle bin" msgstr "" -#: Library/Backend/SharePoint/Strings.cs:17 +#: Library/Backend/SharePoint/Strings.cs:37 msgid "" "Use this option to upload files to SharePoint as a whole with BinaryDirect " "mode. This is the most efficient way of uploading, but can cause non-" @@ -1963,79 +1886,79 @@ msgid "" "very fast and stable internet connections." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:18 +#: Library/Backend/SharePoint/Strings.cs:38 msgid "Upload files using binary direct mode." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:20 +#: Library/Backend/SharePoint/Strings.cs:40 msgid "" "Use this option to specify a custom value for timeouts of web operation when " "communicating with SharePoint Server. Recommended value is 180s." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:21 +#: Library/Backend/SharePoint/Strings.cs:41 msgid "Set timeout for SharePoint web operations." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:23 +#: Library/Backend/SharePoint/Strings.cs:43 msgid "" "Use this option to specify the size of each chunk when uploading to " "SharePoint Server. Recommended value is 4MB." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:24 +#: Library/Backend/SharePoint/Strings.cs:44 msgid "Set block size for chunked uploads to SharePoint." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:26 +#: Library/Backend/SharePoint/Strings.cs:46 #, csharp-format msgid "Element with path '{0}' not found on host '{1}'." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:27 +#: Library/Backend/SharePoint/Strings.cs:47 #, csharp-format msgid "" "No SharePoint web could be logged in to at path '{0}'. Maybe wrong " "credentials. Or try using '//' in path to separate web from folder path." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:28 +#: Library/Backend/SharePoint/Strings.cs:48 msgid "" "Everything seemed alright, but then web title could not be read to test " "connection. Something's wrong." msgstr "" -#: Library/Backend/SharePoint/Strings.cs:33 +#: Library/Backend/SharePoint/Strings.cs:53 msgid "Microsoft OneDrive for Business" msgstr "" -#: Library/Backend/SharePoint/Strings.cs:34 +#: Library/Backend/SharePoint/Strings.cs:54 msgid "" "Supports connections to Microsoft OneDrive for Business. Allowed formats are " -"\"od4b://tennant.sharepoint.com/personal/username_domain/Documents/subfolder" -"\" or \"od4b://username:password@tennant.sharepoint.com/personal/" +"\"od4b://tennant.sharepoint.com/personal/username_domain/Documents/" +"subfolder\" or \"od4b://username:password@tennant.sharepoint.com/personal/" "username_domain/Documents/folder\". You can use a double slash '//' in the " "path to denote the base path from the documents folder." msgstr "" -#: Library/Backend/Dropbox/Strings.cs:22 +#: Library/Backend/Dropbox/Strings.cs:27 msgid "" "This backend can read and write data to Dropbox. Supported format is " "\"dropbox://folder/subfolder\"." msgstr "" -#: Library/Backend/Dropbox/Strings.cs:23 +#: Library/Backend/Dropbox/Strings.cs:28 msgid "Dropbox" msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:4 +#: Library/Backend/WEBDAV/Strings.cs:24 msgid "" "Supports connections to a WEBDAV enabled web server, using the HTTP " "protocol. Allowed formats are \"webdav://hostname/folder\" or \"webdav://" "username:password@hostname/folder\"." msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:5 +#: Library/Backend/WEBDAV/Strings.cs:25 msgid "" "Using the HTTP Digest authentication method allows the user to authenticate " "with the server, without sending the password in clear. However, a man-in-" @@ -2045,22 +1968,22 @@ msgid "" "Digest authentication or fails to connect." msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:6 +#: Library/Backend/WEBDAV/Strings.cs:26 msgid "Force the use of the HTTP Digest authentication method" msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:13 +#: Library/Backend/WEBDAV/Strings.cs:33 msgid "WebDAV" msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:14 +#: Library/Backend/WEBDAV/Strings.cs:34 #, csharp-format msgid "" "The server returned the error code {0} ({1}), indicating that the server " "does not support WebDAV connections" msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:16 +#: Library/Backend/WEBDAV/Strings.cs:36 #, csharp-format msgid "" "When listing the folder {0} the file {1} was listed, but the server now " @@ -2071,78 +1994,168 @@ msgid "" "Error message: {3}" msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:19 Library/Backend/TahoeLAFS/Strings.cs:5 +#: Library/Backend/WEBDAV/Strings.cs:39 Library/Backend/TahoeLAFS/Strings.cs:25 msgid "" "Use this flag to communicate using Secure Socket Layer (SSL) over http " "(https)." msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:21 +#: Library/Backend/WEBDAV/Strings.cs:41 msgid "" "To aid in debugging issues, it is possible to set a path to a file that will " "be overwritten with the PROPFIND response" msgstr "" -#: Library/Backend/WEBDAV/Strings.cs:22 +#: Library/Backend/WEBDAV/Strings.cs:42 msgid "Dump the PROPFIND response" msgstr "" -#: Library/Backend/TahoeLAFS/Strings.cs:4 +#: Library/Backend/TahoeLAFS/Strings.cs:24 msgid "" "This backend can read and write data to a Tahoe-LAFS based backend. Allowed " "format is \"tahoe://hostname:port/uri/$DIRCAP\"." msgstr "" -#: Library/Backend/TahoeLAFS/Strings.cs:7 +#: Library/Backend/TahoeLAFS/Strings.cs:27 msgid "Tahoe-LAFS" msgstr "" -#: Library/Backend/TahoeLAFS/Strings.cs:9 +#: Library/Backend/TahoeLAFS/Strings.cs:29 msgid "Unsupported URL format, must start with \"uri/URI:DIR2:\"" msgstr "" -#: Library/Backend/OAuthHelper/Strings.cs:7 +#: Library/Backend/Storj/StorjConfig.cs:44 +msgid "Storj DCS configuration module" +msgstr "" + +#: Library/Backend/Storj/StorjConfig.cs:46 +msgid "Exposes Storj DCS configuration as a web module" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:27 +msgid "Storj DCS (Decentralized Cloud Storage)" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:28 +msgid "This backend can read and write data to the Storj DCS." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:29 +msgid "The connection-test failed." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:30 +msgid "The authentication method" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:31 +msgid "" +"The authentication method describes which way to use to connect to the " +"network - either via API key or via an access grant." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:32 +msgid "The satellite" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:33 +msgid "" +"The satellite that keeps track of all metadata. Use a Storj DCS server for " +"high-performance SLA-backed connectivity or use a community server. Or even " +"host your own." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:34 +msgid "The API key" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:35 +msgid "" +"The API key grants access to a specific project on your chosen satellite. " +"Head over to the dashboard of your satellite to create one if you do not " +"already have an API key." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:36 +msgid "The encryption passphrase" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:37 +msgid "" +"The encryption passphrase is used to encrypt your data before sending it to " +"the Storj network. This passphrase can be the only secret to provide - for " +"Storj you do not necessary need any additional encryption (from Duplicati) " +"in place." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:38 +msgid "The access grant" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:39 +msgid "" +"An access grant contains all information in one encrypted string. You may " +"use it instead of a satellite, API key and secret." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:40 +msgid "The bucket" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:41 +msgid "The bucket where the backup will reside in." +msgstr "" + +#: Library/Backend/Storj/Strings.cs:42 +msgid "The folder" +msgstr "" + +#: Library/Backend/Storj/Strings.cs:43 +msgid "The folder within the bucket where the backup will reside in." +msgstr "" + +#: Library/Backend/OAuthHelper/Strings.cs:27 #, csharp-format msgid "" "Failed to authorize using the OAuth service: {0}. If the problem persists, " "try generating a new authid token from: {1}" msgstr "" -#: Library/Backend/OAuthHelper/Strings.cs:8 +#: Library/Backend/OAuthHelper/Strings.cs:28 #, csharp-format msgid "Unexpected error code: {0} - {1}" msgstr "" -#: Library/Backend/OAuthHelper/Strings.cs:11 +#: Library/Backend/OAuthHelper/Strings.cs:31 msgid "The OAuth service is currently over quota, try again in a few hours" msgstr "" -#: Library/DynamicLoader/Strings.cs:4 +#: Library/DynamicLoader/Strings.cs:24 #, csharp-format msgid "Failed to load assembly {0}, error message: {1}" msgstr "" -#: Library/DynamicLoader/Strings.cs:5 +#: Library/DynamicLoader/Strings.cs:25 #, csharp-format msgid "Failed to load process type {0} assembly {1}, error message: {2}" msgstr "" -#: Library/Compression/Strings.cs:4 +#: Library/Compression/Strings.cs:24 #, csharp-format msgid "Please use the {0} option instead" msgstr "" -#: Library/Compression/Strings.cs:5 Library/Compression/Strings.cs:23 +#: Library/Compression/Strings.cs:25 Library/Compression/Strings.cs:43 msgid "" "This option controls the compression level used. A setting of zero gives no " "compression, and a setting of 9 gives maximum compression." msgstr "" -#: Library/Compression/Strings.cs:6 +#: Library/Compression/Strings.cs:26 msgid "Sets the Zip compression level" msgstr "" -#: Library/Compression/Strings.cs:7 +#: Library/Compression/Strings.cs:27 #, csharp-format msgid "" "This option can be used to set an alternative compressor method, such as " @@ -2150,90 +2163,90 @@ msgid "" "to be ignored." msgstr "" -#: Library/Compression/Strings.cs:8 +#: Library/Compression/Strings.cs:28 msgid "Sets the Zip compression method" msgstr "" -#: Library/Compression/Strings.cs:9 +#: Library/Compression/Strings.cs:29 msgid "Toggles Zip64 support" msgstr "" -#: Library/Compression/Strings.cs:10 +#: Library/Compression/Strings.cs:30 msgid "" "The zip64 format is required for files larger than 4GiB, use this flag to " "toggle it" msgstr "" -#: Library/Compression/Strings.cs:11 +#: Library/Compression/Strings.cs:31 msgid "" "This module provides the industry standard Zip compression. Files created " "with this module can be read by any standard-compliant zip application." msgstr "" -#: Library/Compression/Strings.cs:12 +#: Library/Compression/Strings.cs:32 msgid "Zip compression" msgstr "" -#: Library/Compression/Strings.cs:13 +#: Library/Compression/Strings.cs:33 #, csharp-format msgid "File not found: {0}" msgstr "" -#: Library/Compression/Strings.cs:16 +#: Library/Compression/Strings.cs:36 msgid "Archive not opened for writing" msgstr "" -#: Library/Compression/Strings.cs:17 +#: Library/Compression/Strings.cs:37 msgid "Archive not opened for reading" msgstr "" -#: Library/Compression/Strings.cs:18 +#: Library/Compression/Strings.cs:38 msgid "The given file is not part of this archive" msgstr "" -#: Library/Compression/Strings.cs:19 +#: Library/Compression/Strings.cs:39 msgid "*Experimental*: 7z Archive with LZMA2 support." msgstr "" -#: Library/Compression/Strings.cs:20 +#: Library/Compression/Strings.cs:40 msgid "Experimental - 7z Archive" msgstr "" -#: Library/Compression/Strings.cs:21 +#: Library/Compression/Strings.cs:41 msgid "" "The number of threads used in LZMA 2 compression. Defaults to the number of " "processor cores." msgstr "" -#: Library/Compression/Strings.cs:22 +#: Library/Compression/Strings.cs:42 msgid "Number of threads used in compression" msgstr "" -#: Library/Compression/Strings.cs:24 +#: Library/Compression/Strings.cs:44 msgid "Sets the 7z compression level" msgstr "" -#: Library/Compression/Strings.cs:25 +#: Library/Compression/Strings.cs:45 msgid "" "This option controls the compression algorithm used. Enabling this option " "will cause 7z to use the fast algorithm, which produces slightly less " "compression." msgstr "" -#: Library/Compression/Strings.cs:26 +#: Library/Compression/Strings.cs:46 msgid "Sets the 7z fast algorithm usage" msgstr "" -#: Library/SQLiteHelper/Strings.cs:4 +#: Library/SQLiteHelper/Strings.cs:24 msgid "backup" msgstr "" -#: Library/SQLiteHelper/Strings.cs:5 +#: Library/SQLiteHelper/Strings.cs:25 #, csharp-format msgid "Unable to determine database format: {0}" msgstr "" -#: Library/SQLiteHelper/Strings.cs:6 +#: Library/SQLiteHelper/Strings.cs:26 #, csharp-format msgid "" "\n" @@ -2244,11 +2257,11 @@ msgid "" "version in the folder {2}." msgstr "" -#: Library/SQLiteHelper/Strings.cs:11 +#: Library/SQLiteHelper/Strings.cs:31 msgid "Unknown table layout detected" msgstr "" -#: Library/SQLiteHelper/Strings.cs:12 +#: Library/SQLiteHelper/Strings.cs:32 #, csharp-format msgid "" "Failed to execute SQL: {0}\n" @@ -2256,135 +2269,138 @@ msgid "" "Database is NOT upgraded." msgstr "" -#: Library/Main/Strings.cs:8 +#: Library/Main/Strings.cs:28 #, csharp-format msgid "Hash mismatch on file \"{0}\", recorded hash: {1}, actual hash {2}" msgstr "" -#: Library/Main/Strings.cs:9 +#: Library/Main/Strings.cs:29 #, csharp-format msgid "" "The file {0} was downloaded and had size {1} but the size was expected to be " "{2}" msgstr "" -#: Library/Main/Strings.cs:10 +#: Library/Main/Strings.cs:30 #, csharp-format msgid "The option {0} is deprecated: {1}" msgstr "" -#: Library/Main/Strings.cs:11 +#: Library/Main/Strings.cs:31 #, csharp-format msgid "" "The option --{0} exists more than once, please report this to the developers" msgstr "" -#: Library/Main/Strings.cs:12 +#: Library/Main/Strings.cs:32 msgid "No source folders specified for backup" msgstr "" -#: Library/Main/Strings.cs:13 +#: Library/Main/Strings.cs:33 #, csharp-format -msgid "The source folder {0} does not exist, aborting backup" +msgid "" +"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." msgstr "" -#: Library/Main/Strings.cs:14 +#: Library/Main/Strings.cs:34 #, csharp-format msgid "Unauthorized to access source folder {0}, aborting backup" msgstr "" -#: Library/Main/Strings.cs:15 +#: Library/Main/Strings.cs:35 #, csharp-format msgid "" "The value \"{1}\" supplied to --{0} does not parse into a valid boolean, " "this will be treated as if it was set to \"true\"" msgstr "" -#: Library/Main/Strings.cs:16 +#: Library/Main/Strings.cs:36 #, csharp-format msgid "" "The option --{0} does not support the value \"{1}\", supported values are: " "{2}" msgstr "" -#: Library/Main/Strings.cs:17 +#: Library/Main/Strings.cs:37 #, csharp-format msgid "" "The option --{0} does not support the value \"{1}\", supported flag values " "are: {2}" msgstr "" -#: Library/Main/Strings.cs:18 +#: Library/Main/Strings.cs:38 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid integer" msgstr "" -#: Library/Main/Strings.cs:19 +#: Library/Main/Strings.cs:39 #, csharp-format msgid "" "The option --{0} is not supported because the module {1} is not currently " "loaded" msgstr "" -#: Library/Main/Strings.cs:20 +#: Library/Main/Strings.cs:40 #, csharp-format msgid "The supplied option --{0} is not supported and will be ignored" msgstr "" -#: Library/Main/Strings.cs:21 +#: Library/Main/Strings.cs:41 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid path" msgstr "" -#: Library/Main/Strings.cs:22 +#: Library/Main/Strings.cs:42 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid size" msgstr "" -#: Library/Main/Strings.cs:23 +#: Library/Main/Strings.cs:43 #, csharp-format msgid "The value \"{1}\" supplied to --{0} does not represent a valid time" msgstr "" -#: Library/Main/Strings.cs:24 +#: Library/Main/Strings.cs:44 #, csharp-format msgid "The operation {0} has started" msgstr "" -#: Library/Main/Strings.cs:25 +#: Library/Main/Strings.cs:45 #, csharp-format msgid "The operation {0} has completed" msgstr "" -#: Library/Main/Strings.cs:26 +#: Library/Main/Strings.cs:46 #, csharp-format msgid "The operation {0} has failed with error: {1}" msgstr "" -#: Library/Main/Strings.cs:27 +#: Library/Main/Strings.cs:47 #, csharp-format msgid "Invalid path: \"{0}\" ({1})" msgstr "" -#: Library/Main/Strings.cs:28 +#: Library/Main/Strings.cs:48 #, csharp-format msgid "" "Failed to apply 'force-locale' setting. Please try to update .NET-Framework. " "Exception was: \"{0}\" " msgstr "" -#: Library/Main/Strings.cs:29 +#: Library/Main/Strings.cs:49 #, csharp-format msgid "The source {0} uses an invalid volume name, aborting backup" msgstr "" -#: Library/Main/Strings.cs:30 +#: Library/Main/Strings.cs:50 #, csharp-format msgid "" "The source {0} is on volume {1}, which could not be found, aborting backup" msgstr "" -#: Library/Main/Strings.cs:31 +#: Library/Main/Strings.cs:51 #, csharp-format msgid "" "The size \"{1}\" supplied to --{0} does not have a multiplier (b, kb, mb, " @@ -2392,18 +2408,18 @@ msgid "" "is updated." msgstr "" -#: Library/Main/Strings.cs:36 +#: Library/Main/Strings.cs:56 msgid "" "If a backup is interrupted there will likely be partial files present on the " "backend. Using this flag, Duplicati will automatically remove such files " "when encountered." msgstr "" -#: Library/Main/Strings.cs:37 +#: Library/Main/Strings.cs:57 msgid "A flag indicating that Duplicati should remove unused files" msgstr "" -#: Library/Main/Strings.cs:38 +#: Library/Main/Strings.cs:58 msgid "" "A string used to prefix the filenames of the remote volumes, can be used to " "store multiple backups in the same remote folder. The prefix cannot contain " @@ -2411,11 +2427,11 @@ msgid "" "storage." msgstr "" -#: Library/Main/Strings.cs:39 +#: Library/Main/Strings.cs:59 msgid "Remote filename prefix" msgstr "" -#: Library/Main/Strings.cs:40 +#: Library/Main/Strings.cs:60 msgid "" "The operating system keeps track of the last time a file was written. Using " "this information, Duplicati can quickly determine if the file has been " @@ -2423,217 +2439,240 @@ msgid "" "Duplicati won't work correctly unless this flag is set." msgstr "" -#: Library/Main/Strings.cs:41 +#: Library/Main/Strings.cs:61 msgid "Disable checks based on file time" msgstr "" -#: Library/Main/Strings.cs:42 +#: Library/Main/Strings.cs:62 msgid "" "By default, files will be restored in the source folders, use this option to " "restore to another folder" msgstr "" -#: Library/Main/Strings.cs:43 +#: Library/Main/Strings.cs:63 msgid "Restore to another folder" msgstr "" -#: Library/Main/Strings.cs:44 +#: Library/Main/Strings.cs:64 msgid "Toggles system sleep mode" msgstr "" -#: Library/Main/Strings.cs:45 +#: Library/Main/Strings.cs:65 msgid "" "Allow system to enter sleep power modes for inactivity during backup/restore " "operations (Windows/OSX only)" msgstr "" -#: Library/Main/Strings.cs:46 +#: Library/Main/Strings.cs:66 msgid "" "By setting this value you can limit how much bandwidth Duplicati consumes " "for downloads. Setting this limit can make the backups take longer, but will " "make Duplicati less intrusive." msgstr "" -#: Library/Main/Strings.cs:47 +#: Library/Main/Strings.cs:67 msgid "Max number of kilobytes to download pr. second" msgstr "" -#: Library/Main/Strings.cs:48 +#: Library/Main/Strings.cs:68 msgid "" "By setting this value you can limit how much bandwidth Duplicati consumes " "for uploads. Setting this limit can make the backups take longer, but will " "make Duplicati less intrusive." msgstr "" -#: Library/Main/Strings.cs:49 +#: Library/Main/Strings.cs:69 msgid "Max number of kilobytes to upload pr. second" msgstr "" -#: Library/Main/Strings.cs:50 +#: Library/Main/Strings.cs:70 msgid "" "If you store the backups on a local disk, and prefer that they are kept " "unencrypted, you can turn of encryption completely by using this switch." msgstr "" -#: Library/Main/Strings.cs:51 +#: Library/Main/Strings.cs:71 msgid "Disable encryption" msgstr "" -#: Library/Main/Strings.cs:52 +#: Library/Main/Strings.cs:72 msgid "" "If an upload or download fails, Duplicati will retry a number of times " "before failing. Use this to handle unstable network connections better." msgstr "" -#: Library/Main/Strings.cs:53 +#: Library/Main/Strings.cs:73 msgid "Number of times to retry a failed transmission" msgstr "" -#: Library/Main/Strings.cs:54 +#: Library/Main/Strings.cs:74 msgid "" "Supply a passphrase that Duplicati will use to encrypt the backup volumes, " "making them unreadable without the passphrase. This variable can also be " "supplied through the environment variable PASSPHRASE." msgstr "" -#: Library/Main/Strings.cs:55 +#: Library/Main/Strings.cs:75 msgid "Passphrase used to encrypt backups" msgstr "" -#: Library/Main/Strings.cs:56 +#: Library/Main/Strings.cs:76 msgid "" "By default, Duplicati will list and restore files from the most recent " "backup, use this option to select another item. You may use relative times, " "like \"-2M\" for a backup from two months ago." msgstr "" -#: Library/Main/Strings.cs:57 +#: Library/Main/Strings.cs:77 msgid "The time to list/restore files" msgstr "" -#: Library/Main/Strings.cs:58 +#: Library/Main/Strings.cs:78 msgid "" "By default, Duplicati will list and restore files from the most recent " "backup, use this option to select another item. You may enter multiple " "values separated with comma, and ranges using -, e.g. \"0,2-4,7\" ." msgstr "" -#: Library/Main/Strings.cs:59 +#: Library/Main/Strings.cs:79 msgid "The version to list/restore files" msgstr "" -#: Library/Main/Strings.cs:60 +#: Library/Main/Strings.cs:80 msgid "" "When searching for files, only the most recent backup is searched. Use this " "option to show all previous versions too." msgstr "" -#: Library/Main/Strings.cs:61 +#: Library/Main/Strings.cs:81 msgid "Show all versions" msgstr "" -#: Library/Main/Strings.cs:62 +#: Library/Main/Strings.cs:82 msgid "" "When searching for files, all matching files are returned. Use this option " "to return only the largest common prefix path." msgstr "" -#: Library/Main/Strings.cs:63 +#: Library/Main/Strings.cs:83 msgid "Show largest prefix" msgstr "" -#: Library/Main/Strings.cs:64 +#: Library/Main/Strings.cs:84 msgid "" "When searching for files, all matching files are returned. Use this option " "to return only the entries found in the folder specified as filter." msgstr "" -#: Library/Main/Strings.cs:65 +#: Library/Main/Strings.cs:85 msgid "Show folder contents" msgstr "" -#: Library/Main/Strings.cs:66 +#: Library/Main/Strings.cs:86 msgid "" "After a failed transmission, Duplicati will wait a short period before " "attempting again. This is useful if the network drops out occasionally " "during transmissions." msgstr "" -#: Library/Main/Strings.cs:67 +#: Library/Main/Strings.cs:87 msgid "Time to wait between retries" msgstr "" -#: Library/Main/Strings.cs:68 +#: Library/Main/Strings.cs:88 +msgid "" +"After a failed transmission, Duplicati will wait a short period before " +"attempting again. This period is controlled by the retry-delay option. When " +"this option is enabled, that period is doubled after each consecutive " +"failure." +msgstr "" + +#: Library/Main/Strings.cs:89 +msgid "Whether to enable exponential backoff." +msgstr "" + +#: Library/Main/Strings.cs:90 msgid "Use this option to attach extra files to the newly uploaded filelists." msgstr "" -#: Library/Main/Strings.cs:69 +#: Library/Main/Strings.cs:91 msgid "Set control files" msgstr "" -#: Library/Main/Strings.cs:70 +#: Library/Main/Strings.cs:92 msgid "" "If the hash for the volume does not match, Duplicati will refuse to use the " "backup. Supply this flag to allow Duplicati to proceed anyway." msgstr "" -#: Library/Main/Strings.cs:71 +#: Library/Main/Strings.cs:93 msgid "Set this flag to skip hash checks" msgstr "" -#: Library/Main/Strings.cs:72 +#: Library/Main/Strings.cs:94 msgid "" "This option allows you to exclude files that are larger than the given " "value. Use this to prevent backups becoming extremely large." msgstr "" -#: Library/Main/Strings.cs:73 +#: Library/Main/Strings.cs:95 msgid "Limit the size of files being backed up" msgstr "" -#: Library/Main/Strings.cs:76 +#: Library/Main/Strings.cs:96 +msgid "Temporary storage folder" +msgstr "" + +#: Library/Main/Strings.cs:97 +msgid "" +"This option can be used to supply an alternative folder for temporary " +"storage. By default the system default temporary folder is used. Note that " +"also SQLite will put temporary files in this temporary folder." +msgstr "" + +#: Library/Main/Strings.cs:98 msgid "" "Selects another thread priority for the process. Use this to set Duplicati " "to be more or less CPU intensive." msgstr "" -#: Library/Main/Strings.cs:77 +#: Library/Main/Strings.cs:99 msgid "Thread priority" msgstr "" -#: Library/Main/Strings.cs:78 +#: Library/Main/Strings.cs:100 msgid "" "This option can change the maximum size of dblock files. Changing the size " "can be useful if the backend has a limit on the size of each individual file" msgstr "" -#: Library/Main/Strings.cs:79 +#: Library/Main/Strings.cs:101 msgid "Limit the size of the volumes" msgstr "" -#: Library/Main/Strings.cs:80 +#: Library/Main/Strings.cs:102 msgid "" "Enabling this option will disallow usage of the streaming interface, which " "means that transfer progress bars will not show, and bandwidth throttle " "settings will be ignored." msgstr "" -#: Library/Main/Strings.cs:81 +#: Library/Main/Strings.cs:103 msgid "Disables use of the streaming transfer method" msgstr "" -#: Library/Main/Strings.cs:82 +#: Library/Main/Strings.cs:104 msgid "" "This option will make sure the contents of the manifest file are not read. " "This also implies that file hashes are not checked either. Use only for " "disaster recovery." msgstr "" -#: Library/Main/Strings.cs:83 +#: Library/Main/Strings.cs:105 msgid "An option that prevents verifying the manifests" msgstr "" -#: Library/Main/Strings.cs:84 +#: Library/Main/Strings.cs:106 msgid "" "Duplicati supports pluggable compression modules. Use this option to select " "a module to use for compression. This is only applied when creating new " @@ -2641,11 +2680,11 @@ msgid "" "compression module." msgstr "" -#: Library/Main/Strings.cs:85 +#: Library/Main/Strings.cs:107 msgid "Select what module to use for compression" msgstr "" -#: Library/Main/Strings.cs:86 +#: Library/Main/Strings.cs:108 msgid "" "Duplicati supports pluggable encryption modules. Use this option to select a " "module to use for encryption. This is only applied when creating new " @@ -2653,33 +2692,33 @@ msgid "" "encryption module." msgstr "" -#: Library/Main/Strings.cs:87 +#: Library/Main/Strings.cs:109 msgid "Select what module to use for encryption" msgstr "" -#: Library/Main/Strings.cs:88 +#: Library/Main/Strings.cs:110 msgid "Supply one or more module names, separated by commas to unload them" msgstr "" -#: Library/Main/Strings.cs:89 +#: Library/Main/Strings.cs:111 msgid "Disables one or more modules" msgstr "" -#: Library/Main/Strings.cs:90 +#: Library/Main/Strings.cs:112 msgid "Supply one or more module names, separated by commas to load them" msgstr "" -#: Library/Main/Strings.cs:91 +#: Library/Main/Strings.cs:113 msgid "Enables one or more modules" msgstr "" -#: Library/Main/Strings.cs:92 +#: Library/Main/Strings.cs:114 msgid "" "This setting controls the usage of snapshots, which allows Duplicati to " "backup files that are locked by other programs. If this is set to \"off\", " -"Duplicati will not attempt to create a disk snapshot. Setting this to \"auto" -"\" makes Duplicati attempt to create a snapshot, and fail silently if that " -"was not allowed or supported (note that the OS may still log system " +"Duplicati will not attempt to create a disk snapshot. Setting this to " +"\"auto\" makes Duplicati attempt to create a snapshot, and fail silently if " +"that was not allowed or supported (note that the OS may still log system " "warnings). A setting of \"on\" will also make Duplicati attempt to create a " "snapshot, but will produce a warning message in the log if it fails. Setting " "it to \"required\" will make Duplicati abort the backup if the snapshot " @@ -2688,86 +2727,86 @@ msgid "" "Management (LVM) and requires root privileges." msgstr "" -#: Library/Main/Strings.cs:93 +#: Library/Main/Strings.cs:115 msgid "Controls the use of disk snapshots" msgstr "" -#: Library/Main/Strings.cs:94 +#: Library/Main/Strings.cs:116 msgid "" "The pre-generated volumes will be placed into the temporary folder by " "default, this option can set a different folder for placing the temporary " "volumes, despite the name, this also works for synchronous runs" msgstr "" -#: Library/Main/Strings.cs:95 +#: Library/Main/Strings.cs:117 msgid "The path where ready volumes are placed until uploaded" msgstr "" -#: Library/Main/Strings.cs:96 +#: Library/Main/Strings.cs:118 msgid "" "When performing asynchronous uploads, Duplicati will create volumes that can " "be uploaded. To prevent Duplicati from generating too many volumes, this " "option limits the number of pending uploads. Set to zero to disable the limit" msgstr "" -#: Library/Main/Strings.cs:97 +#: Library/Main/Strings.cs:119 msgid "The number of volumes to create ahead of time" msgstr "" -#: Library/Main/Strings.cs:98 +#: Library/Main/Strings.cs:120 msgid "" "When performing asynchronous uploads, the maximum number of concurrent " "uploads allowed. Set to zero to disable the limit." msgstr "" -#: Library/Main/Strings.cs:99 +#: Library/Main/Strings.cs:121 msgid "The number of concurrent uploads allowed" msgstr "" -#: Library/Main/Strings.cs:100 +#: Library/Main/Strings.cs:122 msgid "" "Activating this option will make some error messages more verbose, which may " "help you track down a particular issue" msgstr "" -#: Library/Main/Strings.cs:101 +#: Library/Main/Strings.cs:123 msgid "Enables debugging output" msgstr "" -#: Library/Main/Strings.cs:102 +#: Library/Main/Strings.cs:124 msgid "Log internal information to a file" msgstr "" -#: Library/Main/Strings.cs:103 +#: Library/Main/Strings.cs:125 msgid "Logs information to the file specified" msgstr "" -#: Library/Main/Strings.cs:104 +#: Library/Main/Strings.cs:126 msgid "" "Specifies the amount of log information to write into the file specified by " "--log-file" msgstr "" -#: Library/Main/Strings.cs:105 +#: Library/Main/Strings.cs:127 msgid "Log information level" msgstr "" -#: Library/Main/Strings.cs:106 +#: Library/Main/Strings.cs:128 #, csharp-format msgid "Use the {0} and {1} options instead" msgstr "" -#: Library/Main/Strings.cs:107 +#: Library/Main/Strings.cs:129 msgid "" "If Duplicati detects that the target folder is missing, it will create it " "automatically. Activate this option to prevent automatic folder creation." msgstr "" -#: Library/Main/Strings.cs:108 +#: Library/Main/Strings.cs:130 msgid "Disables automatic folder creation" msgstr "" -#: Library/Main/Strings.cs:109 +#: Library/Main/Strings.cs:131 msgid "" "Use this option to exclude faulty writers from a snapshot. This is " "equivalent to the -wx flag of the vshadow.exe tool, except that it only " @@ -2776,29 +2815,29 @@ msgid "" "are allowed, including with and without curly braces." msgstr "" -#: Library/Main/Strings.cs:110 +#: Library/Main/Strings.cs:132 msgid "" "A semicolon separated list of guids of VSS writers to exclude (Windows only)" msgstr "" -#: Library/Main/Strings.cs:111 +#: Library/Main/Strings.cs:133 msgid "" "This setting controls the usage of NTFS USN numbers, which allows Duplicati " -"to obtain a list of files and folders much faster. If this is set to \"off" -"\", Duplicati will not attempt to use USN. Setting this to \"auto\" makes " -"Duplicati attempt to use USN, and fail silently if that was not allowed or " -"supported. A setting of \"on\" will also make Duplicati attempt to use USN, " -"but will produce a warning message in the log if it fails. Setting it to " -"\"required\" will make Duplicati abort the backup if the USN usage fails. " -"This feature is only supported on Windows and requires administrative " -"privileges." +"to obtain a list of files and folders much faster. If this is set to " +"\"off\", Duplicati will not attempt to use USN. Setting this to \"auto\" " +"makes Duplicati attempt to use USN, and fail silently if that was not " +"allowed or supported. A setting of \"on\" will also make Duplicati attempt " +"to use USN, but will produce a warning message in the log if it fails. " +"Setting it to \"required\" will make Duplicati abort the backup if the USN " +"usage fails. This feature is only supported on Windows and requires " +"administrative privileges." msgstr "" -#: Library/Main/Strings.cs:112 +#: Library/Main/Strings.cs:134 msgid "Controls the use of NTFS Update Sequence Numbers" msgstr "" -#: Library/Main/Strings.cs:113 +#: Library/Main/Strings.cs:135 #, csharp-format msgid "" "When matching timestamps, Duplicati will adjust the times by a small " @@ -2811,26 +2850,26 @@ msgid "" "strict time checking" msgstr "" -#: Library/Main/Strings.cs:114 +#: Library/Main/Strings.cs:136 msgid "Deactivates tolerance when comparing times" msgstr "" -#: Library/Main/Strings.cs:115 +#: Library/Main/Strings.cs:137 msgid "Verify uploads by listing contents" msgstr "" -#: Library/Main/Strings.cs:116 +#: Library/Main/Strings.cs:138 msgid "" "Duplicati will upload files while scanning the disk and producing volumes, " "which usually makes the backup faster. Use this flag to turn the behavior " "off, so that Duplicati will wait for each volume to complete." msgstr "" -#: Library/Main/Strings.cs:117 +#: Library/Main/Strings.cs:139 msgid "Upload files synchronously" msgstr "" -#: Library/Main/Strings.cs:118 +#: Library/Main/Strings.cs:140 msgid "" "Duplicati will attempt to perform multiple operations on a single " "connection, as this avoids repeated login attempts, and thus speeds up the " @@ -2838,43 +2877,44 @@ msgid "" "on a seperate connection" msgstr "" -#: Library/Main/Strings.cs:119 +#: Library/Main/Strings.cs:141 msgid "Do not re-use connections" msgstr "" -#: Library/Main/Strings.cs:120 +#: Library/Main/Strings.cs:142 msgid "" "When an error occurs, Duplicati will silently retry, and only report the " "number of retries. Enable this option to have the error messages displayed " "when a retry is performed." msgstr "" -#: Library/Main/Strings.cs:121 +#: Library/Main/Strings.cs:143 msgid "Show error messages when a retry is performed" msgstr "" -#: Library/Main/Strings.cs:122 +#: Library/Main/Strings.cs:144 msgid "" "If no files have changed, Duplicati will not upload a backup set. If the " "backup data is used to verify that a backup was executed, this option will " "make Duplicati upload a backupset even if it is empty" msgstr "" -#: Library/Main/Strings.cs:123 +#: Library/Main/Strings.cs:145 msgid "Upload empty backup files" msgstr "" -#: Library/Main/Strings.cs:124 +#: Library/Main/Strings.cs:146 msgid "" -"This value can be used to set a known upper limit on the amount of space a " -"backend has. If the backend reports the size itself, this value is ignored" +"Set a limit to the amount of storage used on the backend (by this backup). " +"This is in addition to the full backend quota, if available. Note: Backups " +"will continue past the quota. This only creates warnings and error messages." msgstr "" -#: Library/Main/Strings.cs:125 -msgid "A reported maximum storage" +#: Library/Main/Strings.cs:147 +msgid "Limit storage use" msgstr "" -#: Library/Main/Strings.cs:126 +#: Library/Main/Strings.cs:148 msgid "" "Sets a threshold for when to warn about the backend quota being nearly " "exceeded. It is given as a percentage, and a warning is generated if the " @@ -2883,15 +2923,26 @@ msgid "" "be ignored" msgstr "" -#: Library/Main/Strings.cs:127 +#: Library/Main/Strings.cs:149 msgid "Threshold for warning about low quota" msgstr "" -#: Library/Main/Strings.cs:128 +#: Library/Main/Strings.cs:150 +#, csharp-format +msgid "" +"Disable the quota reported by the backend. --{0} can still be used to set a " +"manual quota" +msgstr "" + +#: Library/Main/Strings.cs:151 +msgid "Disable backend quota" +msgstr "" + +#: Library/Main/Strings.cs:152 msgid "Symlink handling" msgstr "" -#: Library/Main/Strings.cs:129 +#: Library/Main/Strings.cs:153 #, csharp-format msgid "" "Use this option to handle symlinks differently. The \"{0}\" option will " @@ -2903,11 +2954,11 @@ msgid "" "option and bevhaved as if \"{2}\" was specified." msgstr "" -#: Library/Main/Strings.cs:130 +#: Library/Main/Strings.cs:154 msgid "Hardlink handling" msgstr "" -#: Library/Main/Strings.cs:131 +#: Library/Main/Strings.cs:155 #, csharp-format msgid "" "Use this option to handle hardlinks (only works on Linux/OSX). The \"{0}\" " @@ -2917,11 +2968,11 @@ msgid "" "will ignore all hardlinks with more than one link." msgstr "" -#: Library/Main/Strings.cs:132 +#: Library/Main/Strings.cs:156 msgid "Exclude files by attribute" msgstr "" -#: Library/Main/Strings.cs:133 +#: Library/Main/Strings.cs:157 #, csharp-format msgid "" "Use this option to exclude files with certain attributes. Use a comma " @@ -2929,7 +2980,7 @@ msgid "" "are: {0}" msgstr "" -#: Library/Main/Strings.cs:134 +#: Library/Main/Strings.cs:158 msgid "" "Activate this option to map VSS snapshots to a drive (similar to SUBST, " "using Win32 DefineDosDevice). This will create temporary drives that are " @@ -2937,21 +2988,41 @@ msgid "" "file access on Windows XP." msgstr "" -#: Library/Main/Strings.cs:135 +#: Library/Main/Strings.cs:159 msgid "Map snapshots to a drive (Windows only)" msgstr "" -#: Library/Main/Strings.cs:136 +#: Library/Main/Strings.cs:160 msgid "" "A display name that is attached to this backup. Can be used to identify the " "backup when sending mail or running scripts." msgstr "" -#: Library/Main/Strings.cs:137 +#: Library/Main/Strings.cs:161 msgid "Name of the backup" msgstr "" -#: Library/Main/Strings.cs:138 +#: Library/Main/Strings.cs:162 +msgid "" +"A unique identification for this backup. Can be used to identify the backup " +"when sending mail or running scripts." +msgstr "" + +#: Library/Main/Strings.cs:163 +msgid "Backup ID" +msgstr "" + +#: Library/Main/Strings.cs:164 +msgid "" +"A unique identification of the machine running the backup. Can be used to " +"identify the machine when sending mail or running scripts." +msgstr "" + +#: Library/Main/Strings.cs:165 +msgid "Machine ID" +msgstr "" + +#: Library/Main/Strings.cs:166 #, csharp-format msgid "" "This property can be used to point to a text file where each line contains a " @@ -2963,11 +3034,11 @@ msgid "" "{0}." msgstr "" -#: Library/Main/Strings.cs:139 +#: Library/Main/Strings.cs:167 msgid "Manage non-compressible file extensions" msgstr "" -#: Library/Main/Strings.cs:140 +#: Library/Main/Strings.cs:168 msgid "" "The block size determines how files are fragmented. Choosing a large value " "will cause a larger overhead on file changes, choosing a small value will " @@ -2975,71 +3046,71 @@ msgid "" "be changed after remote files are created." msgstr "" -#: Library/Main/Strings.cs:141 +#: Library/Main/Strings.cs:169 msgid "Block size used in hashing" msgstr "" -#: Library/Main/Strings.cs:142 +#: Library/Main/Strings.cs:170 msgid "" "This option can be used to limit the scan to only files that are known to " "have changed. This is usually only activated in combination with a " "filesystem watcher that keeps track of file changes." msgstr "" -#: Library/Main/Strings.cs:143 +#: Library/Main/Strings.cs:171 msgid "List of files to examine for changes" msgstr "" -#: Library/Main/Strings.cs:144 +#: Library/Main/Strings.cs:172 msgid "Path to the file containing the local cache of the remote file database" msgstr "" -#: Library/Main/Strings.cs:145 +#: Library/Main/Strings.cs:173 msgid "Path to the local state database" msgstr "" -#: Library/Main/Strings.cs:146 +#: Library/Main/Strings.cs:174 #, csharp-format msgid "" "This option can be used to supply a list of deleted files. This option will " "be ignored unless the option --{0} is also set." msgstr "" -#: Library/Main/Strings.cs:147 +#: Library/Main/Strings.cs:175 msgid "List of deleted files" msgstr "" -#: Library/Main/Strings.cs:148 +#: Library/Main/Strings.cs:176 msgid "" "This option can be used to reduce the memory footprint by not keeping paths " "and modification timestamps in memory" msgstr "" -#: Library/Main/Strings.cs:149 +#: Library/Main/Strings.cs:177 msgid "Reduce memory footprint by disabling in-memory lookups" msgstr "" -#: Library/Main/Strings.cs:150 +#: Library/Main/Strings.cs:178 msgid "" "This option can be used to increase speed in exchange for extra memory use." msgstr "" -#: Library/Main/Strings.cs:151 +#: Library/Main/Strings.cs:179 msgid "Store an in-memory block cache" msgstr "" -#: Library/Main/Strings.cs:152 +#: Library/Main/Strings.cs:180 msgid "" "If this flag is set, the local database is not compared to the remote " "filelist on startup. The intended usage for this option is to work correctly " "in cases where the filelisting is broken or unavailable." msgstr "" -#: Library/Main/Strings.cs:153 +#: Library/Main/Strings.cs:181 msgid "Do not query backend at startup" msgstr "" -#: Library/Main/Strings.cs:154 +#: Library/Main/Strings.cs:182 msgid "" "The index files are used to limit the need for downloading dblock files when " "there is no local database present. The more information is recorded in the " @@ -3048,11 +3119,11 @@ msgid "" "never be used." msgstr "" -#: Library/Main/Strings.cs:155 +#: Library/Main/Strings.cs:183 msgid "Determines usage of index files" msgstr "" -#: Library/Main/Strings.cs:156 +#: Library/Main/Strings.cs:184 msgid "" "As files are changed, some data stored at the remote destination may not be " "required. This option controls how much wasted space the destination can " @@ -3060,43 +3131,43 @@ msgid "" "volume and the total storage." msgstr "" -#: Library/Main/Strings.cs:157 +#: Library/Main/Strings.cs:185 msgid "The maximum wasted space in percent" msgstr "" -#: Library/Main/Strings.cs:158 +#: Library/Main/Strings.cs:186 msgid "" "This option can be used to experiment with different settings and observe " "the outcome without changing actual files." msgstr "" -#: Library/Main/Strings.cs:159 +#: Library/Main/Strings.cs:187 msgid "Does not perform any modifications" msgstr "" -#: Library/Main/Strings.cs:160 +#: Library/Main/Strings.cs:188 msgid "" "This is a very advanced option! This option can be used to select a block " "hash algorithm with smaller or larger hash size, for performance or storage " "space reasons." msgstr "" -#: Library/Main/Strings.cs:161 +#: Library/Main/Strings.cs:189 msgid "The hash algorithm used on blocks" msgstr "" -#: Library/Main/Strings.cs:162 +#: Library/Main/Strings.cs:190 msgid "" "This is a very advanced option! This option can be used to select a file " "hash algorithm with smaller or larger hash size, for performance or storage " "space reasons." msgstr "" -#: Library/Main/Strings.cs:163 +#: Library/Main/Strings.cs:191 msgid "The hash algorithm used on files" msgstr "" -#: Library/Main/Strings.cs:164 +#: Library/Main/Strings.cs:192 msgid "" "If a large number of small files are detected during a backup, or wasted " "space is found after deleting backups, the remote data will be compacted. " @@ -3104,11 +3175,11 @@ msgid "" "running the compact command." msgstr "" -#: Library/Main/Strings.cs:165 +#: Library/Main/Strings.cs:193 msgid "Disable automatic compacting" msgstr "" -#: Library/Main/Strings.cs:166 +#: Library/Main/Strings.cs:194 msgid "" "When examining the size of a volume in consideration for compacting, a small " "tolerance value is used, by default 20 percent of the volume size. This " @@ -3116,65 +3187,70 @@ msgid "" "downloaded and rewritten." msgstr "" -#: Library/Main/Strings.cs:167 +#: Library/Main/Strings.cs:195 msgid "Volume size threshold" msgstr "" -#: Library/Main/Strings.cs:168 +#: Library/Main/Strings.cs:196 msgid "" "To avoid filling the remote storage with small files, this value can force " "grouping small files. The small volumes will always be combined when they " "can fill an entire volume." msgstr "" -#: Library/Main/Strings.cs:169 +#: Library/Main/Strings.cs:197 msgid "Maximum number of small volumes" msgstr "" -#: Library/Main/Strings.cs:170 +#: Library/Main/Strings.cs:198 msgid "" "Enable this option to look into other files on this machine to find existing " "blocks. This is a fairly slow operation but can limit the size of downloads." msgstr "" -#: Library/Main/Strings.cs:171 +#: Library/Main/Strings.cs:199 msgid "Use local file data when restoring" msgstr "" -#: Library/Main/Strings.cs:172 +#: Library/Main/Strings.cs:200 +#, csharp-format +msgid "Use the option --{0} instead" +msgstr "" + +#: Library/Main/Strings.cs:201 msgid "Disables the local database" msgstr "" -#: Library/Main/Strings.cs:173 +#: Library/Main/Strings.cs:202 msgid "" "When listing contents or when restoring files, the local database can be " "skipped. This is usually slower, but can be used to verify the actual " "contents of the remote store" msgstr "" -#: Library/Main/Strings.cs:174 +#: Library/Main/Strings.cs:203 msgid "Keep a number of versions" msgstr "" -#: Library/Main/Strings.cs:175 +#: Library/Main/Strings.cs:204 msgid "" "Use this option to set number of versions to keep, supply -1 to keep all " "versions" msgstr "" -#: Library/Main/Strings.cs:176 +#: Library/Main/Strings.cs:205 msgid "Keep all versions within a timespan" msgstr "" -#: Library/Main/Strings.cs:177 +#: Library/Main/Strings.cs:206 msgid "Use this option to set the timespan in which backups are kept." msgstr "" -#: Library/Main/Strings.cs:178 +#: Library/Main/Strings.cs:207 msgid "Reduce number of versions by deleting old intermediate backups" msgstr "" -#: Library/Main/Strings.cs:179 +#: Library/Main/Strings.cs:208 msgid "" "Use this option to reduce the number of versions that are kept with " "increasing version age by deleting most of the old backups. The expected " @@ -3185,64 +3261,64 @@ msgid "" "supports using the specifier \"U\" to indicate an unlimited time interval." msgstr "" -#: Library/Main/Strings.cs:180 +#: Library/Main/Strings.cs:209 msgid "Ignore missing source elements" msgstr "" -#: Library/Main/Strings.cs:181 +#: Library/Main/Strings.cs:210 msgid "Use this option to continue even if some source entries are missing." msgstr "" -#: Library/Main/Strings.cs:182 +#: Library/Main/Strings.cs:211 msgid "Overwrite files when restoring" msgstr "" -#: Library/Main/Strings.cs:183 +#: Library/Main/Strings.cs:212 msgid "" "Use this option to overwrite target files when restoring, if this option is " "not set the files will be restored with a timestamp and a number appended." msgstr "" -#: Library/Main/Strings.cs:184 +#: Library/Main/Strings.cs:213 msgid "Output more progress information" msgstr "" -#: Library/Main/Strings.cs:185 +#: Library/Main/Strings.cs:214 msgid "" "Use this option to increase the amount of output generated when running an " "option. Generally this option will produce a line for each file processed." msgstr "" -#: Library/Main/Strings.cs:186 +#: Library/Main/Strings.cs:215 msgid "Set a log-level for the desired output method instead" msgstr "" -#: Library/Main/Strings.cs:187 +#: Library/Main/Strings.cs:216 msgid "Output full results" msgstr "" -#: Library/Main/Strings.cs:188 +#: Library/Main/Strings.cs:217 msgid "" "Use this option to increase the amount of output generated as the result of " "the operation, including all filenames." msgstr "" -#: Library/Main/Strings.cs:189 +#: Library/Main/Strings.cs:218 msgid "Determine if verification files are uploaded" msgstr "" -#: Library/Main/Strings.cs:190 +#: Library/Main/Strings.cs:219 msgid "" "Use this option to upload a verification file after changing the remote " "storage. The file is not encrypted and contains the size and SHA256 hashes " "of all the remote files and can be used to verify the integrity of the files." msgstr "" -#: Library/Main/Strings.cs:191 +#: Library/Main/Strings.cs:220 msgid "The number of samples to test after a backup" msgstr "" -#: Library/Main/Strings.cs:192 +#: Library/Main/Strings.cs:221 #, csharp-format msgid "" "After a backup is completed, some (dblock, dindex, dlist) files from the " @@ -3252,11 +3328,11 @@ msgid "" "set to 0 or the option --{0} is set, no remote files are verified" msgstr "" -#: Library/Main/Strings.cs:193 +#: Library/Main/Strings.cs:222 msgid "The percentage of samples to test after a backup" msgstr "" -#: Library/Main/Strings.cs:194 +#: Library/Main/Strings.cs:223 msgid "" "After a backup is completed, some (dblock, dindex, dlist) files from the " "remote backend are selected for verification. Use this option to specify the " @@ -3266,11 +3342,11 @@ msgid "" "remote files are verified." msgstr "" -#: Library/Main/Strings.cs:195 +#: Library/Main/Strings.cs:224 msgid "Activates in-depth verification of files" msgstr "" -#: Library/Main/Strings.cs:196 +#: Library/Main/Strings.cs:225 #, csharp-format msgid "" "After a backup is completed, some (dblock, dindex, dlist) files from the " @@ -3278,97 +3354,123 @@ msgid "" "full verification, which will decrypt the files and examine the insides of " "each volume, instead of simply verifying the external hash, If the option --" "{0} is set, no remote files are verified. This option is automatically set " -"when then verification is performed directly." +"when then verification is performed directly. ListAndIndexes is like True " +"but only dlist and index volumes are handled." msgstr "" -#: Library/Main/Strings.cs:197 +#: Library/Main/Strings.cs:226 msgid "Size of the file read buffer" msgstr "" -#: Library/Main/Strings.cs:198 +#: Library/Main/Strings.cs:227 msgid "" "Use this size to control how many bytes are read from a file before " "processing" msgstr "" -#: Library/Main/Strings.cs:199 +#: Library/Main/Strings.cs:228 msgid "Allow the passphrase to change" msgstr "" -#: Library/Main/Strings.cs:200 +#: Library/Main/Strings.cs:229 msgid "" "Use this option to allow the passphrase to change, note that this option is " "not permitted for a backup or repair operation" msgstr "" -#: Library/Main/Strings.cs:201 +#: Library/Main/Strings.cs:230 msgid "List only filesets" msgstr "" -#: Library/Main/Strings.cs:202 +#: Library/Main/Strings.cs:231 msgid "" "Use this option to only list filesets and avoid traversing file names and " "other metadata which slows down the process" msgstr "" -#: Library/Main/Strings.cs:204 +#: Library/Main/Strings.cs:233 msgid "Don't store metadata" msgstr "" -#: Library/Main/Strings.cs:205 +#: Library/Main/Strings.cs:234 msgid "" "Use this option to disable the storage of metadata, such as file timestamps. " "Disabling metadata storage will speed up the backup and restore operations, " "but does not affect file size much." msgstr "" -#: Library/Main/Strings.cs:206 +#: Library/Main/Strings.cs:235 msgid "Restore file permissions" msgstr "" -#: Library/Main/Strings.cs:207 +#: Library/Main/Strings.cs:236 msgid "" "By default permissions are not restored as they might prevent you from " "accessing your files. Use this option to restore the permissions as well." msgstr "" -#: Library/Main/Strings.cs:208 +#: Library/Main/Strings.cs:237 msgid "Skip restored file check" msgstr "" -#: Library/Main/Strings.cs:209 +#: Library/Main/Strings.cs:238 msgid "" "After restoring files, the file hash of all restored files are checked to " "verify that the restore was successful. Use this option to disable the check " "and avoid waiting for the verification." msgstr "" -#: Library/Main/Strings.cs:210 +#: Library/Main/Strings.cs:239 msgid "Do not use local data" msgstr "" -#: Library/Main/Strings.cs:211 +#: Library/Main/Strings.cs:240 msgid "" "Duplicati will attempt to use data from source files to minimize the amount " "of downloaded data. Use this option to skip this optimization and only use " "remote data." msgstr "" -#: Library/Main/Strings.cs:212 +#: Library/Main/Strings.cs:241 +#, csharp-format +msgid "" +"The default is now to not use local blocks for restore. To opt-in for using " +"local blocks, set the option --{0}" +msgstr "" + +#: Library/Main/Strings.cs:242 +msgid "Use existing data for restore" +msgstr "" + +#: Library/Main/Strings.cs:243 +msgid "" +"Use this option to allow Duplicati to use blocks found on disk when " +"performing restores, instead of only using files in remote storage." +msgstr "" + +#: Library/Main/Strings.cs:245 msgid "Check block hashes" msgstr "" -#: Library/Main/Strings.cs:213 +#: Library/Main/Strings.cs:246 msgid "" "Use this option to increase verification by checking the hash of blocks read " "from a volume before patching restored files with the data." msgstr "" -#: Library/Main/Strings.cs:216 +#: Library/Main/Strings.cs:247 +msgid "Clean up old log data" +msgstr "" + +#: Library/Main/Strings.cs:248 +msgid "Set the time after which log data will be purged from the database." +msgstr "" + +#: Library/Main/Strings.cs:249 msgid "Repair database with paths" msgstr "" -#: Library/Main/Strings.cs:217 +#: Library/Main/Strings.cs:250 msgid "" "Use this option to build a searchable local database which only contains " "path information. This option is usable for quickly building a database to " @@ -3376,11 +3478,11 @@ msgid "" "resulting database can be searched, but cannot be used to restore data with." msgstr "" -#: Library/Main/Strings.cs:218 +#: Library/Main/Strings.cs:251 msgid "Force the locale setting" msgstr "" -#: Library/Main/Strings.cs:219 +#: Library/Main/Strings.cs:252 msgid "" "By default, your system locale and culture settings will be used. In some " "cases you may prefer to run with another locale, for example to get messages " @@ -3388,70 +3490,70 @@ msgid "" "blank string to choose the \"Invariant Culture\"." msgstr "" -#: Library/Main/Strings.cs:220 +#: Library/Main/Strings.cs:253 msgid "Forces the display of the actual date instead of calendar date" msgstr "" -#: Library/Main/Strings.cs:221 +#: Library/Main/Strings.cs:254 msgid "" "By default, dates are displayed in the calendar format, meaning \"Today\" or " "\"Last Thursday\". By setting this option, only the actual dates are " "displayed, \"Nov 12, 2018, 8:01 AM\" for example." msgstr "" -#: Library/Main/Strings.cs:222 +#: Library/Main/Strings.cs:255 msgid "Handle file communication with backend using threaded pipes" msgstr "" -#: Library/Main/Strings.cs:223 +#: Library/Main/Strings.cs:256 msgid "" "Use this option to disable multithreaded handling of up- and downloads, that " "can significantly speed up backend operations depending on the hardware " "you're running on and the transfer rate of your backend." msgstr "" -#: Library/Main/Strings.cs:224 +#: Library/Main/Strings.cs:257 msgid "Limit number of concurrent threads" msgstr "" -#: Library/Main/Strings.cs:225 +#: Library/Main/Strings.cs:258 msgid "" "Use this option to set the maximum number of threads used. Setting this " "value to zero or less will dynamically balance the number of active threads " "to fit the hardware." msgstr "" -#: Library/Main/Strings.cs:226 +#: Library/Main/Strings.cs:259 msgid "Specify the number of concurrent hashing processes" msgstr "" -#: Library/Main/Strings.cs:227 +#: Library/Main/Strings.cs:260 msgid "" "Use this option to set the number of processes that perform hashing of data." msgstr "" -#: Library/Main/Strings.cs:228 +#: Library/Main/Strings.cs:261 msgid "Specify the number of concurrent compression processes" msgstr "" -#: Library/Main/Strings.cs:229 +#: Library/Main/Strings.cs:262 msgid "" "Use this option to set the number of processes that perform compression of " "output data." msgstr "" -#: Library/Main/Strings.cs:230 +#: Library/Main/Strings.cs:263 msgid "" "If Duplicati detects that the previous backup did not complete, it will " "generate a filelist that is a merge of the last completed backup and the " "contents that were uploaded in the incomplete backup session." msgstr "" -#: Library/Main/Strings.cs:231 +#: Library/Main/Strings.cs:264 msgid "Disables synthetic filelist" msgstr "" -#: Library/Main/Strings.cs:232 +#: Library/Main/Strings.cs:265 msgid "" "This flag instructs Duplicati to not look at metadata or filesize when " "deciding to scan a file for changes. Use this option if you have a large " @@ -3459,15 +3561,15 @@ msgid "" "unmodified files." msgstr "" -#: Library/Main/Strings.cs:233 +#: Library/Main/Strings.cs:266 msgid "Checks only file lastmodified" msgstr "" -#: Library/Main/Strings.cs:234 +#: Library/Main/Strings.cs:267 msgid "Disables path compression on restore" msgstr "" -#: Library/Main/Strings.cs:235 +#: Library/Main/Strings.cs:268 msgid "" "When restore a subset of a backup into a new folder, the shortest possible " "path is used to avoid generating deep paths with empty folders. Use this " @@ -3475,22 +3577,22 @@ msgid "" "structure is preserved, including upper level empty folders." msgstr "" -#: Library/Main/Strings.cs:236 +#: Library/Main/Strings.cs:269 msgid "Allow removing all filesets" msgstr "" -#: Library/Main/Strings.cs:237 +#: Library/Main/Strings.cs:270 msgid "" "By default, the last fileset cannot be removed. This is a safeguard to make " "sure that all remote data is not deleted by a configuration mistake. Use " "this flag to disable that protection, such that all filesets can be deleted." msgstr "" -#: Library/Main/Strings.cs:238 +#: Library/Main/Strings.cs:271 msgid "Allow automatic rebuilding of local database to save space." msgstr "" -#: Library/Main/Strings.cs:239 +#: Library/Main/Strings.cs:272 msgid "" "Some operations that manipulate the local database leave unused entries " "behind. These entries are not deleted from a hard drive until a VACUUM " @@ -3500,11 +3602,11 @@ msgid "" "discretion." msgstr "" -#: Library/Main/Strings.cs:240 +#: Library/Main/Strings.cs:273 msgid "Disable the read-ahead scanner" msgstr "" -#: Library/Main/Strings.cs:241 +#: Library/Main/Strings.cs:274 msgid "" "When this flag is enabled, the scanner that computes the size of source " "files is disabled, and instead the reported size is read from the database. " @@ -3512,22 +3614,22 @@ msgid "" "give a less accurate progress indicator." msgstr "" -#: Library/Main/Strings.cs:242 +#: Library/Main/Strings.cs:275 msgid "Disable filelist consistency checks" msgstr "" -#: Library/Main/Strings.cs:243 +#: Library/Main/Strings.cs:276 msgid "" "In backups with a large number of filesets, the verification can take up a " "large part of the backup time. If you disable the checks, make sure you run " "regular check commands to ensure that everything is working as expected." msgstr "" -#: Library/Main/Strings.cs:244 +#: Library/Main/Strings.cs:277 msgid "Disable the backup when on battery power" msgstr "" -#: Library/Main/Strings.cs:245 +#: Library/Main/Strings.cs:278 msgid "" "When this flag is enabled, a scheduled backup will not run if the system is " "detected to be running on battery power (manual or command line backups will " @@ -3535,15 +3637,15 @@ msgid "" "then scheduled backups will proceed as normal." msgstr "" -#: Library/Main/Strings.cs:247 +#: Library/Main/Strings.cs:280 msgid "Log file information level" msgstr "" -#: Library/Main/Strings.cs:248 +#: Library/Main/Strings.cs:281 msgid "Applies filters to the file log data" msgstr "" -#: Library/Main/Strings.cs:249 +#: Library/Main/Strings.cs:282 #, csharp-format msgid "" "This option accepts filters that removes or includes messages regardless of " @@ -3553,30 +3655,38 @@ msgid "" "Example: \"+Path*{0}+*Mail*{0}-[.*DNS]\" " msgstr "" -#: Library/Main/Strings.cs:250 +#: Library/Main/Strings.cs:283 msgid "Console information level" msgstr "" -#: Library/Main/Strings.cs:251 +#: Library/Main/Strings.cs:284 msgid "Applies filters to the console log data" msgstr "" -#: Library/Main/Strings.cs:254 +#: Library/Main/Strings.cs:287 msgid "Sets the process to use low IO priority" msgstr "" -#: Library/Main/Strings.cs:255 +#: Library/Main/Strings.cs:288 msgid "" "This option instructions the operating system to set the current process to " "use the lowest IO priority level, which can make operations run slower but " "will interfere less with other operations running at the same time" msgstr "" -#: Library/Main/Strings.cs:259 +#: Library/Main/Strings.cs:290 +msgid "Excludes empty folders" +msgstr "" + +#: Library/Main/Strings.cs:291 +msgid "Use this option to remove all empty folders from a backup." +msgstr "" + +#: Library/Main/Strings.cs:292 msgid "List of filenames that exclude folders" msgstr "" -#: Library/Main/Strings.cs:260 +#: Library/Main/Strings.cs:293 msgid "" "Use this option to set a filename, or list of filenames, that indicate " "exclusion of a folder which contains it. A common use would be to have a " @@ -3584,11 +3694,35 @@ msgid "" "that should not be backed up." msgstr "" -#: Library/Main/Strings.cs:266 +#: Library/Main/Strings.cs:294 +msgid "Apply metadata to symlinks" +msgstr "" + +#: Library/Main/Strings.cs:295 +msgid "" +"If symlink metadata is applied, it will usually mean changing the symlink " +"target, instead of the symlink itself. For this reason, metadata is not " +"applied to symlinks, but this option can be used to override this, such that " +"metadata is applied to symlinks as well." +msgstr "" + +#: Library/Main/Strings.cs:296 +msgid "Activate unittest mode" +msgstr "" + +#: Library/Main/Strings.cs:297 +msgid "" +"When running in unittest mode, no automatic fixes are applied, which assumes " +"that the input data is always in perfect shape. This option is not intended " +"for use in daily backups, but required for testing purposes to reveal " +"potential problems." +msgstr "" + +#: Library/Main/Strings.cs:299 msgid "Activates logging of all database queries" msgstr "" -#: Library/Main/Strings.cs:267 +#: Library/Main/Strings.cs:300 #, csharp-format msgid "" "To improve performance of the backups, frequent database queries are not " @@ -3597,88 +3731,125 @@ msgid "" "data" msgstr "" -#: Library/Main/Strings.cs:279 +#: Library/Main/Strings.cs:301 +msgid "Rebuild dblock files when missing" +msgstr "" + +#: Library/Main/Strings.cs:302 +msgid "" +"If dblock files are missing from the destination, you can attempt to rebuild " +"them using local source data. However, since the local data may have " +"changed, it may not be possible to retrieve all the required data and the " +"process may be slow. Use this option to attempt to rebuild missing dblock " +"files." +msgstr "" + +#: Library/Main/Strings.cs:304 +msgid "Minimum time between auto compactions" +msgstr "" + +#: Library/Main/Strings.cs:305 +msgid "" +"The minimum amount of time that must elapse after the last compaction before " +"another will be automatically triggered at the end of a backup job. " +"Automatic compaction can be a long-running process and may not be desirable " +"to run after every single backup." +msgstr "" + +#: Library/Main/Strings.cs:306 +msgid "Minimum time between auto vacuums" +msgstr "" + +#: Library/Main/Strings.cs:307 +msgid "" +"The minimum amount of time that must elapse after the last vacuum before " +"another will be automatically triggered at the end of a backup job. " +"Automatic vacuum can be a long-running process and may not be desirable to " +"run after every single backup." +msgstr "" + +#: Library/Main/Strings.cs:312 #, csharp-format msgid "" "The cryptolibrary does not support re-usable transforms for the hash " "algorithm {0}" msgstr "" -#: Library/Main/Strings.cs:280 +#: Library/Main/Strings.cs:313 #, csharp-format msgid "The cryptolibrary does not support the hash algorithm {0}" msgstr "" -#: Library/Main/Strings.cs:281 +#: Library/Main/Strings.cs:314 msgid "The passphrase cannot be changed for an existing backup" msgstr "" -#: Library/Main/Strings.cs:282 +#: Library/Main/Strings.cs:315 #, csharp-format msgid "Failed to create a snapshot: {0}" msgstr "" -#: Library/Main/BackendManager.cs:589 +#: Library/Main/BackendManager.cs:610 #, csharp-format msgid "Failed to delete file {0}, testing if file exists" msgstr "" -#: Library/Main/BackendManager.cs:595 +#: Library/Main/BackendManager.cs:616 #, csharp-format msgid "Recovered from problem with attempting to delete non-existing file {0}" msgstr "" -#: Library/Main/BackendManager.cs:600 +#: Library/Main/BackendManager.cs:621 #, csharp-format msgid "Failed to recover from error deleting file {0}" msgstr "" -#: Library/Main/BackendManager.cs:1102 +#: Library/Main/BackendManager.cs:1123 #, csharp-format msgid "Delete operation failed for {0} with FileNotFound, listing contents" msgstr "" -#: Library/Main/BackendManager.cs:1115 +#: Library/Main/BackendManager.cs:1136 #, csharp-format msgid "Listing indicates file {0} was deleted correctly" msgstr "" -#: Library/Main/BackendManager.cs:1120 +#: Library/Main/BackendManager.cs:1141 #, csharp-format msgid "Listing confirms file {0} was not deleted" msgstr "" -#: Library/Modules/Builtin/Strings.cs:8 +#: Library/Modules/Builtin/Strings.cs:29 msgid "Confirm encryption passphrase" msgstr "" -#: Library/Modules/Builtin/Strings.cs:9 +#: Library/Modules/Builtin/Strings.cs:30 msgid "" "This module will ask the user for an encryption password on the command line " "unless encryption is disabled or the password is supplied by other means" msgstr "" -#: Library/Modules/Builtin/Strings.cs:10 +#: Library/Modules/Builtin/Strings.cs:31 msgid "Password prompt" msgstr "" -#: Library/Modules/Builtin/Strings.cs:11 +#: Library/Modules/Builtin/Strings.cs:32 msgid "Empty passphrases are not allowed" msgstr "" -#: Library/Modules/Builtin/Strings.cs:12 +#: Library/Modules/Builtin/Strings.cs:33 msgid "Enter encryption passphrase" msgstr "" -#: Library/Modules/Builtin/Strings.cs:13 +#: Library/Modules/Builtin/Strings.cs:34 msgid "The passphrases do not match" msgstr "" -#: Library/Modules/Builtin/Strings.cs:14 +#: Library/Modules/Builtin/Strings.cs:35 msgid "Read passphrase from STDIN" msgstr "" -#: Library/Modules/Builtin/Strings.cs:15 +#: Library/Modules/Builtin/Strings.cs:36 msgid "" "By default, the passphrase is attempted read from the TTY device directly, " "increasing the security by not copying the passphrase into a stream. In some " @@ -3687,44 +3858,44 @@ msgid "" "STDIN." msgstr "" -#: Library/Modules/Builtin/Strings.cs:18 +#: Library/Modules/Builtin/Strings.cs:40 msgid "" "When running with Mono, this module will check if any certificates are " "installed and suggest installing them otherwise" msgstr "" -#: Library/Modules/Builtin/Strings.cs:19 +#: Library/Modules/Builtin/Strings.cs:41 msgid "Check for SSL certificates" msgstr "" -#: Library/Modules/Builtin/Strings.cs:20 +#: Library/Modules/Builtin/Strings.cs:42 #, csharp-format msgid "" "No certificates found, you can install some with one of these commands:" "{0} cert-sync /etc/ssl/certs/ca-certificates.crt #for Debian based " "systems{0} cert-sync /etc/pki/tls/certs/ca-bundle.crt #for RedHat " -"derivatives{0} curl -O https://curl.haxx.se/ca/cacert.pem; cert-sync --" -"user cacert.pem; rm cacert.pem #for MacOS{0}Read more: {1}" +"derivatives{0} curl -LO https://curl.se/ca/cacert.pem; cert-sync --user " +"cacert.pem; rm cacert.pem #for MacOS{0}Read more: {1}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:23 +#: Library/Modules/Builtin/Strings.cs:46 msgid "" "This module exposes a number of properties that can be used to change the " "way http requests are issued" msgstr "" -#: Library/Modules/Builtin/Strings.cs:24 +#: Library/Modules/Builtin/Strings.cs:47 msgid "" "Use this option to accept any server certificate, regardless of what errors " "it may have. Please use --accept-specified-ssl-hash instead, whenever " "possible." msgstr "" -#: Library/Modules/Builtin/Strings.cs:25 +#: Library/Modules/Builtin/Strings.cs:48 msgid "Accept any server certificate" msgstr "" -#: Library/Modules/Builtin/Strings.cs:26 +#: Library/Modules/Builtin/Strings.cs:49 msgid "" "If your server certificate is reported as invalid (eg. with self-signed " "certificates), you can supply the certificate hash (SHA1) to approve it " @@ -3732,209 +3903,220 @@ msgid "" "colons. You can enter multiple hashes separated by commas." msgstr "" -#: Library/Modules/Builtin/Strings.cs:27 +#: Library/Modules/Builtin/Strings.cs:50 msgid "Optionally accept a known SSL certificate" msgstr "" -#: Library/Modules/Builtin/Strings.cs:28 +#: Library/Modules/Builtin/Strings.cs:51 msgid "" "The default HTTP request has the header \"Expect: 100-Continue\" attached, " "which allows some optimizations when authenticating, but also breaks some " "web servers, causing them to report \"417 - Expectation failed\"" msgstr "" -#: Library/Modules/Builtin/Strings.cs:29 +#: Library/Modules/Builtin/Strings.cs:52 msgid "Disable the expect header" msgstr "" -#: Library/Modules/Builtin/Strings.cs:30 +#: Library/Modules/Builtin/Strings.cs:53 msgid "" "By default the http requests use the RFC 896 nagling algorithm to support " "transfer of small packages more efficiently." msgstr "" -#: Library/Modules/Builtin/Strings.cs:31 +#: Library/Modules/Builtin/Strings.cs:54 msgid "Disable nagling" msgstr "" -#: Library/Modules/Builtin/Strings.cs:32 +#: Library/Modules/Builtin/Strings.cs:55 msgid "Configure http requests" msgstr "" -#: Library/Modules/Builtin/Strings.cs:33 +#: Library/Modules/Builtin/Strings.cs:56 msgid "Alternate OAuth URL" msgstr "" -#: Library/Modules/Builtin/Strings.cs:34 +#: Library/Modules/Builtin/Strings.cs:57 msgid "" "Duplicati uses an external server to support the OAuth authentication flow. " "If you have set up your own Duplicati OAuth server, you can supply the " "refresh url." msgstr "" -#: Library/Modules/Builtin/Strings.cs:35 +#: Library/Modules/Builtin/Strings.cs:58 msgid "Sets allowed SSL versions" msgstr "" -#: Library/Modules/Builtin/Strings.cs:36 +#: Library/Modules/Builtin/Strings.cs:59 msgid "" "This option changes the default SSL versions allowed. This is an advanced " "option and should only be used if you want to enhance security or work " "around an issue with a particular SSL protocol." msgstr "" -#: Library/Modules/Builtin/Strings.cs:37 +#: Library/Modules/Builtin/Strings.cs:60 msgid "Sets the default operation timeout" msgstr "" -#: Library/Modules/Builtin/Strings.cs:38 +#: Library/Modules/Builtin/Strings.cs:61 msgid "" "This option changes the default timeout for any HTTP request, the time " "covers the entire operation from initial packet to shutdown" msgstr "" -#: Library/Modules/Builtin/Strings.cs:39 +#: Library/Modules/Builtin/Strings.cs:62 msgid "Sets readwrite" msgstr "" -#: Library/Modules/Builtin/Strings.cs:40 +#: Library/Modules/Builtin/Strings.cs:63 msgid "" "This option changes the default read-write timeout. Read-write timeouts are " "used to detect a stalled requests, and this option configures the maximum " "time between activity on a connection." msgstr "" -#: Library/Modules/Builtin/Strings.cs:41 +#: Library/Modules/Builtin/Strings.cs:64 msgid "Sets HTTP buffering" msgstr "" -#: Library/Modules/Builtin/Strings.cs:42 +#: Library/Modules/Builtin/Strings.cs:65 #, csharp-format msgid "" "This option sets the HTTP buffering. Setting this to \"{0}\" can cause " "memory leaks, but can also improve performance in some cases." msgstr "" -#: Library/Modules/Builtin/Strings.cs:45 +#: Library/Modules/Builtin/Strings.cs:69 msgid "" "This module works internaly to parse source parameters to backup Hyper-V " "virtual machines" msgstr "" -#: Library/Modules/Builtin/Strings.cs:46 +#: Library/Modules/Builtin/Strings.cs:70 msgid "Configure Hyper-V module" msgstr "" -#: Library/Modules/Builtin/Strings.cs:50 +#: Library/Modules/Builtin/Strings.cs:74 msgid "" "This module works internaly to parse source parameters to backup Microsoft " "SQL Server databases" msgstr "" -#: Library/Modules/Builtin/Strings.cs:51 +#: Library/Modules/Builtin/Strings.cs:75 msgid "Configure Microsoft SQL Server module" msgstr "" -#: Library/Modules/Builtin/Strings.cs:54 +#: Library/Modules/Builtin/Strings.cs:79 msgid "Executes a script before starting an operation, and again on completion" msgstr "" -#: Library/Modules/Builtin/Strings.cs:55 +#: Library/Modules/Builtin/Strings.cs:80 msgid "Run script" msgstr "" -#: Library/Modules/Builtin/Strings.cs:56 +#: Library/Modules/Builtin/Strings.cs:81 msgid "" "Executes a script after performing an operation. The script will receive the " "operation results written to stdout." msgstr "" -#: Library/Modules/Builtin/Strings.cs:57 +#: Library/Modules/Builtin/Strings.cs:82 msgid "Run a script on exit" msgstr "" -#: Library/Modules/Builtin/Strings.cs:58 +#: Library/Modules/Builtin/Strings.cs:83 #, csharp-format msgid "The script \"{0}\" returned with exit code {1}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:59 +#: Library/Modules/Builtin/Strings.cs:84 #, csharp-format msgid "The script \"{0}\" returned with exit code {1}{2}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:60 +#: Library/Modules/Builtin/Strings.cs:85 msgid "" "Executes a script before performing an operation. The operation will block " "until the script has completed or timed out. If the script returns a non-" "zero error code or times out, the operation will be aborted." msgstr "" -#: Library/Modules/Builtin/Strings.cs:61 +#: Library/Modules/Builtin/Strings.cs:86 msgid "Run a required script on startup" msgstr "" -#: Library/Modules/Builtin/Strings.cs:62 Library/Modules/Builtin/Strings.cs:185 +#: Library/Modules/Builtin/Strings.cs:87 Library/Modules/Builtin/Strings.cs:213 msgid "Selects the output format for results" msgstr "" -#: Library/Modules/Builtin/Strings.cs:63 Library/Modules/Builtin/Strings.cs:186 +#: Library/Modules/Builtin/Strings.cs:88 Library/Modules/Builtin/Strings.cs:214 #, csharp-format msgid "Selects the output format for results. Available formats: {0}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:64 +#: Library/Modules/Builtin/Strings.cs:89 #, csharp-format msgid "Error while executing script \"{0}\": {1}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:65 +#: Library/Modules/Builtin/Strings.cs:90 #, csharp-format msgid "Execution of the script \"{0}\" timed out" msgstr "" -#: Library/Modules/Builtin/Strings.cs:66 +#: Library/Modules/Builtin/Strings.cs:91 msgid "" "Executes a script before performing an operation. The operation will block " "until the script has completed or timed out." msgstr "" -#: Library/Modules/Builtin/Strings.cs:67 +#: Library/Modules/Builtin/Strings.cs:92 msgid "Run a script on startup" msgstr "" -#: Library/Modules/Builtin/Strings.cs:68 +#: Library/Modules/Builtin/Strings.cs:93 #, csharp-format msgid "The script \"{0}\" reported error messages: {1}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:69 +#: Library/Modules/Builtin/Strings.cs:94 msgid "" "Sets the maximum time a script is allowed to execute. If the script has not " "completed within this time, it will continue to execute but the operation " "will continue too, and no script output will be processed." msgstr "" -#: Library/Modules/Builtin/Strings.cs:70 +#: Library/Modules/Builtin/Strings.cs:95 msgid "Sets the script timeout" msgstr "" -#: Library/Modules/Builtin/Strings.cs:73 +#: Library/Modules/Builtin/Strings.cs:96 +msgid "Enable script arguments" +msgstr "" + +#: Library/Modules/Builtin/Strings.cs:97 +msgid "" +"This option enables the use of script arguments. If this option is enabled, " +"the script arguments are treated as commandline strings. Use single or " +"double quotes to separate arguments." +msgstr "" + +#: Library/Modules/Builtin/Strings.cs:101 msgid "This module can send email after an operation completes" msgstr "" -#: Library/Modules/Builtin/Strings.cs:74 +#: Library/Modules/Builtin/Strings.cs:102 msgid "Send mail" msgstr "" -#: Library/Modules/Builtin/Strings.cs:75 +#: Library/Modules/Builtin/Strings.cs:103 #, csharp-format msgid "" "Unable to find the destination mail server through MX lookup, please use the " "option {0} to specify what smtp server to use." msgstr "" -#: Library/Modules/Builtin/Strings.cs:76 +#: Library/Modules/Builtin/Strings.cs:104 msgid "" "This value can be a filename. If the file exists, the file contents will be " "used as the message body.\n" @@ -3951,19 +4133,19 @@ msgid "" "Any unknown/unset value is removed." msgstr "" -#: Library/Modules/Builtin/Strings.cs:85 +#: Library/Modules/Builtin/Strings.cs:113 msgid "The message body" msgstr "" -#: Library/Modules/Builtin/Strings.cs:86 +#: Library/Modules/Builtin/Strings.cs:114 msgid "The password used to authenticate with the SMTP server if required." msgstr "" -#: Library/Modules/Builtin/Strings.cs:87 +#: Library/Modules/Builtin/Strings.cs:115 msgid "SMTP Password" msgstr "" -#: Library/Modules/Builtin/Strings.cs:88 +#: Library/Modules/Builtin/Strings.cs:116 msgid "" "This setting is required if mail should be sent, all other settings have " "default values. You can supply multiple email addresses separated with " @@ -3975,21 +4157,11 @@ msgid "" "admin@example.com" msgstr "" -#: Library/Modules/Builtin/Strings.cs:92 +#: Library/Modules/Builtin/Strings.cs:120 msgid "Email recipient(s)" msgstr "" -#: Library/Modules/Builtin/Strings.cs:93 -msgid "" -"By default, mail will only be sent after a Backup operation. Use this option " -"to send mail for all operations." -msgstr "" - -#: Library/Modules/Builtin/Strings.cs:94 -msgid "Send email for all operations" -msgstr "" - -#: Library/Modules/Builtin/Strings.cs:95 +#: Library/Modules/Builtin/Strings.cs:121 msgid "" "Address of the email sender. If no host is supplied, the hostname of the " "first recipient is used. Examples of allowed formats:\n" @@ -4000,11 +4172,11 @@ msgid "" "Mail Sender " msgstr "" -#: Library/Modules/Builtin/Strings.cs:101 +#: Library/Modules/Builtin/Strings.cs:127 msgid "Email sender" msgstr "" -#: Library/Modules/Builtin/Strings.cs:102 +#: Library/Modules/Builtin/Strings.cs:128 #, csharp-format msgid "" "You can specify one of \"{0}\", \"{1}\", \"{2}\", \"{3}\". You can supply " @@ -4013,13 +4185,13 @@ msgid "" "operations to send an email." msgstr "" -#: Library/Modules/Builtin/Strings.cs:103 -#: Library/Modules/Builtin/Strings.cs:135 -#: Library/Modules/Builtin/Strings.cs:165 +#: Library/Modules/Builtin/Strings.cs:129 +#: Library/Modules/Builtin/Strings.cs:161 +#: Library/Modules/Builtin/Strings.cs:191 msgid "The messages to send" msgstr "" -#: Library/Modules/Builtin/Strings.cs:104 +#: Library/Modules/Builtin/Strings.cs:130 msgid "" "A url for the SMTP server, e.g. smtp://example.com:25. Multiple servers can " "be supplied in a prioritized list, separated with semicolon. If a server " @@ -4036,66 +4208,61 @@ msgid "" "use smtp://example.com:25/?starttls=never." msgstr "" -#: Library/Modules/Builtin/Strings.cs:108 +#: Library/Modules/Builtin/Strings.cs:134 msgid "SMTP Url" msgstr "" -#: Library/Modules/Builtin/Strings.cs:109 +#: Library/Modules/Builtin/Strings.cs:135 #, csharp-format msgid "" "This setting supplies the email subject. Values are replaced as described in " "the description for --{0}." msgstr "" -#: Library/Modules/Builtin/Strings.cs:110 +#: Library/Modules/Builtin/Strings.cs:136 msgid "The email subject" msgstr "" -#: Library/Modules/Builtin/Strings.cs:111 +#: Library/Modules/Builtin/Strings.cs:137 msgid "The username used to authenticate with the SMTP server if required." msgstr "" -#: Library/Modules/Builtin/Strings.cs:112 +#: Library/Modules/Builtin/Strings.cs:138 msgid "SMTP Username" msgstr "" -#: Library/Modules/Builtin/Strings.cs:113 -#, csharp-format -msgid "Failed to send email: {0}" -msgstr "" - -#: Library/Modules/Builtin/Strings.cs:114 +#: Library/Modules/Builtin/Strings.cs:139 #, csharp-format msgid "Whole SMTP communication: {0}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:115 +#: Library/Modules/Builtin/Strings.cs:140 #, csharp-format msgid "Failed to send email with server: {0}, message: {1}, retrying with {2}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:116 +#: Library/Modules/Builtin/Strings.cs:141 #, csharp-format msgid "Email sent successfully using server: {0}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:119 +#: Library/Modules/Builtin/Strings.cs:145 msgid "XMPP recipient email" msgstr "" -#: Library/Modules/Builtin/Strings.cs:120 +#: Library/Modules/Builtin/Strings.cs:146 msgid "" "The users who should have the messages sent, specify multiple users " "separated with commas" msgstr "" -#: Library/Modules/Builtin/Strings.cs:121 -#: Library/Modules/Builtin/Strings.cs:151 +#: Library/Modules/Builtin/Strings.cs:147 +#: Library/Modules/Builtin/Strings.cs:177 msgid "The message template" msgstr "" -#: Library/Modules/Builtin/Strings.cs:122 -#: Library/Modules/Builtin/Strings.cs:152 +#: Library/Modules/Builtin/Strings.cs:148 +#: Library/Modules/Builtin/Strings.cs:178 msgid "" "This value can be a filename. If the file exists, the file contents will be " "used as the message.\n" @@ -4112,26 +4279,26 @@ msgid "" "Any unknown/unset value is removed." msgstr "" -#: Library/Modules/Builtin/Strings.cs:131 +#: Library/Modules/Builtin/Strings.cs:157 msgid "The XMPP username" msgstr "" -#: Library/Modules/Builtin/Strings.cs:132 +#: Library/Modules/Builtin/Strings.cs:158 msgid "" "The username for the account that will send the message, including the " "hostname. I.e. \"account@jabber.org/Home\"" msgstr "" -#: Library/Modules/Builtin/Strings.cs:133 +#: Library/Modules/Builtin/Strings.cs:159 msgid "The XMPP password" msgstr "" -#: Library/Modules/Builtin/Strings.cs:134 +#: Library/Modules/Builtin/Strings.cs:160 msgid "The password for the account that will send the message" msgstr "" -#: Library/Modules/Builtin/Strings.cs:136 -#: Library/Modules/Builtin/Strings.cs:166 +#: Library/Modules/Builtin/Strings.cs:162 +#: Library/Modules/Builtin/Strings.cs:192 #, csharp-format msgid "" "You can specify one of \"{0}\", \"{1}\", \"{2}\", \"{3}\". \n" @@ -4140,138 +4307,142 @@ msgid "" "cause all backup operations to send a message." msgstr "" -#: Library/Modules/Builtin/Strings.cs:138 -#: Library/Modules/Builtin/Strings.cs:168 +#: Library/Modules/Builtin/Strings.cs:164 +#: Library/Modules/Builtin/Strings.cs:194 msgid "Send messages for all operations" msgstr "" -#: Library/Modules/Builtin/Strings.cs:139 -#: Library/Modules/Builtin/Strings.cs:169 +#: Library/Modules/Builtin/Strings.cs:165 +#: Library/Modules/Builtin/Strings.cs:195 msgid "" "By default, messages will only be sent after a Backup operation. Use this " "option to send messages for all operations" msgstr "" -#: Library/Modules/Builtin/Strings.cs:140 +#: Library/Modules/Builtin/Strings.cs:166 msgid "XMPP report module" msgstr "" -#: Library/Modules/Builtin/Strings.cs:141 +#: Library/Modules/Builtin/Strings.cs:167 msgid "" "This module provides support for sending status reports via XMPP messages" msgstr "" -#: Library/Modules/Builtin/Strings.cs:142 +#: Library/Modules/Builtin/Strings.cs:168 msgid "Timeout occurred while logging in to jabber server" msgstr "" -#: Library/Modules/Builtin/Strings.cs:143 -#, csharp-format -msgid "Failed to send jabber message: {0}" -msgstr "" - -#: Library/Modules/Builtin/Strings.cs:147 +#: Library/Modules/Builtin/Strings.cs:173 msgid "HTTP report module" msgstr "" -#: Library/Modules/Builtin/Strings.cs:148 +#: Library/Modules/Builtin/Strings.cs:174 msgid "" "This module provides support for sending status reports via HTTP messages" msgstr "" -#: Library/Modules/Builtin/Strings.cs:149 -#: Library/Modules/Builtin/Strings.cs:150 +#: Library/Modules/Builtin/Strings.cs:175 +#: Library/Modules/Builtin/Strings.cs:176 msgid "HTTP report url" msgstr "" -#: Library/Modules/Builtin/Strings.cs:161 +#: Library/Modules/Builtin/Strings.cs:187 msgid "The name of the parameter to send the message as" msgstr "" -#: Library/Modules/Builtin/Strings.cs:162 +#: Library/Modules/Builtin/Strings.cs:188 msgid "The name of the parameter to send the message as." msgstr "" -#: Library/Modules/Builtin/Strings.cs:163 +#: Library/Modules/Builtin/Strings.cs:189 msgid "Extra parameters to add to the http message" msgstr "" -#: Library/Modules/Builtin/Strings.cs:164 +#: Library/Modules/Builtin/Strings.cs:190 msgid "" "Extra parameters to add to the http message. I.e. " "\"parameter1=value1¶meter2=value2\"" msgstr "" -#: Library/Modules/Builtin/Strings.cs:170 -#, csharp-format -msgid "Failed to send http message: {0}" -msgstr "" - -#: Library/Modules/Builtin/Strings.cs:171 -msgid "Send data as JSON body" -msgstr "" - -#: Library/Modules/Builtin/Strings.cs:172 -msgid "Use this flag to send the result data as a JSON object" -msgstr "" - -#: Library/Modules/Builtin/Strings.cs:173 +#: Library/Modules/Builtin/Strings.cs:196 msgid "Sets the HTTP verb to use" msgstr "" -#: Library/Modules/Builtin/Strings.cs:174 +#: Library/Modules/Builtin/Strings.cs:197 msgid "Use this option to change the default HTTP verb used to submit a report" msgstr "" -#: Library/Modules/Builtin/Strings.cs:178 +#: Library/Modules/Builtin/Strings.cs:198 +msgid "HTTP report urls for sending form data" +msgstr "" + +#: Library/Modules/Builtin/Strings.cs:199 +msgid "" +"HTTP report urls for sending form-encoded data. This property accepts " +"multiple urls, seperated by a semi-colon. All urls will receive the same " +"data. Note that this option ignores the format and verb settings" +msgstr "" + +#: Library/Modules/Builtin/Strings.cs:200 +msgid "HTTP report urls for sending JSON data" +msgstr "" + +#: Library/Modules/Builtin/Strings.cs:201 +msgid "" +"HTTP report urls for sending JSON data. This property accepts multiple urls, " +"seperated by a semi-colon. All urls will receive the same data. Note that " +"this option ignores the format and verb settings" +msgstr "" + +#: Library/Modules/Builtin/Strings.cs:206 #, csharp-format msgid "Failed to send message: {0}" msgstr "" -#: Library/Modules/Builtin/Strings.cs:179 +#: Library/Modules/Builtin/Strings.cs:207 msgid "Defines a log level for messages" msgstr "" -#: Library/Modules/Builtin/Strings.cs:180 +#: Library/Modules/Builtin/Strings.cs:208 msgid "" "Use this option to set the log level for messages to include in the report" msgstr "" -#: Library/Modules/Builtin/Strings.cs:181 +#: Library/Modules/Builtin/Strings.cs:209 msgid "Log message filter" msgstr "" -#: Library/Modules/Builtin/Strings.cs:182 +#: Library/Modules/Builtin/Strings.cs:210 msgid "" "Use this option to set a filter expression that defines what options are " "included in the report" msgstr "" -#: Library/Modules/Builtin/Strings.cs:183 +#: Library/Modules/Builtin/Strings.cs:211 msgid "Limits log lines" msgstr "" -#: Library/Modules/Builtin/Strings.cs:184 +#: Library/Modules/Builtin/Strings.cs:212 msgid "" "Use this option to set the maximum number of log lines to include in the " "report. Zero or negative values means unlimited." msgstr "" -#: Library/Modules/Builtin/ResultSerialization/ResultFormatSerializerProvider.cs:19 +#: Library/Modules/Builtin/ResultSerialization/ResultFormatSerializerProvider.cs:39 #, csharp-format msgid "The format is not supported: {0}" msgstr "" -#: Library/Utility/Strings.cs:7 +#: Library/Utility/Strings.cs:27 #, csharp-format msgid "Invalid size value: {0}" msgstr "" -#: Library/Utility/Strings.cs:10 +#: Library/Utility/Strings.cs:30 msgid "The SSL certificate validator was called in an incorrect order" msgstr "" -#: Library/Utility/Strings.cs:11 +#: Library/Utility/Strings.cs:31 #, csharp-format msgid "" "{0}You may want to import a set of trusted certificates into the Mono " @@ -4280,7 +4451,7 @@ msgid "" "certs/ca-bundle.crt #for RedHat derivatives{0}Read more: {1}" msgstr "" -#: Library/Utility/Strings.cs:12 +#: Library/Utility/Strings.cs:32 #, csharp-format msgid "" "The server certificate had the error {0} and the hash {1}{2}If you trust " @@ -4289,105 +4460,105 @@ msgid "" "the server certificate into your operating systems trust pool." msgstr "" -#: Library/Utility/Strings.cs:13 +#: Library/Utility/Strings.cs:33 #, csharp-format msgid "" "Failed while validating certificate hash, error message: {0}, SSL error " "name: {1}" msgstr "" -#: Library/Utility/Strings.cs:16 +#: Library/Utility/Strings.cs:36 #, csharp-format msgid "Temporary folder does not exist: {0}" msgstr "" -#: Library/Utility/Strings.cs:19 +#: Library/Utility/Strings.cs:39 #, csharp-format msgid "Failed to parse the segment: {0}, invalid integer" msgstr "" -#: Library/Utility/Strings.cs:20 +#: Library/Utility/Strings.cs:40 #, csharp-format msgid "Invalid specifier: {0}" msgstr "" -#: Library/Utility/Strings.cs:21 +#: Library/Utility/Strings.cs:41 #, csharp-format msgid "Unparsed data: {0}" msgstr "" -#: Library/Utility/Strings.cs:24 +#: Library/Utility/Strings.cs:44 #, csharp-format msgid "The Uri is invalid: {0}" msgstr "" -#: Library/Utility/Strings.cs:25 +#: Library/Utility/Strings.cs:45 #, csharp-format msgid "The Uri is missing a hostname: {0}" msgstr "" -#: Library/Utility/Strings.cs:28 +#: Library/Utility/Strings.cs:48 #, csharp-format msgid "{0} bytes" msgstr "" -#: Library/Utility/Strings.cs:29 +#: Library/Utility/Strings.cs:49 #, csharp-format msgid "{0:N} GB" msgstr "" -#: Library/Utility/Strings.cs:30 +#: Library/Utility/Strings.cs:50 #, csharp-format msgid "{0:N} KB" msgstr "" -#: Library/Utility/Strings.cs:31 +#: Library/Utility/Strings.cs:51 #, csharp-format msgid "{0:N} MB" msgstr "" -#: Library/Utility/Strings.cs:32 +#: Library/Utility/Strings.cs:52 #, csharp-format msgid "{0:N} TB" msgstr "" -#: Library/Utility/Strings.cs:33 +#: Library/Utility/Strings.cs:53 #, csharp-format msgid "The string \"{0}\" could not be parsed into a date" msgstr "" -#: Library/Utility/Strings.cs:36 +#: Library/Utility/Strings.cs:56 msgid "Cannot read and write on the same stream" msgstr "" -#: Library/Utility/Strings.cs:39 +#: Library/Utility/Strings.cs:59 #, csharp-format msgid "" "The string {0} does not represent a known filter group name. Valid values " "are: {1}" msgstr "" -#: Library/Utility/FilterGroups.cs:185 +#: Library/Utility/FilterGroups.cs:191 #, csharp-format msgid "{0}: Selects no filters." msgstr "" -#: Library/Utility/FilterGroups.cs:186 +#: Library/Utility/FilterGroups.cs:192 #, csharp-format msgid "{0}: A set of default exclude filters, currently evaluates to: {1}." msgstr "" -#: Library/Utility/FilterGroups.cs:187 +#: Library/Utility/FilterGroups.cs:193 #, csharp-format msgid "{0}: A set of default include filters, currently evaluates to: {1}." msgstr "" -#: Library/Utility/FilterGroups.cs:198 +#: Library/Utility/FilterGroups.cs:204 #, csharp-format msgid " Aliases: {0}" msgstr "" -#: Library/Utility/FilterGroups.cs:211 +#: Library/Utility/FilterGroups.cs:217 #, csharp-format msgid "" "{0}: Files that are owned by the system or not suited to be backed up. This " @@ -4395,105 +4566,138 @@ msgid "" "least apply these filters." msgstr "" -#: Library/Utility/FilterGroups.cs:213 +#: Library/Utility/FilterGroups.cs:219 #, csharp-format msgid "" "{0}: Files that belong to the operating system. These files are restored " "when the operating system is re-installed." msgstr "" -#: Library/Utility/FilterGroups.cs:215 +#: Library/Utility/FilterGroups.cs:221 #, csharp-format msgid "{0}: Files and folders that are known to be storage of temporary data." msgstr "" -#: Library/Utility/FilterGroups.cs:217 +#: Library/Utility/FilterGroups.cs:223 #, csharp-format msgid "" "{0}: Files and folders that are known cache locations for the operating " "system and various applications" msgstr "" -#: Library/Utility/FilterGroups.cs:219 +#: Library/Utility/FilterGroups.cs:225 #, csharp-format msgid "{0}: Installed programs and their libraries, but not their settings." msgstr "" -#: CommandLine/Strings.cs:4 +#: CommandLine/CLI/Strings.cs:27 #, csharp-format msgid "The command {0} needs at least one of the following options set: {1}" msgstr "" -#: CommandLine/Strings.cs:5 +#: CommandLine/CLI/Strings.cs:28 #, csharp-format msgid "" "Found {0} commands but expected {1}, commands: \n" "{2}" msgstr "" -#: CommandLine/Strings.cs:7 +#: CommandLine/CLI/Strings.cs:30 #, csharp-format msgid "Command not supported: {0}" msgstr "" -#: CommandLine/Strings.cs:8 +#: CommandLine/CLI/Strings.cs:31 msgid "No filesets matched the criteria" msgstr "" -#: CommandLine/Strings.cs:9 +#: CommandLine/CLI/Strings.cs:32 msgid "The following filesets would be deleted:" msgstr "" -#: CommandLine/Strings.cs:10 +#: CommandLine/CLI/Strings.cs:33 msgid "These filesets were deleted:" msgstr "" -#: CommandLine/Strings.cs:11 +#: CommandLine/CLI/Strings.cs:34 msgid "Supported backends:" msgstr "" -#: CommandLine/Strings.cs:12 +#: CommandLine/CLI/Strings.cs:35 msgid "Supported compression modules:" msgstr "" -#: CommandLine/Strings.cs:13 +#: CommandLine/CLI/Strings.cs:36 msgid "Supported encryption modules:" msgstr "" -#: CommandLine/Strings.cs:14 +#: CommandLine/CLI/Strings.cs:37 msgid "Supported options:" msgstr "" -#: CommandLine/Strings.cs:15 +#: CommandLine/CLI/Strings.cs:38 msgid "Module is loaded automatically, use --disable-module to prevent this" msgstr "" -#: CommandLine/Strings.cs:16 +#: CommandLine/CLI/Strings.cs:39 msgid "Module is not loaded automatically, use --enable-module to load it" msgstr "" -#: CommandLine/Strings.cs:17 +#: CommandLine/CLI/Strings.cs:40 msgid "Supported generic modules:" msgstr "" -#: CommandLine/Strings.cs:20 +#: CommandLine/CLI/Strings.cs:41 +#, csharp-format +msgid "Unable to read the parameters file \"{0}\", reason: {1}" +msgstr "" + +#: CommandLine/CLI/Strings.cs:42 +#, csharp-format +msgid "" +"Filters cannot be specified on the commandline if filters are also present " +"in the parameter file. Use the special --{0}, --{1}, or --{2} options to " +"specify filters inside the parameter file. Each filter must be prefixed with " +"either a + or a -, and multiple filters must be joined with {3}" +msgstr "" + +#: CommandLine/CLI/Strings.cs:43 #, csharp-format msgid "" "The option --{0} was supplied, but it is reserved for internal use and may " "not be set on the commandline" msgstr "" -#: CommandLine/Strings.cs:23 +#: CommandLine/CLI/Strings.cs:44 +#, csharp-format +msgid "" +"This option can be used to store some or all of the options given to the " +"commandline client. The file must be a plain text file, UTF-8 encoding is " +"preferred. Each line in the file should be of the format --option=value. The " +"special options --{0} and --{1} can be used to override the localpath and " +"the remote destination uri, respectively. The options in this file take " +"precedence over the options provided on the commandline. You cannot specify " +"filters in both the file and on the commandline. Instead, you can use the " +"special --{2}, --{3}, or --{4} options to specify filters inside the " +"parameter file. Each filter must be prefixed with either a + or a -, and " +"multiple filters must be joined with {5} " +msgstr "" + +#: CommandLine/CLI/Strings.cs:45 +msgid "Path to a file with parameters" +msgstr "" + +#: CommandLine/CLI/Strings.cs:46 #, csharp-format msgid "An error occured: {0}" msgstr "" -#: CommandLine/Strings.cs:24 +#: CommandLine/CLI/Strings.cs:47 #, csharp-format msgid "The inner error message is: {0}" msgstr "" -#: CommandLine/Strings.cs:25 +#: CommandLine/CLI/Strings.cs:48 msgid "" "Include files that match this filter. The special character * means any " "number of character, and the special character ? means any single character, " @@ -4503,11 +4707,11 @@ msgid "" "folders) can be specified by using curly braces, i.e. {{Applications}}." msgstr "" -#: CommandLine/Strings.cs:26 +#: CommandLine/CLI/Strings.cs:49 msgid "Include files" msgstr "" -#: CommandLine/Strings.cs:27 +#: CommandLine/CLI/Strings.cs:50 msgid "" "Exclude files that match this filter. The special character * means any " "number of character, and the special character ? means any single character, " @@ -4517,41 +4721,41 @@ msgid "" "folders) can be specified by using curly braces, i.e. {{TemporaryFiles}}." msgstr "" -#: CommandLine/Strings.cs:28 +#: CommandLine/CLI/Strings.cs:51 msgid "Exclude files" msgstr "" -#: CommandLine/Strings.cs:29 +#: CommandLine/CLI/Strings.cs:52 +msgid "Use control files" +msgstr "" + +#: CommandLine/CLI/Strings.cs:53 msgid "" "If this option is used with a backup operation, it is interpreted as a list " "of files to add to the filesets. When used with list or restore, it will " "list or restore the control files instead of the normal files." msgstr "" -#: CommandLine/Strings.cs:30 -msgid "Use control files" -msgstr "" - -#: CommandLine/Strings.cs:31 +#: CommandLine/CLI/Strings.cs:54 msgid "" "If this option is set, progress reports and other messages that would " "normally go to the console will be redirected to the log." msgstr "" -#: CommandLine/Strings.cs:32 +#: CommandLine/CLI/Strings.cs:55 msgid "Disable console output" msgstr "" -#: CommandLine/Strings.cs:41 +#: CommandLine/CLI/Strings.cs:63 #, csharp-format msgid "This link may provide additional information: {0}" msgstr "" -#: CommandLine/Program.cs:283 +#: CommandLine/CLI/Program.cs:288 msgid "Toggle automatic updates" msgstr "" -#: CommandLine/Program.cs:283 +#: CommandLine/CLI/Program.cs:288 msgid "" "Set this option if you prefer to have the commandline version automatically " "update" diff --git a/Localizations/osx_source b/Localizations/osx_source deleted file mode 100644 index 8e0e98008..000000000 --- a/Localizations/osx_source +++ /dev/null @@ -1 +0,0 @@ -export PATH="/usr/local/opt/gettext/bin:$PATH" diff --git a/Localizations/pull_from_transifex.sh b/Localizations/pull_from_transifex.sh index d5182fc70..33b0ced68 100755 --- a/Localizations/pull_from_transifex.sh +++ b/Localizations/pull_from_transifex.sh @@ -1,4 +1,4 @@ #!/bin/bash # transifex client in PATH necessary cd $( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) -tx pull --language=de,fr,es,zh_CN,nl_NL,pl,fi,ru,da,it,zh_TW,cs,pt_BR,sr_RS,zh_HK,pt,lt,lv,sk_SK,ro,sv_SE,th,hu,sk,ca,ja_JP,bn,ko,fr_CA,en_GB +tx pull --languages=de,fr,es,zh_CN,nl_NL,pl,fi,ru,da,it,zh_TW,cs,pt_BR,sr_RS,zh_HK,pt,lt,lv,sk_SK,ro,sv_SE,th,hu,sk,ca,ja_JP,bn,ko,fr_CA,en_GB diff --git a/Localizations/webroot/localization_webroot-it.po b/Localizations/webroot/localization_webroot-it.po index de06c8e4d..a027652ad 100644 --- a/Localizations/webroot/localization_webroot-it.po +++ b/Localizations/webroot/localization_webroot-it.po @@ -5,18 +5,18 @@ # Devis Cerri , 2017 # Andrea De Lunardi , 2018 # Francesco Infantini , 2019 -# albanobattistella , 2019 -# Folgore101 , 2020 +# albanobattistella , 2019 +# Folgore101 , 2024 # msgid "" msgstr "" "Project-Id-Version: \n" -"Last-Translator: Folgore101 , 2020\n" -"Language-Team: Italian (https://www.transifex.com/duplicati/teams/67655/it/)\n" +"Last-Translator: Folgore101 , 2024\n" +"Language-Team: Italian (https://app.transifex.com/duplicati/teams/67655/it/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: templates/advancedoptionseditor.html:48 msgid "- pick an option -" @@ -865,15 +865,15 @@ msgstr "File scaricati" #: scripts/services/ServerStatus.js:53 msgid "Downloading files …" -msgstr "Download di file ..." +msgstr "Download di file..." #: templates/notificationarea.html:24 msgid "Downloading update…" -msgstr "Download aggiornamento in corso ..." +msgstr "Download dell'aggiornamento..." #: templates/notificationarea.html:30 msgid "Downloading …" -msgstr "Download in corso ..." +msgstr "Download in corso..." #: scripts/services/AppUtils.js:301 msgid "Duplicate option {{opt}}" @@ -2689,6 +2689,16 @@ msgstr "" "Il percorso deve essere un percorso assoluto, cioè deve iniziare con una " "barra '/'" +#: scripts/services/EditUriBuiltins.js:871 +msgid "" +"The path should start with \"{{prefix1}}\" or \"{{prefix2}}\", otherwise you will not be able to see the files in the HubiC web interface.\n" +"\n" +"Do you want to add the prefix to the path automatically?" +msgstr "" +"Il percorso deve iniziare con \"{{prefix1}}\" o \"{{prefix2}}\", altrimenti non sarà possibile visualizzare i file nell'interfaccia Web di HubiC.\n" +"\n" +"Vuoi aggiungere automaticamente il prefisso al percorso?" + #: templates/backends/s3.html:33 msgid "The region parameter is only applied when creating a new bucket" msgstr "Il parametro area è applicato solo quando si crea un nuovo bucket" @@ -2753,8 +2763,8 @@ msgid "" msgstr "" "Questa opzione non è riferita al numero massimo dei tuoi backup o alle " "dimensioni del file, né influisce sulla valutazione della deduplicazione. " -"Guarda questa pagina prima di modificare le " +"Guarda questa pagina prima di modificare le " "dimensioni del volume remoto." #: scripts/controllers/RestoreController.js:36 @@ -2874,14 +2884,14 @@ msgstr "Caricamento file di verifica ..." msgid "" "Usage reports help us improve the user experience and evaluate impact of new" " features. We use them to generate {{'public usage statistics' | translate" -"}}" +"reporter.duplicati.com/'\">{{'public usage statistics' | " +"translate}}" msgstr "" "I report sull'utilizzo ci aiutano a migliorare l'esperienza dell'utente e a " "valutare l'impatto delle nuove funzionalità. Li usiamo per generare " "{{\"statistiche sull'uso pubblico\" | tradurre" -"}}" +"reporter.duplicati.com/'\">{{\"statistiche sull'uso pubblico\" | " +"tradurre}}" #: templates/settings.html:120 msgid "Usage statistics" @@ -3190,7 +3200,7 @@ msgstr "Devi inserire un nome di dominio per utilizzare l'API v3" #: scripts/controllers/EditBackupController.js:239 msgid "You must enter a name for the backup" -msgstr "Devi inserire un nome un nome per il backup" +msgstr "Devi inserire un nome per il backup" #: scripts/controllers/EditBackupController.js:246 msgid "You must enter a passphrase or disable encryption" @@ -3324,6 +3334,7 @@ msgid "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version" msgid_plural "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versions" msgstr[0] "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versione" msgstr[1] "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versioni" +msgstr[2] "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versioni" #: templates/pause.html:26 msgid "{{number}} Hour" diff --git a/Localizations/webroot/localization_webroot-ja_JP.po b/Localizations/webroot/localization_webroot-ja_JP.po index 07df34f54..4c6953921 100644 --- a/Localizations/webroot/localization_webroot-ja_JP.po +++ b/Localizations/webroot/localization_webroot-ja_JP.po @@ -1,14 +1,16 @@ # # Translators: # AlbireoGT, 2017 -# Shuuji TAKAHASHI , 2018 +# TAKAHASHI Shuuji , 2018 # yu hi , 2019 +# あわしろいくや , 2020 +# Suguru Hirahara, 2024 # msgid "" msgstr "" "Project-Id-Version: \n" -"Last-Translator: yu hi , 2019\n" -"Language-Team: Japanese (Japan) (https://www.transifex.com/duplicati/teams/67655/ja_JP/)\n" +"Last-Translator: Suguru Hirahara, 2024\n" +"Language-Team: Japanese (Japan) (https://app.transifex.com/duplicati/teams/67655/ja_JP/)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ja_JP\n" @@ -16,33 +18,33 @@ msgstr "" #: templates/advancedoptionseditor.html:48 msgid "- pick an option -" -msgstr "- オプションを選んでください -" +msgstr "- オプションを選択してください -" #: templates/delete.html:7 msgid "...loading..." -msgstr "...読み込み中..." +msgstr "…読み込んでいます…" #: templates/backends/openstack.html:44 msgid "API Key" -msgstr "API Key" +msgstr "APIキー" #: templates/backends/tardigrade.html:21 msgid "API key" -msgstr "" +msgstr "APIキー" #: scripts/services/EditUriBuiltins.js:945 templates/backends/s3.html:67 #: templates/backends/s3.html:69 msgid "AWS Access ID" -msgstr "AWS Access ID" +msgstr "AWSアクセスID" #: scripts/services/EditUriBuiltins.js:946 templates/backends/s3.html:72 #: templates/backends/s3.html:74 msgid "AWS Access Key" -msgstr "AWS Access Key" +msgstr "AWSアクセスキー" #: scripts/services/EditUriBuiltins.js:150 msgid "AWS IAM Policy" -msgstr "AWS IAM Policy" +msgstr "AWS IAMポリシー" #: index.html:234 index.html:250 msgid "About" @@ -50,23 +52,23 @@ msgstr "概要" #: templates/about.html:2 msgid "About {{appname}}" -msgstr "{{appname}} について" +msgstr "{{appname}}について" #: scripts/services/EditUriBuiltins.js:894 templates/backends/azure.html:11 msgid "Access Key" -msgstr "Access Key" +msgstr "アクセスキー" #: scripts/services/AppUtils.js:70 msgid "Access denied" -msgstr "" +msgstr "アクセスが拒否されました" #: templates/backends/tardigrade.html:29 msgid "Access grant" -msgstr "" +msgstr "アクセス権" #: templates/settings.html:5 msgid "Access to user interface" -msgstr "" +msgstr "ユーザーインターフェースへのアクセス" #: scripts/services/EditUriBuiltins.js:893 templates/backends/azure.html:7 msgid "Account name" @@ -74,12 +76,12 @@ msgstr "アカウント名" #: templates/notificationarea.html:29 templates/updatechangelog.html:11 msgid "Activate" -msgstr "有効化する" +msgstr "有効にする" #: scripts/controllers/AboutController.js:54 #: scripts/controllers/UpdateChangelogController.js:18 msgid "Activate failed:" -msgstr "有効化に失敗しました:" +msgstr "有効にできませんでした:" #: templates/addwizard.html:3 msgid "Add a new backup" @@ -87,56 +89,56 @@ msgstr "新しいバックアップを作成" #: templates/addoredit.html:153 msgid "Add a path directly" -msgstr "" +msgstr "パスディレクトリを追加" #: templates/advancedoptionseditor.html:46 msgid "Add advanced option" -msgstr "" +msgstr "高度な設定を追加" #: index.html:222 msgid "Add backup" -msgstr "バックアップを追加する" +msgstr "バックアップを追加" #: templates/addoredit.html:207 msgid "Add filter" -msgstr "フィルターを追加する" +msgstr "フィルターを追加" #: templates/addoredit.html:156 msgid "Add path" -msgstr "パスを追加する" +msgstr "パスを追加" #: templates/backup-result/top-right-box.html:11 msgid "Added" -msgstr "" +msgstr "追加しました" #: scripts/services/EditUriBuiltins.js:956 #: scripts/services/EditUriBuiltins.js:972 msgid "Adjust bucket name?" -msgstr "" +msgstr "バケットの名称を変更しますか?" #: scripts/services/EditUriBuiltins.js:871 msgid "Adjust path name?" -msgstr "" +msgstr "パスの名称を変更しますか?" #: templates/restoredirect.html:66 templates/restoredirect.html:74 msgid "Advanced Options" -msgstr "拡張設定" +msgstr "高度な設定" #: templates/addoredit.html:376 templates/edituri.html:28 msgid "Advanced options" -msgstr "拡張設定" +msgstr "高度な設定" #: templates/home.html:37 msgid "Advanced:" -msgstr "" +msgstr "高度:" #: scripts/directives/sourceFolderPicker.js:423 msgid "All Hyper-V Machines" -msgstr "" +msgstr "全てのHyper-Vマシン" #: scripts/directives/sourceFolderPicker.js:455 msgid "All Microsoft SQL Databases" -msgstr "" +msgstr "全てのMicrosoft SQLデータベース" #: templates/settings.html:134 msgid "" @@ -146,24 +148,27 @@ msgid "" "similar data. They do not contain paths, filenames, usernames, passwords or " "similar sensitive information." msgstr "" +"使用状況に関する報告は全て匿名で送信され、個人情報を含みません。報告には、ハードウェア、OS、バックエンドの種類、バックアップの保持期間、バックアップ元のデータなどの全体のサイズに関するデータが含まれます。パス、ファイル名、ユーザー名、パスワードなどの機密情報は含まれません。" #: templates/settings.html:17 msgid "Allow remote access (requires restart)" -msgstr "リモートアクセスを許可 (要再起動)" +msgstr "リモートアクセスを許可(要再起動)" #: templates/addoredit.html:278 msgid "Allowed days" -msgstr "" +msgstr "実行を許可する日" #: scripts/controllers/LocalDatabaseController.js:103 msgid "An existing file was found at the new location" -msgstr "" +msgstr "既存のファイルが新しい場所で見つかりました" #: scripts/controllers/LocalDatabaseController.js:72 msgid "" "An existing file was found at the new location\n" "Are you sure you want the database to point to an existing file?" msgstr "" +"既存のファイルが新しい場所で見つかりました。\n" +"データベースを既存のファイルに指定してよろしいですか?" #: scripts/controllers/EditBackupController.js:450 msgid "" @@ -175,15 +180,15 @@ msgstr "" #: templates/settings.html:122 msgid "Anonymous usage reports" -msgstr "" +msgstr "使用状況に関する匿名の報告" #: scripts/services/AppUtils.js:204 msgid "Applications" -msgstr "" +msgstr "アプリケーション" #: templates/export.html:8 msgid "As Command-line" -msgstr "" +msgstr "コマンドライン" #: scripts/services/EditUriBuiltins.js:825 templates/backends/gcs.html:8 #: templates/backends/gcs.html:9 templates/backends/msgroup.html:13 @@ -191,51 +196,51 @@ msgstr "" #: templates/backends/oauth.html:9 templates/backends/sharepoint.html:8 #: templates/backends/sharepoint.html:9 msgid "AuthID" -msgstr "" +msgstr "認証ID" #: templates/backends/tardigrade.html:2 msgid "Authentication method" -msgstr "" +msgstr "認証方法" #: templates/backends/tardigrade.html:5 msgid "Authentication method ({{auth_method}})" -msgstr "" +msgstr "認証方法({{auth_method}})" #: templates/backends/generic.html:23 templates/backends/openstack.html:35 msgid "Authentication password" -msgstr "" +msgstr "認証パスワード" #: templates/backends/generic.html:19 templates/backends/openstack.html:31 msgid "Authentication username" -msgstr "" +msgstr "認証ユーザー名" #: scripts/controllers/EditBackupController.js:359 msgid "Autogenerated passphrase" -msgstr "" +msgstr "自動生成したパスフレーズ" #: templates/addoredit.html:258 msgid "Automatically run backups." -msgstr "バックアップを自動化する" +msgstr "バックアップを自動的に実行。" #: templates/backends/b2.html:12 msgid "B2 Application ID" -msgstr "" +msgstr "B2 アプリケーションID" #: templates/backends/b2.html:16 msgid "B2 Application Key" -msgstr "B2 Application Key" +msgstr "B2 アプリケーションキー" #: scripts/services/EditUriBuiltins.js:991 msgid "B2 Cloud Storage Account ID" -msgstr "B2 Cloud Storage Account ID" +msgstr "B2 クラウドストレージアカウントID" #: templates/backends/b2.html:13 msgid "B2 Cloud Storage Application ID" -msgstr "" +msgstr "B2 クラウドストレージアプリケーションID" #: scripts/services/EditUriBuiltins.js:992 templates/backends/b2.html:17 msgid "B2 Cloud Storage Application Key" -msgstr "B2 Cloud Storage Application Key" +msgstr "B2 クラウドストレージアプリケーションキー" #: templates/restore.html:143 templates/restore.html:70 msgid "Back" @@ -243,11 +248,11 @@ msgstr "戻る" #: templates/about.html:67 msgid "Backend modules:" -msgstr "" +msgstr "バックエンドのモジュール:" #: scripts/services/ServerStatus.js:44 msgid "Backup complete!" -msgstr "バックアップ完了!" +msgstr "バックアップが完了しました!" #: templates/addoredit.html:92 msgid "Backup destination" @@ -260,27 +265,30 @@ msgid "" " or, in case of GPG encryption, leave blank to let gpg retrieve the passphrase by\n" " invoking your system's keychain." msgstr "" +"バックアップは暗号化されていますが、パスフレーズが指定されていません。\n" +"ファイルを復元するには、以下にパスフレーズを入力するか、\n" +"GPGによる暗号化を行っている場合は、以下を空欄のままにして、gpgでシステムのキーチェーンからパスフレーズを取得してください。" #: templates/restore.html:21 templates/restoredirect.html:21 #: templates/restoredirect.html:31 msgid "Backup location" -msgstr "" +msgstr "バックアップの場所" #: templates/addoredit.html:319 msgid "Backup retention" -msgstr "" +msgstr "バックアップの保持期間" #: templates/home.html:73 msgid "Backup:" -msgstr "バックアップ:" +msgstr "バックアップ:" #: templates/settings.html:99 msgid "Beta" -msgstr "Beta" +msgstr "ベータ版" #: scripts/services/AppUtils.js:68 msgid "Broken access" -msgstr "" +msgstr "アクセスが壊れています" #: templates/backends/file.html:8 templates/restore.html:91 msgid "Browse" @@ -292,7 +300,7 @@ msgstr "ブラウザ設定" #: templates/backends/tardigrade.html:33 msgid "Bucket" -msgstr "" +msgstr "バケット" #: scripts/services/EditUriBuiltins.js:1004 #: scripts/services/EditUriBuiltins.js:904 @@ -303,11 +311,11 @@ msgstr "バケット名" #: templates/backends/gcs.html:15 msgid "Bucket create location" -msgstr "バケット作成場所" +msgstr "バケットを作成する場所" #: templates/backends/s3.html:29 msgid "Bucket create region" -msgstr "バケット作成リージョン" +msgstr "バケットを作成するリージョン" #: templates/backends/b2.html:2 templates/backends/b2.html:3 #: templates/backends/gcs.html:2 templates/backends/openstack.html:2 @@ -317,19 +325,19 @@ msgstr "バケット名" #: templates/backends/gcs.html:26 msgid "Bucket storage class" -msgstr "バケットストレージクラス" +msgstr "バケットのストレージクラス" #: scripts/services/ServerStatus.js:48 msgid "Building list of files to restore …" -msgstr "" +msgstr "復元するファイルの一覧を作成しています…" #: scripts/controllers/RestoreController.js:366 msgid "Building partial temporary database …" -msgstr "" +msgstr "一時的なデータベースを構築しています…" #: templates/restore.html:59 msgid "Busy ..." -msgstr "" +msgstr "取り込み中…" #: templates/settings.html:18 msgid "" @@ -337,6 +345,7 @@ msgid "" "on your network. If you enable this option, make sure you are always using " "the computer on a secure firewall protected network." msgstr "" +"遠隔アクセスを許可すると、サーバーはあなたのネットワークの任意のコンピューターからのリクエストを受け付けます。このオプションを有効にする場合は、ファイヤーウォールで安全に保護されているネットワークのコンピューターを使用してください。" #: templates/settings.html:29 msgid "" @@ -346,6 +355,7 @@ msgid "" " you prefer having to type in the password, even when accessing the user " "interface from the tray icon, enable this option." msgstr "" +"トレイアイコンは既定で、トークンでロックを解除してユーザーインターフェースを開きます。この場合、他のユーザーはパスワードを入力する必要がありますが、ユーザーはトレイアイコンからユーザーインターフェースにアクセスすることができます。トレイアイコンからアクセスする場合にパスワードを入力するよう設定したい場合は、このオプションを有効にしてください。" #: scripts/services/AppUtils.js:198 msgid "Cache Files" @@ -353,7 +363,7 @@ msgstr "キャッシュファイル" #: templates/settings.html:109 msgid "Canary" -msgstr "実験的" +msgstr "実験的(カナリア)" #: scripts/controllers/AppController.js:44 #: scripts/controllers/AppController.js:59 @@ -394,40 +404,40 @@ msgstr "更新履歴 {{appname}} {{version}}" #: scripts/controllers/UpdateChangelogController.js:24 msgid "Check failed:" -msgstr "確認失敗:" +msgstr "確認できませんでした:" #: templates/about.html:36 msgid "Check for updates now" -msgstr "今すぐアップデートを確認する" +msgstr "アップデートを確認" #: templates/captcha.html:10 msgid "Checking ..." -msgstr "確認しています ..." +msgstr "確認しています…" #: templates/about.html:37 msgid "Checking for updates …" -msgstr "" +msgstr "アップデートを確認しています…" #: templates/edituri.html:16 msgid "Chose a storage type to get started" -msgstr "" +msgstr "初めにストレージの種類を選択してください" #: templates/backends/gcs.html:11 templates/backends/msgroup.html:16 #: templates/backends/oauth.html:11 templates/backends/sharepoint.html:11 msgid "Click the AuthID link to create an AuthID" -msgstr "" +msgstr "認証IDのリンクをクリックして作成してください" #: index.html:159 index.html:210 msgid "Click to set throttle options" -msgstr "" +msgstr "クリックで速度制限のオプションを設定" #: templates/backends/s3.html:79 msgid "Client library to use" -msgstr "" +msgstr "使用するクライアントライブラリー" #: templates/home.html:42 msgid "Commandline …" -msgstr "" +msgstr "コマンドライン" #: templates/backup-result/phases/compact.html:3 msgid "Compact Phase" @@ -435,69 +445,69 @@ msgstr "" #: templates/home.html:41 msgid "Compact now" -msgstr "" +msgstr "圧縮" #: scripts/services/ServerStatus.js:41 msgid "Compacting remote data ..." -msgstr "" +msgstr "リモートデータを圧縮しています…" #: scripts/services/ServerStatus.js:65 msgid "Compacting remote data …" -msgstr "" +msgstr "リモートデータを圧縮しています…" #: templates/backup-result/box.html:34 msgid "Complete log" -msgstr "" +msgstr "完全なログ" #: scripts/services/ServerStatus.js:38 msgid "Completing backup …" -msgstr "" +msgstr "バックアップを完了しています…" #: scripts/services/ServerStatus.js:36 msgid "Completing previous backup …" -msgstr "" +msgstr "以前のバックアップを完了しています…" #: templates/about.html:68 msgid "Compression modules:" -msgstr "圧縮モジュール" +msgstr "圧縮モジュール:" #: scripts/directives/sourceFolderPicker.js:381 msgid "Computer" -msgstr "コンピュータ" +msgstr "コンピューター" #: templates/import.html:9 msgid "Configuration file:" -msgstr "設定ファイル:" +msgstr "設定ファイル:" #: templates/home.html:29 msgid "Configuration:" -msgstr "設定:" +msgstr "設定:" #: templates/addwizard.html:9 msgid "Configure a new backup" -msgstr "新しいバックアップ設定" +msgstr "新しいバックアップを設定" #: scripts/controllers/DeleteController.js:65 #: scripts/controllers/DeleteController.js:77 #: scripts/controllers/LocalDatabaseController.js:28 msgid "Confirm delete" -msgstr "" +msgstr "削除を確認" #: templates/export.html:30 msgid "Confirm encryption passphrase" -msgstr "" +msgstr "暗号化用パスフレーズを確認" #: templates/export.html:29 msgid "Confirm passphrase" -msgstr "" +msgstr "パスフレーズを確認" #: templates/settings.html:12 msgid "Confirm password" -msgstr "パスワード確認" +msgstr "パスワードを確認" #: scripts/services/EditUriBackendConfig.js:66 msgid "Confirmation required" -msgstr "確認が必要" +msgstr "確認が必要です" #: templates/restoredirect.html:80 msgid "Connect" @@ -509,15 +519,15 @@ msgstr "今すぐ接続" #: index.html:315 msgid "Connecting to server …" -msgstr "" +msgstr "サーバーに接続しています…" #: templates/commandline.html:51 msgid "Connecting to task ...." -msgstr "" +msgstr "タスクに接続しています…" #: index.html:320 msgid "Connecting..." -msgstr "接続中 ..." +msgstr "接続しています…" #: index.html:311 msgid "Connection lost" @@ -526,7 +536,7 @@ msgstr "切断しました" #: scripts/directives/backupEditUri.js:51 #: scripts/directives/backupEditUri.js:54 msgid "Connection worked!" -msgstr "接続完了!" +msgstr "接続できました!" #: scripts/services/EditUriBuiltins.js:895 templates/backends/azure.html:2 msgid "Container name" @@ -534,19 +544,19 @@ msgstr "コンテナ名" #: templates/backends/openstack.html:49 msgid "Container region" -msgstr "コンテナリージョン" +msgstr "コンテナのリージョン" #: templates/restore.html:69 msgid "Continue" -msgstr "続ける" +msgstr "続行" #: scripts/controllers/EditBackupController.js:429 msgid "Continue without encryption" -msgstr "暗号化なしで続ける" +msgstr "暗号化なしで続行" #: scripts/controllers/DialogController.js:16 msgid "Copied!" -msgstr "コピーしました!" +msgstr "コピーしました!" #: templates/copy_clipboard_buttons.html:3 msgid "Copy" @@ -554,117 +564,119 @@ msgstr "コピー" #: templates/addoredit.html:103 templates/restoredirect.html:42 msgid "Copy Destination URL to Clipboard" -msgstr "コピー先URLをクリップボードにコピーする" +msgstr "バックアップ先のURLをクリップボードにコピー" #: scripts/controllers/DialogController.js:20 msgid "Copy failed. Please manually copy the URL" -msgstr "コピー失敗。URLを手動でコピーしてください" +msgstr "コピーできませんでした。URLを手動でコピーしてください" #: scripts/services/AppUtils.js:639 msgid "Core options" -msgstr "" +msgstr "中心のオプション" #: scripts/controllers/StateController.js:34 msgid "Counting ({{files}} files found, {{size}})" -msgstr "" +msgstr "計測中({{files}}個のファイルが見つかりました。サイズは{{size}})" #: templates/settings.html:129 msgid "Crashes only" -msgstr "" +msgstr "クラッシュのみ" #: templates/home.html:48 msgid "Create bug report …" -msgstr "" +msgstr "バグ報告を作成…" #: scripts/directives/backupEditUri.js:131 msgid "Create folder?" -msgstr "フォルダを作成しますか?" +msgstr "フォルダーを作成しますか?" #: scripts/services/EditUriBuiltins.js:133 msgid "Created new limited user" -msgstr "" +msgstr "新規の制限ユーザーを作成しました" #: scripts/services/ServerStatus.js:60 msgid "Creating bug report …" -msgstr "" +msgstr "バグレポートを作成しています…" #: scripts/services/EditUriBuiltins.js:119 msgid "Creating new user with limited access …" -msgstr "" +msgstr "アクセスが制限されている新規ユーザーを作成しています…" #: scripts/services/ServerStatus.js:49 msgid "Creating target folders …" -msgstr "" +msgstr "バックアップ先のフォルダーを作成しています…" #: scripts/controllers/RestoreController.js:361 msgid "Creating temporary backup …" -msgstr "" +msgstr "一時的なバックアップを作成しています…" #: scripts/services/EditUriBuiltins.js:119 msgid "Creating user..." -msgstr "ユーザーを作成中 ..." +msgstr "ユーザーを作成しています…" #: templates/home.html:78 msgid "Current action:" -msgstr "" +msgstr "現在のアクション:" #: templates/home.html:88 msgid "Current file:" -msgstr "現在のファイル:" +msgstr "現在のファイル:" #: templates/updatechangelog.html:4 msgid "Current version is {{versionname}} ({{versionnumber}})" -msgstr "現在のバージョンは {{versionname}} ({{versionnumber}})" +msgstr "現在のバージョンは {{versionname}}({{versionnumber}})" #: templates/backends/s3.html:17 msgid "Custom S3 endpoint" -msgstr "カスタム S3 エンドポイント" +msgstr "ユーザー定義のS3 エンドポイント" #: templates/backends/tardigrade.html:18 msgid "Custom Satellite" -msgstr "" +msgstr "カスタムサテライト" #: templates/backends/tardigrade.html:13 msgid "Custom Satellite ({{satellite}})" -msgstr "" +msgstr "カスタムサテライト({{satellite}})" #: templates/backends/openstack.html:13 msgid "Custom authentication url" -msgstr "カスタム認証URL" +msgstr "ユーザー定義の認証用URL" #: templates/addoredit.html:325 msgid "Custom backup retention" -msgstr "" +msgstr "ユーザー定義のバックアップの保持期間" #: templates/backends/gcs.html:18 msgid "Custom location ({{server}})" -msgstr "" +msgstr "ユーザー定義の場所({{server}})" #: templates/backends/s3.html:39 msgid "Custom region for creating buckets" -msgstr "" +msgstr "バケットを作成するユーザー定義のリージョン" #: templates/backends/s3.html:34 msgid "Custom region value ({{region}})" -msgstr "" +msgstr "ユーザー定義のリージョンの値({{region}})" #: templates/backends/openstack.html:10 templates/backends/s3.html:12 msgid "Custom server url ({{server}})" -msgstr "" +msgstr "ユーザー定義のサーバーURL ({{server}})" #: templates/backends/s3.html:50 msgid "" "Custom storage class\n" " ({{class}})" msgstr "" +"ユーザー定義の保存領域のクラス\n" +" ({{class}})" #: templates/backends/gcs.html:29 msgid "Custom storage class ({{class}})" -msgstr "" +msgstr "ユーザー定義の保存領域のクラス({{class}})" #: templates/home.html:39 msgid "Database …" -msgstr "" +msgstr "データベース…" #: scripts/services/AppUtils.js:91 templates/addoredit.html:351 msgid "Days" @@ -676,15 +688,15 @@ msgstr "初期設定" #: templates/settings.html:86 msgid "Default ({{channelname}})" -msgstr "" +msgstr "既定({{channelname}})" #: scripts/services/AppUtils.js:185 msgid "Default excludes" -msgstr "" +msgstr "既定で除外するアイテム" #: templates/settings.html:149 msgid "Default options" -msgstr "" +msgstr "既定のオプション" #: templates/localdatabase.html:19 msgid "Delete" @@ -700,7 +712,7 @@ msgstr "バックアップを削除" #: templates/addoredit.html:322 msgid "Delete backups that are older than" -msgstr "古いものからバックアップを削除" +msgstr "古いバックアップから削除" #: templates/delete.html:13 msgid "Delete local database" @@ -716,11 +728,11 @@ msgstr "ローカルデータベースを削除" #: templates/delete.html:41 msgid "Delete {{filecount}} files ({{filesize}}) from the remote storage?" -msgstr "" +msgstr "{{filecount}}個のファイル({{filesize}})をリモートの保存領域から削除しますか?" #: templates/home.html:33 msgid "Delete …" -msgstr "" +msgstr "削除..." #: templates/backup-result/top-right-box.html:19 msgid "Deleted" @@ -736,19 +748,19 @@ msgstr "削除されたファイル" #: scripts/services/ServerStatus.js:62 msgid "Deleting remote files …" -msgstr "" +msgstr "リモートファイルを削除しています…" #: scripts/services/ServerStatus.js:40 msgid "Deleting unwanted files …" -msgstr "" +msgstr "不要なファイルを削除しています…" #: templates/addoredit.html:43 msgid "Description (optional)" -msgstr "概要 (任意)" +msgstr "概要(任意)" #: templates/home.html:17 msgid "Description:" -msgstr "概要:" +msgstr "概要:" #: scripts/services/AppUtils.js:60 msgid "Desktop" @@ -760,7 +772,7 @@ msgstr "バックアップ先" #: templates/backends/sharepoint.html:2 msgid "Destination path" -msgstr "" +msgstr "バックアップ先のパス" #: templates/restore.html:151 msgid "" @@ -768,10 +780,11 @@ msgid "" "with a donation. We suggest {{smallamount}} for private use and " "{{largeamount}} for commercial use." msgstr "" +"お役に立てましたか?もしそうお思いなら、Duplicatiに寄付を行うことをお考えください。個人用途では{{smallamount}}、企業用途では{{largeamount}}をお願いしています。" #: templates/restorewizard.html:9 msgid "Direct restore from backup files ..." -msgstr "" +msgstr "バックアップファイルから直接復元..." #: templates/log.html:32 msgid "Disabled" @@ -779,11 +792,11 @@ msgstr "無効" #: templates/notificationarea.html:10 templates/notificationarea.html:27 msgid "Dismiss" -msgstr "非表示" +msgstr "表示しない" #: templates/notificationarea.html:41 msgid "Dismiss all" -msgstr "すべて非表示" +msgstr "すべて表示しない" #: templates/settings.html:68 msgid "Display and color theme" @@ -791,11 +804,11 @@ msgstr "テーマカラー" #: scripts/controllers/DeleteController.js:77 msgid "Do you really want to delete the backup: \"{{name}}\" ?" -msgstr "" +msgstr "バックアップ \"{{name}}\" を削除してよろしいですか?" #: scripts/controllers/LocalDatabaseController.js:28 msgid "Do you really want to delete the local database for: {{name}}" -msgstr "" +msgstr "{{name}} のデータベースを削除してよろしいですか?" #: templates/backends/openstack.html:26 msgid "Domain Name" @@ -807,15 +820,15 @@ msgstr "寄付" #: templates/settings.html:76 templates/settings.html:78 msgid "Donation messages" -msgstr "寄付メッセージ" +msgstr "寄付についてのメッセージ" #: templates/settings.html:80 msgid "Donation messages are hidden, click to show" -msgstr "寄付メッセージが非表示です。クリックで表示" +msgstr "寄付についてのメッセージが表示されていません。クリックで表示" #: templates/settings.html:79 msgid "Donation messages are visible, click to hide" -msgstr "寄付メッセージが表示されています。クリックで非表示" +msgstr "寄付についてのメッセージが表示されています。クリックで非表示" #: templates/export.html:53 msgid "Done" @@ -831,27 +844,27 @@ msgstr "ダウンロード済みファイル" #: scripts/services/ServerStatus.js:53 msgid "Downloading files …" -msgstr "" +msgstr "ファイルをダウンロードしています…" #: templates/notificationarea.html:24 msgid "Downloading update…" -msgstr "" +msgstr "アップデートをダウンロードしています…" #: templates/notificationarea.html:30 msgid "Downloading …" -msgstr "" +msgstr "ダウンロードしています…" #: scripts/services/AppUtils.js:301 msgid "Duplicate option {{opt}}" -msgstr "" +msgstr "複製に関するオプション {{opt}}" #: index.html:275 msgid "Duplicati Website" -msgstr "Duplicati ウェブサイト" +msgstr "DuplicatiのWebサイト" #: index.html:266 msgid "Duplicati forum" -msgstr "Duplicati フォーラム" +msgstr "Duplicatiのフォーラム" #: templates/settings.html:53 msgid "" @@ -859,6 +872,7 @@ msgid "" "duration. Duplicati will occupy minimal system resources and no backups will" " be run." msgstr "" +"Duplicatiは起動と同時に実行しますが、ここで指定した時間が経過するまで一時停止の状態を維持します。Duplicatiは最低限のシステムの処理能力しか使用せず、その間バックアップは実行されません。" #: templates/backup-result/phases/compact.html:16 #: templates/backup-result/phases/delete.html:16 @@ -868,7 +882,7 @@ msgstr "" #: templates/backup-result/phases/test.html:16 #: templates/backup-result/top-left-box.html:11 msgid "Duration" -msgstr "" +msgstr "経過" #: templates/delete.html:15 msgid "" @@ -876,6 +890,9 @@ msgid "" " When deleting a backup, you can also delete the local database without affecting the ability to restore the remote files.\n" " If you are using the local database for backups from the commandline, you should keep the database." msgstr "" +"それぞれのバックアップには、ローカルのコンピューターに保存されるデータベースがあります。\n" +"バックアップを削除する際、リモートファイルの復元に影響を与えずにローカルのデータベースを削除することもできます。\n" +"コマンドラインからバックアップ用のローカルのデータベースを使用している場合は、データベースを削除しないでください。" #: templates/localdatabase.html:8 msgid "" @@ -884,11 +901,12 @@ msgid "" "faster to perform many operations, and reduces the amount of data that needs" " to be downloaded for each operation." msgstr "" +"それぞれのバックアップには、ローカルのコンピューターに保存されるデータベースがあります。\\nこのデータベースには、リモートバックアップに関する情報が保存されており、操作の速度を改善したり、その都度の操作でダウンロードするデータ量を減らしたりする効果があります。" #: templates/addoredit.html:174 templates/addoredit.html:387 #: templates/edituri.html:39 templates/settings.html:153 msgid "Edit as list" -msgstr "" +msgstr "一覧で編集" #: templates/addoredit.html:177 templates/addoredit.html:390 #: templates/edituri.html:42 templates/settings.html:159 @@ -897,28 +915,28 @@ msgstr "テキストで編集" #: templates/home.html:31 msgid "Edit …" -msgstr "" +msgstr "編集..." #: templates/export.html:22 msgid "Encrypt file" -msgstr "暗号化ファイル" +msgstr "ファイルを暗号化" #: templates/addoredit.html:47 templates/restore.html:22 #: templates/restoredirect.html:22 templates/restoredirect.html:58 msgid "Encryption" -msgstr "暗号化方式" +msgstr "暗号化の方式" #: scripts/controllers/EditBackupController.js:402 msgid "Encryption changed" -msgstr "暗号化方式が変更されました" +msgstr "暗号化の方式が変更されました" #: templates/about.html:69 msgid "Encryption modules:" -msgstr "暗号化モジュール" +msgstr "暗号化のモジュール:" #: templates/backends/tardigrade.html:25 msgid "Encryption passphrase" -msgstr "" +msgstr "暗号化用のパスフレーズ" #: templates/backup-result/phases/compact.html:12 #: templates/backup-result/phases/delete.html:12 @@ -933,7 +951,7 @@ msgstr "終了" #: scripts/controllers/EditBackupController.js:95 #: scripts/controllers/RestoreDirectController.js:24 msgid "Enter URL" -msgstr "URLを入力" +msgstr "URLを入力してください" #: templates/addoredit.html:339 msgid "" @@ -943,58 +961,59 @@ msgid "" "the next 4 weeks, and one for each of the next 36 months. This can also be " "written as 1W:1D,1M:1W,3Y:1M." msgstr "" +"バックアップの保持期間の方針を手動で設定できます。使用できる文字にはD、W、Y、Uがあり、それぞれ日、週、年、無制限(Unlimited)を指します。構文の形式は「7D:1D,4W:1W,36M:1M」となります。この例では、今後7日間にわたり毎日1個ずつ、今後4週間にわたり毎週1個ずつ、今後36か月にわたり毎月1個ずつバックアップが作成、保存されます。これはまた「1W:1D,1M:1W,3Y:1M」と表記することもできます。" #: templates/backends/azure.html:12 msgid "Enter access key" -msgstr "アクセスキーを入力" +msgstr "アクセスキーを入力してください" #: templates/backends/azure.html:8 msgid "Enter account name" -msgstr "アカウント名を入力" +msgstr "アカウント名を入力してください" #: templates/restoredirect.html:61 msgid "Enter backup passphrase, if any" -msgstr "パスフレーズがある場合は入力してください" +msgstr "バックアップのパスフレーズがある場合は入力してください" #: templates/addwizard.html:10 msgid "Enter configuration details" -msgstr "" +msgstr "設定の詳細を入力してください" #: templates/backends/azure.html:3 msgid "Enter container name" -msgstr "コンテナ名を入力" +msgstr "コンテナ名を入力してください" #: templates/export.html:26 templates/import.html:15 msgid "Enter encryption passphrase" -msgstr "パスフレーズを入力" +msgstr "暗号化用のパスフレーズを入力してください" #: templates/addoredit.html:196 msgid "Enter expression here" -msgstr "ここに式を入力してください" +msgstr "式をここに入力してください" #: templates/backends/jottacloud.html:3 templates/backends/mega.html:3 msgid "Enter folder path name" -msgstr "フォルダパスを入力" +msgstr "フォルダーのパスを入力してください" #: scripts/services/AppUtils.js:122 msgid "Enter one option per line in command-line format, eg. {0}" -msgstr "" +msgstr "コマンドラインの形式で1行に1つのオプションを入力してください。例:{0}" #: templates/backends/file.html:7 templates/backends/generic.html:14 #: templates/backends/msgroup.html:8 templates/backends/oauth.html:3 #: templates/restore.html:90 msgid "Enter the destination path" -msgstr "" +msgstr "バックアップ先のパスを入力してください" #: templates/backends/msgroup.html:3 msgid "Enter the email address of the Office 365 group" -msgstr "" +msgstr "Office 365グループのメールアドレスを入力してください" #: templates/backends/sharepoint.html:3 msgid "" "Enter the full destination path, including the server name, but without " "https" -msgstr "" +msgstr "サーバーの名称を含めて、バックアップ先の完全なパスを入力してください。ただし、httpsは付けないでください" #: scripts/controllers/CommandlineController.js:170 #: scripts/controllers/CommandlineController.js:74 @@ -1023,7 +1042,7 @@ msgstr "エラー" #: scripts/services/ServerStatus.js:67 msgid "Error!" -msgstr "エラー!" +msgstr "エラー!" #: templates/settings.html:128 msgid "Errors and crashes" @@ -1031,7 +1050,7 @@ msgstr "エラーとクラッシュ" #: templates/backup-result/top-right-box.html:3 msgid "Examined" -msgstr "" +msgstr "検査済" #: templates/addoredit.html:214 msgid "Exclude" @@ -1059,7 +1078,7 @@ msgstr "次の文字を含むファイルを除外" #: scripts/services/AppUtils.js:164 msgid "Exclude filter group" -msgstr "グループで除外する" +msgstr "グループで除外" #: scripts/services/AppUtils.js:137 msgid "Exclude folder" @@ -1067,7 +1086,7 @@ msgstr "除外するディレクトリ名" #: scripts/services/AppUtils.js:154 msgid "Exclude regular expression" -msgstr "正規表現で除外する" +msgstr "正規表現で除外" #: scripts/controllers/LocalDatabaseController.js:72 msgid "Existing file found" @@ -1083,7 +1102,7 @@ msgstr "エクスポート" #: templates/export.html:2 msgid "Export backup configuration" -msgstr "バックアップ設定をエクスポート" +msgstr "バックアップの設定をエクスポート" #: templates/delete.html:31 templates/delete.html:34 msgid "Export configuration" @@ -1095,11 +1114,11 @@ msgstr "パスワードをエクスポート" #: templates/home.html:32 msgid "Export …" -msgstr "" +msgstr "エクスポート…" #: templates/export.html:39 msgid "Exporting …" -msgstr "" +msgstr "エクスポートしています…" #: templates/externallink.html:1 msgid "External link" @@ -1111,13 +1130,13 @@ msgstr "FTP (代替)" #: scripts/controllers/RestoreController.js:383 msgid "Failed to build temporary database: {{message}}" -msgstr "" +msgstr "一時的なデータベースを構築できませんでした:{{message}}" #: scripts/directives/backupEditUri.js:143 #: scripts/directives/backupEditUri.js:205 #: scripts/directives/backupEditUri.js:239 msgid "Failed to connect:" -msgstr "接続に失敗:" +msgstr "接続できませんでした:" #: scripts/controllers/CommandlineController.js:170 #: scripts/controllers/CommandlineController.js:74 @@ -1130,41 +1149,41 @@ msgstr "接続に失敗:" #: scripts/controllers/RestoreDirectController.js:74 #: scripts/services/LogService.js:31 msgid "Failed to connect: {{message}}" -msgstr "接続に失敗: {{message}}" +msgstr "接続できませんでした:{{message}}" #: scripts/controllers/LocalDatabaseController.js:38 msgid "Failed to delete:" -msgstr "削除に失敗:" +msgstr "削除できませんでした:" #: scripts/controllers/RestoreController.js:118 #: scripts/controllers/RestoreController.js:148 msgid "Failed to fetch path information: {{message}}" -msgstr "" +msgstr "パスの情報を取得できませんでした:{{message}}" #: scripts/directives/notificationArea.js:45 msgid "Failed to find backup:" -msgstr "" +msgstr "バックアップが見つかりませんでした:" #: scripts/directives/backupEditUri.js:170 msgid "Failed to import:" -msgstr "インポートに失敗:" +msgstr "インポートできませんでした:" #: scripts/controllers/EditBackupController.js:697 msgid "Failed to read backup defaults:" -msgstr "" +msgstr "バックアップの既定の設定を読み込めませんでした:" #: scripts/controllers/RestoreController.js:416 msgid "Failed to restore files: {{message}}" -msgstr "" +msgstr "ファイルを復元できませんでした:{{message}}" #: scripts/controllers/SystemSettingsController.js:116 msgid "Failed to save:" -msgstr "保存に失敗しました:" +msgstr "保存できませんでした:" #: scripts/controllers/RestoreController.js:124 #: scripts/controllers/RestoreController.js:163 msgid "Fetching path information …" -msgstr "" +msgstr "パスの情報を取得しています…" #: scripts/services/AppUtils.js:74 msgid "File" @@ -1172,7 +1191,7 @@ msgstr "ファイル" #: templates/addoredit.html:237 msgid "Files larger than:" -msgstr "閾値より大きなファイル:" +msgstr "閾値より大きなファイル:" #: templates/addoredit.html:163 msgid "Filters" @@ -1180,7 +1199,7 @@ msgstr "フィルター" #: templates/commandline.html:60 msgid "Finished!" -msgstr "完了!" +msgstr "完了しました!" #: scripts/controllers/AppController.js:172 msgid "First run setup" @@ -1188,7 +1207,7 @@ msgstr "初回実行セットアップ" #: scripts/services/AppUtils.js:51 msgid "Folder" -msgstr "フォルダ" +msgstr "フォルダー" #: templates/backends/b2.html:7 templates/backends/file.html:22 #: templates/backends/file.html:6 templates/backends/jottacloud.html:2 @@ -1196,7 +1215,7 @@ msgstr "フォルダ" #: templates/backends/sia.html:6 templates/backends/tardigrade.html:37 #: templates/restore.html:105 templates/restore.html:89 msgid "Folder path" -msgstr "フォルダパス" +msgstr "フォルダーのパス" #: scripts/services/AppUtils.js:108 msgid "Fri" @@ -1204,15 +1223,15 @@ msgstr "金曜日" #: scripts/services/AppUtils.js:84 msgid "GByte" -msgstr "GByte" +msgstr "ギガバイト" #: scripts/services/AppUtils.js:117 msgid "GByte/s" -msgstr "GByte/s" +msgstr "ギガバイト秒" #: templates/backends/gcs.html:38 msgid "GCS Project ID" -msgstr "GCS プロジェクト ID" +msgstr "GCS プロジェクトID" #: templates/about.html:4 templates/addoredit.html:24 #: templates/backuplog.html:6 @@ -1221,7 +1240,7 @@ msgstr "一般" #: templates/addoredit.html:36 msgid "General backup settings" -msgstr "バックアップ設定" +msgstr "バックアップの設定" #: templates/addoredit.html:305 msgid "General options" @@ -1236,15 +1255,17 @@ msgid "" "Generate IAM\n" " access policy" msgstr "" +"IAMアクセスポリシー\n" +" を生成" #: scripts/controllers/RestoreController.js:70 msgid "Getting file versions …" -msgstr "" +msgstr "ファイルのバージョンを取得しています…" #: scripts/services/EditUriBuiltins.js:843 #: scripts/services/EditUriBuiltins.js:854 templates/backends/msgroup.html:2 msgid "Group email" -msgstr "" +msgstr "グループの電子メール" #: scripts/controllers/EditBackupController.js:19 msgid "Hidden files" @@ -1256,11 +1277,11 @@ msgstr "隠す" #: templates/backends/file.html:15 templates/restore.html:98 msgid "Hide hidden folders" -msgstr "隠しフォルダ" +msgstr "隠しフォルダーを表示しない" #: index.html:219 scripts/services/AppUtils.js:62 msgid "Home" -msgstr "Home" +msgstr "ホーム" #: templates/settings.html:21 msgid "Hostnames" @@ -1273,7 +1294,7 @@ msgstr "時間" #: templates/restore.html:111 msgid "How do you want to handle existing files?" -msgstr "" +msgstr "既存のファイルはどのように扱いますか?" #: scripts/services/AppUtils.js:64 msgid "Hyper-V Machine" @@ -1281,7 +1302,7 @@ msgstr "Hyper-V マシン" #: scripts/directives/sourceFolderPicker.js:438 msgid "Hyper-V Machine:" -msgstr "Hyper-V マシン:" +msgstr "Hyper-V マシン:" #: scripts/directives/sourceFolderPicker.js:417 #: scripts/services/AppUtils.js:66 @@ -1291,17 +1312,17 @@ msgstr "Hyper-V マシン" #: scripts/directives/sourceFolderPicker.js:56 #: scripts/directives/sourceFolderPicker.js:62 msgid "ID:" -msgstr "ID:" +msgstr "ID:" #: templates/addoredit.html:261 msgid "If a date was missed, the job will run as soon as possible." -msgstr "" +msgstr "予定の日時を逃してしまった場合、ジョブは即座に実行します。" #: templates/addoredit.html:359 msgid "" "If at least one newer backup is found, all backups older than this date are " "deleted." -msgstr "" +msgstr "最低1つ以上のより新しいバックアップが存在する場合、この日付よりも古い全てのバックアップを削除します。" #: templates/localdatabase.html:13 msgid "" @@ -1309,6 +1330,7 @@ msgid "" "that you perform a repair operation to synchronize the database.\\nIf the " "repair is unsuccesful, you can delete the local database and re-generate." msgstr "" +"バックアップとリモートの保存領域が同期していない場合、データベースを修復して同期させる必要があります。\\n修復が上手く行かない場合は、ローカルのデータベースを削除して、改めてこれを作成してください。" #: templates/export.html:49 msgid "" @@ -1316,6 +1338,8 @@ msgid "" "href=\"{{DownloadURL}}\" target=\"_blank\">right click and choose "Save" " as …"" msgstr "" +"バックアップのファイルが自動的にダウンロードされなかった場合は、 "名前を付けて保存"を右クリックして選択してください。" #: templates/notificationarea.html:7 msgid "" @@ -1323,28 +1347,34 @@ msgid "" "href=\"{{item.DownloadLink}}\" target=\"_blank\">right click and choose " ""Save as …"" msgstr "" +"バックアップのファイルが自動的にダウンロードされなかった場合は、 "名前を付けて保存"を右クリックして選択してください。" #: scripts/services/EditUriBackendConfig.js:106 msgid "" "If you do not enter a path, all files will be stored in the login folder.\n" "Are you sure this is what you want?" msgstr "" +"パスを入力しない場合、全てのファイルはログインフォルダーに保存されます。\n" +"続行してよろしいですか?" #: templates/backends/openstack.html:40 msgid "If you do not enter an API Key, the tenant name is required" -msgstr "" +msgstr "APIを入力しない場合、テナント名が必要です" #: templates/delete.html:32 msgid "" "If you want to use the backup later, you can export the configuration before" " deleting it" -msgstr "" +msgstr "後にバックアップを使用したい場合は、削除する前に設定をエクスポートできます" #: scripts/controllers/AppController.js:173 msgid "" "If your machine is in a multi-user environment (i.e. the machine has more than one account), you need to set a password to prevent other users from accessing data on your account.\n" "Do you want to set a password now?" msgstr "" +"もしコンピューターを複数のユーザーで使用している場合(2つ以上のアカウントがある場合)、他のユーザーがあなたのアカウントにアクセスできないよう、パスワードを設定する必要があります。\n" +"パスワードを設定しますか?" #: templates/import.html:31 msgid "Import" @@ -1352,19 +1382,19 @@ msgstr "インポート" #: templates/addoredit.html:100 templates/restoredirect.html:39 msgid "Import Destination URL" -msgstr "コピー先URLをインポート" +msgstr "バックアップ先のURLをインポート" #: templates/import.html:3 msgid "Import backup configuration" -msgstr "バックアップ設定をインポート" +msgstr "バックアップの設定をインポート" #: scripts/directives/backupEditUri.js:159 msgid "Import completed, but no certificates were found after the import" -msgstr "" +msgstr "インポートが完了しましたが、証明書が見つかりませんでした" #: scripts/directives/backupEditUri.js:159 msgid "Import failed" -msgstr "インポート失敗" +msgstr "インポートできませんでした" #: templates/addwizard.html:15 msgid "Import from a file" @@ -1376,7 +1406,7 @@ msgstr "メタデータをインポート" #: templates/import.html:35 msgid "Importing …" -msgstr "" +msgstr "インポートしています…" #: scripts/controllers/EditBackupController.js:163 msgid "Include a file?" @@ -1392,12 +1422,12 @@ msgstr "次の正規表現を含む" #: templates/captcha.html:11 msgid "Incorrect answer, try again" -msgstr "" +msgstr "答えが正しくありません。もう一度試してください" #: templates/settings.html:110 msgid "" "Individual builds for developers only. Not for use with important data." -msgstr "" +msgstr "開発者用の個別のビルドです。重要なデータのバックアップには使用しないでください。" #: scripts/services/DialogService.js:27 msgid "Information" @@ -1409,7 +1439,7 @@ msgstr "インストール" #: scripts/controllers/UpdateChangelogController.js:14 msgid "Install failed:" -msgstr "インストール失敗:" +msgstr "インストールできませんでした:" #: scripts/services/EditUriBuiltins.js:1058 msgid "Invalid characters in path" @@ -1419,35 +1449,35 @@ msgstr "無効な文字がパスに含まれています" #: scripts/controllers/EditBackupController.js:295 #: scripts/controllers/EditBackupController.js:305 msgid "Invalid retention time" -msgstr "無効な保持期間" +msgstr "無効な保持期間が設定されています" #: scripts/services/EditUriBuiltins.js:801 msgid "" "It is possible to connect to some FTP without a password.\n" "Are you sure your FTP server supports password-less logins?" msgstr "" -"パスワードなしで FTP 接続できる必要があります。\n" -"この FTP サーバーはパスワード無しのログインをサポートしていますか?" +"FTPサーバーの中にはパスワードを入力せずに接続できるものがあります。\n" +"このFTPサーバーは、パスワード無しのログインをサポートしていますか?" #: scripts/services/AppUtils.js:82 msgid "KByte" -msgstr "KByte" +msgstr "キロバイト" #: scripts/services/AppUtils.js:115 msgid "KByte/s" -msgstr "KByte/s" +msgstr "キロバイト秒" #: templates/addoredit.html:323 msgid "Keep a specific number of backups" -msgstr "指定した数のバックアップを残す" +msgstr "指定した数のバックアップを保存" #: templates/addoredit.html:321 msgid "Keep all backups" -msgstr "全てのバックアップを残す" +msgstr "全てのバックアップを保存" #: templates/backends/openstack.html:18 msgid "Keystone API version" -msgstr "Keystone API version" +msgstr "Keystone APIのバージョン" #: templates/settings.html:58 msgid "Language in user interface" @@ -1459,7 +1489,7 @@ msgstr "先月" #: templates/home.html:53 msgid "Last successful backup:" -msgstr "最後に成功したバックアップ:" +msgstr "最後に成功したバックアップ:" #: templates/restorewizard.html:27 msgid "Last successful restore: {{time}} (took {{duration || '0 seconds'}})" @@ -1471,44 +1501,44 @@ msgstr "最新" #: templates/about.html:6 msgid "Libraries" -msgstr "ライブラリ" +msgstr "ライブラリー" #: scripts/controllers/RestoreDirectController.js:64 msgid "Listing backup dates …" -msgstr "" +msgstr "バックアップの日付を一覧表示しています…" #: scripts/services/ServerStatus.js:63 msgid "Listing remote files for purge …" -msgstr "" +msgstr "削除するリモートファイルの一覧を作成しています…" #: scripts/services/ServerStatus.js:61 msgid "Listing remote files …" -msgstr "" +msgstr "リモートファイルの一覧を作成しています…" #: templates/log.html:7 msgid "Live" -msgstr "" +msgstr "ライブ" #: templates/addwizard.html:16 msgid "Load a configuration from an exported job or a storage provider" -msgstr "" +msgstr "エクスポートしたジョブまたはストレージ提供者から設定を読み込む" #: templates/restorewizard.html:16 msgid "Load destination from an exported job or a storage provider" -msgstr "" +msgstr "エクスポートしたジョブまたはストレージ提供者から、バックアップ先を読み込む" #: templates/backuplog.html:26 templates/backuplog.html:44 #: templates/log.html:24 msgid "Load older data" -msgstr "" +msgstr "さらに古いデータを読み込む" #: templates/captcha.html:14 msgid "Loading ..." -msgstr "読み込み中 ..." +msgstr "読み込んでいます…" #: templates/delete.html:40 msgid "Loading remote storage usage ..." -msgstr "リモートストレージの使用量を読み込み中 ..." +msgstr "リモートストレージの使用量を読み込んでいます…" #: templates/about.html:45 templates/about.html:50 templates/about.html:56 #: templates/backuplog.html:12 templates/backuplog.html:25 @@ -1516,23 +1546,23 @@ msgstr "リモートストレージの使用量を読み込み中 ..." #: templates/log.html:12 templates/log.html:23 #: templates/updatechangelog.html:7 msgid "Loading …" -msgstr "" +msgstr "読み込んでいます…" #: scripts/services/EditUriBuiltins.js:1075 msgid "Local Repository" -msgstr "" +msgstr "ローカルのリポジトリー" #: templates/localdatabase.html:2 msgid "Local database for" -msgstr "" +msgstr "のデータベース" #: templates/localdatabase.html:26 msgid "Local database path:" -msgstr "" +msgstr "ローカルのデータベースのパス:" #: templates/backends/rclone.html:2 msgid "Local repository" -msgstr "" +msgstr "ローカルのリポジトリー" #: scripts/services/SystemInfo.js:81 msgid "Local storage" @@ -1544,15 +1574,15 @@ msgstr "場所" #: templates/backends/gcs.html:21 msgid "Location where buckets are created" -msgstr "" +msgstr "バケットを作成する場所" #: templates/backuplog.html:3 msgid "Log data for {{Backup.Backup.Name}}" -msgstr "" +msgstr "{{Backup.Backup.Name}}のログデータ" #: templates/log.html:3 msgid "Log data from the server" -msgstr "" +msgstr "サーバー上のログデータ" #: index.html:237 msgid "Log out" @@ -1560,11 +1590,11 @@ msgstr "ログアウト" #: scripts/services/AppUtils.js:83 msgid "MByte" -msgstr "MByte" +msgstr "メガバイト" #: scripts/services/AppUtils.js:116 msgid "MByte/s" -msgstr "MByte/s" +msgstr "メガバイト秒" #: templates/localdatabase.html:11 msgid "Maintenance" @@ -1572,7 +1602,7 @@ msgstr "メンテナンス" #: templates/backends/file.html:19 templates/restore.html:102 msgid "Manually type path" -msgstr "" +msgstr "手動でパスを入力" #: templates/throttle.html:15 msgid "Max download speed" @@ -1590,19 +1620,19 @@ msgstr "メニュー" #: scripts/directives/sourceFolderPicker.js:471 msgid "Microsoft SQL Database:" -msgstr "" +msgstr "Microsoft SQLデータベース:" #: scripts/directives/sourceFolderPicker.js:449 msgid "Microsoft SQL Databases" -msgstr "" +msgstr "Microsoft SQLデータベース" #: templates/backends/sia.html:14 msgid "Minimum redundancy" -msgstr "" +msgstr "最小の冗長性" #: scripts/services/EditUriBuiltins.js:1062 msgid "Minimum redundancy is 1.0" -msgstr "" +msgstr "最小の冗長性は1.0です" #: scripts/services/AppUtils.js:89 scripts/services/AppUtils.js:99 #: templates/settings.html:50 @@ -1619,7 +1649,7 @@ msgstr "パスフレーズがありません" #: scripts/controllers/EditBackupController.js:259 msgid "Missing sources" -msgstr "" +msgstr "バックアップ元のファイルがありません" #: templates/backup-result/top-right-box.html:15 msgid "Modified" @@ -1631,15 +1661,15 @@ msgstr "月曜日" #: scripts/services/AppUtils.js:93 templates/addoredit.html:353 msgid "Months" -msgstr "" +msgstr "月" #: templates/localdatabase.html:34 msgid "Move existing database" -msgstr "" +msgstr "既存のデータベースを移動" #: scripts/controllers/LocalDatabaseController.js:66 msgid "Move failed:" -msgstr "" +msgstr "移動できませんでした:" #: scripts/services/AppUtils.js:54 msgid "My Documents" @@ -1651,7 +1681,7 @@ msgstr "マイミュージック" #: templates/addoredit.html:40 msgid "My Photos" -msgstr "マイピフォト" +msgstr "マイフォト" #: scripts/services/AppUtils.js:58 msgid "My Pictures" @@ -1663,17 +1693,19 @@ msgstr "名前" #: templates/home.html:60 msgid "Never" -msgstr "" +msgstr "未実行" #: templates/notificationarea.html:22 msgid "New update found: {{message}}" -msgstr "" +msgstr "新しいアップデートが見つかりました:{{message}}" #: scripts/services/EditUriBuiltins.js:133 msgid "" "New user name is {{user}}.\n" "Updated credentials to use the new limited user" msgstr "" +"新しいユーザー名は{{user}}です。\n" +"新規の制限ユーザーを使用するためのログイン情報を更新しました" #: templates/addoredit.html:113 templates/addoredit.html:246 #: templates/addoredit.html:296 templates/addoredit.html:82 @@ -1684,19 +1716,19 @@ msgstr "次へ" #: templates/home.html:64 msgid "Next scheduled run:" -msgstr "次の実行予定" +msgstr "次の実行予定日時:" #: index.html:194 msgid "Next scheduled task:" -msgstr "" +msgstr "次に予定されているタスク:" #: index.html:191 msgid "Next task:" -msgstr "" +msgstr "次のタスク:" #: templates/addoredit.html:264 msgid "Next time" -msgstr "" +msgstr "次回" #: scripts/controllers/DeleteController.js:77 #: scripts/controllers/EditBackupController.js:153 @@ -1715,7 +1747,7 @@ msgstr "" #: scripts/services/EditUriBuiltins.js:956 #: scripts/services/EditUriBuiltins.js:972 msgid "No" -msgstr "" +msgstr "いいえ" #: scripts/directives/backupEditUri.js:210 msgid "" @@ -1726,7 +1758,7 @@ msgstr "" #: templates/edituri.html:12 msgid "No editor found for the "{{backend}}" storage type" -msgstr "" +msgstr ""{{backend}}" の保存領域の種類に関するエディターが見つかりませんでした" #: scripts/controllers/EditBackupController.js:429 templates/addoredit.html:49 msgid "No encryption" @@ -1738,7 +1770,7 @@ msgstr "アイテムが選択されていません" #: scripts/controllers/RestoreController.js:196 msgid "No items to restore, please select one or more items" -msgstr "" +msgstr "復元するアイテムがありません。1つ以上のアイテムを選択してください" #: scripts/controllers/ExportController.js:57 msgid "No passphrase entered" @@ -1746,27 +1778,27 @@ msgstr "パスフレーズが入力されていません" #: index.html:196 msgid "No scheduled tasks" -msgstr "" +msgstr "予定されているタスクはありません" #: scripts/controllers/AppController.js:174 msgid "No, my machine has only a single account" -msgstr "" +msgstr "いいえ、私のコンピューターには1つのアカウントしかありません" #: scripts/controllers/EditBackupController.js:252 msgid "Non-matching passphrase" -msgstr "" +msgstr "パスフレーズが一致しません" #: templates/settings.html:130 msgid "None / disabled" -msgstr "" +msgstr "なし / 無効" #: scripts/controllers/ExportController.js:13 msgid "Not using encryption" -msgstr "暗号化していません" +msgstr "暗号化を行っていません" #: templates/addoredit.html:328 msgid "Nothing will be deleted. The backup size will grow with each change." -msgstr "" +msgstr "バックアップは削除されません。バックアップのサイズはその都度の変更に従って大きくなります。" #: scripts/controllers/AppController.js:44 #: scripts/controllers/AppController.js:59 @@ -1779,21 +1811,21 @@ msgstr "" #: scripts/services/EditUriBuiltins.js:133 templates/restore.html:156 #: templates/settings.html:165 msgid "OK" -msgstr "" +msgstr "OK" #: templates/addoredit.html:346 msgid "" "Once there are more backups than the specified number, the oldest backups " "are deleted." -msgstr "" +msgstr "指定した数以上のバックアップが作成された場合、古いバックアップから削除されます。" #: templates/backends/openstack.html:7 msgid "OpenStack AuthURI" -msgstr "" +msgstr "OpenStack AuthURI" #: scripts/services/SystemInfo.js:50 msgid "OpenStack Object Storage / Swift" -msgstr "" +msgstr "OpenStack オブジェクトストレージ / Swift" #: templates/backup-result/top-right-box.html:7 msgid "Opened" @@ -1801,51 +1833,51 @@ msgstr "" #: scripts/services/EditUriBuiltins.js:920 msgid "Openstack API Key are not supported in v3 keystone API." -msgstr "" +msgstr "Openstack APIキーはバージョン3のkeystone APIではサポートされていません。" #: scripts/services/AppUtils.js:195 msgid "Operating System" -msgstr "" +msgstr "オペレーティングシステム" #: templates/backuplog.html:16 msgid "Operation" -msgstr "" +msgstr "操作" #: scripts/controllers/SystemSettingsController.js:127 #: scripts/controllers/SystemSettingsController.js:138 msgid "Operation failed:" -msgstr "" +msgstr "操作に失敗しました:" #: templates/home.html:23 msgid "Operations:" -msgstr "" +msgstr "操作:" #: templates/backends/file.html:34 msgid "Optional authentication password" -msgstr "" +msgstr "認証に必要なパスワード(オプション)" #: templates/backends/file.html:30 msgid "Optional authentication username" -msgstr "" +msgstr "認証に必要なユーザー名(オプション)" #: templates/addoredit.html:28 templates/edituri.html:51 #: templates/settings.html:152 templates/settings.html:158 msgid "Options" -msgstr "" +msgstr "オプション" #: templates/settings.html:150 msgid "" "Options added here are applied to all backups, but can be overridden in each" " individual backup" -msgstr "" +msgstr "ここで追加したオプションは全てのバックアップに適用されますが、それぞれのバックアップの設定で上書きすることができます。" #: templates/restore.html:81 msgid "Original location" -msgstr "" +msgstr "元の場所" #: scripts/services/SystemInfo.js:84 msgid "Others" -msgstr "" +msgstr "その他" #: templates/addoredit.html:332 msgid "" @@ -1853,10 +1885,11 @@ msgid "" "backup for each of the last 7 days, each of the last 4 weeks, each of the " "last 12 months. There will always be at least one remaining backup." msgstr "" +"バックアップは時間の経過につれて自動的に削除されます。7日ごと、4週ごと、12ヶ月ごとのバックアップはそれぞれ保持されます。最低でも1つはバックアップが残ります。" #: templates/restore.html:114 msgid "Overwrite" -msgstr "" +msgstr "上書き" #: templates/addoredit.html:58 templates/export.html:25 #: templates/restore.html:130 templates/restoredirect.html:60 @@ -1865,19 +1898,19 @@ msgstr "パスフレーズ" #: templates/import.html:14 msgid "Passphrase (if encrypted)" -msgstr "" +msgstr "パスフレーズ(暗号化されている場合)" #: scripts/controllers/EditBackupController.js:393 msgid "Passphrase changed" -msgstr "" +msgstr "パスフレーズを変更しました" #: scripts/controllers/EditBackupController.js:252 msgid "Passphrases are not matching" -msgstr "" +msgstr "パスフレーズが一致しません" #: scripts/controllers/EditBackupController.js:29 msgid "Passphrases do not match" -msgstr "" +msgstr "パスフレーズが一致しません" #: scripts/services/EditUriBuiltins.js:1036 #: scripts/services/EditUriBuiltins.js:1046 templates/backends/file.html:33 @@ -1890,7 +1923,7 @@ msgstr "パスワード" #: scripts/services/ServerStatus.js:52 msgid "Patching files with local blocks …" -msgstr "" +msgstr "ファイルをローカルのブロックで修復しています…" #: scripts/services/EditUriBuiltins.js:1020 msgid "Path" @@ -1907,7 +1940,7 @@ msgstr "サーバー上のパス" #: templates/backends/b2.html:8 templates/backends/s3.html:63 msgid "Path or subfolder in the bucket" -msgstr "" +msgstr "パスまたはバケットのサブフォルダー" #: templates/settings.html:35 msgid "Pause" @@ -1915,23 +1948,23 @@ msgstr "一時停止" #: templates/settings.html:33 msgid "Pause after startup or hibernation" -msgstr "" +msgstr "起動時またはハイバネート時に一時停止" #: scripts/controllers/AppController.js:42 msgid "Pause options" -msgstr "一時停止設定" +msgstr "一時停止の設定" #: templates/restore.html:123 msgid "Permissions" -msgstr "" +msgstr "権限" #: templates/restore.html:85 msgid "Pick location" -msgstr "" +msgstr "場所を入力" #: templates/restorewizard.html:10 msgid "Point to your backup files and restore from there" -msgstr "" +msgstr "バックアップファイルを指定し、そこから復元" #: templates/backends/generic.html:9 msgid "Port" @@ -1939,25 +1972,25 @@ msgstr "ポート" #: templates/settings.html:28 msgid "Prevent tray icon automatic log-in" -msgstr "" +msgstr "トレイアイコンの自動ログインを行わない" #: templates/addoredit.html:114 templates/addoredit.html:247 #: templates/addoredit.html:297 templates/addoredit.html:409 #: templates/restoredirect.html:81 msgid "Previous" -msgstr "" +msgstr "前へ" #: templates/home.html:80 msgid "Progress:" -msgstr "進行度:" +msgstr "進行度:" #: templates/backends/gcs.html:39 msgid "ProjectID is optional if the bucket exist" -msgstr "" +msgstr "バケットが存在する場合、ProjectIDはオプションです" #: scripts/services/SystemInfo.js:83 msgid "Proprietary" -msgstr "" +msgstr "サービス" #: templates/backup-result/phases/purge.html:3 msgid "Purge Phase" @@ -1965,19 +1998,19 @@ msgstr "" #: scripts/services/ServerStatus.js:66 msgid "Purging files complete!" -msgstr "" +msgstr "ファイルを削除しました!" #: scripts/services/ServerStatus.js:64 msgid "Purging files …" -msgstr "" +msgstr "ファイルを削除しています…" #: scripts/services/ServerStatus.js:46 msgid "Rebuilding local database …" -msgstr "" +msgstr "ローカルデータベースを再構築しています…" #: templates/localdatabase.html:20 msgid "Recreate (delete and repair)" -msgstr "" +msgstr "改めて作成(削除して修復)" #: templates/backup-result/phases/recreate-database.html:3 msgid "Recreate Database Phase" @@ -1985,15 +2018,15 @@ msgstr "" #: scripts/services/ServerStatus.js:56 msgid "Recreating database …" -msgstr "" +msgstr "データベースを改めて作成しています…" #: scripts/controllers/RestoreDirectController.js:40 msgid "Registering temporary backup …" -msgstr "" +msgstr "一時的なバックアップを登録しています…" #: scripts/controllers/EditBackupController.js:138 msgid "Relative paths not allowed" -msgstr "" +msgstr "相対パスは許可されていません" #: templates/captcha.html:7 msgid "Reload" @@ -2005,23 +2038,23 @@ msgstr "リモート" #: scripts/services/EditUriBuiltins.js:1076 msgid "Remote Path" -msgstr "リモートパス" +msgstr "リモートのパス" #: scripts/services/EditUriBuiltins.js:1074 msgid "Remote Repository" -msgstr "リモートリポジトリ" +msgstr "リモートのリポジトリー" #: templates/backends/rclone.html:10 msgid "Remote path" -msgstr "リモートパス" +msgstr "リモートのパス" #: templates/backends/rclone.html:6 msgid "Remote repository" -msgstr "リモートリポジトリ" +msgstr "リモートのリポジトリー" #: templates/addoredit.html:307 msgid "Remote volume size" -msgstr "" +msgstr "リモートのボリュームのサイズ" #: templates/addoredit.html:203 msgid "Remove" @@ -2029,15 +2062,15 @@ msgstr "削除" #: templates/advancedoptionseditor.html:40 msgid "Remove option" -msgstr "削除設定" +msgstr "削除の設定" #: templates/backup-result/phases/purge.html:23 msgid "Removed files" -msgstr "削除されたファイル" +msgstr "削除したファイル" #: templates/localdatabase.html:18 templates/notificationarea.html:14 msgid "Repair" -msgstr "" +msgstr "修復" #: templates/backup-result/phases/repair.html:3 msgid "Repair Phase" @@ -2045,117 +2078,117 @@ msgstr "" #: scripts/services/ServerStatus.js:58 msgid "Repairing database …" -msgstr "" +msgstr "データベースを修復しています…" #: templates/addoredit.html:62 msgid "Repeat Passphrase" -msgstr "" +msgstr "パスフレーズ(再度)" #: templates/home.html:45 msgid "Reporting:" -msgstr "" +msgstr "報告:" #: templates/localdatabase.html:31 msgid "Reset" -msgstr "" +msgstr "リセット" #: index.html:225 templates/restore.html:142 msgid "Restore" -msgstr "" +msgstr "復元" #: scripts/services/ServerStatus.js:55 msgid "Restore complete!" -msgstr "" +msgstr "復元しました!" #: templates/restore.html:45 msgid "Restore files" -msgstr "" +msgstr "ファイルの復元" #: templates/restore.html:46 msgid "Restore files from {{backupname}}" -msgstr "" +msgstr "{{backupname}}から復元" #: templates/home.html:26 msgid "Restore files …" -msgstr "" +msgstr "ファイルを復元…" #: templates/restore.html:48 msgid "Restore from" -msgstr "" +msgstr "データを復元するバックアップ" #: templates/import.html:4 msgid "Restore from backup configuration" -msgstr "" +msgstr "バックアップの設定から復元" #: templates/restorewizard.html:15 msgid "Restore from configuration ..." -msgstr "" +msgstr "設定から復元..." #: templates/restore.html:24 templates/restore.html:39 #: templates/restore.html:76 templates/restoredirect.html:24 msgid "Restore options" -msgstr "" +msgstr "復元オプション" #: templates/restore.html:126 msgid "Restore read/write permissions" -msgstr "" +msgstr "読み込み/書き込み権限を復元" #: templates/backup-result/restore-items.html:2 msgid "Restored Files" -msgstr "" +msgstr "復元したファイル" #: templates/backup-result/restore-items.html:6 msgid "Restored Folders" -msgstr "" +msgstr "復元したフォルダー" #: templates/backup-result/restore-items.html:10 msgid "Restored Symlinks" -msgstr "" +msgstr "復元したシンボリックリンク" #: scripts/controllers/RestoreController.js:376 #: scripts/controllers/RestoreController.js:398 msgid "Restoring files …" -msgstr "" +msgstr "ファイルを復元しています…" #: index.html:228 msgid "Resume" -msgstr "" +msgstr "再開" #: templates/backup-result/phases/purge.html:28 msgid "Rewritten File Lists" -msgstr "" +msgstr "ファイルの一覧を書き換えました" #: templates/addoredit.html:269 msgid "Run again every" -msgstr "" +msgstr "実行タイミング" #: templates/home.html:25 templates/home.html:60 msgid "Run now" -msgstr "" +msgstr "すぐに実行" #: templates/commandline.html:58 msgid "Running ...." -msgstr "" +msgstr "実行しています…" #: templates/commandline.html:47 msgid "Running commandline entry" -msgstr "" +msgstr "コマンドラインのエントリーを実行しています" #: index.html:183 msgid "Running task:" -msgstr "" +msgstr "タスクを実行しています:" #: scripts/controllers/StateController.js:25 msgid "Running …" -msgstr "" +msgstr "実行しています…" #: scripts/services/SystemInfo.js:51 msgid "S3 Compatible" -msgstr "" +msgstr "S3互換" #: templates/settings.html:87 msgid "Same as the base install version: {{channelname}}" -msgstr "" +msgstr "基本インストールのバージョンと同じです:{{channelname}}" #: scripts/services/AppUtils.js:109 msgid "Sat" @@ -2163,86 +2196,86 @@ msgstr "土曜日" #: templates/backends/tardigrade.html:10 msgid "Satellite" -msgstr "" +msgstr "サテライト" #: templates/addoredit.html:408 templates/localdatabase.html:32 msgid "Save" -msgstr "" +msgstr "保存" #: templates/localdatabase.html:33 msgid "Save and repair" -msgstr "" +msgstr "保存して修復" #: templates/restore.html:118 msgid "Save different versions with timestamp in file name" -msgstr "" +msgstr "ファイル名にタイムスタンプを入れて、異なるバージョンとして保存" #: templates/import.html:24 msgid "Save immediately" -msgstr "" +msgstr "即座に保存" #: scripts/services/ServerStatus.js:50 msgid "Scanning existing files …" -msgstr "" +msgstr "ファイルをスキャンしています…" #: scripts/services/ServerStatus.js:51 msgid "Scanning for local blocks …" -msgstr "" +msgstr "ローカルのブロックをスキャンしています…" #: templates/addoredit.html:255 templates/addoredit.html:27 msgid "Schedule" -msgstr "" +msgstr "スケジュール" #: templates/restore.html:60 msgid "Search" -msgstr "" +msgstr "検索" #: templates/restore.html:56 msgid "Search for files" -msgstr "" +msgstr "ファイルの検索" #: scripts/services/AppUtils.js:98 templates/settings.html:49 msgid "Seconds" -msgstr "" +msgstr "秒" #: templates/log.html:30 msgid "Select a log level and see messages as they happen:" -msgstr "" +msgstr "ログの水準を選択すると、メッセージを出力順に表示します。" #: templates/restore.html:23 templates/restore.html:38 #: templates/restoredirect.html:23 msgid "Select files" -msgstr "" +msgstr "ファイルの選択" #: scripts/services/EditUriBuiltins.js:1054 templates/backends/s3.html:8 #: templates/backends/sia.html:2 msgid "Server" -msgstr "" +msgstr "サーバー" #: templates/backends/generic.html:7 msgid "Server and port" -msgstr "" +msgstr "サーバーとポート" #: templates/backends/generic.html:8 msgid "Server hostname or IP" -msgstr "" +msgstr "サーバーのホスト名またはIPアドレス" #: templates/commandline.html:49 templates/restoredirect.html:95 #: templates/waitarea.html:15 msgid "Server is currently paused," -msgstr "" +msgstr "サーバーは現在停止中です。" #: scripts/controllers/HomeController.js:7 msgid "Server is currently paused, do you want to resume now?" -msgstr "" +msgstr "サーバーは現在停止中です。再開しますか?" #: templates/backends/sia.html:10 msgid "Server password" -msgstr "" +msgstr "サーバーのパスワード" #: scripts/controllers/HomeController.js:7 msgid "Server paused" -msgstr "" +msgstr "サーバーを一時停止しました" #: templates/about.html:72 msgid "Server state properties" @@ -2250,29 +2283,29 @@ msgstr "" #: index.html:231 templates/settings.html:2 msgid "Settings" -msgstr "" +msgstr "設定" #: templates/addoredit.html:69 templates/notificationarea.html:12 #: templates/notificationarea.html:32 msgid "Show" -msgstr "" +msgstr "表示" #: templates/addoredit.html:132 msgid "Show advanced editor" -msgstr "" +msgstr "拡張エディターを表示" #: templates/addoredit.html:143 templates/backends/file.html:16 #: templates/restore.html:99 msgid "Show hidden folders" -msgstr "" +msgstr "隠しフォルダーを表示" #: templates/about.html:8 msgid "Show log" -msgstr "" +msgstr "ログを表示" #: templates/home.html:47 msgid "Show log …" -msgstr "" +msgstr "ログを表示..." #: templates/addoredit.html:135 msgid "Show treeview" @@ -2280,50 +2313,50 @@ msgstr "" #: templates/backends/sia.html:11 msgid "Sia server password" -msgstr "" +msgstr "Siaサーバーのパスワード" #: templates/addoredit.html:324 msgid "Smart backup retention" -msgstr "" +msgstr "スマートなバックアップ保持期間" #: templates/backends/openstack.html:45 msgid "" "Some OpenStack providers allow an API key instead of a password and tenant " "name" -msgstr "" +msgstr "OpenStackのサービス提供者の中には、パスワードとテナント名の代わりにAPIキーを許可するものもあります" #: templates/backends/s3.html:83 msgid "" "Some S3 providers might only be compatible with a certain client library" -msgstr "" +msgstr "いくつかのS3プロバイダーは特定のクライアントライブラリーにしか対応していないおそれがあります" #: templates/addoredit.html:26 msgid "Source Data" -msgstr "" +msgstr "バックアップ元" #: templates/backup-result/top-right-box.html:1 msgid "Source Files" -msgstr "" +msgstr "バックアップ元のファイル" #: scripts/directives/sourceFolderPicker.js:387 templates/addoredit.html:124 msgid "Source data" -msgstr "" +msgstr "バックアップ元" #: templates/addoredit.html:149 msgid "Source folders" -msgstr "" +msgstr "バックアップ元のフォルダー" #: templates/home.html:69 msgid "Source:" -msgstr "" +msgstr "バックアップ元:" #: templates/settings.html:105 msgid "Specific builds for developers only. Not for use with important data." -msgstr "" +msgstr "開発者用の特定のビルドです。重要なデータのパックアップには使用しないでください。" #: scripts/services/SystemInfo.js:82 msgid "Standard protocols" -msgstr "" +msgstr "標準プロトコル" #: templates/backup-result/phases/compact.html:8 #: templates/backup-result/phases/delete.html:8 @@ -2333,74 +2366,74 @@ msgstr "" #: templates/backup-result/phases/test.html:8 #: templates/backup-result/top-left-box.html:3 msgid "Start" -msgstr "" +msgstr "開始" #: scripts/services/ServerStatus.js:33 msgid "Starting backup …" -msgstr "" +msgstr "バックアップを開始しています…" #: scripts/services/ServerStatus.js:45 msgid "Starting restore …" -msgstr "" +msgstr "復元を開始しています…" #: scripts/controllers/RestoreController.js:372 #: scripts/controllers/RestoreController.js:396 msgid "Starting the restore process …" -msgstr "" +msgstr "復元プロセスを開始しています…" #: scripts/controllers/StateController.js:106 msgid "Stop after current file" -msgstr "" +msgstr "現在のファイルの後で停止" #: scripts/controllers/StateController.js:115 msgid "Stop after the current file" -msgstr "" +msgstr "現在のファイルの後で停止" #: scripts/controllers/StateController.js:106 #: scripts/controllers/StateController.js:115 msgid "Stop now" -msgstr "" +msgstr "すぐに停止" #: scripts/controllers/StateController.js:104 msgid "Stop running backup" -msgstr "" +msgstr "実行中のバックアップを停止" #: scripts/controllers/StateController.js:113 msgid "Stop running task" -msgstr "" +msgstr "実行中のタスクを停止" #: index.html:179 msgid "Stopping after the current file:" -msgstr "" +msgstr "現在のファイルの後で停止:" #: index.html:184 msgid "Stopping task:" -msgstr "" +msgstr "タスクを停止しています:" #: templates/edituri.html:3 msgid "Storage Type" -msgstr "" +msgstr "ストレージのタイプ" #: templates/backends/s3.html:45 msgid "Storage class" -msgstr "" +msgstr "ストレージのクラス" #: templates/backends/gcs.html:32 msgid "Storage class for creating a bucket" -msgstr "" +msgstr "バケットを作成する際のストレージのクラス" #: templates/log.html:6 msgid "Stored" -msgstr "" +msgstr "保存しました" #: scripts/controllers/EditBackupController.js:33 msgid "Strong" -msgstr "" +msgstr "強" #: scripts/directives/backupEditUri.js:51 #: scripts/directives/backupEditUri.js:54 msgid "Success" -msgstr "" +msgstr "成功" #: scripts/services/AppUtils.js:110 msgid "Sun" @@ -2408,35 +2441,35 @@ msgstr "日曜日" #: scripts/services/AppUtils.js:72 msgid "Symbolic link" -msgstr "" +msgstr "シンボリックリンク" #: scripts/services/AppUtils.js:192 msgid "System Files" -msgstr "" +msgstr "システムファイル" #: templates/settings.html:125 msgid "System default ({{levelname}})" -msgstr "" +msgstr "システムの既定値({{levelname}})" #: scripts/controllers/EditBackupController.js:20 msgid "System files" -msgstr "" +msgstr "システムファイル" #: templates/about.html:7 msgid "System info" -msgstr "" +msgstr "システムの情報" #: templates/about.html:64 msgid "System properties" -msgstr "" +msgstr "システムのプロパティー" #: scripts/services/AppUtils.js:85 msgid "TByte" -msgstr "" +msgstr "テラバイト" #: scripts/services/AppUtils.js:118 msgid "TByte/s" -msgstr "" +msgstr "テラバイト秒" #: templates/backends/sia.html:7 msgid "Target path, ie /backup" @@ -2444,19 +2477,19 @@ msgstr "" #: templates/waitarea.html:5 msgid "Task is running" -msgstr "" +msgstr "タスクは実行中です" #: scripts/services/AppUtils.js:201 msgid "Temporary Files" -msgstr "" +msgstr "一時ファイル" #: scripts/controllers/EditBackupController.js:21 msgid "Temporary files" -msgstr "" +msgstr "一時ファイル" #: templates/backends/openstack.html:39 msgid "Tenant Name" -msgstr "" +msgstr "テナント名" #: templates/backup-result/phases/test.html:3 msgid "Test Phase" @@ -2464,27 +2497,27 @@ msgstr "" #: templates/edituri.html:21 msgid "Test connection" -msgstr "" +msgstr "接続をテスト" #: scripts/directives/backupEditUri.js:44 msgid "Testing ..." -msgstr "" +msgstr "テストしています…" #: scripts/directives/backupEditUri.js:44 msgid "Testing connection ..." -msgstr "" +msgstr "接続をテストしています…" #: scripts/services/EditUriBuiltins.js:45 msgid "Testing permissions …" -msgstr "" +msgstr "権限をテストしています…" #: scripts/services/EditUriBuiltins.js:45 msgid "Testing permissions..." -msgstr "" +msgstr "権限をテストしています…" #: templates/edituri.html:22 msgid "Testing …" -msgstr "" +msgstr "テストしています…" #: scripts/services/EditUriBuiltins.js:1000 #: scripts/services/EditUriBuiltins.js:1016 @@ -2495,53 +2528,55 @@ msgstr "" #: templates/backends/tardigrade.html:22 msgid "The API key" -msgstr "" +msgstr "APIキー" #: scripts/directives/notificationArea.js:43 msgid "The backup is missing, has it been deleted?" -msgstr "" +msgstr "バックアップがありません。削除された模様です" #: scripts/directives/notificationArea.js:41 msgid "" "The backup was temporary and does not exist anymore, so the log data is lost" -msgstr "" +msgstr "バックアップは一時的で既に存在しないため、ログデータは削除されています" #: scripts/services/EditUriBuiltins.js:972 msgid "The bucket name should be all lower-case, convert automatically?" -msgstr "" +msgstr "バケット名には小文字のみが使用できます。自動的に変換しますか?" #: scripts/services/EditUriBuiltins.js:956 msgid "" "The bucket name should start with your username, prepend automatically?" -msgstr "" +msgstr "バケット名はユーザー名で開始する必要があります。自動的に追加しますか?" #: scripts/controllers/ExportController.js:13 msgid "" "The configuration should be kept safe. Are you sure you want to save an " "unencrypted file containing your passwords?" -msgstr "" +msgstr "設定ファイルは安全に保存すべきです。ファイルにはパスワードが含まれていますが、暗号化せずに保存してよろしいですか?" #: index.html:312 msgid "The connection to the server is lost, attempting again in {{time}} ..." -msgstr "" +msgstr "サーバーとの接続が失われました。{{time}}後に再試行します…" #: templates/settings.html:72 msgid "The dark theme (by Michal)" -msgstr "" +msgstr "ダークテーマ(by Michal)" #: templates/settings.html:71 msgid "The default blue on white theme (by Alex)" -msgstr "" +msgstr "既定の白地に青テーマ(by Alex)" #: templates/backends/tardigrade.html:26 msgid "The encryption passphrase" -msgstr "" +msgstr "暗号化用のパスフレーズ" #: scripts/directives/backupEditUri.js:131 msgid "" "The folder {{folder}} does not exist.\n" "Create it now?" msgstr "" +"フォルダー「{{folder}}」は存在しません。\n" +"作成しますか?" #: scripts/directives/backupEditUri.js:212 msgid "" @@ -2553,11 +2588,11 @@ msgstr "" #: scripts/controllers/ExportController.js:60 #: scripts/controllers/SystemSettingsController.js:90 msgid "The passwords do not match" -msgstr "" +msgstr "パスワードが一致しません" #: scripts/controllers/EditBackupController.js:153 msgid "The path does not appear to exist, do you want to add it anyway?" -msgstr "" +msgstr "パスは存在しないようですが、追加してよろしいですか?" #: scripts/controllers/EditBackupController.js:163 msgid "" @@ -2570,36 +2605,45 @@ msgstr "" msgid "" "The path must be an absolute path, i.e. it must start with a forward slash " "'/'" +msgstr "パスにはスラッシュから始まる絶対パスを指定してください" + +#: scripts/services/EditUriBuiltins.js:871 +msgid "" +"The path should start with \"{{prefix1}}\" or \"{{prefix2}}\", otherwise you will not be able to see the files in the HubiC web interface.\n" +"\n" +"Do you want to add the prefix to the path automatically?" msgstr "" #: templates/backends/s3.html:33 msgid "The region parameter is only applied when creating a new bucket" -msgstr "" +msgstr "リージョンパラメーターは、バケットを新たに作成する際にのみ適用されます" #: templates/backends/openstack.html:50 msgid "The region parameter is only used when creating a bucket" -msgstr "" +msgstr "リージョンパラメーターは、バケットを作成する際にのみ使用されます" #: scripts/directives/backupEditUri.js:87 msgid "" "The server certificate could not be validated.\n" "Do you want to approve the SSL certificate with the hash: {{hash}}?" msgstr "" +"サーバーの証明書を検証できませんでした。\n" +"次のハッシュ値をもつSSLの証明書を承認してよろしいですか:{{hash}}" #: templates/backends/s3.html:49 msgid "The storage class affects the availability and price for a stored file" -msgstr "" +msgstr "保存領域のクラスは、保存されているファイルの利用可能性と価格に影響します" #: scripts/controllers/RestoreDirectController.js:106 msgid "" "The target folder contains encrypted files, please supply the passphrase" -msgstr "" +msgstr "バックアップ先のフォルダーには暗号化されているファイルがあります。パスフレーズを指定してください" #: scripts/services/EditUriBuiltins.js:54 msgid "" "The user has too many permissions. Do you want to create a new limited user," " with only permissions to the selected path?" -msgstr "" +msgstr "ユーザーに付与されている権限が多すぎます。選択したパスに関する権限のみを有する制限ユーザーを新たに作成しますか?" #: scripts/controllers/RestoreController.js:309 msgid "" @@ -2608,10 +2652,11 @@ msgid "" "unexpected places. Are you sure you want to continue without choosing a " "destination folder?" msgstr "" +"このバックアップは別のオペレーティングシステムで作成されました。バックアップの復元先となるフォルダーを指定せずにファイルを復元すると、予期しない場所にファイルが復元される可能性があります。復元先のフォルダーを選択せず続行してよろしいですか?" #: scripts/controllers/RestoreController.js:37 msgid "This month" -msgstr "" +msgstr "当月" #: templates/addoredit.html:312 msgid "" @@ -2624,11 +2669,11 @@ msgstr "" #: scripts/controllers/RestoreController.js:36 msgid "This week" -msgstr "" +msgstr "この週" #: scripts/controllers/AppController.js:57 msgid "Throttle settings" -msgstr "" +msgstr "速度制限の設定" #: scripts/services/AppUtils.js:107 msgid "Thu" @@ -2637,21 +2682,21 @@ msgstr "木曜日" #: templates/backup-result/phases/delete.html:33 #: templates/backup-result/top-left-box.html:1 msgid "Time" -msgstr "" +msgstr "時間" #: templates/export.html:14 msgid "To File" -msgstr "" +msgstr "ファイルへ" #: scripts/controllers/DeleteController.js:66 msgid "" "To confirm you want to delete all remote files for \"{{name}}\", please " "enter the word you see below" -msgstr "" +msgstr "「{{name}}」の全てのリモートファイルを本当に削除したい場合は、表示されている語を以下に入力してください" #: scripts/controllers/ExportController.js:57 msgid "To export without a passphrase, uncheck the \"Encrypt file\" box" -msgstr "" +msgstr "パスフレーズなしでエクスポートするには、「ファイルを暗号化」のチェックを外してください" #: templates/settings.html:23 msgid "" @@ -2669,11 +2714,11 @@ msgstr "今日" #: scripts/directives/backupEditUri.js:214 msgid "Trust host certificate?" -msgstr "" +msgstr "ホストの証明書を信用しますか?" #: scripts/directives/backupEditUri.js:87 msgid "Trust server certificate?" -msgstr "" +msgstr "サーバーの証明書を信用しますか?" #: templates/settings.html:100 msgid "" @@ -2681,6 +2726,7 @@ msgid "" "version available. Test Restore data before using this in production " "environments." msgstr "" +"開発中の新機能を試してみてください。現在、最も安定したバージョンが利用できます。本番環境で使用する前に、データの復元のテストを行ってください。" #: scripts/services/AppUtils.js:105 msgid "Tue" @@ -2688,87 +2734,87 @@ msgstr "火曜日" #: templates/restore.html:138 msgid "Type passphrase here." -msgstr "" +msgstr "ここにパスフレーズを入力してください。" #: templates/restore.html:57 msgid "Type to highlight files" -msgstr "" +msgstr "見つけたいファイル名を入力してください" #: templates/restorewizard.html:25 msgid "Unknown backup size and versions" -msgstr "" +msgstr "バックアップのサイズとバージョンが不明です" #: templates/pause.html:46 msgid "Until resumed" -msgstr "" +msgstr "再開するまで" #: templates/settings.html:83 msgid "Update channel" -msgstr "" +msgstr "アップデートチャンネル" #: scripts/controllers/LocalDatabaseController.js:66 msgid "Update failed:" -msgstr "" +msgstr "アップデートできませんでした:" #: scripts/controllers/LocalDatabaseController.js:88 msgid "Updating with existing database" -msgstr "" +msgstr "既存のデータベースでアップデートしています" #: templates/backup-result/phases/compact.html:33 msgid "Uploaded files" -msgstr "" +msgstr "アップロードしたファイル" #: scripts/services/ServerStatus.js:42 msgid "Uploading verification file …" -msgstr "" +msgstr "検証用ファイルをアップロードしています…" #: templates/settings.html:132 msgid "" "Usage reports help us improve the user experience and evaluate impact of new" " features. We use them to generate {{'public usage statistics' | translate" -"}}" +"reporter.duplicati.com/'\">{{'public usage statistics' | " +"translate}}" msgstr "" #: templates/settings.html:120 msgid "Usage statistics" -msgstr "" +msgstr "使用状況に関する統計" #: templates/settings.html:126 msgid "Usage statistics, warnings, errors, and crashes" -msgstr "" +msgstr "使用状況に関する統計、警告、エラー、クラッシュ" #: templates/backends/generic.html:2 templates/backends/s3.html:2 msgid "Use SSL" -msgstr "" +msgstr "SSLを使用" #: scripts/controllers/EditBackupController.js:450 msgid "Use existing database?" -msgstr "" +msgstr "既存のデータベースを使用しますか?" #: scripts/controllers/EditBackupController.js:344 msgid "Use weak passphrase" -msgstr "" +msgstr "弱いパスフレーズを使用" #: scripts/controllers/EditBackupController.js:30 msgid "Useless" -msgstr "" +msgstr "弱すぎます" #: scripts/directives/sourceFolderPicker.js:374 msgid "User data" -msgstr "" +msgstr "ユーザーデータ" #: templates/backends/openstack.html:27 msgid "User domain name" -msgstr "" +msgstr "ユーザーのドメイン名" #: scripts/services/EditUriBuiltins.js:54 msgid "User has too many permissions" -msgstr "" +msgstr "ユーザーに付与されている権限が多すぎます" #: templates/settings.html:56 msgid "User interface settings" -msgstr "" +msgstr "インターフェースの設定" #: scripts/services/EditUriBuiltins.js:1035 #: scripts/services/EditUriBuiltins.js:1045 @@ -2778,112 +2824,112 @@ msgstr "" #: templates/backends/jottacloud.html:8 templates/backends/mega.html:7 #: templates/backends/mega.html:8 templates/backends/openstack.html:30 msgid "Username" -msgstr "" +msgstr "ユーザー名" #: scripts/services/ServerStatus.js:57 msgid "Vacuuming database …" -msgstr "" +msgstr "データベースのバキュームを行っています…" #: templates/addoredit.html:155 msgid "Validating …" -msgstr "" +msgstr "検証しています…" #: templates/backup-result/phases/test.html:20 #: templates/backup-result/test-items.html:2 msgid "Verifications" -msgstr "" +msgstr "検証" #: templates/home.html:40 msgid "Verify files" -msgstr "" +msgstr "ファイルを検証" #: scripts/services/CaptchaService.js:32 msgid "Verifying ..." -msgstr "" +msgstr "検証しています…" #: scripts/services/CaptchaService.js:32 msgid "Verifying answer" -msgstr "" +msgstr "回答を検証しています" #: scripts/services/ServerStatus.js:34 scripts/services/ServerStatus.js:43 msgid "Verifying backend data …" -msgstr "" +msgstr "バックエンドのデータを検証しています…" #: scripts/services/ServerStatus.js:59 msgid "Verifying files …" -msgstr "" +msgstr "ファイルを検証しています…" #: scripts/services/ServerStatus.js:35 scripts/services/ServerStatus.js:47 msgid "Verifying remote data …" -msgstr "" +msgstr "リモートデータを検証しています…" #: scripts/services/ServerStatus.js:54 msgid "Verifying restored files …" -msgstr "" +msgstr "復元したファイルを検証しています…" #: templates/notificationarea.html:31 msgid "Verifying …" -msgstr "" +msgstr "検証しています…" #: templates/backup-result/phases/delete.html:33 msgid "Version ID" -msgstr "" +msgstr "バージョンID" #: scripts/controllers/EditBackupController.js:34 msgid "Very strong" -msgstr "" +msgstr "最強" #: scripts/controllers/EditBackupController.js:31 msgid "Very weak" -msgstr "" +msgstr "最弱" #: index.html:263 msgid "Visit us on" -msgstr "" +msgstr "関連リンク" #: templates/delete.html:21 msgid "" "WARNING: The remote database is found to be in use by the commandline " "library" -msgstr "" +msgstr "警告:リモートのデータベースはコマンドラインのライブラリーによって使用されています" #: templates/delete.html:44 msgid "WARNING: This will prevent you from restoring the data in the future." -msgstr "" +msgstr "警告:これを行うと将来データを復元できなくなります。" #: templates/waitarea.html:2 msgid "Waiting for task to begin" -msgstr "" +msgstr "タスクが開始するのを待機しています" #: templates/commandline.html:54 msgid "Waiting for task to start ...." -msgstr "" +msgstr "タスクの開始を待機しています…" #: scripts/services/ServerStatus.js:39 msgid "Waiting for upload to finish …" -msgstr "" +msgstr "アップロードの完了を待機しています…" #: templates/settings.html:127 msgid "Warnings, errors and crashes" -msgstr "" +msgstr "警告、エラー、クラッシュ" #: templates/restore.html:152 msgid "" "We accept donations via different services, such as OpenCollective, PayPal, " "BountySource and various crypto currencies." -msgstr "" +msgstr "我々はOpenCollective、PayPal、 BountySourceやその他の暗号通貨で寄付をお受けしています。" #: templates/addoredit.html:54 msgid "We recommend that you encrypt all backups stored outside your system" -msgstr "" +msgstr "システム外に保存する全てのバックアップに関しては、暗号化を行うことを推奨します" #: scripts/controllers/EditBackupController.js:32 msgid "Weak" -msgstr "" +msgstr "弱" #: scripts/controllers/EditBackupController.js:344 msgid "Weak passphrase" -msgstr "" +msgstr "弱いパスフレーズ" #: scripts/services/AppUtils.js:106 msgid "Wed" @@ -2891,19 +2937,19 @@ msgstr "水曜日" #: scripts/services/AppUtils.js:92 templates/addoredit.html:352 msgid "Weeks" -msgstr "" +msgstr "週" #: templates/restorewizard.html:3 msgid "Where do you want to restore from?" -msgstr "" +msgstr "どこから復元しますか?" #: templates/restore.html:78 msgid "Where do you want to restore the files to?" -msgstr "" +msgstr "復元したファイルはどこに保存しますか?" #: scripts/services/AppUtils.js:94 templates/addoredit.html:354 msgid "Years" -msgstr "" +msgstr "年" #: scripts/controllers/AppController.js:174 #: scripts/controllers/DeleteController.js:77 @@ -2923,19 +2969,19 @@ msgstr "" #: scripts/services/EditUriBuiltins.js:956 #: scripts/services/EditUriBuiltins.js:972 msgid "Yes" -msgstr "" +msgstr "はい" #: scripts/controllers/EditBackupController.js:359 msgid "Yes, I have stored the passphrase safely" -msgstr "" +msgstr "はい、パスフレーズを安全な場所に保存しました" #: scripts/controllers/ExportController.js:13 msgid "Yes, I understand the risk" -msgstr "" +msgstr "はい、リスクを理解しました" #: scripts/controllers/EditBackupController.js:402 msgid "Yes, I'm brave!" -msgstr "" +msgstr "はい、問題ありません!" #: scripts/controllers/EditBackupController.js:393 msgid "Yes, please break my backup!" @@ -2949,174 +2995,174 @@ msgstr "昨日" msgid "" "You appear to be running Mono with no SSL certificates loaded.\n" "Do you want to import the list of trusted certificates from Mozilla?" -msgstr "" +msgstr "SSL証明書を読み込まずにMonoを実行しているようです。Mozillaから信頼済の証明書の一覧をインポートしますか?" #: scripts/controllers/LocalDatabaseController.js:88 msgid "" "You are changing the database path away from an existing database.\n" "Are you sure this is what you want?" -msgstr "" +msgstr "既存のデータベースからデータベースのパスを変更しようとしています。続行してよろしいですか?" #: templates/about.html:27 msgid "You are currently running {{appname}} {{version}}" -msgstr "" +msgstr "あなたは現在 {{appname}} {{version}}を使用しています" #: scripts/controllers/StateController.js:105 msgid "" "You can stop the backup after any file uploads currently in progress have " "finished." -msgstr "" +msgstr "現在実行中のファイルのアップロードが終了してからバックアップを停止することができます。" #: scripts/controllers/StateController.js:114 msgid "" "You can stop the task immediately, or allow the process to continue its " "current file and then stop." -msgstr "" +msgstr "タスクを即座に停止するか、あるいは、現在のファイルの処理を続行してから停止することができます。" #: scripts/controllers/EditBackupController.js:402 msgid "" "You have changed the encryption mode. This may break stuff. You are " "encouraged to create a new backup instead" -msgstr "" +msgstr "暗号化モードが変更されています。データが壊れる可能性があるため、新しいバックアップを代わりに作成することを推奨します" #: scripts/controllers/EditBackupController.js:393 msgid "" "You have changed the passphrase, which is not supported. You are encouraged " "to create a new backup instead." -msgstr "" +msgstr "パスフレーズが変更されましたが、これはサポートされていません。新しいバックアップを代わりに作成することを推奨します。" #: scripts/controllers/EditBackupController.js:429 msgid "" "You have chosen not to encrypt the backup. Encryption is recommended for all" " data stored on a remote server." -msgstr "" +msgstr "バックアップを暗号化しないように設定されていますが、リモートサーバーに保存する全てのデータに関しては、暗号化を行うことが推奨されます。" #: scripts/controllers/RestoreController.js:303 msgid "You have chosen to restore to a new location, but not entered one" -msgstr "" +msgstr "新しい場所に復元するよう選択しましたが、場所が入力されていません" #: scripts/controllers/EditBackupController.js:359 msgid "" "You have generated a strong passphrase. Make sure you have made a safe copy " "of the passphrase, as the data cannot be recovered if you lose the " "passphrase." -msgstr "" +msgstr "強力なパスフレーズを生成しました。パスフレーズの紛失時にもデータを復元できるよう、パスフレーズを安全な場所にコピーして保存してください。" #: scripts/controllers/EditBackupController.js:259 msgid "You must choose at least one source folder" -msgstr "" +msgstr "最低1つのバックアップ元のフォルダーを選択してください" #: scripts/services/EditUriBuiltins.js:914 msgid "You must enter a domain name to use v3 API" -msgstr "" +msgstr "バージョン3のAPIを使用するにはドメイン名を入力してください" #: scripts/controllers/EditBackupController.js:239 msgid "You must enter a name for the backup" -msgstr "" +msgstr "バックアップの名称を入力してください" #: scripts/controllers/EditBackupController.js:246 msgid "You must enter a passphrase or disable encryption" -msgstr "" +msgstr "パスフレーズを入力するか、暗号化を無効にしてください" #: scripts/services/EditUriBuiltins.js:911 msgid "You must enter a password to use v3 API" -msgstr "" +msgstr "バージョン3のAPIを使用するにはパスワードを入力してください" #: scripts/controllers/EditBackupController.js:295 msgid "You must enter a positive number of backups to keep" -msgstr "" +msgstr "保存するバックアップの数を入力してください" #: scripts/services/EditUriBuiltins.js:917 msgid "You must enter a tenant (aka project) name to use v3 API" -msgstr "" +msgstr "バージョン3のAPIを使用するにはテナント(プロジェクト)名を入力してください" #: scripts/services/EditUriBuiltins.js:931 msgid "You must enter a tenant name if you do not provide an API Key" -msgstr "" +msgstr "APIキーを指定しない場合はテナント名の入力が必要です" #: scripts/controllers/EditBackupController.js:288 msgid "You must enter a valid duration for the time to keep backups" -msgstr "" +msgstr "バックアップを保持する期間を正しく指定してください" #: scripts/controllers/EditBackupController.js:305 msgid "You must enter a valid retention policy string" -msgstr "" +msgstr "保持期間のポリシーを正しく入力してください" #: scripts/services/EditUriBuiltins.js:928 msgid "You must enter either a password or an API Key" -msgstr "" +msgstr "パスワードかAPIキーを入力してください" #: scripts/services/EditUriBuiltins.js:935 msgid "You must enter either a password or an API Key, not both" -msgstr "" +msgstr "パスワードまたはAPIキーのどちらかを入力してください" #: scripts/services/EditUriBackendConfig.js:115 msgid "You must fill in the password" -msgstr "" +msgstr "パスワードを入力してください" #: scripts/services/EditUriBackendConfig.js:92 msgid "You must fill in the server name or address" -msgstr "" +msgstr "サーバー名またはアドレスを入力してください" #: scripts/services/EditUriBackendConfig.js:113 #: scripts/services/EditUriBackendConfig.js:122 msgid "You must fill in the username" -msgstr "" +msgstr "ユーザー名を入力してください" #: scripts/services/EditUriBackendConfig.js:78 msgid "You must fill in {{field}}" -msgstr "" +msgstr "{{field}}を入力してください" #: scripts/services/EditUriBuiltins.js:907 msgid "You must select or fill in the AuthURI" -msgstr "" +msgstr "AuthURIを選択または入力してください" #: scripts/services/EditUriBuiltins.js:949 msgid "You must select or fill in the server" -msgstr "" +msgstr "サーバーを選択または入力してください" #: scripts/services/EditUriBackendConfig.js:99 msgid "You must specify a path" -msgstr "" +msgstr "パスを指定してください" #: scripts/services/EditUriBackendConfig.js:85 msgid "You should fill in {{field}}{{reason}}" -msgstr "" +msgstr "{{field}}を入力してください。理由:{{reason}}" #: templates/restore.html:149 msgid "Your files and folders have been restored successfully." -msgstr "" +msgstr "ファイルとフォルダーを復元しました。" #: scripts/controllers/EditBackupController.js:344 msgid "Your passphrase is easy to guess. Consider changing passphrase." -msgstr "" +msgstr "設定したパスフレーズは容易に推測できます。パスフレーズの変更を考慮してください。" #: templates/backends/gcs.html:3 templates/backends/openstack.html:3 msgid "bucket/folder/subfolder" -msgstr "" +msgstr "バケット/フォルダー/サブフォルダー" #: scripts/services/AppUtils.js:81 msgid "byte" -msgstr "" +msgstr "バイト" #: scripts/services/AppUtils.js:114 msgid "byte/s" -msgstr "" +msgstr "バイト秒" #: templates/addoredit.html:272 templates/addoredit.html:355 #: templates/advancedoptionseditor.html:28 #: templates/advancedoptionseditor.html:35 msgid "custom" -msgstr "" +msgstr "ユーザー定義" #: templates/settings.html:132 msgid "public usage statistics" -msgstr "" +msgstr "公開されている使用状況の統計" #: templates/commandline.html:49 templates/restoredirect.html:95 #: templates/waitarea.html:15 msgid "resume now" -msgstr "" +msgstr "再開" #: scripts/services/EditUriBuiltins.js:843 #: scripts/services/EditUriBuiltins.js:854 @@ -3130,33 +3176,37 @@ msgid "" "{{websitename}}. {{appname}} is licensed " "under the {{licensename}}." msgstr "" +"{{appname}}は最初に{{dev1}}と{{dev2}}によって開発されました。{{appname}}は{{websitename}}からダウンロードできます。{{appname}}は{{licensename}}によってライセンスされています。" #: scripts/controllers/StateController.js:51 msgid "{{files}} files ({{size}}) to go {{speed_txt}}" -msgstr "" +msgstr "残り{{files}} ファイル ({{size}}) {{speed_txt}}" #: templates/home.html:74 templates/restorewizard.html:23 msgid "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version" msgid_plural "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versions" -msgstr[0] "" +msgstr[0] "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} バージョン" #: templates/pause.html:26 msgid "{{number}} Hour" -msgstr "" +msgstr "{{number}}時間" #: templates/pause.html:31 templates/pause.html:36 templates/pause.html:41 msgid "{{number}} Hours" -msgstr "" +msgstr "{{number}}時間" #: templates/pause.html:11 templates/pause.html:16 templates/pause.html:21 #: templates/pause.html:6 msgid "{{number}} Minutes" -msgstr "" +msgstr "{{number}}分" #: templates/home.html:54 msgid "{{time}} (took {{duration}})" -msgstr "" +msgstr "{{time}}(完了までの時間 {{duration}})" #: templates/localdatabase.html:4 msgid "…loading…" -msgstr "" +msgstr "…読み込んでいます…" diff --git a/Localizations/webroot/localization_webroot.pot b/Localizations/webroot/localization_webroot.pot index 5c3c37d28..2d58ba9ed 100644 --- a/Localizations/webroot/localization_webroot.pot +++ b/Localizations/webroot/localization_webroot.pot @@ -4,7 +4,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Project-Id-Version: \n" -#: templates/advancedoptionseditor.html:48 +#: templates/backup-result/entryline.html:5 +msgid "(1 error{{item.Result.Interrupted? (', interrupted'|translate) : ''}})" +msgid_plural "({{$count}} errors{{item.Result.Interrupted? (', interrupted'|translate) : ''}})" +msgstr[0] "" +msgstr[1] "" + +#: templates/backup-result/entryline.html:10 +msgid "(1 warning{{item.Result.Interrupted? (', interrupted'|translate) : ''}})" +msgid_plural "({{$count}} warnings{{item.Result.Interrupted? (', interrupted'|translate) : ''}})" +msgstr[0] "" +msgstr[1] "" + +#: templates/backup-result/entryline.html:15 +msgid "(interrupted)" +msgstr "" + +#: templates/advancedoptionseditor.html:50 msgid "- pick an option -" msgstr "" @@ -16,28 +32,31 @@ msgstr "" msgid "API Key" msgstr "" +#: scripts/services/EditUriBuiltins.js:1250 +#: scripts/services/EditUriBuiltins.js:1284 +#: templates/backends/storj.html:21 #: templates/backends/tardigrade.html:21 msgid "API key" msgstr "" -#: scripts/services/EditUriBuiltins.js:945 +#: scripts/services/EditUriBuiltins.js:1124 #: templates/backends/s3.html:67 #: templates/backends/s3.html:69 msgid "AWS Access ID" msgstr "" -#: scripts/services/EditUriBuiltins.js:946 +#: scripts/services/EditUriBuiltins.js:1125 #: templates/backends/s3.html:72 #: templates/backends/s3.html:74 msgid "AWS Access Key" msgstr "" -#: scripts/services/EditUriBuiltins.js:150 +#: scripts/services/EditUriBuiltins.js:154 msgid "AWS IAM Policy" msgstr "" -#: index.html:234 -#: index.html:250 +#: index.html:230 +#: index.html:246 msgid "About" msgstr "" @@ -45,16 +64,25 @@ msgstr "" msgid "About {{appname}}" msgstr "" -#: scripts/services/EditUriBuiltins.js:894 +#: scripts/services/EditUriBuiltins.js:1073 #: templates/backends/azure.html:11 msgid "Access Key" msgstr "" +#: templates/backends/e2.html:2 +msgid "Access Key Id" +msgstr "" + +#: templates/backends/e2.html:6 +msgid "Access Key Secret" +msgstr "" + #: scripts/services/AppUtils.js:70 msgid "Access denied" msgstr "" -#: templates/backends/tardigrade.html:29 +#: templates/backends/storj.html:33 +#: templates/backends/tardigrade.html:33 msgid "Access grant" msgstr "" @@ -62,21 +90,11 @@ msgstr "" msgid "Access to user interface" msgstr "" -#: scripts/services/EditUriBuiltins.js:893 +#: scripts/services/EditUriBuiltins.js:1072 #: templates/backends/azure.html:7 msgid "Account name" msgstr "" -#: templates/notificationarea.html:29 -#: templates/updatechangelog.html:11 -msgid "Activate" -msgstr "" - -#: scripts/controllers/AboutController.js:54 -#: scripts/controllers/UpdateChangelogController.js:18 -msgid "Activate failed:" -msgstr "" - #: templates/addwizard.html:3 msgid "Add a new backup" msgstr "" @@ -85,11 +103,11 @@ msgstr "" msgid "Add a path directly" msgstr "" -#: templates/advancedoptionseditor.html:46 +#: templates/advancedoptionseditor.html:48 msgid "Add advanced option" msgstr "" -#: index.html:222 +#: index.html:218 msgid "Add backup" msgstr "" @@ -101,42 +119,42 @@ msgstr "" msgid "Add path" msgstr "" -#: templates/backup-result/top-right-box.html:11 +#: templates/backup-result/top-right-box.html:18 msgid "Added" msgstr "" -#: scripts/services/EditUriBuiltins.js:956 -#: scripts/services/EditUriBuiltins.js:972 +#: scripts/services/EditUriBuiltins.js:1135 +#: scripts/services/EditUriBuiltins.js:1151 msgid "Adjust bucket name?" msgstr "" -#: scripts/services/EditUriBuiltins.js:871 -msgid "Adjust path name?" -msgstr "" - #: templates/restoredirect.html:66 #: templates/restoredirect.html:74 msgid "Advanced Options" msgstr "" -#: templates/addoredit.html:376 +#: templates/addoredit.html:378 #: templates/edituri.html:28 msgid "Advanced options" msgstr "" -#: templates/home.html:37 +#: templates/home.html:35 msgid "Advanced:" msgstr "" -#: scripts/directives/sourceFolderPicker.js:423 +#: templates/backends/aliyunoss.html:4 +msgid "Aliyun OSS Endpoint" +msgstr "" + +#: scripts/directives/sourceFolderPicker.js:575 msgid "All Hyper-V Machines" msgstr "" -#: scripts/directives/sourceFolderPicker.js:455 +#: scripts/directives/sourceFolderPicker.js:607 msgid "All Microsoft SQL Databases" msgstr "" -#: templates/settings.html:134 +#: templates/settings.html:127 msgid "All usage reports are sent anonymously and do not contain any personal information. They contain information about hardware and operating system, the type of backend, backup duration, overall size of source data and similar data. They do not contain paths, filenames, usernames, passwords or similar sensitive information." msgstr "" @@ -158,7 +176,7 @@ msgid "" "Are you sure you want the database to point to an existing file?" msgstr "" -#: scripts/controllers/EditBackupController.js:450 +#: scripts/controllers/EditBackupController.js:451 msgid "" "An existing local database for the storage has been found.\n" "Re-using the database will allow the command-line and server instances to work on the same remote storage.\n" @@ -166,11 +184,11 @@ msgid "" " Do you wish to use the existing database?" msgstr "" -#: templates/settings.html:122 +#: templates/settings.html:115 msgid "Anonymous usage reports" msgstr "" -#: scripts/services/AppUtils.js:204 +#: scripts/services/AppUtils.js:206 msgid "Applications" msgstr "" @@ -178,9 +196,11 @@ msgstr "" msgid "As Command-line" msgstr "" -#: scripts/services/EditUriBuiltins.js:825 +#: scripts/services/EditUriBuiltins.js:1030 #: templates/backends/gcs.html:8 #: templates/backends/gcs.html:9 +#: templates/backends/jottacloud.html:8 +#: templates/backends/jottacloud.html:9 #: templates/backends/msgroup.html:13 #: templates/backends/msgroup.html:14 #: templates/backends/oauth.html:8 @@ -190,10 +210,14 @@ msgstr "" msgid "AuthID" msgstr "" +#: scripts/services/EditUriBuiltins.js:1241 +#: scripts/services/EditUriBuiltins.js:1275 +#: templates/backends/storj.html:2 #: templates/backends/tardigrade.html:2 msgid "Authentication method" msgstr "" +#: templates/backends/storj.html:5 #: templates/backends/tardigrade.html:5 msgid "Authentication method ({{auth_method}})" msgstr "" @@ -208,7 +232,7 @@ msgstr "" msgid "Authentication username" msgstr "" -#: scripts/controllers/EditBackupController.js:359 +#: scripts/controllers/EditBackupController.js:360 msgid "Autogenerated passphrase" msgstr "" @@ -224,7 +248,7 @@ msgstr "" msgid "B2 Application Key" msgstr "" -#: scripts/services/EditUriBuiltins.js:991 +#: scripts/services/EditUriBuiltins.js:1170 msgid "B2 Cloud Storage Account ID" msgstr "" @@ -232,7 +256,7 @@ msgstr "" msgid "B2 Cloud Storage Application ID" msgstr "" -#: scripts/services/EditUriBuiltins.js:992 +#: scripts/services/EditUriBuiltins.js:1171 #: templates/backends/b2.html:17 msgid "B2 Cloud Storage Application Key" msgstr "" @@ -242,7 +266,7 @@ msgstr "" msgid "Back" msgstr "" -#: templates/about.html:67 +#: templates/about.html:64 msgid "Backend modules:" msgstr "" @@ -268,15 +292,15 @@ msgstr "" msgid "Backup location" msgstr "" -#: templates/addoredit.html:319 +#: templates/addoredit.html:321 msgid "Backup retention" msgstr "" -#: templates/home.html:73 +#: templates/home.html:71 msgid "Backup:" msgstr "" -#: templates/settings.html:99 +#: templates/settings.html:92 msgid "Beta" msgstr "" @@ -293,14 +317,21 @@ msgstr "" msgid "Browser default" msgstr "" -#: templates/backends/tardigrade.html:33 +#: scripts/services/EditUriBuiltins.js:1246 +#: scripts/services/EditUriBuiltins.js:1252 +#: scripts/services/EditUriBuiltins.js:1280 +#: scripts/services/EditUriBuiltins.js:1286 +#: templates/backends/storj.html:37 +#: templates/backends/tardigrade.html:37 msgid "Bucket" msgstr "" -#: scripts/services/EditUriBuiltins.js:1004 -#: scripts/services/EditUriBuiltins.js:904 -#: scripts/services/EditUriBuiltins.js:944 -#: scripts/services/EditUriBuiltins.js:990 +#: scripts/services/EditUriBuiltins.js:1083 +#: scripts/services/EditUriBuiltins.js:1123 +#: scripts/services/EditUriBuiltins.js:1169 +#: scripts/services/EditUriBuiltins.js:1183 +#: scripts/services/EditUriBuiltins.js:1343 +#: scripts/services/EditUriBuiltins.js:1355 msgid "Bucket Name" msgstr "" @@ -308,12 +339,11 @@ msgstr "" msgid "Bucket create location" msgstr "" -#: templates/backends/s3.html:29 -msgid "Bucket create region" -msgstr "" - #: templates/backends/b2.html:2 #: templates/backends/b2.html:3 +#: templates/backends/cos.html:25 +#: templates/backends/e2.html:11 +#: templates/backends/e2.html:12 #: templates/backends/gcs.html:2 #: templates/backends/openstack.html:2 #: templates/backends/s3.html:22 @@ -321,15 +351,32 @@ msgstr "" msgid "Bucket name" msgstr "" +#: scripts/services/EditUriBuiltins.js:1264 +#: scripts/services/EditUriBuiltins.js:1298 +msgid "Bucket name can only be between 3 and 63 characters long and contain only lower-case characters, numbers, periods and dashes" +msgstr "" + +#: templates/backends/s3.html:29 +msgid "Bucket region" +msgstr "" + +#: templates/backends/cos.html:21 +msgid "Bucket region ap-guangzhou" +msgstr "" + #: templates/backends/gcs.html:26 msgid "Bucket storage class" msgstr "" +#: templates/backends/cos.html:26 +msgid "Bucket, format: BucketName-APPID" +msgstr "" + #: scripts/services/ServerStatus.js:48 msgid "Building list of files to restore …" msgstr "" -#: scripts/controllers/RestoreController.js:366 +#: scripts/controllers/RestoreController.js:375 msgid "Building partial temporary database …" msgstr "" @@ -345,46 +392,69 @@ msgstr "" msgid "By default, the tray icon will open the user interface with a token that unlocks the user interface. This ensures that you can access the user interface from the tray icon, while requiring others to enter a password. If you prefer having to type in the password, even when accessing the user interface from the tray icon, enable this option." msgstr "" -#: scripts/services/AppUtils.js:198 +#: templates/backends/cos.html:2 +msgid "COS App Id" +msgstr "" + +#: templates/backends/cos.html:32 +msgid "COS Path or subfolder in the bucket" +msgstr "" + +#: templates/backends/cos.html:8 +msgid "COS Secret Id" +msgstr "" + +#: templates/backends/cos.html:14 +msgid "COS Secret Key" +msgstr "" + +#: scripts/services/AppUtils.js:200 msgid "Cache Files" msgstr "" -#: templates/settings.html:109 +#: templates/settings.html:102 msgid "Canary" msgstr "" #: scripts/controllers/AppController.js:44 #: scripts/controllers/AppController.js:59 -#: scripts/controllers/EditBackupController.js:344 -#: scripts/controllers/EditBackupController.js:359 -#: scripts/controllers/EditBackupController.js:393 -#: scripts/controllers/EditBackupController.js:402 -#: scripts/controllers/EditBackupController.js:429 -#: scripts/controllers/EditBackupController.js:450 -#: scripts/controllers/EditBackupController.js:95 +#: scripts/controllers/EditBackupController.js:345 +#: scripts/controllers/EditBackupController.js:360 +#: scripts/controllers/EditBackupController.js:394 +#: scripts/controllers/EditBackupController.js:403 +#: scripts/controllers/EditBackupController.js:430 +#: scripts/controllers/EditBackupController.js:451 +#: scripts/controllers/EditBackupController.js:96 #: scripts/controllers/ExportController.js:13 #: scripts/controllers/LocalDatabaseController.js:72 #: scripts/controllers/LocalDatabaseController.js:88 #: scripts/controllers/RestoreDirectController.js:24 -#: scripts/controllers/StateController.js:106 -#: scripts/controllers/StateController.js:115 +#: scripts/controllers/StateController.js:108 +#: scripts/controllers/StateController.js:117 #: scripts/services/CaptchaService.js:22 #: scripts/services/DialogService.js:50 -#: scripts/services/EditUriBuiltins.js:54 -#: scripts/services/EditUriBuiltins.js:874 -#: scripts/services/EditUriBuiltins.js:956 -#: scripts/services/EditUriBuiltins.js:972 +#: scripts/services/EditUriBuiltins.js:1135 +#: scripts/services/EditUriBuiltins.js:1151 +#: scripts/services/EditUriBuiltins.js:58 #: templates/delete.html:54 #: templates/export.html:34 -#: templates/settings.html:164 +#: templates/settings.html:157 #: templates/waitarea.html:19 msgid "Cancel" msgstr "" +#: scripts/directives/sourceFolderPicker.js:409 +msgid "Cannot include \"{{text}}\"" +msgstr "" + #: scripts/controllers/LocalDatabaseController.js:103 msgid "Cannot move to existing file" msgstr "" +#: scripts/services/AppUtils.js:342 +msgid "Cannot specify filter include or excludes in extra options" +msgstr "" + #: templates/about.html:5 msgid "Changelog" msgstr "" @@ -393,11 +463,11 @@ msgstr "" msgid "Changelog for {{appname}} {{version}}" msgstr "" -#: scripts/controllers/UpdateChangelogController.js:24 +#: scripts/controllers/UpdateChangelogController.js:16 msgid "Check failed:" msgstr "" -#: templates/about.html:36 +#: templates/about.html:33 msgid "Check for updates now" msgstr "" @@ -405,7 +475,7 @@ msgstr "" msgid "Checking ..." msgstr "" -#: templates/about.html:37 +#: templates/about.html:34 msgid "Checking for updates …" msgstr "" @@ -414,14 +484,15 @@ msgid "Chose a storage type to get started" msgstr "" #: templates/backends/gcs.html:11 +#: templates/backends/jottacloud.html:11 #: templates/backends/msgroup.html:16 #: templates/backends/oauth.html:11 #: templates/backends/sharepoint.html:11 msgid "Click the AuthID link to create an AuthID" msgstr "" -#: index.html:159 -#: index.html:210 +#: index.html:155 +#: index.html:206 msgid "Click to set throttle options" msgstr "" @@ -429,7 +500,15 @@ msgstr "" msgid "Client library to use" msgstr "" -#: templates/home.html:42 +#: templates/backends/cos.html:10 +msgid "Cloud API Secret Id" +msgstr "" + +#: templates/backends/cos.html:16 +msgid "Cloud API Secret Key" +msgstr "" + +#: templates/home.html:40 msgid "Commandline …" msgstr "" @@ -437,7 +516,7 @@ msgstr "" msgid "Compact Phase" msgstr "" -#: templates/home.html:41 +#: templates/home.html:39 msgid "Compact now" msgstr "" @@ -449,7 +528,7 @@ msgstr "" msgid "Compacting remote data …" msgstr "" -#: templates/backup-result/box.html:34 +#: templates/backup-result/box.html:35 msgid "Complete log" msgstr "" @@ -461,11 +540,11 @@ msgstr "" msgid "Completing previous backup …" msgstr "" -#: templates/about.html:68 +#: templates/about.html:65 msgid "Compression modules:" msgstr "" -#: scripts/directives/sourceFolderPicker.js:381 +#: scripts/directives/sourceFolderPicker.js:533 msgid "Computer" msgstr "" @@ -473,7 +552,7 @@ msgstr "" msgid "Configuration file:" msgstr "" -#: templates/home.html:29 +#: templates/home.html:27 msgid "Configuration:" msgstr "" @@ -499,7 +578,7 @@ msgstr "" msgid "Confirm password" msgstr "" -#: scripts/services/EditUriBackendConfig.js:66 +#: scripts/services/EditUriBackendConfig.js:73 msgid "Confirmation required" msgstr "" @@ -507,11 +586,11 @@ msgstr "" msgid "Connect" msgstr "" -#: index.html:319 +#: index.html:308 msgid "Connect now" msgstr "" -#: index.html:315 +#: index.html:304 msgid "Connecting to server …" msgstr "" @@ -519,20 +598,20 @@ msgstr "" msgid "Connecting to task ...." msgstr "" -#: index.html:320 +#: index.html:309 msgid "Connecting..." msgstr "" -#: index.html:311 +#: index.html:300 msgid "Connection lost" msgstr "" -#: scripts/directives/backupEditUri.js:51 -#: scripts/directives/backupEditUri.js:54 +#: scripts/directives/backupEditUri.js:50 +#: scripts/directives/backupEditUri.js:53 msgid "Connection worked!" msgstr "" -#: scripts/services/EditUriBuiltins.js:895 +#: scripts/services/EditUriBuiltins.js:1074 #: templates/backends/azure.html:2 msgid "Container name" msgstr "" @@ -545,7 +624,7 @@ msgstr "" msgid "Continue" msgstr "" -#: scripts/controllers/EditBackupController.js:429 +#: scripts/controllers/EditBackupController.js:430 msgid "Continue without encryption" msgstr "" @@ -566,7 +645,11 @@ msgstr "" msgid "Copy failed. Please manually copy the URL" msgstr "" -#: scripts/services/AppUtils.js:639 +#: templates/backup-result/box.html:41 +msgid "Copy log" +msgstr "" + +#: scripts/services/AppUtils.js:724 msgid "Core options" msgstr "" @@ -574,19 +657,19 @@ msgstr "" msgid "Counting ({{files}} files found, {{size}})" msgstr "" -#: templates/settings.html:129 +#: templates/settings.html:122 msgid "Crashes only" msgstr "" -#: templates/home.html:48 +#: templates/home.html:46 msgid "Create bug report …" msgstr "" -#: scripts/directives/backupEditUri.js:131 +#: scripts/directives/backupEditUri.js:130 msgid "Create folder?" msgstr "" -#: scripts/services/EditUriBuiltins.js:133 +#: scripts/services/EditUriBuiltins.js:137 msgid "Created new limited user" msgstr "" @@ -594,7 +677,7 @@ msgstr "" msgid "Creating bug report …" msgstr "" -#: scripts/services/EditUriBuiltins.js:119 +#: scripts/services/EditUriBuiltins.js:123 msgid "Creating new user with limited access …" msgstr "" @@ -602,19 +685,19 @@ msgstr "" msgid "Creating target folders …" msgstr "" -#: scripts/controllers/RestoreController.js:361 +#: scripts/controllers/RestoreController.js:370 msgid "Creating temporary backup …" msgstr "" -#: scripts/services/EditUriBuiltins.js:119 +#: scripts/services/EditUriBuiltins.js:123 msgid "Creating user..." msgstr "" -#: templates/home.html:78 +#: templates/home.html:76 msgid "Current action:" msgstr "" -#: templates/home.html:88 +#: templates/home.html:86 msgid "Current file:" msgstr "" @@ -626,10 +709,14 @@ msgstr "" msgid "Custom S3 endpoint" msgstr "" +#: scripts/services/EditUriBuiltins.js:1256 +#: scripts/services/EditUriBuiltins.js:1290 +#: templates/backends/storj.html:18 #: templates/backends/tardigrade.html:18 msgid "Custom Satellite" msgstr "" +#: templates/backends/storj.html:13 #: templates/backends/tardigrade.html:13 msgid "Custom Satellite ({{satellite}})" msgstr "" @@ -638,7 +725,7 @@ msgstr "" msgid "Custom authentication url" msgstr "" -#: templates/addoredit.html:325 +#: templates/addoredit.html:327 msgid "Custom backup retention" msgstr "" @@ -669,12 +756,12 @@ msgstr "" msgid "Custom storage class ({{class}})" msgstr "" -#: templates/home.html:39 +#: templates/home.html:37 msgid "Database …" msgstr "" #: scripts/services/AppUtils.js:91 -#: templates/addoredit.html:351 +#: templates/addoredit.html:353 msgid "Days" msgstr "" @@ -682,15 +769,15 @@ msgstr "" msgid "Default" msgstr "" -#: templates/settings.html:86 +#: templates/settings.html:79 msgid "Default ({{channelname}})" msgstr "" -#: scripts/services/AppUtils.js:185 +#: scripts/services/AppUtils.js:187 msgid "Default excludes" msgstr "" -#: templates/settings.html:149 +#: templates/settings.html:142 msgid "Default options" msgstr "" @@ -707,7 +794,7 @@ msgstr "" msgid "Delete backup" msgstr "" -#: templates/addoredit.html:322 +#: templates/addoredit.html:324 msgid "Delete backups that are older than" msgstr "" @@ -728,11 +815,11 @@ msgstr "" msgid "Delete {{filecount}} files ({{filesize}}) from the remote storage?" msgstr "" -#: templates/home.html:33 +#: templates/home.html:31 msgid "Delete …" msgstr "" -#: templates/backup-result/top-right-box.html:19 +#: templates/backup-result/top-right-box.html:26 msgid "Deleted" msgstr "" @@ -772,10 +859,6 @@ msgstr "" msgid "Destination path" msgstr "" -#: templates/restore.html:151 -msgid "Did we help save your files? If so, please consider supporting Duplicati with a donation. We suggest {{smallamount}} for private use and {{largeamount}} for commercial use." -msgstr "" - #: templates/restorewizard.html:9 msgid "Direct restore from backup files ..." msgstr "" @@ -785,11 +868,12 @@ msgid "Disabled" msgstr "" #: templates/notificationarea.html:10 -#: templates/notificationarea.html:27 +#: templates/notificationarea.html:26 +#: templates/notificationarea.html:37 msgid "Dismiss" msgstr "" -#: templates/notificationarea.html:41 +#: templates/notificationarea.html:47 msgid "Dismiss all" msgstr "" @@ -809,29 +893,13 @@ msgstr "" msgid "Domain Name" msgstr "" -#: index.html:151 -#: index.html:258 -msgid "Donate" -msgstr "" - -#: templates/settings.html:76 -#: templates/settings.html:78 -msgid "Donation messages" -msgstr "" - -#: templates/settings.html:80 -msgid "Donation messages are hidden, click to show" -msgstr "" - -#: templates/settings.html:79 -msgid "Donation messages are visible, click to hide" -msgstr "" - #: templates/export.html:53 msgid "Done" msgstr "" #: templates/notificationarea.html:16 +#: templates/notificationarea.html:27 +#: templates/updatechangelog.html:10 msgid "Download" msgstr "" @@ -843,23 +911,19 @@ msgstr "" msgid "Downloading files …" msgstr "" -#: templates/notificationarea.html:24 +#: templates/notificationarea.html:23 msgid "Downloading update…" msgstr "" -#: templates/notificationarea.html:30 -msgid "Downloading …" -msgstr "" - -#: scripts/services/AppUtils.js:301 +#: scripts/services/AppUtils.js:337 msgid "Duplicate option {{opt}}" msgstr "" -#: index.html:275 +#: index.html:261 msgid "Duplicati Website" msgstr "" -#: index.html:266 +#: index.html:255 msgid "Duplicati forum" msgstr "" @@ -885,24 +949,24 @@ msgid "" msgstr "" #: templates/localdatabase.html:8 -msgid "Each backup has a local database associated with it, which stores information about the remote backup on the local machine.\\nThis makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation." +msgid "Each backup has a local database associated with it, which stores information about the remote backup on the local machine. This makes it faster to perform many operations, and reduces the amount of data that needs to be downloaded for each operation." msgstr "" #: templates/addoredit.html:174 -#: templates/addoredit.html:387 +#: templates/addoredit.html:389 #: templates/edituri.html:39 -#: templates/settings.html:153 +#: templates/settings.html:146 msgid "Edit as list" msgstr "" #: templates/addoredit.html:177 -#: templates/addoredit.html:390 +#: templates/addoredit.html:392 #: templates/edituri.html:42 -#: templates/settings.html:159 +#: templates/settings.html:152 msgid "Edit as text" msgstr "" -#: templates/home.html:31 +#: templates/home.html:29 msgid "Edit …" msgstr "" @@ -917,14 +981,17 @@ msgstr "" msgid "Encryption" msgstr "" -#: scripts/controllers/EditBackupController.js:402 +#: scripts/controllers/EditBackupController.js:403 msgid "Encryption changed" msgstr "" -#: templates/about.html:69 +#: templates/about.html:66 msgid "Encryption modules:" msgstr "" +#: scripts/services/EditUriBuiltins.js:1251 +#: scripts/services/EditUriBuiltins.js:1285 +#: templates/backends/storj.html:25 #: templates/backends/tardigrade.html:25 msgid "Encryption passphrase" msgstr "" @@ -939,12 +1006,12 @@ msgstr "" msgid "End" msgstr "" -#: scripts/controllers/EditBackupController.js:95 +#: scripts/controllers/EditBackupController.js:96 #: scripts/controllers/RestoreDirectController.js:24 msgid "Enter URL" msgstr "" -#: templates/addoredit.html:339 +#: templates/addoredit.html:341 msgid "Enter a retention strategy manually. Placeholders are D/W/Y for days/weeks/years and U for unlimited. The syntax is: 7D:1D,4W:1W,36M:1M. This example keeps one backup for each of the next 7 days, one for each of the next 4 weeks, and one for each of the next 36 months. This can also be written as 1W:1D,1M:1W,3Y:1M." msgstr "" @@ -968,6 +1035,10 @@ msgstr "" msgid "Enter container name" msgstr "" +#: templates/backends/idrive.html:3 +msgid "Enter directory path" +msgstr "" + #: templates/export.html:26 #: templates/import.html:15 msgid "Enter encryption passphrase" @@ -977,7 +1048,6 @@ msgstr "" msgid "Enter expression here" msgstr "" -#: templates/backends/jottacloud.html:3 #: templates/backends/mega.html:3 msgid "Enter folder path name" msgstr "" @@ -988,6 +1058,7 @@ msgstr "" #: templates/backends/file.html:7 #: templates/backends/generic.html:14 +#: templates/backends/jottacloud.html:3 #: templates/backends/msgroup.html:8 #: templates/backends/oauth.html:3 #: templates/restore.html:90 @@ -1002,31 +1073,29 @@ msgstr "" msgid "Enter the full destination path, including the server name, but without https" msgstr "" -#: scripts/controllers/CommandlineController.js:170 -#: scripts/controllers/CommandlineController.js:74 -#: scripts/controllers/ExportController.js:43 -#: scripts/controllers/ExportController.js:60 -#: scripts/controllers/RestoreController.js:118 -#: scripts/controllers/RestoreController.js:148 -#: scripts/controllers/RestoreController.js:295 -#: scripts/controllers/RestoreController.js:335 -#: scripts/controllers/RestoreController.js:383 -#: scripts/controllers/RestoreController.js:416 -#: scripts/controllers/RestoreController.js:426 -#: scripts/controllers/RestoreController.js:92 -#: scripts/controllers/RestoreDirectController.js:110 -#: scripts/controllers/RestoreDirectController.js:74 -#: scripts/directives/backupEditUri.js:143 -#: scripts/directives/backupEditUri.js:170 -#: scripts/directives/backupEditUri.js:205 -#: scripts/directives/backupEditUri.js:239 +#: scripts/controllers/CommandlineController.js:175 +#: scripts/controllers/CommandlineController.js:81 +#: scripts/controllers/ExportController.js:40 +#: scripts/controllers/ExportController.js:57 +#: scripts/controllers/RestoreController.js:114 +#: scripts/controllers/RestoreController.js:144 +#: scripts/controllers/RestoreController.js:294 +#: scripts/controllers/RestoreController.js:332 +#: scripts/controllers/RestoreController.js:392 +#: scripts/controllers/RestoreController.js:425 +#: scripts/controllers/RestoreController.js:433 +#: scripts/controllers/RestoreController.js:90 +#: scripts/controllers/RestoreDirectController.js:106 +#: scripts/controllers/RestoreDirectController.js:72 +#: scripts/directives/backupEditUri.js:142 +#: scripts/directives/backupEditUri.js:163 +#: scripts/directives/backupEditUri.js:197 #: scripts/directives/notificationArea.js:41 #: scripts/directives/notificationArea.js:43 -#: scripts/services/AppUtils.js:301 -#: scripts/services/AppUtils.js:347 -#: scripts/services/AppUtils.js:349 -#: scripts/services/AppUtils.js:357 -#: scripts/services/AppUtils.js:359 +#: scripts/services/AppUtils.js:337 +#: scripts/services/AppUtils.js:342 +#: scripts/services/AppUtils.js:388 +#: scripts/services/AppUtils.js:396 msgid "Error" msgstr "" @@ -1034,11 +1103,11 @@ msgstr "" msgid "Error!" msgstr "" -#: templates/settings.html:128 +#: templates/settings.html:121 msgid "Errors and crashes" msgstr "" -#: templates/backup-result/top-right-box.html:3 +#: templates/backup-result/top-right-box.html:10 msgid "Examined" msgstr "" @@ -1050,15 +1119,15 @@ msgstr "" msgid "Exclude directories whose names contain" msgstr "" -#: scripts/services/AppUtils.js:179 +#: scripts/services/AppUtils.js:181 msgid "Exclude expression" msgstr "" -#: scripts/services/AppUtils.js:143 +#: scripts/services/AppUtils.js:144 msgid "Exclude file" msgstr "" -#: scripts/services/AppUtils.js:149 +#: scripts/services/AppUtils.js:151 msgid "Exclude file extension" msgstr "" @@ -1066,7 +1135,7 @@ msgstr "" msgid "Exclude files whose names contain" msgstr "" -#: scripts/services/AppUtils.js:164 +#: scripts/services/AppUtils.js:166 msgid "Exclude filter group" msgstr "" @@ -1074,7 +1143,7 @@ msgstr "" msgid "Exclude folder" msgstr "" -#: scripts/services/AppUtils.js:154 +#: scripts/services/AppUtils.js:156 msgid "Exclude regular expression" msgstr "" @@ -1082,7 +1151,7 @@ msgstr "" msgid "Existing file found" msgstr "" -#: templates/settings.html:104 +#: templates/settings.html:97 msgid "Experimental" msgstr "" @@ -1103,7 +1172,7 @@ msgstr "" msgid "Export passwords" msgstr "" -#: templates/home.html:32 +#: templates/home.html:30 msgid "Export …" msgstr "" @@ -1119,26 +1188,26 @@ msgstr "" msgid "FTP (Alternative)" msgstr "" -#: scripts/controllers/RestoreController.js:383 +#: scripts/controllers/RestoreController.js:392 msgid "Failed to build temporary database: {{message}}" msgstr "" -#: scripts/directives/backupEditUri.js:143 -#: scripts/directives/backupEditUri.js:205 -#: scripts/directives/backupEditUri.js:239 +#: scripts/directives/backupEditUri.js:142 +#: scripts/directives/backupEditUri.js:163 +#: scripts/directives/backupEditUri.js:197 msgid "Failed to connect:" msgstr "" -#: scripts/controllers/CommandlineController.js:170 -#: scripts/controllers/CommandlineController.js:74 -#: scripts/controllers/ExportController.js:43 -#: scripts/controllers/RestoreController.js:295 -#: scripts/controllers/RestoreController.js:335 -#: scripts/controllers/RestoreController.js:426 -#: scripts/controllers/RestoreController.js:92 -#: scripts/controllers/RestoreDirectController.js:110 -#: scripts/controllers/RestoreDirectController.js:74 -#: scripts/services/LogService.js:31 +#: scripts/controllers/CommandlineController.js:175 +#: scripts/controllers/CommandlineController.js:81 +#: scripts/controllers/ExportController.js:40 +#: scripts/controllers/RestoreController.js:294 +#: scripts/controllers/RestoreController.js:332 +#: scripts/controllers/RestoreController.js:433 +#: scripts/controllers/RestoreController.js:90 +#: scripts/controllers/RestoreDirectController.js:106 +#: scripts/controllers/RestoreDirectController.js:72 +#: scripts/services/LogService.js:29 msgid "Failed to connect: {{message}}" msgstr "" @@ -1146,8 +1215,8 @@ msgstr "" msgid "Failed to delete:" msgstr "" -#: scripts/controllers/RestoreController.js:118 -#: scripts/controllers/RestoreController.js:148 +#: scripts/controllers/RestoreController.js:114 +#: scripts/controllers/RestoreController.js:144 msgid "Failed to fetch path information: {{message}}" msgstr "" @@ -1155,15 +1224,11 @@ msgstr "" msgid "Failed to find backup:" msgstr "" -#: scripts/directives/backupEditUri.js:170 -msgid "Failed to import:" -msgstr "" - -#: scripts/controllers/EditBackupController.js:697 +#: scripts/controllers/EditBackupController.js:707 msgid "Failed to read backup defaults:" msgstr "" -#: scripts/controllers/RestoreController.js:416 +#: scripts/controllers/RestoreController.js:425 msgid "Failed to restore files: {{message}}" msgstr "" @@ -1171,8 +1236,12 @@ msgstr "" msgid "Failed to save:" msgstr "" -#: scripts/controllers/RestoreController.js:124 -#: scripts/controllers/RestoreController.js:163 +#: templates/backup-result/top-right-box.html:6 +msgid "Fatal error, no statistics collected" +msgstr "" + +#: scripts/controllers/RestoreController.js:120 +#: scripts/controllers/RestoreController.js:159 msgid "Fetching path information …" msgstr "" @@ -1200,14 +1269,18 @@ msgstr "" msgid "Folder" msgstr "" +#: templates/backends/aliyunoss.html:30 #: templates/backends/b2.html:7 +#: templates/backends/cos.html:30 +#: templates/backends/e2.html:16 #: templates/backends/file.html:22 #: templates/backends/file.html:6 #: templates/backends/jottacloud.html:2 #: templates/backends/mega.html:2 #: templates/backends/s3.html:61 #: templates/backends/sia.html:6 -#: templates/backends/tardigrade.html:37 +#: templates/backends/storj.html:41 +#: templates/backends/tardigrade.html:41 #: templates/restore.html:105 #: templates/restore.html:89 msgid "Folder path" @@ -1257,13 +1330,13 @@ msgstr "" msgid "Getting file versions …" msgstr "" -#: scripts/services/EditUriBuiltins.js:843 -#: scripts/services/EditUriBuiltins.js:854 +#: scripts/services/EditUriBuiltins.js:1052 +#: scripts/services/EditUriBuiltins.js:1063 #: templates/backends/msgroup.html:2 msgid "Group email" msgstr "" -#: scripts/controllers/EditBackupController.js:19 +#: scripts/controllers/EditBackupController.js:20 msgid "Hidden files" msgstr "" @@ -1276,7 +1349,7 @@ msgstr "" msgid "Hide hidden folders" msgstr "" -#: index.html:219 +#: index.html:215 #: scripts/services/AppUtils.js:62 msgid "Home" msgstr "" @@ -1299,30 +1372,50 @@ msgstr "" msgid "Hyper-V Machine" msgstr "" -#: scripts/directives/sourceFolderPicker.js:438 +#: scripts/directives/sourceFolderPicker.js:590 msgid "Hyper-V Machine:" msgstr "" -#: scripts/directives/sourceFolderPicker.js:417 +#: scripts/directives/sourceFolderPicker.js:569 #: scripts/services/AppUtils.js:66 msgid "Hyper-V Machines" msgstr "" -#: scripts/directives/sourceFolderPicker.js:56 -#: scripts/directives/sourceFolderPicker.js:62 +#: scripts/directives/sourceFolderPicker.js:59 +#: scripts/directives/sourceFolderPicker.js:65 msgid "ID:" msgstr "" +#: templates/backends/idrive.html:2 +msgid "IDrive Sync directory path" +msgstr "" + +#: templates/backends/e2.html:3 +msgid "Idrivee2 Access Id" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1341 +msgid "Idrivee2 Access Key Id" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1342 +msgid "Idrivee2 Access Key Secret" +msgstr "" + +#: templates/backends/e2.html:7 +msgid "Idrivee2 Access Secret" +msgstr "" + #: templates/addoredit.html:261 msgid "If a date was missed, the job will run as soon as possible." msgstr "" -#: templates/addoredit.html:359 +#: templates/addoredit.html:361 msgid "If at least one newer backup is found, all backups older than this date are deleted." msgstr "" #: templates/localdatabase.html:13 -msgid "If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database.\\nIf the repair is unsuccesful, you can delete the local database and re-generate." +msgid "If the backup and the remote storage is out of sync, Duplicati will require that you perform a repair operation to synchronize the database. If the repair is unsuccesful, you can delete the local database and re-generate." msgstr "" #: templates/export.html:49 @@ -1333,7 +1426,7 @@ msgstr "" msgid "If the backup file was not downloaded automatically, right click and choose "Save as …"" msgstr "" -#: scripts/services/EditUriBackendConfig.js:106 +#: scripts/services/EditUriBackendConfig.js:113 msgid "" "If you do not enter a path, all files will be stored in the login folder.\n" "Are you sure this is what you want?" @@ -1366,14 +1459,6 @@ msgstr "" msgid "Import backup configuration" msgstr "" -#: scripts/directives/backupEditUri.js:159 -msgid "Import completed, but no certificates were found after the import" -msgstr "" - -#: scripts/directives/backupEditUri.js:159 -msgid "Import failed" -msgstr "" - #: templates/addwizard.html:15 msgid "Import from a file" msgstr "" @@ -1386,15 +1471,15 @@ msgstr "" msgid "Importing …" msgstr "" -#: scripts/controllers/EditBackupController.js:163 +#: scripts/controllers/EditBackupController.js:164 msgid "Include a file?" msgstr "" -#: scripts/services/AppUtils.js:175 +#: scripts/services/AppUtils.js:177 msgid "Include expression" msgstr "" -#: scripts/services/AppUtils.js:159 +#: scripts/services/AppUtils.js:161 msgid "Include regular expression" msgstr "" @@ -1402,7 +1487,7 @@ msgstr "" msgid "Incorrect answer, try again" msgstr "" -#: templates/settings.html:110 +#: templates/settings.html:103 msgid "Individual builds for developers only. Not for use with important data." msgstr "" @@ -1410,26 +1495,21 @@ msgstr "" msgid "Information" msgstr "" -#: templates/notificationarea.html:28 -#: templates/updatechangelog.html:10 -msgid "Install" +#: templates/backup-result/top-right-box.html:3 +msgid "Interrupted, no statistics collected" msgstr "" -#: scripts/controllers/UpdateChangelogController.js:14 -msgid "Install failed:" -msgstr "" - -#: scripts/services/EditUriBuiltins.js:1058 +#: scripts/services/EditUriBuiltins.js:1227 msgid "Invalid characters in path" msgstr "" -#: scripts/controllers/EditBackupController.js:288 -#: scripts/controllers/EditBackupController.js:295 -#: scripts/controllers/EditBackupController.js:305 +#: scripts/controllers/EditBackupController.js:289 +#: scripts/controllers/EditBackupController.js:296 +#: scripts/controllers/EditBackupController.js:306 msgid "Invalid retention time" msgstr "" -#: scripts/services/EditUriBuiltins.js:801 +#: scripts/services/EditUriBuiltins.js:1006 msgid "" "It is possible to connect to some FTP without a password.\n" "Are you sure your FTP server supports password-less logins?" @@ -1443,11 +1523,11 @@ msgstr "" msgid "KByte/s" msgstr "" -#: templates/addoredit.html:323 +#: templates/addoredit.html:325 msgid "Keep a specific number of backups" msgstr "" -#: templates/addoredit.html:321 +#: templates/addoredit.html:323 msgid "Keep all backups" msgstr "" @@ -1463,7 +1543,7 @@ msgstr "" msgid "Last month" msgstr "" -#: templates/home.html:53 +#: templates/home.html:51 msgid "Last successful backup:" msgstr "" @@ -1503,8 +1583,8 @@ msgstr "" msgid "Load destination from an exported job or a storage provider" msgstr "" -#: templates/backuplog.html:26 -#: templates/backuplog.html:44 +#: templates/backuplog.html:23 +#: templates/backuplog.html:41 #: templates/log.html:24 msgid "Load older data" msgstr "" @@ -1517,20 +1597,20 @@ msgstr "" msgid "Loading remote storage usage ..." msgstr "" -#: templates/about.html:45 -#: templates/about.html:50 -#: templates/about.html:56 +#: templates/about.html:42 +#: templates/about.html:47 +#: templates/about.html:53 #: templates/backuplog.html:12 -#: templates/backuplog.html:25 -#: templates/backuplog.html:32 -#: templates/backuplog.html:43 +#: templates/backuplog.html:22 +#: templates/backuplog.html:29 +#: templates/backuplog.html:40 #: templates/log.html:12 #: templates/log.html:23 #: templates/updatechangelog.html:7 msgid "Loading …" msgstr "" -#: scripts/services/EditUriBuiltins.js:1075 +#: scripts/services/EditUriBuiltins.js:1308 msgid "Local Repository" msgstr "" @@ -1546,7 +1626,7 @@ msgstr "" msgid "Local repository" msgstr "" -#: scripts/services/SystemInfo.js:81 +#: scripts/services/SystemInfo.js:85 msgid "Local storage" msgstr "" @@ -1566,7 +1646,7 @@ msgstr "" msgid "Log data from the server" msgstr "" -#: index.html:237 +#: index.html:233 msgid "Log out" msgstr "" @@ -1582,6 +1662,14 @@ msgstr "" msgid "Maintenance" msgstr "" +#: index.html:266 +msgid "Manual" +msgstr "" + +#: templates/notificationarea.html:34 +msgid "Manual update found:" +msgstr "" + #: templates/backends/file.html:19 #: templates/restore.html:102 msgid "Manually type path" @@ -1595,21 +1683,21 @@ msgstr "" msgid "Max upload speed" msgstr "" -#: index.html:155 +#: index.html:151 #: templates/addoredit.html:127 #: templates/addoredit.html:169 -#: templates/addoredit.html:382 +#: templates/addoredit.html:384 #: templates/addoredit.html:95 #: templates/edituri.html:34 #: templates/restoredirect.html:34 msgid "Menu" msgstr "" -#: scripts/directives/sourceFolderPicker.js:471 +#: scripts/directives/sourceFolderPicker.js:623 msgid "Microsoft SQL Database:" msgstr "" -#: scripts/directives/sourceFolderPicker.js:449 +#: scripts/directives/sourceFolderPicker.js:601 msgid "Microsoft SQL Databases" msgstr "" @@ -1617,7 +1705,7 @@ msgstr "" msgid "Minimum redundancy" msgstr "" -#: scripts/services/EditUriBuiltins.js:1062 +#: scripts/services/EditUriBuiltins.js:1231 msgid "Minimum redundancy is 1.0" msgstr "" @@ -1627,19 +1715,19 @@ msgstr "" msgid "Minutes" msgstr "" -#: scripts/controllers/EditBackupController.js:239 +#: scripts/controllers/EditBackupController.js:240 msgid "Missing name" msgstr "" -#: scripts/controllers/EditBackupController.js:246 +#: scripts/controllers/EditBackupController.js:247 msgid "Missing passphrase" msgstr "" -#: scripts/controllers/EditBackupController.js:259 +#: scripts/controllers/EditBackupController.js:260 msgid "Missing sources" msgstr "" -#: templates/backup-result/top-right-box.html:15 +#: templates/backup-result/top-right-box.html:22 msgid "Modified" msgstr "" @@ -1648,7 +1736,7 @@ msgid "Mon" msgstr "" #: scripts/services/AppUtils.js:93 -#: templates/addoredit.html:353 +#: templates/addoredit.html:355 msgid "Months" msgstr "" @@ -1680,15 +1768,15 @@ msgstr "" msgid "Name" msgstr "" -#: templates/home.html:60 +#: templates/home.html:58 msgid "Never" msgstr "" -#: templates/notificationarea.html:22 -msgid "New update found: {{message}}" +#: templates/notificationarea.html:21 +msgid "New update found: {{message}}" msgstr "" -#: scripts/services/EditUriBuiltins.js:133 +#: scripts/services/EditUriBuiltins.js:137 msgid "" "New user name is {{user}}.\n" "Updated credentials to use the new limited user" @@ -1704,15 +1792,15 @@ msgstr "" msgid "Next" msgstr "" -#: templates/home.html:64 +#: templates/home.html:62 msgid "Next scheduled run:" msgstr "" -#: index.html:194 +#: index.html:190 msgid "Next scheduled task:" msgstr "" -#: index.html:191 +#: index.html:187 msgid "Next task:" msgstr "" @@ -1721,25 +1809,24 @@ msgid "Next time" msgstr "" #: scripts/controllers/DeleteController.js:77 -#: scripts/controllers/EditBackupController.js:153 -#: scripts/controllers/EditBackupController.js:163 -#: scripts/controllers/EditBackupController.js:450 +#: scripts/controllers/EditBackupController.js:154 +#: scripts/controllers/EditBackupController.js:164 +#: scripts/controllers/EditBackupController.js:451 #: scripts/controllers/HomeController.js:7 #: scripts/controllers/LocalDatabaseController.js:28 #: scripts/controllers/LocalDatabaseController.js:72 #: scripts/controllers/LocalDatabaseController.js:88 -#: scripts/directives/backupEditUri.js:131 -#: scripts/directives/backupEditUri.js:214 -#: scripts/directives/backupEditUri.js:87 -#: scripts/services/EditUriBackendConfig.js:66 -#: scripts/services/EditUriBuiltins.js:54 -#: scripts/services/EditUriBuiltins.js:874 -#: scripts/services/EditUriBuiltins.js:956 -#: scripts/services/EditUriBuiltins.js:972 +#: scripts/directives/backupEditUri.js:130 +#: scripts/directives/backupEditUri.js:172 +#: scripts/directives/backupEditUri.js:86 +#: scripts/services/EditUriBackendConfig.js:73 +#: scripts/services/EditUriBuiltins.js:1135 +#: scripts/services/EditUriBuiltins.js:1151 +#: scripts/services/EditUriBuiltins.js:58 msgid "No" msgstr "" -#: scripts/directives/backupEditUri.js:210 +#: scripts/directives/backupEditUri.js:168 msgid "" "No certificate was specified previously, please verify with the server administrator that the key is correct: {{key}} \n" "\n" @@ -1750,24 +1837,24 @@ msgstr "" msgid "No editor found for the "{{backend}}" storage type" msgstr "" -#: scripts/controllers/EditBackupController.js:429 +#: scripts/controllers/EditBackupController.js:430 #: templates/addoredit.html:49 msgid "No encryption" msgstr "" -#: scripts/controllers/RestoreController.js:196 +#: scripts/controllers/RestoreController.js:192 msgid "No items selected" msgstr "" -#: scripts/controllers/RestoreController.js:196 +#: scripts/controllers/RestoreController.js:192 msgid "No items to restore, please select one or more items" msgstr "" -#: scripts/controllers/ExportController.js:57 +#: scripts/controllers/ExportController.js:54 msgid "No passphrase entered" msgstr "" -#: index.html:196 +#: index.html:192 msgid "No scheduled tasks" msgstr "" @@ -1775,11 +1862,11 @@ msgstr "" msgid "No, my machine has only a single account" msgstr "" -#: scripts/controllers/EditBackupController.js:252 +#: scripts/controllers/EditBackupController.js:253 msgid "Non-matching passphrase" msgstr "" -#: templates/settings.html:130 +#: templates/settings.html:123 msgid "None / disabled" msgstr "" @@ -1787,27 +1874,58 @@ msgstr "" msgid "Not using encryption" msgstr "" -#: templates/addoredit.html:328 +#: templates/addoredit.html:330 msgid "Nothing will be deleted. The backup size will grow with each change." msgstr "" #: scripts/controllers/AppController.js:44 #: scripts/controllers/AppController.js:59 -#: scripts/controllers/EditBackupController.js:103 -#: scripts/controllers/EditBackupController.js:95 +#: scripts/controllers/EditBackupController.js:104 +#: scripts/controllers/EditBackupController.js:96 #: scripts/controllers/RestoreDirectController.js:24 #: scripts/controllers/RestoreDirectController.js:33 #: scripts/services/CaptchaService.js:22 #: scripts/services/DialogService.js:28 #: scripts/services/DialogService.js:50 #: scripts/services/DialogService.js:58 -#: scripts/services/EditUriBuiltins.js:133 -#: templates/restore.html:156 -#: templates/settings.html:165 +#: scripts/services/EditUriBuiltins.js:137 +#: templates/restore.html:152 +#: templates/settings.html:158 msgid "OK" msgstr "" -#: templates/addoredit.html:346 +#: templates/backends/aliyunoss.html:10 +#: templates/backends/aliyunoss.html:8 +msgid "OSS Access Key Id" +msgstr "" + +#: templates/backends/aliyunoss.html:14 +#: templates/backends/aliyunoss.html:16 +msgid "OSS Access Key Secret" +msgstr "" + +#: templates/backends/aliyunoss.html:25 +#: templates/backends/aliyunoss.html:26 +msgid "OSS Bucket Name" +msgstr "" + +#: templates/backends/aliyunoss.html:21 +msgid "OSS Bucket Region" +msgstr "" + +#: templates/backends/aliyunoss.html:2 +msgid "OSS Endpoint" +msgstr "" + +#: templates/backends/aliyunoss.html:32 +msgid "OSS Path or subfolder in the bucket" +msgstr "" + +#: templates/backends/aliyunoss.html:20 +msgid "OSS Region" +msgstr "" + +#: templates/addoredit.html:348 msgid "Once there are more backups than the specified number, the oldest backups are deleted." msgstr "" @@ -1819,28 +1937,23 @@ msgstr "" msgid "OpenStack Object Storage / Swift" msgstr "" -#: templates/backup-result/top-right-box.html:7 +#: templates/backup-result/top-right-box.html:14 msgid "Opened" msgstr "" -#: scripts/services/EditUriBuiltins.js:920 +#: scripts/services/EditUriBuiltins.js:1099 msgid "Openstack API Key are not supported in v3 keystone API." msgstr "" -#: scripts/services/AppUtils.js:195 +#: scripts/services/AppUtils.js:197 msgid "Operating System" msgstr "" -#: templates/backuplog.html:16 +#: templates/backup-result/entryline.html:2 msgid "Operation" msgstr "" -#: scripts/controllers/SystemSettingsController.js:127 -#: scripts/controllers/SystemSettingsController.js:138 -msgid "Operation failed:" -msgstr "" - -#: templates/home.html:23 +#: templates/home.html:21 msgid "Operations:" msgstr "" @@ -1854,12 +1967,12 @@ msgstr "" #: templates/addoredit.html:28 #: templates/edituri.html:51 -#: templates/settings.html:152 -#: templates/settings.html:158 +#: templates/settings.html:145 +#: templates/settings.html:151 msgid "Options" msgstr "" -#: templates/settings.html:150 +#: templates/settings.html:143 msgid "Options added here are applied to all backups, but can be overridden in each individual backup" msgstr "" @@ -1867,11 +1980,11 @@ msgstr "" msgid "Original location" msgstr "" -#: scripts/services/SystemInfo.js:84 +#: scripts/services/SystemInfo.js:88 msgid "Others" msgstr "" -#: templates/addoredit.html:332 +#: templates/addoredit.html:334 msgid "Over time backups will be deleted automatically. There will remain one backup for each of the last 7 days, each of the last 4 weeks, each of the last 12 months. There will always be at least one remaining backup." msgstr "" @@ -1890,24 +2003,23 @@ msgstr "" msgid "Passphrase (if encrypted)" msgstr "" -#: scripts/controllers/EditBackupController.js:393 +#: scripts/controllers/EditBackupController.js:394 msgid "Passphrase changed" msgstr "" -#: scripts/controllers/EditBackupController.js:252 +#: scripts/controllers/EditBackupController.js:253 msgid "Passphrases are not matching" msgstr "" -#: scripts/controllers/EditBackupController.js:29 +#: scripts/controllers/EditBackupController.js:30 msgid "Passphrases do not match" msgstr "" -#: scripts/services/EditUriBuiltins.js:1036 -#: scripts/services/EditUriBuiltins.js:1046 +#: scripts/services/EditUriBuiltins.js:1215 #: templates/backends/file.html:33 #: templates/backends/generic.html:22 -#: templates/backends/jottacloud.html:11 -#: templates/backends/jottacloud.html:12 +#: templates/backends/idrive.html:11 +#: templates/backends/idrive.html:12 #: templates/backends/mega.html:11 #: templates/backends/mega.html:12 #: templates/backends/openstack.html:34 @@ -1919,11 +2031,12 @@ msgstr "" msgid "Patching files with local blocks …" msgstr "" -#: scripts/services/EditUriBuiltins.js:1020 +#: scripts/services/EditUriBuiltins.js:1199 +#: scripts/services/EditUriBuiltins.js:1371 msgid "Path" msgstr "" -#: scripts/controllers/EditBackupController.js:153 +#: scripts/controllers/EditBackupController.js:154 msgid "Path not found" msgstr "" @@ -1934,6 +2047,7 @@ msgid "Path on server" msgstr "" #: templates/backends/b2.html:8 +#: templates/backends/e2.html:17 #: templates/backends/s3.html:63 msgid "Path or subfolder in the bucket" msgstr "" @@ -1973,12 +2087,12 @@ msgstr "" #: templates/addoredit.html:114 #: templates/addoredit.html:247 #: templates/addoredit.html:297 -#: templates/addoredit.html:409 +#: templates/addoredit.html:411 #: templates/restoredirect.html:81 msgid "Previous" msgstr "" -#: templates/home.html:80 +#: templates/home.html:78 msgid "Progress:" msgstr "" @@ -1986,7 +2100,7 @@ msgstr "" msgid "ProjectID is optional if the bucket exist" msgstr "" -#: scripts/services/SystemInfo.js:83 +#: scripts/services/SystemInfo.js:87 msgid "Proprietary" msgstr "" @@ -2018,11 +2132,15 @@ msgstr "" msgid "Recreating database …" msgstr "" +#: templates/backends/cos.html:20 +msgid "Region" +msgstr "" + #: scripts/controllers/RestoreDirectController.js:40 msgid "Registering temporary backup …" msgstr "" -#: scripts/controllers/EditBackupController.js:138 +#: scripts/controllers/EditBackupController.js:139 msgid "Relative paths not allowed" msgstr "" @@ -2034,11 +2152,11 @@ msgstr "" msgid "Remote" msgstr "" -#: scripts/services/EditUriBuiltins.js:1076 +#: scripts/services/EditUriBuiltins.js:1309 msgid "Remote Path" msgstr "" -#: scripts/services/EditUriBuiltins.js:1074 +#: scripts/services/EditUriBuiltins.js:1307 msgid "Remote Repository" msgstr "" @@ -2058,7 +2176,7 @@ msgstr "" msgid "Remove" msgstr "" -#: templates/advancedoptionseditor.html:40 +#: templates/advancedoptionseditor.html:41 msgid "Remove option" msgstr "" @@ -2083,7 +2201,7 @@ msgstr "" msgid "Repeat Passphrase" msgstr "" -#: templates/home.html:45 +#: templates/home.html:43 msgid "Reporting:" msgstr "" @@ -2091,7 +2209,7 @@ msgstr "" msgid "Reset" msgstr "" -#: index.html:225 +#: index.html:221 #: templates/restore.html:142 msgid "Restore" msgstr "" @@ -2105,10 +2223,10 @@ msgid "Restore files" msgstr "" #: templates/restore.html:46 -msgid "Restore files from {{backupname}}" +msgid "Restore files from:" msgstr "" -#: templates/home.html:26 +#: templates/home.html:24 msgid "Restore files …" msgstr "" @@ -2147,12 +2265,12 @@ msgstr "" msgid "Restored Symlinks" msgstr "" -#: scripts/controllers/RestoreController.js:376 -#: scripts/controllers/RestoreController.js:398 +#: scripts/controllers/RestoreController.js:385 +#: scripts/controllers/RestoreController.js:407 msgid "Restoring files …" msgstr "" -#: index.html:228 +#: index.html:224 msgid "Resume" msgstr "" @@ -2164,8 +2282,8 @@ msgstr "" msgid "Run again every" msgstr "" -#: templates/home.html:25 -#: templates/home.html:60 +#: templates/home.html:23 +#: templates/home.html:58 msgid "Run now" msgstr "" @@ -2177,7 +2295,7 @@ msgstr "" msgid "Running commandline entry" msgstr "" -#: index.html:183 +#: index.html:179 msgid "Running task:" msgstr "" @@ -2189,7 +2307,7 @@ msgstr "" msgid "S3 Compatible" msgstr "" -#: templates/settings.html:87 +#: templates/settings.html:80 msgid "Same as the base install version: {{channelname}}" msgstr "" @@ -2197,11 +2315,12 @@ msgstr "" msgid "Sat" msgstr "" +#: templates/backends/storj.html:10 #: templates/backends/tardigrade.html:10 msgid "Satellite" msgstr "" -#: templates/addoredit.html:408 +#: templates/addoredit.html:410 #: templates/localdatabase.html:32 msgid "Save" msgstr "" @@ -2254,7 +2373,7 @@ msgstr "" msgid "Select files" msgstr "" -#: scripts/services/EditUriBuiltins.js:1054 +#: scripts/services/EditUriBuiltins.js:1223 #: templates/backends/s3.html:8 #: templates/backends/sia.html:2 msgid "Server" @@ -2286,18 +2405,19 @@ msgstr "" msgid "Server paused" msgstr "" -#: templates/about.html:72 +#: templates/about.html:69 msgid "Server state properties" msgstr "" -#: index.html:231 +#: index.html:227 #: templates/settings.html:2 msgid "Settings" msgstr "" #: templates/addoredit.html:69 #: templates/notificationarea.html:12 -#: templates/notificationarea.html:32 +#: templates/notificationarea.html:28 +#: templates/notificationarea.html:38 msgid "Show" msgstr "" @@ -2315,7 +2435,7 @@ msgstr "" msgid "Show log" msgstr "" -#: templates/home.html:47 +#: templates/home.html:45 msgid "Show log …" msgstr "" @@ -2327,7 +2447,7 @@ msgstr "" msgid "Sia server password" msgstr "" -#: templates/addoredit.html:324 +#: templates/addoredit.html:326 msgid "Smart backup retention" msgstr "" @@ -2347,7 +2467,7 @@ msgstr "" msgid "Source Files" msgstr "" -#: scripts/directives/sourceFolderPicker.js:387 +#: scripts/directives/sourceFolderPicker.js:539 #: templates/addoredit.html:124 msgid "Source data" msgstr "" @@ -2356,15 +2476,15 @@ msgstr "" msgid "Source folders" msgstr "" -#: templates/home.html:69 +#: templates/home.html:67 msgid "Source:" msgstr "" -#: templates/settings.html:105 +#: templates/settings.html:98 msgid "Specific builds for developers only. Not for use with important data." msgstr "" -#: scripts/services/SystemInfo.js:82 +#: scripts/services/SystemInfo.js:86 msgid "Standard protocols" msgstr "" @@ -2386,37 +2506,37 @@ msgstr "" msgid "Starting restore …" msgstr "" -#: scripts/controllers/RestoreController.js:372 -#: scripts/controllers/RestoreController.js:396 +#: scripts/controllers/RestoreController.js:381 +#: scripts/controllers/RestoreController.js:405 msgid "Starting the restore process …" msgstr "" -#: scripts/controllers/StateController.js:106 +#: scripts/controllers/StateController.js:108 msgid "Stop after current file" msgstr "" -#: scripts/controllers/StateController.js:115 +#: scripts/controllers/StateController.js:117 msgid "Stop after the current file" msgstr "" -#: scripts/controllers/StateController.js:106 -#: scripts/controllers/StateController.js:115 +#: scripts/controllers/StateController.js:108 +#: scripts/controllers/StateController.js:117 msgid "Stop now" msgstr "" -#: scripts/controllers/StateController.js:104 +#: scripts/controllers/StateController.js:106 msgid "Stop running backup" msgstr "" -#: scripts/controllers/StateController.js:113 +#: scripts/controllers/StateController.js:115 msgid "Stop running task" msgstr "" -#: index.html:179 +#: index.html:175 msgid "Stopping after the current file:" msgstr "" -#: index.html:184 +#: index.html:180 msgid "Stopping task:" msgstr "" @@ -2436,12 +2556,12 @@ msgstr "" msgid "Stored" msgstr "" -#: scripts/controllers/EditBackupController.js:33 +#: scripts/controllers/EditBackupController.js:34 msgid "Strong" msgstr "" -#: scripts/directives/backupEditUri.js:51 -#: scripts/directives/backupEditUri.js:54 +#: scripts/directives/backupEditUri.js:50 +#: scripts/directives/backupEditUri.js:53 msgid "Success" msgstr "" @@ -2453,15 +2573,15 @@ msgstr "" msgid "Symbolic link" msgstr "" -#: scripts/services/AppUtils.js:192 +#: scripts/services/AppUtils.js:194 msgid "System Files" msgstr "" -#: templates/settings.html:125 +#: templates/settings.html:118 msgid "System default ({{levelname}})" msgstr "" -#: scripts/controllers/EditBackupController.js:20 +#: scripts/controllers/EditBackupController.js:21 msgid "System files" msgstr "" @@ -2469,7 +2589,7 @@ msgstr "" msgid "System info" msgstr "" -#: templates/about.html:64 +#: templates/about.html:61 msgid "System properties" msgstr "" @@ -2489,11 +2609,11 @@ msgstr "" msgid "Task is running" msgstr "" -#: scripts/services/AppUtils.js:201 +#: scripts/services/AppUtils.js:203 msgid "Temporary Files" msgstr "" -#: scripts/controllers/EditBackupController.js:21 +#: scripts/controllers/EditBackupController.js:22 msgid "Temporary files" msgstr "" @@ -2501,6 +2621,10 @@ msgstr "" msgid "Tenant Name" msgstr "" +#: templates/backends/cos.html:4 +msgid "Tencent Cloud Account APPID" +msgstr "" + #: templates/backup-result/phases/test.html:3 msgid "Test Phase" msgstr "" @@ -2509,19 +2633,19 @@ msgstr "" msgid "Test connection" msgstr "" -#: scripts/directives/backupEditUri.js:44 +#: scripts/directives/backupEditUri.js:43 msgid "Testing ..." msgstr "" -#: scripts/directives/backupEditUri.js:44 +#: scripts/directives/backupEditUri.js:43 msgid "Testing connection ..." msgstr "" -#: scripts/services/EditUriBuiltins.js:45 +#: scripts/services/EditUriBuiltins.js:49 msgid "Testing permissions …" msgstr "" -#: scripts/services/EditUriBuiltins.js:45 +#: scripts/services/EditUriBuiltins.js:49 msgid "Testing permissions..." msgstr "" @@ -2529,11 +2653,14 @@ msgstr "" msgid "Testing …" msgstr "" -#: scripts/services/EditUriBuiltins.js:1000 -#: scripts/services/EditUriBuiltins.js:1016 +#: scripts/services/EditUriBuiltins.js:1179 +#: scripts/services/EditUriBuiltins.js:1195 +#: scripts/services/EditUriBuiltins.js:1351 +#: scripts/services/EditUriBuiltins.js:1367 msgid "The '{{fieldname}}' field contains an invalid character: {{character}} (value: {{value}}, index: {{pos}})" msgstr "" +#: templates/backends/storj.html:22 #: templates/backends/tardigrade.html:22 msgid "The API key" msgstr "" @@ -2546,11 +2673,18 @@ msgstr "" msgid "The backup was temporary and does not exist anymore, so the log data is lost" msgstr "" -#: scripts/services/EditUriBuiltins.js:972 +#: templates/addoredit.html:312 +msgid "" +"The backups will be split up into multiple files called volumes. Here\n" +"\t\t\tyou can set the maximum size of the individual volume files.\n" +" See this page for more information." +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1151 msgid "The bucket name should be all lower-case, convert automatically?" msgstr "" -#: scripts/services/EditUriBuiltins.js:956 +#: scripts/services/EditUriBuiltins.js:1135 msgid "The bucket name should start with your username, prepend automatically?" msgstr "" @@ -2558,7 +2692,7 @@ msgstr "" msgid "The configuration should be kept safe. Are you sure you want to save an unencrypted file containing your passwords?" msgstr "" -#: index.html:312 +#: index.html:301 msgid "The connection to the server is lost, attempting again in {{time}} ..." msgstr "" @@ -2570,40 +2704,55 @@ msgstr "" msgid "The default blue on white theme (by Alex)" msgstr "" +#: templates/backends/storj.html:26 #: templates/backends/tardigrade.html:26 msgid "The encryption passphrase" msgstr "" -#: scripts/directives/backupEditUri.js:131 +#: templates/backends/storj.html:30 +#: templates/backends/tardigrade.html:30 +msgid "The encryption passphrase (for verification)" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1260 +#: scripts/services/EditUriBuiltins.js:1294 +msgid "The encryption passphrases do not match" +msgstr "" + +#: scripts/directives/sourceFolderPicker.js:410 +msgid "The file size is {{size}}, larger than the maximum specified size. If the file size decreases, it will be included in future backups." +msgstr "" + +#: scripts/directives/backupEditUri.js:130 msgid "" "The folder {{folder}} does not exist.\n" "Create it now?" msgstr "" -#: scripts/directives/backupEditUri.js:212 +#: scripts/directives/backupEditUri.js:170 msgid "" "The host key has changed, please check with the server administrator if this is correct, otherwise you could be the victim of a MAN-IN-THE-MIDDLE attack.\n" "\n" "Do you want to REPLACE your CURRENT host key \"{{prev}}\" with the REPORTED host key: {{key}}?" msgstr "" -#: scripts/controllers/ExportController.js:60 +#: scripts/controllers/ExportController.js:57 #: scripts/controllers/SystemSettingsController.js:90 msgid "The passwords do not match" msgstr "" -#: scripts/controllers/EditBackupController.js:153 +#: scripts/controllers/EditBackupController.js:154 msgid "The path does not appear to exist, do you want to add it anyway?" msgstr "" -#: scripts/controllers/EditBackupController.js:163 +#: scripts/controllers/EditBackupController.js:164 msgid "" "The path does not end with a '{{dirsep}}' character, which means that you include a file, not a folder.\n" "\n" "Do you want to include the specified file?" msgstr "" -#: scripts/controllers/EditBackupController.js:138 +#: scripts/controllers/EditBackupController.js:139 msgid "The path must be an absolute path, i.e. it must start with a forward slash '/'" msgstr "" @@ -2615,7 +2764,7 @@ msgstr "" msgid "The region parameter is only used when creating a bucket" msgstr "" -#: scripts/directives/backupEditUri.js:87 +#: scripts/directives/backupEditUri.js:86 msgid "" "The server certificate could not be validated.\n" "Do you want to approve the SSL certificate with the hash: {{hash}}?" @@ -2625,15 +2774,15 @@ msgstr "" msgid "The storage class affects the availability and price for a stored file" msgstr "" -#: scripts/controllers/RestoreDirectController.js:106 +#: scripts/controllers/RestoreDirectController.js:102 msgid "The target folder contains encrypted files, please supply the passphrase" msgstr "" -#: scripts/services/EditUriBuiltins.js:54 +#: scripts/services/EditUriBuiltins.js:58 msgid "The user has too many permissions. Do you want to create a new limited user, with only permissions to the selected path?" msgstr "" -#: scripts/controllers/RestoreController.js:309 +#: scripts/controllers/RestoreController.js:308 msgid "This backup was created on another operating system. Restoring files without specifying a destination folder can cause files to be restored in unexpected places. Are you sure you want to continue without choosing a destination folder?" msgstr "" @@ -2641,10 +2790,6 @@ msgstr "" msgid "This month" msgstr "" -#: templates/addoredit.html:312 -msgid "This option does not relate to your maximum backup or file size, nor does it affect deduplication rates. See this page before you change the remote volume size." -msgstr "" - #: scripts/controllers/RestoreController.js:36 msgid "This week" msgstr "" @@ -2670,7 +2815,7 @@ msgstr "" msgid "To confirm you want to delete all remote files for \"{{name}}\", please enter the word you see below" msgstr "" -#: scripts/controllers/ExportController.js:57 +#: scripts/controllers/ExportController.js:54 msgid "To export without a passphrase, uncheck the \"Encrypt file\" box" msgstr "" @@ -2682,15 +2827,15 @@ msgstr "" msgid "Today" msgstr "" -#: scripts/directives/backupEditUri.js:214 +#: scripts/directives/backupEditUri.js:172 msgid "Trust host certificate?" msgstr "" -#: scripts/directives/backupEditUri.js:87 +#: scripts/directives/backupEditUri.js:86 msgid "Trust server certificate?" msgstr "" -#: templates/settings.html:100 +#: templates/settings.html:93 msgid "Try out the new features that we are working on. Currently the most stable version available. Test Restore data before using this in production environments." msgstr "" @@ -2714,7 +2859,7 @@ msgstr "" msgid "Until resumed" msgstr "" -#: templates/settings.html:83 +#: templates/settings.html:76 msgid "Update channel" msgstr "" @@ -2734,15 +2879,15 @@ msgstr "" msgid "Uploading verification file …" msgstr "" -#: templates/settings.html:132 +#: templates/settings.html:125 msgid "Usage reports help us improve the user experience and evaluate impact of new features. We use them to generate {{'public usage statistics' | translate}}" msgstr "" -#: templates/settings.html:120 +#: templates/settings.html:113 msgid "Usage statistics" msgstr "" -#: templates/settings.html:126 +#: templates/settings.html:119 msgid "Usage statistics, warnings, errors, and crashes" msgstr "" @@ -2751,19 +2896,19 @@ msgstr "" msgid "Use SSL" msgstr "" -#: scripts/controllers/EditBackupController.js:450 +#: scripts/controllers/EditBackupController.js:451 msgid "Use existing database?" msgstr "" -#: scripts/controllers/EditBackupController.js:344 +#: scripts/controllers/EditBackupController.js:345 msgid "Use weak passphrase" msgstr "" -#: scripts/controllers/EditBackupController.js:30 +#: scripts/controllers/EditBackupController.js:31 msgid "Useless" msgstr "" -#: scripts/directives/sourceFolderPicker.js:374 +#: scripts/directives/sourceFolderPicker.js:526 msgid "User data" msgstr "" @@ -2771,7 +2916,7 @@ msgstr "" msgid "User domain name" msgstr "" -#: scripts/services/EditUriBuiltins.js:54 +#: scripts/services/EditUriBuiltins.js:58 msgid "User has too many permissions" msgstr "" @@ -2779,14 +2924,13 @@ msgstr "" msgid "User interface settings" msgstr "" -#: scripts/services/EditUriBuiltins.js:1035 -#: scripts/services/EditUriBuiltins.js:1045 -#: scripts/services/EditUriBuiltins.js:796 -#: scripts/services/EditUriBuiltins.js:903 +#: scripts/services/EditUriBuiltins.js:1001 +#: scripts/services/EditUriBuiltins.js:1082 +#: scripts/services/EditUriBuiltins.js:1214 #: templates/backends/file.html:29 #: templates/backends/generic.html:18 -#: templates/backends/jottacloud.html:7 -#: templates/backends/jottacloud.html:8 +#: templates/backends/idrive.html:7 +#: templates/backends/idrive.html:8 #: templates/backends/mega.html:7 #: templates/backends/mega.html:8 #: templates/backends/openstack.html:30 @@ -2806,7 +2950,12 @@ msgstr "" msgid "Verifications" msgstr "" -#: templates/home.html:40 +#: templates/backends/storj.html:29 +#: templates/backends/tardigrade.html:29 +msgid "Verify encryption passphrase" +msgstr "" + +#: templates/home.html:38 msgid "Verify files" msgstr "" @@ -2836,23 +2985,19 @@ msgstr "" msgid "Verifying restored files …" msgstr "" -#: templates/notificationarea.html:31 -msgid "Verifying …" -msgstr "" - #: templates/backup-result/phases/delete.html:33 msgid "Version ID" msgstr "" -#: scripts/controllers/EditBackupController.js:34 +#: scripts/controllers/EditBackupController.js:35 msgid "Very strong" msgstr "" -#: scripts/controllers/EditBackupController.js:31 +#: scripts/controllers/EditBackupController.js:32 msgid "Very weak" msgstr "" -#: index.html:263 +#: index.html:252 msgid "Visit us on" msgstr "" @@ -2876,23 +3021,19 @@ msgstr "" msgid "Waiting for upload to finish …" msgstr "" -#: templates/settings.html:127 +#: templates/settings.html:120 msgid "Warnings, errors and crashes" msgstr "" -#: templates/restore.html:152 -msgid "We accept donations via different services, such as OpenCollective, PayPal, BountySource and various crypto currencies." -msgstr "" - #: templates/addoredit.html:54 msgid "We recommend that you encrypt all backups stored outside your system" msgstr "" -#: scripts/controllers/EditBackupController.js:32 +#: scripts/controllers/EditBackupController.js:33 msgid "Weak" msgstr "" -#: scripts/controllers/EditBackupController.js:344 +#: scripts/controllers/EditBackupController.js:345 msgid "Weak passphrase" msgstr "" @@ -2901,7 +3042,7 @@ msgid "Wed" msgstr "" #: scripts/services/AppUtils.js:92 -#: templates/addoredit.html:352 +#: templates/addoredit.html:354 msgid "Weeks" msgstr "" @@ -2914,31 +3055,30 @@ msgid "Where do you want to restore the files to?" msgstr "" #: scripts/services/AppUtils.js:94 -#: templates/addoredit.html:354 +#: templates/addoredit.html:356 msgid "Years" msgstr "" #: scripts/controllers/AppController.js:174 #: scripts/controllers/DeleteController.js:77 -#: scripts/controllers/EditBackupController.js:153 -#: scripts/controllers/EditBackupController.js:163 -#: scripts/controllers/EditBackupController.js:450 +#: scripts/controllers/EditBackupController.js:154 +#: scripts/controllers/EditBackupController.js:164 +#: scripts/controllers/EditBackupController.js:451 #: scripts/controllers/HomeController.js:7 #: scripts/controllers/LocalDatabaseController.js:28 #: scripts/controllers/LocalDatabaseController.js:72 #: scripts/controllers/LocalDatabaseController.js:88 -#: scripts/directives/backupEditUri.js:131 -#: scripts/directives/backupEditUri.js:214 -#: scripts/directives/backupEditUri.js:87 -#: scripts/services/EditUriBackendConfig.js:66 -#: scripts/services/EditUriBuiltins.js:54 -#: scripts/services/EditUriBuiltins.js:874 -#: scripts/services/EditUriBuiltins.js:956 -#: scripts/services/EditUriBuiltins.js:972 +#: scripts/directives/backupEditUri.js:130 +#: scripts/directives/backupEditUri.js:172 +#: scripts/directives/backupEditUri.js:86 +#: scripts/services/EditUriBackendConfig.js:73 +#: scripts/services/EditUriBuiltins.js:1135 +#: scripts/services/EditUriBuiltins.js:1151 +#: scripts/services/EditUriBuiltins.js:58 msgid "Yes" msgstr "" -#: scripts/controllers/EditBackupController.js:359 +#: scripts/controllers/EditBackupController.js:360 msgid "Yes, I have stored the passphrase safely" msgstr "" @@ -2946,11 +3086,11 @@ msgstr "" msgid "Yes, I understand the risk" msgstr "" -#: scripts/controllers/EditBackupController.js:402 +#: scripts/controllers/EditBackupController.js:403 msgid "Yes, I'm brave!" msgstr "" -#: scripts/controllers/EditBackupController.js:393 +#: scripts/controllers/EditBackupController.js:394 msgid "Yes, please break my backup!" msgstr "" @@ -2958,12 +3098,6 @@ msgstr "" msgid "Yesterday" msgstr "" -#: scripts/directives/backupEditUri.js:153 -msgid "" -"You appear to be running Mono with no SSL certificates loaded.\n" -"Do you want to import the list of trusted certificates from Mozilla?" -msgstr "" - #: scripts/controllers/LocalDatabaseController.js:88 msgid "" "You are changing the database path away from an existing database.\n" @@ -2974,112 +3108,112 @@ msgstr "" msgid "You are currently running {{appname}} {{version}}" msgstr "" -#: scripts/controllers/StateController.js:105 +#: scripts/controllers/StateController.js:107 msgid "You can stop the backup after any file uploads currently in progress have finished." msgstr "" -#: scripts/controllers/StateController.js:114 +#: scripts/controllers/StateController.js:116 msgid "You can stop the task immediately, or allow the process to continue its current file and then stop." msgstr "" -#: scripts/controllers/EditBackupController.js:402 +#: scripts/controllers/EditBackupController.js:403 msgid "You have changed the encryption mode. This may break stuff. You are encouraged to create a new backup instead" msgstr "" -#: scripts/controllers/EditBackupController.js:393 +#: scripts/controllers/EditBackupController.js:394 msgid "You have changed the passphrase, which is not supported. You are encouraged to create a new backup instead." msgstr "" -#: scripts/controllers/EditBackupController.js:429 +#: scripts/controllers/EditBackupController.js:430 msgid "You have chosen not to encrypt the backup. Encryption is recommended for all data stored on a remote server." msgstr "" -#: scripts/controllers/RestoreController.js:303 +#: scripts/controllers/RestoreController.js:302 msgid "You have chosen to restore to a new location, but not entered one" msgstr "" -#: scripts/controllers/EditBackupController.js:359 +#: scripts/controllers/EditBackupController.js:360 msgid "You have generated a strong passphrase. Make sure you have made a safe copy of the passphrase, as the data cannot be recovered if you lose the passphrase." msgstr "" -#: scripts/controllers/EditBackupController.js:259 +#: scripts/controllers/EditBackupController.js:260 msgid "You must choose at least one source folder" msgstr "" -#: scripts/services/EditUriBuiltins.js:914 +#: scripts/services/EditUriBuiltins.js:1093 msgid "You must enter a domain name to use v3 API" msgstr "" -#: scripts/controllers/EditBackupController.js:239 +#: scripts/controllers/EditBackupController.js:240 msgid "You must enter a name for the backup" msgstr "" -#: scripts/controllers/EditBackupController.js:246 +#: scripts/controllers/EditBackupController.js:247 msgid "You must enter a passphrase or disable encryption" msgstr "" -#: scripts/services/EditUriBuiltins.js:911 +#: scripts/services/EditUriBuiltins.js:1090 msgid "You must enter a password to use v3 API" msgstr "" -#: scripts/controllers/EditBackupController.js:295 +#: scripts/controllers/EditBackupController.js:296 msgid "You must enter a positive number of backups to keep" msgstr "" -#: scripts/services/EditUriBuiltins.js:917 +#: scripts/services/EditUriBuiltins.js:1096 msgid "You must enter a tenant (aka project) name to use v3 API" msgstr "" -#: scripts/services/EditUriBuiltins.js:931 +#: scripts/services/EditUriBuiltins.js:1110 msgid "You must enter a tenant name if you do not provide an API Key" msgstr "" -#: scripts/controllers/EditBackupController.js:288 +#: scripts/controllers/EditBackupController.js:289 msgid "You must enter a valid duration for the time to keep backups" msgstr "" -#: scripts/controllers/EditBackupController.js:305 +#: scripts/controllers/EditBackupController.js:306 msgid "You must enter a valid retention policy string" msgstr "" -#: scripts/services/EditUriBuiltins.js:928 +#: scripts/services/EditUriBuiltins.js:1107 msgid "You must enter either a password or an API Key" msgstr "" -#: scripts/services/EditUriBuiltins.js:935 +#: scripts/services/EditUriBuiltins.js:1114 msgid "You must enter either a password or an API Key, not both" msgstr "" -#: scripts/services/EditUriBackendConfig.js:115 +#: scripts/services/EditUriBackendConfig.js:122 msgid "You must fill in the password" msgstr "" -#: scripts/services/EditUriBackendConfig.js:92 +#: scripts/services/EditUriBackendConfig.js:99 msgid "You must fill in the server name or address" msgstr "" -#: scripts/services/EditUriBackendConfig.js:113 -#: scripts/services/EditUriBackendConfig.js:122 +#: scripts/services/EditUriBackendConfig.js:120 +#: scripts/services/EditUriBackendConfig.js:129 msgid "You must fill in the username" msgstr "" -#: scripts/services/EditUriBackendConfig.js:78 +#: scripts/services/EditUriBackendConfig.js:85 msgid "You must fill in {{field}}" msgstr "" -#: scripts/services/EditUriBuiltins.js:907 +#: scripts/services/EditUriBuiltins.js:1086 msgid "You must select or fill in the AuthURI" msgstr "" -#: scripts/services/EditUriBuiltins.js:949 +#: scripts/services/EditUriBuiltins.js:1128 msgid "You must select or fill in the server" msgstr "" -#: scripts/services/EditUriBackendConfig.js:99 +#: scripts/services/EditUriBackendConfig.js:106 msgid "You must specify a path" msgstr "" -#: scripts/services/EditUriBackendConfig.js:85 +#: scripts/services/EditUriBackendConfig.js:92 msgid "You should fill in {{field}}{{reason}}" msgstr "" @@ -3087,7 +3221,7 @@ msgstr "" msgid "Your files and folders have been restored successfully." msgstr "" -#: scripts/controllers/EditBackupController.js:344 +#: scripts/controllers/EditBackupController.js:345 msgid "Your passphrase is easy to guess. Consider changing passphrase." msgstr "" @@ -3104,14 +3238,58 @@ msgstr "" msgid "byte/s" msgstr "" +#: scripts/services/EditUriBuiltins.js:1317 +msgid "cos_app_id" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1321 +msgid "cos_bucket" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1320 +msgid "cos_region" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1318 +msgid "cos_secret_id" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1319 +msgid "cos_secret_key" +msgstr "" + #: templates/addoredit.html:272 -#: templates/addoredit.html:355 -#: templates/advancedoptionseditor.html:28 -#: templates/advancedoptionseditor.html:35 +#: templates/addoredit.html:357 +#: templates/advancedoptionseditor.html:29 +#: templates/advancedoptionseditor.html:36 msgid "custom" msgstr "" -#: templates/settings.html:132 +#: templates/backup-result/entryline.html:4 +msgid "failed" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1330 +msgid "oss_access_key_id" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1331 +msgid "oss_access_key_secret" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1333 +msgid "oss_bucket_name" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1329 +msgid "oss_endpoint" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1332 +msgid "oss_region" +msgstr "" + +#: templates/settings.html:125 msgid "public usage statistics" msgstr "" @@ -3121,8 +3299,16 @@ msgstr "" msgid "resume now" msgstr "" -#: scripts/services/EditUriBuiltins.js:843 -#: scripts/services/EditUriBuiltins.js:854 +#: scripts/services/EditUriBuiltins.js:1245 +msgid "storj_shared_access" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1279 +msgid "tardigrade_shared_access" +msgstr "" + +#: scripts/services/EditUriBuiltins.js:1052 +#: scripts/services/EditUriBuiltins.js:1063 msgid "unless you are explicitly specifying --group-id" msgstr "" @@ -3130,11 +3316,11 @@ msgstr "" msgid "{{appname}} was primarily developed by {{dev1}} and {{dev2}}. {{appname}} can be downloaded from {{websitename}}. {{appname}} is licensed under the {{licensename}}." msgstr "" -#: scripts/controllers/StateController.js:51 +#: scripts/controllers/StateController.js:53 msgid "{{files}} files ({{size}}) to go {{speed_txt}}" msgstr "" -#: templates/home.html:74 +#: templates/home.html:72 #: templates/restorewizard.html:23 msgid "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Version" msgid_plural "{{item.Backup.Metadata.TargetSizeString}} / {{$count}} Versions" @@ -3158,7 +3344,7 @@ msgstr "" msgid "{{number}} Minutes" msgstr "" -#: templates/home.html:54 +#: templates/home.html:52 msgid "{{time}} (took {{duration}})" msgstr "" diff --git a/ReleaseBuilder/Build/Command.Compile.Post.cs b/ReleaseBuilder/Build/Command.Compile.Post.cs index 6a5fde35b..94168fd0e 100644 --- a/ReleaseBuilder/Build/Command.Compile.Post.cs +++ b/ReleaseBuilder/Build/Command.Compile.Post.cs @@ -25,7 +25,6 @@ public static partial class Command /// An awaitable task public static async Task PrepareTargetDirectory(string baseDir, string buildDir, OSType os, ArchType arch, string buildTargetString, RuntimeConfig rtcfg, bool keepBuilds) { - await InstallUplinkBinaries(buildDir, os, arch); await RemoveUnwantedFiles(os, buildDir); switch (os) @@ -303,68 +302,4 @@ public static partial class Command File.Move(tf, destinationPath); } - - /// - /// Due to an issue with the packages for Uplink.Net, we need to download the binaries and manully extract them - /// - /// The build directory - /// The target operating system - /// The target architecture - /// An awaitable task - static async Task InstallUplinkBinaries(string buildDir, OSType os, ArchType arch) - { - var buildroot = Path.GetDirectoryName(buildDir) ?? throw new Exception("Bad build dir"); - var pkgfolder = Path.Combine(buildroot, "nuget"); - var pkgname = os switch - { - OSType.Windows => (Url: "https://www.nuget.org/api/v2/package/uplink.NET.Win/2.12.3363", File: "uplink.net.win.2.12.3363.nupkg"), - OSType.MacOS => (Url: "https://www.nuget.org/api/v2/package/uplink.NET.Mac/2.12.3365", File: "uplink.net.mac.2.12.3365.nupkg"), - OSType.Linux => (Url: "https://www.nuget.org/api/v2/package/uplink.NET.Linux/2.12.3365", File: "uplink.net.linux.2.12.3365.nupkg"), - _ => (null, null) - }; - - var zipEntryName = os switch - { - OSType.Windows => arch switch - { - ArchType.x64 => "runtimes/win-x64/native/storj_uplink.dll", - ArchType.x86 => "runtimes/win-x86/native/storj_uplink.dll", - ArchType.Arm64 => "runtimes/win-arm64/native/storj_uplink.dll", - _ => null - }, - OSType.MacOS => arch switch - { - ArchType.x64 or ArchType.Arm64 => "runtimes/osx-x64/native/libstorj_uplink.dylib", // Dual-arch binary - _ => null - }, - OSType.Linux => arch switch - { - ArchType.x64 => "runtimes/linux-x64/native/storj_uplink.so", - _ => null - }, - _ => null - }; - - // Combination not supported - if (pkgname.Url == null || pkgname.File == null || zipEntryName == null) - return; - - var pkgpath = Path.Combine(pkgfolder, pkgname.File); - if (!File.Exists(pkgpath)) - { - if (!Directory.Exists(pkgfolder)) - Directory.CreateDirectory(pkgfolder); - - await DownloadFileAsync( - pkgname.Url, - pkgpath - ); - } - - // Extract the binary and install it in the target folder - using var archive = new ZipArchive(File.OpenRead(pkgpath)); - var entry = archive.GetEntry(zipEntryName); - if (entry != null) - entry.ExtractToFile(Path.Combine(buildDir, Path.GetFileName(zipEntryName)), true); - } } diff --git a/ReleaseBuilder/ReleaseBuilder.csproj b/ReleaseBuilder/ReleaseBuilder.csproj index cc5019a30..dda3fa0e2 100644 --- a/ReleaseBuilder/ReleaseBuilder.csproj +++ b/ReleaseBuilder/ReleaseBuilder.csproj @@ -1,10 +1,11 @@ - + Exe net8.0 enable enable + Copyright © 2024 Team Duplicati, MIT license @@ -19,3 +20,4 @@ + diff --git a/Tools/SQLiteTool/SQLiteTool.csproj b/Tools/SQLiteTool/SQLiteTool.csproj index 24a4a820d..6a7afdafc 100644 --- a/Tools/SQLiteTool/SQLiteTool.csproj +++ b/Tools/SQLiteTool/SQLiteTool.csproj @@ -1,8 +1,9 @@ - + net8.0 Exe + Copyright © 2024 Team Duplicati, MIT license @@ -16,4 +17,4 @@ - \ No newline at end of file + diff --git a/Tools/ZipFileDebugger/ZipFileDebugger.csproj b/Tools/ZipFileDebugger/ZipFileDebugger.csproj index 197a80682..cc4c40db7 100644 --- a/Tools/ZipFileDebugger/ZipFileDebugger.csproj +++ b/Tools/ZipFileDebugger/ZipFileDebugger.csproj @@ -1,8 +1,9 @@ - + net8.0 Exe + Copyright © 2024 Team Duplicati, MIT license @@ -18,4 +19,4 @@ - \ No newline at end of file +