ModernKeePassLib custom PCL version

This commit is contained in:
2017-09-22 15:40:24 +02:00
parent baba70e56d
commit a43bc20eb3
98 changed files with 6049 additions and 3038 deletions

View File

@@ -48,6 +48,7 @@ namespace ModernKeePassLib.Resources
m_strInvalidCompositeKeyHint = TryGetEx(dictNew, "InvalidCompositeKeyHint", m_strInvalidCompositeKeyHint);
m_strInvalidDataWhileDecoding = TryGetEx(dictNew, "InvalidDataWhileDecoding", m_strInvalidDataWhileDecoding);
m_strKeePass1xHint = TryGetEx(dictNew, "KeePass1xHint", m_strKeePass1xHint);
m_strKeyFileDbSel = TryGetEx(dictNew, "KeyFileDbSel", m_strKeyFileDbSel);
m_strMasterSeedLengthInvalid = TryGetEx(dictNew, "MasterSeedLengthInvalid", m_strMasterSeedLengthInvalid);
m_strOldFormat = TryGetEx(dictNew, "OldFormat", m_strOldFormat);
m_strTryAgainSecs = TryGetEx(dictNew, "TryAgainSecs", m_strTryAgainSecs);
@@ -78,6 +79,7 @@ namespace ModernKeePassLib.Resources
"InvalidCompositeKeyHint",
"InvalidDataWhileDecoding",
"KeePass1xHint",
"KeyFileDbSel",
"MasterSeedLengthInvalid",
"OldFormat",
"TryAgainSecs",
@@ -201,10 +203,10 @@ namespace ModernKeePassLib.Resources
}
private static string m_strFileSaveCorruptionWarning =
@"The target file might be in a corrupted state. Please try saving again, and if that fails, save the database to a different location.";
@"The target file might be corrupted. Please try saving again. If that fails, save the database to a different location.";
/// <summary>
/// Look up a localized string similar to
/// 'The target file might be in a corrupted state. Please try saving again, and if that fails, save the database to a different location.'.
/// 'The target file might be corrupted. Please try saving again. If that fails, save the database to a different location.'.
/// </summary>
public static string FileSaveCorruptionWarning
{
@@ -332,6 +334,17 @@ namespace ModernKeePassLib.Resources
get { return m_strKeePass1xHint; }
}
private static string m_strKeyFileDbSel =
@"Database files cannot be used as key files.";
/// <summary>
/// Look up a localized string similar to
/// 'Database files cannot be used as key files.'.
/// </summary>
public static string KeyFileDbSel
{
get { return m_strKeyFileDbSel; }
}
private static string m_strMasterSeedLengthInvalid =
@"The length of the master key seed is invalid!";
/// <summary>