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

@@ -57,13 +57,13 @@ public sealed partial class Cdrdao
/// <inheritdoc />
public ImageInfo Info => _imageInfo;
/// <inheritdoc />
public string Name => "CDRDAO tocfile";
public string Name => Localization.Cdrdao_Name;
/// <inheritdoc />
public Guid Id => new("04D7BA12-1BE8-44D4-97A4-1B48A505463E");
/// <inheritdoc />
public string Format => "CDRDAO tocfile";
/// <inheritdoc />
public string Author => "Natalia Portillo";
public string Author => Authors.NataliaPortillo;
/// <inheritdoc />
public List<Partition> Partitions { get; private set; }
@@ -191,7 +191,7 @@ public sealed partial class Cdrdao
/// <inheritdoc />
public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions => new[]
{
("separate", typeof(bool), "Write each track to a separate file.", (object)false)
("separate", typeof(bool), Localization.Write_each_track_to_a_separate_file, (object)false)
};
/// <inheritdoc />
public IEnumerable<string> KnownExtensions => new[]