Move all localizable strings from Aaru.Devices project to resources.

This commit is contained in:
2022-11-27 18:51:44 +00:00
parent 4c9176ee42
commit 119ceea01d
41 changed files with 1845 additions and 301 deletions

View File

@@ -74,7 +74,7 @@ public partial class Device
var registers = new AtaRegistersChs
{
Command = (byte)AtaCommands.IdentifyPacketDevice,
Sector = 1
Sector = 1
};
LastError = SendAtaCommand(registers, out statusRegisters, AtaProtocol.PioIn, AtaTransferRegister.SectorCount,
@@ -82,7 +82,7 @@ public partial class Device
Error = LastError != 0;
AaruConsole.DebugWriteLine("ATA Device", "IDENTIFY PACKET DEVICE took {0} ms.", duration);
AaruConsole.DebugWriteLine("ATA Device", Localization.IDENTIFY_PACKET_DEVICE_took_0_ms, duration);
return sense;
}