From 01116106d736f2fb00621ea2b70f6ec6f77ed403 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 1 May 2024 04:54:35 +0100 Subject: [PATCH] Localize "CD PMA:" string. --- Aaru.Localization/UI.Designer.cs | 9 +++++++++ Aaru.Localization/UI.resx | 3 +++ Aaru/Commands/Image/Decode.cs | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) 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 @@ public static string CD_full_TOC { } } + /// + /// 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 @@ public static int Invoke(bool verbose, bool debug, bool diskTags, string imageP 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("================================================================================");