diff --git a/Aaru.Localization/UI.Designer.cs b/Aaru.Localization/UI.Designer.cs index abaa3e449..862a54819 100644 --- a/Aaru.Localization/UI.Designer.cs +++ b/Aaru.Localization/UI.Designer.cs @@ -1202,6 +1202,15 @@ namespace Aaru.Localization { } } + /// + /// Looks up a localized string similar to CD PMA:. + /// + public static string CD_PMA { + get { + return ResourceManager.GetString("CD_PMA", resourceCulture); + } + } + /// /// Looks up a localized string similar to CD read speed limited to. /// diff --git a/Aaru.Localization/UI.resx b/Aaru.Localization/UI.resx index 13b2b6c83..df43342ed 100644 --- a/Aaru.Localization/UI.resx +++ b/Aaru.Localization/UI.resx @@ -3102,4 +3102,7 @@ Do you want to continue? Debug + + CD PMA: + \ No newline at end of file diff --git a/Aaru/Commands/Image/Decode.cs b/Aaru/Commands/Image/Decode.cs index 7cded5f41..c7215ceb3 100644 --- a/Aaru/Commands/Image/Decode.cs +++ b/Aaru/Commands/Image/Decode.cs @@ -308,7 +308,7 @@ sealed class DecodeCommand : Command AaruConsole.WriteLine(UI.Error_0_reading_CD_PMA_from_disc_image, errno); else { - AaruConsole.WriteLine($"[bold]{"CD PMA:"}[/]"); + AaruConsole.WriteLine($"[bold]{UI.CD_PMA}[/]"); AaruConsole .WriteLine("================================================================================");