Localize "CD PMA:" string.

This commit is contained in:
2024-05-01 04:54:35 +01:00
parent b34179ebfe
commit 01116106d7
3 changed files with 13 additions and 1 deletions

View File

@@ -1202,6 +1202,15 @@ namespace Aaru.Localization {
}
}
/// <summary>
/// Looks up a localized string similar to CD PMA:.
/// </summary>
public static string CD_PMA {
get {
return ResourceManager.GetString("CD_PMA", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CD read speed limited to.
/// </summary>

View File

@@ -3102,4 +3102,7 @@ Do you want to continue?</value>
<data name="LogEntry_Type_Debug" xml:space="preserve">
<value>Debug</value>
</data>
<data name="CD_PMA" xml:space="preserve">
<value>CD PMA:</value>
</data>
</root>

View File

@@ -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("================================================================================");