mirror of
https://github.com/aaru-dps/Aaru.CommonTypes.git
synced 2025-12-16 11:14:29 +00:00
Move all localizable strings from Aaru.Decoders project to resources.
This commit is contained in:
6
Localization/Localization.Designer.cs
generated
6
Localization/Localization.Designer.cs
generated
@@ -1221,6 +1221,12 @@ namespace Aaru.CommonTypes {
|
||||
}
|
||||
}
|
||||
|
||||
internal static string SCSI_Media_Type_Description_Exatape_80m {
|
||||
get {
|
||||
return ResourceManager.GetString("SCSI_Media_Type_Description_Exatape_80m", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
internal static string IDENTIFY_response_is_different_than_512_bytes_not_decoding {
|
||||
get {
|
||||
return ResourceManager.GetString("IDENTIFY_response_is_different_than_512_bytes_not_decoding", resourceCulture);
|
||||
|
||||
@@ -612,6 +612,9 @@
|
||||
<data name="SCSI_Media_Type_Description_Exatape_75m" xml:space="preserve">
|
||||
<value>SCSI medium type is {0:X2}h, density code is {1:X2}h, drive model starts with "exb" setting media type to 75m Exatape.</value>
|
||||
</data>
|
||||
<data name="SCSI_Media_Type_Description_Exatape_80m" xml:space="preserve">
|
||||
<value>SCSI medium type is {0:X2}h, density code is {1:X2}h, drive model starts with "exb" setting media type to 80m Exatape.</value>
|
||||
</data>
|
||||
<data name="IDENTIFY_response_is_different_than_512_bytes_not_decoding" xml:space="preserve">
|
||||
<value>IDENTIFY response is different than 512 bytes, not decoding.</value>
|
||||
</data>
|
||||
|
||||
@@ -1003,7 +1003,7 @@ public static partial class MediaTypeFromDevice
|
||||
{
|
||||
if(model.ToLowerInvariant().StartsWith("exb", StringComparison.Ordinal))
|
||||
{
|
||||
AaruConsole.DebugWriteLine("Media detection", Core.SCSI_Media_Type_Description_Exatape_80m,
|
||||
AaruConsole.DebugWriteLine("Media detection", Localization.SCSI_Media_Type_Description_Exatape_80m,
|
||||
mediumType, densityCode);
|
||||
|
||||
return MediaType.Exatape80m;
|
||||
@@ -1029,7 +1029,7 @@ public static partial class MediaTypeFromDevice
|
||||
{
|
||||
if(model.ToLowerInvariant().StartsWith("exb", StringComparison.Ordinal))
|
||||
{
|
||||
AaruConsole.DebugWriteLine("Media detection", Core.SCSI_Media_Type_Description_Exatape_80m,
|
||||
AaruConsole.DebugWriteLine("Media detection", Localization.SCSI_Media_Type_Description_Exatape_80m,
|
||||
mediumType, densityCode);
|
||||
|
||||
return MediaType.Exatape80m;
|
||||
|
||||
Reference in New Issue
Block a user