Move all localizable strings from Aaru.Images project to resources.

This commit is contained in:
2022-11-29 02:10:37 +00:00
parent cfd9069429
commit 179f6e3459
165 changed files with 11442 additions and 2335 deletions

View File

@@ -44,17 +44,17 @@ public sealed partial class DiskCopy42
/// <inheritdoc />
public ImageInfo Info => imageInfo;
/// <inheritdoc />
public string Name => "Apple DiskCopy 4.2";
public string Name => Localization.DiskCopy42_Name;
/// <inheritdoc />
public Guid Id => new("0240B7B1-E959-4CDC-B0BD-386D6E467B88");
/// <inheritdoc />
public string Author => "Natalia Portillo";
public string Author => Authors.NataliaPortillo;
/// <inheritdoc />
public List<DumpHardwareType> DumpHardware => null;
/// <inheritdoc />
public CICMMetadataType CicmMetadata => null;
/// <inheritdoc />
public string Format => "Apple DiskCopy 4.2";
public string Format => Localization.DiskCopy42_Name;
/// <inheritdoc />
public IEnumerable<MediaTagType> SupportedMediaTags => Array.Empty<MediaTagType>();
/// <inheritdoc />
@@ -71,7 +71,7 @@ public sealed partial class DiskCopy42
/// <inheritdoc />
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions => new[]
{
("macosx", typeof(bool), "Use Mac OS X format byte", (object)false)
("macosx", typeof(bool), Localization.Use_Mac_OS_X_format_byte, (object)false)
};
/// <inheritdoc />
public IEnumerable<string> KnownExtensions => new[]