[VirtualPC disk image] Translate new strings to Spanish.

This commit is contained in:
2024-01-02 00:40:51 +00:00
parent 71f86bfaad
commit 4825d41460
5 changed files with 83 additions and 9 deletions

View File

@@ -88,9 +88,8 @@ public sealed partial class Vhd
/// <inheritdoc />
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions => new[]
{
("dynamic", typeof(bool), "Create a dynamic image, empty sectors are ignored", (object)true),
("block_size", typeof(uint),
"Block size. Must be a power of 2. Only 2MiB and 512KiB are supported by VirtualPC", 2097152)
("dynamic", typeof(bool), Localization.Create_a_dynamic_image, (object)true),
("block_size", typeof(uint), Localization.Vhd_Block_size_Must_be_a_power_of_2, 2097152)
};
/// <inheritdoc />