(ZIP): query password for encrypted archives.

This commit is contained in:
morkt
2018-01-30 06:34:24 +04:00
parent 98e42a1f66
commit 07c69a4866
13 changed files with 137 additions and 1 deletions

View File

@@ -862,5 +862,23 @@ namespace GameRes.Formats.Strings {
return ResourceManager.GetString("YPFTryGuess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Choose title or enter a password.
/// </summary>
public static string ZIPChoose {
get {
return ResourceManager.GetString("ZIPChoose", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Archive content is encrypted..
/// </summary>
public static string ZIPEncryptedNotice {
get {
return ResourceManager.GetString("ZIPEncryptedNotice", resourceCulture);
}
}
}
}