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

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2020-04-06 04:30:25 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2020-04-06 04:30:25 +0300
commit33ee3a2cf6e5b1ca955b9166d8a29deaeaad7669 (patch)
treeb2339379900a07522c2f9b357fcf9abad6859f8c /Duplicati/Library/Interface
parent16f54d2d72d4f5297d17f58e8921bfc85cbc62cb (diff)
Remove unused Strings.Common members.
The last references were removed in 5170c6ad1d ("Remove unused CommonStrings class"), but the last real usages were removed in revision 62c75d9af9 ("Removed all informs code (no more 1.3.x UI)").
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/Strings.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Duplicati/Library/Interface/Strings.cs b/Duplicati/Library/Interface/Strings.cs
index 53691dda0..2c00e5410 100644
--- a/Duplicati/Library/Interface/Strings.cs
+++ b/Duplicati/Library/Interface/Strings.cs
@@ -18,26 +18,8 @@ namespace Duplicati.Library.Interface.Strings {
public static string Unknown { get { return LC.L(@"Unknown"); } }
}
internal static class Common {
- public static string ConfigurationIsMissingItemError(string fieldname) { return LC.L(@"The configuration for the backend is not valid, it is missing the {0} field", fieldname); }
- public static string ConfirmTestConnectionQuestion { get { return LC.L(@"Do you want to test the connection?"); } }
- public static string ConnectionFailure(string message) { return LC.L(@"Connection Failed: {0}", message); }
- public static string ConnectionSuccess { get { return LC.L(@"Connection succeeded!"); } }
- public static string DefaultDirectoryWarning { get { return LC.L(@"You have not entered a path. This will store all backups in the default directory. Is this what you want?"); } }
- public static string EmptyPasswordError { get { return LC.L(@"You must enter a password"); } }
- public static string EmptyPasswordWarning { get { return LC.L(@"You have not entered a password.
-Proceed without a password?"); } }
- public static string EmptyServernameError { get { return LC.L(@"You must enter the name of the server"); } }
- public static string EmptyUsernameError { get { return LC.L(@"You must enter a username"); } }
- public static string EmptyUsernameWarning { get { return LC.L(@"You have not entered a username.
-This is fine if the server allows anonymous uploads, but likely a username is required
-Proceed without a username?"); } }
- public static string ExistingBackupDetectedQuestion { get { return LC.L(@"The connection succeeded but another backup was found in the destination folder. It is possible to configure Duplicati to store multiple backups in the same folder, but it is not recommended.
-
-Do you want to use the selected folder?"); } }
public static string FolderAlreadyExistsError { get { return LC.L(@"The folder cannot be created because it already exists"); } }
- public static string FolderCreated { get { return LC.L(@"Folder created!"); } }
public static string FolderMissingError { get { return LC.L(@"The requested folder does not exist"); } }
- public static string InvalidServernameError(string servername) { return LC.L(@"The server name ""{0}"" is not valid", servername); }
public static string CancelExceptionError { get { return LC.L(@"Cancelled"); } }
}
}