From 1ab023bbc65b22fdf1573d7b6164a927b733e1ef Mon Sep 17 00:00:00 2001 From: Rebecca Wallander Date: Sat, 15 Mar 2025 21:53:45 +0100 Subject: [PATCH] Read Lite-On raw DVD buffer --- Aaru.CommonTypes/Metadata/DeviceReport.cs | 6 + Aaru.Core/Devices/Dumping/Sbc/Cache.cs | 2 +- Aaru.Core/Devices/Dumping/Sbc/Dump.cs | 27 +- Aaru.Core/Devices/Dumping/Sbc/Error.cs | 48 +- Aaru.Core/Devices/Dumping/Sbc/Trim.cs | 59 +- Aaru.Core/Devices/ReaderSCSI.cs | 56 +- Aaru.Core/Devices/Report/MMC.cs | 40 +- Aaru.Devices/Device/ScsiCommands/HL-DT-ST.cs | 64 +- Aaru.Devices/Device/ScsiCommands/LiteOn.cs | 303 + Aaru.Devices/Device/ScsiCommands/Plextor.cs | 6 +- .../Localization/Localization.Designer.cs | 2024 +- Aaru.Devices/Localization/Localization.resx | 3 + Aaru.Images/AaruFormat/Enums.cs | 6 +- Aaru.Localization/Core.Designer.cs | 16009 ++++++---------- Aaru.Localization/Core.resx | 10 +- Aaru.Tests.Devices/SCSI/HL-DT-ST.cs | 4 +- Aaru/Commands/Device/DeviceReport.cs | 8 +- 17 files changed, 7629 insertions(+), 11046 deletions(-) create mode 100644 Aaru.Devices/Device/ScsiCommands/LiteOn.cs diff --git a/Aaru.CommonTypes/Metadata/DeviceReport.cs b/Aaru.CommonTypes/Metadata/DeviceReport.cs index 5807d5838..5d7ed784a 100644 --- a/Aaru.CommonTypes/Metadata/DeviceReport.cs +++ b/Aaru.CommonTypes/Metadata/DeviceReport.cs @@ -779,6 +779,9 @@ public class TestedMedia [DisplayName("Can read scrambled DVD sectors using HL-DT-ST cache trick")] public bool? SupportsHLDTSTReadRawDVD { get; set; } + [DisplayName("Can read scrambled DVD sectors using Lite-On cache trick")] + public bool? SupportsLiteOnReadRawDVD { get; set; } + [DisplayName("Supports NEC READ CD-DA command")] public bool? SupportsNECReadCDDA { get; set; } @@ -1155,6 +1158,9 @@ public class TestedMedia [DisplayName("Data from HL-DT-ST's scrambled DVD reading trick")] public byte[] HLDTSTReadRawDVDData { get; set; } + [DisplayName("Data from Lite-On's scrambled DVD reading trick")] + public byte[] LiteOnReadRawDVDData { get; set; } + #endregion } diff --git a/Aaru.Core/Devices/Dumping/Sbc/Cache.cs b/Aaru.Core/Devices/Dumping/Sbc/Cache.cs index 28408911f..2f5ee9bc4 100644 --- a/Aaru.Core/Devices/Dumping/Sbc/Cache.cs +++ b/Aaru.Core/Devices/Dumping/Sbc/Cache.cs @@ -175,7 +175,7 @@ partial class Dump // Write empty data _writeStopwatch.Restart(); - outputFormat.WriteSectors(new byte[blockSize * _skip], i, _skip); + outputFormat.WriteSectorsLong(new byte[blockSize * _skip], i, _skip); imageWriteDuration += _writeStopwatch.Elapsed.TotalSeconds; for(ulong b = i; b < i + _skip; b++) _resume.BadBlocks.Add(b); diff --git a/Aaru.Core/Devices/Dumping/Sbc/Dump.cs b/Aaru.Core/Devices/Dumping/Sbc/Dump.cs index cc64b50c8..957466075 100644 --- a/Aaru.Core/Devices/Dumping/Sbc/Dump.cs +++ b/Aaru.Core/Devices/Dumping/Sbc/Dump.cs @@ -59,6 +59,7 @@ using DVDDecryption = Aaru.Decryption.DVD.Dump; using Track = Aaru.CommonTypes.Structs.Track; using TrackType = Aaru.CommonTypes.Enums.TrackType; using Version = Aaru.CommonTypes.Interop.Version; +using Aaru.Decoders.DVD; // ReSharper disable JoinDeclarationAndInitializer @@ -332,11 +333,19 @@ partial class Dump else { // Only a block will be read, but it contains 16 sectors and command expect sector number not block number - blocksToRead = (uint)(longBlockSize == 37856 ? 16 : 1); + blocksToRead = 16; + + mediaTags.TryGetValue(MediaTagType.DVD_PFI, out byte[] pfi); + PFI.PhysicalFormatInformation? decodedPfi = PFI.Decode(pfi, dskType); + + scsiReader.layerbreak = decodedPfi?.Layer0EndPSN ?? 0; + scsiReader.otp = decodedPfi is { Layers: 1, TrackPath: false }; + + if(scsiReader.HldtstReadRaw) blocksToRead = 1; UpdateStatus?.Invoke(string.Format(Localization.Core.Reading_0_raw_bytes_1_cooked_bytes_per_sector, longBlockSize, - blockSize * blocksToRead)); + blockSize)); physicalBlockSize = longBlockSize; blockSize = longBlockSize; @@ -835,7 +844,7 @@ partial class Dump { mediaTags.TryGetValue(MediaTagType.DVD_DiscKey_Decrypted, out byte[] discKey); - if(scsiReader.HldtstReadRaw) + if(scsiReader.HldtstReadRaw || scsiReader.LiteOnReadRaw) { ReadCacheData(blocks, blocksToRead, @@ -913,6 +922,8 @@ partial class Dump #region Trimming + mediaTags.TryGetValue(MediaTagType.DVD_DiscKey_Decrypted, out byte[] mediaTag); + if(_resume.BadBlocks.Count > 0 && !_aborted && _trim && newTrim) { _trimStopwatch.Restart(); @@ -921,7 +932,7 @@ partial class Dump InitProgress?.Invoke(); - TrimSbcData(scsiReader, extents, currentTry, blankExtents); + TrimSbcData(scsiReader, extents, currentTry, blankExtents, mediaTag ?? null); EndProgress?.Invoke(); _trimStopwatch.Stop(); @@ -940,14 +951,18 @@ partial class Dump #region Error handling if(_resume.BadBlocks.Count > 0 && !_aborted && _retryPasses > 0) - RetrySbcData(scsiReader, currentTry, extents, ref totalDuration, blankExtents); + RetrySbcData(scsiReader, currentTry, extents, ref totalDuration, blankExtents, mediaTag ?? null); if(_resume.MissingTitleKeys?.Count > 0 && !_aborted && _retryPasses > 0 && Settings.Settings.Current.EnableDecryption && _titleKeys && - mediaTags.TryGetValue(MediaTagType.DVD_DiscKey_Decrypted, out byte[] mediaTag)) + + // Unnecessary since keys are already in raw data + !scsiReader.LiteOnReadRaw && + !scsiReader.HldtstReadRaw && + mediaTag is not null) RetryTitleKeys(dvdDecrypt, mediaTag, ref totalDuration); #endregion Error handling diff --git a/Aaru.Core/Devices/Dumping/Sbc/Error.cs b/Aaru.Core/Devices/Dumping/Sbc/Error.cs index 26a9294f1..3a28d9f2b 100644 --- a/Aaru.Core/Devices/Dumping/Sbc/Error.cs +++ b/Aaru.Core/Devices/Dumping/Sbc/Error.cs @@ -54,7 +54,7 @@ partial class Dump /// SCSI reader /// Blank extents void RetrySbcData(Reader scsiReader, DumpHardware currentTry, ExtentsULong extents, ref double totalDuration, - ExtentsULong blankExtents) + ExtentsULong blankExtents, byte[] discKey) { var pass = 1; var forward = true; @@ -312,7 +312,51 @@ partial class Dump { _resume.BadBlocks.Remove(badSector); extents.Add(badSector); - outputFormat.WriteSector(buffer, badSector); + + if(scsiReader.LiteOnReadRaw || scsiReader.HldtstReadRaw) + { + byte[] cmi = new byte[1]; + + byte[] key = buffer.Skip(7).Take(5).ToArray(); + + if(key.All(static k => k == 0)) + { + outputFormat.WriteSectorTag([0, 0, 0, 0, 0], badSector, SectorTagType.DvdTitleKeyDecrypted); + + _resume.MissingTitleKeys?.Remove(badSector); + } + else + { + CSS.DecryptTitleKey(discKey, key, out byte[] tmpBuf); + outputFormat.WriteSectorTag(tmpBuf, badSector, SectorTagType.DvdTitleKeyDecrypted); + _resume.MissingTitleKeys?.Remove(badSector); + + cmi[0] = buffer[6]; + } + + if(!_storeEncrypted) + { + ErrorNumber errno = + outputFormat.ReadSectorsTag(badSector, + 1, + SectorTagType.DvdTitleKeyDecrypted, + out byte[] titleKey); + + if(errno != ErrorNumber.NoError) + { + ErrorMessage?.Invoke(string.Format(Localization.Core.Error_retrieving_title_key_for_sector_0, + badSector)); + } + else + buffer = CSS.DecryptSectorLong(buffer, titleKey, cmi); + } + + _resume.BadBlocks.Remove(badSector); + outputFormat.WriteSectorLong(buffer, badSector); + } + else + outputFormat.WriteSector(buffer, badSector); + _mediaGraph?.PaintSectorGood(badSector); UpdateStatus?.Invoke(string.Format(Localization.Core.Correctly_retried_block_0_in_pass_1, diff --git a/Aaru.Core/Devices/Dumping/Sbc/Trim.cs b/Aaru.Core/Devices/Dumping/Sbc/Trim.cs index 2aad8f0d5..78cf63570 100644 --- a/Aaru.Core/Devices/Dumping/Sbc/Trim.cs +++ b/Aaru.Core/Devices/Dumping/Sbc/Trim.cs @@ -28,9 +28,12 @@ // ReSharper disable InlineOutVariableDeclaration // ReSharper disable TooWideLocalVariableScope +using System.Linq; using Aaru.CommonTypes.AaruMetadata; +using Aaru.CommonTypes.Enums; using Aaru.CommonTypes.Extents; using Aaru.CommonTypes.Interfaces; +using Aaru.Decryption.DVD; namespace Aaru.Core.Devices.Dumping; @@ -41,7 +44,7 @@ partial class Dump /// Correctly dump extents /// Resume information /// Blank extents - void TrimSbcData(Reader scsiReader, ExtentsULong extents, DumpHardware currentTry, ExtentsULong blankExtents) + void TrimSbcData(Reader scsiReader, ExtentsULong extents, DumpHardware currentTry, ExtentsULong blankExtents, byte[] discKey) { ulong[] tmpArray = _resume.BadBlocks.ToArray(); bool sense; @@ -86,9 +89,61 @@ partial class Dump if((sense || _dev.Error) && !recoveredError) continue; + if(scsiReader.HldtstReadRaw) + + // The HL-DT-ST buffer is stored and read in 96-sector chunks. If we start to read at an LBA which is + // not modulo 96, the data will not be correctly fetched. Therefore, we begin every recovery read with + // filling the buffer at a known offset. + // TODO: This is very ugly and there probably exist a more elegant way to solve this issue. + scsiReader.ReadBlock(out _, badSector - badSector % 96 + 1, out _, out _, out _); + _resume.BadBlocks.Remove(badSector); extents.Add(badSector); - outputFormat.WriteSector(buffer, badSector); + + if(scsiReader.LiteOnReadRaw || scsiReader.HldtstReadRaw) + { + byte[] cmi = new byte[1]; + + byte[] key = buffer.Skip(7).Take(5).ToArray(); + + if(key.All(static k => k == 0)) + { + outputFormat.WriteSectorTag([0, 0, 0, 0, 0], badSector, SectorTagType.DvdTitleKeyDecrypted); + + _resume.MissingTitleKeys?.Remove(badSector); + } + else + { + CSS.DecryptTitleKey(discKey, key, out byte[] tmpBuf); + outputFormat.WriteSectorTag(tmpBuf, badSector, SectorTagType.DvdTitleKeyDecrypted); + _resume.MissingTitleKeys?.Remove(badSector); + + cmi[0] = buffer[6]; + } + + if(!_storeEncrypted) + { + ErrorNumber errno = + outputFormat.ReadSectorsTag(badSector, + 1, + SectorTagType.DvdTitleKeyDecrypted, + out byte[] titleKey); + + if(errno != ErrorNumber.NoError) + { + ErrorMessage?.Invoke(string.Format(Localization.Core.Error_retrieving_title_key_for_sector_0, + badSector)); + } + else + buffer = CSS.DecryptSectorLong(buffer, titleKey, cmi); + } + + _resume.BadBlocks.Remove(badSector); + outputFormat.WriteSectorLong(buffer, badSector); + } + else + outputFormat.WriteSector(buffer, badSector); + _mediaGraph?.PaintSectorGood(badSector); } diff --git a/Aaru.Core/Devices/ReaderSCSI.cs b/Aaru.Core/Devices/ReaderSCSI.cs index af8d520c3..843a97dbb 100644 --- a/Aaru.Core/Devices/ReaderSCSI.cs +++ b/Aaru.Core/Devices/ReaderSCSI.cs @@ -54,6 +54,9 @@ sealed partial class Reader // TODO: Raw reading public bool HldtstReadRaw; + public bool LiteOnReadRaw; + public uint layerbreak; + public bool otp; ulong ScsiGetBlocks() => ScsiGetBlockSize() ? 0 : Blocks; @@ -570,16 +573,22 @@ sealed partial class Reader switch(_dev.Manufacturer) { case "HL-DT-ST": - HldtstReadRaw = !_dev.HlDtStReadRawDvd(out _, out senseBuf, 0, 1, _timeout, out _); + HldtstReadRaw = + !_dev.HlDtStReadRawDvd(out _, out senseBuf, 0, 1, _timeout, out _, layerbreak, otp); break; case "PLEXTOR": _plextorReadRaw = !_dev.PlextorReadRawDvd(out _, out senseBuf, 0, 1, _timeout, out _); + break; + case "LITE-ON": + LiteOnReadRaw = + !_dev.LiteOnReadRawDvd(out _, out senseBuf, 0, 1, _timeout, out _, layerbreak, otp); + break; } - if(HldtstReadRaw || _plextorReadRaw) + if(HldtstReadRaw || _plextorReadRaw || LiteOnReadRaw) { CanReadRaw = true; LongBlockSize = 2064; @@ -612,7 +621,9 @@ sealed partial class Reader AaruConsole.WriteLine(Localization.Core.Using_SyQuest_READ_LONG_6_command); else if(HldtstReadRaw) AaruConsole.WriteLine(Localization.Core.Using_HL_DT_ST_raw_DVD_reading); - else if(_plextorReadRaw) AaruConsole.WriteLine(Localization.Core.Using_Plextor_raw_DVD_reading); + else if(_plextorReadRaw) + AaruConsole.WriteLine(Localization.Core.Using_Plextor_raw_DVD_reading); + else if(LiteOnReadRaw) AaruConsole.WriteLine(Localization.Core.Using_Lite_On_raw_DVD_reading); } else if(_read6) AaruConsole.WriteLine(Localization.Core.Using_SCSI_READ_6_command); @@ -674,7 +685,7 @@ sealed partial class Reader while(true) { - if(HldtstReadRaw) + if(HldtstReadRaw || LiteOnReadRaw) BlocksToRead = 1; else if(_read6) { @@ -804,24 +815,14 @@ sealed partial class Reader } else if(HldtstReadRaw) { - // We need to fill the buffer before reading it with the HL-DT-ST command. We don't care about sense, - // because the data can be wrong anyway, so we need to check the buffer data instead. - _dev.Read12(out buffer, - out senseBuf, - 0, - false, - false, - false, - false, - (uint)block, - LogicalBlockSize, - 0, - 16, - false, - _timeout, - out duration); - - sense = _dev.HlDtStReadRawDvd(out buffer, out senseBuf, (uint)block, count, _timeout, out duration); + sense = _dev.HlDtStReadRawDvd(out buffer, + out senseBuf, + (uint)block, + count, + _timeout, + out duration, + layerbreak, + otp); } else if(_plextorReadRaw) { @@ -832,6 +833,17 @@ sealed partial class Reader _timeout, out duration); } + else if(LiteOnReadRaw) + { + sense = _dev.LiteOnReadRawDvd(out buffer, + out senseBuf, + (uint)block, + count, + _timeout, + out duration, + layerbreak, + otp); + } else return true; } diff --git a/Aaru.Core/Devices/Report/MMC.cs b/Aaru.Core/Devices/Report/MMC.cs index 384e18f12..336749427 100644 --- a/Aaru.Core/Devices/Report/MMC.cs +++ b/Aaru.Core/Devices/Report/MMC.cs @@ -577,7 +577,7 @@ public sealed partial class DeviceReport /// Try MediaTek vendor commands /// public TestedMedia ReportMmcMedia(string mediaType, bool tryPlextor, bool tryPioneer, bool tryNec, bool tryHldtst, - bool tryMediaTekF106) + bool tryMediaTekF106, bool tryLiteOn) { var sense = true; byte[] buffer = []; @@ -2743,24 +2743,8 @@ public sealed partial class DeviceReport { ctx.AddTask(Localization.Core.Trying_HL_DT_ST_aka_LG_trick_to_raw_read_DVDs).IsIndeterminate(); - // We need to fill the buffer before reading it with the HL-DT-ST command. We don't care about sense, - // because the data can be wrong anyway, so we need to check the buffer data later instead. - _dev.Read10(out buffer, - out _, - 0, - false, - false, - false, - false, - 0, - 2048, - 0, - 1, - _dev.Timeout, - out _); - mediaTest.SupportsHLDTSTReadRawDVD = - !_dev.HlDtStReadRawDvd(out buffer, out senseBuffer, 16, 1, _dev.Timeout, out _); + !_dev.HlDtStReadRawDvd(out buffer, out senseBuffer, 16, 1, _dev.Timeout, out _, 0xffff, false); }); AaruConsole.DebugWriteLine(SCSI_MODULE_NAME, @@ -2773,6 +2757,26 @@ public sealed partial class DeviceReport if(mediaTest.SupportsHLDTSTReadRawDVD == true) mediaTest.HLDTSTReadRawDVDData = buffer; } + if(tryLiteOn) + { + Spectre.ProgressSingleSpinner(ctx => + { + ctx.AddTask(Localization.Core.Trying_Lite_On_trick_to_raw_read_DVDs).IsIndeterminate(); + + mediaTest.SupportsLiteOnReadRawDVD = + !_dev.LiteOnReadRawDvd(out buffer, out senseBuffer, 16, 1, _dev.Timeout, out _, 0xffff, false); + }); + + AaruConsole.DebugWriteLine(SCSI_MODULE_NAME, + Localization.Core.Sense_equals_0, + !mediaTest.SupportsLiteOnReadRawDVD); + + if(mediaTest.SupportsLiteOnReadRawDVD == true) + mediaTest.SupportsLiteOnReadRawDVD = !ArrayHelpers.ArrayIsNullOrEmpty(buffer); + + if(mediaTest.SupportsLiteOnReadRawDVD == true) mediaTest.LiteOnReadRawDVDData = buffer; + } + if(tryMediaTekF106) { var triedLba0 = false; diff --git a/Aaru.Devices/Device/ScsiCommands/HL-DT-ST.cs b/Aaru.Devices/Device/ScsiCommands/HL-DT-ST.cs index 9f0ccc419..d1b7c5a6e 100644 --- a/Aaru.Devices/Device/ScsiCommands/HL-DT-ST.cs +++ b/Aaru.Devices/Device/ScsiCommands/HL-DT-ST.cs @@ -50,9 +50,15 @@ public partial class Device /// Duration in milliseconds it took for the device to execute the command. /// Start block address. /// How many blocks to read. + /// The address in which the layerbreak occur + /// Set to true if disk is Opposite Track Path (OTP) public bool HlDtStReadRawDvd(out byte[] buffer, out byte[] senseBuffer, uint lba, uint transferLength, uint timeout, - out double duration) + out double duration, uint layerbreak, bool otp) { + // We need to fill the buffer before reading it with the HL-DT-ST command. We don't care about sense, + // because the data can be wrong anyway, so we check the buffer data later instead. + Read12(out _, out _, 0, false, false, false, false, lba, 2048, 0, 16, false, timeout, out duration); + senseBuffer = new byte[64]; var cdb = new byte[12]; buffer = new byte[2064 * transferLength]; @@ -83,7 +89,7 @@ public partial class Device AaruConsole.DebugWriteLine(SCSI_MODULE_NAME, Localization.HL_DT_ST_READ_DVD_RAW_took_0_ms, duration); - if(!CheckSectorNumber(buffer, lba, transferLength)) return true; + if(!CheckSectorNumber(buffer, lba, transferLength, layerbreak, otp)) return true; if(_decoding.Scramble(buffer, transferLength, out byte[] scrambledBuffer) != ErrorNumber.NoError) return true; @@ -97,19 +103,67 @@ public partial class Device /// /// Data buffer /// First consecutive LBA of the buffer - /// How many blocks to in buffer + /// How many blocks in buffer + /// The address in which the layerbreak occur + /// Set to true if disk is Opposite Track Path (OTP) /// false if any sector is not matching expected value, else true - static bool CheckSectorNumber(IReadOnlyList buffer, uint firstLba, uint transferLength) + static bool CheckSectorNumber(IReadOnlyList buffer, uint firstLba, uint transferLength, uint layerbreak, + bool otp) { for(var i = 0; i < transferLength; i++) { + byte layer = (byte)(buffer[0 + 2064 * i] & 0x1); byte[] sectorBuffer = [0x0, buffer[1 + 2064 * i], buffer[2 + 2064 * i], buffer[3 + 2064 * i]]; var sectorNumber = BigEndianBitConverter.ToUInt32(sectorBuffer, 0); - if(sectorNumber != firstLba + i + 0x30000) return false; + + if(otp) + { + if(!IsCorrectDlOtpPsn(sectorNumber, (ulong)(firstLba + i), layer, layerbreak)) return false; + } + else + { + if(!IsCorrectSlPsn(sectorNumber, (ulong)(firstLba + i))) return false; + } } return true; } + + /// + /// Checks if the PSN for a raw sector matches the expected LBA for a single layer DVD + /// + /// The Sector Number from Identification Data (ID) + /// The expected LBA + /// false if the sector is not matching expected value, else true + private static bool IsCorrectSlPsn(uint sectorNumber, ulong lba) => sectorNumber == lba + 0x30000; + + /// + /// Checks if the PSN for a raw sector matches the expected LBA for a dual layer DVD with parallel track path + /// + /// The Sector Number from Identification Data (ID) + /// The expected LBA + /// false if the sector is not matching expected value, else true + private static bool IsCorrectDlPtpPsn(uint sectorNumber, ulong lba, byte layer, uint layerbreak) + { + if(layer != 1) return IsCorrectSlPsn(sectorNumber, lba); + + return sectorNumber == (lba - layerbreak) + 0x30000; + } + + /// + /// Checks if the PSN for a raw sector matches the expected LBA for a dual layer DVD with opposite track path + /// + /// The Sector Number from Identification Data (ID) + /// The expected LBA + /// false if the sector is not matching expected value, else true + private static bool IsCorrectDlOtpPsn(uint sectorNumber, ulong lba, byte layer, uint layerbreak) + { + if(layer != 1) return IsCorrectSlPsn(sectorNumber, lba); + + ulong n = ~(layerbreak + 1 + (layerbreak - (lba + 0x30000))) & 0x00ffffff; + + return sectorNumber == n; + } } \ No newline at end of file diff --git a/Aaru.Devices/Device/ScsiCommands/LiteOn.cs b/Aaru.Devices/Device/ScsiCommands/LiteOn.cs new file mode 100644 index 000000000..46fba1366 --- /dev/null +++ b/Aaru.Devices/Device/ScsiCommands/LiteOn.cs @@ -0,0 +1,303 @@ +// /*************************************************************************** +// Aaru Data Preservation Suite +// ---------------------------------------------------------------------------- +// +// Filename : LiteOn.cs +// Author(s) : Rebecca Wallander +// +// Component : LiteOn vendor commands. +// +// --[ Description ] ---------------------------------------------------------- +// +// Contains vendor commands for Lite-On SCSI devices. +// +// --[ License ] -------------------------------------------------------------- +// +// This library is free software; you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; either version 2.1 of the +// License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, see . +// +// ---------------------------------------------------------------------------- +// Copyright © 2011-2025 Rebecca Wallander +// ****************************************************************************/ + +using System; +using Aaru.CommonTypes.Enums; +using Aaru.Console; + +namespace Aaru.Devices; + +public partial class Device +{ + private uint _bufferOffset = 0; + + /// Reads a "raw" sector from DVD on Lite-On drives. + /// true if the command failed and contains the sense buffer. + /// Buffer where the ReadBuffer (RAW) response will be stored + /// Sense buffer. + /// Timeout in seconds. + /// Duration in milliseconds it took for the device to execute the command. + /// Start block address. + /// How many blocks to read. + /// The address in which the layerbreak occur + /// Set to true if disk is Opposite Track Path (OTP) + public bool LiteOnReadRawDvd(out byte[] buffer, out byte[] senseBuffer, uint lba, uint transferLength, uint timeout, + out double duration, uint layerbreak, bool otp) + { + _bufferOffset %= 714; + + bool sense; + + if(layerbreak > 0 && transferLength > 1 && lba + 0x30000 > layerbreak - 256 && lba + 0x30000 < layerbreak + 256) + { + buffer = new byte[transferLength * 2064]; + duration = 0; + senseBuffer = new byte[64]; + + return true; + } + + if(714 - _bufferOffset < transferLength) + { + sense = LiteOnReadSectorsAcrossBufferBorder(out buffer, + out senseBuffer, + lba, + transferLength, + timeout, + out duration, + layerbreak, + otp); + } + else + { + sense = LiteOnReadSectorsFromBuffer(out buffer, + out senseBuffer, + lba, + transferLength, + timeout, + out duration, + layerbreak, + otp); + } + + Error = LastError != 0; + + AaruConsole.DebugWriteLine(SCSI_MODULE_NAME, Localization.LiteOn_READ_DVD_RAW_took_0_ms, duration); + + return sense; + } + + /// + /// Reads the Lite-On device's memory buffer and returns raw sector data + /// + /// Buffer where the ReadBuffer (RAW) response will be stored + /// Sense buffer. + /// The offset to read the buffer at + /// + /// Timeout in seconds. + /// Duration in milliseconds it took for the device to execute the command. + /// Start block address. + /// true if the command failed and contains the sense buffer. + private bool LiteOnReadBuffer(out byte[] buffer, out byte[] senseBuffer, uint bufferOffset, uint transferLength, + uint timeout, out double duration, uint lba) + { + // We need to fill the buffer before reading it with the ReadBuffer command. We don't care about sense, + // because the data can be wrong anyway, so we check the buffer data later instead. + Read12(out _, out _, 0, false, false, false, false, lba, 2048, 0, 16, false, timeout, out duration); + + senseBuffer = new byte[64]; + var cdb = new byte[10]; + + buffer = new byte[transferLength]; + + cdb[0] = (byte)ScsiCommands.ReadBuffer; + cdb[1] = 0x01; + cdb[2] = 0x01; + cdb[3] = (byte)((bufferOffset & 0xFF0000) >> 16); + cdb[4] = (byte)((bufferOffset & 0xFF00) >> 8); + cdb[5] = (byte)(bufferOffset & 0xFF); + cdb[6] = (byte)((buffer.Length & 0xFF0000) >> 16); + cdb[7] = (byte)((buffer.Length & 0xFF00) >> 8); + cdb[8] = (byte)(buffer.Length & 0xFF); + + LastError = SendScsiCommand(cdb, + ref buffer, + out senseBuffer, + timeout, + ScsiDirection.In, + out duration, + out bool sense); + + return sense; + } + + /// + /// Reads raw sectors from the device's memory + /// + /// true if the command failed and contains the sense buffer. + /// Buffer where the ReadBuffer (RAW) response will be stored + /// Sense buffer. + /// Timeout in seconds. + /// Duration in milliseconds it took for the device to execute the command. + /// Start block address. + /// How many blocks to read. + /// The address in which the layerbreak occur + /// Set to true if disk is Opposite Track Path (OTP) + private bool LiteOnReadSectorsFromBuffer(out byte[] buffer, out byte[] senseBuffer, uint lba, uint transferLength, + uint timeout, out double duration, uint layerbreak, bool otp) + { + bool sense = LiteOnReadBuffer(out buffer, + out senseBuffer, + _bufferOffset * 2384, + transferLength * 2384, + timeout, + out duration, + lba); + + byte[] deinterleaved = DeinterleaveEccBlock(buffer, transferLength); + + if(!CheckSectorNumber(deinterleaved, lba, transferLength, layerbreak, true)) + { + // Buffer offset lost, try to find it again + int offset = FindBufferOffset(lba, timeout, layerbreak, otp); + + if(offset == -1) return true; + + _bufferOffset = (uint)offset; + + sense = LiteOnReadBuffer(out buffer, + out senseBuffer, + _bufferOffset * 2384, + transferLength * 2384, + timeout, + out duration, + lba); + + deinterleaved = DeinterleaveEccBlock(buffer, transferLength); + + if(!CheckSectorNumber(deinterleaved, lba, transferLength, layerbreak, otp)) return true; + } + + if(_decoding.Scramble(deinterleaved, transferLength, out byte[] scrambledBuffer) != ErrorNumber.NoError) + return true; + + buffer = scrambledBuffer; + + _bufferOffset += transferLength; + + return sense; + } + + /// + /// Reads raw sectors when they cross the device's memory border + /// + /// true if the command failed and contains the sense buffer. + /// Buffer where the ReadBuffer (RAW) response will be stored + /// Sense buffer. + /// Timeout in seconds. + /// Duration in milliseconds it took for the device to execute the command. + /// Start block address. + /// How many blocks to read. + /// The address in which the layerbreak occur + /// Set to true if disk is Opposite Track Path (OTP) + private bool LiteOnReadSectorsAcrossBufferBorder(out byte[] buffer, out byte[] senseBuffer, uint lba, + uint transferLength, uint timeout, out double duration, + uint layerbreak, bool otp) + { + uint newTransferLength1 = 714 - _bufferOffset; + uint newTransferLength2 = transferLength - newTransferLength1; + + bool sense1 = LiteOnReadBuffer(out byte[] buffer1, + out byte[] _, + _bufferOffset * 2384, + newTransferLength1 * 2384, + timeout, + out double duration1, + lba); + + bool sense2 = LiteOnReadBuffer(out byte[] buffer2, + out byte[] _, + 0, + newTransferLength2 * 2384, + timeout, + out double duration2, + lba); + + senseBuffer = new byte[64]; // TODO + + buffer = new byte[2384 * transferLength]; + Array.Copy(buffer1, buffer, buffer1.Length); + Array.Copy(buffer2, 0, buffer, buffer1.Length, buffer2.Length); + + duration = duration1 + duration2; + + byte[] deinterleaved = DeinterleaveEccBlock(buffer, transferLength); + + if(!CheckSectorNumber(deinterleaved, lba, transferLength, layerbreak, otp)) return true; + + if(_decoding.Scramble(deinterleaved, transferLength, out byte[] scrambledBuffer) != ErrorNumber.NoError) + return true; + + buffer = scrambledBuffer; + + _bufferOffset = newTransferLength2; + + return sense1 && sense2; + } + + /// + /// Sometimes the offset on the drive memory can get lost. This tries to find it again. + /// + /// The expected LBA + /// Timeout in seconds. + /// The address in which the layerbreak occur + /// Set to true if disk is Opposite Track Path (OTP) + /// The offset on the device memory, or -1 if not found + private int FindBufferOffset(uint lba, uint timeout, uint layerbreak, bool otp) + { + for(uint i = 0; i < 714; i++) + { + LiteOnReadBuffer(out byte[] buffer, out byte[] _, i * 2384, 2384, timeout, out double _, lba); + + if(CheckSectorNumber(buffer, lba, 1, layerbreak, otp)) + { + return (int)i; + } + } + + return -1; + } + + /// + /// Deinterleave the ECC block stored within a 2384 byte raw sector + /// + /// Data buffer + /// How many blocks in buffer + /// + /// The deinterleaved sectors + private static byte[] DeinterleaveEccBlock(byte[] buffer, uint transferLength) + { + // TODO: Save ECC instead of just throwing it away + + var deinterleaved = new byte[2064 * transferLength]; + + for(var j = 0; j < transferLength; j++) + { + for(var i = 0; i < 12; i++) + { + Array.Copy(buffer, (j * 2384) + (i * 182), deinterleaved, (j * 2064) + (i * 172), 172); + } + } + + return deinterleaved; + } +} \ No newline at end of file diff --git a/Aaru.Devices/Device/ScsiCommands/Plextor.cs b/Aaru.Devices/Device/ScsiCommands/Plextor.cs index d83598a57..80583634f 100644 --- a/Aaru.Devices/Device/ScsiCommands/Plextor.cs +++ b/Aaru.Devices/Device/ScsiCommands/Plextor.cs @@ -110,9 +110,9 @@ public partial class Device cdb[3] = (byte)((lba & 0xFF0000) >> 16); cdb[4] = (byte)((lba & 0xFF00) >> 8); cdb[5] = (byte)(lba & 0xFF); - cdb[3] = (byte)((buffer.Length & 0xFF0000) >> 16); - cdb[4] = (byte)((buffer.Length & 0xFF00) >> 8); - cdb[5] = (byte)(buffer.Length & 0xFF); + cdb[6] = (byte)((buffer.Length & 0xFF0000) >> 16); + cdb[7] = (byte)((buffer.Length & 0xFF00) >> 8); + cdb[8] = (byte)(buffer.Length & 0xFF); LastError = SendScsiCommand(cdb, ref buffer, diff --git a/Aaru.Devices/Localization/Localization.Designer.cs b/Aaru.Devices/Localization/Localization.Designer.cs index d0677465c..c5c882a2c 100644 --- a/Aaru.Devices/Localization/Localization.Designer.cs +++ b/Aaru.Devices/Localization/Localization.Designer.cs @@ -11,46 +11,32 @@ namespace Aaru.Devices { using System; - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Localization { - private static global::System.Resources.ResourceManager resourceMan; + private static System.Resources.ResourceManager resourceMan; - private static global::System.Globalization.CultureInfo resourceCulture; + private static System.Globalization.CultureInfo resourceCulture; - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Localization() { } - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aaru.Devices.Localization.Localization", typeof(Localization).Assembly); + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aaru.Devices.Localization.Localization", typeof(Localization).Assembly); resourceMan = temp; } return resourceMan; } } - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -59,297 +45,396 @@ namespace Aaru.Devices { } } - /// - /// Looks up a localized string similar to ADAPTEC READ DATA BUFFER took {0} ms.. - /// - internal static string ADAPTEC_READ_DATA_BUFFER_took_0_ms { + internal static string READ_BUFFER_took_0_ms { get { - return ResourceManager.GetString("ADAPTEC_READ_DATA_BUFFER_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_BUFFER_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to ADAPTEC READ/RESET USAGE COUNTER took {0} ms.. - /// - internal static string ADAPTEC_READ_RESET_USAGE_COUNTER_took_0_ms { + internal static string READ_BUFFER_DMA_took_0_ms { get { - return ResourceManager.GetString("ADAPTEC_READ_RESET_USAGE_COUNTER_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_BUFFER_DMA_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to ADAPTEC SET ERROR THRESHOLD took {0} ms.. - /// - internal static string ADAPTEC_SET_ERROR_THRESHOLD_took_0_ms { + internal static string READ_DMA_took_0_ms { get { - return ResourceManager.GetString("ADAPTEC_SET_ERROR_THRESHOLD_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_DMA_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to ADAPTEC TRANSLATE took {0} ms.. - /// - internal static string ADAPTEC_TRANSLATE_took_0_ms { + internal static string READ_MULTIPLE_took_0_ms { get { - return ResourceManager.GetString("ADAPTEC_TRANSLATE_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_MULTIPLE_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to ADAPTEC WRITE DATA BUFFER took {0} ms.. - /// - internal static string ADAPTEC_WRITE_DATA_BUFFER_took_0_ms { + internal static string READ_NATIVE_MAX_ADDRESS_took_0_ms { get { - return ResourceManager.GetString("ADAPTEC_WRITE_DATA_BUFFER_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_NATIVE_MAX_ADDRESS_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to ARCHIVE CORP. REQUEST BLOCK ADDRESS took {0} ms.. - /// - internal static string ARCHIVE_CORP_REQUEST_BLOCK_ADDRESS_took_0_ms { + internal static string READ_SECTORS_took_0_ms { get { - return ResourceManager.GetString("ARCHIVE_CORP_REQUEST_BLOCK_ADDRESS_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_SECTORS_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to ARCHIVE CORP. SEEK BLOCK took {0} ms.. - /// - internal static string ARCHIVE_CORP_SEEK_BLOCK_took_0_ms { + internal static string READ_LONG_took_0_ms { get { - return ResourceManager.GetString("ARCHIVE_CORP_SEEK_BLOCK_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_LONG_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to CERTANCE PARK UNPARK took {0} ms.. - /// - internal static string CERTANCE_PARK_UNPARK_took_0_ms { + internal static string SEEK_took_0_ms { get { - return ResourceManager.GetString("CERTANCE_PARK_UNPARK_took_0_ms", resourceCulture); + return ResourceManager.GetString("SEEK_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to CFA REQUEST EXTENDED ERROR CODE took {0} ms.. - /// - internal static string CFA_REQUEST_EXTENDED_ERROR_CODE_took_0_ms { + internal static string GET_NATIVE_MAX_ADDRESS_EXT_took_0_ms { get { - return ResourceManager.GetString("CFA_REQUEST_EXTENDED_ERROR_CODE_took_0_ms", resourceCulture); + return ResourceManager.GetString("GET_NATIVE_MAX_ADDRESS_EXT_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to CFA TRANSLATE SECTOR took {0} ms.. - /// - internal static string CFA_TRANSLATE_SECTOR_took_0_ms { + internal static string READ_DMA_EXT_took_0_ms { get { - return ResourceManager.GetString("CFA_TRANSLATE_SECTOR_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_DMA_EXT_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to CHECK MEDIA CARD TYPE took {0} ms.. - /// - internal static string CHECK_MEDIA_CARD_TYPE_took_0_ms { + internal static string READ_LOG_EXT_took_0_ms { get { - return ResourceManager.GetString("CHECK_MEDIA_CARD_TYPE_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_LOG_EXT_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Connected to {0}. - /// - internal static string Connected_to_0 { + internal static string READ_LOG_DMA_EXT_took_0_ms { get { - return ResourceManager.GetString("Connected_to_0", resourceCulture); + return ResourceManager.GetString("READ_LOG_DMA_EXT_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Could not read from the network.... - /// - internal static string Could_not_read_from_the_network { + internal static string READ_MULTIPLE_EXT_took_0_ms { get { - return ResourceManager.GetString("Could_not_read_from_the_network", resourceCulture); + return ResourceManager.GetString("READ_MULTIPLE_EXT_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Could not write to the network.... - /// - internal static string Could_not_write_to_the_network { + internal static string READ_NATIVE_MAX_ADDRESS_EXT_took_0_ms { get { - return ResourceManager.GetString("Could_not_write_to_the_network", resourceCulture); + return ResourceManager.GetString("READ_NATIVE_MAX_ADDRESS_EXT_took_0_ms", resourceCulture); + } + } + + internal static string READ_SECTORS_EXT_took_0_ms { + get { + return ResourceManager.GetString("READ_SECTORS_EXT_took_0_ms", resourceCulture); + } + } + + internal static string SET_FEATURES_took_0_ms { + get { + return ResourceManager.GetString("SET_FEATURES_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to DOOR LOCK took {0} ms.. - /// internal static string DOOR_LOCK_took_0_ms { get { return ResourceManager.GetString("DOOR_LOCK_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to DOOR UNLOCK took {0} ms.. - /// internal static string DOOR_UNLOCK_took_0_ms { get { return ResourceManager.GetString("DOOR_UNLOCK_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Error connecting to host.. - /// - internal static string Error_connecting_to_host { + internal static string MEDIA_EJECT_took_0_ms { get { - return ResourceManager.GetString("Error_connecting_to_host", resourceCulture); + return ResourceManager.GetString("MEDIA_EJECT_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected ATA CHS Response Packet, got packet type {0}.... - /// - internal static string Expected_ATA_CHS_Response_Packet_got_packet_type_0 { + internal static string IDENTIFY_PACKET_DEVICE_took_0_ms { get { - return ResourceManager.GetString("Expected_ATA_CHS_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("IDENTIFY_PACKET_DEVICE_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected ATA LBA28 Response Packet, got packet type {0}.... - /// - internal static string Expected_ATA_LBA28_Response_Packet_got_packet_type_0 { + internal static string CFA_TRANSLATE_SECTOR_took_0_ms { get { - return ResourceManager.GetString("Expected_ATA_LBA28_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("CFA_TRANSLATE_SECTOR_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected ATA LBA48 Response Packet, got packet type {0}.... - /// - internal static string Expected_ATA_LBA48_Response_Packet_got_packet_type_0 { + internal static string CFA_REQUEST_EXTENDED_ERROR_CODE_took_0_ms { get { - return ResourceManager.GetString("Expected_ATA_LBA48_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("CFA_REQUEST_EXTENDED_ERROR_CODE_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected Device Type Response Packet, got packet type {0}.... - /// - internal static string Expected_Device_Type_Response_Packet_got_packet_type_0 { + internal static string CHECK_MEDIA_CARD_TYPE_took_0_ms { get { - return ResourceManager.GetString("Expected_Device_Type_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("CHECK_MEDIA_CARD_TYPE_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected FireWire Data Response Packet, got packet type {0}.... - /// - internal static string Expected_FireWire_Data_Response_Packet_got_packet_type_0 { + internal static string SMART_DISABLE_OPERATIONS_took_0_ms { get { - return ResourceManager.GetString("Expected_FireWire_Data_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_DISABLE_OPERATIONS_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected Hello Packet, got packet type {0}.... - /// - internal static string Expected_Hello_Packet_got_packet_type_0 { + internal static string SMART_ENABLE_ATTRIBUTE_AUTOSAVE_took_0_ms { get { - return ResourceManager.GetString("Expected_Hello_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_ENABLE_ATTRIBUTE_AUTOSAVE_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected multi MMC/SD command Response Packet, got packet type {0}.... - /// - internal static string Expected_multi_MMC_SD_command_Response_Packet_got_packet_type_0 { + internal static string SMART_DISABLE_ATTRIBUTE_AUTOSAVE_took_0_ms { get { - return ResourceManager.GetString("Expected_multi_MMC_SD_command_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_DISABLE_ATTRIBUTE_AUTOSAVE_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected NOP Packet, got packet type {0}.... - /// - internal static string Expected_NOP_Packet_got_packet_type_0 { + internal static string SMART_ENABLE_OPERATIONS_took_0_ms { get { - return ResourceManager.GetString("Expected_NOP_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_ENABLE_OPERATIONS_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected OS Read Response Packet, got packet type {0}.... - /// - internal static string Expected_OS_Read_Response_Packet_got_packet_type_0 { + internal static string SMART_EXECUTE_OFF_LINE_IMMEDIATE_took_0_ms { get { - return ResourceManager.GetString("Expected_OS_Read_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_EXECUTE_OFF_LINE_IMMEDIATE_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected PCMCIA Data Response Packet, got packet type {0}.... - /// - internal static string Expected_PCMCIA_Data_Response_Packet_got_packet_type_0 { + internal static string SMART_READ_DATA_took_0_ms { get { - return ResourceManager.GetString("Expected_PCMCIA_Data_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_READ_DATA_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected SCSI Response Packet, got packet type {0}.... - /// - internal static string Expected_SCSI_Response_Packet_got_packet_type_0 { + internal static string SMART_READ_LOG_took_0_ms { get { - return ResourceManager.GetString("Expected_SCSI_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_READ_LOG_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected SDHCI Response Packet, got packet type {0}.... - /// - internal static string Expected_SDHCI_Response_Packet_got_packet_type_0 { + internal static string SMART_RETURN_STATUS_took_0_ms { get { - return ResourceManager.GetString("Expected_SDHCI_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SMART_RETURN_STATUS_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected the response to {0} SD/MMC commands, but got {1} responses.... - /// - internal static string Expected_the_response_to_0_SD_MMC_commands_but_got_1_responses { + internal static string SEND_CSD_took_0_ms { get { - return ResourceManager.GetString("Expected_the_response_to_0_SD_MMC_commands_but_got_1_responses", resourceCulture); + return ResourceManager.GetString("SEND_CSD_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Expected USB Data Response Packet, got packet type {0}.... - /// - internal static string Expected_USB_Data_Response_Packet_got_packet_type_0 { + internal static string SEND_CID_took_0_ms { get { - return ResourceManager.GetString("Expected_USB_Data_Response_Packet_got_packet_type_0", resourceCulture); + return ResourceManager.GetString("SEND_CID_took_0_ms", resourceCulture); + } + } + + internal static string SEND_OP_COND_took_0_ms { + get { + return ResourceManager.GetString("SEND_OP_COND_took_0_ms", resourceCulture); + } + } + + internal static string SEND_EXT_CSD_took_0_ms { + get { + return ResourceManager.GetString("SEND_EXT_CSD_took_0_ms", resourceCulture); + } + } + + internal static string SET_BLOCKLEN_took_0_ms { + get { + return ResourceManager.GetString("SET_BLOCKLEN_took_0_ms", resourceCulture); + } + } + + internal static string READ_SINGLE_BLOCK_took_0_ms { + get { + return ResourceManager.GetString("READ_SINGLE_BLOCK_took_0_ms", resourceCulture); + } + } + + internal static string READ_MULTIPLE_BLOCK_took_0_ms { + get { + return ResourceManager.GetString("READ_MULTIPLE_BLOCK_took_0_ms", resourceCulture); + } + } + + internal static string Multiple_READ_SINGLE_BLOCKs_took_0_ms { + get { + return ResourceManager.GetString("Multiple_READ_SINGLE_BLOCKs_took_0_ms", resourceCulture); + } + } + + internal static string SEND_STATUS_took_0_ms { + get { + return ResourceManager.GetString("SEND_STATUS_took_0_ms", resourceCulture); + } + } + + internal static string SD_STATUS_took_0_ms { + get { + return ResourceManager.GetString("SD_STATUS_took_0_ms", resourceCulture); + } + } + + internal static string SD_SEND_OP_COND_took_0_ms { + get { + return ResourceManager.GetString("SD_SEND_OP_COND_took_0_ms", resourceCulture); + } + } + + internal static string SEND_SCR_took_0_ms { + get { + return ResourceManager.GetString("SEND_SCR_took_0_ms", resourceCulture); + } + } + + internal static string ADAPTEC_TRANSLATE_took_0_ms { + get { + return ResourceManager.GetString("ADAPTEC_TRANSLATE_took_0_ms", resourceCulture); + } + } + + internal static string ADAPTEC_SET_ERROR_THRESHOLD_took_0_ms { + get { + return ResourceManager.GetString("ADAPTEC_SET_ERROR_THRESHOLD_took_0_ms", resourceCulture); + } + } + + internal static string ADAPTEC_READ_RESET_USAGE_COUNTER_took_0_ms { + get { + return ResourceManager.GetString("ADAPTEC_READ_RESET_USAGE_COUNTER_took_0_ms", resourceCulture); + } + } + + internal static string ADAPTEC_WRITE_DATA_BUFFER_took_0_ms { + get { + return ResourceManager.GetString("ADAPTEC_WRITE_DATA_BUFFER_took_0_ms", resourceCulture); + } + } + + internal static string ADAPTEC_READ_DATA_BUFFER_took_0_ms { + get { + return ResourceManager.GetString("ADAPTEC_READ_DATA_BUFFER_took_0_ms", resourceCulture); + } + } + + internal static string ARCHIVE_CORP_REQUEST_BLOCK_ADDRESS_took_0_ms { + get { + return ResourceManager.GetString("ARCHIVE_CORP_REQUEST_BLOCK_ADDRESS_took_0_ms", resourceCulture); + } + } + + internal static string ARCHIVE_CORP_SEEK_BLOCK_took_0_ms { + get { + return ResourceManager.GetString("ARCHIVE_CORP_SEEK_BLOCK_took_0_ms", resourceCulture); + } + } + + internal static string CERTANCE_PARK_UNPARK_took_0_ms { + get { + return ResourceManager.GetString("CERTANCE_PARK_UNPARK_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to FUJITSU DISPLAY took {0} ms.. - /// internal static string FUJITSU_DISPLAY_took_0_ms { get { return ResourceManager.GetString("FUJITSU_DISPLAY_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to GET CONFIGURATION (Starting Feature Number: {1}, Return Type: {2}, Sense: {3}, Last Error: {4}) took {0} ms.. - /// + internal static string HL_DT_ST_READ_DVD_RAW_took_0_ms { + get { + return ResourceManager.GetString("HL_DT_ST_READ_DVD_RAW_took_0_ms", resourceCulture); + } + } + + internal static string HP_READ_LONG_took_0_ms { + get { + return ResourceManager.GetString("HP_READ_LONG_took_0_ms", resourceCulture); + } + } + + internal static string KREON_DEPRECATED_UNLOCK_took_0_ms { + get { + return ResourceManager.GetString("KREON_DEPRECATED_UNLOCK_took_0_ms", resourceCulture); + } + } + + internal static string KREON_SET_LOCK_STATE_took_0_ms { + get { + return ResourceManager.GetString("KREON_SET_LOCK_STATE_took_0_ms", resourceCulture); + } + } + + internal static string KREON_GET_FEATURE_LIST_took_0_ms { + get { + return ResourceManager.GetString("KREON_GET_FEATURE_LIST_took_0_ms", resourceCulture); + } + } + + internal static string KREON_EXTRACT_SS_took_0_ms { + get { + return ResourceManager.GetString("KREON_EXTRACT_SS_took_0_ms", resourceCulture); + } + } + + internal static string MediaTek_READ_DRAM_took_0_ms { + get { + return ResourceManager.GetString("MediaTek_READ_DRAM_took_0_ms", resourceCulture); + } + } + + internal static string MINIDISC_READ_DTOC_took_0_ms { + get { + return ResourceManager.GetString("MINIDISC_READ_DTOC_took_0_ms", resourceCulture); + } + } + + internal static string MINIDISC_READ_UTOC_took_0_ms { + get { + return ResourceManager.GetString("MINIDISC_READ_UTOC_took_0_ms", resourceCulture); + } + } + + internal static string MINIDISC_command_D5h_took_0_ms { + get { + return ResourceManager.GetString("MINIDISC_command_D5h_took_0_ms", resourceCulture); + } + } + + internal static string MINIDISC_STOP_PLAY_took_0_ms { + get { + return ResourceManager.GetString("MINIDISC_STOP_PLAY_took_0_ms", resourceCulture); + } + } + + internal static string MINIDISC_READ_POSITION_took_0_ms { + get { + return ResourceManager.GetString("MINIDISC_READ_POSITION_took_0_ms", resourceCulture); + } + } + + internal static string MINIDISC_GET_TYPE_took_0_ms { + get { + return ResourceManager.GetString("MINIDISC_GET_TYPE_took_0_ms", resourceCulture); + } + } + internal static string GET_CONFIGURATION_Starting_Feature_Number_1_Return_Type_2_Sense_3_Last_Error_4_took_0_ms { get { return ResourceManager.GetString("GET_CONFIGURATION_Starting_Feature_Number_1_Return_Type_2_Sense_3_Last_Error_4_to" + @@ -357,542 +442,26 @@ namespace Aaru.Devices { } } - /// - /// Looks up a localized string similar to GET NATIVE MAX ADDRESS EXT took {0} ms.. - /// - internal static string GET_NATIVE_MAX_ADDRESS_EXT_took_0_ms { + internal static string READ_DISC_STRUCTURE_Media_Type_1_Address_2_Layer_Number_3_Format_4_AGID_5_Sense_6_Last_Error_7_took_0_ms { get { - return ResourceManager.GetString("GET_NATIVE_MAX_ADDRESS_EXT_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_DISC_STRUCTURE_Media_Type_1_Address_2_Layer_Number_3_Format_4_AGID_5_Sense_6" + + "_Last_Error_7_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to HL-DT-ST READ DVD (RAW) took {0} ms.. - /// - internal static string HL_DT_ST_READ_DVD_RAW_took_0_ms { + internal static string READ_TOC_PMA_ATIP_took_MSF_1_Format_2_Track_Session_Number_3_Sense_4_LastError_5_0_ms { get { - return ResourceManager.GetString("HL_DT_ST_READ_DVD_RAW_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_TOC_PMA_ATIP_took_MSF_1_Format_2_Track_Session_Number_3_Sense_4_LastError_5_" + + "0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Host not found. - /// - internal static string Host_not_found { + internal static string READ_DISC_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms { get { - return ResourceManager.GetString("Host_not_found", resourceCulture); + return ResourceManager.GetString("READ_DISC_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to HP READ LONG took {0} ms.. - /// - internal static string HP_READ_LONG_took_0_ms { - get { - return ResourceManager.GetString("HP_READ_LONG_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to IDENTIFY PACKET DEVICE took {0} ms.. - /// - internal static string IDENTIFY_PACKET_DEVICE_took_0_ms { - get { - return ResourceManager.GetString("IDENTIFY_PACKET_DEVICE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to INQUIRY took {0} ms.. - /// - internal static string INQUIRY_took_0_ms { - get { - return ResourceManager.GetString("INQUIRY_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid remote protocol.. - /// - internal static string Invalid_remote_protocol { - get { - return ResourceManager.GetString("Invalid_remote_protocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid remote URI.. - /// - internal static string Invalid_remote_URI { - get { - return ResourceManager.GetString("Invalid_remote_URI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KREON DEPRECATED UNLOCK took {0} ms.. - /// - internal static string KREON_DEPRECATED_UNLOCK_took_0_ms { - get { - return ResourceManager.GetString("KREON_DEPRECATED_UNLOCK_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KREON EXTRACT SS took {0} ms.. - /// - internal static string KREON_EXTRACT_SS_took_0_ms { - get { - return ResourceManager.GetString("KREON_EXTRACT_SS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KREON GET FEATURE LIST took {0} ms.. - /// - internal static string KREON_GET_FEATURE_LIST_took_0_ms { - get { - return ResourceManager.GetString("KREON_GET_FEATURE_LIST_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KREON SET LOCK STATE took {0} ms.. - /// - internal static string KREON_SET_LOCK_STATE_took_0_ms { - get { - return ResourceManager.GetString("KREON_SET_LOCK_STATE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LOAD UNLOAD (6) took {0} ms.. - /// - internal static string LOAD_UNLOAD_6_took_0_ms { - get { - return ResourceManager.GetString("LOAD_UNLOAD_6_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LOCATE (10) took {0} ms.. - /// - internal static string LOCATE_10_took_0_ms { - get { - return ResourceManager.GetString("LOCATE_10_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LOCATE (16) took {0} ms.. - /// - internal static string LOCATE_16_took_0_ms { - get { - return ResourceManager.GetString("LOCATE_16_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MEDIA EJECT took {0} ms.. - /// - internal static string MEDIA_EJECT_took_0_ms { - get { - return ResourceManager.GetString("MEDIA_EJECT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MediaTek READ DRAM took {0} ms.. - /// - internal static string MediaTek_READ_DRAM_took_0_ms { - get { - return ResourceManager.GetString("MediaTek_READ_DRAM_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MEDIUM SCAN took {0} ms.. - /// - internal static string MEDIUM_SCAN_took_0_ms { - get { - return ResourceManager.GetString("MEDIUM_SCAN_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MINIDISC command D5h took {0} ms.. - /// - internal static string MINIDISC_command_D5h_took_0_ms { - get { - return ResourceManager.GetString("MINIDISC_command_D5h_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MINIDISC GET TYPE took {0} ms.. - /// - internal static string MINIDISC_GET_TYPE_took_0_ms { - get { - return ResourceManager.GetString("MINIDISC_GET_TYPE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MINIDISC READ DTOC took {0} ms.. - /// - internal static string MINIDISC_READ_DTOC_took_0_ms { - get { - return ResourceManager.GetString("MINIDISC_READ_DTOC_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MINIDISC READ POSITION took {0} ms.. - /// - internal static string MINIDISC_READ_POSITION_took_0_ms { - get { - return ResourceManager.GetString("MINIDISC_READ_POSITION_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MINIDISC READ UTOC took {0} ms.. - /// - internal static string MINIDISC_READ_UTOC_took_0_ms { - get { - return ResourceManager.GetString("MINIDISC_READ_UTOC_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MINIDISC STOP PLAY took {0} ms.. - /// - internal static string MINIDISC_STOP_PLAY_took_0_ms { - get { - return ResourceManager.GetString("MINIDISC_STOP_PLAY_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MODE SELECT(10) took {0} ms.. - /// - internal static string MODE_SELECT_10_took_0_ms { - get { - return ResourceManager.GetString("MODE_SELECT_10_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MODE SELECT(6) took {0} ms.. - /// - internal static string MODE_SELECT_6_took_0_ms { - get { - return ResourceManager.GetString("MODE_SELECT_6_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MODE SENSE(10) took {0} ms.. - /// - internal static string MODE_SENSE_10_took_0_ms { - get { - return ResourceManager.GetString("MODE_SENSE_10_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MODE SENSE(6) took {0} ms.. - /// - internal static string MODE_SENSE_6_took_0_ms { - get { - return ResourceManager.GetString("MODE_SENSE_6_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Multiple READ_SINGLE_BLOCKs took {0} ms.. - /// - internal static string Multiple_READ_SINGLE_BLOCKs_took_0_ms { - get { - return ResourceManager.GetString("Multiple_READ_SINGLE_BLOCKs_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NEC READ CD-DA took {0} ms.. - /// - internal static string NEC_READ_CD_DA_took_0_ms { - get { - return ResourceManager.GetString("NEC_READ_CD_DA_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PIONEER READ CD-DA MSF took {0} ms.. - /// - internal static string PIONEER_READ_CD_DA_MSF_took_0_ms { - get { - return ResourceManager.GetString("PIONEER_READ_CD_DA_MSF_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PIONEER READ CD-DA took {0} ms.. - /// - internal static string PIONEER_READ_CD_DA_took_0_ms { - get { - return ResourceManager.GetString("PIONEER_READ_CD_DA_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PIONEER READ CD-XA took {0} ms.. - /// - internal static string PIONEER_READ_CD_XA_took_0_ms { - get { - return ResourceManager.GetString("PIONEER_READ_CD_XA_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLASMON READ SECTOR LOCATION took {0} ms.. - /// - internal static string PLASMON_READ_SECTOR_LOCATION_took_0_ms { - get { - return ResourceManager.GetString("PLASMON_READ_SECTOR_LOCATION_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Platform {0} not yet supported.. - /// - internal static string Platform_0_not_yet_supported { - get { - return ResourceManager.GetString("Platform_0_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET BOOK BITSETTING took {0} ms.. - /// - internal static string PLEXTOR_GET_BOOK_BITSETTING_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_BOOK_BITSETTING_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET GIGAREC took {0} ms.. - /// - internal static string PLEXTOR_GET_GIGAREC_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_GIGAREC_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET SECUREC took {0} ms.. - /// - internal static string PLEXTOR_GET_SECUREC_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_SECUREC_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET SILENT MODE took {0} ms.. - /// - internal static string PLEXTOR_GET_SILENT_MODE_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_SILENT_MODE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET SINGLE-SESSION / HIDE CD-R took {0} ms.. - /// - internal static string PLEXTOR_GET_SINGLE_SESSION_HIDE_CD_R_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_SINGLE_SESSION_HIDE_CD_R_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET SPEEDREAD took {0} ms.. - /// - internal static string PLEXTOR_GET_SPEEDREAD_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_SPEEDREAD_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET TEST WRITE DVD+ took {0} ms.. - /// - internal static string PLEXTOR_GET_TEST_WRITE_DVD_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_TEST_WRITE_DVD_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR GET VARIREC took {0} ms.. - /// - internal static string PLEXTOR_GET_VARIREC_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_GET_VARIREC_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR POWEREC GET SPEEDS took {0} ms.. - /// - internal static string PLEXTOR_POWEREC_GET_SPEEDS_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_POWEREC_GET_SPEEDS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Plextor READ CD-DA (LBA: {1}, Block Size: {2}, Transfer Length: {3}, Subchannel: {4}, Sense: {5}, Last Error: {6}) took {0} ms.. - /// - internal static string Plextor_READ_CD_DA_LBA_1_Block_Size_2_Transfer_Length_3_Subchannel_4_Sense_5_Last_Error_6_took_0_ms { - get { - return ResourceManager.GetString("Plextor_READ_CD_DA_LBA_1_Block_Size_2_Transfer_Length_3_Subchannel_4_Sense_5_Last" + - "_Error_6_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Plextor READ DVD (RAW) took {0} ms.. - /// - internal static string Plextor_READ_DVD_RAW_took_0_ms { - get { - return ResourceManager.GetString("Plextor_READ_DVD_RAW_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PLEXTOR READ EEPROM took {0} ms.. - /// - internal static string PLEXTOR_READ_EEPROM_took_0_ms { - get { - return ResourceManager.GetString("PLEXTOR_READ_EEPROM_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PREVENT ALLOW MEDIUM REMOVAL (Persistent: {1}, Prevent: {2}, Sense: {3}, LastError: {4}) took {0} ms.. - /// - internal static string PREVENT_ALLOW_MEDIUM_REMOVAL_Persistent_1_Prevent_2_Sense_3_LastError_4_took_0_ms { - get { - return ResourceManager.GetString("PREVENT_ALLOW_MEDIUM_REMOVAL_Persistent_1_Prevent_2_Sense_3_LastError_4_took_0_ms" + - "", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PREVENT ALLOW MEDIUM REMOVAL took {0} ms.. - /// - internal static string PREVENT_ALLOW_MEDIUM_REMOVAL_took_0_ms { - get { - return ResourceManager.GetString("PREVENT_ALLOW_MEDIUM_REMOVAL_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ (10) took {0} ms.. - /// - internal static string READ_10_took_0_ms { - get { - return ResourceManager.GetString("READ_10_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ (12) took {0} ms.. - /// - internal static string READ_12_took_0_ms { - get { - return ResourceManager.GetString("READ_12_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ (16) took {0} ms.. - /// - internal static string READ_16_took_0_ms { - get { - return ResourceManager.GetString("READ_16_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ (6) took {0} ms.. - /// - internal static string READ_6_took_0_ms { - get { - return ResourceManager.GetString("READ_6_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ ATTRIBUTE took {0} ms.. - /// - internal static string READ_ATTRIBUTE_took_0_ms { - get { - return ResourceManager.GetString("READ_ATTRIBUTE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ BLOCK LIMITS took {0} ms.. - /// - internal static string READ_BLOCK_LIMITS_took_0_ms { - get { - return ResourceManager.GetString("READ_BLOCK_LIMITS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ BUFFER DMA took {0} ms.. - /// - internal static string READ_BUFFER_DMA_took_0_ms { - get { - return ResourceManager.GetString("READ_BUFFER_DMA_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ BUFFER took {0} ms.. - /// - internal static string READ_BUFFER_took_0_ms { - get { - return ResourceManager.GetString("READ_BUFFER_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ CAPACITY(16) took {0} ms.. - /// - internal static string READ_CAPACITY_16_took_0_ms { - get { - return ResourceManager.GetString("READ_CAPACITY_16_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ CAPACITY took {0} ms.. - /// - internal static string READ_CAPACITY_took_0_ms { - get { - return ResourceManager.GetString("READ_CAPACITY_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ CD (LBA: {1}, Block Size: {2}, Transfer Length: {3}, Expected Sector Type: {4}, DAP: {5}, Relative Address: {6}, Sync: {7}, Headers: {8}, User Data: {9}, ECC/EDC: {10}, C2: {11}, Subchannel: {12}, Sense: {13}, Last Error: {14}) took {0} ms.. - /// internal static string READ_CD_LBA_1_Block_Size_2_Transfer_Length_3_Expected_Sector_Type_4_DAP_5_Relative_Address_6_Sync_7_Headers_8_User_Data_9_ECC_EDC_10_C2_11_Subchannel_12_Sense_13_Last_Error_14_took_0_ms { get { return ResourceManager.GetString("READ_CD_LBA_1_Block_Size_2_Transfer_Length_3_Expected_Sector_Type_4_DAP_5_Relativ" + @@ -901,9 +470,6 @@ namespace Aaru.Devices { } } - /// - /// Looks up a localized string similar to READ CD MSF (Start MSF: {1}, End MSF: {2}, Block Size: {3}, Expected Sector Type: {4}, DAP: {5}, Sync: {6}, Headers: {7}, User Data: {8}, ECC/EDC: {9}, C2: {10}, Subchannel: {11}, Sense: {12}, LastError: {13}) took {0} ms.. - /// internal static string READ_CD_MSF_Start_MSF_1_End_MSF_2_Block_Size_3_Expected_Sector_Type_4_DAP_5_Sync_6_Headers_7_User_Data_8_ECC_EDC_9_C2_10_Subchannel_11_Sense_12_LastError_13_took_0_ms { get { return ResourceManager.GetString("READ_CD_MSF_Start_MSF_1_End_MSF_2_Block_Size_3_Expected_Sector_Type_4_DAP_5_Sync_" + @@ -912,534 +478,13 @@ namespace Aaru.Devices { } } - /// - /// Looks up a localized string similar to READ DISC INFORMATION (Data Type: {1}, Sense: {2}, Last Error: {3}) took {0} ms.. - /// - internal static string READ_DISC_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms { + internal static string PREVENT_ALLOW_MEDIUM_REMOVAL_Persistent_1_Prevent_2_Sense_3_LastError_4_took_0_ms { get { - return ResourceManager.GetString("READ_DISC_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms", resourceCulture); + return ResourceManager.GetString("PREVENT_ALLOW_MEDIUM_REMOVAL_Persistent_1_Prevent_2_Sense_3_LastError_4_took_0_ms" + + "", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE (Media Type: {1}, Address: {2}, Layer Number: {3}, Format: {4}, AGID: {5}, Sense: {6}, Last Error: {7}) took {0} ms.. - /// - internal static string READ_DISC_STRUCTURE_Media_Type_1_Address_2_Layer_Number_3_Format_4_AGID_5_Sense_6_Last_Error_7_took_0_ms { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Media_Type_1_Address_2_Layer_Number_3_Format_4_AGID_5_Sense_6" + - "_Last_Error_7_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DMA EXT took {0} ms.. - /// - internal static string READ_DMA_EXT_took_0_ms { - get { - return ResourceManager.GetString("READ_DMA_EXT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DMA took {0} ms.. - /// - internal static string READ_DMA_took_0_ms { - get { - return ResourceManager.GetString("READ_DMA_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ LOG DMA EXT took {0} ms.. - /// - internal static string READ_LOG_DMA_EXT_took_0_ms { - get { - return ResourceManager.GetString("READ_LOG_DMA_EXT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ LOG EXT took {0} ms.. - /// - internal static string READ_LOG_EXT_took_0_ms { - get { - return ResourceManager.GetString("READ_LOG_EXT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ LONG (10) took {0} ms.. - /// - internal static string READ_LONG_10_took_0_ms { - get { - return ResourceManager.GetString("READ_LONG_10_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ LONG (16) took {0} ms.. - /// - internal static string READ_LONG_16_took_0_ms { - get { - return ResourceManager.GetString("READ_LONG_16_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ LONG took {0} ms.. - /// - internal static string READ_LONG_took_0_ms { - get { - return ResourceManager.GetString("READ_LONG_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ MEDIA SERIAL NUMBER took {0} ms.. - /// - internal static string READ_MEDIA_SERIAL_NUMBER_took_0_ms { - get { - return ResourceManager.GetString("READ_MEDIA_SERIAL_NUMBER_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ_MULTIPLE_BLOCK took {0} ms.. - /// - internal static string READ_MULTIPLE_BLOCK_took_0_ms { - get { - return ResourceManager.GetString("READ_MULTIPLE_BLOCK_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ MULTIPLE EXT took {0} ms.. - /// - internal static string READ_MULTIPLE_EXT_took_0_ms { - get { - return ResourceManager.GetString("READ_MULTIPLE_EXT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ MULTIPLE took {0} ms.. - /// - internal static string READ_MULTIPLE_took_0_ms { - get { - return ResourceManager.GetString("READ_MULTIPLE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ NATIVE MAX ADDRESS EXT took {0} ms.. - /// - internal static string READ_NATIVE_MAX_ADDRESS_EXT_took_0_ms { - get { - return ResourceManager.GetString("READ_NATIVE_MAX_ADDRESS_EXT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ NATIVE MAX ADDRESS took {0} ms.. - /// - internal static string READ_NATIVE_MAX_ADDRESS_took_0_ms { - get { - return ResourceManager.GetString("READ_NATIVE_MAX_ADDRESS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ POSITION took {0} ms.. - /// - internal static string READ_POSITION_took_0_ms { - get { - return ResourceManager.GetString("READ_POSITION_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ READ SUB-CHANNEL (ISRC, Track Number: {1}, Sense: {2}, Last Error: {3}) took {0} ms.. - /// - internal static string READ_READ_SUB_CHANNEL_ISRC_Track_Number_1_Sense_2_Last_Error_3_took_0_ms { - get { - return ResourceManager.GetString("READ_READ_SUB_CHANNEL_ISRC_Track_Number_1_Sense_2_Last_Error_3_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ READ SUB-CHANNEL (MCN, Sense {1}, Last Error {2}) took {0} ms.. - /// - internal static string READ_READ_SUB_CHANNEL_MCN_Sense_1_Last_Error_2_took_0_ms { - get { - return ResourceManager.GetString("READ_READ_SUB_CHANNEL_MCN_Sense_1_Last_Error_2_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ REVERSE (16) took {0} ms.. - /// - internal static string READ_REVERSE_16_took_0_ms { - get { - return ResourceManager.GetString("READ_REVERSE_16_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ REVERSE (6) took {0} ms.. - /// - internal static string READ_REVERSE_6_took_0_ms { - get { - return ResourceManager.GetString("READ_REVERSE_6_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ SECTORS EXT took {0} ms.. - /// - internal static string READ_SECTORS_EXT_took_0_ms { - get { - return ResourceManager.GetString("READ_SECTORS_EXT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ SECTORS took {0} ms.. - /// - internal static string READ_SECTORS_took_0_ms { - get { - return ResourceManager.GetString("READ_SECTORS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ_SINGLE_BLOCK took {0} ms.. - /// - internal static string READ_SINGLE_BLOCK_took_0_ms { - get { - return ResourceManager.GetString("READ_SINGLE_BLOCK_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TOC/PMA/ATIP took (MSF: {1}, Format: {2}, Track/Session Number: {3}, Sense: {4}, LastError: {5}) {0} ms.. - /// - internal static string READ_TOC_PMA_ATIP_took_MSF_1_Format_2_Track_Session_Number_3_Sense_4_LastError_5_0_ms { - get { - return ResourceManager.GetString("READ_TOC_PMA_ATIP_took_MSF_1_Format_2_Track_Session_Number_3_Sense_4_LastError_5_" + - "0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TRACK INFORMATION (Data Type: {1}, Sense: {2}, Last Error: {3}) took {0} ms.. - /// - internal static string READ_TRACK_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms { - get { - return ResourceManager.GetString("READ_TRACK_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Received data is not an Aaru Remote Packet.... - /// - internal static string Received_data_is_not_an_Aaru_Remote_Packet { - get { - return ResourceManager.GetString("Received_data_is_not_an_Aaru_Remote_Packet", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RECOVER BUFFERED DATA took {0} ms.. - /// - internal static string RECOVER_BUFFERED_DATA_took_0_ms { - get { - return ResourceManager.GetString("RECOVER_BUFFERED_DATA_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remote error {0} in OS Read.... - /// - internal static string Remote_error_0_in_OS_Read { - get { - return ResourceManager.GetString("Remote_error_0_in_OS_Read", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected Am I Root? Response Packet, got packet type {0}.... - /// - internal static string Remote_IsRoot_Expected_Am_I_Root_Response_Packet_got_packet_type_0 { - get { - return ResourceManager.GetString("Remote_IsRoot_Expected_Am_I_Root_Response_Packet_got_packet_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected List Devices Response Packet, got packet type {0}.... - /// - internal static string Remote_ListDevices_Expected_List_Devices_Response_Packet_got_packet_type_0 { - get { - return ResourceManager.GetString("Remote_ListDevices_Expected_List_Devices_Response_Packet_got_packet_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ReOpen error {0} with reason: {1}.... - /// - internal static string ReOpen_error_0_with_reason_1 { - get { - return ResourceManager.GetString("ReOpen_error_0_with_reason_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ReOpen error closing device.... - /// - internal static string ReOpen_error_closing_device { - get { - return ResourceManager.GetString("ReOpen_error_closing_device", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to REPORT DENSITY SUPPORT took {0} ms.. - /// - internal static string REPORT_DENSITY_SUPPORT_took_0_ms { - get { - return ResourceManager.GetString("REPORT_DENSITY_SUPPORT_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to REQUEST SENSE took {0} ms.. - /// - internal static string REQUEST_SENSE_took_0_ms { - get { - return ResourceManager.GetString("REQUEST_SENSE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to REWIND took {0} ms.. - /// - internal static string REWIND_took_0_ms { - get { - return ResourceManager.GetString("REWIND_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD_SEND_OP_COND took {0} ms.. - /// - internal static string SD_SEND_OP_COND_took_0_ms { - get { - return ResourceManager.GetString("SD_SEND_OP_COND_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD_STATUS took {0} ms.. - /// - internal static string SD_STATUS_took_0_ms { - get { - return ResourceManager.GetString("SD_STATUS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEEK (10) took {0} ms.. - /// - internal static string SEEK_10_took_0_ms { - get { - return ResourceManager.GetString("SEEK_10_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEEK (6) took {0} ms.. - /// - internal static string SEEK_6_took_0_ms { - get { - return ResourceManager.GetString("SEEK_6_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEEK took {0} ms.. - /// - internal static string SEEK_took_0_ms { - get { - return ResourceManager.GetString("SEEK_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEND_CID took {0} ms.. - /// - internal static string SEND_CID_took_0_ms { - get { - return ResourceManager.GetString("SEND_CID_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEND_CSD took {0} ms.. - /// - internal static string SEND_CSD_took_0_ms { - get { - return ResourceManager.GetString("SEND_CSD_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEND_EXT_CSD took {0} ms.. - /// - internal static string SEND_EXT_CSD_took_0_ms { - get { - return ResourceManager.GetString("SEND_EXT_CSD_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEND_OP_COND took {0} ms.. - /// - internal static string SEND_OP_COND_took_0_ms { - get { - return ResourceManager.GetString("SEND_OP_COND_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEND_SCR took {0} ms.. - /// - internal static string SEND_SCR_took_0_ms { - get { - return ResourceManager.GetString("SEND_SCR_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SEND_STATUS took {0} ms.. - /// - internal static string SEND_STATUS_took_0_ms { - get { - return ResourceManager.GetString("SEND_STATUS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SET_BLOCKLEN took {0} ms.. - /// - internal static string SET_BLOCKLEN_took_0_ms { - get { - return ResourceManager.GetString("SET_BLOCKLEN_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SET CD SPEED (Rotational Control: {1}, Read Speed: {2}, Write Speed: {3}, Sense: {4}, Last Error: {5}) took {0} ms.. - /// - internal static string SET_CD_SPEED_Rotational_Control_1_Read_Speed_2_Write_Speed_3_Sense_4_Last_Error_5_took_0_ms { - get { - return ResourceManager.GetString("SET_CD_SPEED_Rotational_Control_1_Read_Speed_2_Write_Speed_3_Sense_4_Last_Error_5" + - "_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SET FEATURES took {0} ms.. - /// - internal static string SET_FEATURES_took_0_ms { - get { - return ResourceManager.GetString("SET_FEATURES_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART DISABLE ATTRIBUTE AUTOSAVE took {0} ms.. - /// - internal static string SMART_DISABLE_ATTRIBUTE_AUTOSAVE_took_0_ms { - get { - return ResourceManager.GetString("SMART_DISABLE_ATTRIBUTE_AUTOSAVE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART DISABLE OPERATIONS took {0} ms.. - /// - internal static string SMART_DISABLE_OPERATIONS_took_0_ms { - get { - return ResourceManager.GetString("SMART_DISABLE_OPERATIONS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART ENABLE ATTRIBUTE AUTOSAVE took {0} ms.. - /// - internal static string SMART_ENABLE_ATTRIBUTE_AUTOSAVE_took_0_ms { - get { - return ResourceManager.GetString("SMART_ENABLE_ATTRIBUTE_AUTOSAVE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART ENABLE OPERATIONS took {0} ms.. - /// - internal static string SMART_ENABLE_OPERATIONS_took_0_ms { - get { - return ResourceManager.GetString("SMART_ENABLE_OPERATIONS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART EXECUTE OFF-LINE IMMEDIATE took {0} ms.. - /// - internal static string SMART_EXECUTE_OFF_LINE_IMMEDIATE_took_0_ms { - get { - return ResourceManager.GetString("SMART_EXECUTE_OFF_LINE_IMMEDIATE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART READ DATA took {0} ms.. - /// - internal static string SMART_READ_DATA_took_0_ms { - get { - return ResourceManager.GetString("SMART_READ_DATA_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART READ LOG took {0} ms.. - /// - internal static string SMART_READ_LOG_took_0_ms { - get { - return ResourceManager.GetString("SMART_READ_LOG_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SMART RETURN STATUS took {0} ms.. - /// - internal static string SMART_RETURN_STATUS_took_0_ms { - get { - return ResourceManager.GetString("SMART_RETURN_STATUS_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SPACE took {0} ms.. - /// - internal static string SPACE_took_0_ms { - get { - return ResourceManager.GetString("SPACE_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to START STOP UNIT (Immediate: {1}, FormatLayer: {2}, Power Conditions: {3}, Change Format Layer: {4}, Load/Eject: {5}, Start: {6}, Sense: {7}, Last Error: {8}) took {0} ms.. - /// internal static string START_STOP_UNIT_Immediate_1_FormatLayer_2_Power_Conditions_3_Change_Format_Layer_4_Load_Eject_5_Start_6_Sense_7_Last_Error_8_took_0_ms { get { return ResourceManager.GetString("START_STOP_UNIT_Immediate_1_FormatLayer_2_Power_Conditions_3_Change_Format_Layer_" + @@ -1447,49 +492,522 @@ namespace Aaru.Devices { } } - /// - /// Looks up a localized string similar to SYQUEST READ (10) took {0} ms.. - /// - internal static string SYQUEST_READ_10_took_0_ms { + internal static string READ_READ_SUB_CHANNEL_MCN_Sense_1_Last_Error_2_took_0_ms { get { - return ResourceManager.GetString("SYQUEST_READ_10_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_READ_SUB_CHANNEL_MCN_Sense_1_Last_Error_2_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to SYQUEST READ (6) took {0} ms.. - /// - internal static string SYQUEST_READ_6_took_0_ms { + internal static string READ_READ_SUB_CHANNEL_ISRC_Track_Number_1_Sense_2_Last_Error_3_took_0_ms { get { - return ResourceManager.GetString("SYQUEST_READ_6_took_0_ms", resourceCulture); + return ResourceManager.GetString("READ_READ_SUB_CHANNEL_ISRC_Track_Number_1_Sense_2_Last_Error_3_took_0_ms", resourceCulture); + } + } + + internal static string SET_CD_SPEED_Rotational_Control_1_Read_Speed_2_Write_Speed_3_Sense_4_Last_Error_5_took_0_ms { + get { + return ResourceManager.GetString("SET_CD_SPEED_Rotational_Control_1_Read_Speed_2_Write_Speed_3_Sense_4_Last_Error_5" + + "_took_0_ms", resourceCulture); + } + } + + internal static string READ_TRACK_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms { + get { + return ResourceManager.GetString("READ_TRACK_INFORMATION_Data_Type_1_Sense_2_Last_Error_3_took_0_ms", resourceCulture); + } + } + + internal static string NEC_READ_CD_DA_took_0_ms { + get { + return ResourceManager.GetString("NEC_READ_CD_DA_took_0_ms", resourceCulture); + } + } + + internal static string MEDIUM_SCAN_took_0_ms { + get { + return ResourceManager.GetString("MEDIUM_SCAN_took_0_ms", resourceCulture); + } + } + + internal static string PIONEER_READ_CD_DA_took_0_ms { + get { + return ResourceManager.GetString("PIONEER_READ_CD_DA_took_0_ms", resourceCulture); + } + } + + internal static string PIONEER_READ_CD_DA_MSF_took_0_ms { + get { + return ResourceManager.GetString("PIONEER_READ_CD_DA_MSF_took_0_ms", resourceCulture); + } + } + + internal static string PIONEER_READ_CD_XA_took_0_ms { + get { + return ResourceManager.GetString("PIONEER_READ_CD_XA_took_0_ms", resourceCulture); + } + } + + internal static string PLASMON_READ_SECTOR_LOCATION_took_0_ms { + get { + return ResourceManager.GetString("PLASMON_READ_SECTOR_LOCATION_took_0_ms", resourceCulture); + } + } + + internal static string Plextor_READ_CD_DA_LBA_1_Block_Size_2_Transfer_Length_3_Subchannel_4_Sense_5_Last_Error_6_took_0_ms { + get { + return ResourceManager.GetString("Plextor_READ_CD_DA_LBA_1_Block_Size_2_Transfer_Length_3_Subchannel_4_Sense_5_Last" + + "_Error_6_took_0_ms", resourceCulture); + } + } + + internal static string Plextor_READ_DVD_RAW_took_0_ms { + get { + return ResourceManager.GetString("Plextor_READ_DVD_RAW_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_READ_EEPROM_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_READ_EEPROM_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_POWEREC_GET_SPEEDS_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_POWEREC_GET_SPEEDS_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_SILENT_MODE_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_SILENT_MODE_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_GIGAREC_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_GIGAREC_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_VARIREC_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_VARIREC_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_SECUREC_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_SECUREC_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_SPEEDREAD_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_SPEEDREAD_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_SINGLE_SESSION_HIDE_CD_R_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_SINGLE_SESSION_HIDE_CD_R_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_BOOK_BITSETTING_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_BOOK_BITSETTING_took_0_ms", resourceCulture); + } + } + + internal static string PLEXTOR_GET_TEST_WRITE_DVD_took_0_ms { + get { + return ResourceManager.GetString("PLEXTOR_GET_TEST_WRITE_DVD_took_0_ms", resourceCulture); + } + } + + internal static string READ_6_took_0_ms { + get { + return ResourceManager.GetString("READ_6_took_0_ms", resourceCulture); + } + } + + internal static string READ_10_took_0_ms { + get { + return ResourceManager.GetString("READ_10_took_0_ms", resourceCulture); + } + } + + internal static string READ_12_took_0_ms { + get { + return ResourceManager.GetString("READ_12_took_0_ms", resourceCulture); + } + } + + internal static string READ_16_took_0_ms { + get { + return ResourceManager.GetString("READ_16_took_0_ms", resourceCulture); + } + } + + internal static string READ_LONG_10_took_0_ms { + get { + return ResourceManager.GetString("READ_LONG_10_took_0_ms", resourceCulture); + } + } + + internal static string READ_LONG_16_took_0_ms { + get { + return ResourceManager.GetString("READ_LONG_16_took_0_ms", resourceCulture); + } + } + + internal static string SEEK_6_took_0_ms { + get { + return ResourceManager.GetString("SEEK_6_took_0_ms", resourceCulture); + } + } + + internal static string SEEK_10_took_0_ms { + get { + return ResourceManager.GetString("SEEK_10_took_0_ms", resourceCulture); + } + } + + internal static string READ_ATTRIBUTE_took_0_ms { + get { + return ResourceManager.GetString("READ_ATTRIBUTE_took_0_ms", resourceCulture); + } + } + + internal static string INQUIRY_took_0_ms { + get { + return ResourceManager.GetString("INQUIRY_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to TEST UNIT READY took {0} ms.. - /// internal static string TEST_UNIT_READY_took_0_ms { get { return ResourceManager.GetString("TEST_UNIT_READY_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to TRACK SELECT took {0} ms.. - /// + internal static string MODE_SENSE_6_took_0_ms { + get { + return ResourceManager.GetString("MODE_SENSE_6_took_0_ms", resourceCulture); + } + } + + internal static string MODE_SENSE_10_took_0_ms { + get { + return ResourceManager.GetString("MODE_SENSE_10_took_0_ms", resourceCulture); + } + } + + internal static string PREVENT_ALLOW_MEDIUM_REMOVAL_took_0_ms { + get { + return ResourceManager.GetString("PREVENT_ALLOW_MEDIUM_REMOVAL_took_0_ms", resourceCulture); + } + } + + internal static string READ_CAPACITY_took_0_ms { + get { + return ResourceManager.GetString("READ_CAPACITY_took_0_ms", resourceCulture); + } + } + + internal static string READ_CAPACITY_16_took_0_ms { + get { + return ResourceManager.GetString("READ_CAPACITY_16_took_0_ms", resourceCulture); + } + } + + internal static string READ_MEDIA_SERIAL_NUMBER_took_0_ms { + get { + return ResourceManager.GetString("READ_MEDIA_SERIAL_NUMBER_took_0_ms", resourceCulture); + } + } + + internal static string MODE_SELECT_6_took_0_ms { + get { + return ResourceManager.GetString("MODE_SELECT_6_took_0_ms", resourceCulture); + } + } + + internal static string MODE_SELECT_10_took_0_ms { + get { + return ResourceManager.GetString("MODE_SELECT_10_took_0_ms", resourceCulture); + } + } + + internal static string REQUEST_SENSE_took_0_ms { + get { + return ResourceManager.GetString("REQUEST_SENSE_took_0_ms", resourceCulture); + } + } + + internal static string LOAD_UNLOAD_6_took_0_ms { + get { + return ResourceManager.GetString("LOAD_UNLOAD_6_took_0_ms", resourceCulture); + } + } + + internal static string LOCATE_10_took_0_ms { + get { + return ResourceManager.GetString("LOCATE_10_took_0_ms", resourceCulture); + } + } + + internal static string LOCATE_16_took_0_ms { + get { + return ResourceManager.GetString("LOCATE_16_took_0_ms", resourceCulture); + } + } + + internal static string READ_BLOCK_LIMITS_took_0_ms { + get { + return ResourceManager.GetString("READ_BLOCK_LIMITS_took_0_ms", resourceCulture); + } + } + + internal static string READ_POSITION_took_0_ms { + get { + return ResourceManager.GetString("READ_POSITION_took_0_ms", resourceCulture); + } + } + + internal static string READ_REVERSE_6_took_0_ms { + get { + return ResourceManager.GetString("READ_REVERSE_6_took_0_ms", resourceCulture); + } + } + + internal static string READ_REVERSE_16_took_0_ms { + get { + return ResourceManager.GetString("READ_REVERSE_16_took_0_ms", resourceCulture); + } + } + + internal static string RECOVER_BUFFERED_DATA_took_0_ms { + get { + return ResourceManager.GetString("RECOVER_BUFFERED_DATA_took_0_ms", resourceCulture); + } + } + + internal static string REPORT_DENSITY_SUPPORT_took_0_ms { + get { + return ResourceManager.GetString("REPORT_DENSITY_SUPPORT_took_0_ms", resourceCulture); + } + } + + internal static string REWIND_took_0_ms { + get { + return ResourceManager.GetString("REWIND_took_0_ms", resourceCulture); + } + } + internal static string TRACK_SELECT_took_0_ms { get { return ResourceManager.GetString("TRACK_SELECT_took_0_ms", resourceCulture); } } - /// - /// Looks up a localized string similar to Unrecognized packet version.... - /// + internal static string SPACE_took_0_ms { + get { + return ResourceManager.GetString("SPACE_took_0_ms", resourceCulture); + } + } + + internal static string SYQUEST_READ_6_took_0_ms { + get { + return ResourceManager.GetString("SYQUEST_READ_6_took_0_ms", resourceCulture); + } + } + + internal static string SYQUEST_READ_10_took_0_ms { + get { + return ResourceManager.GetString("SYQUEST_READ_10_took_0_ms", resourceCulture); + } + } + + internal static string Platform_0_not_yet_supported { + get { + return ResourceManager.GetString("Platform_0_not_yet_supported", resourceCulture); + } + } + + internal static string Invalid_remote_URI { + get { + return ResourceManager.GetString("Invalid_remote_URI", resourceCulture); + } + } + + internal static string Error_connecting_to_host { + get { + return ResourceManager.GetString("Error_connecting_to_host", resourceCulture); + } + } + + internal static string Invalid_remote_protocol { + get { + return ResourceManager.GetString("Invalid_remote_protocol", resourceCulture); + } + } + + internal static string Host_not_found { + get { + return ResourceManager.GetString("Host_not_found", resourceCulture); + } + } + + internal static string Connected_to_0 { + get { + return ResourceManager.GetString("Connected_to_0", resourceCulture); + } + } + + internal static string Could_not_read_from_the_network { + get { + return ResourceManager.GetString("Could_not_read_from_the_network", resourceCulture); + } + } + + internal static string Received_data_is_not_an_Aaru_Remote_Packet { + get { + return ResourceManager.GetString("Received_data_is_not_an_Aaru_Remote_Packet", resourceCulture); + } + } + + internal static string Expected_Hello_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_Hello_Packet_got_packet_type_0", resourceCulture); + } + } + internal static string Unrecognized_packet_version { get { return ResourceManager.GetString("Unrecognized_packet_version", resourceCulture); } } + + internal static string Could_not_write_to_the_network { + get { + return ResourceManager.GetString("Could_not_write_to_the_network", resourceCulture); + } + } + + internal static string Remote_IsRoot_Expected_Am_I_Root_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Remote_IsRoot_Expected_Am_I_Root_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Remote_ListDevices_Expected_List_Devices_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Remote_ListDevices_Expected_List_Devices_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_SCSI_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_SCSI_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_ATA_CHS_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_ATA_CHS_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_ATA_LBA28_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_ATA_LBA28_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_ATA_LBA48_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_ATA_LBA48_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_SDHCI_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_SDHCI_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_Device_Type_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_Device_Type_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_USB_Data_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_USB_Data_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_FireWire_Data_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_FireWire_Data_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_PCMCIA_Data_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_PCMCIA_Data_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_multi_MMC_SD_command_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_multi_MMC_SD_command_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Expected_the_response_to_0_SD_MMC_commands_but_got_1_responses { + get { + return ResourceManager.GetString("Expected_the_response_to_0_SD_MMC_commands_but_got_1_responses", resourceCulture); + } + } + + internal static string Expected_NOP_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_NOP_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string ReOpen_error_closing_device { + get { + return ResourceManager.GetString("ReOpen_error_closing_device", resourceCulture); + } + } + + internal static string ReOpen_error_0_with_reason_1 { + get { + return ResourceManager.GetString("ReOpen_error_0_with_reason_1", resourceCulture); + } + } + + internal static string Expected_OS_Read_Response_Packet_got_packet_type_0 { + get { + return ResourceManager.GetString("Expected_OS_Read_Response_Packet_got_packet_type_0", resourceCulture); + } + } + + internal static string Remote_error_0_in_OS_Read { + get { + return ResourceManager.GetString("Remote_error_0_in_OS_Read", resourceCulture); + } + } + + internal static string LiteOn_READ_DVD_RAW_took_0_ms { + get { + return ResourceManager.GetString("LiteOn_READ_DVD_RAW_took_0_ms", resourceCulture); + } + } } } diff --git a/Aaru.Devices/Localization/Localization.resx b/Aaru.Devices/Localization/Localization.resx index b87667258..6f981ff40 100644 --- a/Aaru.Devices/Localization/Localization.resx +++ b/Aaru.Devices/Localization/Localization.resx @@ -508,4 +508,7 @@ Remote error {0} in OS Read... + + Lite-On READ DVD (RAW) took {0} ms. + \ No newline at end of file diff --git a/Aaru.Images/AaruFormat/Enums.cs b/Aaru.Images/AaruFormat/Enums.cs index 550503768..8a41755d4 100644 --- a/Aaru.Images/AaruFormat/Enums.cs +++ b/Aaru.Images/AaruFormat/Enums.cs @@ -298,7 +298,11 @@ public sealed partial class AaruFormat /// DVD ID Error Detection Code (IED) DvdSectorIed = 84, /// DVD Error Detection Code (EDC) - DvdSectorEdc = 85 + DvdSectorEdc = 85, + /// DVD Error Correction Code (ECC) Parity of Inner Code (PI) + DvdSectorEccPi = 86, + /// DVD Error Correction Code (ECC) Parity of Outer Code (PO) + DvdEccBlockPo = 87, } #endregion diff --git a/Aaru.Localization/Core.Designer.cs b/Aaru.Localization/Core.Designer.cs index 5485e65e7..1699231e8 100644 --- a/Aaru.Localization/Core.Designer.cs +++ b/Aaru.Localization/Core.Designer.cs @@ -11,46 +11,32 @@ namespace Aaru.Localization { using System; - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class Core { - private static global::System.Resources.ResourceManager resourceMan; + private static System.Resources.ResourceManager resourceMan; - private static global::System.Globalization.CultureInfo resourceCulture; + private static System.Globalization.CultureInfo resourceCulture; - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Core() { } - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Resources.ResourceManager ResourceManager { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public static System.Resources.ResourceManager ResourceManager { get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aaru.Localization.Core", typeof(Core).Assembly); + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aaru.Localization.Core", typeof(Core).Assembly); resourceMan = temp; } return resourceMan; } } - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - public static global::System.Globalization.CultureInfo Culture { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public static System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -59,8404 +45,1716 @@ namespace Aaru.Localization { } } - /// - /// Looks up a localized string similar to {0:D2}:{1:D2}:{2:D2} - LBA {3,6}: {4} area, {5}. - /// - public static string _0_1_2_LBA_3_4_area_5 { - get { - return ResourceManager.GetString("_0_1_2_LBA_3_4_area_5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes. - /// - public static string _0_bytes { - get { - return ResourceManager.GetString("_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors. - /// - public static string _0_sectors { - get { - return ResourceManager.GetString("_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors at the end of the disc are unreadable. This is normal in CD-R(W) discs as these sectors are created by burning software as part of the recording process. Empty ones will be generated and stored in the image.. - /// - public static string _0_sectors_at_the_end_of_the_disc_are_unreadable { - get { - return ResourceManager.GetString("_0_sectors_at_the_end_of_the_disc_are_unreadable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors could not be read.. - /// - public static string _0_sectors_could_not_be_read { - get { - return ResourceManager.GetString("_0_sectors_could_not_be_read", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors took less than 10 ms but more than 3 ms.. - /// - public static string _0_sectors_took_less_than_10_ms_but_more_than_3_ms { - get { - return ResourceManager.GetString("_0_sectors_took_less_than_10_ms_but_more_than_3_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors took less than 150 ms but more than 50 ms.. - /// - public static string _0_sectors_took_less_than_150_ms_but_more_than_50_ms { - get { - return ResourceManager.GetString("_0_sectors_took_less_than_150_ms_but_more_than_50_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors took less than 3 ms.. - /// - public static string _0_sectors_took_less_than_3_ms { - get { - return ResourceManager.GetString("_0_sectors_took_less_than_3_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors took less than 50 ms but more than 10 ms.. - /// - public static string _0_sectors_took_less_than_50_ms_but_more_than_10_ms { - get { - return ResourceManager.GetString("_0_sectors_took_less_than_50_ms_but_more_than_10_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors took less than 500 ms but more than 150 ms.. - /// - public static string _0_sectors_took_less_than_500_ms_but_more_than_150_ms { - get { - return ResourceManager.GetString("_0_sectors_took_less_than_500_ms_but_more_than_150_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors took more than 500 ms.. - /// - public static string _0_sectors_took_more_than_500_ms { - get { - return ResourceManager.GetString("_0_sectors_took_more_than_500_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} subchannels could not be read.. - /// - public static string _0_subchannels_could_not_be_read { - get { - return ResourceManager.GetString("_0_subchannels_could_not_be_read", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (FIXED). - /// - public static string _FIXED { - get { - return ResourceManager.GetString("_FIXED", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (GENERATED). - /// - public static string _GENERATED { - get { - return ResourceManager.GetString("_GENERATED", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Aborted!. - /// - public static string Aborted { - get { - return ResourceManager.GetString("Aborted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Aborting.... - /// - public static string Aborting { - get { - return ResourceManager.GetString("Aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Access time is fast. - /// - public static string Access_time_is_fast { - get { - return ResourceManager.GetString("Access_time_is_fast", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Access time is slow. - /// - public static string Access_time_is_slow { - get { - return ResourceManager.GetString("Access_time_is_slow", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Added {0} CompactDisc read offsets. - /// - public static string Added_0_CompactDisc_read_offsets { - get { - return ResourceManager.GetString("Added_0_CompactDisc_read_offsets", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Added {0} known devices. - /// - public static string Added_0_known_devices { - get { - return ResourceManager.GetString("Added_0_known_devices", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Added {0} known iNES/NES 2.0 headers. - /// - public static string Added_0_known_iNES_NES_2_0_headers { - get { - return ResourceManager.GetString("Added_0_known_iNES_NES_2_0_headers", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Added {0} USB products. - /// - public static string Added_0_usb_products { - get { - return ResourceManager.GetString("Added_0_usb_products", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Added {0} USB vendors. - /// - public static string Added_0_usb_vendors { - get { - return ResourceManager.GetString("Added_0_usb_vendors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Adding CD-i Ready hole from LBA {0} to {1} inclusive.. - /// - public static string Adding_CD_i_Ready_hole_from_LBA_0_to_1_inclusive { - get { - return ResourceManager.GetString("Adding_CD_i_Ready_hole_from_LBA_0_to_1_inclusive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Adding CompactDisc read offsets. - /// - public static string Adding_CompactDisc_read_offsets { - get { - return ResourceManager.GetString("Adding_CompactDisc_read_offsets", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Adding known devices. - /// - public static string Adding_known_devices { - get { - return ResourceManager.GetString("Adding_known_devices", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Adding known iNES/NES 2.0 headers. - /// - public static string Adding_known_iNES_NES_2_0_headers { - get { - return ResourceManager.GetString("Adding_known_iNES_NES_2_0_headers", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Adding USB products. - /// - public static string Adding_USB_products { - get { - return ResourceManager.GetString("Adding_USB_products", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Adding USB vendors. - /// - public static string Adding_USB_vendors { - get { - return ResourceManager.GetString("Adding_USB_vendors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All Q empty for LBA {0}. - /// - public static string All_Q_empty_for_LBA_0 { - get { - return ResourceManager.GetString("All_Q_empty_for_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Application identifier: {0}. - /// - public static string Application_identifier_0 { - get { - return ResourceManager.GetString("Application_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Architecture: {0}. - /// - public static string Architecture_0 { - get { - return ResourceManager.GetString("Architecture_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Archive information:[/]. - /// - public static string Archive_Information_With_Markup { - get { - return ResourceManager.GetString("Archive_Information_With_Markup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ASCII implemented operating definitions: {0}. - /// - public static string ASCII_implemented_operating_definitions_0 { - get { - return ResourceManager.GetString("ASCII_implemented_operating_definitions_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ASCII Page {0:X2}h: {1}. - /// - public static string ASCII_Page_0_1 { - get { - return ResourceManager.GetString("ASCII_Page_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ATA command {0} error: status = {1}, error = {2}.. - /// - public static string ATA_command_0_error_status_1_error_2 { - get { - return ResourceManager.GetString("ATA_command_0_error_status_1_error_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ATA command {0} operating system error: {1}.. - /// - public static string ATA_command_0_operating_system_error_1 { - get { - return ResourceManager.GetString("ATA_command_0_operating_system_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ATA ERROR: {0} STATUS: {1}. - /// - public static string ATA_ERROR_0_STATUS_1 { - get { - return ResourceManager.GetString("ATA_ERROR_0_STATUS_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]ATA IDENTIFY contained in image:[/]. - /// - public static string ATA_IDENTIFY_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("ATA_IDENTIFY_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ATA reading C/H/S {0}/{1}/{2} error: status = {3}, error = {4}.. - /// - public static string ATA_reading_CHS_0_1_2_error_status_3_error_4 { - get { - return ResourceManager.GetString("ATA_reading_CHS_0_1_2_error_status_3_error_4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ATA reading C/H/S {0}/{1}/{2} operating system error: {3}.. - /// - public static string ATA_reading_CHS_0_1_2_operating_system_error_3 { - get { - return ResourceManager.GetString("ATA_reading_CHS_0_1_2_operating_system_error_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ATA reading LBA {0} error: status = {1}, error = {2}.. - /// - public static string ATA_reading_LBA_0_error_status_1_error_2 { - get { - return ResourceManager.GetString("ATA_reading_LBA_0_error_status_1_error_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ATA reading LBA {0} operating system error: {1}.. - /// - public static string ATA_reading_LBA_0_operating_system_error_1 { - get { - return ResourceManager.GetString("ATA_reading_LBA_0_operating_system_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]ATAPI IDENTIFY contained in image:[/]. - /// - public static string ATAPI_IDENTIFY_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("ATAPI_IDENTIFY_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automation Device Serial Number: {0}. - /// - public static string Automation_Device_Serial_Number_0 { - get { - return ResourceManager.GetString("Automation_Device_Serial_Number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Average checksum speed: {0}. - /// - public static string Average_checksum_speed_0 { - get { - return ResourceManager.GetString("Average_checksum_speed_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Average dump speed: {0}. - /// - public static string Average_dump_speed_0 { - get { - return ResourceManager.GetString("Average_dump_speed_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Average speed: {0}. - /// - public static string Average_speed_0 { - get { - return ResourceManager.GetString("Average_speed_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Average write speed: {0}. - /// - public static string Average_write_speed_0 { - get { - return ResourceManager.GetString("Average_write_speed_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Because of the commands sent to a device, dumping XGD must be done with administrative privileges. Cannot continue.. - /// - public static string Because_of_commands_sent_dumping_XGD_must_be_administrative_Cannot_continue { - get { - return ResourceManager.GetString("Because_of_commands_sent_dumping_XGD_must_be_administrative_Cannot_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blank block found, end of tape?.... - /// - public static string Blank_block_found_end_of_tape { - get { - return ResourceManager.GetString("Blank_block_found_end_of_tape", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Block {0} could not be read.. - /// - public static string Block_0_could_not_be_read { - get { - return ResourceManager.GetString("Block_0_could_not_be_read", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Block limits for device:. - /// - public static string Block_limits_for_device { - get { - return ResourceManager.GetString("Block_limits_for_device", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blocksize changed to {0} bytes at block {1}. - /// - public static string Blocksize_changed_to_0_bytes_at_block_1 { - get { - return ResourceManager.GetString("Blocksize_changed_to_0_bytes_at_block_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blu-ray type set to "BDU", setting disc type to Ultra HD Blu-ray.. - /// - public static string Blu_ray_type_BDU_setting_disc_type_UHD { - get { - return ResourceManager.GetString("Blu_ray_type_BDU_setting_disc_type_UHD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blu-ray type set to "XG4", setting disc type to Xbox One Disc (XGD4).. - /// - public static string Blu_ray_type_XG4_setting_disc_type_XGD4 { - get { - return ResourceManager.GetString("Blu_ray_type_XG4_setting_disc_type_XGD4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blu-ray Burst Cutting Area. - /// - public static string Bluray_Burst_Cutting_Area { - get { - return ResourceManager.GetString("Bluray_Burst_Cutting_Area", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blu-ray Cartridge Status. - /// - public static string Bluray_Cartridge_Status { - get { - return ResourceManager.GetString("Bluray_Cartridge_Status", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blu-ray Disc Definition Structure. - /// - public static string Bluray_Disc_Definition_Structure { - get { - return ResourceManager.GetString("Bluray_Disc_Definition_Structure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Blu-ray Disc Definition Structure contained in image:[/]. - /// - public static string Bluray_Disc_Definition_Structure_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("Bluray_Disc_Definition_Structure_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blu-ray Disc Information. - /// - public static string Bluray_Disc_Information { - get { - return ResourceManager.GetString("Bluray_Disc_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Blu-ray Disc Information contained in image:[/]. - /// - public static string Bluray_Disc_Information_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("Bluray_Disc_Information_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Blu-ray Spare Area Information. - /// - public static string Bluray_Spare_Area_Information { - get { - return ResourceManager.GetString("Bluray_Spare_Area_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Building track map.... - /// - public static string Building_track_map { - get { - return ResourceManager.GetString("Building_track_map", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculating pregaps, can take some time.... - /// - public static string Calculating_pregaps__can_take_some_time { - get { - return ResourceManager.GetString("Calculating_pregaps__can_take_some_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can do challenge/response with Xbox 360 discs. - /// - public static string Can_do_challenge_response_with_Xbox_360_discs { - get { - return ResourceManager.GetString("Can_do_challenge_response_with_Xbox_360_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can do challenge/response with Xbox discs. - /// - public static string Can_do_challenge_response_with_Xbox_discs { - get { - return ResourceManager.GetString("Can_do_challenge_response_with_Xbox_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can read and decrypt SS from Xbox 360 discs. - /// - public static string Can_read_and_decrypt_SS_from_Xbox_360_discs { - get { - return ResourceManager.GetString("Can_read_and_decrypt_SS_from_Xbox_360_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can read and decrypt SS from Xbox discs. - /// - public static string Can_read_and_decrypt_SS_from_Xbox_discs { - get { - return ResourceManager.GetString("Can_read_and_decrypt_SS_from_Xbox_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can set locked state. - /// - public static string Can_set_Kreon_locked_state { - get { - return ResourceManager.GetString("Can_set_Kreon_locked_state", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can set wxripper unlock state with Xbox 360 discs. - /// - public static string Can_set_wxripper_unlock_state_with_Xbox_360_discs { - get { - return ResourceManager.GetString("Can_set_wxripper_unlock_state_with_Xbox_360_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can set wxripper unlock state with Xbox discs. - /// - public static string Can_set_wxripper_unlock_state_with_Xbox_discs { - get { - return ResourceManager.GetString("Can_set_wxripper_unlock_state_with_Xbox_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can set xtreme unlock state with Xbox 360 discs. - /// - public static string Can_set_xtreme_unlock_state_with_Xbox_360_discs { - get { - return ResourceManager.GetString("Can_set_xtreme_unlock_state_with_Xbox_360_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can set xtreme unlock state with Xbox discs. - /// - public static string Can_set_xtreme_unlock_state_with_Xbox_discs { - get { - return ResourceManager.GetString("Can_set_xtreme_unlock_state_with_Xbox_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot create a sidecar from a directory.. - /// - public static string Cannot_create_a_sidecar_from_a_directory { - get { - return ResourceManager.GetString("Cannot_create_a_sidecar_from_a_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot decode PFI.. - /// - public static string Cannot_decode_PFI { - get { - return ResourceManager.GetString("Cannot_decode_PFI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot decode Xbox Security Sector, not continuing.. - /// - public static string Cannot_decode_Xbox_Security_Sector_not_continuing { - get { - return ResourceManager.GetString("Cannot_decode_Xbox_Security_Sector_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot dump a blank tape.... - /// - public static string Cannot_dump_a_blank_tape { - get { - return ResourceManager.GetString("Cannot_dump_a_blank_tape", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot dump blank media.. - /// - public static string Cannot_dump_blank_media { - get { - return ResourceManager.GetString("Cannot_dump_blank_media", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot dump empty media!. - /// - public static string Cannot_dump_empty_media { - get { - return ResourceManager.GetString("Cannot_dump_empty_media", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot dump XGD without administrative privileges.. - /// - public static string Cannot_dump_XGD_without_administrative_privileges { - get { - return ResourceManager.GetString("Cannot_dump_XGD_without_administrative_privileges", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find lead-out.... - /// - public static string Cannot_find_lead_out { - get { - return ResourceManager.GetString("Cannot_find_lead_out", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot get disc capacity.. - /// - public static string Cannot_get_disc_capacity { - get { - return ResourceManager.GetString("Cannot_get_disc_capacity", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot get DMI.. - /// - public static string Cannot_get_DMI { - get { - return ResourceManager.GetString("Cannot_get_DMI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot get PFI.. - /// - public static string Cannot_get_PFI { - get { - return ResourceManager.GetString("Cannot_get_PFI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot get video partition size, not continuing. Try to eject and reinsert the disc, if it keeps happening, contact support.. - /// - public static string Cannot_get_video_partition_size_not_continuing { - get { - return ResourceManager.GetString("Cannot_get_video_partition_size_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot get Xbox Security Sector, not continuing.. - /// - public static string Cannot_get_Xbox_Security_Sector_not_continuing { - get { - return ResourceManager.GetString("Cannot_get_Xbox_Security_Sector_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot lock drive, not continuing.. - /// - public static string Cannot_lock_drive_not_continuing { - get { - return ResourceManager.GetString("Cannot_lock_drive_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot open the device in writable mode, as needed by some commands.. - /// - public static string Cannot_open_the_device_in_writable_mode_as_needed_by_some_commands { - get { - return ResourceManager.GetString("Cannot_open_the_device_in_writable_mode_as_needed_by_some_commands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot position tape to block {0}.. - /// - public static string Cannot_position_tape_to_block_0 { - get { - return ResourceManager.GetString("Cannot_position_tape_to_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot read device, don't know why, exiting.... - /// - public static string Cannot_read_device_dont_know_why_exiting { - get { - return ResourceManager.GetString("Cannot_read_device_dont_know_why_exiting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot read from disc, not continuing.... - /// - public static string Cannot_read_from_disc_not_continuing { - get { - return ResourceManager.GetString("Cannot_read_from_disc_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot read medium, aborting scan.... - /// - public static string Cannot_read_medium_aborting_scan { - get { - return ResourceManager.GetString("Cannot_read_medium_aborting_scan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot read RAW TOC, requesting processed one.... - /// - public static string Cannot_read_RAW_TOC_requesting_processed_one { - get { - return ResourceManager.GetString("Cannot_read_RAW_TOC_requesting_processed_one", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot reposition tape, unable to resume. Dumping from the start.. - /// - public static string Cannot_reposition_tape_unable_to_resume_Dumping_from_the_start { - get { - return ResourceManager.GetString("Cannot_reposition_tape_unable_to_resume_Dumping_from_the_start", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot reposition tape, unable to resume. If you want to continue use force.. - /// - public static string Cannot_reposition_tape_unable_to_resume_If_you_want_to_continue_use_force { - get { - return ResourceManager.GetString("Cannot_reposition_tape_unable_to_resume_If_you_want_to_continue_use_force", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot stat {0}. - /// - public static string Cannot_stat_0 { - get { - return ResourceManager.GetString("Cannot_stat_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot unlock drive, not continuing.. - /// - public static string Cannot_unlock_drive_not_continuing { - get { - return ResourceManager.GetString("Cannot_unlock_drive_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write ATAPI IDENTIFY PACKET DEVICE.. - /// - public static string Cannot_write_ATAPI_IDENTIFY_PACKET_DEVICE { - get { - return ResourceManager.GetString("Cannot_write_ATAPI_IDENTIFY_PACKET_DEVICE", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write CID to output image.. - /// - public static string Cannot_write_CID_to_output_image { - get { - return ResourceManager.GetString("Cannot_write_CID_to_output_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write CSD to output image.. - /// - public static string Cannot_write_CSD_to_output_image { - get { - return ResourceManager.GetString("Cannot_write_CSD_to_output_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write Extended CSD to output image.. - /// - public static string Cannot_write_Extended_CSD_to_output_image { - get { - return ResourceManager.GetString("Cannot_write_Extended_CSD_to_output_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write OCR to output image.. - /// - public static string Cannot_write_OCR_to_output_image { - get { - return ResourceManager.GetString("Cannot_write_OCR_to_output_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write SCR to output image.. - /// - public static string Cannot_write_SCR_to_output_image { - get { - return ResourceManager.GetString("Cannot_write_SCR_to_output_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write SCSI INQUIRY.. - /// - public static string Cannot_write_SCSI_INQUIRY { - get { - return ResourceManager.GetString("Cannot_write_SCSI_INQUIRY", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write SCSI MODE SENSE (10).. - /// - public static string Cannot_write_SCSI_MODE_SENSE_10 { - get { - return ResourceManager.GetString("Cannot_write_SCSI_MODE_SENSE_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write SCSI MODE SENSE (6).. - /// - public static string Cannot_write_SCSI_MODE_SENSE_6 { - get { - return ResourceManager.GetString("Cannot_write_SCSI_MODE_SENSE_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write tag {0}.. - /// - public static string Cannot_write_tag_0 { - get { - return ResourceManager.GetString("Cannot_write_tag_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write USB descriptors.. - /// - public static string Cannot_write_USB_descriptors { - get { - return ResourceManager.GetString("Cannot_write_USB_descriptors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Card specific data: 0x{0:X4}. - /// - public static string Card_specific_data_0 { - get { - return ResourceManager.GetString("Card_specific_data_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cartridge has {0} bytes. - /// - public static string Cartridge_has_0_bytes { - get { - return ResourceManager.GetString("Cartridge_has_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cartridge has {0} bytes ({1:F3} GiB). - /// - public static string Cartridge_has_0_bytes_1_GiB { - get { - return ResourceManager.GetString("Cartridge_has_0_bytes_1_GiB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cartridge has {0} bytes ({1:F3} KiB). - /// - public static string Cartridge_has_0_bytes_1_KiB { - get { - return ResourceManager.GetString("Cartridge_has_0_bytes_1_KiB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cartridge has {0} bytes ({1:F3} MiB). - /// - public static string Cartridge_has_0_bytes_1_MiB { - get { - return ResourceManager.GetString("Cartridge_has_0_bytes_1_MiB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD read speed limited to {0}x. - /// - public static string CD_read_speed_limited_to_0 { - get { - return ResourceManager.GetString("CD_read_speed_limited_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD-TEXT on Lead-In. - /// - public static string CD_TEXT_on_Lead_In { - get { - return ResourceManager.GetString("CD_TEXT_on_Lead_In", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD write speed limited to {0}x. - /// - public static string CD_write_speed_limited_to_0 { - get { - return ResourceManager.GetString("CD_write_speed_limited_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Changed to file {0} at block {1}. - /// - public static string Changed_to_file_0_at_block_1 { - get { - return ResourceManager.GetString("Changed_to_file_0_at_block_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking filesystems.... - /// - public static string Checking_filesystems { - get { - return ResourceManager.GetString("Checking_filesystems", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if drive supports full raw subchannel reading.... - /// - public static string Checking_if_drive_supports_full_raw_subchannel_reading { - get { - return ResourceManager.GetString("Checking_if_drive_supports_full_raw_subchannel_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if drive supports PQ subchannel reading.... - /// - public static string Checking_if_drive_supports_PQ_subchannel_reading { - get { - return ResourceManager.GetString("Checking_if_drive_supports_PQ_subchannel_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if drive supports READ(10).... - /// - public static string Checking_if_drive_supports_READ_10 { - get { - return ResourceManager.GetString("Checking_if_drive_supports_READ_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if drive supports READ(12).... - /// - public static string Checking_if_drive_supports_READ_12 { - get { - return ResourceManager.GetString("Checking_if_drive_supports_READ_12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if drive supports READ(16).... - /// - public static string Checking_if_drive_supports_READ_16 { - get { - return ResourceManager.GetString("Checking_if_drive_supports_READ_16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if drive supports READ(6).... - /// - public static string Checking_if_drive_supports_READ_6 { - get { - return ResourceManager.GetString("Checking_if_drive_supports_READ_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if drive supports reading without subchannel.... - /// - public static string Checking_if_drive_supports_reading_without_subchannel { - get { - return ResourceManager.GetString("Checking_if_drive_supports_reading_without_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking if media is UMD or MemoryStick.... - /// - public static string Checking_if_media_is_UMD_or_MemoryStick { - get { - return ResourceManager.GetString("Checking_if_media_is_UMD_or_MemoryStick", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking mode for track {0}.... - /// - public static string Checking_mode_for_track_0 { - get { - return ResourceManager.GetString("Checking_mode_for_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CID obtained correctly.... - /// - public static string CID_obtained_correctly { - get { - return ResourceManager.GetString("CID_obtained_correctly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Closed in {0}.. - /// - public static string Closed_in_0 { - get { - return ResourceManager.GetString("Closed_in_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Closing output file.. - /// - public static string Closing_output_file { - get { - return ResourceManager.GetString("Closing_output_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Combined disc and drive offsets are {0} bytes ({1} samples).. - /// - public static string Combined_disc_and_drive_offset_are_0_bytes_1_samples { - get { - return ResourceManager.GetString("Combined_disc_and_drive_offset_are_0_bytes_1_samples", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Combined offset is {0} bytes ({1} samples).. - /// - public static string Combined_offset_is_0_bytes_1_samples { - get { - return ResourceManager.GetString("Combined_offset_is_0_bytes_1_samples", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Command line: {0}. - /// - public static string Command_line_0 { - get { - return ResourceManager.GetString("Command_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Comments:[/] {0}. - /// - public static string Comments_0_WithMarkup { - get { - return ResourceManager.GetString("Comments_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]CompactDisc Absolute Time In Pregroove (ATIP) contained in image:[/]. - /// - public static string CompactDisc_Absolute_Time_In_Pregroove_ATIP_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("CompactDisc_Absolute_Time_In_Pregroove_ATIP_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]CompactDisc Lead-in's CD-Text contained in image:[/]. - /// - public static string CompactDisc_Lead_in_CD_Text_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("CompactDisc_Lead_in_CD_Text_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]CompactDisc Media Catalogue Number contained in image:[/] {0}. - /// - public static string CompactDisc_Media_Catalogue_Number_contained_in_image_0_WithMarkup { - get { - return ResourceManager.GetString("CompactDisc_Media_Catalogue_Number_contained_in_image_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]CompactDisc Power Management Area contained in image:[/]. - /// - public static string CompactDisc_Power_Management_Area_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("CompactDisc_Power_Management_Area_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]CompactDisc Table of Contents contained in image:[/]. - /// - public static string CompactDisc_Table_of_Contents_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("CompactDisc_Table_of_Contents_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CompactFlash device: {0}. - /// - public static string CompactFlash_device_0 { - get { - return ResourceManager.GetString("CompactFlash_device_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Contains {0} readable media tags:[/]. - /// - public static string Contains_0_readable_media_tags_WithMarkup { - get { - return ResourceManager.GetString("Contains_0_readable_media_tags_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Contains {0} readable sector tags:[/]. - /// - public static string Contains_0_readable_sector_tags_WithMarkup { - get { - return ResourceManager.GetString("Contains_0_readable_sector_tags_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Contains a media of {0} sectors with a maximum sector size of {1} bytes (if all sectors are of the same size this would be {2}). - /// - public static string Contains_a_media_of_0_sectors_with_a_maximum_sector_size_of_1_bytes_etc { - get { - return ResourceManager.GetString("Contains_a_media_of_0_sectors_with_a_maximum_sector_size_of_1_bytes_etc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Contains a media of type {0} and XML type {1}. - /// - public static string Contains_a_media_of_type_0_and_XML_type_1 { - get { - return ResourceManager.GetString("Contains_a_media_of_type_0_and_XML_type_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Contains a media of type [italic]{0}[/] and XML type [italic]{1}[/]. - /// - public static string Contains_a_media_of_type_0_and_XML_type_1_WithMarkup { - get { - return ResourceManager.GetString("Contains_a_media_of_type_0_and_XML_type_1_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Continuing dumping cooked data.. - /// - public static string Continuing_dumping_cooked_data { - get { - return ResourceManager.GetString("Continuing_dumping_cooked_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Correctly retried block {0} in pass {1}.. - /// - public static string Correctly_retried_block_0_in_pass_1 { - get { - return ResourceManager.GetString("Correctly_retried_block_0_in_pass_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Correctly retried sector {0} in pass {1}.. - /// - public static string Correctly_retried_sector_0_in_pass_1 { - get { - return ResourceManager.GetString("Correctly_retried_sector_0_in_pass_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Correctly retried sector {0} subchannel in pass {1}.. - /// - public static string Correctly_retried_sector_0_subchannel_in_pass_1 { - get { - return ResourceManager.GetString("Correctly_retried_sector_0_subchannel_in_pass_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Correctly retried title key {0} in pass {1}.. - /// - public static string Correctly_retried_title_key_0_in_pass_1 { - get { - return ResourceManager.GetString("Correctly_retried_title_key_0_in_pass_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not check current position, continuing.. - /// - public static string Could_not_check_current_position_continuing { - get { - return ResourceManager.GetString("Could_not_check_current_position_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not check current position, unable to resume. Dumping from the start.. - /// - public static string Could_not_check_current_position_unable_to_resume_Dumping_from_the_start { - get { - return ResourceManager.GetString("Could_not_check_current_position_unable_to_resume_Dumping_from_the_start", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not check current position, unable to resume. If you want to continue use force.. - /// - public static string Could_not_check_current_position_unable_to_resume_If_you_want_to_continue_use_force { - get { - return ResourceManager.GetString("Could_not_check_current_position_unable_to_resume_If_you_want_to_continue_use_for" + - "ce", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not decode MODE SENSE.... - /// - public static string Could_not_decode_MODE_SENSE { - get { - return ResourceManager.GetString("Could_not_decode_MODE_SENSE", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not decode TOC.... - /// - public static string Could_not_decode_TOC { - get { - return ResourceManager.GetString("Could_not_decode_TOC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not detect capacity.... - /// - public static string Could_not_detect_capacity { - get { - return ResourceManager.GetString("Could_not_detect_capacity", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not detect drive subchannel BCD. - /// - public static string Could_not_detect_drive_subchannel_BCD { - get { - return ResourceManager.GetString("Could_not_detect_drive_subchannel_BCD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not detect if drive subchannel is BCD or not, pregaps could not be calculated, dump may be incorrect.... - /// - public static string Could_not_detect_if_drive_subchannel_is_BCD_or_not_pregaps_could_not_be_calculated_dump_may_be_incorrect { - get { - return ResourceManager.GetString("Could_not_detect_if_drive_subchannel_is_BCD_or_not_pregaps_could_not_be_calculate" + - "d_dump_may_be_incorrect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not detect image format.. - /// - public static string Could_not_detect_image_format { - get { - return ResourceManager.GetString("Could_not_detect_image_format", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find Lead-Out, if you want to continue use force option and will continue until 360000 sectors.... - /// - public static string Could_not_find_Lead_Out_if_you_want_to_continue_use_force_option { - get { - return ResourceManager.GetString("Could_not_find_Lead_Out_if_you_want_to_continue_use_force_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find second session. Have you inserted the correct type of disc?. - /// - public static string Could_not_find_second_session_Have_you_inserted_the_correct_type_of_disc { - get { - return ResourceManager.GetString("Could_not_find_second_session_Have_you_inserted_the_correct_type_of_disc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find VideoNow Color frame offset, dump may not be correct.. - /// - public static string Could_not_find_VideoNow_Color_frame_offset { - get { - return ResourceManager.GetString("Could_not_find_VideoNow_Color_frame_offset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not get a working read command!. - /// - public static string Could_not_get_a_working_read_command { - get { - return ResourceManager.GetString("Could_not_get_a_working_read_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not get correct subchannel for sector {0}. - /// - public static string Could_not_get_correct_subchannel_for_sector_0 { - get { - return ResourceManager.GetString("Could_not_get_correct_subchannel_for_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not get MODE SENSE.... - /// - public static string Could_not_get_MODE_SENSE { - get { - return ResourceManager.GetString("Could_not_get_MODE_SENSE", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not get position. Sense follows.... - /// - public static string Could_not_get_position_Sense_follows { - get { - return ResourceManager.GetString("Could_not_get_position_Sense_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not get tracks!. - /// - public static string Could_not_get_tracks { - get { - return ResourceManager.GetString("Could_not_get_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not get tracks because {0}. - /// - public static string Could_not_get_tracks_because_0 { - get { - return ResourceManager.GetString("Could_not_get_tracks_because_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not get tuples. - /// - public static string Could_not_get_tuples { - get { - return ResourceManager.GetString("Could_not_get_tuples", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not process resume file, not continuing.... - /// - public static string Could_not_process_resume_file_not_continuing { - get { - return ResourceManager.GetString("Could_not_process_resume_file_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read.... - /// - public static string Could_not_read { - get { - return ResourceManager.GetString("Could_not_read", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read CID.... - /// - public static string Could_not_read_CID { - get { - return ResourceManager.GetString("Could_not_read_CID", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read CSD.... - /// - public static string Could_not_read_CSD { - get { - return ResourceManager.GetString("Could_not_read_CSD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read Extended CSD.... - /// - public static string Could_not_read_Extended_CSD { - get { - return ResourceManager.GetString("Could_not_read_Extended_CSD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read OCR.... - /// - public static string Could_not_read_OCR { - get { - return ResourceManager.GetString("Could_not_read_OCR", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read SCR.... - /// - public static string Could_not_read_SCR { - get { - return ResourceManager.GetString("Could_not_read_SCR", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read subchannel for sector {0}. - /// - public static string Could_not_read_subchannel_for_sector_0 { - get { - return ResourceManager.GetString("Could_not_read_subchannel_for_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read subchannel for this track, supposing {0} sectors.. - /// - public static string Could_not_read_subchannel_for_this_track_supposing_0_sectors { - get { - return ResourceManager.GetString("Could_not_read_subchannel_for_this_track_supposing_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read subchannel for this track, supposing 150 sectors.. - /// - public static string Could_not_read_subchannel_for_this_track_supposing_hundred_fifty_sectors { - get { - return ResourceManager.GetString("Could_not_read_subchannel_for_this_track_supposing_hundred_fifty_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read subchannel for this track, supposing 0 sectors.. - /// - public static string Could_not_read_subchannel_for_this_track_supposing_zero_sectors { - get { - return ResourceManager.GetString("Could_not_read_subchannel_for_this_track_supposing_zero_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read TOC, if you want to continue, use force, and will try from LBA 0 to 360000.... - /// - public static string Could_not_read_TOC_if_you_want_to_continue_use_force_and_will_try_from_LBA_0_to_360000 { - get { - return ResourceManager.GetString("Could_not_read_TOC_if_you_want_to_continue_use_force_and_will_try_from_LBA_0_to_3" + - "60000", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Created by: {0}. - /// - public static string Created_by_0 { - get { - return ResourceManager.GetString("Created_by_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Created by:[/] {0}. - /// - public static string Created_by_0_WithMarkup { - get { - return ResourceManager.GetString("Created_by_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Created on {0}. - /// - public static string Created_on_0 { - get { - return ResourceManager.GetString("Created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creating main database. - /// - public static string Creating_main_database { - get { - return ResourceManager.GetString("Creating_main_database", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creating sidecar.. - /// - public static string Creating_sidecar { - get { - return ResourceManager.GetString("Creating_sidecar", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creating single track as could not retrieve track list from drive.. - /// - public static string Creating_single_track_as_could_not_retrieve_track_list_from_drive { - get { - return ResourceManager.GetString("Creating_single_track_as_could_not_retrieve_track_list_from_drive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creating subchannel log in {0}. - /// - public static string Creating_subchannel_log_in_0 { - get { - return ResourceManager.GetString("Creating_subchannel_log_in_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CSD obtained correctly.... - /// - public static string CSD_obtained_correctly { - get { - return ResourceManager.GetString("CSD_obtained_correctly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Current position is not as expected, continuing.. - /// - public static string Current_position_is_not_as_expected_continuing { - get { - return ResourceManager.GetString("Current_position_is_not_as_expected_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Current position is not as expected, unable to resume. Dumping from the start.. - /// - public static string Current_position_is_not_as_expected_unable_to_resume_Dumping_from_the_start { - get { - return ResourceManager.GetString("Current_position_is_not_as_expected_unable_to_resume_Dumping_from_the_start", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Current position is not as expected, unable to resume. If you want to continue use force.. - /// - public static string Current_position_is_not_as_expected_unable_to_resume_If_you_want_to_continue_use_force { - get { - return ResourceManager.GetString("Current_position_is_not_as_expected_unable_to_resume_If_you_want_to_continue_use_" + - "force", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data length is invalid!. - /// - public static string Data_length_is_invalid { - get { - return ResourceManager.GetString("Data_length_is_invalid", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data preparer identifier: {0}. - /// - public static string Data_preparer_identifier_0 { - get { - return ResourceManager.GetString("Data_preparer_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data Transfer Device Element Address: 0x{0}. - /// - public static string Data_Transfer_Device_Element_Address_0 { - get { - return ResourceManager.GetString("Data_Transfer_Device_Element_Address_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DEBUG version. - /// - public static string DEBUG_version { - get { - return ResourceManager.GetString("DEBUG_version", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decoding PCMCIA CIS.. - /// - public static string Decoding_PCMCIA_CIS { - get { - return ResourceManager.GetString("Decoding_PCMCIA_CIS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decoding Xbox Security Sector.. - /// - public static string Decoding_Xbox_Security_Sector { - get { - return ResourceManager.GetString("Decoding_Xbox_Security_Sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decrypting disc key.. - /// - public static string Decrypting_disc_key { - get { - return ResourceManager.GetString("Decrypting_disc_key", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decryption of disc key failed.. - /// - public static string Decryption_of_disc_key_failed { - get { - return ResourceManager.GetString("Decryption_of_disc_key_failed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decryption of disc key succeeded.. - /// - public static string Decryption_of_disc_key_succeeded { - get { - return ResourceManager.GetString("Decryption_of_disc_key_succeeded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Detecting disc type.... - /// - public static string Detecting_disc_type { - get { - return ResourceManager.GetString("Detecting_disc_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device's block size is fixed at {0} bytes. - /// - public static string Device_block_size_is_fixed_at_0_bytes { - get { - return ResourceManager.GetString("Device_block_size_is_fixed_at_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device can read {0} blocks at a time.. - /// - public static string Device_can_read_0_blocks_at_a_time { - get { - return ResourceManager.GetString("Device_can_read_0_blocks_at_a_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device can read {0} blocks at a time using OS buffered reads.. - /// - public static string Device_can_read_0_blocks_at_a_time_using_OS_buffered_reads { - get { - return ResourceManager.GetString("Device_can_read_0_blocks_at_a_time_using_OS_buffered_reads", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device can read {0} blocks using sequential commands.. - /// - public static string Device_can_read_0_blocks_using_sequential_commands { - get { - return ResourceManager.GetString("Device_can_read_0_blocks_using_sequential_commands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device contains a MultiMediaCard. - /// - public static string Device_contains_MMC { - get { - return ResourceManager.GetString("Device_contains_MMC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device contains a Secure Digital card. - /// - public static string Device_contains_SD_card { - get { - return ResourceManager.GetString("Device_contains_SD_card", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device contains a Secure Digital I/O card. - /// - public static string Device_contains_SDIO_card { - get { - return ResourceManager.GetString("Device_contains_SDIO_card", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device contains a Smart Media card. - /// - public static string Device_contains_SM_card { - get { - return ResourceManager.GetString("Device_contains_SM_card", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device contains unknown media card type {0}. - /// - public static string Device_contains_unknown_media_card_type_0 { - get { - return ResourceManager.GetString("Device_contains_unknown_media_card_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device does not specify a maximum block size. - /// - public static string Device_does_not_specify_a_maximum_block_size { - get { - return ResourceManager.GetString("Device_does_not_specify_a_maximum_block_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device doesn't seem capable of reading raw data from media.. - /// - public static string Device_doesnt_seem_capable_of_reading_raw_data_from_media { - get { - return ResourceManager.GetString("Device_doesnt_seem_capable_of_reading_raw_data_from_media", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device error {0} trying to guess ideal transfer length.. - /// - public static string Device_error_0_trying_to_guess_ideal_transfer_length { - get { - return ResourceManager.GetString("Device_error_0_trying_to_guess_ideal_transfer_length", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device error {0} trying to read from device.. - /// - public static string Device_error_0_trying_to_read_from_device { - get { - return ResourceManager.GetString("Device_error_0_trying_to_read_from_device", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device identified as {0}. - /// - public static string Device_identified_as_0 { - get { - return ResourceManager.GetString("Device_identified_as_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device in database since {0}.. - /// - public static string Device_in_database_since_0 { - get { - return ResourceManager.GetString("Device_in_database_since_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ################# Device information #################. - /// - public static string Device_information { - get { - return ResourceManager.GetString("Device_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device is capable of reading raw data but I've been unable to guess correct sector size.. - /// - public static string Device_is_capable_of_reading_raw_data_but_Ive_been_unable_to_guess_correct_sector_size { - get { - return ResourceManager.GetString("Device_is_capable_of_reading_raw_data_but_Ive_been_unable_to_guess_correct_sector" + - "_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device's maximum block size is {0} bytes. - /// - public static string Device_maximum_block_size_is_0_bytes { - get { - return ResourceManager.GetString("Device_maximum_block_size_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device's minimum block size is {0} bytes. - /// - public static string Device_minimum_block_size_is_0_bytes { - get { - return ResourceManager.GetString("Device_minimum_block_size_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device needs 28-bit LBA commands but I can't issue them... Aborting.. - /// - public static string Device_needs_28_bit_LBA_commands_but_I_cant_issue_them_Aborting { - get { - return ResourceManager.GetString("Device_needs_28_bit_LBA_commands_but_I_cant_issue_them_Aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device needs 48-bit LBA commands but I can't issue them... Aborting.. - /// - public static string Device_needs_48_bit_LBA_commands_but_I_cant_issue_them_Aborting { - get { - return ResourceManager.GetString("Device_needs_48_bit_LBA_commands_but_I_cant_issue_them_Aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device's needs a block size granularity of 2^{0} ({1} bytes). - /// - public static string Device_needs_a_block_size_granularity_of_pow_0_1_bytes { - get { - return ResourceManager.GetString("Device_needs_a_block_size_granularity_of_pow_0_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device needs CHS commands but I can't issue them... Aborting.. - /// - public static string Device_needs_CHS_commands_but_I_cant_issue_them_Aborting { - get { - return ResourceManager.GetString("Device_needs_CHS_commands_but_I_cant_issue_them_Aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device not in database, please create a device report and attach it to a Github issue.. - /// - public static string Device_not_in_database { - get { - return ResourceManager.GetString("Device_not_in_database", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device not ready. Sense {0} ASC {1:X2}h ASCQ {2:X2}h. - /// - public static string Device_not_ready_Sense { - get { - return ResourceManager.GetString("Device_not_ready_Sense", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device only supports SCSI READ (10) but has more than {0} blocks ({1} blocks total). - /// - public static string Device_only_supports_SCSI_READ_10_but_has_more_than_0_blocks_1_blocks_total { - get { - return ResourceManager.GetString("Device_only_supports_SCSI_READ_10_but_has_more_than_0_blocks_1_blocks_total", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device only supports SCSI READ (6) but has more than {0} blocks ({1} blocks total). - /// - public static string Device_only_supports_SCSI_READ_6_but_has_more_than_0_blocks_1_blocks_total { - get { - return ResourceManager.GetString("Device_only_supports_SCSI_READ_6_but_has_more_than_0_blocks_1_blocks_total", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports {0} blocks.. - /// - public static string Device_reports_0_blocks { - get { - return ResourceManager.GetString("Device_reports_0_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports {0} blocks ({1} bytes).. - /// - public static string Device_reports_0_blocks_1_bytes { - get { - return ResourceManager.GetString("Device_reports_0_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports {0} bytes per logical block.. - /// - public static string Device_reports_0_bytes_per_logical_block { - get { - return ResourceManager.GetString("Device_reports_0_bytes_per_logical_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports {0} bytes per physical block.. - /// - public static string Device_reports_0_bytes_per_physical_block { - get { - return ResourceManager.GetString("Device_reports_0_bytes_per_physical_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports {0} cylinders {1} heads {2} sectors per track.. - /// - public static string Device_reports_0_cylinders_1_heads_2_sectors_per_track { - get { - return ResourceManager.GetString("Device_reports_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports current profile is 0x{0:X4}. - /// - public static string Device_reports_current_profile_is_0 { - get { - return ResourceManager.GetString("Device_reports_current_profile_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports disc has {0} blocks. - /// - public static string Device_reports_disc_has_0_blocks { - get { - return ResourceManager.GetString("Device_reports_disc_has_0_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device reports incorrect media card type. - /// - public static string Device_reports_incorrect_media_card_type { - get { - return ResourceManager.GetString("Device_reports_incorrect_media_card_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device supports the Media Card Pass Through Command Set. - /// - public static string Device_supports_MCPT_Command_Set { - get { - return ResourceManager.GetString("Device_supports_MCPT_Command_Set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device type: {0}. - /// - public static string Device_type_0 { - get { - return ResourceManager.GetString("Device_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc and drive authentication succeeded.. - /// - public static string Disc_and_drive_authentication_succeeded { - get { - return ResourceManager.GetString("Disc_and_drive_authentication_succeeded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc and drive regions do not match. The dump will be incorrect. - /// - public static string Disc_and_drive_regions_do_not_match_The_dump_will_be_incorrect { - get { - return ResourceManager.GetString("Disc_and_drive_regions_do_not_match_The_dump_will_be_incorrect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc and drive regions match.. - /// - public static string Disc_and_drive_regions_match { - get { - return ResourceManager.GetString("Disc_and_drive_regions_match", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc contains a hidden track.... - /// - public static string Disc_contains_a_hidden_track { - get { - return ResourceManager.GetString("Disc_contains_a_hidden_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc has a mode 2 data track, setting as CD-ROM XA.. - /// - public static string Disc_has_a_mode_two_data_track_CD_ROM_XA { - get { - return ResourceManager.GetString("Disc_has_a_mode_two_data_track_CD_ROM_XA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc has audio and data tracks, two sessions, and all data tracks are in second session, setting as CD+.. - /// - public static string Disc_has_audio_and_data_two_sessions_all_data_second_CD_Plus { - get { - return ResourceManager.GetString("Disc_has_audio_and_data_two_sessions_all_data_second_CD_Plus", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc has a hidden CD-i track in track 1's pregap, setting as CD-i Ready.. - /// - public static string Disc_has_hidden_CD_i_pregap_CD_i_Ready { - get { - return ResourceManager.GetString("Disc_has_hidden_CD_i_pregap_CD_i_Ready", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc has only audio tracks in a single session, setting as CD Digital Audio.. - /// - public static string Disc_has_only_audio_in_a_session_CD_Digital_Audio { - get { - return ResourceManager.GetString("Disc_has_only_audio_in_a_session_CD_Digital_Audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc has only data tracks in a single session, setting as CD-ROM.. - /// - public static string Disc_has_only_data_in_a_session_CD_ROM { - get { - return ResourceManager.GetString("Disc_has_only_data_in_a_session_CD_ROM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc has video tracks in a single session, setting as CD Video.. - /// - public static string Disc_has_video_tracks_CD_Video { - get { - return ResourceManager.GetString("Disc_has_video_tracks_CD_Video", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc offset cannot be calculated.. - /// - public static string Disc_offset_cannot_be_calculated { - get { - return ResourceManager.GetString("Disc_offset_cannot_be_calculated", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc offset is {0} bytes ({1} samples). - /// - public static string Disc_offset_is_0_bytes_1_samples { - get { - return ResourceManager.GetString("Disc_offset_is_0_bytes_1_samples", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc write offset is unknown.. - /// - public static string Disc_write_offset_is_unknown { - get { - return ResourceManager.GetString("Disc_write_offset_is_unknown", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc write offset is unknown, dump may not be correct.. - /// - public static string Disc_write_offset_is_unknown_dump_may_not_be_correct { - get { - return ResourceManager.GetString("Disc_write_offset_is_unknown_dump_may_not_be_correct", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DiscFerret image do not contain same number of heads ({0}) than disk image ({1}), ignoring.... - /// - public static string DiscFerret_image_do_not_same_number_heads_0_disk_image_1_ignoring { - get { - return ResourceManager.GetString("DiscFerret_image_do_not_same_number_heads_0_disk_image_1_ignoring", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DiscFerret image do not contain same number of tracks ({0}) than disk image ({1}), ignoring.... - /// - public static string DiscFerret_image_do_not_same_number_tracks_0_disk_image_1_ignoring { - get { - return ResourceManager.GetString("DiscFerret_image_do_not_same_number_tracks_0_disk_image_1_ignoring", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Doesn't have partitions. - /// - public static string Doesnt_have_partitions { - get { - return ResourceManager.GetString("Doesnt_have_partitions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Doesn't have sessions. - /// - public static string Doesnt_have_sessions { - get { - return ResourceManager.GetString("Doesnt_have_sessions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive can read without subchannel.... - /// - public static string Drive_can_read_without_subchannel { - get { - return ResourceManager.GetString("Drive_can_read_without_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not go back one block. Sense follows.... - /// - public static string Drive_could_not_go_back_one_block_Sense_follows { - get { - return ResourceManager.GetString("Drive_could_not_go_back_one_block_Sense_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not read block {0}. Sense bytes follow.... - /// - public static string Drive_could_not_read_block_0_Sense_bytes_follow { - get { - return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_bytes_follow", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not read block {0}. Sense cannot be decoded, look at log for dump.... - /// - public static string Drive_could_not_read_block_0_Sense_cannot_be_decoded_look_at_log_for_dump { - get { - return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_cannot_be_decoded_look_at_log_for_dump", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not read block {0}. Sense follows... - ///{1} {2}. - /// - public static string Drive_could_not_read_block_0_Sense_follow_1_2 { - get { - return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_follow_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not read block {0}. Sense follows.... - /// - public static string Drive_could_not_read_block_0_Sense_follows { - get { - return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not read. Sense follows.... - /// - public static string Drive_could_not_read_Sense_follows { - get { - return ResourceManager.GetString("Drive_could_not_read_Sense_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not return back. Sense follows.... - /// - public static string Drive_could_not_return_back_Sense_follows { - get { - return ResourceManager.GetString("Drive_could_not_return_back_Sense_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not rewind, please correct. Sense follows.... - /// - public static string Drive_could_not_rewind_please_correct_Sense_follows { - get { - return ResourceManager.GetString("Drive_could_not_rewind_please_correct_Sense_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive could not rewind to partition 0 but no error occurred.... - /// - public static string Drive_could_not_rewind_to_partition_0_but_no_error_occurred { - get { - return ResourceManager.GetString("Drive_could_not_rewind_to_partition_0_but_no_error_occurred", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive currently forces single session. - /// - public static string Drive_currently_forces_single_session { - get { - return ResourceManager.GetString("Drive_currently_forces_single_session", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive currently hides CD-Rs. - /// - public static string Drive_currently_hides_CDRs { - get { - return ResourceManager.GetString("Drive_currently_hides_CDRs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive did not accept MODE SELECT command for persistent error reading, try another drive.. - /// - public static string Drive_did_not_accept_MODE_SELECT_command_for_persistent_error_reading { - get { - return ResourceManager.GetString("Drive_did_not_accept_MODE_SELECT_command_for_persistent_error_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive does not returns subchannel in BCD.... - /// - public static string Drive_does_not_returns_subchannel_in_BCD { - get { - return ResourceManager.GetString("Drive_does_not_returns_subchannel_in_BCD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive does not support READ CD, trying SCSI READ commands.... - /// - public static string Drive_does_not_support_READ_CD_trying_SCSI_READ_commands { - get { - return ResourceManager.GetString("Drive_does_not_support_READ_CD_trying_SCSI_READ_commands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive does not support the requested subchannel format, not continuing.... - /// - public static string Drive_does_not_support_the_requested_subchannel_format_not_continuing { - get { - return ResourceManager.GetString("Drive_does_not_support_the_requested_subchannel_format_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Drive firmware info:[/] [italic]{0}[/]. - /// - public static string Drive_firmware_info_0_WithMarkup { - get { - return ResourceManager.GetString("Drive_firmware_info_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive has loaded a total of {0} discs. - /// - public static string Drive_has_loaded_a_total_of_0_discs { - get { - return ResourceManager.GetString("Drive_has_loaded_a_total_of_0_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive has spent {0} reading CDs. - /// - public static string Drive_has_spent_0_reading_CDs { - get { - return ResourceManager.GetString("Drive_has_spent_0_reading_CDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive has spent {0} reading DVDs. - /// - public static string Drive_has_spent_0_reading_DVDs { - get { - return ResourceManager.GetString("Drive_has_spent_0_reading_DVDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive has spent {0} writing CDs. - /// - public static string Drive_has_spent_0_writing_CDs { - get { - return ResourceManager.GetString("Drive_has_spent_0_writing_CDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive has spent {0} writing DVDs. - /// - public static string Drive_has_spent_0_writing_DVDs { - get { - return ResourceManager.GetString("Drive_has_spent_0_writing_DVDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive has status error, please correct. Sense follows.... - /// - public static string Drive_has_status_error_please_correct_Sense_follows { - get { - return ResourceManager.GetString("Drive_has_status_error_please_correct_Sense_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive identifies as Apple OEM drive. - /// - public static string Drive_identifies_as_Apple_OEM_drive { - get { - return ResourceManager.GetString("Drive_identifies_as_Apple_OEM_drive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Drive manufacturer:[/] [italic]{0}[/]. - /// - public static string Drive_manufacturer_0_WithMarkup { - get { - return ResourceManager.GetString("Drive_manufacturer_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Drive model:[/] [italic]{0}[/]. - /// - public static string Drive_model_0_WithMarkup { - get { - return ResourceManager.GetString("Drive_model_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive not in partition 0. Rewinding, please wait.... - /// - public static string Drive_not_in_partition_0_Rewinding_please_wait { - get { - return ResourceManager.GetString("Drive_not_in_partition_0_Rewinding_please_wait", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive reading offset is {0} bytes ({1} samples).. - /// - public static string Drive_reading_offset_is_0_bytes_1_samples { - get { - return ResourceManager.GetString("Drive_reading_offset_is_0_bytes_1_samples", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive reading offset not found in database.. - /// - public static string Drive_reading_offset_not_found_in_database { - get { - return ResourceManager.GetString("Drive_reading_offset_not_found_in_database", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive reports disc uses {0} copy protection. This is not yet supported and the dump will be incorrect.. - /// - public static string Drive_reports_0_copy_protection_not_yet_supported_dump_incorrect { - get { - return ResourceManager.GetString("Drive_reports_0_copy_protection_not_yet_supported_dump_incorrect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive reports disc uses CSS copy protection.. - /// - public static string Drive_reports_disc_uses_CSS_copy_protection { - get { - return ResourceManager.GetString("Drive_reports_disc_uses_CSS_copy_protection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive reports no copy protection on disc.. - /// - public static string Drive_reports_no_copy_protection_on_disc { - get { - return ResourceManager.GetString("Drive_reports_no_copy_protection_on_disc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive reports the disc uses copy protection. The dump will be incorrect unless decryption is enabled.. - /// - public static string Drive_reports_the_disc_uses_copy_protection_The_dump_will_be_incorrect_unless_decryption_is_enabled { - get { - return ResourceManager.GetString("Drive_reports_the_disc_uses_copy_protection_The_dump_will_be_incorrect_unless_dec" + - "ryption_is_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive returns subchannel in BCD.... - /// - public static string Drive_returns_subchannel_in_BCD { - get { - return ResourceManager.GetString("Drive_returns_subchannel_in_BCD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive serial number: {0}. - /// - public static string Drive_serial_number_0 { - get { - return ResourceManager.GetString("Drive_serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Drive serial number:[/] [italic]{0}[/]. - /// - public static string Drive_serial_number_0_WithMarkup { - get { - return ResourceManager.GetString("Drive_serial_number_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports bitsetting DVD+R book type. - /// - public static string Drive_supports_bitsetting_DVD_R_book_type { - get { - return ResourceManager.GetString("Drive_supports_bitsetting_DVD_R_book_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports bitsetting DVD+R DL book type. - /// - public static string Drive_supports_bitsetting_DVD_R_DL_book_type { - get { - return ResourceManager.GetString("Drive_supports_bitsetting_DVD_R_DL_book_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports hiding CD-Rs and forcing single session. - /// - public static string Drive_supports_hiding_CDRs_and_forcing_single_session { - get { - return ResourceManager.GetString("Drive_supports_hiding_CDRs_and_forcing_single_session", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports Plextor GigaRec. - /// - public static string Drive_supports_Plextor_GigaRec { - get { - return ResourceManager.GetString("Drive_supports_Plextor_GigaRec", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports Plextor SecuRec. - /// - public static string Drive_supports_Plextor_SecuRec { - get { - return ResourceManager.GetString("Drive_supports_Plextor_SecuRec", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports Plextor SilentMode. - /// - public static string Drive_supports_Plextor_SilentMode { - get { - return ResourceManager.GetString("Drive_supports_Plextor_SilentMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports Plextor SpeedRead. - /// - public static string Drive_supports_Plextor_SpeedRead { - get { - return ResourceManager.GetString("Drive_supports_Plextor_SpeedRead", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports Plextor SpeedRead and has it enabled. - /// - public static string Drive_supports_Plextor_SpeedRead_and_has_it_enabled { - get { - return ResourceManager.GetString("Drive_supports_Plextor_SpeedRead_and_has_it_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports Plextor VariRec. - /// - public static string Drive_supports_Plextor_VariRec { - get { - return ResourceManager.GetString("Drive_supports_Plextor_VariRec", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports Plextor VariRec for DVDs. - /// - public static string Drive_supports_Plextor_VariRec_for_DVDs { - get { - return ResourceManager.GetString("Drive_supports_Plextor_VariRec_for_DVDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports PoweRec and has it disabled.. - /// - public static string Drive_supports_PoweRec_and_has_it_disabled { - get { - return ResourceManager.GetString("Drive_supports_PoweRec_and_has_it_disabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports PoweRec and has it enabled.. - /// - public static string Drive_supports_PoweRec_and_has_it_enabled { - get { - return ResourceManager.GetString("Drive_supports_PoweRec_and_has_it_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports PoweRec, is enabled and recommends {0} Kb/sec.. - /// - public static string Drive_supports_PoweRec_is_enabled_and_recommends_0 { - get { - return ResourceManager.GetString("Drive_supports_PoweRec_is_enabled_and_recommends_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports READ(10).... - /// - public static string Drive_supports_READ_10 { - get { - return ResourceManager.GetString("Drive_supports_READ_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports READ(12).... - /// - public static string Drive_supports_READ_12 { - get { - return ResourceManager.GetString("Drive_supports_READ_12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports READ(16).... - /// - public static string Drive_supports_READ_16 { - get { - return ResourceManager.GetString("Drive_supports_READ_16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports READ(6).... - /// - public static string Drive_supports_READ_6 { - get { - return ResourceManager.GetString("Drive_supports_READ_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports test writing DVD+. - /// - public static string Drive_supports_test_writing_DVD_Plus { - get { - return ResourceManager.GetString("Drive_supports_test_writing_DVD_Plus", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Buffered OS reads are not working, trying direct commands.. - /// - public static string DumBuffered_OS_reads_are_not_working_trying_direct_commands { - get { - return ResourceManager.GetString("DumBuffered_OS_reads_are_not_working_trying_direct_commands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support ATA IDENTIFY.. - /// - public static string Dump_Ata_Output_format_does_not_support_ATA_IDENTIFY_ { - get { - return ResourceManager.GetString("Dump_Ata_Output_format_does_not_support_ATA_IDENTIFY_", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dump finished in {0}.. - /// - public static string Dump_finished_in_0 { - get { - return ResourceManager.GetString("Dump_finished_in_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dump may not be correct.. - /// - public static string Dump_may_not_be_correct { - get { - return ResourceManager.GetString("Dump_may_not_be_correct", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dumping CD-i Ready requires the drive to support the READ CD command.. - /// - public static string Dumping_CD_i_Ready_requires_the_drive_to_support_the_READ_CD_command { - get { - return ResourceManager.GetString("Dumping_CD_i_Ready_requires_the_drive_to_support_the_READ_CD_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dumping CD-i Ready requires the output image format to support long sectors.. - /// - public static string Dumping_CD_i_Ready_requires_the_output_image_format_to_support_long_sectors { - get { - return ResourceManager.GetString("Dumping_CD_i_Ready_requires_the_output_image_format_to_support_long_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dumping Nintendo GameCube or Wii discs is not yet implemented.. - /// - public static string Dumping_Nintendo_GameCube_or_Wii_discs_is_not_yet_implemented { - get { - return ResourceManager.GetString("Dumping_Nintendo_GameCube_or_Wii_discs_is_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ################ Dumping progress log ################. - /// - public static string Dumping_progress_log { - get { - return ResourceManager.GetString("Dumping_progress_log", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dumping Xbox Game Discs requires a drive with Kreon firmware.. - /// - public static string Dumping_Xbox_Game_Discs_requires_a_drive_with_Kreon_firmware { - get { - return ResourceManager.GetString("Dumping_Xbox_Game_Discs_requires_a_drive_with_Kreon_firmware", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]DVD Physical Format Information contained in image:[/]. - /// - public static string DVD_Physical_Format_Information_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("DVD_Physical_Format_Information_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]DVD-R Physical Format Information contained in image:[/]. - /// - public static string DVD_R_Physical_Format_Information_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("DVD_R_Physical_Format_Information_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]DVD-RAM Disc Definition Structure contained in image:[/]. - /// - public static string DVD_RAM_Disc_Definition_Structure_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("DVD_RAM_Disc_Definition_Structure_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DVD read speed limited to {0}x. - /// - public static string DVD_read_speed_limited_to_0 { - get { - return ResourceManager.GetString("DVD_read_speed_limited_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DVD-R(W) PFI. - /// - public static string DVD_RW_PFI { - get { - return ResourceManager.GetString("DVD_RW_PFI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DVD-R(W) Pre-Recorded Information. - /// - public static string DVD_RW_Pre_Recorded_Information { - get { - return ResourceManager.GetString("DVD_RW_Pre_Recorded_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]DVD-R(W) Pre-Recorded Information:[/]. - /// - public static string DVD_RW_Pre_Recorded_Information_WithMarkup { - get { - return ResourceManager.GetString("DVD_RW_Pre_Recorded_Information_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ejecting disc.... - /// - public static string Ejecting_disc { - get { - return ResourceManager.GetString("Ejecting_disc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enabling skipping CD-i Ready hole because drive returns data as audio.. - /// - public static string Enabling_skipping_CD_i_Ready_hole_because_drive_returns_data_as_audio { - get { - return ResourceManager.GetString("Enabling_skipping_CD_i_Ready_hole_because_drive_returns_data_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to End logging on {0}. - /// - public static string End_logging_on_0 { - get { - return ResourceManager.GetString("End_logging_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Entropying sector {0}. - /// - public static string Entropying_sector_0 { - get { - return ResourceManager.GetString("Entropying_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Entropying sector {0} of track {1}. - /// - public static string Entropying_sector_0_of_track_1 { - get { - return ResourceManager.GetString("Entropying_sector_0_of_track_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Entropying track {0} of {1}. - /// - public static string Entropying_track_0_of_1 { - get { - return ResourceManager.GetString("Entropying_track_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Environment does not support setting block count, downgrading to OS reading.. - /// - public static string Environment_does_not_support_setting_block_count_downgrading_to_OS_reading { - get { - return ResourceManager.GetString("Environment_does_not_support_setting_block_count_downgrading_to_OS_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error: {0}. - /// - public static string Error_0 { - get { - return ResourceManager.GetString("Error_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} creating output image, not continuing.. - /// - public static string Error_0_creating_output_image_not_continuing { - get { - return ResourceManager.GetString("Error_0_creating_output_image_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} opening created image.. - /// - public static string Error_0_opening_created_image { - get { - return ResourceManager.GetString("Error_0_opening_created_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} querying ATA IDENTIFY. - /// - public static string Error_0_querying_ATA_IDENTIFY { - get { - return ResourceManager.GetString("Error_0_querying_ATA_IDENTIFY", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} querying ATA PACKET IDENTIFY. - /// - public static string Error_0_querying_ATA_PACKET_IDENTIFY { - get { - return ResourceManager.GetString("Error_0_querying_ATA_PACKET_IDENTIFY", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} reading sector {1}. - /// - public static string Error_0_reading_sector_1 { - get { - return ResourceManager.GetString("Error_0_reading_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} reopening device.. - /// - public static string Error_0_reopening_device { - get { - return ResourceManager.GetString("Error_0_reopening_device", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} setting metadata, continuing.... - /// - public static string Error_0_setting_metadata { - get { - return ResourceManager.GetString("Error_0_setting_metadata", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} when trying to get updated entities.. - /// - public static string Error_0_when_trying_to_get_updated_entities { - get { - return ResourceManager.GetString("Error_0_when_trying_to_get_updated_entities", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} while reading data, not continuing.... - /// - public static string Error_0_while_reading_data__not_continuing { - get { - return ResourceManager.GetString("Error_0_while_reading_data__not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} while reading sector {1}, continuing.... - /// - public static string Error_0_while_reading_sector_1_continuing { - get { - return ResourceManager.GetString("Error_0_while_reading_sector_1_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ERROR: Cannot find correct read command: {0}.. - /// - public static string ERROR_Cannot_find_correct_read_command_0 { - get { - return ResourceManager.GetString("ERROR_Cannot_find_correct_read_command_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ERROR: Cannot get block size: {0}.. - /// - public static string ERROR_Cannot_get_block_size_0 { - get { - return ResourceManager.GetString("ERROR_Cannot_get_block_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ERROR: Cannot get blocks to read: {0}.. - /// - public static string ERROR_Cannot_get_blocks_to_read_0 { - get { - return ResourceManager.GetString("ERROR_Cannot_get_blocks_to_read_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ERROR: Cannot get blocks to read, device error {0}.. - /// - public static string ERROR_Cannot_get_blocks_to_read_device_error_0 { - get { - return ResourceManager.GetString("ERROR_Cannot_get_blocks_to_read_device_error_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown error code {0}. - /// - public static string error_code_0 { - get { - return ResourceManager.GetString("error_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error code = {0}. - /// - public static string Error_code_equals_0 { - get { - return ResourceManager.GetString("Error_code_equals_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ERROR: Could not read from device, device error {0}.. - /// - public static string ERROR_Could_not_read_from_device_device_error_0 { - get { - return ResourceManager.GetString("ERROR_Could_not_read_from_device_device_error_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error creating output image, not continuing.. - /// - public static string Error_creating_output_image_not_continuing { - get { - return ResourceManager.GetString("Error_creating_output_image_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error reading cylinder {0} head {1} sector {2}.. - /// - public static string Error_reading_cylinder_0_head_1_sector_2 { - get { - return ResourceManager.GetString("Error_reading_cylinder_0_head_1_sector_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error retrieving CMI for sector {0}. - /// - public static string Error_retrieving_CMI_for_sector_0 { - get { - return ResourceManager.GetString("Error_retrieving_CMI_for_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error retrieving title key for sector {0}. - /// - public static string Error_retrieving_title_key_for_sector_0 { - get { - return ResourceManager.GetString("Error_retrieving_title_key_for_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error sending tracks to output image, not continuing.. - /// - public static string Error_sending_tracks_to_output_image_not_continuing { - get { - return ResourceManager.GetString("Error_sending_tracks_to_output_image_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error setting output image in tape mode, not continuing.. - /// - public static string Error_setting_output_image_in_tape_mode_not_continuing { - get { - return ResourceManager.GetString("Error_setting_output_image_in_tape_mode_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error: Tag type {0} is null, skipping.... - /// - public static string Error_Tag_type_0_is_null_skipping { - get { - return ResourceManager.GetString("Error_Tag_type_0_is_null_skipping", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error testing unit was ready: - ///{0}. - /// - public static string Error_testing_unit_was_ready_0 { - get { - return ResourceManager.GetString("Error_testing_unit_was_ready_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error trying to decode TOC.... - /// - public static string Error_trying_to_decode_TOC { - get { - return ResourceManager.GetString("Error_trying_to_decode_TOC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ERROR: Unable to read medium or empty medium present.... - /// - public static string ERROR_Unable_to_read_medium_or_empty_medium_present { - get { - return ResourceManager.GetString("ERROR_Unable_to_read_medium_or_empty_medium_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception {0} when updating database.. - /// - public static string Exception_0_when_updating_database { - get { - return ResourceManager.GetString("Exception_0_when_updating_database", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception while trying to save statistics:. - /// - public static string Exception_while_trying_to_save_statistics { - get { - return ResourceManager.GetString("Exception_while_trying_to_save_statistics", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extended CSD obtained correctly.... - /// - public static string Extended_CSD_obtained_correctly { - get { - return ResourceManager.GetString("Extended_CSD_obtained_correctly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FAIL!. - /// - public static string FAIL { - get { - return ResourceManager.GetString("FAIL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Failed crossing into Lead-Out, dump may not be correct.. - /// - public static string Failed_crossing_into_Lead_Out { - get { - return ResourceManager.GetString("Failed_crossing_into_Lead_Out", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Fastest speed burst: {0}.. - /// - public static string Fastest_speed_burst_0 { - get { - return ResourceManager.GetString("Fastest_speed_burst_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FAT starts at sector {0} and runs for {1} sectors.... - /// - public static string FAT_starts_at_sector_0_and_runs_for_1_sectors { - get { - return ResourceManager.GetString("FAT_starts_at_sector_0_and_runs_for_1_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Feature {0:X4}h. - /// - public static string Feature_0 { - get { - return ResourceManager.GetString("Feature_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem contains boot code. - /// - public static string Filesystem_contains_boot_code { - get { - return ResourceManager.GetString("Filesystem_contains_boot_code", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem has not been unmounted correctly or contains errors. - /// - public static string Filesystem_has_not_been_unmounted_correctly_or_contains_errors { - get { - return ResourceManager.GetString("Filesystem_has_not_been_unmounted_correctly_or_contains_errors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem type: {0}. - /// - public static string Filesystem_type_0 { - get { - return ResourceManager.GetString("Filesystem_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Finished partition {0}. - /// - public static string Finished_partition_0 { - get { - return ResourceManager.GetString("Finished_partition_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FireWire device: {0}. - /// - public static string FireWire_device_0 { - get { - return ResourceManager.GetString("FireWire_device_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FireWire GUID: 0x{0:X16}. - /// - public static string FireWire_GUID_0 { - get { - return ResourceManager.GetString("FireWire_GUID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FireWire model: {0}. - /// - public static string FireWire_model_0 { - get { - return ResourceManager.GetString("FireWire_model_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FireWire product ID: 0x{0:X8}. - /// - public static string FireWire_product_ID_0 { - get { - return ResourceManager.GetString("FireWire_product_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FireWire vendor: {0}. - /// - public static string FireWire_vendor_0 { - get { - return ResourceManager.GetString("FireWire_vendor_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FireWire vendor ID: 0x{0:X8}. - /// - public static string FireWire_vendor_ID_0 { - get { - return ResourceManager.GetString("FireWire_vendor_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Firmware revision: {0}. - /// - public static string Firmware_revision_0 { - get { - return ResourceManager.GetString("Firmware_revision_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First session Lead-Out starts at {0:D2}:{1:D2}:{2:D2}. - /// - public static string First_session_Lead_Out_starts_at_0_1_2 { - get { - return ResourceManager.GetString("First_session_Lead_Out_starts_at_0_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed P subchannel using weight average.. - /// - public static string fixed_P_subchannel_using_weight_average { - get { - return ResourceManager.GetString("fixed_P_subchannel_using_weight_average", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct ABSOLUTE POSITION.. - /// - public static string fixed_Q_subchannel_with_correct_ABSOLUTE_POSITION { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_ABSOLUTE_POSITION", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct ADR.. - /// - public static string fixed_Q_subchannel_with_correct_ADR { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_ADR", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct CONTROL.. - /// - public static string fixed_Q_subchannel_with_correct_CONTROL { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_CONTROL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct CRC.. - /// - public static string fixed_Q_subchannel_with_correct_CRC { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_CRC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct INDEX.. - /// - public static string fixed_Q_subchannel_with_correct_INDEX { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_INDEX", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct RELATIVE POSITION.. - /// - public static string fixed_Q_subchannel_with_correct_RELATIVE_POSITION { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_RELATIVE_POSITION", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct TNO.. - /// - public static string fixed_Q_subchannel_with_correct_TNO { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_TNO", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with correct ZERO.. - /// - public static string fixed_Q_subchannel_with_correct_ZERO { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_correct_ZERO", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with known good ISRC.. - /// - public static string fixed_Q_subchannel_with_known_good_ISRC { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_known_good_ISRC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed Q subchannel with known good MCN.. - /// - public static string fixed_Q_subchannel_with_known_good_MCN { - get { - return ResourceManager.GetString("fixed_Q_subchannel_with_known_good_MCN", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fixed R-W subchannels writing empty data.. - /// - public static string fixed_R_W_subchannels_writing_empty_data { - get { - return ResourceManager.GetString("fixed_R_W_subchannels_writing_empty_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Format:[/] [italic]{0}[/] version {1}. - /// - public static string Format_0_version_1_WithMarkup { - get { - return ResourceManager.GetString("Format_0_version_1_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Format:[/] [italic]{0}[/]. - /// - public static string Format_0_WithMarkup { - get { - return ResourceManager.GetString("Format_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {0} @ {1}. - /// - public static string Found_0_at_1 { - get { - return ResourceManager.GetString("Found_0_at_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {0} @ 0. - /// - public static string Found_0_at_zero { - get { - return ResourceManager.GetString("Found_0_at_zero", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Atari signature, setting disc type to Jaguar CD.. - /// - public static string Found_Atari_signature { - get { - return ResourceManager.GetString("Found_Atari_signature", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found blank block {0}.. - /// - public static string Found_blank_block_0 { - get { - return ResourceManager.GetString("Found_blank_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found blank block {0} in pass {1}.. - /// - public static string Found_blank_block_0_in_pass_1 { - get { - return ResourceManager.GetString("Found_blank_block_0_in_pass_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CD32.TM file in root, setting disc type to Amiga CD32.. - /// - public static string Found_CD32_TM_file_in_root { - get { - return ResourceManager.GetString("Found_CD32_TM_file_in_root", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CDTV.TM file in root, setting disc type to Commodore CDTV.. - /// - public static string Found_CDTV_TM_file_in_root { - get { - return ResourceManager.GetString("Found_CDTV_TM_file_in_root", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found China Video Disc description file, setting disc type to China Video Disc.. - /// - public static string Found_China_Video_Disc_description_file { - get { - return ResourceManager.GetString("Found_China_Video_Disc_description_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found correct IPL.TXT file in root, setting disc type to Neo Geo CD.. - /// - public static string Found_correct_IPL_TXT_file_in_root { - get { - return ResourceManager.GetString("Found_correct_IPL_TXT_file_in_root", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found correct SYSTEM.CNF file in root pointing to existing file in root, setting disc type to PlayStation CD.. - /// - public static string Found_correct_SYSTEM_CNF_file_in_root_PS1 { - get { - return ResourceManager.GetString("Found_correct_SYSTEM_CNF_file_in_root_PS1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found correct SYSTEM.CNF file in root pointing to existing file in root, setting disc type to PlayStation 2 CD.. - /// - public static string Found_correct_SYSTEM_CNF_file_in_root_PS2 { - get { - return ResourceManager.GetString("Found_correct_SYSTEM_CNF_file_in_root_PS2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found corrupt resume file, cannot continue.... - /// - public static string Found_corrupt_resume_file_cannot_continue { - get { - return ResourceManager.GetString("Found_corrupt_resume_file_cannot_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found end-of-tape/partition.... - /// - public static string Found_end_of_tape_partition { - get { - return ResourceManager.GetString("Found_end_of_tape_partition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found enhanced graphics RW packet, setting disc type to CD+EG.. - /// - public static string Found_enhanced_graphics_RW_packet { - get { - return ResourceManager.GetString("Found_enhanced_graphics_RW_packet", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found filesystem {0} at sector {1}. - /// - public static string Found_filesystem_0_at_sector_1 { - get { - return ResourceManager.GetString("Found_filesystem_0_at_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found FM-Towns boot, setting disc type to FM-Towns.. - /// - public static string Found_FM_Towns_boot { - get { - return ResourceManager.GetString("Found_FM_Towns_boot", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found graphics RW packet, setting disc type to CD+G.. - /// - public static string Found_graphics_RW_packet { - get { - return ResourceManager.GetString("Found_graphics_RW_packet", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ISRC for track {0}: {1}. - /// - public static string Found_ISRC_for_track_0_1 { - get { - return ResourceManager.GetString("Found_ISRC_for_track_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Media Catalogue Number: {0}. - /// - public static string Found_Media_Catalogue_Number_0 { - get { - return ResourceManager.GetString("Found_Media_Catalogue_Number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Mega/Sega CD IP.BIN, setting disc type to Mega CD.. - /// - public static string Found_Mega_Sega_CD_IP_BIN { - get { - return ResourceManager.GetString("Found_Mega_Sega_CD_IP_BIN", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found MIDI RW packet, setting disc type to CD+MIDI.. - /// - public static string Found_MIDI_RW_packet { - get { - return ResourceManager.GetString("Found_MIDI_RW_packet", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found new ISRC {0} for track {1}.. - /// - public static string Found_new_ISRC_0_for_track_1 { - get { - return ResourceManager.GetString("Found_new_ISRC_0_for_track_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found new MCN {0}.. - /// - public static string Found_new_MCN_0 { - get { - return ResourceManager.GetString("Found_new_MCN_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Opera filesystem, setting disc type to 3DO.. - /// - public static string Found_Opera_filesystem { - get { - return ResourceManager.GetString("Found_Opera_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PC-Engine CD signature, setting disc type to Super CD-ROM².. - /// - public static string Found_PC_Engine_CD_signature { - get { - return ResourceManager.GetString("Found_PC_Engine_CD_signature", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PC-FX copyright, setting disc type to PC-FX.. - /// - public static string Found_PC_FX_copyright { - get { - return ResourceManager.GetString("Found_PC_FX_copyright", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Photo CD description file, setting disc type to Photo CD.. - /// - public static string Found_Photo_CD_description_file { - get { - return ResourceManager.GetString("Found_Photo_CD_description_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Playdia copyright, setting disc type to Playdia.. - /// - public static string Found_Playdia_copyright { - get { - return ResourceManager.GetString("Found_Playdia_copyright", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sega Dreamcast IP.BIN, setting disc type to GD-ROM.. - /// - public static string Found_Sega_Dreamcast_IP_BIN { - get { - return ResourceManager.GetString("Found_Sega_Dreamcast_IP_BIN", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sega Dreamcast IP.BIN on second session, setting disc type to MilCD.. - /// - public static string Found_Sega_Dreamcast_IP_BIN_on_second_session { - get { - return ResourceManager.GetString("Found_Sega_Dreamcast_IP_BIN_on_second_session", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sega Saturn IP.BIN, setting disc type to Saturn CD.. - /// - public static string Found_Sega_Saturn_IP_BIN { - get { - return ResourceManager.GetString("Found_Sega_Saturn_IP_BIN", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sony PlayStation 2 boot sectors, setting disc type to PS2 CD.. - /// - public static string Found_Sony_PlayStation_2_boot_sectors { - get { - return ResourceManager.GetString("Found_Sony_PlayStation_2_boot_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sony PlayStation 2 boot sectors, setting disc type to PS2 DVD.. - /// - public static string Found_Sony_PlayStation_2_boot_sectors_DVD { - get { - return ResourceManager.GetString("Found_Sony_PlayStation_2_boot_sectors_DVD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sony PlayStation 3 boot sectors, setting disc type to PS3 Blu-ray.. - /// - public static string Found_Sony_PlayStation_3_boot_sectors { - get { - return ResourceManager.GetString("Found_Sony_PlayStation_3_boot_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sony PlayStation 3 boot sectors, setting disc type to PS3 DVD.. - /// - public static string Found_Sony_PlayStation_3_boot_sectors_DVD { - get { - return ResourceManager.GetString("Found_Sony_PlayStation_3_boot_sectors_DVD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sony PlayStation 4 boot sectors, setting disc type to PS4 Blu-ray.. - /// - public static string Found_Sony_PlayStation_4_boot_sectors { - get { - return ResourceManager.GetString("Found_Sony_PlayStation_4_boot_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sony PlayStation 5 boot sectors, setting disc type to PS5 Ultra HD Blu-ray.. - /// - public static string Found_Sony_PlayStation_5_boot_sectors { - get { - return ResourceManager.GetString("Found_Sony_PlayStation_5_boot_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Super Video CD description file, setting disc type to Super Video CD.. - /// - public static string Found_Super_Video_CD_description_file { - get { - return ResourceManager.GetString("Found_Super_Video_CD_description_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found undecoded SCSI VPD page 0x{0:X2}. - /// - public static string Found_undecoded_SCSI_VPD_page_0 { - get { - return ResourceManager.GetString("Found_undecoded_SCSI_VPD_page_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown feature code {0:X4}h. - /// - public static string Found_unknown_feature_code_0 { - get { - return ResourceManager.GetString("Found_unknown_feature_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown mode page {0:X2}h. - /// - public static string Found_unknown_mode_page_0 { - get { - return ResourceManager.GetString("Found_unknown_mode_page_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown mode page {0:X2}h subpage {1:X2}h. - /// - public static string Found_unknown_mode_page_0_subpage_1 { - get { - return ResourceManager.GetString("Found_unknown_mode_page_0_subpage_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown tuple ID 0x{0:X2}. - /// - public static string Found_unknown_tuple_ID_0 { - get { - return ResourceManager.GetString("Found_unknown_tuple_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown vendor mode page {0:X2}h. - /// - public static string Found_unknown_vendor_mode_page_0 { - get { - return ResourceManager.GetString("Found_unknown_vendor_mode_page_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown vendor mode page {0:X2}h subpage {1:X2}h. - /// - public static string Found_unknown_vendor_mode_page_0_subpage_1 { - get { - return ResourceManager.GetString("Found_unknown_vendor_mode_page_0_subpage_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Video CD description file, setting disc type to Video CD.. - /// - public static string Found_Video_CD_description_file { - get { - return ResourceManager.GetString("Found_Video_CD_description_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found VideoNow! Color frame, setting disc type to VideoNow Color.. - /// - public static string Found_VideoNow_Color_frame { - get { - return ResourceManager.GetString("Found_VideoNow_Color_frame", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Full raw subchannel reading supported.... - /// - public static string Full_raw_subchannel_reading_supported { - get { - return ResourceManager.GetString("Full_raw_subchannel_reading_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Game data size. - /// - public static string Game_data_size { - get { - return ResourceManager.GetString("Game_data_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Game data size: {0} sectors. - /// - public static string Game_data_size_0_sectors { - get { - return ResourceManager.GetString("Game_data_size_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Game partition total size: {0} sectors. - /// - public static string Game_partition_total_size_0_sectors { - get { - return ResourceManager.GetString("Game_partition_total_size_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GD-ROM dump support is not yet implemented.. - /// - public static string GD_ROM_dump_support_is_not_yet_implemented { - get { - return ResourceManager.GetString("GD_ROM_dump_support_is_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GD-ROM scan support is not yet implemented.. - /// - public static string GD_ROM_scan_support_is_not_yet_implemented { - get { - return ResourceManager.GetString("GD_ROM_scan_support_is_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Generating subchannel for sector {0}.... - /// - public static string Generating_subchannel_for_sector_0 { - get { - return ResourceManager.GetString("Generating_subchannel_for_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Generating subchannels.... - /// - public static string Generating_subchannels { - get { - return ResourceManager.GetString("Generating_subchannels", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GET CONFIGURATION current profile is {0:X4}h. - /// - public static string GET_CONFIGURATION_current_profile_is_0 { - get { - return ResourceManager.GetString("GET_CONFIGURATION_current_profile_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GET CONFIGURATION length is {0} bytes. - /// - public static string GET_CONFIGURATION_length_is_0 { - get { - return ResourceManager.GetString("GET_CONFIGURATION_length_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GET CONFIGURATION returned no feature descriptors. - /// - public static string GET_CONFIGURATION_returned_no_feature_descriptors { - get { - return ResourceManager.GetString("GET_CONFIGURATION_returned_no_feature_descriptors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Getting disc size.. - /// - public static string Getting_disc_size { - get { - return ResourceManager.GetString("Getting_disc_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Getting game partition size.. - /// - public static string Getting_game_partition_size { - get { - return ResourceManager.GetString("Getting_game_partition_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Getting middle zone size. - /// - public static string Getting_middle_zone_size { - get { - return ResourceManager.GetString("Getting_middle_zone_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Getting video partition size. - /// - public static string Getting_video_partition_size { - get { - return ResourceManager.GetString("Getting_video_partition_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got {0} children. - /// - public static string Got_0_children { - get { - return ResourceManager.GetString("Got_0_children", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got {0} first track pregap sectors.. - /// - public static string Got_0_first_track_pregap_sectors { - get { - return ResourceManager.GetString("Got_0_first_track_pregap_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got {0} parents. - /// - public static string Got_0_parents { - get { - return ResourceManager.GetString("Got_0_parents", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got {0} partitions. - /// - public static string Got_0_partitions { - get { - return ResourceManager.GetString("Got_0_partitions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got partial data for sector {0} in pass {1}.. - /// - public static string Got_partial_data_for_sector_0_in_pass_1 { - get { - return ResourceManager.GetString("Got_partial_data_for_sector_0_in_pass_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got sense status but no sense buffer. - /// - public static string Got_sense_status_but_no_sense_buffer { - get { - return ResourceManager.GetString("Got_sense_status_but_no_sense_buffer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has partitions. - /// - public static string Has_partitions { - get { - return ResourceManager.GetString("Has_partitions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has sessions. - /// - public static string Has_sessions { - get { - return ResourceManager.GetString("Has_sessions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing blocks {0} of {1}. - /// - public static string Hashing_blocks_0_of_1 { - get { - return ResourceManager.GetString("Hashing_blocks_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing DiscFerret image.... - /// - public static string Hashing_DiscFerret_image { - get { - return ResourceManager.GetString("Hashing_DiscFerret_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing file {0}.... - /// - public static string Hashing_file_0 { - get { - return ResourceManager.GetString("Hashing_file_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing file {0}/{1}.... - /// - public static string Hashing_file_0_1 { - get { - return ResourceManager.GetString("Hashing_file_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing file byte {0} of {1}. - /// - public static string Hashing_file_byte_0_of_1 { - get { - return ResourceManager.GetString("Hashing_file_byte_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing files.... - /// - public static string Hashing_files { - get { - return ResourceManager.GetString("Hashing_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing image file.... - /// - public static string Hashing_image_file { - get { - return ResourceManager.GetString("Hashing_image_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing image file byte {0} of {1}. - /// - public static string Hashing_image_file_byte_0_of_1 { - get { - return ResourceManager.GetString("Hashing_image_file_byte_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing KryoFlux images.... - /// - public static string Hashing_KryoFlux_images { - get { - return ResourceManager.GetString("Hashing_KryoFlux_images", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing media tags.... - /// - public static string Hashing_media_tags { - get { - return ResourceManager.GetString("Hashing_media_tags", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing partition {0}.... - /// - public static string Hashing_partition_0 { - get { - return ResourceManager.GetString("Hashing_partition_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing sector {0} of {1}. - /// - public static string Hashing_sector_0_of_1 { - get { - return ResourceManager.GetString("Hashing_sector_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing sectors.... - /// - public static string Hashing_sectors { - get { - return ResourceManager.GetString("Hashing_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing subchannel sector {0} of {1}. - /// - public static string Hashing_subchannel_sector_0_of_1 { - get { - return ResourceManager.GetString("Hashing_subchannel_sector_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing SuperCardPro image.... - /// - public static string Hashing_SuperCardPro_image { - get { - return ResourceManager.GetString("Hashing_SuperCardPro_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hashing tracks.... - /// - public static string Hashing_tracks { - get { - return ResourceManager.GetString("Hashing_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Have you previously tried with a GD-ROM disc and did the computer hang or crash? (Y/N): . - /// - public static string Have_you_previously_tried_with_a_GD_ROM_disc_and_did_the_computer_hang_or_crash_Q { - get { - return ResourceManager.GetString("Have_you_previously_tried_with_a_GD_ROM_disc_and_did_the_computer_hang_or_crash_Q" + - "", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not continuing. If you want to continue reading cooked data when raw is not available use the force option.. - /// - public static string If_you_want_to_continue_reading_cooked_data_when_raw_is_not_available_use_the_force_option { - get { - return ResourceManager.GetString("If_you_want_to_continue_reading_cooked_data_when_raw_is_not_available_use_the_for" + - "ce_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image does not support multiple sessions in non Compact Disc dumps, continuing.... - /// - public static string Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_continuing { - get { - return ResourceManager.GetString("Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image does not support multiple sessions in non Compact Disc dumps, not continuing.... - /// - public static string Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_not_continuing { - get { - return ResourceManager.GetString("Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_not_continuing" + - "", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image does not support multiple tracks in non Compact Disc dumps, continuing.... - /// - public static string Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_continuing { - get { - return ResourceManager.GetString("Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image does not support multiple tracks in non Compact Disc dumps, not continuing.... - /// - public static string Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_not_continuing { - get { - return ResourceManager.GetString("Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This image contains low-level flux captures.. - /// - public static string Image_flux_captures { - get { - return ResourceManager.GetString("Image_flux_captures", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Image information:[/]. - /// - public static string Image_information_WithMarkup { - get { - return ResourceManager.GetString("Image_information_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image is not writable, aborting.... - /// - public static string Image_is_not_writable_aborting { - get { - return ResourceManager.GetString("Image_is_not_writable_aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image without headers is {0} bytes long. - /// - public static string Image_without_headers_is_0_bytes_long { - get { - return ResourceManager.GetString("Image_without_headers_is_0_bytes_long", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Initializing reader.. - /// - public static string Initializing_reader { - get { - return ResourceManager.GetString("Initializing_reader", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to INSITE floptical drives get crazy on the SCSI bus when an error is found, stopping so you can reboot the computer or reset the SCSI bus appropriately.. - /// - public static string INSITE_floptical_drives_get_crazy_on_the_SCSI_bus_when_an_error_is_found { - get { - return ResourceManager.GetString("INSITE_floptical_drives_get_crazy_on_the_SCSI_bus_when_an_error_is_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid Q position for LBA {0}, got {1}. - /// - public static string Invalid_Q_position_for_LBA_0_got_1 { - get { - return ResourceManager.GetString("Invalid_Q_position_for_LBA_0_got_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found undecoded tuple ID {0}. - /// - public static string Invoke_Found_undecoded_tuple_ID_0 { - get { - return ResourceManager.GetString("Invoke_Found_undecoded_tuple_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ISRC for track {0} changed from {1} to {2}.. - /// - public static string ISRC_for_track_0_changed_from_1_to_2 { - get { - return ResourceManager.GetString("ISRC_for_track_0_changed_from_1_to_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can skip read errors. - /// - public static string Kreon_Can_skip_read_errors { - get { - return ResourceManager.GetString("Kreon_Can_skip_read_errors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KREON EXTRACT SS: - ///{0}. - /// - public static string KREON_EXTRACT_SS_0 { - get { - return ResourceManager.GetString("KREON_EXTRACT_SS_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KryoFlux image does not contain same number of heads ({0}) than disk image ({1}), ignoring.... - /// - public static string KryoFlux_image_do_not_same_number_heads_0_disk_image_1_ignoring { - get { - return ResourceManager.GetString("KryoFlux_image_do_not_same_number_heads_0_disk_image_1_ignoring", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KryoFlux image does not contain same number of tracks ({0}) than disk image ({1}), ignoring.... - /// - public static string KryoFlux_image_do_not_same_number_tracks_0_disk_image_1_ignoring { - get { - return ResourceManager.GetString("KryoFlux_image_do_not_same_number_tracks_0_disk_image_1_ignoring", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last modified on {0}. - /// - public static string Last_modified_on_0 { - get { - return ResourceManager.GetString("Last_modified_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last update: {0}. - /// - public static string Last_update_0 { - get { - return ResourceManager.GetString("Last_update_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last used PoweRec was {0} Kb/sec ({1}x). - /// - public static string Last_used_PoweRec_was_0_1 { - get { - return ResourceManager.GetString("Last_used_PoweRec_was_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LBA: {0}, Try {1}, Sense {2}. - /// - public static string LBA_0_Try_1_Sense_2 { - get { - return ResourceManager.GetString("LBA_0_Try_1_Sense_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LBA: {0}, Try {1}, Sense {2}, Q: {3:X2} {4:X2} {5:X2} {6:X2} {7:X2} {8:X2} {9:X2} {10:X2} {11:X2} {12:X2} CRC 0x{13:X2}{14:X2}, Calculated CRC: 0x{15:X2}{16:X2}. - /// - public static string LBA_0_Try_1_Sense_2_Q_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16 { - get { - return ResourceManager.GetString("LBA_0_Try_1_Sense_2_Q_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LBA: {0}, Try {1}, Sense {2}, Q (FIXED): {3:X2} {4:X2} {5:X2} {6:X2} {7:X2} {8:X2} {9:X2} {10:X2} {11:X2} {12:X2} CRC 0x{13:X2}{14:X2}, Calculated CRC: 0x{15:X2}{16:X2}. - /// - public static string LBA_0_Try_1_Sense_2_Q_FIXED_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16 { - get { - return ResourceManager.GetString("LBA_0_Try_1_Sense_2_Q_FIXED_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16" + - "", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Lead-In. - /// - public static string Lead_In { - get { - return ResourceManager.GetString("Lead_In", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Lead-In CMI. - /// - public static string Lead_In_CMI { - get { - return ResourceManager.GetString("Lead_In_CMI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Lead-Out has changed, this drive does not support hot swapping discs.... - /// - public static string Lead_out_has_changed_this_drive_does_not_support_hot_swapping_discs { - get { - return ResourceManager.GetString("Lead_out_has_changed_this_drive_does_not_support_hot_swapping_discs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LOCATE LONG works.. - /// - public static string LOCATE_LONG_works { - get { - return ResourceManager.GetString("LOCATE_LONG_works", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LOCATE works.. - /// - public static string LOCATE_works { - get { - return ResourceManager.GetString("LOCATE_works", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Locking drive.. - /// - public static string Locking_drive { - get { - return ResourceManager.GetString("Locking_drive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ######################################################. - /// - public static string Log_section_separator { - get { - return ResourceManager.GetString("Log_section_separator", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Manufacturer: {0}. - /// - public static string Manufacturer_0 { - get { - return ResourceManager.GetString("Manufacturer_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Manufacturer-assigned Serial Number: {0}. - /// - public static string Manufacturer_assigned_Serial_Number_0 { - get { - return ResourceManager.GetString("Manufacturer_assigned_Serial_Number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Mapping:[/]. - /// - public static string Mapping_WithMarkup { - get { - return ResourceManager.GetString("Mapping_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maximum PoweRec speed for currently inserted media is {0} Kb/sec ({1}x). - /// - public static string Maximum_PoweRec_speed_for_currently_inserted_media_is_0_1 { - get { - return ResourceManager.GetString("Maximum_PoweRec_speed_for_currently_inserted_media_is_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MCN. - /// - public static string MCN { - get { - return ResourceManager.GetString("MCN", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MCN changed from {0} to {1}.. - /// - public static string MCN_changed_from_0_to_1 { - get { - return ResourceManager.GetString("MCN_changed_from_0_to_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Media barcode:[/] [italic]{0}[/]. - /// - public static string Media_barcode_0_WithMarkup { - get { - return ResourceManager.GetString("Media_barcode_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media card is write protected. - /// - public static string Media_card_is_write_protected { - get { - return ResourceManager.GetString("Media_card_is_write_protected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media detected as MemoryStick Duo.... - /// - public static string Media_detected_as_MemoryStick_Duo { - get { - return ResourceManager.GetString("Media_detected_as_MemoryStick_Duo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media detected as MemoryStick Pro Duo.... - /// - public static string Media_detected_as_MemoryStick_Pro_Duo { - get { - return ResourceManager.GetString("Media_detected_as_MemoryStick_Pro_Duo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Media geometry:[/] [italic]{0} cylinders, {1} heads, {2} sectors per track[/]. - /// - public static string Media_geometry_0_cylinders_1_heads_2_sectors_per_track_WithMarkup { - get { - return ResourceManager.GetString("Media_geometry_0_cylinders_1_heads_2_sectors_per_track_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media has {0} blocks of {1} bytes/each. (for a total of {2}). - /// - public static string Media_has_0_blocks_of_1_bytes_each_for_a_total_of_2 { - get { - return ResourceManager.GetString("Media_has_0_blocks_of_1_bytes_each_for_a_total_of_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media identified as. - /// - public static string Media_identified_as { - get { - return ResourceManager.GetString("Media_identified_as", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media identified as {0}.. - /// - public static string Media_identified_as_0 { - get { - return ResourceManager.GetString("Media_identified_as_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media is number {0} on a set of {1} medias. - /// - public static string Media_is_number_0_on_a_set_of_1_medias { - get { - return ResourceManager.GetString("Media_is_number_0_on_a_set_of_1_medias", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media manufacturer: {0}. - /// - public static string Media_manufacturer_0 { - get { - return ResourceManager.GetString("Media_manufacturer_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Media manufacturer:[/] [italic]{0}[/]. - /// - public static string Media_manufacturer_0_WithMarkup { - get { - return ResourceManager.GetString("Media_manufacturer_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Media model:[/] [italic]{0}[/]. - /// - public static string Media_model_0_WithMarkup { - get { - return ResourceManager.GetString("Media_model_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Media part number:[/] [italic]{0}[/]. - /// - public static string Media_part_number_0_WithMarkup { - get { - return ResourceManager.GetString("Media_part_number_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media part number is {0}.. - /// - public static string Media_part_number_is_0 { - get { - return ResourceManager.GetString("Media_part_number_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media Serial Number. - /// - public static string Media_Serial_Number { - get { - return ResourceManager.GetString("Media_Serial_Number", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media serial number: {0}. - /// - public static string Media_serial_number_0 { - get { - return ResourceManager.GetString("Media_serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Media serial number:[/] [italic]{0}[/]. - /// - public static string Media_serial_number_0_WithMarkup { - get { - return ResourceManager.GetString("Media_serial_number_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]Media title:[/] [italic]{0}[/]. - /// - public static string Media_title_0_WithMarkup { - get { - return ResourceManager.GetString("Media_title_0_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 60 minutes rewritable MiniDisc. - /// - public static string Media_Type_Name_MDW_60 { - get { - return ResourceManager.GetString("Media_Type_Name_MDW_60", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 74 minutes rewritable MiniDisc. - /// - public static string Media_Type_Name_MDW_74 { - get { - return ResourceManager.GetString("Media_Type_Name_MDW_74", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 80 minutes rewritable MiniDisc. - /// - public static string Media_Type_Name_MDW_80 { - get { - return ResourceManager.GetString("Media_Type_Name_MDW_80", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Embossed Audio MiniDisc. - /// - public static string Media_Type_Name_MiniDisc { - get { - return ResourceManager.GetString("Media_Type_Name_MiniDisc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MD DATA (140Mb data MiniDisc). - /// - public static string Media_Type_Name_MMD_140A { - get { - return ResourceManager.GetString("Media_Type_Name_MMD_140A", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please open a bug report in Github with the manufacturer and model of this device, as well as your operating system name and version and this message: This environment correctly supports MEDIUM SCAN command.. - /// - public static string MEDIUM_SCAN_github_plead_message { - get { - return ResourceManager.GetString("MEDIUM_SCAN_github_plead_message", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Medium Status. - /// - public static string Medium_Status { - get { - return ResourceManager.GetString("Medium_Status", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Middle zone size. - /// - public static string Middle_zone_size { - get { - return ResourceManager.GetString("Middle_zone_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Middle zone size: {0} sectors. - /// - public static string Middle_zone_size_0_sectors { - get { - return ResourceManager.GetString("Middle_zone_size_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MiniDisc albums, NetMD discs or user-written audio MiniDisc cannot be dumped.. - /// - public static string MiniDisc_albums_NetMD_discs_or_user_written_audio_MiniDisc_cannot_be_dumped { - get { - return ResourceManager.GetString("MiniDisc_albums_NetMD_discs_or_user_written_audio_MiniDisc_cannot_be_dumped", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Model: {0}. - /// - public static string Model_0 { - get { - return ResourceManager.GetString("Model_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Modified {0} CompactDisc read offsets. - /// - public static string Modified_0_CompactDisc_read_offsets { - get { - return ResourceManager.GetString("Modified_0_CompactDisc_read_offsets", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Modified {0} known devices. - /// - public static string Modified_0_known_devices { - get { - return ResourceManager.GetString("Modified_0_known_devices", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Modified {0} known iNES/NES 2.0 headers. - /// - public static string Modified_0_known_iNES_NES_2_0_headers { - get { - return ResourceManager.GetString("Modified_0_known_iNES_NES_2_0_headers", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Modified {0} USB products. - /// - public static string Modified_0_USB_products { - get { - return ResourceManager.GetString("Modified_0_USB_products", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Modified {0} USB vendors. - /// - public static string Modified_0_USB_vendors { - get { - return ResourceManager.GetString("Modified_0_USB_vendors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Mounting {0}. - /// - public static string Mounting_0 { - get { - return ResourceManager.GetString("Mounting_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]MultiMediaCard CID contained in image:[/]. - /// - public static string MultiMediaCard_CID_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("MultiMediaCard_CID_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]MultiMediaCard CSD contained in image:[/]. - /// - public static string MultiMediaCard_CSD_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("MultiMediaCard_CSD_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]MultiMediaCard Extended CSD contained in image:[/]. - /// - public static string MultiMediaCard_Extended_CSD_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("MultiMediaCard_Extended_CSD_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]MultiMediaCard OCR contained in image:[/]. - /// - public static string MultiMediaCard_OCR_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("MultiMediaCard_OCR_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No audio tracks, disabling offset fix.. - /// - public static string No_audio_tracks_disabling_offset_fix { - get { - return ResourceManager.GetString("No_audio_tracks_disabling_offset_fix", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No cartridge found, not dumping.... - /// - public static string No_cartridge_found_not_dumping { - get { - return ResourceManager.GetString("No_cartridge_found_not_dumping", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No tracks found, adding a single track from 0 to Lead-Out. - /// - public static string No_tracks_found_adding_a_single_track_from_zero_to_Lead_Out { - get { - return ResourceManager.GetString("No_tracks_found_adding_a_single_track_from_zero_to_Lead_Out", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not enough permissions to open the device.. - /// - public static string Not_enough_permissions_to_open_the_device { - get { - return ResourceManager.GetString("Not_enough_permissions_to_open_the_device", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not overwriting file {0}. - /// - public static string Not_overwriting_file_0 { - get { - return ResourceManager.GetString("Not_overwriting_file_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NVMe devices not yet supported.. - /// - public static string NVMe_devices_not_yet_supported { - get { - return ResourceManager.GetString("NVMe_devices_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to OCR obtained correctly.... - /// - public static string OCR_obtained_correctly { - get { - return ResourceManager.GetString("OCR_obtained_correctly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Offsets. - /// - public static string Offsets { - get { - return ResourceManager.GetString("Offsets", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Operating system: {0} {1}. - /// - public static string Operating_system_0_1 { - get { - return ResourceManager.GetString("Operating_system_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support {0}.. - /// - public static string Output_format_does_not_support_0 { - get { - return ResourceManager.GetString("Output_format_does_not_support_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support {0}, continuing.... - /// - public static string Output_format_does_not_support_0_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_0_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support {0}, not continuing.... - /// - public static string Output_format_does_not_support_0_not_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_0_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support audio tracks, cannot continue.... - /// - public static string Output_format_does_not_support_audio_tracks_cannot_continue { - get { - return ResourceManager.GetString("Output_format_does_not_support_audio_tracks_cannot_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support audio tracks, not continuing.... - /// - public static string Output_format_does_not_support_audio_tracks_not_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_audio_tracks_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support CD first track pregap, continuing.... - /// - public static string Output_format_does_not_support_CD_first_track_pregap_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_CD_first_track_pregap_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support CD first track pregap, not continuing.... - /// - public static string Output_format_does_not_support_CD_first_track_pregap_not_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_CD_first_track_pregap_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not properly support storing hidden tracks, this will end in a loss of data, not continuing.... - /// - public static string Output_format_does_not_support_hidden_tracks { - get { - return ResourceManager.GetString("Output_format_does_not_support_hidden_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support more than 1 track, not continuing.... - /// - public static string Output_format_does_not_support_more_than_1_track_not_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_more_than_1_track_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support PCMCIA CIS descriptors.. - /// - public static string Output_format_does_not_support_PCMCIA_CIS_descriptors { - get { - return ResourceManager.GetString("Output_format_does_not_support_PCMCIA_CIS_descriptors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support pregaps, this may end in a loss of data, continuing.... - /// - public static string Output_format_does_not_support_pregaps_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_pregaps_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support pregaps, this may end in a loss of data, not continuing.... - /// - public static string Output_format_does_not_support_pregaps_not_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_pregaps_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support sessions, this will end in a loss of data, not continuing.... - /// - public static string Output_format_does_not_support_sessions { - get { - return ResourceManager.GetString("Output_format_does_not_support_sessions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support storing raw data, this may end in a loss of data, continuing.... - /// - public static string Output_format_does_not_support_storing_raw_data_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_storing_raw_data_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support storing raw data, this may end in a loss of data, not continuing.... - /// - public static string Output_format_does_not_support_storing_raw_data_not_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_storing_raw_data_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support subchannels, continuing.... - /// - public static string Output_format_does_not_support_subchannels_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_subchannels_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support subchannels, not continuing.... - /// - public static string Output_format_does_not_support_subchannels_not_continuing { - get { - return ResourceManager.GetString("Output_format_does_not_support_subchannels_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format does not support USB descriptors.. - /// - public static string Output_format_does_not_support_USB_descriptors { - get { - return ResourceManager.GetString("Output_format_does_not_support_USB_descriptors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Output format only supports MODE 1 tracks, not continuing.... - /// - public static string Output_format_only_supports_MODE_1_tracks_not_continuing { - get { - return ResourceManager.GetString("Output_format_only_supports_MODE_1_tracks_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition length: {0} sectors, {1} bytes. - /// - public static string Partition_length_0_sectors_1_bytes { - get { - return ResourceManager.GetString("Partition_length_0_sectors_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition name: {0}. - /// - public static string Partition_name_0 { - get { - return ResourceManager.GetString("Partition_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition start: sector {0}, byte {1}. - /// - public static string Partition_start_sector_0_byte_1 { - get { - return ResourceManager.GetString("Partition_start_sector_0_byte_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition type: {0}. - /// - public static string Partition_type_0 { - get { - return ResourceManager.GetString("Partition_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]PCMCIA CIS:[/]. - /// - public static string PCMCIA_CIS_WithMarkup { - get { - return ResourceManager.GetString("PCMCIA_CIS_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PCMCIA device: {0}. - /// - public static string PCMCIA_device_0 { - get { - return ResourceManager.GetString("PCMCIA_device_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PlayStation 2 boot sectors SHA256: {0}. - /// - public static string PlayStation_2_boot_sectors_SHA256_0 { - get { - return ResourceManager.GetString("PlayStation_2_boot_sectors_SHA256_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please insert media in drive. - /// - public static string Please_insert_media_in_drive { - get { - return ResourceManager.GetString("Please_insert_media_in_drive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please insert trap disc inside.... - /// - public static string Please_insert_trap_disc_inside { - get { - return ResourceManager.GetString("Please_insert_trap_disc_inside", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please MANUALLY get the trap disc out and put the GD-ROM disc inside.... - /// - public static string Please_MANUALLY_get_the_trap_disc_out_and_put_the_GD_ROM_disc_inside { - get { - return ResourceManager.GetString("Please_MANUALLY_get_the_trap_disc_out_and_put_the_GD_ROM_disc_inside", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please open an issue at Github.. - /// - public static string Please_open_an_issue_at_Github { - get { - return ResourceManager.GetString("Please_open_an_issue_at_Github", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please write a description of the media type and press enter: . - /// - public static string Please_write_description_of_media_type { - get { - return ResourceManager.GetString("Please_write_description_of_media_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please write the media manufacturer and press enter: . - /// - public static string Please_write_media_manufacturer { - get { - return ResourceManager.GetString("Please_write_media_manufacturer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please write the media model and press enter: . - /// - public static string Please_write_media_model { - get { - return ResourceManager.GetString("Please_write_media_model", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying Plextor READ CD-DA.... - /// - public static string Plextor_READ_CD_DA { - get { - return ResourceManager.GetString("Plextor_READ_CD_DA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Plextor SilentMode is enabled:. - /// - public static string Plextor_SilentMode_is_enabled { - get { - return ResourceManager.GetString("Plextor_SilentMode_is_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PMA. - /// - public static string PMA { - get { - return ResourceManager.GetString("PMA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Positioning tape to block {0}.. - /// - public static string Positioning_tape_to_block_0 { - get { - return ResourceManager.GetString("Positioning_tape_to_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Positioning tape to block 1.. - /// - public static string Positioning_tape_to_block_1 { - get { - return ResourceManager.GetString("Positioning_tape_to_block_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to POW Resources Information. - /// - public static string POW_Resources_Information { - get { - return ResourceManager.GetString("POW_Resources_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PQ subchannel reading supported.... - /// - public static string PQ_subchannel_reading_supported { - get { - return ResourceManager.GetString("PQ_subchannel_reading_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Pregap for track {0}: {1}. - /// - public static string Pregap_for_track_0_1 { - get { - return ResourceManager.GetString("Pregap_for_track_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Pregap for track {0} set to {1} sectors.. - /// - public static string Pregap_for_track_0_set_to_1_sectors { - get { - return ResourceManager.GetString("Pregap_for_track_0_set_to_1_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Press any key to continue.... - /// - public static string Press_any_key_to_continue { - get { - return ResourceManager.GetString("Press_any_key_to_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Program. - /// - public static string Program { - get { - return ResourceManager.GetString("Program", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ################# Program information ################. - /// - public static string Program_information { - get { - return ResourceManager.GetString("Program_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol version: {0}. - /// - public static string Protocol_version_0 { - get { - return ResourceManager.GetString("Protocol_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Publisher identifier: {0}. - /// - public static string Publisher_identifier_0 { - get { - return ResourceManager.GetString("Publisher_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying all mode pages and subpages using SCSI MODE SENSE (10).... - /// - public static string Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_10 { - get { - return ResourceManager.GetString("Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying all mode pages and subpages using SCSI MODE SENSE (6).... - /// - public static string Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_6 { - get { - return ResourceManager.GetString("Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying ATA IDENTIFY.... - /// public static string Querying_ATA_IDENTIFY { get { return ResourceManager.GetString("Querying_ATA_IDENTIFY", resourceCulture); } } - /// - /// Looks up a localized string similar to Querying ATAPI IDENTIFY.... - /// - public static string Querying_ATAPI_IDENTIFY { - get { - return ResourceManager.GetString("Querying_ATAPI_IDENTIFY", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying BD BCA.... - /// - public static string Querying_BD_BCA { - get { - return ResourceManager.GetString("Querying_BD_BCA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying BD DDS.... - /// - public static string Querying_BD_DDS { - get { - return ResourceManager.GetString("Querying_BD_DDS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying BD Disc Information.... - /// - public static string Querying_BD_Disc_Information { - get { - return ResourceManager.GetString("Querying_BD_Disc_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying BD PAC.... - /// - public static string Querying_BD_PAC { - get { - return ResourceManager.GetString("Querying_BD_PAC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying BD SAI.... - /// - public static string Querying_BD_SAI { - get { - return ResourceManager.GetString("Querying_BD_SAI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying CD ATIP.... - /// - public static string Querying_CD_ATIP { - get { - return ResourceManager.GetString("Querying_CD_ATIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying CD Full TOC.... - /// - public static string Querying_CD_Full_TOC { - get { - return ResourceManager.GetString("Querying_CD_Full_TOC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying CD PMA.... - /// - public static string Querying_CD_PMA { - get { - return ResourceManager.GetString("Querying_CD_PMA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying CD TOC.... - /// - public static string Querying_CD_TOC { - get { - return ResourceManager.GetString("Querying_CD_TOC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying Disc Definition Structure.... - /// - public static string Querying_Disc_Definition_Structure { - get { - return ResourceManager.GetString("Querying_Disc_Definition_Structure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD AACS.... - /// - public static string Querying_DVD_AACS { - get { - return ResourceManager.GetString("Querying_DVD_AACS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD ADIP.... - /// - public static string Querying_DVD_ADIP { - get { - return ResourceManager.GetString("Querying_DVD_ADIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD BCA.... - /// - public static string Querying_DVD_BCA { - get { - return ResourceManager.GetString("Querying_DVD_BCA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD CMI.... - /// - public static string Querying_DVD_CMI { - get { - return ResourceManager.GetString("Querying_DVD_CMI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD DCB.... - /// - public static string Querying_DVD_DCB { - get { - return ResourceManager.GetString("Querying_DVD_DCB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD DMI.... - /// - public static string Querying_DVD_DMI { - get { - return ResourceManager.GetString("Querying_DVD_DMI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD Embossed PFI.... - /// - public static string Querying_DVD_Embossed_PFI { - get { - return ResourceManager.GetString("Querying_DVD_Embossed_PFI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD Layer Capacity.... - /// - public static string Querying_DVD_Layer_Capacity { - get { - return ResourceManager.GetString("Querying_DVD_Layer_Capacity", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD Media ID.... - /// - public static string Querying_DVD_Media_ID { - get { - return ResourceManager.GetString("Querying_DVD_Media_ID", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD PFI.... - /// - public static string Querying_DVD_PFI { - get { - return ResourceManager.GetString("Querying_DVD_PFI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying DVD PRI.... - /// - public static string Querying_DVD_PRI { - get { - return ResourceManager.GetString("Querying_DVD_PRI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying HD DVD CMI.... - /// - public static string Querying_HD_DVD_CMI { - get { - return ResourceManager.GetString("Querying_HD_DVD_CMI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying list of SCSI EVPDs.... - /// - public static string Querying_list_of_SCSI_EVPDs { - get { - return ResourceManager.GetString("Querying_list_of_SCSI_EVPDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying MMC GET CONFIGURATION.... - /// - public static string Querying_MMC_GET_CONFIGURATION { - get { - return ResourceManager.GetString("Querying_MMC_GET_CONFIGURATION", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying PCMCIA information.... - /// - public static string Querying_PCMCIA_information { - get { - return ResourceManager.GetString("Querying_PCMCIA_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI EVPD {0:X2}h.... - /// - public static string Querying_SCSI_EVPD_0 { - get { - return ResourceManager.GetString("Querying_SCSI_EVPD_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI EVPD pages.... - /// - public static string Querying_SCSI_EVPD_pages { - get { - return ResourceManager.GetString("Querying_SCSI_EVPD_pages", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI INQUIRY.... - /// - public static string Querying_SCSI_INQUIRY { - get { - return ResourceManager.GetString("Querying_SCSI_INQUIRY", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI MODE SENSE.... - /// - public static string Querying_SCSI_MODE_SENSE { - get { - return ResourceManager.GetString("Querying_SCSI_MODE_SENSE", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI MODE SENSE (10).... - /// - public static string Querying_SCSI_MODE_SENSE_10 { - get { - return ResourceManager.GetString("Querying_SCSI_MODE_SENSE_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI READ BLOCK LIMITS.... - /// - public static string Querying_SCSI_READ_BLOCK_LIMITS { - get { - return ResourceManager.GetString("Querying_SCSI_READ_BLOCK_LIMITS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI READ CAPACITY.... - /// - public static string Querying_SCSI_READ_CAPACITY { - get { - return ResourceManager.GetString("Querying_SCSI_READ_CAPACITY", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI READ CAPACITY (16).... - /// - public static string Querying_SCSI_READ_CAPACITY_16 { - get { - return ResourceManager.GetString("Querying_SCSI_READ_CAPACITY_16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI REPORT DENSITY SUPPORT.... - /// - public static string Querying_SCSI_REPORT_DENSITY_SUPPORT { - get { - return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI REPORT DENSITY SUPPORT for current media.... - /// - public static string Querying_SCSI_REPORT_DENSITY_SUPPORT_for_current_media { - get { - return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT_for_current_media", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI REPORT DENSITY SUPPORT for medium types.... - /// - public static string Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types { - get { - return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying SCSI REPORT DENSITY SUPPORT for medium types for current media.... - /// - public static string Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types_for_current_media { - get { - return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types_for_current_media", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying Spare Area Information.... - /// - public static string Querying_Spare_Area_Information { - get { - return ResourceManager.GetString("Querying_Spare_Area_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Querying USB information.... - /// public static string Querying_USB_information { get { return ResourceManager.GetString("Querying_USB_information", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw CD dumping not yet implemented. - /// - public static string Raw_CD_dumping_not_yet_implemented { + public static string Querying_PCMCIA_information { get { - return ResourceManager.GetString("Raw_CD_dumping_not_yet_implemented", resourceCulture); + return ResourceManager.GetString("Querying_PCMCIA_information", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw dumping is not supported in MultiMediaCard or SecureDigital devices. Aborting.... - /// - public static string Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Aborting { + public static string NVMe_devices_not_yet_supported { get { - return ResourceManager.GetString("Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Aborting", resourceCulture); + return ResourceManager.GetString("NVMe_devices_not_yet_supported", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw dumping is not supported in MultiMediaCard or SecureDigital devices. Continuing.... - /// - public static string Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Continuing { + public static string Querying_ATAPI_IDENTIFY { get { - return ResourceManager.GetString("Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Continuing", resourceCulture); + return ResourceManager.GetString("Querying_ATAPI_IDENTIFY", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw dumping not yet supported in ATA devices, aborting.... - /// - public static string Raw_dumping_not_yet_supported_in_ATA_devices_aborting { + public static string Waiting_for_drive_to_become_ready { get { - return ResourceManager.GetString("Raw_dumping_not_yet_supported_in_ATA_devices_aborting", resourceCulture); + return ResourceManager.GetString("Waiting_for_drive_to_become_ready", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw dumping not yet supported in ATA devices, continuing.... - /// - public static string Raw_dumping_not_yet_supported_in_ATA_devices_continuing { + public static string Device_not_ready_Sense { get { - return ResourceManager.GetString("Raw_dumping_not_yet_supported_in_ATA_devices_continuing", resourceCulture); + return ResourceManager.GetString("Device_not_ready_Sense", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw TOC. - /// - public static string Raw_TOC { + public static string Got_sense_status_but_no_sense_buffer { get { - return ResourceManager.GetString("Raw_TOC", resourceCulture); + return ResourceManager.GetString("Got_sense_status_but_no_sense_buffer", resourceCulture); } } - /// - /// Looks up a localized string similar to READ CD command is not supported, disabling offset fix. Dump may not be correct.. - /// - public static string READ_CD_command_is_not_supported_disabling_offset_fix_Dump_may_not_be_correct { + public static string Try_to_find_SCSI_READ_LONG_size { get { - return ResourceManager.GetString("READ_CD_command_is_not_supported_disabling_offset_fix_Dump_may_not_be_correct", resourceCulture); + return ResourceManager.GetString("Try_to_find_SCSI_READ_LONG_size", resourceCulture); } } - /// - /// Looks up a localized string similar to READ CD error: - ///{0}. - /// - public static string READ_CD_error_0 { + public static string Trying_READ_LONG { get { - return ResourceManager.GetString("READ_CD_error_0", resourceCulture); + return ResourceManager.GetString("Trying_READ_LONG", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC INFORMATION 000b - ///{0}. - /// - public static string READ_DISC_INFORMATION_000b_0 { + public static string Trying_READ_LONG_with_size_0 { get { - return ResourceManager.GetString("READ_DISC_INFORMATION_000b_0", resourceCulture); + return ResourceManager.GetString("Trying_READ_LONG_with_size_0", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC INFORMATION 001b - ///{0}. - /// - public static string READ_DISC_STRUCTURE_001b_0 { + public static string Trying_SCSI_READ_LONG_10 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_001b_0", resourceCulture); + return ResourceManager.GetString("Trying_SCSI_READ_LONG_10", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC INFORMATION 010b - ///{0}. - /// - public static string READ_DISC_STRUCTURE_010b_0 { + public static string Trying_SCSI_READ_LONG_16 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_010b_0", resourceCulture); + return ResourceManager.GetString("Trying_SCSI_READ_LONG_16", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: ADIP - ///{0}. - /// - public static string READ_DISC_STRUCTURE_ADIP_0 { + public static string Please_write_media_manufacturer { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_ADIP_0", resourceCulture); + return ResourceManager.GetString("Please_write_media_manufacturer", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: BCA - ///{0}. - /// - public static string READ_DISC_STRUCTURE_BCA_0 { + public static string Media_Type_Name_MMD_140A { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_BCA_0", resourceCulture); + return ResourceManager.GetString("Media_Type_Name_MMD_140A", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Cartridge Status - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Cartridge_Status_0 { + public static string Media_Type_Name_MDW_60 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Cartridge_Status_0", resourceCulture); + return ResourceManager.GetString("Media_Type_Name_MDW_60", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: CMI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_CMI_0 { + public static string Media_Type_Name_MDW_74 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_CMI_0", resourceCulture); + return ResourceManager.GetString("Media_Type_Name_MDW_74", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: DCB - ///{0}. - /// - public static string READ_DISC_STRUCTURE_DCB_0 { + public static string Media_Type_Name_MDW_80 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_DCB_0", resourceCulture); + return ResourceManager.GetString("Media_Type_Name_MDW_80", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: DDS - ///{0}. - /// - public static string READ_DISC_STRUCTURE_DDS_0 { + public static string Media_Type_Name_MiniDisc { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_DDS_0", resourceCulture); + return ResourceManager.GetString("Media_Type_Name_MiniDisc", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: DI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_DI_0 { + public static string Unknown_device_type { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_DI_0", resourceCulture); + return ResourceManager.GetString("Unknown_device_type", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Disc Key - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Disc_Key_0 { + public static string Device_supports_MCPT_Command_Set { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Disc_Key_0", resourceCulture); + return ResourceManager.GetString("Device_supports_MCPT_Command_Set", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: DMI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_DMI_0 { + public static string Device_reports_incorrect_media_card_type { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_DMI_0", resourceCulture); + return ResourceManager.GetString("Device_reports_incorrect_media_card_type", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: DVD AACS - ///{0}. - /// - public static string READ_DISC_STRUCTURE_DVD_AACS_0 { + public static string Device_contains_SD_card { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_DVD_AACS_0", resourceCulture); + return ResourceManager.GetString("Device_contains_SD_card", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: DVD-R Media ID - ///{0}. - /// - public static string READ_DISC_STRUCTURE_DVD_R_Media_ID_0 { + public static string Device_contains_MMC { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_DVD_R_Media_ID_0", resourceCulture); + return ResourceManager.GetString("Device_contains_MMC", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: DVD-R PFI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_DVD_R_PFI_0 { + public static string Device_contains_SDIO_card { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_DVD_R_PFI_0", resourceCulture); + return ResourceManager.GetString("Device_contains_SDIO_card", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: HD DVD CMI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_HD_DVD_CMI_0 { + public static string Device_contains_SM_card { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_HD_DVD_CMI_0", resourceCulture); + return ResourceManager.GetString("Device_contains_SM_card", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: HD DVD-R Medium Status - ///{0}. - /// - public static string READ_DISC_STRUCTURE_HD_DVD_R_Medium_Status { + public static string Device_contains_unknown_media_card_type_0 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_HD_DVD_R_Medium_Status", resourceCulture); + return ResourceManager.GetString("Device_contains_unknown_media_card_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Jump Interval Size - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Jump_Interval_Size_0 { + public static string Media_card_is_write_protected { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Jump_Interval_Size_0", resourceCulture); + return ResourceManager.GetString("Media_card_is_write_protected", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Last-Out Border RMD - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Last_Out_Border_RMD_0 { + public static string Card_specific_data_0 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Last_Out_Border_RMD_0", resourceCulture); + return ResourceManager.GetString("Card_specific_data_0", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Last RMD - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Last_RMD_0 { + public static string Device_identified_as_0 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Last_RMD_0", resourceCulture); + return ResourceManager.GetString("Device_identified_as_0", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Layer Capacity - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Layer_Capacity_0 { + public static string ASCII_Page_0_1 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Layer_Capacity_0", resourceCulture); + return ResourceManager.GetString("ASCII_Page_0_1", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Manual Layer Jump Start LBA - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Manual_Layer_Jump_Start_LBA_0 { + public static string Unit_Serial_Number_0 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Manual_Layer_Jump_Start_LBA_0", resourceCulture); + return ResourceManager.GetString("Unit_Serial_Number_0", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Medium Status - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Medium_Status_0 { + public static string ASCII_implemented_operating_definitions_0 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Medium_Status_0", resourceCulture); + return ResourceManager.GetString("ASCII_implemented_operating_definitions_0", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Middle Zone Start - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Middle_Zone_Start_0 { + public static string Manufacturer_assigned_Serial_Number_0 { get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Middle_Zone_Start_0", resourceCulture); + return ResourceManager.GetString("Manufacturer_assigned_Serial_Number_0", resourceCulture); } } - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: PAC - ///{0}. - /// - public static string READ_DISC_STRUCTURE_PAC_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_PAC_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: PFI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_PFI_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_PFI_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Pre-Recorded Info - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Pre_Recorded_Info_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Pre_Recorded_Info_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Raw DFL - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Raw_DFL_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Raw_DFL_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Recognized Format Layers - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Recognized_Format_Layers_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Recognized_Format_Layers_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Remap Anchor Point - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Remap_Anchor_Point_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Remap_Anchor_Point_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: SAI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_SAI_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_SAI_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Sector CMI - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Sector_CMI_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Sector_CMI_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ DISC STRUCTURE: Write Protection Status - ///{0}. - /// - public static string READ_DISC_STRUCTURE_Write_Protection_Status_0 { - get { - return ResourceManager.GetString("READ_DISC_STRUCTURE_Write_Protection_Status_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ error: - ///{0}. - /// - public static string READ_error_0 { - get { - return ResourceManager.GetString("READ_error_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ FULL TOC failed.... - /// - public static string READ_FULL_TOC_failed { - get { - return ResourceManager.GetString("READ_FULL_TOC_failed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ MEDIA SERIAL NUMBER - ///{0}. - /// - public static string READ_MEDIA_SERIAL_NUMBER_0 { - get { - return ResourceManager.GetString("READ_MEDIA_SERIAL_NUMBER_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TOC/PMA/ATIP: ATIP - ///{0}. - /// - public static string READ_TOC_PMA_ATIP_ATIP_0 { - get { - return ResourceManager.GetString("READ_TOC_PMA_ATIP_ATIP_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TOC/PMA/ATIP: CD-TEXT - ///{0}. - /// - public static string READ_TOC_PMA_ATIP_CD_TEXT_0 { - get { - return ResourceManager.GetString("READ_TOC_PMA_ATIP_CD_TEXT_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TOC/PMA/ATIP: PMA - ///{0}. - /// - public static string READ_TOC_PMA_ATIP_PMA_0 { - get { - return ResourceManager.GetString("READ_TOC_PMA_ATIP_PMA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TOC/PMA/ATIP: Raw TOC - ///{0}. - /// - public static string READ_TOC_PMA_ATIP_Raw_TOC_0 { - get { - return ResourceManager.GetString("READ_TOC_PMA_ATIP_Raw_TOC_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TOC/PMA/ATIP: Session info - ///{0}. - /// - public static string READ_TOC_PMA_ATIP_Session_Info_0 { - get { - return ResourceManager.GetString("READ_TOC_PMA_ATIP_Session_Info_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to READ TOC/PMA/ATIP: TOC - ///{0}. - /// - public static string READ_TOC_PMA_ATIP_TOC_0 { - get { - return ResourceManager.GetString("READ_TOC_PMA_ATIP_TOC_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading {0} raw bytes ({1} cooked bytes) per sector.. - /// - public static string Reading_0_raw_bytes_1_cooked_bytes_per_sector { - get { - return ResourceManager.GetString("Reading_0_raw_bytes_1_cooked_bytes_per_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading {0} sectors at a time.. - /// - public static string Reading_0_sectors_at_a_time { - get { - return ResourceManager.GetString("Reading_0_sectors_at_a_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading {0} sectors at a time using OS buffered reads.. - /// - public static string Reading_0_sectors_at_a_time_using_OS_buffered_reads { - get { - return ResourceManager.GetString("Reading_0_sectors_at_a_time_using_OS_buffered_reads", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading {0} sectors using sequential single commands.. - /// - public static string Reading_0_sectors_using_sequential_single_commands { - get { - return ResourceManager.GetString("Reading_0_sectors_using_sequential_single_commands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading ADdress In Pregroove.. - /// - public static string Reading_ADdress_In_Pregroove { - get { - return ResourceManager.GetString("Reading_ADdress_In_Pregroove", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading ATIP. - /// - public static string Reading_ATIP { - get { - return ResourceManager.GetString("Reading_ATIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading block {0} ({1}). - /// - public static string Reading_block_0_1 { - get { - return ResourceManager.GetString("Reading_block_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Burst Cutting Area.. - /// - public static string Reading_Burst_Cutting_Area { - get { - return ResourceManager.GetString("Reading_Burst_Cutting_Area", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading byte {0} of {1} ({2}). - /// - public static string Reading_byte_0_of_1_2 { - get { - return ResourceManager.GetString("Reading_byte_0_of_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading CD-Text from Lead-In. - /// - public static string Reading_CD_Text_from_Lead_In { - get { - return ResourceManager.GetString("Reading_CD_Text_from_Lead_In", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading CID. - /// - public static string Reading_CID { - get { - return ResourceManager.GetString("Reading_CID", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading CSD. - /// - public static string Reading_CSD { - get { - return ResourceManager.GetString("Reading_CSD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading cylinder {0} head {1} sector {2} ({3}). - /// - public static string Reading_cylinder_0_head_1_sector_2_3 { - get { - return ResourceManager.GetString("Reading_cylinder_0_head_1_sector_2_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Disc Control Blocks.. - /// - public static string Reading_Disc_Control_Blocks { - get { - return ResourceManager.GetString("Reading_Disc_Control_Blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Disc Definition Structure.. - /// - public static string Reading_Disc_Definition_Structure { - get { - return ResourceManager.GetString("Reading_Disc_Definition_Structure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Disc Description Structure.. - /// - public static string Reading_Disc_Description_Structure { - get { - return ResourceManager.GetString("Reading_Disc_Description_Structure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Disc Information. - /// - public static string Reading_Disc_Information { - get { - return ResourceManager.GetString("Reading_Disc_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading disc key.. - /// - public static string Reading_disc_key { - get { - return ResourceManager.GetString("Reading_disc_key", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Disc Manufacturing Information. - /// - public static string Reading_Disc_Manufacturing_Information { - get { - return ResourceManager.GetString("Reading_Disc_Manufacturing_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Extended CSD. - /// - public static string Reading_Extended_CSD { - get { - return ResourceManager.GetString("Reading_Extended_CSD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading FAT.... - /// - public static string Reading_FAT { - get { - return ResourceManager.GetString("Reading_FAT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading first track pregap. - /// - public static string Reading_first_track_pregap { - get { - return ResourceManager.GetString("Reading_first_track_pregap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading full TOC. - /// - public static string Reading_full_TOC { - get { - return ResourceManager.GetString("Reading_full_TOC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading game partition.. - /// - public static string Reading_game_partition { - get { - return ResourceManager.GetString("Reading_game_partition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA {0} of {1}. - /// - public static string Reading_LBA_0_of_1 { - get { - return ResourceManager.GetString("Reading_LBA_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 100000... . - /// - public static string Reading_LBA_100000 { - get { - return ResourceManager.GetString("Reading_LBA_100000", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 100000 as audio... . - /// - public static string Reading_LBA_100000_as_audio { - get { - return ResourceManager.GetString("Reading_LBA_100000_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 100000 as audio with PQ subchannel... . - /// - public static string Reading_LBA_100000_as_audio_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_100000_as_audio_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 100000 as audio with RW subchannel... . - /// - public static string Reading_LBA_100000_as_audio_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_100000_as_audio_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 100000 with PQ subchannel... . - /// - public static string Reading_LBA_100000_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_100000_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 100000 with RW subchannel... . - /// - public static string Reading_LBA_100000_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_100000_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 400000... . - /// - public static string Reading_LBA_400000 { - get { - return ResourceManager.GetString("Reading_LBA_400000", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 400000 as audio... . - /// - public static string Reading_LBA_400000_as_audio { - get { - return ResourceManager.GetString("Reading_LBA_400000_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 400000 as audio with PQ subchannel... . - /// - public static string Reading_LBA_400000_as_audio_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_400000_as_audio_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 400000 as audio with RW subchannel... . - /// - public static string Reading_LBA_400000_as_audio_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_400000_as_audio_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 400000 with PQ subchannel... . - /// - public static string Reading_LBA_400000_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_400000_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 400000 with RW subchannel... . - /// - public static string Reading_LBA_400000_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_400000_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 44990... . - /// - public static string Reading_LBA_44990 { - get { - return ResourceManager.GetString("Reading_LBA_44990", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 44990 as audio... . - /// - public static string Reading_LBA_44990_as_audio { - get { - return ResourceManager.GetString("Reading_LBA_44990_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 44990 as audio with PQ subchannel... . - /// - public static string Reading_LBA_44990_as_audio_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_44990_as_audio_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 44990 as audio with RW subchannel... . - /// - public static string Reading_LBA_44990_as_audio_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_44990_as_audio_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 44990 with PQ subchannel... . - /// - public static string Reading_LBA_44990_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_44990_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 44990 with RW subchannel... . - /// - public static string Reading_LBA_44990_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_44990_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 45000... . - /// - public static string Reading_LBA_45000 { - get { - return ResourceManager.GetString("Reading_LBA_45000", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 45000 as audio... . - /// - public static string Reading_LBA_45000_as_audio { - get { - return ResourceManager.GetString("Reading_LBA_45000_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 45000 as audio with PQ subchannel... . - /// - public static string Reading_LBA_45000_as_audio_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_45000_as_audio_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 45000 as audio with RW subchannel... . - /// - public static string Reading_LBA_45000_as_audio_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_45000_as_audio_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 45000 with PQ subchannel... . - /// - public static string Reading_LBA_45000_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_45000_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 45000 with RW subchannel... . - /// - public static string Reading_LBA_45000_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_45000_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 450000... . - /// - public static string Reading_LBA_450000 { - get { - return ResourceManager.GetString("Reading_LBA_450000", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 450000 as audio... . - /// - public static string Reading_LBA_450000_as_audio { - get { - return ResourceManager.GetString("Reading_LBA_450000_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 450000 as audio with PQ subchannel... . - /// - public static string Reading_LBA_450000_as_audio_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_450000_as_audio_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 450000 as audio with RW subchannel... . - /// - public static string Reading_LBA_450000_as_audio_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_450000_as_audio_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 450000 with PQ subchannel... . - /// - public static string Reading_LBA_450000_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_450000_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 450000 with RW subchannel... . - /// - public static string Reading_LBA_450000_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_450000_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 50000... . - /// - public static string Reading_LBA_50000 { - get { - return ResourceManager.GetString("Reading_LBA_50000", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 50000 as audio... . - /// - public static string Reading_LBA_50000_as_audio { - get { - return ResourceManager.GetString("Reading_LBA_50000_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 50000 as audio with PQ subchannel... . - /// - public static string Reading_LBA_50000_as_audio_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_50000_as_audio_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 50000 as audio with RW subchannel... . - /// - public static string Reading_LBA_50000_as_audio_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_50000_as_audio_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 50000 with PQ subchannel... . - /// - public static string Reading_LBA_50000_with_PQ_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_50000_with_PQ_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 50000 with RW subchannel... . - /// - public static string Reading_LBA_50000_with_RW_subchannel { - get { - return ResourceManager.GetString("Reading_LBA_50000_with_RW_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 0... . - /// - public static string Reading_LBA_zero { - get { - return ResourceManager.GetString("Reading_LBA_zero", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading LBA 0 as audio (scrambled)... . - /// - public static string Reading_LBA_zero_as_audio_scrambled { - get { - return ResourceManager.GetString("Reading_LBA_zero_as_audio_scrambled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Lead-in Copyright Information.. - /// - public static string Reading_Lead_in_Copyright_Information { - get { - return ResourceManager.GetString("Reading_Lead_in_Copyright_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading lead-outs. - /// - public static string Reading_lead_outs { - get { - return ResourceManager.GetString("Reading_lead_outs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Media Identifier.. - /// - public static string Reading_Media_Identifier { - get { - return ResourceManager.GetString("Reading_Media_Identifier", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading OCR. - /// - public static string Reading_OCR { - get { - return ResourceManager.GetString("Reading_OCR", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading PCMCIA CIS.. - /// - public static string Reading_PCMCIA_CIS { - get { - return ResourceManager.GetString("Reading_PCMCIA_CIS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Physical Format Information. - /// - public static string Reading_Physical_Format_Information { - get { - return ResourceManager.GetString("Reading_Physical_Format_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading PMA. - /// - public static string Reading_PMA { - get { - return ResourceManager.GetString("Reading_PMA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Pre-Recorded Information.. - /// - public static string Reading_Pre_Recorded_Information { - get { - return ResourceManager.GetString("Reading_Pre_Recorded_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Recordable Physical Information.. - /// - public static string Reading_Recordable_Physical_Information { - get { - return ResourceManager.GetString("Reading_Recordable_Physical_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading root directory in sector {0}.... - /// - public static string Reading_root_directory_in_sector_0 { - get { - return ResourceManager.GetString("Reading_root_directory_in_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading SCR. - /// - public static string Reading_SCR { - get { - return ResourceManager.GetString("Reading_SCR", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading sector {0} at lead-out ({1}). - /// - public static string Reading_sector_0_at_lead_out_1 { - get { - return ResourceManager.GetString("Reading_sector_0_at_lead_out_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading sector {0} of {1} ({2}). - /// - public static string Reading_sector_0_of_1_2 { - get { - return ResourceManager.GetString("Reading_sector_0_of_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Session Information. - /// - public static string Reading_Session_Information { - get { - return ResourceManager.GetString("Reading_Session_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Spare Area Information.. - /// - public static string Reading_Spare_Area_Information { - get { - return ResourceManager.GetString("Reading_Spare_Area_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading USB descriptors.. - /// - public static string Reading_USB_descriptors { - get { - return ResourceManager.GetString("Reading_USB_descriptors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Video Layer 1.. - /// - public static string Reading_Video_Layer_1 { - get { - return ResourceManager.GetString("Reading_Video_Layer_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Xbox Security Sector.. - /// - public static string Reading_Xbox_Security_Sector { - get { - return ResourceManager.GetString("Reading_Xbox_Security_Sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Real layer break. - /// - public static string Real_layer_break { - get { - return ResourceManager.GetString("Real_layer_break", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Real layer break: {0}. - /// - public static string Real_layer_break_0 { - get { - return ResourceManager.GetString("Real_layer_break_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ################# Remote information #################. - /// - public static string Remote_information { - get { - return ResourceManager.GetString("Remote_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Removable device: {0}. - /// - public static string Removable_device_0 { - get { - return ResourceManager.GetString("Removable_device_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Requesting ATA IDENTIFY DEVICE.. - /// - public static string Requesting_ATA_IDENTIFY_DEVICE { - get { - return ResourceManager.GetString("Requesting_ATA_IDENTIFY_DEVICE", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Requesting ATAPI IDENTIFY PACKET DEVICE.. - /// - public static string Requesting_ATAPI_IDENTIFY_PACKET_DEVICE { - get { - return ResourceManager.GetString("Requesting_ATAPI_IDENTIFY_PACKET_DEVICE", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Requesting MODE SENSE (10).. - /// - public static string Requesting_MODE_SENSE_10 { - get { - return ResourceManager.GetString("Requesting_MODE_SENSE_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Requesting MODE SENSE (6).. - /// - public static string Requesting_MODE_SENSE_6 { - get { - return ResourceManager.GetString("Requesting_MODE_SENSE_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Requesting SCSI INQUIRY.. - /// - public static string Requesting_SCSI_INQUIRY { - get { - return ResourceManager.GetString("Requesting_SCSI_INQUIRY", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a device with firmware version {0} but you're requesting to dump one with firmware version {1}, not continuing.... - /// - public static string Resume_file_different_firmware_revision_not_continuing { - get { - return ResourceManager.GetString("Resume_file_different_firmware_revision_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a device manufactured by {0} but you're requesting to dump one by {1}, not continuing.... - /// - public static string Resume_file_different_manufacturer_not_continuing { - get { - return ResourceManager.GetString("Resume_file_different_manufacturer_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a device model {0} but you're requesting to dump model {1}, not continuing.... - /// - public static string Resume_file_different_model_not_continuing { - get { - return ResourceManager.GetString("Resume_file_different_model_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a device with {0} blocks but you're requesting to dump one with {1} blocks, not continuing.... - /// - public static string Resume_file_different_number_of_blocks_not_continuing { - get { - return ResourceManager.GetString("Resume_file_different_number_of_blocks_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a device with serial {0} but you're requesting to dump one with serial {1}, not continuing.... - /// - public static string Resume_file_different_serial_number_not_continuing { - get { - return ResourceManager.GetString("Resume_file_different_serial_number_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a non removable device but you're requesting to dump a removable device, not continuing.... - /// - public static string Resume_specifies_non_removable_but_device_is_removable { - get { - return ResourceManager.GetString("Resume_specifies_non_removable_but_device_is_removable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a not tape device but you're requesting to dump a tape device, not continuing.... - /// - public static string Resume_specifies_not_tape_but_device_is_tape { - get { - return ResourceManager.GetString("Resume_specifies_not_tape_but_device_is_tape", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a removable device but you're requesting to dump a non removable device, not continuing.... - /// - public static string Resume_specifies_removable_but_device_is_non_removable { - get { - return ResourceManager.GetString("Resume_specifies_removable_but_device_is_non_removable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resume file specifies a tape device but you're requesting to dump a not tape device, not continuing.... - /// - public static string Resume_specifies_tape_but_device_is_not_tape { - get { - return ResourceManager.GetString("Resume_specifies_tape_but_device_is_not_tape", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resuming CHS devices is currently not supported.. - /// - public static string Resuming_CHS_devices_is_currently_not_supported { - get { - return ResourceManager.GetString("Resuming_CHS_devices_is_currently_not_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resuming from block {0}.. - /// - public static string Resuming_from_block_0 { - get { - return ResourceManager.GetString("Resuming_from_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrode partition not recognized, not dumping.... - /// - public static string Retrode_partition_not_recognized_not_dumping { - get { - return ResourceManager.GetString("Retrode_partition_not_recognized_not_dumping", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying sector {0}, pass {1}, forward. - /// - public static string Retrying_sector_0_pass_1_forward { - get { - return ResourceManager.GetString("Retrying_sector_0_pass_1_forward", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying sector {0}, pass {1}, recovering partial data, forward. - /// - public static string Retrying_sector_0_pass_1_recovering_partial_data_forward { - get { - return ResourceManager.GetString("Retrying_sector_0_pass_1_recovering_partial_data_forward", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying sector {0}, pass {1}, recovering partial data, reverse. - /// - public static string Retrying_sector_0_pass_1_recovering_partial_data_reverse { - get { - return ResourceManager.GetString("Retrying_sector_0_pass_1_recovering_partial_data_reverse", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying sector {0}, pass {1}, reverse. - /// - public static string Retrying_sector_0_pass_1_reverse { - get { - return ResourceManager.GetString("Retrying_sector_0_pass_1_reverse", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying sector {0} subchannel, pass {1}, forward. - /// - public static string Retrying_sector_0_subchannel_pass_1_forward { - get { - return ResourceManager.GetString("Retrying_sector_0_subchannel_pass_1_forward", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying sector {0} subchannel, pass {1}, reverse. - /// - public static string Retrying_sector_0_subchannel_pass_1_reverse { - get { - return ResourceManager.GetString("Retrying_sector_0_subchannel_pass_1_reverse", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying title key {0}, pass {1}, forward. - /// - public static string Retrying_title_key_0_pass_1_forward { - get { - return ResourceManager.GetString("Retrying_title_key_0_pass_1_forward", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrying title key {0}, pass {1}, reverse. - /// - public static string Retrying_title_key_0_pass_1_reverse { - get { - return ResourceManager.GetString("Retrying_title_key_0_pass_1_reverse", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rewinding, please wait.... - /// - public static string Rewinding_please_wait { - get { - return ResourceManager.GetString("Rewinding_please_wait", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Running as superuser: No. - /// - public static string Running_as_superuser_No { - get { - return ResourceManager.GetString("Running_as_superuser_No", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Running as superuser: Yes. - /// - public static string Running_as_superuser_Yes { - get { - return ResourceManager.GetString("Running_as_superuser_Yes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Running in {0}-bit. - /// - public static string Running_in_0_bit { - get { - return ResourceManager.GetString("Running_in_0_bit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Saving changes.... - /// - public static string Saving_changes { - get { - return ResourceManager.GetString("Saving_changes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Saving metadata.... - /// - public static string Saving_metadata { - get { - return ResourceManager.GetString("Saving_metadata", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Scanning for {0} blank blocks starting in block {1}. - /// - public static string Scanning_for_0_blank_blocks_starting_in_block_1 { - get { - return ResourceManager.GetString("Scanning_for_0_blank_blocks_starting_in_block_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Scanning for {0} written blocks starting in block {1}. - /// - public static string Scanning_for_0_written_blocks_starting_in_block_1 { - get { - return ResourceManager.GetString("Scanning_for_0_written_blocks_starting_in_block_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Scanning will never be supported on SCSI Streaming Devices. - ///It has no sense to do it, and it will put too much strain on the tape.. - /// - public static string Scanning_never_supported_in_SSC { - get { - return ResourceManager.GetString("Scanning_never_supported_in_SSC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Scanning Xbox discs is not yet supported.. - /// - public static string Scanning_Xbox_discs_is_not_yet_supported { - get { - return ResourceManager.GetString("Scanning_Xbox_discs_is_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SuperCardPro image do not contain same number of heads ({0}) than disk image ({1}), ignoring.... - /// - public static string SCP_image_do_not_same_number_heads_0_disk_image_1_ignoring { - get { - return ResourceManager.GetString("SCP_image_do_not_same_number_heads_0_disk_image_1_ignoring", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SuperCardPro image do not contain same number of tracks ({0}) than disk image ({1}), ignoring.... - /// - public static string SCP_image_do_not_same_number_tracks_0_disk_image_1_ignoring { - get { - return ResourceManager.GetString("SCP_image_do_not_same_number_tracks_0_disk_image_1_ignoring", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCR obtained correctly.... - /// - public static string SCR_obtained_correctly { - get { - return ResourceManager.GetString("SCR_obtained_correctly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI command {0} error: {1}. - /// - public static string SCSI_command_0_error_1 { - get { - return ResourceManager.GetString("SCSI_command_0_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI command {0} error: {1}, {2}.. - /// - public static string SCSI_command_0_error_1_2 { - get { - return ResourceManager.GetString("SCSI_command_0_error_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI command {0} error: SENSE {1} ASC {2:X2}h ASCQ {3:X2}h, {4}.. - /// - public static string SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4 { - get { - return ResourceManager.GetString("SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI command {0} error: SENSE {1} ASC {2:X2}h ASCQ {3:X2}h, {4}, {5}.. - /// - public static string SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4_5 { - get { - return ResourceManager.GetString("SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4_5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI command {0} operating system error: {1}.. - /// - public static string SCSI_command_0_operating_system_error_1 { - get { - return ResourceManager.GetString("SCSI_command_0_operating_system_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI density type: {0}.. - /// - public static string SCSI_density_type_0 { - get { - return ResourceManager.GetString("SCSI_density_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI device type: {0}.. - /// - public static string SCSI_device_type_0 { - get { - return ResourceManager.GetString("SCSI_device_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI error: - ///{0}. - /// - public static string SCSI_error_0 { - get { - return ResourceManager.GetString("SCSI_error_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI floppy mode page present: {0}.. - /// - public static string SCSI_floppy_mode_page_present_0 { - get { - return ResourceManager.GetString("SCSI_floppy_mode_page_present_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]SCSI INQUIRY contained in image:[/]. - /// - public static string SCSI_INQUIRY_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("SCSI_INQUIRY_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI medium type: {0}.. - /// - public static string SCSI_medium_type_0 { - get { - return ResourceManager.GetString("SCSI_medium_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]SCSI MODE SENSE (10) contained in image:[/]. - /// - public static string SCSI_MODE_SENSE_10_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("SCSI_MODE_SENSE_10_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]SCSI MODE SENSE (6) contained in image:[/]. - /// - public static string SCSI_MODE_SENSE_6_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("SCSI_MODE_SENSE_6_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI reading LBA {0} error: {1}. - /// - public static string SCSI_reading_LBA_0_error_1 { - get { - return ResourceManager.GetString("SCSI_reading_LBA_0_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI reading LBA {0} error: {1}, {2}.. - /// - public static string SCSI_reading_LBA_0_error_1_2 { - get { - return ResourceManager.GetString("SCSI_reading_LBA_0_error_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI reading LBA {0} error: SENSE {1} ASC {2:X2}h ASCQ {3:X2}h, {4}.. - /// - public static string SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4 { - get { - return ResourceManager.GetString("SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI reading LBA {0} error: SENSE {1} ASC {2:X2}h ASCQ {3:X2}h, {4}, {5}.. - /// - public static string SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4_5 { - get { - return ResourceManager.GetString("SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4_5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SCSI reading LBA {0} operating system error: {1}.. - /// - public static string SCSI_reading_LBA_0_operating_system_error_1 { - get { - return ResourceManager.GetString("SCSI_reading_LBA_0_operating_system_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD/MMC command {0} error: {1}. - /// - public static string SD_MMC_command_0_error_1 { - get { - return ResourceManager.GetString("SD_MMC_command_0_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD/MMC command {0} operating system error: {1}.. - /// - public static string SD_MMC_command_0_operating_system_error_1 { - get { - return ResourceManager.GetString("SD_MMC_command_0_operating_system_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD/MMC reading LBA {0} (block-addressed) error: {1}. - /// - public static string SD_MMC_reading_LBA_0_block_addressed_error_1 { - get { - return ResourceManager.GetString("SD_MMC_reading_LBA_0_block_addressed_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD/MMC reading LBA {0} (block-addressed) operating system error: {1}.. - /// - public static string SD_MMC_reading_LBA_0_block_addressed_operating_system_error_1 { - get { - return ResourceManager.GetString("SD_MMC_reading_LBA_0_block_addressed_operating_system_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD/MMC reading LBA {0} (byte-addressed) error: {1}. - /// - public static string SD_MMC_reading_LBA_0_byte_addressed_error_1 { - get { - return ResourceManager.GetString("SD_MMC_reading_LBA_0_byte_addressed_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SD/MMC reading LBA {0} (byte-addressed) operating system error: {1}.. - /// - public static string SD_MMC_reading_LBA_0_byte_addressed_operating_system_error_1 { - get { - return ResourceManager.GetString("SD_MMC_reading_LBA_0_byte_addressed_operating_system_error_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Second session starts at {0:D2}:{1:D2}:{2:D2}. - /// - public static string Second_session_starts_at_0_1_2 { - get { - return ResourceManager.GetString("Second_session_starts_at_0_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector {0} could not be read.. - /// - public static string Sector_0_could_not_be_read { - get { - return ResourceManager.GetString("Sector_0_could_not_be_read", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sectors {0}. - /// - public static string Sectors_0 { - get { - return ResourceManager.GetString("Sectors_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]SecureDigital CID contained in image:[/]. - /// - public static string SecureDigital_CID_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("SecureDigital_CID_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]SecureDigital CSD contained in image:[/]. - /// - public static string SecureDigital_CSD_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("SecureDigital_CSD_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]SecureDigital OCR contained in image:[/]. - /// - public static string SecureDigital_OCR_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("SecureDigital_OCR_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to [bold]SecureDigital SCR contained in image:[/]. - /// - public static string SecureDigital_SCR_contained_in_image_WithMarkup { - get { - return ResourceManager.GetString("SecureDigital_SCR_contained_in_image_WithMarkup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Seeking to cylinder {0}, head {1}, sector {2}.... - /// - public static string Seeking_to_cylinder_0_head_1_sector_2 { - get { - return ResourceManager.GetString("Seeking_to_cylinder_0_head_1_sector_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Seeking to partition {0}. - /// - public static string Seeking_to_partition_0 { - get { - return ResourceManager.GetString("Seeking_to_partition_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Seeking to sector {0}.... - /// - public static string Seeking_to_sector_0 { - get { - return ResourceManager.GetString("Seeking_to_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Selected output format does not support MemoryStick Duo or UMD, cannot dump.... - /// - public static string Selected_output_format_does_not_support_MemoryStick_Duo_or_UMD_cannot_dump { - get { - return ResourceManager.GetString("Selected_output_format_does_not_support_MemoryStick_Duo_or_UMD_cannot_dump", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Selected PoweRec speed for currently inserted media is {0} Kb/sec ({1}x). - /// - public static string Selected_PoweRec_speed_for_currently_inserted_media_is_0_1 { - get { - return ResourceManager.GetString("Selected_PoweRec_speed_for_currently_inserted_media_is_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sending MODE SELECT to drive (ignore error correction).. - /// - public static string Sending_MODE_SELECT_to_drive_ignore_error_correction { - get { - return ResourceManager.GetString("Sending_MODE_SELECT_to_drive_ignore_error_correction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sending MODE SELECT to drive (return damaged blocks).. - /// - public static string Sending_MODE_SELECT_to_drive_return_damaged_blocks { - get { - return ResourceManager.GetString("Sending_MODE_SELECT_to_drive_return_damaged_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sending MODE SELECT to drive (return device to previous status).. - /// - public static string Sending_MODE_SELECT_to_drive_return_device_to_previous_status { - get { - return ResourceManager.GetString("Sending_MODE_SELECT_to_drive_return_device_to_previous_status", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sending READ FULL TOC to the device.... - /// - public static string Sending_READ_FULL_TOC_to_the_device { - get { - return ResourceManager.GetString("Sending_READ_FULL_TOC_to_the_device", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sense = {0}, Status = 0x{1:X2}, Error = 0x{2:X2}. - /// - public static string Sense_0_Status_1_Error_2 { - get { - return ResourceManager.GetString("Sense_0_Status_1_Error_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sense = {0}, Status = 0x{1:X2}, Error = 0x{2:X2}, Length = {3}. - /// - public static string Sense_0_Status_1_Error_2_Length_3 { - get { - return ResourceManager.GetString("Sense_0_Status_1_Error_2_Length_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sense = {0}. - /// - public static string Sense_equals_0 { - get { - return ResourceManager.GetString("Sense_equals_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Serial number: {0}. - /// - public static string Serial_number_0 { - get { - return ResourceManager.GetString("Serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Server: {0}. - /// - public static string Server_0 { - get { - return ResourceManager.GetString("Server_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Session information. - /// - public static string Session_information { - get { - return ResourceManager.GetString("Session_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting disc Media Catalogue Number to {0}. - /// - public static string Setting_disc_Media_Catalogue_Number_to_0 { - get { - return ResourceManager.GetString("Setting_disc_Media_Catalogue_Number_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting flags for track {0}.... - /// - public static string Setting_flags_for_track_0 { - get { - return ResourceManager.GetString("Setting_flags_for_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting geometry to {0} cylinders, {1} heads, {2} sectors per track. - /// - public static string Setting_geometry_to_0_cylinders_1_heads_2_sectors_per_track { - get { - return ResourceManager.GetString("Setting_geometry_to_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting index {0} for track {1} to LBA {2}.. - /// - public static string Setting_index_0_for_track_1_to_LBA_2 { - get { - return ResourceManager.GetString("Setting_index_0_for_track_1_to_LBA_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting ISRC for track {0} to {1}. - /// - public static string Setting_ISRC_for_track_0_to_1 { - get { - return ResourceManager.GetString("Setting_ISRC_for_track_0_to_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting speed to {0}x.. - /// - public static string Setting_speed_to_0_x { - get { - return ResourceManager.GetString("Setting_speed_to_0_x", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting speed to {0}x for data reading. - /// - public static string Setting_speed_to_0_x_for_data_reading { - get { - return ResourceManager.GetString("Setting_speed_to_0_x_for_data_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting speed to 8x for audio reading.. - /// - public static string Setting_speed_to_8x_for_audio_reading { - get { - return ResourceManager.GetString("Setting_speed_to_8x_for_audio_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting speed to 8x for CD-i Ready reading as audio.. - /// - public static string Setting_speed_to_8x_for_CD_i_Ready_reading_as_audio { - get { - return ResourceManager.GetString("Setting_speed_to_8x_for_CD_i_Ready_reading_as_audio", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting speed to MAX.. - /// - public static string Setting_speed_to_MAX { - get { - return ResourceManager.GetString("Setting_speed_to_MAX", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting speed to MAX for data reading. - /// - public static string Setting_speed_to_MAX_for_data_reading { - get { - return ResourceManager.GetString("Setting_speed_to_MAX_for_data_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Several media tags not supported, continuing.... - /// - public static string Several_media_tags_not_supported_continuing { - get { - return ResourceManager.GetString("Several_media_tags_not_supported_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Several media tags not supported, not continuing.... - /// - public static string Several_media_tags_not_supported_not_continuing { - get { - return ResourceManager.GetString("Several_media_tags_not_supported_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sidecar created in {0}.. - /// - public static string Sidecar_created_in_0 { - get { - return ResourceManager.GetString("Sidecar_created_in_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Skipping {0} blocks from errored block {1}.. - /// - public static string Skipping_0_blocks_from_errored_block_1 { - get { - return ResourceManager.GetString("Skipping_0_blocks_from_errored_block_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Skipping {0} bytes from errored byte {1}.. - /// - public static string Skipping_0_bytes_from_errored_byte_1 { - get { - return ResourceManager.GetString("Skipping_0_bytes_from_errored_byte_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Skipping track {0}. - /// - public static string Skipping_track_0 { - get { - return ResourceManager.GetString("Skipping_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Skipping track {0} due to Plextor firmware bug. - /// - public static string Skipping_track_0_due_to_Plextor_firmware_bug { - get { - return ResourceManager.GetString("Skipping_track_0_due_to_Plextor_firmware_bug", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Slowest speed burst: {0}.. - /// - public static string Slowest_speed_burst_0 { - get { - return ResourceManager.GetString("Slowest_speed_burst_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Solving lead-outs.... - /// - public static string Solving_lead_outs { - get { - return ResourceManager.GetString("Solving_lead_outs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Stack trace: {0}. - /// - public static string Stack_trace_0 { - get { - return ResourceManager.GetString("Stack_trace_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Standard Disc Information. - /// - public static string Standard_Disc_Information { - get { - return ResourceManager.GetString("Standard_Disc_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Start error logging on {0}. - /// - public static string Start_error_logging_on_0 { - get { - return ResourceManager.GetString("Start_error_logging_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Start logging at {0}. - /// - public static string Start_logging_at_0 { - get { - return ResourceManager.GetString("Start_logging_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Start subchannel logging at {0}. - /// - public static string Start_subchannel_logging_at_0 { - get { - return ResourceManager.GetString("Start_subchannel_logging_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Stopping motor.... - /// - public static string Stopping_motor { - get { - return ResourceManager.GetString("Stopping_motor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Subchannel is BCD. - /// - public static string Subchannel_is_BCD { - get { - return ResourceManager.GetString("Subchannel_is_BCD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Subchannel is not BCD. - /// - public static string Subchannel_is_not_BCD { - get { - return ResourceManager.GetString("Subchannel_is_not_BCD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Success!. - /// - public static string Success { - get { - return ResourceManager.GetString("Success", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Summary. - /// - public static string Summary { - get { - return ResourceManager.GetString("Summary", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to System identifier: {0}. - /// - public static string System_identifier_0 { - get { - return ResourceManager.GetString("System_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ################# System information #################. - /// - public static string System_information { - get { - return ResourceManager.GetString("System_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to TapeAlert Supported Flags Bitmap: 0x{0:X16}. - /// public static string TapeAlert_Supported_Flags_Bitmap_0 { get { return ResourceManager.GetString("TapeAlert_Supported_Flags_Bitmap_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Tapes cannot be dumped raw.. - /// - public static string Tapes_cannot_be_dumped_raw { + public static string Automation_Device_Serial_Number_0 { get { - return ResourceManager.GetString("Tapes_cannot_be_dumped_raw", resourceCulture); + return ResourceManager.GetString("Automation_Device_Serial_Number_0", resourceCulture); } } - /// - /// Looks up a localized string similar to The next part of the test will read the whole high density area of a GD-ROM from the smallest known readable sector until the first error happens - ///Do you want to proceed? (Y/N): . - /// - public static string Test_read_whole_high_density_area_proceed_Q { + public static string Data_Transfer_Device_Element_Address_0 { get { - return ResourceManager.GetString("Test_read_whole_high_density_area_proceed_Q", resourceCulture); + return ResourceManager.GetString("Data_Transfer_Device_Element_Address_0", resourceCulture); + } + } + + public static string Found_undecoded_SCSI_VPD_page_0 { + get { + return ResourceManager.GetString("Found_undecoded_SCSI_VPD_page_0", resourceCulture); + } + } + + public static string GET_CONFIGURATION_length_is_0 { + get { + return ResourceManager.GetString("GET_CONFIGURATION_length_is_0", resourceCulture); + } + } + + public static string GET_CONFIGURATION_current_profile_is_0 { + get { + return ResourceManager.GetString("GET_CONFIGURATION_current_profile_is_0", resourceCulture); + } + } + + public static string Feature_0 { + get { + return ResourceManager.GetString("Feature_0", resourceCulture); + } + } + + public static string Found_unknown_feature_code_0 { + get { + return ResourceManager.GetString("Found_unknown_feature_code_0", resourceCulture); + } + } + + public static string GET_CONFIGURATION_returned_no_feature_descriptors { + get { + return ResourceManager.GetString("GET_CONFIGURATION_returned_no_feature_descriptors", resourceCulture); + } + } + + public static string Drive_has_loaded_a_total_of_0_discs { + get { + return ResourceManager.GetString("Drive_has_loaded_a_total_of_0_discs", resourceCulture); + } + } + + public static string Drive_has_spent_0_reading_CDs { + get { + return ResourceManager.GetString("Drive_has_spent_0_reading_CDs", resourceCulture); + } + } + + public static string Drive_has_spent_0_writing_CDs { + get { + return ResourceManager.GetString("Drive_has_spent_0_writing_CDs", resourceCulture); + } + } + + public static string Drive_has_spent_0_reading_DVDs { + get { + return ResourceManager.GetString("Drive_has_spent_0_reading_DVDs", resourceCulture); + } + } + + public static string Drive_has_spent_0_writing_DVDs { + get { + return ResourceManager.GetString("Drive_has_spent_0_writing_DVDs", resourceCulture); + } + } + + public static string Drive_supports_PoweRec_is_enabled_and_recommends_0 { + get { + return ResourceManager.GetString("Drive_supports_PoweRec_is_enabled_and_recommends_0", resourceCulture); + } + } + + public static string Drive_supports_PoweRec_and_has_it_enabled { + get { + return ResourceManager.GetString("Drive_supports_PoweRec_and_has_it_enabled", resourceCulture); + } + } + + public static string Selected_PoweRec_speed_for_currently_inserted_media_is_0_1 { + get { + return ResourceManager.GetString("Selected_PoweRec_speed_for_currently_inserted_media_is_0_1", resourceCulture); + } + } + + public static string Maximum_PoweRec_speed_for_currently_inserted_media_is_0_1 { + get { + return ResourceManager.GetString("Maximum_PoweRec_speed_for_currently_inserted_media_is_0_1", resourceCulture); + } + } + + public static string Last_used_PoweRec_was_0_1 { + get { + return ResourceManager.GetString("Last_used_PoweRec_was_0_1", resourceCulture); + } + } + + public static string Drive_supports_PoweRec_and_has_it_disabled { + get { + return ResourceManager.GetString("Drive_supports_PoweRec_and_has_it_disabled", resourceCulture); + } + } + + public static string Drive_supports_Plextor_SilentMode { + get { + return ResourceManager.GetString("Drive_supports_Plextor_SilentMode", resourceCulture); + } + } + + public static string Plextor_SilentMode_is_enabled { + get { + return ResourceManager.GetString("Plextor_SilentMode_is_enabled", resourceCulture); + } + } + + public static string Access_time_is_slow { + get { + return ResourceManager.GetString("Access_time_is_slow", resourceCulture); + } + } + + public static string Access_time_is_fast { + get { + return ResourceManager.GetString("Access_time_is_fast", resourceCulture); + } + } + + public static string CD_read_speed_limited_to_0 { + get { + return ResourceManager.GetString("CD_read_speed_limited_to_0", resourceCulture); + } + } + + public static string DVD_read_speed_limited_to_0 { + get { + return ResourceManager.GetString("DVD_read_speed_limited_to_0", resourceCulture); + } + } + + public static string CD_write_speed_limited_to_0 { + get { + return ResourceManager.GetString("CD_write_speed_limited_to_0", resourceCulture); + } + } + + public static string Drive_supports_Plextor_GigaRec { + get { + return ResourceManager.GetString("Drive_supports_Plextor_GigaRec", resourceCulture); + } + } + + public static string Drive_supports_Plextor_SecuRec { + get { + return ResourceManager.GetString("Drive_supports_Plextor_SecuRec", resourceCulture); + } + } + + public static string Drive_supports_Plextor_SpeedRead { + get { + return ResourceManager.GetString("Drive_supports_Plextor_SpeedRead", resourceCulture); + } + } + + public static string Drive_supports_Plextor_SpeedRead_and_has_it_enabled { + get { + return ResourceManager.GetString("Drive_supports_Plextor_SpeedRead_and_has_it_enabled", resourceCulture); + } + } + + public static string Drive_supports_hiding_CDRs_and_forcing_single_session { + get { + return ResourceManager.GetString("Drive_supports_hiding_CDRs_and_forcing_single_session", resourceCulture); + } + } + + public static string Drive_currently_hides_CDRs { + get { + return ResourceManager.GetString("Drive_currently_hides_CDRs", resourceCulture); + } + } + + public static string Drive_currently_forces_single_session { + get { + return ResourceManager.GetString("Drive_currently_forces_single_session", resourceCulture); + } + } + + public static string Drive_supports_Plextor_VariRec { + get { + return ResourceManager.GetString("Drive_supports_Plextor_VariRec", resourceCulture); + } + } + + public static string Drive_supports_Plextor_VariRec_for_DVDs { + get { + return ResourceManager.GetString("Drive_supports_Plextor_VariRec_for_DVDs", resourceCulture); + } + } + + public static string Drive_supports_bitsetting_DVD_R_book_type { + get { + return ResourceManager.GetString("Drive_supports_bitsetting_DVD_R_book_type", resourceCulture); + } + } + + public static string Drive_supports_bitsetting_DVD_R_DL_book_type { + get { + return ResourceManager.GetString("Drive_supports_bitsetting_DVD_R_DL_book_type", resourceCulture); + } + } + + public static string Drive_supports_test_writing_DVD_Plus { + get { + return ResourceManager.GetString("Drive_supports_test_writing_DVD_Plus", resourceCulture); + } + } + + public static string Can_do_challenge_response_with_Xbox_discs { + get { + return ResourceManager.GetString("Can_do_challenge_response_with_Xbox_discs", resourceCulture); + } + } + + public static string Can_read_and_decrypt_SS_from_Xbox_discs { + get { + return ResourceManager.GetString("Can_read_and_decrypt_SS_from_Xbox_discs", resourceCulture); + } + } + + public static string Can_set_xtreme_unlock_state_with_Xbox_discs { + get { + return ResourceManager.GetString("Can_set_xtreme_unlock_state_with_Xbox_discs", resourceCulture); + } + } + + public static string Can_set_wxripper_unlock_state_with_Xbox_discs { + get { + return ResourceManager.GetString("Can_set_wxripper_unlock_state_with_Xbox_discs", resourceCulture); + } + } + + public static string Can_do_challenge_response_with_Xbox_360_discs { + get { + return ResourceManager.GetString("Can_do_challenge_response_with_Xbox_360_discs", resourceCulture); + } + } + + public static string Can_read_and_decrypt_SS_from_Xbox_360_discs { + get { + return ResourceManager.GetString("Can_read_and_decrypt_SS_from_Xbox_360_discs", resourceCulture); + } + } + + public static string Can_set_xtreme_unlock_state_with_Xbox_360_discs { + get { + return ResourceManager.GetString("Can_set_xtreme_unlock_state_with_Xbox_360_discs", resourceCulture); + } + } + + public static string Can_set_wxripper_unlock_state_with_Xbox_360_discs { + get { + return ResourceManager.GetString("Can_set_wxripper_unlock_state_with_Xbox_360_discs", resourceCulture); + } + } + + public static string Can_set_Kreon_locked_state { + get { + return ResourceManager.GetString("Can_set_Kreon_locked_state", resourceCulture); + } + } + + public static string Kreon_Can_skip_read_errors { + get { + return ResourceManager.GetString("Kreon_Can_skip_read_errors", resourceCulture); + } + } + + public static string Block_limits_for_device { + get { + return ResourceManager.GetString("Block_limits_for_device", resourceCulture); + } + } + + public static string Generating_subchannels { + get { + return ResourceManager.GetString("Generating_subchannels", resourceCulture); + } + } + + public static string Writing_metadata_sidecar { + get { + return ResourceManager.GetString("Writing_metadata_sidecar", resourceCulture); + } + } + + public static string Cannot_create_a_sidecar_from_a_directory { + get { + return ResourceManager.GetString("Cannot_create_a_sidecar_from_a_directory", resourceCulture); + } + } + + public static string Stack_trace_0 { + get { + return ResourceManager.GetString("Stack_trace_0", resourceCulture); + } + } + + public static string Media_has_0_blocks_of_1_bytes_each_for_a_total_of_2 { + get { + return ResourceManager.GetString("Media_has_0_blocks_of_1_bytes_each_for_a_total_of_2", resourceCulture); + } + } + + public static string Xbox_DMI { + get { + return ResourceManager.GetString("Xbox_DMI", resourceCulture); + } + } + + public static string Xbox_360_DMI { + get { + return ResourceManager.GetString("Xbox_360_DMI", resourceCulture); + } + } + + public static string Lead_In_CMI { + get { + return ResourceManager.GetString("Lead_In_CMI", resourceCulture); + } + } + + public static string Medium_Status { + get { + return ResourceManager.GetString("Medium_Status", resourceCulture); + } + } + + public static string DVD_RW_Pre_Recorded_Information { + get { + return ResourceManager.GetString("DVD_RW_Pre_Recorded_Information", resourceCulture); + } + } + + public static string DVD_RW_PFI { + get { + return ResourceManager.GetString("DVD_RW_PFI", resourceCulture); + } + } + + public static string Bluray_Disc_Information { + get { + return ResourceManager.GetString("Bluray_Disc_Information", resourceCulture); + } + } + + public static string Bluray_Burst_Cutting_Area { + get { + return ResourceManager.GetString("Bluray_Burst_Cutting_Area", resourceCulture); + } + } + + public static string Bluray_Disc_Definition_Structure { + get { + return ResourceManager.GetString("Bluray_Disc_Definition_Structure", resourceCulture); + } + } + + public static string Bluray_Cartridge_Status { + get { + return ResourceManager.GetString("Bluray_Cartridge_Status", resourceCulture); + } + } + + public static string Bluray_Spare_Area_Information { + get { + return ResourceManager.GetString("Bluray_Spare_Area_Information", resourceCulture); + } + } + + public static string Track_Resources_Information { + get { + return ResourceManager.GetString("Track_Resources_Information", resourceCulture); + } + } + + public static string POW_Resources_Information { + get { + return ResourceManager.GetString("POW_Resources_Information", resourceCulture); + } + } + + public static string Standard_Disc_Information { + get { + return ResourceManager.GetString("Standard_Disc_Information", resourceCulture); + } + } + + public static string Session_information { + get { + return ResourceManager.GetString("Session_information", resourceCulture); + } + } + + public static string Raw_TOC { + get { + return ResourceManager.GetString("Raw_TOC", resourceCulture); + } + } + + public static string PMA { + get { + return ResourceManager.GetString("PMA", resourceCulture); + } + } + + public static string CD_TEXT_on_Lead_In { + get { + return ResourceManager.GetString("CD_TEXT_on_Lead_In", resourceCulture); + } + } + + public static string MCN { + get { + return ResourceManager.GetString("MCN", resourceCulture); + } + } + + public static string Tracks_0_ISRC { + get { + return ResourceManager.GetString("Tracks_0_ISRC", resourceCulture); + } + } + + public static string Xbox_Security_Sector { + get { + return ResourceManager.GetString("Xbox_Security_Sector", resourceCulture); + } + } + + public static string Video_layer_zero_size { + get { + return ResourceManager.GetString("Video_layer_zero_size", resourceCulture); + } + } + + public static string Video_layer_one_size { + get { + return ResourceManager.GetString("Video_layer_one_size", resourceCulture); + } + } + + public static string Middle_zone_size { + get { + return ResourceManager.GetString("Middle_zone_size", resourceCulture); + } + } + + public static string Game_data_size { + get { + return ResourceManager.GetString("Game_data_size", resourceCulture); + } + } + + public static string Total_size { + get { + return ResourceManager.GetString("Total_size", resourceCulture); + } + } + + public static string Real_layer_break { + get { + return ResourceManager.GetString("Real_layer_break", resourceCulture); + } + } + + public static string Media_Serial_Number { + get { + return ResourceManager.GetString("Media_Serial_Number", resourceCulture); + } + } + + public static string Media_identified_as { + get { + return ResourceManager.GetString("Media_identified_as", resourceCulture); + } + } + + public static string Track_calculations { + get { + return ResourceManager.GetString("Track_calculations", resourceCulture); + } + } + + public static string Offsets { + get { + return ResourceManager.GetString("Offsets", resourceCulture); + } + } + + public static string Drive_reading_offset_not_found_in_database { + get { + return ResourceManager.GetString("Drive_reading_offset_not_found_in_database", resourceCulture); + } + } + + public static string Disc_offset_cannot_be_calculated { + get { + return ResourceManager.GetString("Disc_offset_cannot_be_calculated", resourceCulture); + } + } + + public static string Drive_reading_offset_is_0_bytes_1_samples { + get { + return ResourceManager.GetString("Drive_reading_offset_is_0_bytes_1_samples", resourceCulture); + } + } + + public static string Disc_write_offset_is_unknown { + get { + return ResourceManager.GetString("Disc_write_offset_is_unknown", resourceCulture); + } + } + + public static string Combined_offset_is_0_bytes_1_samples { + get { + return ResourceManager.GetString("Combined_offset_is_0_bytes_1_samples", resourceCulture); + } + } + + public static string Took_a_total_of_0_1_processing_commands { + get { + return ResourceManager.GetString("Took_a_total_of_0_1_processing_commands", resourceCulture); + } + } + + public static string Average_speed_0 { + get { + return ResourceManager.GetString("Average_speed_0", resourceCulture); + } + } + + public static string Fastest_speed_burst_0 { + get { + return ResourceManager.GetString("Fastest_speed_burst_0", resourceCulture); + } + } + + public static string Slowest_speed_burst_0 { + get { + return ResourceManager.GetString("Slowest_speed_burst_0", resourceCulture); + } + } + + public static string Summary { + get { + return ResourceManager.GetString("Summary", resourceCulture); + } + } + + public static string _0_sectors_took_less_than_3_ms { + get { + return ResourceManager.GetString("_0_sectors_took_less_than_3_ms", resourceCulture); + } + } + + public static string _0_sectors_took_less_than_10_ms_but_more_than_3_ms { + get { + return ResourceManager.GetString("_0_sectors_took_less_than_10_ms_but_more_than_3_ms", resourceCulture); + } + } + + public static string _0_sectors_took_less_than_50_ms_but_more_than_10_ms { + get { + return ResourceManager.GetString("_0_sectors_took_less_than_50_ms_but_more_than_10_ms", resourceCulture); + } + } + + public static string _0_sectors_took_less_than_150_ms_but_more_than_50_ms { + get { + return ResourceManager.GetString("_0_sectors_took_less_than_150_ms_but_more_than_50_ms", resourceCulture); + } + } + + public static string _0_sectors_took_less_than_500_ms_but_more_than_150_ms { + get { + return ResourceManager.GetString("_0_sectors_took_less_than_500_ms_but_more_than_150_ms", resourceCulture); + } + } + + public static string _0_sectors_took_more_than_500_ms { + get { + return ResourceManager.GetString("_0_sectors_took_more_than_500_ms", resourceCulture); + } + } + + public static string _0_sectors_could_not_be_read { + get { + return ResourceManager.GetString("_0_sectors_could_not_be_read", resourceCulture); } } - /// - /// Looks up a localized string similar to Testing {0} seeks, longest seek took {1:F3} ms, fastest one took {2:F3} ms. ({3:F3} ms average). - /// public static string Testing_0_seeks_longest_seek_took_1_ms_fastest_one_took_2_ms_3_ms_average { get { return ResourceManager.GetString("Testing_0_seeks_longest_seek_took_1_ms_fastest_one_took_2_ms_3_ms_average", resourceCulture); } } - /// - /// Looks up a localized string similar to The current environment doesn't support the MEDIUM SCAN command, dump will take much longer than normal.. - /// - public static string The_current_environment_doesn_t_support_the_medium_scan_command { + public static string Whole_device { get { - return ResourceManager.GetString("The_current_environment_doesn_t_support_the_medium_scan_command", resourceCulture); + return ResourceManager.GetString("Whole_device", resourceCulture); } } - /// - /// Looks up a localized string similar to WARNING: The drive has returned incorrect Q positioning when calculating pregaps. A best effort has been tried but they may be incorrect.. - /// - public static string The_drive_has_returned_incorrect_Q_positioning_calculating_pregaps { + public static string Device_block_size_is_fixed_at_0_bytes { get { - return ResourceManager.GetString("The_drive_has_returned_incorrect_Q_positioning_calculating_pregaps", resourceCulture); + return ResourceManager.GetString("Device_block_size_is_fixed_at_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to The selected image format does not support tracks.. - /// - public static string The_selected_image_does_not_support_tracks { + public static string Device_maximum_block_size_is_0_bytes { get { - return ResourceManager.GetString("The_selected_image_does_not_support_tracks", resourceCulture); + return ResourceManager.GetString("Device_maximum_block_size_is_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified device cannot be found.. - /// - public static string The_specified_device_cannot_be_found { + public static string Device_does_not_specify_a_maximum_block_size { get { - return ResourceManager.GetString("The_specified_device_cannot_be_found", resourceCulture); + return ResourceManager.GetString("Device_does_not_specify_a_maximum_block_size", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified device is in use by another process.. - /// - public static string The_specified_device_is_in_use_by_another_process { + public static string Device_minimum_block_size_is_0_bytes { get { - return ResourceManager.GetString("The_specified_device_is_in_use_by_another_process", resourceCulture); + return ResourceManager.GetString("Device_minimum_block_size_is_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified format does not support the inserted cartridge.... - /// - public static string The_specified_format_does_not_support_the_inserted_cartridge { + public static string Device_needs_a_block_size_granularity_of_pow_0_1_bytes { get { - return ResourceManager.GetString("The_specified_format_does_not_support_the_inserted_cartridge", resourceCulture); + return ResourceManager.GetString("Device_needs_a_block_size_granularity_of_pow_0_1_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified image format cannot represent optical discs.. - /// - public static string The_specified_image_format_cannot_represent_optical_discs { + public static string Filesystem_type_0 { get { - return ResourceManager.GetString("The_specified_image_format_cannot_represent_optical_discs", resourceCulture); + return ResourceManager.GetString("Filesystem_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified image format cannot represent streaming tapes.. - /// - public static string The_specified_image_format_cannot_represent_streaming_tapes { + public static string Volume_name_0 { get { - return ResourceManager.GetString("The_specified_image_format_cannot_represent_streaming_tapes", resourceCulture); + return ResourceManager.GetString("Volume_name_0", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified image says it contains a block addressable media but at the same time says it does not support them.. - /// - public static string The_specified_image_says_it_contains_a_block_addressable_media_but_at_the_same_time_says_it_does_not_support_them { + public static string Volume_serial_0 { get { - return ResourceManager.GetString("The_specified_image_says_it_contains_a_block_addressable_media_but_at_the_same_ti" + - "me_says_it_does_not_support_them", resourceCulture); + return ResourceManager.GetString("Volume_serial_0", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified image says it contains a byte addressable media but at the same time says it does not support them.. - /// - public static string The_specified_image_says_it_contains_a_byte_addressable_media_but_at_the_same_time_says_it_does_not_support_them { + public static string Application_identifier_0 { get { - return ResourceManager.GetString("The_specified_image_says_it_contains_a_byte_addressable_media_but_at_the_same_tim" + - "e_says_it_does_not_support_them", resourceCulture); + return ResourceManager.GetString("Application_identifier_0", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified image says it contains an optical media but at the same time says it does not support them.. - /// - public static string The_specified_image_says_it_contains_an_optical_media_but_at_the_same_time_says_it_does_not_support_them { + public static string System_identifier_0 { get { - return ResourceManager.GetString("The_specified_image_says_it_contains_an_optical_media_but_at_the_same_time_says_i" + - "t_does_not_support_them", resourceCulture); + return ResourceManager.GetString("System_identifier_0", resourceCulture); + } + } + + public static string Volume_set_identifier_0 { + get { + return ResourceManager.GetString("Volume_set_identifier_0", resourceCulture); + } + } + + public static string Data_preparer_identifier_0 { + get { + return ResourceManager.GetString("Data_preparer_identifier_0", resourceCulture); + } + } + + public static string Publisher_identifier_0 { + get { + return ResourceManager.GetString("Publisher_identifier_0", resourceCulture); + } + } + + public static string Volume_created_on_0 { + get { + return ResourceManager.GetString("Volume_created_on_0", resourceCulture); + } + } + + public static string Volume_effective_from_0 { + get { + return ResourceManager.GetString("Volume_effective_from_0", resourceCulture); + } + } + + public static string Volume_last_modified_on_0 { + get { + return ResourceManager.GetString("Volume_last_modified_on_0", resourceCulture); + } + } + + public static string Volume_expired_on_0 { + get { + return ResourceManager.GetString("Volume_expired_on_0", resourceCulture); + } + } + + public static string Volume_last_backed_up_on_0 { + get { + return ResourceManager.GetString("Volume_last_backed_up_on_0", resourceCulture); + } + } + + public static string Volume_has_0_clusters_of_1_bytes_each_total_of_2_bytes { + get { + return ResourceManager.GetString("Volume_has_0_clusters_of_1_bytes_each_total_of_2_bytes", resourceCulture); + } + } + + public static string Volume_has_0_clusters_free_1 { + get { + return ResourceManager.GetString("Volume_has_0_clusters_free_1", resourceCulture); + } + } + + public static string Volume_contains_0_files { + get { + return ResourceManager.GetString("Volume_contains_0_files", resourceCulture); + } + } + + public static string Filesystem_contains_boot_code { + get { + return ResourceManager.GetString("Filesystem_contains_boot_code", resourceCulture); + } + } + + public static string Filesystem_has_not_been_unmounted_correctly_or_contains_errors { + get { + return ResourceManager.GetString("Filesystem_has_not_been_unmounted_correctly_or_contains_errors", resourceCulture); + } + } + + public static string Image_without_headers_is_0_bytes_long { + get { + return ResourceManager.GetString("Image_without_headers_is_0_bytes_long", resourceCulture); + } + } + + public static string Contains_a_media_of_0_sectors_with_a_maximum_sector_size_of_1_bytes_etc { + get { + return ResourceManager.GetString("Contains_a_media_of_0_sectors_with_a_maximum_sector_size_of_1_bytes_etc", resourceCulture); + } + } + + public static string Contains_a_media_of_type_0_and_XML_type_1 { + get { + return ResourceManager.GetString("Contains_a_media_of_type_0_and_XML_type_1", resourceCulture); + } + } + + public static string Was_created_with_0_version_1 { + get { + return ResourceManager.GetString("Was_created_with_0_version_1", resourceCulture); + } + } + + public static string Was_created_with_0 { + get { + return ResourceManager.GetString("Was_created_with_0", resourceCulture); + } + } + + public static string Created_by_0 { + get { + return ResourceManager.GetString("Created_by_0", resourceCulture); + } + } + + public static string Created_on_0 { + get { + return ResourceManager.GetString("Created_on_0", resourceCulture); + } + } + + public static string Last_modified_on_0 { + get { + return ResourceManager.GetString("Last_modified_on_0", resourceCulture); + } + } + + public static string Media_is_number_0_on_a_set_of_1_medias { + get { + return ResourceManager.GetString("Media_is_number_0_on_a_set_of_1_medias", resourceCulture); + } + } + + public static string Media_manufacturer_0 { + get { + return ResourceManager.GetString("Media_manufacturer_0", resourceCulture); + } + } + + public static string Media_serial_number_0 { + get { + return ResourceManager.GetString("Media_serial_number_0", resourceCulture); + } + } + + public static string Drive_serial_number_0 { + get { + return ResourceManager.GetString("Drive_serial_number_0", resourceCulture); + } + } + + public static string Title_Session { + get { + return ResourceManager.GetString("Title_Session", resourceCulture); + } + } + + public static string Title_Start { + get { + return ResourceManager.GetString("Title_Start", resourceCulture); + } + } + + public static string Title_First_track { + get { + return ResourceManager.GetString("Title_First_track", resourceCulture); + } + } + + public static string Title_Last_track { + get { + return ResourceManager.GetString("Title_Last_track", resourceCulture); + } + } + + public static string Title_End { + get { + return ResourceManager.GetString("Title_End", resourceCulture); + } + } + + public static string Title_Track { + get { + return ResourceManager.GetString("Title_Track", resourceCulture); + } + } + + public static string Title_Bps { + get { + return ResourceManager.GetString("Title_Bps", resourceCulture); + } + } + + public static string Title_Raw_bps { + get { + return ResourceManager.GetString("Title_Raw_bps", resourceCulture); + } + } + + public static string Title_Subchannel { + get { + return ResourceManager.GetString("Title_Subchannel", resourceCulture); + } + } + + public static string Title_Pregap { + get { + return ResourceManager.GetString("Title_Pregap", resourceCulture); + } + } + + public static string Title_CompactDisc { + get { + return ResourceManager.GetString("Title_CompactDisc", resourceCulture); + } + } + + public static string Title_DVD_HD_DVD { + get { + return ResourceManager.GetString("Title_DVD_HD_DVD", resourceCulture); + } + } + + public static string Title_DVD_Plus_Dash_R_W { + get { + return ResourceManager.GetString("Title_DVD_Plus_Dash_R_W", resourceCulture); + } + } + + public static string Title_Blu_ray { + get { + return ResourceManager.GetString("Title_Blu_ray", resourceCulture); + } + } + + public static string Title_Xbox { + get { + return ResourceManager.GetString("Title_Xbox", resourceCulture); + } + } + + public static string Title_MMC { + get { + return ResourceManager.GetString("Title_MMC", resourceCulture); + } + } + + public static string Title_SSC { + get { + return ResourceManager.GetString("Title_SSC", resourceCulture); + } + } + + public static string Title_DVD { + get { + return ResourceManager.GetString("Title_DVD", resourceCulture); + } + } + + public static string GD_ROM_dump_support_is_not_yet_implemented { + get { + return ResourceManager.GetString("GD_ROM_dump_support_is_not_yet_implemented", resourceCulture); + } + } + + public static string GD_ROM_scan_support_is_not_yet_implemented { + get { + return ResourceManager.GetString("GD_ROM_scan_support_is_not_yet_implemented", resourceCulture); + } + } + + public static string Scanning_Xbox_discs_is_not_yet_supported { + get { + return ResourceManager.GetString("Scanning_Xbox_discs_is_not_yet_supported", resourceCulture); + } + } + + public static string Partition_name_0 { + get { + return ResourceManager.GetString("Partition_name_0", resourceCulture); + } + } + + public static string Partition_type_0 { + get { + return ResourceManager.GetString("Partition_type_0", resourceCulture); + } + } + + public static string Partition_start_sector_0_byte_1 { + get { + return ResourceManager.GetString("Partition_start_sector_0_byte_1", resourceCulture); + } + } + + public static string Partition_length_0_sectors_1_bytes { + get { + return ResourceManager.GetString("Partition_length_0_sectors_1_bytes", resourceCulture); + } + } + + public static string Title_Partition_description { + get { + return ResourceManager.GetString("Title_Partition_description", resourceCulture); + } + } + + public static string Drive_identifies_as_Apple_OEM_drive { + get { + return ResourceManager.GetString("Drive_identifies_as_Apple_OEM_drive", resourceCulture); + } + } + + public static string _0_sectors { + get { + return ResourceManager.GetString("_0_sectors", resourceCulture); + } + } + + public static string Aborting { + get { + return ResourceManager.GetString("Aborting", resourceCulture); + } + } + + public static string Setting_speed_to_8x_for_CD_i_Ready_reading_as_audio { + get { + return ResourceManager.GetString("Setting_speed_to_8x_for_CD_i_Ready_reading_as_audio", resourceCulture); + } + } + + public static string Aborted { + get { + return ResourceManager.GetString("Aborted", resourceCulture); + } + } + + public static string Reading_sector_0_of_1_2 { + get { + return ResourceManager.GetString("Reading_sector_0_of_1_2", resourceCulture); + } + } + + public static string Adding_CD_i_Ready_hole_from_LBA_0_to_1_inclusive { + get { + return ResourceManager.GetString("Adding_CD_i_Ready_hole_from_LBA_0_to_1_inclusive", resourceCulture); + } + } + + public static string Setting_speed_to_8x_for_audio_reading { + get { + return ResourceManager.GetString("Setting_speed_to_8x_for_audio_reading", resourceCulture); + } + } + + public static string Setting_speed_to_MAX_for_data_reading { + get { + return ResourceManager.GetString("Setting_speed_to_MAX_for_data_reading", resourceCulture); + } + } + + public static string Setting_speed_to_0_x_for_data_reading { + get { + return ResourceManager.GetString("Setting_speed_to_0_x_for_data_reading", resourceCulture); + } + } + + public static string READ_error_0 { + get { + return ResourceManager.GetString("READ_error_0", resourceCulture); + } + } + + public static string Skipping_0_blocks_from_errored_block_1 { + get { + return ResourceManager.GetString("Skipping_0_blocks_from_errored_block_1", resourceCulture); + } + } + + public static string Failed_crossing_into_Lead_Out { + get { + return ResourceManager.GetString("Failed_crossing_into_Lead_Out", resourceCulture); + } + } + + public static string Raw_CD_dumping_not_yet_implemented { + get { + return ResourceManager.GetString("Raw_CD_dumping_not_yet_implemented", resourceCulture); + } + } + + public static string Could_not_get_tracks { + get { + return ResourceManager.GetString("Could_not_get_tracks", resourceCulture); + } + } + + public static string Drive_does_not_support_the_requested_subchannel_format_not_continuing { + get { + return ResourceManager.GetString("Drive_does_not_support_the_requested_subchannel_format_not_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_subchannels_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_subchannels_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_subchannels_not_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_subchannels_not_continuing", resourceCulture); + } + } + + public static string Checking_if_drive_supports_reading_without_subchannel { + get { + return ResourceManager.GetString("Checking_if_drive_supports_reading_without_subchannel", resourceCulture); + } + } + + public static string Drive_does_not_support_READ_CD_trying_SCSI_READ_commands { + get { + return ResourceManager.GetString("Drive_does_not_support_READ_CD_trying_SCSI_READ_commands", resourceCulture); + } + } + + public static string Checking_if_drive_supports_READ_6 { + get { + return ResourceManager.GetString("Checking_if_drive_supports_READ_6", resourceCulture); + } + } + + public static string Checking_if_drive_supports_READ_10 { + get { + return ResourceManager.GetString("Checking_if_drive_supports_READ_10", resourceCulture); + } + } + + public static string Checking_if_drive_supports_READ_12 { + get { + return ResourceManager.GetString("Checking_if_drive_supports_READ_12", resourceCulture); + } + } + + public static string Checking_if_drive_supports_READ_16 { + get { + return ResourceManager.GetString("Checking_if_drive_supports_READ_16", resourceCulture); + } + } + + public static string Cannot_read_from_disc_not_continuing { + get { + return ResourceManager.GetString("Cannot_read_from_disc_not_continuing", resourceCulture); + } + } + + public static string Drive_supports_READ_6 { + get { + return ResourceManager.GetString("Drive_supports_READ_6", resourceCulture); + } + } + + public static string Drive_supports_READ_10 { + get { + return ResourceManager.GetString("Drive_supports_READ_10", resourceCulture); + } + } + + public static string Drive_supports_READ_12 { + get { + return ResourceManager.GetString("Drive_supports_READ_12", resourceCulture); + } + } + + public static string Drive_supports_READ_16 { + get { + return ResourceManager.GetString("Drive_supports_READ_16", resourceCulture); + } + } + + public static string Drive_can_read_without_subchannel { + get { + return ResourceManager.GetString("Drive_can_read_without_subchannel", resourceCulture); + } + } + + public static string Full_raw_subchannel_reading_supported { + get { + return ResourceManager.GetString("Full_raw_subchannel_reading_supported", resourceCulture); + } + } + + public static string PQ_subchannel_reading_supported { + get { + return ResourceManager.GetString("PQ_subchannel_reading_supported", resourceCulture); + } + } + + public static string WARNING_If_disc_says_CDG_CDEG_CDMIDI_dump_will_be_incorrect { + get { + return ResourceManager.GetString("WARNING_If_disc_says_CDG_CDEG_CDMIDI_dump_will_be_incorrect", resourceCulture); + } + } + + public static string Drive_returns_subchannel_in_BCD { + get { + return ResourceManager.GetString("Drive_returns_subchannel_in_BCD", resourceCulture); + } + } + + public static string Drive_does_not_returns_subchannel_in_BCD { + get { + return ResourceManager.GetString("Drive_does_not_returns_subchannel_in_BCD", resourceCulture); + } + } + + public static string Calculating_pregaps__can_take_some_time { + get { + return ResourceManager.GetString("Calculating_pregaps__can_take_some_time", resourceCulture); + } + } + + public static string Output_format_does_not_support_storing_raw_data_not_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_storing_raw_data_not_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_storing_raw_data_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_storing_raw_data_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_audio_tracks_cannot_continue { + get { + return ResourceManager.GetString("Output_format_does_not_support_audio_tracks_cannot_continue", resourceCulture); + } + } + + public static string Output_format_does_not_support_pregaps_not_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_pregaps_not_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_pregaps_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_pregaps_continuing", resourceCulture); + } + } + + public static string Cannot_dump_blank_media { + get { + return ResourceManager.GetString("Cannot_dump_blank_media", resourceCulture); + } + } + + public static string Could_not_process_resume_file_not_continuing { + get { + return ResourceManager.GetString("Could_not_process_resume_file_not_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_0_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_0_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_0_not_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_0_not_continuing", resourceCulture); + } + } + + public static string Solving_lead_outs { + get { + return ResourceManager.GetString("Solving_lead_outs", resourceCulture); + } + } + + public static string Detecting_disc_type { + get { + return ResourceManager.GetString("Detecting_disc_type", resourceCulture); + } + } + + public static string Disc_contains_a_hidden_track { + get { + return ResourceManager.GetString("Disc_contains_a_hidden_track", resourceCulture); + } + } + + public static string Checking_mode_for_track_0 { + get { + return ResourceManager.GetString("Checking_mode_for_track_0", resourceCulture); + } + } + + public static string Unable_to_guess_mode_for_track_0_continuing { + get { + return ResourceManager.GetString("Unable_to_guess_mode_for_track_0_continuing", resourceCulture); + } + } + + public static string Track_0_is_MODE1 { + get { + return ResourceManager.GetString("Track_0_is_MODE1", resourceCulture); + } + } + + public static string Track_0_is_MODE2 { + get { + return ResourceManager.GetString("Track_0_is_MODE2", resourceCulture); + } + } + + public static string Track_0_is_MODE2_FORM_2 { + get { + return ResourceManager.GetString("Track_0_is_MODE2_FORM_2", resourceCulture); + } + } + + public static string Track_0_is_MODE2_FORM_1 { + get { + return ResourceManager.GetString("Track_0_is_MODE2_FORM_1", resourceCulture); + } + } + + public static string Track_0_is_unknown_mode_1 { + get { + return ResourceManager.GetString("Track_0_is_unknown_mode_1", resourceCulture); + } + } + + public static string Output_format_does_not_support_more_than_1_track_not_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_more_than_1_track_not_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_audio_tracks_not_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_audio_tracks_not_continuing", resourceCulture); + } + } + + public static string Output_format_only_supports_MODE_1_tracks_not_continuing { + get { + return ResourceManager.GetString("Output_format_only_supports_MODE_1_tracks_not_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_CD_first_track_pregap_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_CD_first_track_pregap_continuing", resourceCulture); + } + } + + public static string Output_format_does_not_support_CD_first_track_pregap_not_continuing { + get { + return ResourceManager.GetString("Output_format_does_not_support_CD_first_track_pregap_not_continuing", resourceCulture); + } + } + + public static string Device_error_0_trying_to_guess_ideal_transfer_length { + get { + return ResourceManager.GetString("Device_error_0_trying_to_guess_ideal_transfer_length", resourceCulture); + } + } + + public static string Reading_0_sectors_at_a_time { + get { + return ResourceManager.GetString("Reading_0_sectors_at_a_time", resourceCulture); + } + } + + public static string Device_reports_0_blocks_1_bytes { + get { + return ResourceManager.GetString("Device_reports_0_blocks_1_bytes", resourceCulture); + } + } + + public static string Device_can_read_0_blocks_at_a_time { + get { + return ResourceManager.GetString("Device_can_read_0_blocks_at_a_time", resourceCulture); + } + } + + public static string Device_reports_0_bytes_per_logical_block { + get { + return ResourceManager.GetString("Device_reports_0_bytes_per_logical_block", resourceCulture); + } + } + + public static string SCSI_device_type_0 { + get { + return ResourceManager.GetString("SCSI_device_type_0", resourceCulture); + } + } + + public static string Media_identified_as_0 { + get { + return ResourceManager.GetString("Media_identified_as_0", resourceCulture); + } + } + + public static string Error_creating_output_image_not_continuing { + get { + return ResourceManager.GetString("Error_creating_output_image_not_continuing", resourceCulture); + } + } + + public static string Error_sending_tracks_to_output_image_not_continuing { + get { + return ResourceManager.GetString("Error_sending_tracks_to_output_image_not_continuing", resourceCulture); + } + } + + public static string Creating_subchannel_log_in_0 { + get { + return ResourceManager.GetString("Creating_subchannel_log_in_0", resourceCulture); + } + } + + public static string Setting_flags_for_track_0 { + get { + return ResourceManager.GetString("Setting_flags_for_track_0", resourceCulture); + } + } + + public static string Found_Media_Catalogue_Number_0 { + get { + return ResourceManager.GetString("Found_Media_Catalogue_Number_0", resourceCulture); + } + } + + public static string Found_ISRC_for_track_0_1 { + get { + return ResourceManager.GetString("Found_ISRC_for_track_0_1", resourceCulture); + } + } + + public static string Resuming_from_block_0 { + get { + return ResourceManager.GetString("Resuming_from_block_0", resourceCulture); + } + } + + public static string Track_0_starts_at_LBA_1_and_ends_at_LBA_2 { + get { + return ResourceManager.GetString("Track_0_starts_at_LBA_1_and_ends_at_LBA_2", resourceCulture); + } + } + + public static string No_audio_tracks_disabling_offset_fix { + get { + return ResourceManager.GetString("No_audio_tracks_disabling_offset_fix", resourceCulture); + } + } + + public static string READ_CD_command_is_not_supported_disabling_offset_fix_Dump_may_not_be_correct { + get { + return ResourceManager.GetString("READ_CD_command_is_not_supported_disabling_offset_fix_Dump_may_not_be_correct", resourceCulture); } } - /// - /// Looks up a localized string similar to There are audio tracks and offset fixing is disabled, dump may not be correct.. - /// public static string There_are_audio_tracks_and_offset_fixing_is_disabled_dump_may_not_be_correct { get { return ResourceManager.GetString("There_are_audio_tracks_and_offset_fixing_is_disabled_dump_may_not_be_correct", resourceCulture); } } - /// - /// Looks up a localized string similar to There will be thousand of errors between track 0 and track 1, that is normal and you can ignore them.. - /// + public static string Dump_may_not_be_correct { + get { + return ResourceManager.GetString("Dump_may_not_be_correct", resourceCulture); + } + } + + public static string Disc_write_offset_is_unknown_dump_may_not_be_correct { + get { + return ResourceManager.GetString("Disc_write_offset_is_unknown_dump_may_not_be_correct", resourceCulture); + } + } + + public static string Combined_disc_and_drive_offset_are_0_bytes_1_samples { + get { + return ResourceManager.GetString("Combined_disc_and_drive_offset_are_0_bytes_1_samples", resourceCulture); + } + } + + public static string Disc_offset_is_0_bytes_1_samples { + get { + return ResourceManager.GetString("Disc_offset_is_0_bytes_1_samples", resourceCulture); + } + } + + public static string Dumping_CD_i_Ready_requires_the_output_image_format_to_support_long_sectors { + get { + return ResourceManager.GetString("Dumping_CD_i_Ready_requires_the_output_image_format_to_support_long_sectors", resourceCulture); + } + } + + public static string Dumping_CD_i_Ready_requires_the_drive_to_support_the_READ_CD_command { + get { + return ResourceManager.GetString("Dumping_CD_i_Ready_requires_the_drive_to_support_the_READ_CD_command", resourceCulture); + } + } + + public static string Enabling_skipping_CD_i_Ready_hole_because_drive_returns_data_as_audio { + get { + return ResourceManager.GetString("Enabling_skipping_CD_i_Ready_hole_because_drive_returns_data_as_audio", resourceCulture); + } + } + public static string There_will_be_thousand_of_errors_between_track_0_and_track_1_that_is_normal_and_you_can_ignore_them { get { return ResourceManager.GetString("There_will_be_thousand_of_errors_between_track_0_and_track_1_that_is_normal_and_y" + @@ -8464,1850 +1762,5105 @@ namespace Aaru.Localization { } } - /// - /// Looks up a localized string similar to Blu-ray. - /// - public static string Title_Blu_ray { + public static string Dump_finished_in_0 { get { - return ResourceManager.GetString("Title_Blu_ray", resourceCulture); + return ResourceManager.GetString("Dump_finished_in_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Bps. - /// - public static string Title_Bps { + public static string Average_dump_speed_0 { get { - return ResourceManager.GetString("Title_Bps", resourceCulture); + return ResourceManager.GetString("Average_dump_speed_0", resourceCulture); } } - /// - /// Looks up a localized string similar to CompactDisc. - /// - public static string Title_CompactDisc { + public static string Average_write_speed_0 { get { - return ResourceManager.GetString("Title_CompactDisc", resourceCulture); + return ResourceManager.GetString("Average_write_speed_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Dump hardware information. - /// - public static string Title_Dump_hardware_information { + public static string Error_Tag_type_0_is_null_skipping { get { - return ResourceManager.GetString("Title_Dump_hardware_information", resourceCulture); + return ResourceManager.GetString("Error_Tag_type_0_is_null_skipping", resourceCulture); } } - /// - /// Looks up a localized string similar to DVD. - /// - public static string Title_DVD { + public static string Cannot_write_tag_0 { get { - return ResourceManager.GetString("Title_DVD", resourceCulture); + return ResourceManager.GetString("Cannot_write_tag_0", resourceCulture); } } - /// - /// Looks up a localized string similar to DVD / HD DVD. - /// - public static string Title_DVD_HD_DVD { + public static string Sector_0_could_not_be_read { get { - return ResourceManager.GetString("Title_DVD_HD_DVD", resourceCulture); + return ResourceManager.GetString("Sector_0_could_not_be_read", resourceCulture); } } - /// - /// Looks up a localized string similar to DVD±R(W). - /// - public static string Title_DVD_Plus_Dash_R_W { + public static string Setting_ISRC_for_track_0_to_1 { get { - return ResourceManager.GetString("Title_DVD_Plus_Dash_R_W", resourceCulture); + return ResourceManager.GetString("Setting_ISRC_for_track_0_to_1", resourceCulture); } } - /// - /// Looks up a localized string similar to End. - /// - public static string Title_End { + public static string Setting_disc_Media_Catalogue_Number_to_0 { get { - return ResourceManager.GetString("Title_End", resourceCulture); + return ResourceManager.GetString("Setting_disc_Media_Catalogue_Number_to_0", resourceCulture); } } - /// - /// Looks up a localized string similar to First track. - /// - public static string Title_First_track { + public static string Closing_output_file { get { - return ResourceManager.GetString("Title_First_track", resourceCulture); + return ResourceManager.GetString("Closing_output_file", resourceCulture); } } - /// - /// Looks up a localized string similar to Image indexes. - /// - public static string Title_Image_indexes { + public static string Closed_in_0 { get { - return ResourceManager.GetString("Title_Image_indexes", resourceCulture); + return ResourceManager.GetString("Closed_in_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Image sessions. - /// - public static string Title_Image_sessions { - get { - return ResourceManager.GetString("Title_Image_sessions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image tracks. - /// - public static string Title_Image_tracks { - get { - return ResourceManager.GetString("Title_Image_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Index. - /// - public static string Title_Index { - get { - return ResourceManager.GetString("Title_Index", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Title keys dumping is enabled. This will be very slow.. - /// - public static string Title_keys_dumping_is_enabled_This_will_be_very_slow { - get { - return ResourceManager.GetString("Title_keys_dumping_is_enabled_This_will_be_very_slow", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last track. - /// - public static string Title_Last_track { - get { - return ResourceManager.GetString("Title_Last_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Manufacturer. - /// - public static string Title_Manufacturer { - get { - return ResourceManager.GetString("Title_Manufacturer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MMC. - /// - public static string Title_MMC { - get { - return ResourceManager.GetString("Title_MMC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Model. - /// - public static string Title_Model { - get { - return ResourceManager.GetString("Title_Model", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Operating system. - /// - public static string Title_Operating_system { - get { - return ResourceManager.GetString("Title_Operating_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition description:. - /// - public static string Title_Partition_description { - get { - return ResourceManager.GetString("Title_Partition_description", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Pregap. - /// - public static string Title_Pregap { - get { - return ResourceManager.GetString("Title_Pregap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Raw bps. - /// - public static string Title_Raw_bps { - get { - return ResourceManager.GetString("Title_Raw_bps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Serial. - /// - public static string Title_Serial { - get { - return ResourceManager.GetString("Title_Serial", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Session. - /// - public static string Title_Session { - get { - return ResourceManager.GetString("Title_Session", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Software. - /// - public static string Title_Software { - get { - return ResourceManager.GetString("Title_Software", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SSC. - /// - public static string Title_SSC { - get { - return ResourceManager.GetString("Title_SSC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Start. - /// - public static string Title_Start { - get { - return ResourceManager.GetString("Title_Start", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Subchannel. - /// - public static string Title_Subchannel { - get { - return ResourceManager.GetString("Title_Subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track. - /// - public static string Title_Track { - get { - return ResourceManager.GetString("Title_Track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Type. - /// - public static string Title_Type_for_media { - get { - return ResourceManager.GetString("Title_Type_for_media", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version. - /// - public static string Title_Version { - get { - return ResourceManager.GetString("Title_Version", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Xbox. - /// - public static string Title_Xbox { - get { - return ResourceManager.GetString("Title_Xbox", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to TOC says disc type is CD-i.. - /// - public static string TOC_says_disc_type_is_CD_i { - get { - return ResourceManager.GetString("TOC_says_disc_type_is_CD_i", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to TOC says disc type is CD-ROM XA.. - /// - public static string TOC_says_disc_type_is_CD_ROM_XA { - get { - return ResourceManager.GetString("TOC_says_disc_type_is_CD_ROM_XA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took a total of {0} ({1} processing commands).. - /// - public static string Took_a_total_of_0_1_processing_commands { - get { - return ResourceManager.GetString("Took_a_total_of_0_1_processing_commands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took a total of {0} ({1} processing commands, {2} checksumming, {3} writing, {4} closing).. - /// public static string Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing { get { return ResourceManager.GetString("Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing", resourceCulture); } } - /// - /// Looks up a localized string similar to Total size. - /// - public static string Total_size { + public static string _0_subchannels_could_not_be_read { get { - return ResourceManager.GetString("Total_size", resourceCulture); + return ResourceManager.GetString("_0_subchannels_could_not_be_read", resourceCulture); } } - /// - /// Looks up a localized string similar to Total size: {0} sectors. - /// - public static string Total_size_0_sectors { + public static string Sending_MODE_SELECT_to_drive_return_damaged_blocks { get { - return ResourceManager.GetString("Total_size_0_sectors", resourceCulture); + return ResourceManager.GetString("Sending_MODE_SELECT_to_drive_return_damaged_blocks", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0}. - /// - public static string Track_0 { + public static string Drive_did_not_accept_MODE_SELECT_command_for_persistent_error_reading { get { - return ResourceManager.GetString("Track_0", resourceCulture); + return ResourceManager.GetString("Drive_did_not_accept_MODE_SELECT_command_for_persistent_error_reading", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0} has {1} sectors. - /// - public static string Track_0_has_1_sectors { + public static string Retrying_sector_0_pass_1_recovering_partial_data_forward { get { - return ResourceManager.GetString("Track_0_has_1_sectors", resourceCulture); + return ResourceManager.GetString("Retrying_sector_0_pass_1_recovering_partial_data_forward", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0} is MODE1. - /// - public static string Track_0_is_MODE1 { + public static string Retrying_sector_0_pass_1_forward { get { - return ResourceManager.GetString("Track_0_is_MODE1", resourceCulture); + return ResourceManager.GetString("Retrying_sector_0_pass_1_forward", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0} is MODE2. - /// - public static string Track_0_is_MODE2 { + public static string Retrying_sector_0_pass_1_recovering_partial_data_reverse { get { - return ResourceManager.GetString("Track_0_is_MODE2", resourceCulture); + return ResourceManager.GetString("Retrying_sector_0_pass_1_recovering_partial_data_reverse", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0} is MODE2 FORM 1. - /// - public static string Track_0_is_MODE2_FORM_1 { + public static string Retrying_sector_0_pass_1_reverse { get { - return ResourceManager.GetString("Track_0_is_MODE2_FORM_1", resourceCulture); + return ResourceManager.GetString("Retrying_sector_0_pass_1_reverse", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0} is MODE2 FORM 2. - /// - public static string Track_0_is_MODE2_FORM_2 { + public static string Correctly_retried_sector_0_in_pass_1 { get { - return ResourceManager.GetString("Track_0_is_MODE2_FORM_2", resourceCulture); + return ResourceManager.GetString("Correctly_retried_sector_0_in_pass_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0} is unknown mode {1}. - /// - public static string Track_0_is_unknown_mode_1 { + public static string Sending_MODE_SELECT_to_drive_ignore_error_correction { get { - return ResourceManager.GetString("Track_0_is_unknown_mode_1", resourceCulture); + return ResourceManager.GetString("Sending_MODE_SELECT_to_drive_ignore_error_correction", resourceCulture); } } - /// - /// Looks up a localized string similar to Track {0} of {1}. - /// - public static string Track_0_of_1 { - get { - return ResourceManager.GetString("Track_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track {0} pregap is {1} sectors. - /// - public static string Track_0_pregap_is_1_sectors { - get { - return ResourceManager.GetString("Track_0_pregap_is_1_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track {0} starts at LBA {1} and ends at LBA {2}. - /// - public static string Track_0_starts_at_LBA_1_and_ends_at_LBA_2 { - get { - return ResourceManager.GetString("Track_0_starts_at_LBA_1_and_ends_at_LBA_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track calculations. - /// - public static string Track_calculations { - get { - return ResourceManager.GetString("Track_calculations", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track Resources Information. - /// - public static string Track_Resources_Information { - get { - return ResourceManager.GetString("Track_Resources_Information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track's {0} ISRC. - /// - public static string Tracks_0_ISRC { - get { - return ResourceManager.GetString("Tracks_0_ISRC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trap disc doesn't have enough sectors.... - /// - public static string Trap_disc_doesnt_have_enough_sectors { - get { - return ResourceManager.GetString("Trap_disc_doesnt_have_enough_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trap disc shows {0} sectors.... - /// - public static string Trap_disc_shows_0_sectors { - get { - return ResourceManager.GetString("Trap_disc_shows_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Traversing FAT.... - /// - public static string Traversing_FAT { - get { - return ResourceManager.GetString("Traversing_FAT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Tried to open a file instead of a device.. - /// - public static string Tried_to_open_a_file_instead_of_a_device { - get { - return ResourceManager.GetString("Tried_to_open_a_file_instead_of_a_device", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trimming finished in {0}.. - /// - public static string Trimming_finished_in_0 { - get { - return ResourceManager.GetString("Trimming_finished_in_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trimming sector {0}. - /// - public static string Trimming_sector_0 { - get { - return ResourceManager.GetString("Trimming_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trimming skipped sectors. - /// - public static string Trimming_skipped_sectors { - get { - return ResourceManager.GetString("Trimming_skipped_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive supports SCSI READ LONG but I cannot find the correct size. Do you want me to try? (This can take hours). - /// - public static string Try_to_find_SCSI_READ_LONG_size { - get { - return ResourceManager.GetString("Try_to_find_SCSI_READ_LONG_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying {0} @ {1}. - /// - public static string Trying_0_at_1 { - get { - return ResourceManager.GetString("Trying_0_at_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying HL-DT-ST (aka LG) trick to raw read DVDs.... - /// - public static string Trying_HL_DT_ST_aka_LG_trick_to_raw_read_DVDs { - get { - return ResourceManager.GetString("Trying_HL_DT_ST_aka_LG_trick_to_raw_read_DVDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying MediaTek READ DRAM command.... - /// - public static string Trying_MediaTek_READ_DRAM_command { - get { - return ResourceManager.GetString("Trying_MediaTek_READ_DRAM_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying MediaTek READ DRAM command for Lead-Out.... - /// - public static string Trying_MediaTek_READ_DRAM_command_for_Lead_Out { - get { - return ResourceManager.GetString("Trying_MediaTek_READ_DRAM_command_for_Lead_Out", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying NEC READ CD-DA.... - /// - public static string Trying_NEC_READ_CD_DA { - get { - return ResourceManager.GetString("Trying_NEC_READ_CD_DA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying Pioneer READ CD-DA.... - /// - public static string Trying_Pioneer_READ_CD_DA { - get { - return ResourceManager.GetString("Trying_Pioneer_READ_CD_DA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying Pioneer READ CD-DA MSF.... - /// - public static string Trying_Pioneer_READ_CD_DA_MSF { - get { - return ResourceManager.GetString("Trying_Pioneer_READ_CD_DA_MSF", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying Plextor trick to raw read DVDs.... - /// - public static string Trying_Plextor_trick_to_raw_read_DVDs { - get { - return ResourceManager.GetString("Trying_Plextor_trick_to_raw_read_DVDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying plugin {0}. - /// - public static string Trying_plugin_0 { - get { - return ResourceManager.GetString("Trying_plugin_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ DMA in CHS mode.... - /// - public static string Trying_READ_DMA_in_CHS_mode { - get { - return ResourceManager.GetString("Trying_READ_DMA_in_CHS_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ DMA in LBA mode.... - /// - public static string Trying_READ_DMA_in_LBA_mode { - get { - return ResourceManager.GetString("Trying_READ_DMA_in_LBA_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ DMA in LBA48 mode.... - /// - public static string Trying_READ_DMA_in_LBA48_mode { - get { - return ResourceManager.GetString("Trying_READ_DMA_in_LBA48_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ DMA RETRY in CHS mode.... - /// - public static string Trying_READ_DMA_RETRY_in_CHS_mode { - get { - return ResourceManager.GetString("Trying_READ_DMA_RETRY_in_CHS_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ DMA RETRY in LBA mode.... - /// - public static string Trying_READ_DMA_RETRY_in_LBA_mode { - get { - return ResourceManager.GetString("Trying_READ_DMA_RETRY_in_LBA_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ LONG.... - /// - public static string Trying_READ_LONG { - get { - return ResourceManager.GetString("Trying_READ_LONG", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ LONG in CHS mode.... - /// - public static string Trying_READ_LONG_in_CHS_mode { - get { - return ResourceManager.GetString("Trying_READ_LONG_in_CHS_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ LONG in LBA mode.... - /// - public static string Trying_READ_LONG_in_LBA_mode { - get { - return ResourceManager.GetString("Trying_READ_LONG_in_LBA_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ LONG RETRY in CHS mode.... - /// - public static string Trying_READ_LONG_RETRY_in_CHS_mode { - get { - return ResourceManager.GetString("Trying_READ_LONG_RETRY_in_CHS_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ LONG RETRY in LBA mode.... - /// - public static string Trying_READ_LONG_RETRY_in_LBA_mode { - get { - return ResourceManager.GetString("Trying_READ_LONG_RETRY_in_LBA_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ LONG with a size of {0} bytes.... - /// - public static string Trying_READ_LONG_with_size_0 { - get { - return ResourceManager.GetString("Trying_READ_LONG_with_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ SECTOR(S) in CHS mode.... - /// - public static string Trying_READ_SECTORS_in_CHS_mode { - get { - return ResourceManager.GetString("Trying_READ_SECTORS_in_CHS_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ SECTOR(S) in LBA mode.... - /// - public static string Trying_READ_SECTORS_in_LBA_mode { - get { - return ResourceManager.GetString("Trying_READ_SECTORS_in_LBA_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ SECTOR(S) in LBA48 mode.... - /// - public static string Trying_READ_SECTORS_in_LBA48_mode { - get { - return ResourceManager.GetString("Trying_READ_SECTORS_in_LBA48_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ SECTOR(S) RETRY in CHS mode.... - /// - public static string Trying_READ_SECTORS_RETRY_in_CHS_mode { - get { - return ResourceManager.GetString("Trying_READ_SECTORS_RETRY_in_CHS_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying READ SECTOR(S) RETRY in LBA mode.... - /// - public static string Trying_READ_SECTORS_RETRY_in_LBA_mode { - get { - return ResourceManager.GetString("Trying_READ_SECTORS_RETRY_in_LBA_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ (10).... - /// - public static string Trying_SCSI_READ_10 { - get { - return ResourceManager.GetString("Trying_SCSI_READ_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ (12).... - /// - public static string Trying_SCSI_READ_12 { - get { - return ResourceManager.GetString("Trying_SCSI_READ_12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ (16).... - /// - public static string Trying_SCSI_READ_16 { - get { - return ResourceManager.GetString("Trying_SCSI_READ_16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ (6).... - /// - public static string Trying_SCSI_READ_6 { - get { - return ResourceManager.GetString("Trying_SCSI_READ_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ CD.... - /// - public static string Trying_SCSI_READ_CD { - get { - return ResourceManager.GetString("Trying_SCSI_READ_CD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ CD full sector.... - /// - public static string Trying_SCSI_READ_CD_full_sector { - get { - return ResourceManager.GetString("Trying_SCSI_READ_CD_full_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ CD in first session Lead-Out.... - /// - public static string Trying_SCSI_READ_CD_in_first_session_Lead_Out { - get { - return ResourceManager.GetString("Trying_SCSI_READ_CD_in_first_session_Lead_Out", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ CD in second session Lead-In.... - /// - public static string Trying_SCSI_READ_CD_in_second_session_Lead_In { - get { - return ResourceManager.GetString("Trying_SCSI_READ_CD_in_second_session_Lead_In", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ CD MSF.... - /// - public static string Trying_SCSI_READ_CD_MSF { - get { - return ResourceManager.GetString("Trying_SCSI_READ_CD_MSF", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ CD MSF full sector.... - /// - public static string Trying_SCSI_READ_CD_MSF_full_sector { - get { - return ResourceManager.GetString("Trying_SCSI_READ_CD_MSF_full_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ CD scrambled.... - /// - public static string Trying_SCSI_READ_CD_scrambled { - get { - return ResourceManager.GetString("Trying_SCSI_READ_CD_scrambled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ LONG (10).... - /// - public static string Trying_SCSI_READ_LONG_10 { - get { - return ResourceManager.GetString("Trying_SCSI_READ_LONG_10", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ LONG (16).... - /// - public static string Trying_SCSI_READ_LONG_16 { - get { - return ResourceManager.GetString("Trying_SCSI_READ_LONG_16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SCSI READ MEDIA SERIAL NUMBER.... - /// - public static string Trying_SCSI_READ_MEDIA_SERIAL_NUMBER { - get { - return ResourceManager.GetString("Trying_SCSI_READ_MEDIA_SERIAL_NUMBER", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SEEK in CHS mode.... - /// - public static string Trying_SEEK_in_CHS_mode { - get { - return ResourceManager.GetString("Trying_SEEK_in_CHS_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying SEEK in LBA mode.... - /// - public static string Trying_SEEK_in_LBA_mode { - get { - return ResourceManager.GetString("Trying_SEEK_in_LBA_mode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to get CID.... - /// - public static string Trying_to_get_CID { - get { - return ResourceManager.GetString("Trying_to_get_CID", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to get CSD.... - /// - public static string Trying_to_get_CSD { - get { - return ResourceManager.GetString("Trying_to_get_CSD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to get Extended CSD.... - /// - public static string Trying_to_get_Extended_CSD { - get { - return ResourceManager.GetString("Trying_to_get_Extended_CSD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to get OCR.... - /// - public static string Trying_to_get_OCR { - get { - return ResourceManager.GetString("Trying_to_get_OCR", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to get partial data for sector {0}. - /// public static string Trying_to_get_partial_data_for_sector_0 { get { return ResourceManager.GetString("Trying_to_get_partial_data_for_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to get SCR.... - /// - public static string Trying_to_get_SCR { + public static string Got_partial_data_for_sector_0_in_pass_1 { get { - return ResourceManager.GetString("Trying_to_get_SCR", resourceCulture); + return ResourceManager.GetString("Got_partial_data_for_sector_0_in_pass_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to read C2 Pointers.... - /// - public static string Trying_to_read_C2_Pointers { + public static string Sending_MODE_SELECT_to_drive_return_device_to_previous_status { get { - return ResourceManager.GetString("Trying_to_read_C2_Pointers", resourceCulture); + return ResourceManager.GetString("Sending_MODE_SELECT_to_drive_return_device_to_previous_status", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to read CD Lead-In.... - /// - public static string Trying_to_read_CD_Lead_In { + public static string Retrying_sector_0_subchannel_pass_1_forward { get { - return ResourceManager.GetString("Trying_to_read_CD_Lead_In", resourceCulture); + return ResourceManager.GetString("Retrying_sector_0_subchannel_pass_1_forward", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to read CD Lead-Out.... - /// - public static string Trying_to_read_CD_Lead_Out { + public static string Retrying_sector_0_subchannel_pass_1_reverse { get { - return ResourceManager.GetString("Trying_to_read_CD_Lead_Out", resourceCulture); + return ResourceManager.GetString("Retrying_sector_0_subchannel_pass_1_reverse", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to read CD Track 1 pre-gap.... - /// - public static string Trying_to_read_CD_Track_1_pre_gap { + public static string Correctly_retried_sector_0_subchannel_in_pass_1 { get { - return ResourceManager.GetString("Trying_to_read_CD_Track_1_pre_gap", resourceCulture); + return ResourceManager.GetString("Correctly_retried_sector_0_subchannel_in_pass_1", resourceCulture); + } + } + + public static string Reading_lead_outs { + get { + return ResourceManager.GetString("Reading_lead_outs", resourceCulture); + } + } + + public static string Reading_sector_0_at_lead_out_1 { + get { + return ResourceManager.GetString("Reading_sector_0_at_lead_out_1", resourceCulture); + } + } + + public static string Reading_first_track_pregap { + get { + return ResourceManager.GetString("Reading_first_track_pregap", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to read first track pregap sector {0} ({1}). - /// public static string Trying_to_read_first_track_pregap_sector_0_1 { get { return ResourceManager.GetString("Trying_to_read_first_track_pregap_sector_0_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to read subchannels.... - /// - public static string Trying_to_read_subchannels { + public static string Got_0_first_track_pregap_sectors { get { - return ResourceManager.GetString("Trying_to_read_subchannels", resourceCulture); + return ResourceManager.GetString("Got_0_first_track_pregap_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to read subchannels with C2 Pointers.... - /// - public static string Trying_to_read_subchannels_with_C2_Pointers { + public static string Subchannel_is_BCD { get { - return ResourceManager.GetString("Trying_to_read_subchannels_with_C2_Pointers", resourceCulture); + return ResourceManager.GetString("Subchannel_is_BCD", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to communicate with ATA device.. - /// - public static string Unable_to_communicate_with_ATA_device { + public static string Subchannel_is_not_BCD { get { - return ResourceManager.GetString("Unable_to_communicate_with_ATA_device", resourceCulture); + return ResourceManager.GetString("Subchannel_is_not_BCD", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to get device size.. - /// - public static string Unable_to_get_device_size { + public static string Could_not_detect_drive_subchannel_BCD { get { - return ResourceManager.GetString("Unable_to_get_device_size", resourceCulture); + return ResourceManager.GetString("Could_not_detect_drive_subchannel_BCD", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to get media capacity - ///{0}. - /// - public static string Unable_to_get_media_capacity { + public static string Could_not_detect_if_drive_subchannel_is_BCD_or_not_pregaps_could_not_be_calculated_dump_may_be_incorrect { get { - return ResourceManager.GetString("Unable_to_get_media_capacity", resourceCulture); + return ResourceManager.GetString("Could_not_detect_if_drive_subchannel_is_BCD_or_not_pregaps_could_not_be_calculate" + + "d_dump_may_be_incorrect", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to get separate tracks, not calculating their entropy. - /// - public static string Unable_to_get_separate_tracks_not_calculating_their_entropy { + public static string Skipping_track_0 { get { - return ResourceManager.GetString("Unable_to_get_separate_tracks_not_calculating_their_entropy", resourceCulture); + return ResourceManager.GetString("Skipping_track_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to guess mode for track {0}, continuing.... - /// - public static string Unable_to_guess_mode_for_track_0_continuing { + public static string Skipping_track_0_due_to_Plextor_firmware_bug { get { - return ResourceManager.GetString("Unable_to_guess_mode_for_track_0_continuing", resourceCulture); + return ResourceManager.GetString("Skipping_track_0_due_to_Plextor_firmware_bug", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to read medium.. - /// - public static string Unable_to_read_medium { + public static string Track_0 { get { - return ResourceManager.GetString("Unable_to_read_medium", resourceCulture); + return ResourceManager.GetString("Track_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to read medium or empty medium present.... - /// - public static string Unable_to_read_medium_or_empty_medium_present { + public static string LBA_0_Try_1_Sense_2 { get { - return ResourceManager.GetString("Unable_to_read_medium_or_empty_medium_present", resourceCulture); + return ResourceManager.GetString("LBA_0_Try_1_Sense_2", resourceCulture); } } - /// - /// Looks up a localized string similar to Unable to write file {0}. - /// - public static string Unable_to_write_file_0 { + public static string LBA_0_Try_1_Sense_2_Q_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16 { get { - return ResourceManager.GetString("Unable_to_write_file_0", resourceCulture); + return ResourceManager.GetString("LBA_0_Try_1_Sense_2_Q_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16", resourceCulture); } } - /// - /// Looks up a localized string similar to Unit Serial Number: {0}. - /// - public static string Unit_Serial_Number_0 { + public static string LBA_0_Try_1_Sense_2_Q_FIXED_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16 { get { - return ResourceManager.GetString("Unit_Serial_Number_0", resourceCulture); + return ResourceManager.GetString("LBA_0_Try_1_Sense_2_Q_FIXED_3_4_5_6_7_8_9_10_11_12_CRC_13_14_Calculated_CRC_15_16" + + "", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown device type.. - /// - public static string Unknown_device_type { + public static string Could_not_read_subchannel_for_this_track_supposing_hundred_fifty_sectors { get { - return ResourceManager.GetString("Unknown_device_type", resourceCulture); + return ResourceManager.GetString("Could_not_read_subchannel_for_this_track_supposing_hundred_fifty_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown device type {0}.. - /// - public static string Unknown_device_type_0 { + public static string Could_not_read_subchannel_for_this_track_supposing_0_sectors { get { - return ResourceManager.GetString("Unknown_device_type_0", resourceCulture); + return ResourceManager.GetString("Could_not_read_subchannel_for_this_track_supposing_0_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown device type {0}, cannot get information.. - /// - public static string Unknown_device_type_0_cannot_get_information { + public static string Could_not_read_subchannel_for_sector_0 { get { - return ResourceManager.GetString("Unknown_device_type_0_cannot_get_information", resourceCulture); + return ResourceManager.GetString("Could_not_read_subchannel_for_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown sense testing unit was ready.. - /// - public static string Unknown_sense_testing_unit_was_ready { + public static string Could_not_get_correct_subchannel_for_sector_0 { get { - return ResourceManager.GetString("Unknown_sense_testing_unit_was_ready", resourceCulture); + return ResourceManager.GetString("Could_not_get_correct_subchannel_for_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unlocked total size: {0} sectors. - /// - public static string Unlocked_total_size_0_sectors { + public static string All_Q_empty_for_LBA_0 { get { - return ResourceManager.GetString("Unlocked_total_size_0_sectors", resourceCulture); + return ResourceManager.GetString("All_Q_empty_for_LBA_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unlocking drive (Wxripper).. - /// - public static string Unlocking_drive_Wxripper { + public static string Invalid_Q_position_for_LBA_0_got_1 { get { - return ResourceManager.GetString("Unlocking_drive_Wxripper", resourceCulture); + return ResourceManager.GetString("Invalid_Q_position_for_LBA_0_got_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Unlocking drive (Xtreme).. - /// - public static string Unlocking_drive_Xtreme_ { + public static string Pregap_for_track_0_1 { get { - return ResourceManager.GetString("Unlocking_drive_Xtreme_", resourceCulture); + return ResourceManager.GetString("Pregap_for_track_0_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Updating CompactDisc read offsets. - /// - public static string Updating_CompactDisc_read_offsets { + public static string Track_0_pregap_is_1_sectors { get { - return ResourceManager.GetString("Updating_CompactDisc_read_offsets", resourceCulture); + return ResourceManager.GetString("Track_0_pregap_is_1_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Updating known devices. - /// - public static string Updating_known_devices { + public static string _0_sectors_at_the_end_of_the_disc_are_unreadable { get { - return ResourceManager.GetString("Updating_known_devices", resourceCulture); + return ResourceManager.GetString("_0_sectors_at_the_end_of_the_disc_are_unreadable", resourceCulture); } } - /// - /// Looks up a localized string similar to Updating known iNES/NES 2.0 headers. - /// - public static string Updating_known_iNES_NES_2_0_headers { + public static string Checking_if_drive_supports_full_raw_subchannel_reading { get { - return ResourceManager.GetString("Updating_known_iNES_NES_2_0_headers", resourceCulture); + return ResourceManager.GetString("Checking_if_drive_supports_full_raw_subchannel_reading", resourceCulture); } } - /// - /// Looks up a localized string similar to Updating main database. - /// - public static string Updating_main_database { + public static string Checking_if_drive_supports_PQ_subchannel_reading { get { - return ResourceManager.GetString("Updating_main_database", resourceCulture); + return ResourceManager.GetString("Checking_if_drive_supports_PQ_subchannel_reading", resourceCulture); } } - /// - /// Looks up a localized string similar to Updating USB products. - /// - public static string Updating_USB_products { + public static string Reading_ATIP { get { - return ResourceManager.GetString("Updating_USB_products", resourceCulture); + return ResourceManager.GetString("Reading_ATIP", resourceCulture); } } - /// - /// Looks up a localized string similar to Updating USB vendors. - /// - public static string Updating_USB_vendors { + public static string Reading_Disc_Information { get { - return ResourceManager.GetString("Updating_USB_vendors", resourceCulture); + return ResourceManager.GetString("Reading_Disc_Information", resourceCulture); } } - /// - /// Looks up a localized string similar to Uploading device report. - /// - public static string Uploading_device_report { + public static string Reading_PMA { get { - return ResourceManager.GetString("Uploading_device_report", resourceCulture); + return ResourceManager.GetString("Reading_PMA", resourceCulture); } } - /// - /// Looks up a localized string similar to Uploading partial statistics file {0}. - /// - public static string Uploading_partial_statistics_file_0 { + public static string Reading_Session_Information { get { - return ResourceManager.GetString("Uploading_partial_statistics_file_0", resourceCulture); + return ResourceManager.GetString("Reading_Session_Information", resourceCulture); } } - /// - /// Looks up a localized string similar to Uploading statistics. - /// - public static string Uploading_statistics { + public static string Reading_CD_Text_from_Lead_In { get { - return ResourceManager.GetString("Uploading_statistics", resourceCulture); + return ResourceManager.GetString("Reading_CD_Text_from_Lead_In", resourceCulture); } } - /// - /// Looks up a localized string similar to USB device: {0}. - /// - public static string USB_device_0 { + public static string Reading_full_TOC { get { - return ResourceManager.GetString("USB_device_0", resourceCulture); + return ResourceManager.GetString("Reading_full_TOC", resourceCulture); } } - /// - /// Looks up a localized string similar to USB manufacturer: {0}. - /// - public static string USB_manufacturer_0 { + public static string Building_track_map { get { - return ResourceManager.GetString("USB_manufacturer_0", resourceCulture); + return ResourceManager.GetString("Building_track_map", resourceCulture); } } - /// - /// Looks up a localized string similar to USB product: {0}. - /// - public static string USB_product_0 { + public static string Cannot_read_RAW_TOC_requesting_processed_one { get { - return ResourceManager.GetString("USB_product_0", resourceCulture); + return ResourceManager.GetString("Cannot_read_RAW_TOC_requesting_processed_one", resourceCulture); } } - /// - /// Looks up a localized string similar to USB product ID: {0:X4}h. - /// - public static string USB_product_ID_0 { + public static string Could_not_read_TOC_if_you_want_to_continue_use_force_and_will_try_from_LBA_0_to_360000 { get { - return ResourceManager.GetString("USB_product_ID_0", resourceCulture); + return ResourceManager.GetString("Could_not_read_TOC_if_you_want_to_continue_use_force_and_will_try_from_LBA_0_to_3" + + "60000", resourceCulture); } } - /// - /// Looks up a localized string similar to USB serial: {0}. - /// - public static string USB_serial_0 { + public static string No_tracks_found_adding_a_single_track_from_zero_to_Lead_Out { get { - return ResourceManager.GetString("USB_serial_0", resourceCulture); + return ResourceManager.GetString("No_tracks_found_adding_a_single_track_from_zero_to_Lead_Out", resourceCulture); } } - /// - /// Looks up a localized string similar to USB vendor ID: {0:X4}h. - /// - public static string USB_vendor_ID_0 { + public static string Could_not_find_Lead_Out_if_you_want_to_continue_use_force_option { get { - return ResourceManager.GetString("USB_vendor_ID_0", resourceCulture); + return ResourceManager.GetString("Could_not_find_Lead_Out_if_you_want_to_continue_use_force_option", resourceCulture); } } - /// - /// Looks up a localized string similar to Using ATA READ command (CHS).. - /// - public static string Using_ATA_READ_command_CHS { - get { - return ResourceManager.GetString("Using_ATA_READ_command_CHS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ command (LBA).. - /// - public static string Using_ATA_READ_command_LBA { - get { - return ResourceManager.GetString("Using_ATA_READ_command_LBA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ command with retries (CHS).. - /// - public static string Using_ATA_READ_command_with_retries_CHS { - get { - return ResourceManager.GetString("Using_ATA_READ_command_with_retries_CHS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ command with retries (LBA).. - /// - public static string Using_ATA_READ_command_with_retries_LBA { - get { - return ResourceManager.GetString("Using_ATA_READ_command_with_retries_LBA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ DMA command (CHS).. - /// - public static string Using_ATA_READ_DMA_command_CHS { - get { - return ResourceManager.GetString("Using_ATA_READ_DMA_command_CHS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ DMA command (LBA).. - /// - public static string Using_ATA_READ_DMA_command_LBA { - get { - return ResourceManager.GetString("Using_ATA_READ_DMA_command_LBA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ DMA command with retries (CHS).. - /// - public static string Using_ATA_READ_DMA_command_with_retries_CHS { - get { - return ResourceManager.GetString("Using_ATA_READ_DMA_command_with_retries_CHS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ DMA command with retries (LBA).. - /// - public static string Using_ATA_READ_DMA_command_with_retries_LBA { - get { - return ResourceManager.GetString("Using_ATA_READ_DMA_command_with_retries_LBA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ DMA EXT command.. - /// - public static string Using_ATA_READ_DMA_EXT_command { - get { - return ResourceManager.GetString("Using_ATA_READ_DMA_EXT_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using ATA READ EXT command.. - /// - public static string Using_ATA_READ_EXT_command { - get { - return ResourceManager.GetString("Using_ATA_READ_EXT_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using HL-DT-ST raw DVD reading.. - /// - public static string Using_HL_DT_ST_raw_DVD_reading { - get { - return ResourceManager.GetString("Using_HL_DT_ST_raw_DVD_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using MMC READ CD command.. - /// - public static string Using_MMC_READ_CD_command { - get { - return ResourceManager.GetString("Using_MMC_READ_CD_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using Plextor raw DVD reading.. - /// - public static string Using_Plextor_raw_DVD_reading { - get { - return ResourceManager.GetString("Using_Plextor_raw_DVD_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SCSI READ (10) command.. - /// - public static string Using_SCSI_READ_10_command { - get { - return ResourceManager.GetString("Using_SCSI_READ_10_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SCSI READ (12) command.. - /// - public static string Using_SCSI_READ_12_command { - get { - return ResourceManager.GetString("Using_SCSI_READ_12_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SCSI READ (16) command.. - /// - public static string Using_SCSI_READ_16_command { - get { - return ResourceManager.GetString("Using_SCSI_READ_16_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SCSI READ (6) command.. - /// - public static string Using_SCSI_READ_6_command { - get { - return ResourceManager.GetString("Using_SCSI_READ_6_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SCSI READ LONG (10) command.. - /// - public static string Using_SCSI_READ_LONG_10_command { - get { - return ResourceManager.GetString("Using_SCSI_READ_LONG_10_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SCSI READ LONG (16) command.. - /// - public static string Using_SCSI_READ_LONG_16_command { - get { - return ResourceManager.GetString("Using_SCSI_READ_LONG_16_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SyQuest READ LONG (10) command.. - /// - public static string Using_SyQuest_READ_LONG_10_command { - get { - return ResourceManager.GetString("Using_SyQuest_READ_LONG_10_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using SyQuest READ LONG (6) command.. - /// - public static string Using_SyQuest_READ_LONG_6_command { - get { - return ResourceManager.GetString("Using_SyQuest_READ_LONG_6_command", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version: {0}. - /// - public static string Version_0 { - get { - return ResourceManager.GetString("Version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Video layer 0 size: {0} sectors. - /// - public static string Video_layer_0_size_0_sectors { - get { - return ResourceManager.GetString("Video_layer_0_size_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Video layer 1 size: {0} sectors. - /// - public static string Video_layer_1_size_0_sectors { - get { - return ResourceManager.GetString("Video_layer_1_size_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Video layer 1 size. - /// - public static string Video_layer_one_size { - get { - return ResourceManager.GetString("Video_layer_one_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Video layer 0 size. - /// - public static string Video_layer_zero_size { - get { - return ResourceManager.GetString("Video_layer_zero_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Video partition is too big, did lock work? Trying cold values.. - /// - public static string Video_partition_is_too_big_did_lock_work_Trying_cold_values { - get { - return ResourceManager.GetString("Video_partition_is_too_big_did_lock_work_Trying_cold_values", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Video partition total size: {0} sectors. - /// - public static string Video_partition_total_size_0_sectors { - get { - return ResourceManager.GetString("Video_partition_total_size_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VideoNow Color frame is offset {0} bytes.. - /// - public static string VideoNow_Color_frame_is_offset_0_bytes { - get { - return ResourceManager.GetString("VideoNow_Color_frame_is_offset_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume contains {0} files. - /// - public static string Volume_contains_0_files { - get { - return ResourceManager.GetString("Volume_contains_0_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume created on {0:F}. - /// - public static string Volume_created_on_0 { - get { - return ResourceManager.GetString("Volume_created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume effective from {0:F}. - /// - public static string Volume_effective_from_0 { - get { - return ResourceManager.GetString("Volume_effective_from_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume expired on {0:F}. - /// - public static string Volume_expired_on_0 { - get { - return ResourceManager.GetString("Volume_expired_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} clusters free ({1:P}). - /// - public static string Volume_has_0_clusters_free_1 { - get { - return ResourceManager.GetString("Volume_has_0_clusters_free_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} clusters of {1} bytes each (total of {2} bytes). - /// - public static string Volume_has_0_clusters_of_1_bytes_each_total_of_2_bytes { - get { - return ResourceManager.GetString("Volume_has_0_clusters_of_1_bytes_each_total_of_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last backed up on {0:F}. - /// - public static string Volume_last_backed_up_on_0 { - get { - return ResourceManager.GetString("Volume_last_backed_up_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last modified on {0:F}. - /// - public static string Volume_last_modified_on_0 { - get { - return ResourceManager.GetString("Volume_last_modified_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume name: {0}. - /// - public static string Volume_name_0 { - get { - return ResourceManager.GetString("Volume_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume serial: {0}. - /// - public static string Volume_serial_0 { - get { - return ResourceManager.GetString("Volume_serial_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume set identifier: {0}. - /// - public static string Volume_set_identifier_0 { - get { - return ResourceManager.GetString("Volume_set_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Waiting 5 seconds.... - /// - public static string Waiting_5_seconds { - get { - return ResourceManager.GetString("Waiting_5_seconds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Waiting for drive to become ready. - /// - public static string Waiting_for_drive_to_become_ready { - get { - return ResourceManager.GetString("Waiting_for_drive_to_become_ready", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to WARNING: Could not find Lead-Out start, will try to read up to 360000 sectors, probably will fail before.... - /// public static string WARNING_Could_not_find_Lead_Out_start_will_try_to_read_up_to { get { return ResourceManager.GetString("WARNING_Could_not_find_Lead_Out_start_will_try_to_read_up_to", resourceCulture); } } - /// - /// Looks up a localized string similar to WARNING: If disc says CD+G, CD+EG, CD-MIDI, CD Graphics or CD Enhanced Graphics, dump will be incorrect!. - /// - public static string WARNING_If_disc_says_CDG_CDEG_CDMIDI_dump_will_be_incorrect { + public static string Trimming_skipped_sectors { get { - return ResourceManager.GetString("WARNING_If_disc_says_CDG_CDEG_CDMIDI_dump_will_be_incorrect", resourceCulture); + return ResourceManager.GetString("Trimming_skipped_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Was created with {0}. - /// - public static string Was_created_with_0 { + public static string Trimming_sector_0 { get { - return ResourceManager.GetString("Was_created_with_0", resourceCulture); + return ResourceManager.GetString("Trimming_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Was created with {0} version {1}. - /// - public static string Was_created_with_0_version_1 { + public static string Trimming_finished_in_0 { get { - return ResourceManager.GetString("Was_created_with_0_version_1", resourceCulture); + return ResourceManager.GetString("Trimming_finished_in_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Was created with [italic]{0}[/] version [italic]{1}[/]. - /// - public static string Was_created_with_0_version_1_WithMarkup { + public static string Could_not_read { get { - return ResourceManager.GetString("Was_created_with_0_version_1_WithMarkup", resourceCulture); + return ResourceManager.GetString("Could_not_read", resourceCulture); } } - /// - /// Looks up a localized string similar to Was created with [italic]{0}[/]. - /// - public static string Was_created_with_0_WithMarkup { + public static string Retrode_partition_not_recognized_not_dumping { get { - return ResourceManager.GetString("Was_created_with_0_WithMarkup", resourceCulture); + return ResourceManager.GetString("Retrode_partition_not_recognized_not_dumping", resourceCulture); } } - /// - /// Looks up a localized string similar to Whole device. - /// - public static string Whole_device { + public static string Reading_root_directory_in_sector_0 { get { - return ResourceManager.GetString("Whole_device", resourceCulture); + return ResourceManager.GetString("Reading_root_directory_in_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing {0} to {1}. - /// - public static string Writing_0_to_1 { + public static string No_cartridge_found_not_dumping { get { - return ResourceManager.GetString("Writing_0_to_1", resourceCulture); + return ResourceManager.GetString("No_cartridge_found_not_dumping", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing metadata sidecar. - /// - public static string Writing_metadata_sidecar { + public static string The_specified_format_does_not_support_the_inserted_cartridge { get { - return ResourceManager.GetString("Writing_metadata_sidecar", resourceCulture); + return ResourceManager.GetString("The_specified_format_does_not_support_the_inserted_cartridge", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing Middle Zone D (empty).. - /// - public static string Writing_Middle_Zone_D_empty { + public static string Cartridge_has_0_bytes_1_GiB { get { - return ResourceManager.GetString("Writing_Middle_Zone_D_empty", resourceCulture); + return ResourceManager.GetString("Cartridge_has_0_bytes_1_GiB", resourceCulture); + } + } + + public static string Cartridge_has_0_bytes_1_MiB { + get { + return ResourceManager.GetString("Cartridge_has_0_bytes_1_MiB", resourceCulture); + } + } + + public static string Cartridge_has_0_bytes_1_KiB { + get { + return ResourceManager.GetString("Cartridge_has_0_bytes_1_KiB", resourceCulture); + } + } + + public static string Cartridge_has_0_bytes { + get { + return ResourceManager.GetString("Cartridge_has_0_bytes", resourceCulture); + } + } + + public static string Error_0_creating_output_image_not_continuing { + get { + return ResourceManager.GetString("Error_0_creating_output_image_not_continuing", resourceCulture); + } + } + + public static string Reading_byte_0_of_1_2 { + get { + return ResourceManager.GetString("Reading_byte_0_of_1_2", resourceCulture); + } + } + + public static string Skipping_0_bytes_from_errored_byte_1 { + get { + return ResourceManager.GetString("Skipping_0_bytes_from_errored_byte_1", resourceCulture); + } + } + + public static string Image_is_not_writable_aborting { + get { + return ResourceManager.GetString("Image_is_not_writable_aborting", resourceCulture); + } + } + + public static string Could_not_detect_capacity { + get { + return ResourceManager.GetString("Could_not_detect_capacity", resourceCulture); + } + } + + public static string ERROR_Unable_to_read_medium_or_empty_medium_present { + get { + return ResourceManager.GetString("ERROR_Unable_to_read_medium_or_empty_medium_present", resourceCulture); + } + } + + public static string Unable_to_read_medium_or_empty_medium_present { + get { + return ResourceManager.GetString("Unable_to_read_medium_or_empty_medium_present", resourceCulture); + } + } + + public static string Media_detected_as_MemoryStick_Pro_Duo { + get { + return ResourceManager.GetString("Media_detected_as_MemoryStick_Pro_Duo", resourceCulture); + } + } + + public static string Media_detected_as_MemoryStick_Duo { + get { + return ResourceManager.GetString("Media_detected_as_MemoryStick_Duo", resourceCulture); + } + } + + public static string Correctly_retried_block_0_in_pass_1 { + get { + return ResourceManager.GetString("Correctly_retried_block_0_in_pass_1", resourceCulture); + } + } + + public static string Creating_sidecar { + get { + return ResourceManager.GetString("Creating_sidecar", resourceCulture); + } + } + + public static string Error_0_opening_created_image { + get { + return ResourceManager.GetString("Error_0_opening_created_image", resourceCulture); + } + } + + public static string Sidecar_created_in_0 { + get { + return ResourceManager.GetString("Sidecar_created_in_0", resourceCulture); + } + } + + public static string Average_checksum_speed_0 { + get { + return ResourceManager.GetString("Average_checksum_speed_0", resourceCulture); + } + } + + public static string Found_filesystem_0_at_sector_1 { + get { + return ResourceManager.GetString("Found_filesystem_0_at_sector_1", resourceCulture); + } + } + + public static string Selected_output_format_does_not_support_MemoryStick_Duo_or_UMD_cannot_dump { + get { + return ResourceManager.GetString("Selected_output_format_does_not_support_MemoryStick_Duo_or_UMD_cannot_dump", resourceCulture); + } + } + + public static string Checking_if_media_is_UMD_or_MemoryStick { + get { + return ResourceManager.GetString("Checking_if_media_is_UMD_or_MemoryStick", resourceCulture); + } + } + + public static string Could_not_get_MODE_SENSE { + get { + return ResourceManager.GetString("Could_not_get_MODE_SENSE", resourceCulture); + } + } + + public static string Could_not_decode_MODE_SENSE { + get { + return ResourceManager.GetString("Could_not_decode_MODE_SENSE", resourceCulture); + } + } + + public static string FAT_starts_at_sector_0_and_runs_for_1_sectors { + get { + return ResourceManager.GetString("FAT_starts_at_sector_0_and_runs_for_1_sectors", resourceCulture); + } + } + + public static string Reading_FAT { + get { + return ResourceManager.GetString("Reading_FAT", resourceCulture); + } + } + + public static string Traversing_FAT { + get { + return ResourceManager.GetString("Traversing_FAT", resourceCulture); + } + } + + public static string The_specified_image_format_cannot_represent_optical_discs { + get { + return ResourceManager.GetString("The_specified_image_format_cannot_represent_optical_discs", resourceCulture); + } + } + + public static string Device_reports_0_bytes_per_physical_block { + get { + return ResourceManager.GetString("Device_reports_0_bytes_per_physical_block", resourceCulture); + } + } + + public static string Media_part_number_is_0 { + get { + return ResourceManager.GetString("Media_part_number_is_0", resourceCulture); + } + } + + public static string Error_retrieving_CMI_for_sector_0 { + get { + return ResourceManager.GetString("Error_retrieving_CMI_for_sector_0", resourceCulture); + } + } + + public static string Error_retrieving_title_key_for_sector_0 { + get { + return ResourceManager.GetString("Error_retrieving_title_key_for_sector_0", resourceCulture); + } + } + + public static string INSITE_floptical_drives_get_crazy_on_the_SCSI_bus_when_an_error_is_found { + get { + return ResourceManager.GetString("INSITE_floptical_drives_get_crazy_on_the_SCSI_bus_when_an_error_is_found", resourceCulture); + } + } + + public static string Initializing_reader { + get { + return ResourceManager.GetString("Initializing_reader", resourceCulture); + } + } + + public static string Requesting_MODE_SENSE_10 { + get { + return ResourceManager.GetString("Requesting_MODE_SENSE_10", resourceCulture); + } + } + + public static string Requesting_MODE_SENSE_6 { + get { + return ResourceManager.GetString("Requesting_MODE_SENSE_6", resourceCulture); + } + } + + public static string MiniDisc_albums_NetMD_discs_or_user_written_audio_MiniDisc_cannot_be_dumped { + get { + return ResourceManager.GetString("MiniDisc_albums_NetMD_discs_or_user_written_audio_MiniDisc_cannot_be_dumped", resourceCulture); + } + } + + public static string ERROR_Cannot_find_correct_read_command_0 { + get { + return ResourceManager.GetString("ERROR_Cannot_find_correct_read_command_0", resourceCulture); + } + } + + public static string Unable_to_read_medium { + get { + return ResourceManager.GetString("Unable_to_read_medium", resourceCulture); + } + } + + public static string ERROR_Cannot_get_blocks_to_read_0 { + get { + return ResourceManager.GetString("ERROR_Cannot_get_blocks_to_read_0", resourceCulture); + } + } + + public static string SCSI_medium_type_0 { + get { + return ResourceManager.GetString("SCSI_medium_type_0", resourceCulture); + } + } + + public static string SCSI_density_type_0 { + get { + return ResourceManager.GetString("SCSI_density_type_0", resourceCulture); + } + } + + public static string SCSI_floppy_mode_page_present_0 { + get { + return ResourceManager.GetString("SCSI_floppy_mode_page_present_0", resourceCulture); + } + } + + public static string Device_doesnt_seem_capable_of_reading_raw_data_from_media { + get { + return ResourceManager.GetString("Device_doesnt_seem_capable_of_reading_raw_data_from_media", resourceCulture); + } + } + + public static string Device_is_capable_of_reading_raw_data_but_Ive_been_unable_to_guess_correct_sector_size { + get { + return ResourceManager.GetString("Device_is_capable_of_reading_raw_data_but_Ive_been_unable_to_guess_correct_sector" + + "_size", resourceCulture); + } + } + + public static string If_you_want_to_continue_reading_cooked_data_when_raw_is_not_available_use_the_force_option { + get { + return ResourceManager.GetString("If_you_want_to_continue_reading_cooked_data_when_raw_is_not_available_use_the_for" + + "ce_option", resourceCulture); + } + } + + public static string Continuing_dumping_cooked_data { + get { + return ResourceManager.GetString("Continuing_dumping_cooked_data", resourceCulture); + } + } + + public static string Reading_0_raw_bytes_1_cooked_bytes_per_sector { + get { + return ResourceManager.GetString("Reading_0_raw_bytes_1_cooked_bytes_per_sector", resourceCulture); + } + } + + public static string Output_format_does_not_support_0 { + get { + return ResourceManager.GetString("Output_format_does_not_support_0", resourceCulture); + } + } + + public static string Several_media_tags_not_supported_continuing { + get { + return ResourceManager.GetString("Several_media_tags_not_supported_continuing", resourceCulture); + } + } + + public static string Several_media_tags_not_supported_not_continuing { + get { + return ResourceManager.GetString("Several_media_tags_not_supported_not_continuing", resourceCulture); + } + } + + public static string Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_continuing { + get { + return ResourceManager.GetString("Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_continuing", resourceCulture); + } + } + + public static string Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_not_continuing { + get { + return ResourceManager.GetString("Image_does_not_support_multiple_sessions_in_non_Compact_Disc_dumps_not_continuing" + + "", resourceCulture); + } + } + + public static string Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_continuing { + get { + return ResourceManager.GetString("Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_continuing", resourceCulture); + } + } + + public static string Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_not_continuing { + get { + return ResourceManager.GetString("Image_does_not_support_multiple_tracks_in_non_Compact_Disc_dumps_not_continuing", resourceCulture); + } + } + + public static string Setting_geometry_to_0_cylinders_1_heads_2_sectors_per_track { + get { + return ResourceManager.GetString("Setting_geometry_to_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); + } + } + + public static string Creating_single_track_as_could_not_retrieve_track_list_from_drive { + get { + return ResourceManager.GetString("Creating_single_track_as_could_not_retrieve_track_list_from_drive", resourceCulture); + } + } + + public static string Setting_speed_to_MAX { + get { + return ResourceManager.GetString("Setting_speed_to_MAX", resourceCulture); + } + } + + public static string Setting_speed_to_0_x { + get { + return ResourceManager.GetString("Setting_speed_to_0_x", resourceCulture); + } + } + + public static string Title_keys_dumping_is_enabled_This_will_be_very_slow { + get { + return ResourceManager.GetString("Title_keys_dumping_is_enabled_This_will_be_very_slow", resourceCulture); + } + } + + public static string Reading_USB_descriptors { + get { + return ResourceManager.GetString("Reading_USB_descriptors", resourceCulture); + } + } + + public static string Cannot_write_USB_descriptors { + get { + return ResourceManager.GetString("Cannot_write_USB_descriptors", resourceCulture); + } + } + + public static string Requesting_ATAPI_IDENTIFY_PACKET_DEVICE { + get { + return ResourceManager.GetString("Requesting_ATAPI_IDENTIFY_PACKET_DEVICE", resourceCulture); + } + } + + public static string Cannot_write_ATAPI_IDENTIFY_PACKET_DEVICE { + get { + return ResourceManager.GetString("Cannot_write_ATAPI_IDENTIFY_PACKET_DEVICE", resourceCulture); + } + } + + public static string Requesting_SCSI_INQUIRY { + get { + return ResourceManager.GetString("Requesting_SCSI_INQUIRY", resourceCulture); + } + } + + public static string Cannot_write_SCSI_INQUIRY { + get { + return ResourceManager.GetString("Cannot_write_SCSI_INQUIRY", resourceCulture); + } + } + + public static string Cannot_write_SCSI_MODE_SENSE_10 { + get { + return ResourceManager.GetString("Cannot_write_SCSI_MODE_SENSE_10", resourceCulture); + } + } + + public static string Cannot_write_SCSI_MODE_SENSE_6 { + get { + return ResourceManager.GetString("Cannot_write_SCSI_MODE_SENSE_6", resourceCulture); + } + } + + public static string Found_blank_block_0_in_pass_1 { + get { + return ResourceManager.GetString("Found_blank_block_0_in_pass_1", resourceCulture); + } + } + + public static string Retrying_title_key_0_pass_1_forward { + get { + return ResourceManager.GetString("Retrying_title_key_0_pass_1_forward", resourceCulture); + } + } + + public static string Retrying_title_key_0_pass_1_reverse { + get { + return ResourceManager.GetString("Retrying_title_key_0_pass_1_reverse", resourceCulture); + } + } + + public static string Correctly_retried_title_key_0_in_pass_1 { + get { + return ResourceManager.GetString("Correctly_retried_title_key_0_in_pass_1", resourceCulture); + } + } + + public static string The_current_environment_doesn_t_support_the_medium_scan_command { + get { + return ResourceManager.GetString("The_current_environment_doesn_t_support_the_medium_scan_command", resourceCulture); + } + } + + public static string MEDIUM_SCAN_github_plead_message { + get { + return ResourceManager.GetString("MEDIUM_SCAN_github_plead_message", resourceCulture); + } + } + + public static string Scanning_for_0_written_blocks_starting_in_block_1 { + get { + return ResourceManager.GetString("Scanning_for_0_written_blocks_starting_in_block_1", resourceCulture); + } + } + + public static string Scanning_for_0_blank_blocks_starting_in_block_1 { + get { + return ResourceManager.GetString("Scanning_for_0_blank_blocks_starting_in_block_1", resourceCulture); + } + } + + public static string Cannot_dump_empty_media { + get { + return ResourceManager.GetString("Cannot_dump_empty_media", resourceCulture); + } + } + + public static string Found_blank_block_0 { + get { + return ResourceManager.GetString("Found_blank_block_0", resourceCulture); + } + } + + public static string Raw_dumping_not_yet_supported_in_ATA_devices_continuing { + get { + return ResourceManager.GetString("Raw_dumping_not_yet_supported_in_ATA_devices_continuing", resourceCulture); + } + } + + public static string Raw_dumping_not_yet_supported_in_ATA_devices_aborting { + get { + return ResourceManager.GetString("Raw_dumping_not_yet_supported_in_ATA_devices_aborting", resourceCulture); + } + } + + public static string Requesting_ATA_IDENTIFY_DEVICE { + get { + return ResourceManager.GetString("Requesting_ATA_IDENTIFY_DEVICE", resourceCulture); + } + } + + public static string ERROR_Cannot_get_block_size_0 { + get { + return ResourceManager.GetString("ERROR_Cannot_get_block_size_0", resourceCulture); + } + } + + public static string Device_reports_0_cylinders_1_heads_2_sectors_per_track { + get { + return ResourceManager.GetString("Device_reports_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); + } + } + + public static string Output_format_does_not_support_USB_descriptors { + get { + return ResourceManager.GetString("Output_format_does_not_support_USB_descriptors", resourceCulture); + } + } + + public static string Output_format_does_not_support_PCMCIA_CIS_descriptors { + get { + return ResourceManager.GetString("Output_format_does_not_support_PCMCIA_CIS_descriptors", resourceCulture); + } + } + + public static string Dump_Ata_Output_format_does_not_support_ATA_IDENTIFY_ { + get { + return ResourceManager.GetString("Dump_Ata_Output_format_does_not_support_ATA_IDENTIFY_", resourceCulture); + } + } + + public static string Reading_cylinder_0_head_1_sector_2_3 { + get { + return ResourceManager.GetString("Reading_cylinder_0_head_1_sector_2_3", resourceCulture); + } + } + + public static string Error_reading_cylinder_0_head_1_sector_2 { + get { + return ResourceManager.GetString("Error_reading_cylinder_0_head_1_sector_2", resourceCulture); + } + } + + public static string Reading_PCMCIA_CIS { + get { + return ResourceManager.GetString("Reading_PCMCIA_CIS", resourceCulture); + } + } + + public static string Decoding_PCMCIA_CIS { + get { + return ResourceManager.GetString("Decoding_PCMCIA_CIS", resourceCulture); + } + } + + public static string Unable_to_communicate_with_ATA_device { + get { + return ResourceManager.GetString("Unable_to_communicate_with_ATA_device", resourceCulture); + } + } + + public static string Device_not_in_database { + get { + return ResourceManager.GetString("Device_not_in_database", resourceCulture); + } + } + + public static string Device_in_database_since_0 { + get { + return ResourceManager.GetString("Device_in_database_since_0", resourceCulture); + } + } + + public static string Could_not_detect_image_format { + get { + return ResourceManager.GetString("Could_not_detect_image_format", resourceCulture); + } + } + + public static string Device_reports_current_profile_is_0 { + get { + return ResourceManager.GetString("Device_reports_current_profile_is_0", resourceCulture); + } + } + + public static string Device_reports_disc_has_0_blocks { + get { + return ResourceManager.GetString("Device_reports_disc_has_0_blocks", resourceCulture); + } + } + + public static string Reading_Physical_Format_Information { + get { + return ResourceManager.GetString("Reading_Physical_Format_Information", resourceCulture); + } + } + + public static string Dumping_Nintendo_GameCube_or_Wii_discs_is_not_yet_implemented { + get { + return ResourceManager.GetString("Dumping_Nintendo_GameCube_or_Wii_discs_is_not_yet_implemented", resourceCulture); + } + } + + public static string Reading_Disc_Manufacturing_Information { + get { + return ResourceManager.GetString("Reading_Disc_Manufacturing_Information", resourceCulture); + } + } + + public static string Dumping_Xbox_Game_Discs_requires_a_drive_with_Kreon_firmware { + get { + return ResourceManager.GetString("Dumping_Xbox_Game_Discs_requires_a_drive_with_Kreon_firmware", resourceCulture); + } + } + + public static string Reading_Lead_in_Copyright_Information { + get { + return ResourceManager.GetString("Reading_Lead_in_Copyright_Information", resourceCulture); + } + } + + public static string Drive_reports_no_copy_protection_on_disc { + get { + return ResourceManager.GetString("Drive_reports_no_copy_protection_on_disc", resourceCulture); + } + } + + public static string Drive_reports_the_disc_uses_copy_protection_The_dump_will_be_incorrect_unless_decryption_is_enabled { + get { + return ResourceManager.GetString("Drive_reports_the_disc_uses_copy_protection_The_dump_will_be_incorrect_unless_dec" + + "ryption_is_enabled", resourceCulture); + } + } + + public static string Drive_reports_disc_uses_CSS_copy_protection { + get { + return ResourceManager.GetString("Drive_reports_disc_uses_CSS_copy_protection", resourceCulture); + } + } + + public static string Reading_disc_key { + get { + return ResourceManager.GetString("Reading_disc_key", resourceCulture); + } + } + + public static string Disc_and_drive_authentication_succeeded { + get { + return ResourceManager.GetString("Disc_and_drive_authentication_succeeded", resourceCulture); + } + } + + public static string Disc_and_drive_regions_match { + get { + return ResourceManager.GetString("Disc_and_drive_regions_match", resourceCulture); + } + } + + public static string Disc_and_drive_regions_do_not_match_The_dump_will_be_incorrect { + get { + return ResourceManager.GetString("Disc_and_drive_regions_do_not_match_The_dump_will_be_incorrect", resourceCulture); + } + } + + public static string Decrypting_disc_key { + get { + return ResourceManager.GetString("Decrypting_disc_key", resourceCulture); + } + } + + public static string Decryption_of_disc_key_succeeded { + get { + return ResourceManager.GetString("Decryption_of_disc_key_succeeded", resourceCulture); + } + } + + public static string Decryption_of_disc_key_failed { + get { + return ResourceManager.GetString("Decryption_of_disc_key_failed", resourceCulture); + } + } + + public static string Drive_reports_0_copy_protection_not_yet_supported_dump_incorrect { + get { + return ResourceManager.GetString("Drive_reports_0_copy_protection_not_yet_supported_dump_incorrect", resourceCulture); + } + } + + public static string Reading_Burst_Cutting_Area { + get { + return ResourceManager.GetString("Reading_Burst_Cutting_Area", resourceCulture); + } + } + + public static string Reading_Disc_Description_Structure { + get { + return ResourceManager.GetString("Reading_Disc_Description_Structure", resourceCulture); + } + } + + public static string Reading_Spare_Area_Information { + get { + return ResourceManager.GetString("Reading_Spare_Area_Information", resourceCulture); + } + } + + public static string Reading_Pre_Recorded_Information { + get { + return ResourceManager.GetString("Reading_Pre_Recorded_Information", resourceCulture); + } + } + + public static string Reading_Media_Identifier { + get { + return ResourceManager.GetString("Reading_Media_Identifier", resourceCulture); + } + } + + public static string Reading_Recordable_Physical_Information { + get { + return ResourceManager.GetString("Reading_Recordable_Physical_Information", resourceCulture); + } + } + + public static string Reading_ADdress_In_Pregroove { + get { + return ResourceManager.GetString("Reading_ADdress_In_Pregroove", resourceCulture); + } + } + + public static string Reading_Disc_Control_Blocks { + get { + return ResourceManager.GetString("Reading_Disc_Control_Blocks", resourceCulture); + } + } + + public static string Reading_Disc_Definition_Structure { + get { + return ResourceManager.GetString("Reading_Disc_Definition_Structure", resourceCulture); + } + } + + public static string Resuming_CHS_devices_is_currently_not_supported { + get { + return ResourceManager.GetString("Resuming_CHS_devices_is_currently_not_supported", resourceCulture); + } + } + + public static string Resume_specifies_tape_but_device_is_not_tape { + get { + return ResourceManager.GetString("Resume_specifies_tape_but_device_is_not_tape", resourceCulture); + } + } + + public static string Resume_specifies_not_tape_but_device_is_tape { + get { + return ResourceManager.GetString("Resume_specifies_not_tape_but_device_is_tape", resourceCulture); + } + } + + public static string Resume_specifies_removable_but_device_is_non_removable { + get { + return ResourceManager.GetString("Resume_specifies_removable_but_device_is_non_removable", resourceCulture); + } + } + + public static string Resume_specifies_non_removable_but_device_is_removable { + get { + return ResourceManager.GetString("Resume_specifies_non_removable_but_device_is_removable", resourceCulture); + } + } + + public static string Resume_file_different_number_of_blocks_not_continuing { + get { + return ResourceManager.GetString("Resume_file_different_number_of_blocks_not_continuing", resourceCulture); + } + } + + public static string Resume_file_different_manufacturer_not_continuing { + get { + return ResourceManager.GetString("Resume_file_different_manufacturer_not_continuing", resourceCulture); + } + } + + public static string Resume_file_different_model_not_continuing { + get { + return ResourceManager.GetString("Resume_file_different_model_not_continuing", resourceCulture); + } + } + + public static string Resume_file_different_serial_number_not_continuing { + get { + return ResourceManager.GetString("Resume_file_different_serial_number_not_continuing", resourceCulture); + } + } + + public static string Resume_file_different_firmware_revision_not_continuing { + get { + return ResourceManager.GetString("Resume_file_different_firmware_revision_not_continuing", resourceCulture); + } + } + + public static string Found_corrupt_resume_file_cannot_continue { + get { + return ResourceManager.GetString("Found_corrupt_resume_file_cannot_continue", resourceCulture); + } + } + + public static string Please_insert_media_in_drive { + get { + return ResourceManager.GetString("Please_insert_media_in_drive", resourceCulture); + } + } + + public static string Error_testing_unit_was_ready_0 { + get { + return ResourceManager.GetString("Error_testing_unit_was_ready_0", resourceCulture); + } + } + + public static string Unknown_sense_testing_unit_was_ready { + get { + return ResourceManager.GetString("Unknown_sense_testing_unit_was_ready", resourceCulture); + } + } + + public static string Tapes_cannot_be_dumped_raw { + get { + return ResourceManager.GetString("Tapes_cannot_be_dumped_raw", resourceCulture); + } + } + + public static string The_specified_image_format_cannot_represent_streaming_tapes { + get { + return ResourceManager.GetString("The_specified_image_format_cannot_represent_streaming_tapes", resourceCulture); + } + } + + public static string Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Continuing { + get { + return ResourceManager.GetString("Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Continuing", resourceCulture); + } + } + + public static string Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Aborting { + get { + return ResourceManager.GetString("Raw_dumping_is_not_supported_in_MMC_or_SD_devices_Aborting", resourceCulture); + } + } + + public static string Reading_CSD { + get { + return ResourceManager.GetString("Reading_CSD", resourceCulture); + } + } + + public static string Reading_Extended_CSD { + get { + return ResourceManager.GetString("Reading_Extended_CSD", resourceCulture); + } + } + + public static string Reading_OCR { + get { + return ResourceManager.GetString("Reading_OCR", resourceCulture); + } + } + + public static string Reading_SCR { + get { + return ResourceManager.GetString("Reading_SCR", resourceCulture); + } + } + + public static string Reading_CID { + get { + return ResourceManager.GetString("Reading_CID", resourceCulture); + } + } + + public static string Unable_to_get_device_size { + get { + return ResourceManager.GetString("Unable_to_get_device_size", resourceCulture); + } + } + + public static string Device_reports_0_blocks { + get { + return ResourceManager.GetString("Device_reports_0_blocks", resourceCulture); + } + } + + public static string Error_0_reopening_device { + get { + return ResourceManager.GetString("Error_0_reopening_device", resourceCulture); + } + } + + public static string ERROR_Cannot_get_blocks_to_read_device_error_0 { + get { + return ResourceManager.GetString("ERROR_Cannot_get_blocks_to_read_device_error_0", resourceCulture); + } + } + + public static string DumBuffered_OS_reads_are_not_working_trying_direct_commands { + get { + return ResourceManager.GetString("DumBuffered_OS_reads_are_not_working_trying_direct_commands", resourceCulture); + } + } + + public static string ERROR_Could_not_read_from_device_device_error_0 { + get { + return ResourceManager.GetString("ERROR_Could_not_read_from_device_device_error_0", resourceCulture); + } + } + + public static string Device_error_0_trying_to_read_from_device { + get { + return ResourceManager.GetString("Device_error_0_trying_to_read_from_device", resourceCulture); + } + } + + public static string Device_can_read_0_blocks_at_a_time_using_OS_buffered_reads { + get { + return ResourceManager.GetString("Device_can_read_0_blocks_at_a_time_using_OS_buffered_reads", resourceCulture); + } + } + + public static string Device_can_read_0_blocks_using_sequential_commands { + get { + return ResourceManager.GetString("Device_can_read_0_blocks_using_sequential_commands", resourceCulture); + } + } + + public static string Cannot_write_CID_to_output_image { + get { + return ResourceManager.GetString("Cannot_write_CID_to_output_image", resourceCulture); + } + } + + public static string Cannot_write_CSD_to_output_image { + get { + return ResourceManager.GetString("Cannot_write_CSD_to_output_image", resourceCulture); + } + } + + public static string Cannot_write_Extended_CSD_to_output_image { + get { + return ResourceManager.GetString("Cannot_write_Extended_CSD_to_output_image", resourceCulture); + } + } + + public static string Cannot_write_OCR_to_output_image { + get { + return ResourceManager.GetString("Cannot_write_OCR_to_output_image", resourceCulture); + } + } + + public static string Cannot_write_SCR_to_output_image { + get { + return ResourceManager.GetString("Cannot_write_SCR_to_output_image", resourceCulture); + } + } + + public static string Drive_has_status_error_please_correct_Sense_follows { + get { + return ResourceManager.GetString("Drive_has_status_error_please_correct_Sense_follows", resourceCulture); + } + } + + public static string Rewinding_please_wait { + get { + return ResourceManager.GetString("Rewinding_please_wait", resourceCulture); + } + } + + public static string Drive_could_not_rewind_please_correct_Sense_follows { + get { + return ResourceManager.GetString("Drive_could_not_rewind_please_correct_Sense_follows", resourceCulture); + } + } + + public static string Could_not_get_position_Sense_follows { + get { + return ResourceManager.GetString("Could_not_get_position_Sense_follows", resourceCulture); + } + } + + public static string Drive_not_in_partition_0_Rewinding_please_wait { + get { + return ResourceManager.GetString("Drive_not_in_partition_0_Rewinding_please_wait", resourceCulture); + } + } + + public static string Drive_could_not_rewind_to_partition_0_but_no_error_occurred { + get { + return ResourceManager.GetString("Drive_could_not_rewind_to_partition_0_but_no_error_occurred", resourceCulture); + } + } + + public static string Drive_could_not_return_back_Sense_follows { + get { + return ResourceManager.GetString("Drive_could_not_return_back_Sense_follows", resourceCulture); + } + } + + public static string Drive_could_not_read_Sense_follows { + get { + return ResourceManager.GetString("Drive_could_not_read_Sense_follows", resourceCulture); + } + } + + public static string Blocksize_changed_to_0_bytes_at_block_1 { + get { + return ResourceManager.GetString("Blocksize_changed_to_0_bytes_at_block_1", resourceCulture); + } + } + + public static string Drive_could_not_go_back_one_block_Sense_follows { + get { + return ResourceManager.GetString("Drive_could_not_go_back_one_block_Sense_follows", resourceCulture); + } + } + + public static string Cannot_read_device_dont_know_why_exiting { + get { + return ResourceManager.GetString("Cannot_read_device_dont_know_why_exiting", resourceCulture); + } + } + + public static string Positioning_tape_to_block_1 { + get { + return ResourceManager.GetString("Positioning_tape_to_block_1", resourceCulture); + } + } + + public static string LOCATE_LONG_works { + get { + return ResourceManager.GetString("LOCATE_LONG_works", resourceCulture); + } + } + + public static string LOCATE_works { + get { + return ResourceManager.GetString("LOCATE_works", resourceCulture); + } + } + + public static string Positioning_tape_to_block_0 { + get { + return ResourceManager.GetString("Positioning_tape_to_block_0", resourceCulture); + } + } + + public static string Could_not_check_current_position_unable_to_resume_If_you_want_to_continue_use_force { + get { + return ResourceManager.GetString("Could_not_check_current_position_unable_to_resume_If_you_want_to_continue_use_for" + + "ce", resourceCulture); + } + } + + public static string Could_not_check_current_position_unable_to_resume_Dumping_from_the_start { + get { + return ResourceManager.GetString("Could_not_check_current_position_unable_to_resume_Dumping_from_the_start", resourceCulture); + } + } + + public static string Current_position_is_not_as_expected_unable_to_resume_If_you_want_to_continue_use_force { + get { + return ResourceManager.GetString("Current_position_is_not_as_expected_unable_to_resume_If_you_want_to_continue_use_" + + "force", resourceCulture); + } + } + + public static string Current_position_is_not_as_expected_unable_to_resume_Dumping_from_the_start { + get { + return ResourceManager.GetString("Current_position_is_not_as_expected_unable_to_resume_Dumping_from_the_start", resourceCulture); + } + } + + public static string Cannot_reposition_tape_unable_to_resume_If_you_want_to_continue_use_force { + get { + return ResourceManager.GetString("Cannot_reposition_tape_unable_to_resume_If_you_want_to_continue_use_force", resourceCulture); + } + } + + public static string Cannot_reposition_tape_unable_to_resume_Dumping_from_the_start { + get { + return ResourceManager.GetString("Cannot_reposition_tape_unable_to_resume_Dumping_from_the_start", resourceCulture); + } + } + + public static string Error_setting_output_image_in_tape_mode_not_continuing { + get { + return ResourceManager.GetString("Error_setting_output_image_in_tape_mode_not_continuing", resourceCulture); + } + } + + public static string Finished_partition_0 { + get { + return ResourceManager.GetString("Finished_partition_0", resourceCulture); + } + } + + public static string Seeking_to_partition_0 { + get { + return ResourceManager.GetString("Seeking_to_partition_0", resourceCulture); + } + } + + public static string Reading_block_0_1 { + get { + return ResourceManager.GetString("Reading_block_0_1", resourceCulture); + } + } + + public static string Cannot_dump_a_blank_tape { + get { + return ResourceManager.GetString("Cannot_dump_a_blank_tape", resourceCulture); + } + } + + public static string Found_end_of_tape_partition { + get { + return ResourceManager.GetString("Found_end_of_tape_partition", resourceCulture); + } + } + + public static string Blank_block_found_end_of_tape { + get { + return ResourceManager.GetString("Blank_block_found_end_of_tape", resourceCulture); + } + } + + public static string Changed_to_file_0_at_block_1 { + get { + return ResourceManager.GetString("Changed_to_file_0_at_block_1", resourceCulture); + } + } + + public static string Drive_could_not_read_block_0_Sense_cannot_be_decoded_look_at_log_for_dump { + get { + return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_cannot_be_decoded_look_at_log_for_dump", resourceCulture); + } + } + + public static string Drive_could_not_read_block_0_Sense_bytes_follow { + get { + return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_bytes_follow", resourceCulture); + } + } + + public static string Drive_could_not_read_block_0_Sense_follow_1_2 { + get { + return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_follow_1_2", resourceCulture); + } + } + + public static string Drive_could_not_read_block_0_Sense_follows { + get { + return ResourceManager.GetString("Drive_could_not_read_block_0_Sense_follows", resourceCulture); + } + } + + public static string Could_not_check_current_position_continuing { + get { + return ResourceManager.GetString("Could_not_check_current_position_continuing", resourceCulture); + } + } + + public static string Current_position_is_not_as_expected_continuing { + get { + return ResourceManager.GetString("Current_position_is_not_as_expected_continuing", resourceCulture); + } + } + + public static string Cannot_position_tape_to_block_0 { + get { + return ResourceManager.GetString("Cannot_position_tape_to_block_0", resourceCulture); + } + } + + public static string Block_0_could_not_be_read { + get { + return ResourceManager.GetString("Block_0_could_not_be_read", resourceCulture); + } + } + + public static string Because_of_commands_sent_dumping_XGD_must_be_administrative_Cannot_continue { + get { + return ResourceManager.GetString("Because_of_commands_sent_dumping_XGD_must_be_administrative_Cannot_continue", resourceCulture); + } + } + + public static string Cannot_dump_XGD_without_administrative_privileges { + get { + return ResourceManager.GetString("Cannot_dump_XGD_without_administrative_privileges", resourceCulture); + } + } + + public static string Cannot_get_disc_capacity { + get { + return ResourceManager.GetString("Cannot_get_disc_capacity", resourceCulture); + } + } + + public static string Cannot_get_PFI { + get { + return ResourceManager.GetString("Cannot_get_PFI", resourceCulture); + } + } + + public static string Reading_Xbox_Security_Sector { + get { + return ResourceManager.GetString("Reading_Xbox_Security_Sector", resourceCulture); + } + } + + public static string Cannot_get_Xbox_Security_Sector_not_continuing { + get { + return ResourceManager.GetString("Cannot_get_Xbox_Security_Sector_not_continuing", resourceCulture); + } + } + + public static string Decoding_Xbox_Security_Sector { + get { + return ResourceManager.GetString("Decoding_Xbox_Security_Sector", resourceCulture); + } + } + + public static string Cannot_decode_Xbox_Security_Sector_not_continuing { + get { + return ResourceManager.GetString("Cannot_decode_Xbox_Security_Sector_not_continuing", resourceCulture); + } + } + + public static string Getting_video_partition_size { + get { + return ResourceManager.GetString("Getting_video_partition_size", resourceCulture); + } + } + + public static string Locking_drive { + get { + return ResourceManager.GetString("Locking_drive", resourceCulture); + } + } + + public static string Cannot_lock_drive_not_continuing { + get { + return ResourceManager.GetString("Cannot_lock_drive_not_continuing", resourceCulture); + } + } + + public static string Video_partition_total_size_0_sectors { + get { + return ResourceManager.GetString("Video_partition_total_size_0_sectors", resourceCulture); + } + } + + public static string Cannot_get_DMI { + get { + return ResourceManager.GetString("Cannot_get_DMI", resourceCulture); + } + } + + public static string Video_partition_is_too_big_did_lock_work_Trying_cold_values { + get { + return ResourceManager.GetString("Video_partition_is_too_big_did_lock_work_Trying_cold_values", resourceCulture); + } + } + + public static string Cannot_get_video_partition_size_not_continuing { + get { + return ResourceManager.GetString("Cannot_get_video_partition_size_not_continuing", resourceCulture); + } + } + + public static string Getting_game_partition_size { + get { + return ResourceManager.GetString("Getting_game_partition_size", resourceCulture); + } + } + + public static string Unlocking_drive_Xtreme_ { + get { + return ResourceManager.GetString("Unlocking_drive_Xtreme_", resourceCulture); + } + } + + public static string Cannot_unlock_drive_not_continuing { + get { + return ResourceManager.GetString("Cannot_unlock_drive_not_continuing", resourceCulture); + } + } + + public static string Game_partition_total_size_0_sectors { + get { + return ResourceManager.GetString("Game_partition_total_size_0_sectors", resourceCulture); + } + } + + public static string Getting_middle_zone_size { + get { + return ResourceManager.GetString("Getting_middle_zone_size", resourceCulture); + } + } + + public static string Unlocking_drive_Wxripper { + get { + return ResourceManager.GetString("Unlocking_drive_Wxripper", resourceCulture); + } + } + + public static string Getting_disc_size { + get { + return ResourceManager.GetString("Getting_disc_size", resourceCulture); + } + } + + public static string Unlocked_total_size_0_sectors { + get { + return ResourceManager.GetString("Unlocked_total_size_0_sectors", resourceCulture); + } + } + + public static string Cannot_decode_PFI { + get { + return ResourceManager.GetString("Cannot_decode_PFI", resourceCulture); } } - /// - /// Looks up a localized string similar to WxRipper PFI's Data Area Start PSN: {0} sectors. - /// public static string WxRipper_PFI_Data_Area_Start_PSN_0_sectors { get { return ResourceManager.GetString("WxRipper_PFI_Data_Area_Start_PSN_0_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to WxRipper PFI's Layer 0 End PSN: {0} sectors. - /// public static string WxRipper_PFI_Layer_0_End_PSN_0_sectors { get { return ResourceManager.GetString("WxRipper_PFI_Layer_0_End_PSN_0_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Xbox 360 DMI. - /// - public static string Xbox_360_DMI { + public static string Video_layer_0_size_0_sectors { get { - return ResourceManager.GetString("Xbox_360_DMI", resourceCulture); + return ResourceManager.GetString("Video_layer_0_size_0_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to [bold]Xbox 360 DMI contained in image:[/]. - /// - public static string Xbox_360_DMI_contained_in_image_WithMarkup { + public static string Video_layer_1_size_0_sectors { get { - return ResourceManager.GetString("Xbox_360_DMI_contained_in_image_WithMarkup", resourceCulture); + return ResourceManager.GetString("Video_layer_1_size_0_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Xbox DMI. - /// - public static string Xbox_DMI { + public static string Middle_zone_size_0_sectors { get { - return ResourceManager.GetString("Xbox_DMI", resourceCulture); + return ResourceManager.GetString("Middle_zone_size_0_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to [bold]Xbox DMI contained in image:[/]. - /// - public static string Xbox_DMI_contained_in_image_WithMarkup { + public static string Game_data_size_0_sectors { get { - return ResourceManager.GetString("Xbox_DMI_contained_in_image_WithMarkup", resourceCulture); + return ResourceManager.GetString("Game_data_size_0_sectors", resourceCulture); + } + } + + public static string Total_size_0_sectors { + get { + return ResourceManager.GetString("Total_size_0_sectors", resourceCulture); + } + } + + public static string Real_layer_break_0 { + get { + return ResourceManager.GetString("Real_layer_break_0", resourceCulture); + } + } + + public static string Cannot_read_medium_aborting_scan { + get { + return ResourceManager.GetString("Cannot_read_medium_aborting_scan", resourceCulture); + } + } + + public static string Using_SCSI_READ_12_command { + get { + return ResourceManager.GetString("Using_SCSI_READ_12_command", resourceCulture); + } + } + + public static string Reading_game_partition { + get { + return ResourceManager.GetString("Reading_game_partition", resourceCulture); + } + } + + public static string Writing_Middle_Zone_D_empty { + get { + return ResourceManager.GetString("Writing_Middle_Zone_D_empty", resourceCulture); + } + } + + public static string Reading_Video_Layer_1 { + get { + return ResourceManager.GetString("Reading_Video_Layer_1", resourceCulture); + } + } + + public static string Error_code_equals_0 { + get { + return ResourceManager.GetString("Error_code_equals_0", resourceCulture); + } + } + + public static string Error_0_querying_ATA_IDENTIFY { + get { + return ResourceManager.GetString("Error_0_querying_ATA_IDENTIFY", resourceCulture); + } + } + + public static string Error_0_querying_ATA_PACKET_IDENTIFY { + get { + return ResourceManager.GetString("Error_0_querying_ATA_PACKET_IDENTIFY", resourceCulture); + } + } + + public static string SCSI_error_0 { + get { + return ResourceManager.GetString("SCSI_error_0", resourceCulture); + } + } + + public static string Unknown_device_type_0_cannot_get_information { + get { + return ResourceManager.GetString("Unknown_device_type_0_cannot_get_information", resourceCulture); + } + } + + public static string Trying_READ_SECTORS_in_CHS_mode { + get { + return ResourceManager.GetString("Trying_READ_SECTORS_in_CHS_mode", resourceCulture); + } + } + + public static string Sense_0_Status_1_Error_2_Length_3 { + get { + return ResourceManager.GetString("Sense_0_Status_1_Error_2_Length_3", resourceCulture); + } + } + + public static string Trying_READ_SECTORS_RETRY_in_CHS_mode { + get { + return ResourceManager.GetString("Trying_READ_SECTORS_RETRY_in_CHS_mode", resourceCulture); + } + } + + public static string Trying_READ_DMA_in_CHS_mode { + get { + return ResourceManager.GetString("Trying_READ_DMA_in_CHS_mode", resourceCulture); + } + } + + public static string Trying_READ_DMA_RETRY_in_CHS_mode { + get { + return ResourceManager.GetString("Trying_READ_DMA_RETRY_in_CHS_mode", resourceCulture); + } + } + + public static string Trying_SEEK_in_CHS_mode { + get { + return ResourceManager.GetString("Trying_SEEK_in_CHS_mode", resourceCulture); + } + } + + public static string Sense_0_Status_1_Error_2 { + get { + return ResourceManager.GetString("Sense_0_Status_1_Error_2", resourceCulture); + } + } + + public static string Trying_READ_SECTORS_in_LBA_mode { + get { + return ResourceManager.GetString("Trying_READ_SECTORS_in_LBA_mode", resourceCulture); + } + } + + public static string Trying_READ_SECTORS_RETRY_in_LBA_mode { + get { + return ResourceManager.GetString("Trying_READ_SECTORS_RETRY_in_LBA_mode", resourceCulture); + } + } + + public static string Trying_READ_DMA_in_LBA_mode { + get { + return ResourceManager.GetString("Trying_READ_DMA_in_LBA_mode", resourceCulture); + } + } + + public static string Trying_READ_DMA_RETRY_in_LBA_mode { + get { + return ResourceManager.GetString("Trying_READ_DMA_RETRY_in_LBA_mode", resourceCulture); + } + } + + public static string Trying_SEEK_in_LBA_mode { + get { + return ResourceManager.GetString("Trying_SEEK_in_LBA_mode", resourceCulture); + } + } + + public static string Trying_READ_SECTORS_in_LBA48_mode { + get { + return ResourceManager.GetString("Trying_READ_SECTORS_in_LBA48_mode", resourceCulture); + } + } + + public static string Trying_READ_DMA_in_LBA48_mode { + get { + return ResourceManager.GetString("Trying_READ_DMA_in_LBA48_mode", resourceCulture); + } + } + + public static string Trying_READ_LONG_in_CHS_mode { + get { + return ResourceManager.GetString("Trying_READ_LONG_in_CHS_mode", resourceCulture); + } + } + + public static string Trying_READ_LONG_RETRY_in_CHS_mode { + get { + return ResourceManager.GetString("Trying_READ_LONG_RETRY_in_CHS_mode", resourceCulture); + } + } + + public static string Trying_READ_LONG_in_LBA_mode { + get { + return ResourceManager.GetString("Trying_READ_LONG_in_LBA_mode", resourceCulture); + } + } + + public static string Trying_READ_LONG_RETRY_in_LBA_mode { + get { + return ResourceManager.GetString("Trying_READ_LONG_RETRY_in_LBA_mode", resourceCulture); + } + } + + public static string Have_you_previously_tried_with_a_GD_ROM_disc_and_did_the_computer_hang_or_crash_Q { + get { + return ResourceManager.GetString("Have_you_previously_tried_with_a_GD_ROM_disc_and_did_the_computer_hang_or_crash_Q" + + "", resourceCulture); + } + } + + public static string Ejecting_disc { + get { + return ResourceManager.GetString("Ejecting_disc", resourceCulture); + } + } + + public static string Please_insert_trap_disc_inside { + get { + return ResourceManager.GetString("Please_insert_trap_disc_inside", resourceCulture); + } + } + + public static string Press_any_key_to_continue { + get { + return ResourceManager.GetString("Press_any_key_to_continue", resourceCulture); + } + } + + public static string Sending_READ_FULL_TOC_to_the_device { + get { + return ResourceManager.GetString("Sending_READ_FULL_TOC_to_the_device", resourceCulture); + } + } + + public static string READ_FULL_TOC_failed { + get { + return ResourceManager.GetString("READ_FULL_TOC_failed", resourceCulture); + } + } + + public static string Could_not_decode_TOC { + get { + return ResourceManager.GetString("Could_not_decode_TOC", resourceCulture); + } + } + + public static string Cannot_find_lead_out { + get { + return ResourceManager.GetString("Cannot_find_lead_out", resourceCulture); + } + } + + public static string Trap_disc_shows_0_sectors { + get { + return ResourceManager.GetString("Trap_disc_shows_0_sectors", resourceCulture); + } + } + + public static string Trap_disc_doesnt_have_enough_sectors { + get { + return ResourceManager.GetString("Trap_disc_doesnt_have_enough_sectors", resourceCulture); + } + } + + public static string Stopping_motor { + get { + return ResourceManager.GetString("Stopping_motor", resourceCulture); + } + } + + public static string Please_MANUALLY_get_the_trap_disc_out_and_put_the_GD_ROM_disc_inside { + get { + return ResourceManager.GetString("Please_MANUALLY_get_the_trap_disc_out_and_put_the_GD_ROM_disc_inside", resourceCulture); + } + } + + public static string Waiting_5_seconds { + get { + return ResourceManager.GetString("Waiting_5_seconds", resourceCulture); + } + } + + public static string Lead_out_has_changed_this_drive_does_not_support_hot_swapping_discs { + get { + return ResourceManager.GetString("Lead_out_has_changed_this_drive_does_not_support_hot_swapping_discs", resourceCulture); + } + } + + public static string Reading_LBA_zero { + get { + return ResourceManager.GetString("Reading_LBA_zero", resourceCulture); + } + } + + public static string Success { + get { + return ResourceManager.GetString("Success", resourceCulture); + } + } + + public static string FAIL { + get { + return ResourceManager.GetString("FAIL", resourceCulture); + } + } + + public static string Reading_LBA_zero_as_audio_scrambled { + get { + return ResourceManager.GetString("Reading_LBA_zero_as_audio_scrambled", resourceCulture); + } + } + + public static string Reading_LBA_100000_as_audio { + get { + return ResourceManager.GetString("Reading_LBA_100000_as_audio", resourceCulture); + } + } + + public static string Reading_LBA_50000_as_audio { + get { + return ResourceManager.GetString("Reading_LBA_50000_as_audio", resourceCulture); + } + } + + public static string Reading_LBA_450000_as_audio { + get { + return ResourceManager.GetString("Reading_LBA_450000_as_audio", resourceCulture); + } + } + + public static string Reading_LBA_400000_as_audio { + get { + return ResourceManager.GetString("Reading_LBA_400000_as_audio", resourceCulture); + } + } + + public static string Reading_LBA_45000_as_audio { + get { + return ResourceManager.GetString("Reading_LBA_45000_as_audio", resourceCulture); + } + } + + public static string Reading_LBA_44990_as_audio { + get { + return ResourceManager.GetString("Reading_LBA_44990_as_audio", resourceCulture); + } + } + + public static string Reading_LBA_100000_as_audio_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_100000_as_audio_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_50000_as_audio_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_50000_as_audio_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_450000_as_audio_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_450000_as_audio_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_400000_as_audio_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_400000_as_audio_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_45000_as_audio_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_45000_as_audio_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_44990_as_audio_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_44990_as_audio_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_100000_as_audio_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_100000_as_audio_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_50000_as_audio_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_50000_as_audio_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_450000_as_audio_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_450000_as_audio_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_400000_as_audio_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_400000_as_audio_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_45000_as_audio_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_45000_as_audio_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_44990_as_audio_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_44990_as_audio_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_100000 { + get { + return ResourceManager.GetString("Reading_LBA_100000", resourceCulture); + } + } + + public static string Reading_LBA_50000 { + get { + return ResourceManager.GetString("Reading_LBA_50000", resourceCulture); + } + } + + public static string Reading_LBA_450000 { + get { + return ResourceManager.GetString("Reading_LBA_450000", resourceCulture); + } + } + + public static string Reading_LBA_400000 { + get { + return ResourceManager.GetString("Reading_LBA_400000", resourceCulture); + } + } + + public static string Reading_LBA_45000 { + get { + return ResourceManager.GetString("Reading_LBA_45000", resourceCulture); + } + } + + public static string Reading_LBA_44990 { + get { + return ResourceManager.GetString("Reading_LBA_44990", resourceCulture); + } + } + + public static string Reading_LBA_100000_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_100000_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_50000_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_50000_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_450000_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_450000_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_400000_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_400000_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_45000_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_45000_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_44990_with_PQ_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_44990_with_PQ_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_100000_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_100000_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_50000_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_50000_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_450000_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_450000_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_400000_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_400000_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_45000_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_45000_with_RW_subchannel", resourceCulture); + } + } + + public static string Reading_LBA_44990_with_RW_subchannel { + get { + return ResourceManager.GetString("Reading_LBA_44990_with_RW_subchannel", resourceCulture); + } + } + + public static string Test_read_whole_high_density_area_proceed_Q { + get { + return ResourceManager.GetString("Test_read_whole_high_density_area_proceed_Q", resourceCulture); + } + } + + public static string Reading_LBA_0_of_1 { + get { + return ResourceManager.GetString("Reading_LBA_0_of_1", resourceCulture); + } + } + + public static string Querying_MMC_GET_CONFIGURATION { + get { + return ResourceManager.GetString("Querying_MMC_GET_CONFIGURATION", resourceCulture); + } + } + + public static string Querying_SCSI_READ_CAPACITY { + get { + return ResourceManager.GetString("Querying_SCSI_READ_CAPACITY", resourceCulture); + } + } + + public static string Querying_SCSI_READ_CAPACITY_16 { + get { + return ResourceManager.GetString("Querying_SCSI_READ_CAPACITY_16", resourceCulture); + } + } + + public static string Querying_SCSI_MODE_SENSE_10 { + get { + return ResourceManager.GetString("Querying_SCSI_MODE_SENSE_10", resourceCulture); + } + } + + public static string Querying_SCSI_MODE_SENSE { + get { + return ResourceManager.GetString("Querying_SCSI_MODE_SENSE", resourceCulture); + } + } + + public static string Querying_CD_TOC { + get { + return ResourceManager.GetString("Querying_CD_TOC", resourceCulture); + } + } + + public static string Querying_CD_Full_TOC { + get { + return ResourceManager.GetString("Querying_CD_Full_TOC", resourceCulture); + } + } + + public static string Querying_CD_ATIP { + get { + return ResourceManager.GetString("Querying_CD_ATIP", resourceCulture); + } + } + + public static string Querying_CD_PMA { + get { + return ResourceManager.GetString("Querying_CD_PMA", resourceCulture); + } + } + + public static string Sense_equals_0 { + get { + return ResourceManager.GetString("Sense_equals_0", resourceCulture); + } + } + + public static string Querying_DVD_PFI { + get { + return ResourceManager.GetString("Querying_DVD_PFI", resourceCulture); + } + } + + public static string Querying_DVD_DMI { + get { + return ResourceManager.GetString("Querying_DVD_DMI", resourceCulture); + } + } + + public static string Querying_DVD_CMI { + get { + return ResourceManager.GetString("Querying_DVD_CMI", resourceCulture); + } + } + + public static string Querying_DVD_BCA { + get { + return ResourceManager.GetString("Querying_DVD_BCA", resourceCulture); + } + } + + public static string Querying_DVD_AACS { + get { + return ResourceManager.GetString("Querying_DVD_AACS", resourceCulture); + } + } + + public static string Querying_BD_BCA { + get { + return ResourceManager.GetString("Querying_BD_BCA", resourceCulture); + } + } + + public static string Querying_Disc_Definition_Structure { + get { + return ResourceManager.GetString("Querying_Disc_Definition_Structure", resourceCulture); + } + } + + public static string Querying_Spare_Area_Information { + get { + return ResourceManager.GetString("Querying_Spare_Area_Information", resourceCulture); + } + } + + public static string Querying_BD_DDS { + get { + return ResourceManager.GetString("Querying_BD_DDS", resourceCulture); + } + } + + public static string Querying_BD_SAI { + get { + return ResourceManager.GetString("Querying_BD_SAI", resourceCulture); + } + } + + public static string Querying_DVD_PRI { + get { + return ResourceManager.GetString("Querying_DVD_PRI", resourceCulture); + } + } + + public static string Querying_DVD_Media_ID { + get { + return ResourceManager.GetString("Querying_DVD_Media_ID", resourceCulture); + } + } + + public static string Querying_DVD_Embossed_PFI { + get { + return ResourceManager.GetString("Querying_DVD_Embossed_PFI", resourceCulture); + } + } + + public static string Querying_DVD_ADIP { + get { + return ResourceManager.GetString("Querying_DVD_ADIP", resourceCulture); + } + } + + public static string Querying_DVD_DCB { + get { + return ResourceManager.GetString("Querying_DVD_DCB", resourceCulture); + } + } + + public static string Querying_HD_DVD_CMI { + get { + return ResourceManager.GetString("Querying_HD_DVD_CMI", resourceCulture); + } + } + + public static string Querying_DVD_Layer_Capacity { + get { + return ResourceManager.GetString("Querying_DVD_Layer_Capacity", resourceCulture); + } + } + + public static string Querying_BD_Disc_Information { + get { + return ResourceManager.GetString("Querying_BD_Disc_Information", resourceCulture); + } + } + + public static string Querying_BD_PAC { + get { + return ResourceManager.GetString("Querying_BD_PAC", resourceCulture); + } + } + + public static string Trying_SCSI_READ_CD_scrambled { + get { + return ResourceManager.GetString("Trying_SCSI_READ_CD_scrambled", resourceCulture); + } + } + + public static string Trying_SCSI_READ_6 { + get { + return ResourceManager.GetString("Trying_SCSI_READ_6", resourceCulture); + } + } + + public static string Trying_SCSI_READ_10 { + get { + return ResourceManager.GetString("Trying_SCSI_READ_10", resourceCulture); + } + } + + public static string Trying_SCSI_READ_12 { + get { + return ResourceManager.GetString("Trying_SCSI_READ_12", resourceCulture); + } + } + + public static string Trying_SCSI_READ_16 { + get { + return ResourceManager.GetString("Trying_SCSI_READ_16", resourceCulture); + } + } + + public static string Trying_SCSI_READ_CD { + get { + return ResourceManager.GetString("Trying_SCSI_READ_CD", resourceCulture); + } + } + + public static string Trying_SCSI_READ_CD_MSF { + get { + return ResourceManager.GetString("Trying_SCSI_READ_CD_MSF", resourceCulture); + } + } + + public static string Trying_SCSI_READ_CD_full_sector { + get { + return ResourceManager.GetString("Trying_SCSI_READ_CD_full_sector", resourceCulture); + } + } + + public static string Trying_SCSI_READ_CD_MSF_full_sector { + get { + return ResourceManager.GetString("Trying_SCSI_READ_CD_MSF_full_sector", resourceCulture); + } + } + + public static string Trying_to_read_CD_Track_1_pre_gap { + get { + return ResourceManager.GetString("Trying_to_read_CD_Track_1_pre_gap", resourceCulture); + } + } + + public static string Trying_to_read_CD_Lead_In { + get { + return ResourceManager.GetString("Trying_to_read_CD_Lead_In", resourceCulture); + } + } + + public static string Trying_to_read_CD_Lead_Out { + get { + return ResourceManager.GetString("Trying_to_read_CD_Lead_Out", resourceCulture); + } + } + + public static string Trying_to_read_C2_Pointers { + get { + return ResourceManager.GetString("Trying_to_read_C2_Pointers", resourceCulture); + } + } + + public static string Trying_to_read_subchannels { + get { + return ResourceManager.GetString("Trying_to_read_subchannels", resourceCulture); + } + } + + public static string Trying_to_read_subchannels_with_C2_Pointers { + get { + return ResourceManager.GetString("Trying_to_read_subchannels_with_C2_Pointers", resourceCulture); + } + } + + public static string Plextor_READ_CD_DA { + get { + return ResourceManager.GetString("Plextor_READ_CD_DA", resourceCulture); + } + } + + public static string Trying_Pioneer_READ_CD_DA { + get { + return ResourceManager.GetString("Trying_Pioneer_READ_CD_DA", resourceCulture); + } + } + + public static string Trying_Pioneer_READ_CD_DA_MSF { + get { + return ResourceManager.GetString("Trying_Pioneer_READ_CD_DA_MSF", resourceCulture); + } + } + + public static string Trying_NEC_READ_CD_DA { + get { + return ResourceManager.GetString("Trying_NEC_READ_CD_DA", resourceCulture); + } + } + + public static string Trying_Plextor_trick_to_raw_read_DVDs { + get { + return ResourceManager.GetString("Trying_Plextor_trick_to_raw_read_DVDs", resourceCulture); + } + } + + public static string Trying_HL_DT_ST_aka_LG_trick_to_raw_read_DVDs { + get { + return ResourceManager.GetString("Trying_HL_DT_ST_aka_LG_trick_to_raw_read_DVDs", resourceCulture); + } + } + + public static string Trying_Lite_On_trick_to_raw_read_DVDs { + get { + return ResourceManager.GetString("Trying_Lite_On_trick_to_raw_read_DVDs", resourceCulture); + } + } + + public static string Trying_MediaTek_READ_DRAM_command { + get { + return ResourceManager.GetString("Trying_MediaTek_READ_DRAM_command", resourceCulture); + } + } + + public static string Trying_MediaTek_READ_DRAM_command_for_Lead_Out { + get { + return ResourceManager.GetString("Trying_MediaTek_READ_DRAM_command_for_Lead_Out", resourceCulture); + } + } + + public static string Could_not_find_second_session_Have_you_inserted_the_correct_type_of_disc { + get { + return ResourceManager.GetString("Could_not_find_second_session_Have_you_inserted_the_correct_type_of_disc", resourceCulture); + } + } + + public static string First_session_Lead_Out_starts_at_0_1_2 { + get { + return ResourceManager.GetString("First_session_Lead_Out_starts_at_0_1_2", resourceCulture); + } + } + + public static string Second_session_starts_at_0_1_2 { + get { + return ResourceManager.GetString("Second_session_starts_at_0_1_2", resourceCulture); + } + } + + public static string Trying_SCSI_READ_CD_in_first_session_Lead_Out { + get { + return ResourceManager.GetString("Trying_SCSI_READ_CD_in_first_session_Lead_Out", resourceCulture); + } + } + + public static string Trying_SCSI_READ_CD_in_second_session_Lead_In { + get { + return ResourceManager.GetString("Trying_SCSI_READ_CD_in_second_session_Lead_In", resourceCulture); + } + } + + public static string Querying_SCSI_INQUIRY { + get { + return ResourceManager.GetString("Querying_SCSI_INQUIRY", resourceCulture); + } + } + + public static string Querying_list_of_SCSI_EVPDs { + get { + return ResourceManager.GetString("Querying_list_of_SCSI_EVPDs", resourceCulture); + } + } + + public static string Querying_SCSI_EVPD_pages { + get { + return ResourceManager.GetString("Querying_SCSI_EVPD_pages", resourceCulture); + } + } + + public static string Querying_SCSI_EVPD_0 { + get { + return ResourceManager.GetString("Querying_SCSI_EVPD_0", resourceCulture); + } + } + + public static string Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_10 { + get { + return ResourceManager.GetString("Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_10", resourceCulture); + } + } + + public static string Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_6 { + get { + return ResourceManager.GetString("Querying_all_mode_pages_and_subpages_using_SCSI_MODE_SENSE_6", resourceCulture); + } + } + + public static string Trying_SCSI_READ_MEDIA_SERIAL_NUMBER { + get { + return ResourceManager.GetString("Trying_SCSI_READ_MEDIA_SERIAL_NUMBER", resourceCulture); + } + } + + public static string Trying_to_get_CID { + get { + return ResourceManager.GetString("Trying_to_get_CID", resourceCulture); + } + } + + public static string CID_obtained_correctly { + get { + return ResourceManager.GetString("CID_obtained_correctly", resourceCulture); + } + } + + public static string Could_not_read_CID { + get { + return ResourceManager.GetString("Could_not_read_CID", resourceCulture); + } + } + + public static string Trying_to_get_CSD { + get { + return ResourceManager.GetString("Trying_to_get_CSD", resourceCulture); + } + } + + public static string CSD_obtained_correctly { + get { + return ResourceManager.GetString("CSD_obtained_correctly", resourceCulture); + } + } + + public static string Could_not_read_CSD { + get { + return ResourceManager.GetString("Could_not_read_CSD", resourceCulture); + } + } + + public static string Trying_to_get_OCR { + get { + return ResourceManager.GetString("Trying_to_get_OCR", resourceCulture); + } + } + + public static string OCR_obtained_correctly { + get { + return ResourceManager.GetString("OCR_obtained_correctly", resourceCulture); + } + } + + public static string Could_not_read_OCR { + get { + return ResourceManager.GetString("Could_not_read_OCR", resourceCulture); + } + } + + public static string Trying_to_get_Extended_CSD { + get { + return ResourceManager.GetString("Trying_to_get_Extended_CSD", resourceCulture); + } + } + + public static string Extended_CSD_obtained_correctly { + get { + return ResourceManager.GetString("Extended_CSD_obtained_correctly", resourceCulture); + } + } + + public static string Could_not_read_Extended_CSD { + get { + return ResourceManager.GetString("Could_not_read_Extended_CSD", resourceCulture); + } + } + + public static string Trying_to_get_SCR { + get { + return ResourceManager.GetString("Trying_to_get_SCR", resourceCulture); + } + } + + public static string SCR_obtained_correctly { + get { + return ResourceManager.GetString("SCR_obtained_correctly", resourceCulture); + } + } + + public static string Could_not_read_SCR { + get { + return ResourceManager.GetString("Could_not_read_SCR", resourceCulture); + } + } + + public static string Querying_SCSI_READ_BLOCK_LIMITS { + get { + return ResourceManager.GetString("Querying_SCSI_READ_BLOCK_LIMITS", resourceCulture); + } + } + + public static string Querying_SCSI_REPORT_DENSITY_SUPPORT { + get { + return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT", resourceCulture); + } + } + + public static string Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types { + get { + return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types", resourceCulture); + } + } + + public static string Querying_SCSI_REPORT_DENSITY_SUPPORT_for_current_media { + get { + return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT_for_current_media", resourceCulture); + } + } + + public static string Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types_for_current_media { + get { + return ResourceManager.GetString("Querying_SCSI_REPORT_DENSITY_SUPPORT_for_medium_types_for_current_media", resourceCulture); + } + } + + public static string Seeking_to_sector_0 { + get { + return ResourceManager.GetString("Seeking_to_sector_0", resourceCulture); + } + } + + public static string Seeking_to_cylinder_0_head_1_sector_2 { + get { + return ResourceManager.GetString("Seeking_to_cylinder_0_head_1_sector_2", resourceCulture); + } + } + + public static string Scanning_never_supported_in_SSC { + get { + return ResourceManager.GetString("Scanning_never_supported_in_SSC", resourceCulture); + } + } + + public static string Error_trying_to_decode_TOC { + get { + return ResourceManager.GetString("Error_trying_to_decode_TOC", resourceCulture); + } + } + + public static string Using_MMC_READ_CD_command { + get { + return ResourceManager.GetString("Using_MMC_READ_CD_command", resourceCulture); + } + } + + public static string READ_CD_error_0 { + get { + return ResourceManager.GetString("READ_CD_error_0", resourceCulture); + } + } + + public static string Environment_does_not_support_setting_block_count_downgrading_to_OS_reading { + get { + return ResourceManager.GetString("Environment_does_not_support_setting_block_count_downgrading_to_OS_reading", resourceCulture); + } + } + + public static string Reading_0_sectors_at_a_time_using_OS_buffered_reads { + get { + return ResourceManager.GetString("Reading_0_sectors_at_a_time_using_OS_buffered_reads", resourceCulture); + } + } + + public static string Reading_0_sectors_using_sequential_single_commands { + get { + return ResourceManager.GetString("Reading_0_sectors_using_sequential_single_commands", resourceCulture); + } + } + + public static string Unknown_device_type_0 { + get { + return ResourceManager.GetString("Unknown_device_type_0", resourceCulture); + } + } + + public static string Device_needs_48_bit_LBA_commands_but_I_cant_issue_them_Aborting { + get { + return ResourceManager.GetString("Device_needs_48_bit_LBA_commands_but_I_cant_issue_them_Aborting", resourceCulture); + } + } + + public static string Device_needs_28_bit_LBA_commands_but_I_cant_issue_them_Aborting { + get { + return ResourceManager.GetString("Device_needs_28_bit_LBA_commands_but_I_cant_issue_them_Aborting", resourceCulture); + } + } + + public static string Device_needs_CHS_commands_but_I_cant_issue_them_Aborting { + get { + return ResourceManager.GetString("Device_needs_CHS_commands_but_I_cant_issue_them_Aborting", resourceCulture); + } + } + + public static string Using_ATA_READ_DMA_EXT_command { + get { + return ResourceManager.GetString("Using_ATA_READ_DMA_EXT_command", resourceCulture); + } + } + + public static string Using_ATA_READ_EXT_command { + get { + return ResourceManager.GetString("Using_ATA_READ_EXT_command", resourceCulture); + } + } + + public static string Using_ATA_READ_DMA_command_with_retries_LBA { + get { + return ResourceManager.GetString("Using_ATA_READ_DMA_command_with_retries_LBA", resourceCulture); + } + } + + public static string Using_ATA_READ_DMA_command_LBA { + get { + return ResourceManager.GetString("Using_ATA_READ_DMA_command_LBA", resourceCulture); + } + } + + public static string Using_ATA_READ_command_with_retries_LBA { + get { + return ResourceManager.GetString("Using_ATA_READ_command_with_retries_LBA", resourceCulture); + } + } + + public static string Using_ATA_READ_command_LBA { + get { + return ResourceManager.GetString("Using_ATA_READ_command_LBA", resourceCulture); + } + } + + public static string Using_ATA_READ_DMA_command_with_retries_CHS { + get { + return ResourceManager.GetString("Using_ATA_READ_DMA_command_with_retries_CHS", resourceCulture); + } + } + + public static string Using_ATA_READ_DMA_command_CHS { + get { + return ResourceManager.GetString("Using_ATA_READ_DMA_command_CHS", resourceCulture); + } + } + + public static string Using_ATA_READ_command_with_retries_CHS { + get { + return ResourceManager.GetString("Using_ATA_READ_command_with_retries_CHS", resourceCulture); + } + } + + public static string Using_ATA_READ_command_CHS { + get { + return ResourceManager.GetString("Using_ATA_READ_command_CHS", resourceCulture); + } + } + + public static string Could_not_get_a_working_read_command { + get { + return ResourceManager.GetString("Could_not_get_a_working_read_command", resourceCulture); + } + } + + public static string ATA_ERROR_0_STATUS_1 { + get { + return ResourceManager.GetString("ATA_ERROR_0_STATUS_1", resourceCulture); + } + } + + public static string Device_only_supports_SCSI_READ_6_but_has_more_than_0_blocks_1_blocks_total { + get { + return ResourceManager.GetString("Device_only_supports_SCSI_READ_6_but_has_more_than_0_blocks_1_blocks_total", resourceCulture); + } + } + + public static string Device_only_supports_SCSI_READ_10_but_has_more_than_0_blocks_1_blocks_total { + get { + return ResourceManager.GetString("Device_only_supports_SCSI_READ_10_but_has_more_than_0_blocks_1_blocks_total", resourceCulture); + } + } + + public static string Using_SCSI_READ_LONG_16_command { + get { + return ResourceManager.GetString("Using_SCSI_READ_LONG_16_command", resourceCulture); + } + } + + public static string Using_SCSI_READ_LONG_10_command { + get { + return ResourceManager.GetString("Using_SCSI_READ_LONG_10_command", resourceCulture); + } + } + + public static string Using_SyQuest_READ_LONG_10_command { + get { + return ResourceManager.GetString("Using_SyQuest_READ_LONG_10_command", resourceCulture); + } + } + + public static string Using_SyQuest_READ_LONG_6_command { + get { + return ResourceManager.GetString("Using_SyQuest_READ_LONG_6_command", resourceCulture); + } + } + + public static string Using_HL_DT_ST_raw_DVD_reading { + get { + return ResourceManager.GetString("Using_HL_DT_ST_raw_DVD_reading", resourceCulture); + } + } + + public static string Using_Plextor_raw_DVD_reading { + get { + return ResourceManager.GetString("Using_Plextor_raw_DVD_reading", resourceCulture); + } + } + + public static string Using_SCSI_READ_6_command { + get { + return ResourceManager.GetString("Using_SCSI_READ_6_command", resourceCulture); + } + } + + public static string Using_SCSI_READ_10_command { + get { + return ResourceManager.GetString("Using_SCSI_READ_10_command", resourceCulture); + } + } + + public static string Using_SCSI_READ_16_command { + get { + return ResourceManager.GetString("Using_SCSI_READ_16_command", resourceCulture); + } + } + + public static string Unable_to_get_media_capacity { + get { + return ResourceManager.GetString("Unable_to_get_media_capacity", resourceCulture); + } + } + + public static string Start_logging_at_0 { + get { + return ResourceManager.GetString("Start_logging_at_0", resourceCulture); + } + } + + public static string Running_as_superuser_Yes { + get { + return ResourceManager.GetString("Running_as_superuser_Yes", resourceCulture); + } + } + + public static string Running_as_superuser_No { + get { + return ResourceManager.GetString("Running_as_superuser_No", resourceCulture); + } + } + + public static string Remote_information { + get { + return ResourceManager.GetString("Remote_information", resourceCulture); + } + } + + public static string Server_0 { + get { + return ResourceManager.GetString("Server_0", resourceCulture); + } + } + + public static string Version_0 { + get { + return ResourceManager.GetString("Version_0", resourceCulture); + } + } + + public static string Operating_system_0_1 { + get { + return ResourceManager.GetString("Operating_system_0_1", resourceCulture); + } + } + + public static string Architecture_0 { + get { + return ResourceManager.GetString("Architecture_0", resourceCulture); + } + } + + public static string Protocol_version_0 { + get { + return ResourceManager.GetString("Protocol_version_0", resourceCulture); + } + } + + public static string Log_section_separator { + get { + return ResourceManager.GetString("Log_section_separator", resourceCulture); + } + } + + public static string Device_information { + get { + return ResourceManager.GetString("Device_information", resourceCulture); + } + } + + public static string Manufacturer_0 { + get { + return ResourceManager.GetString("Manufacturer_0", resourceCulture); + } + } + + public static string Model_0 { + get { + return ResourceManager.GetString("Model_0", resourceCulture); + } + } + + public static string Firmware_revision_0 { + get { + return ResourceManager.GetString("Firmware_revision_0", resourceCulture); + } + } + + public static string Serial_number_0 { + get { + return ResourceManager.GetString("Serial_number_0", resourceCulture); + } + } + + public static string Removable_device_0 { + get { + return ResourceManager.GetString("Removable_device_0", resourceCulture); + } + } + + public static string Device_type_0 { + get { + return ResourceManager.GetString("Device_type_0", resourceCulture); + } + } + + public static string CompactFlash_device_0 { + get { + return ResourceManager.GetString("CompactFlash_device_0", resourceCulture); + } + } + + public static string PCMCIA_device_0 { + get { + return ResourceManager.GetString("PCMCIA_device_0", resourceCulture); + } + } + + public static string USB_device_0 { + get { + return ResourceManager.GetString("USB_device_0", resourceCulture); + } + } + + public static string USB_manufacturer_0 { + get { + return ResourceManager.GetString("USB_manufacturer_0", resourceCulture); + } + } + + public static string USB_product_0 { + get { + return ResourceManager.GetString("USB_product_0", resourceCulture); + } + } + + public static string USB_serial_0 { + get { + return ResourceManager.GetString("USB_serial_0", resourceCulture); + } + } + + public static string USB_vendor_ID_0 { + get { + return ResourceManager.GetString("USB_vendor_ID_0", resourceCulture); + } + } + + public static string USB_product_ID_0 { + get { + return ResourceManager.GetString("USB_product_ID_0", resourceCulture); + } + } + + public static string FireWire_device_0 { + get { + return ResourceManager.GetString("FireWire_device_0", resourceCulture); + } + } + + public static string FireWire_vendor_0 { + get { + return ResourceManager.GetString("FireWire_vendor_0", resourceCulture); + } + } + + public static string FireWire_model_0 { + get { + return ResourceManager.GetString("FireWire_model_0", resourceCulture); + } + } + + public static string FireWire_GUID_0 { + get { + return ResourceManager.GetString("FireWire_GUID_0", resourceCulture); + } + } + + public static string FireWire_vendor_ID_0 { + get { + return ResourceManager.GetString("FireWire_vendor_ID_0", resourceCulture); + } + } + + public static string FireWire_product_ID_0 { + get { + return ResourceManager.GetString("FireWire_product_ID_0", resourceCulture); + } + } + + public static string Dumping_progress_log { + get { + return ResourceManager.GetString("Dumping_progress_log", resourceCulture); + } + } + + public static string End_logging_on_0 { + get { + return ResourceManager.GetString("End_logging_on_0", resourceCulture); + } + } + + public static string Start_error_logging_on_0 { + get { + return ResourceManager.GetString("Start_error_logging_on_0", resourceCulture); + } + } + + public static string ATA_command_0_operating_system_error_1 { + get { + return ResourceManager.GetString("ATA_command_0_operating_system_error_1", resourceCulture); + } + } + + public static string ATA_command_0_error_status_1_error_2 { + get { + return ResourceManager.GetString("ATA_command_0_error_status_1_error_2", resourceCulture); + } + } + + public static string ATA_reading_CHS_0_1_2_operating_system_error_3 { + get { + return ResourceManager.GetString("ATA_reading_CHS_0_1_2_operating_system_error_3", resourceCulture); + } + } + + public static string ATA_reading_CHS_0_1_2_error_status_3_error_4 { + get { + return ResourceManager.GetString("ATA_reading_CHS_0_1_2_error_status_3_error_4", resourceCulture); + } + } + + public static string ATA_reading_LBA_0_operating_system_error_1 { + get { + return ResourceManager.GetString("ATA_reading_LBA_0_operating_system_error_1", resourceCulture); + } + } + + public static string ATA_reading_LBA_0_error_status_1_error_2 { + get { + return ResourceManager.GetString("ATA_reading_LBA_0_error_status_1_error_2", resourceCulture); + } + } + + public static string SCSI_command_0_operating_system_error_1 { + get { + return ResourceManager.GetString("SCSI_command_0_operating_system_error_1", resourceCulture); + } + } + + public static string SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4_5 { + get { + return ResourceManager.GetString("SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4_5", resourceCulture); + } + } + + public static string SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4 { + get { + return ResourceManager.GetString("SCSI_command_0_error_SENSE_1_ASC_2_ASCQ_3_4", resourceCulture); + } + } + + public static string SCSI_command_0_error_1_2 { + get { + return ResourceManager.GetString("SCSI_command_0_error_1_2", resourceCulture); + } + } + + public static string SCSI_command_0_error_1 { + get { + return ResourceManager.GetString("SCSI_command_0_error_1", resourceCulture); + } + } + + public static string SCSI_reading_LBA_0_operating_system_error_1 { + get { + return ResourceManager.GetString("SCSI_reading_LBA_0_operating_system_error_1", resourceCulture); + } + } + + public static string SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4_5 { + get { + return ResourceManager.GetString("SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4_5", resourceCulture); + } + } + + public static string SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4 { + get { + return ResourceManager.GetString("SCSI_reading_LBA_0_error_SENSE_1_ASC_2_ASCQ_3_4", resourceCulture); + } + } + + public static string SCSI_reading_LBA_0_error_1_2 { + get { + return ResourceManager.GetString("SCSI_reading_LBA_0_error_1_2", resourceCulture); + } + } + + public static string SCSI_reading_LBA_0_error_1 { + get { + return ResourceManager.GetString("SCSI_reading_LBA_0_error_1", resourceCulture); + } + } + + public static string SD_MMC_command_0_operating_system_error_1 { + get { + return ResourceManager.GetString("SD_MMC_command_0_operating_system_error_1", resourceCulture); + } + } + + public static string SD_MMC_command_0_error_1 { + get { + return ResourceManager.GetString("SD_MMC_command_0_error_1", resourceCulture); + } + } + + public static string SD_MMC_reading_LBA_0_byte_addressed_operating_system_error_1 { + get { + return ResourceManager.GetString("SD_MMC_reading_LBA_0_byte_addressed_operating_system_error_1", resourceCulture); + } + } + + public static string SD_MMC_reading_LBA_0_byte_addressed_error_1 { + get { + return ResourceManager.GetString("SD_MMC_reading_LBA_0_byte_addressed_error_1", resourceCulture); + } + } + + public static string SD_MMC_reading_LBA_0_block_addressed_operating_system_error_1 { + get { + return ResourceManager.GetString("SD_MMC_reading_LBA_0_block_addressed_operating_system_error_1", resourceCulture); + } + } + + public static string SD_MMC_reading_LBA_0_block_addressed_error_1 { + get { + return ResourceManager.GetString("SD_MMC_reading_LBA_0_block_addressed_error_1", resourceCulture); + } + } + + public static string Start_subchannel_logging_at_0 { + get { + return ResourceManager.GetString("Start_subchannel_logging_at_0", resourceCulture); + } + } + + public static string Data_length_is_invalid { + get { + return ResourceManager.GetString("Data_length_is_invalid", resourceCulture); + } + } + + public static string _GENERATED { + get { + return ResourceManager.GetString("_GENERATED", resourceCulture); + } + } + + public static string _FIXED { + get { + return ResourceManager.GetString("_FIXED", resourceCulture); + } + } + + public static string fixed_P_subchannel_using_weight_average { + get { + return ResourceManager.GetString("fixed_P_subchannel_using_weight_average", resourceCulture); + } + } + + public static string fixed_R_W_subchannels_writing_empty_data { + get { + return ResourceManager.GetString("fixed_R_W_subchannels_writing_empty_data", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_ADR { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_ADR", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_CONTROL { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_CONTROL", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_ZERO { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_ZERO", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_TNO { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_TNO", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_INDEX { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_INDEX", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_RELATIVE_POSITION { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_RELATIVE_POSITION", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_ABSOLUTE_POSITION { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_ABSOLUTE_POSITION", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_correct_CRC { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_correct_CRC", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_known_good_MCN { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_known_good_MCN", resourceCulture); + } + } + + public static string fixed_Q_subchannel_with_known_good_ISRC { + get { + return ResourceManager.GetString("fixed_Q_subchannel_with_known_good_ISRC", resourceCulture); + } + } + + public static string Lead_In { + get { + return ResourceManager.GetString("Lead_In", resourceCulture); + } + } + + public static string Program { + get { + return ResourceManager.GetString("Program", resourceCulture); + } + } + + public static string _0_1_2_LBA_3_4_area_5 { + get { + return ResourceManager.GetString("_0_1_2_LBA_3_4_area_5", resourceCulture); + } + } + + public static string TOC_says_disc_type_is_CD_i { + get { + return ResourceManager.GetString("TOC_says_disc_type_is_CD_i", resourceCulture); + } + } + + public static string TOC_says_disc_type_is_CD_ROM_XA { + get { + return ResourceManager.GetString("TOC_says_disc_type_is_CD_ROM_XA", resourceCulture); + } + } + + public static string Disc_has_audio_and_data_two_sessions_all_data_second_CD_Plus { + get { + return ResourceManager.GetString("Disc_has_audio_and_data_two_sessions_all_data_second_CD_Plus", resourceCulture); + } + } + + public static string Disc_has_only_audio_in_a_session_CD_Digital_Audio { + get { + return ResourceManager.GetString("Disc_has_only_audio_in_a_session_CD_Digital_Audio", resourceCulture); + } + } + + public static string Disc_has_only_data_in_a_session_CD_ROM { + get { + return ResourceManager.GetString("Disc_has_only_data_in_a_session_CD_ROM", resourceCulture); + } + } + + public static string Disc_has_video_tracks_CD_Video { + get { + return ResourceManager.GetString("Disc_has_video_tracks_CD_Video", resourceCulture); + } + } + + public static string Disc_has_a_mode_two_data_track_CD_ROM_XA { + get { + return ResourceManager.GetString("Disc_has_a_mode_two_data_track_CD_ROM_XA", resourceCulture); + } + } + + public static string Disc_has_hidden_CD_i_pregap_CD_i_Ready { + get { + return ResourceManager.GetString("Disc_has_hidden_CD_i_pregap_CD_i_Ready", resourceCulture); + } + } + + public static string Found_Photo_CD_description_file { + get { + return ResourceManager.GetString("Found_Photo_CD_description_file", resourceCulture); + } + } + + public static string Found_Mega_Sega_CD_IP_BIN { + get { + return ResourceManager.GetString("Found_Mega_Sega_CD_IP_BIN", resourceCulture); + } + } + + public static string Found_Sega_Saturn_IP_BIN { + get { + return ResourceManager.GetString("Found_Sega_Saturn_IP_BIN", resourceCulture); + } + } + + public static string Found_Sega_Dreamcast_IP_BIN { + get { + return ResourceManager.GetString("Found_Sega_Dreamcast_IP_BIN", resourceCulture); + } + } + + public static string PlayStation_2_boot_sectors_SHA256_0 { + get { + return ResourceManager.GetString("PlayStation_2_boot_sectors_SHA256_0", resourceCulture); + } + } + + public static string Found_Sony_PlayStation_2_boot_sectors { + get { + return ResourceManager.GetString("Found_Sony_PlayStation_2_boot_sectors", resourceCulture); + } + } + + public static string Found_Opera_filesystem { + get { + return ResourceManager.GetString("Found_Opera_filesystem", resourceCulture); + } + } + + public static string Found_FM_Towns_boot { + get { + return ResourceManager.GetString("Found_FM_Towns_boot", resourceCulture); + } + } + + public static string Found_Playdia_copyright { + get { + return ResourceManager.GetString("Found_Playdia_copyright", resourceCulture); + } + } + + public static string Found_PC_Engine_CD_signature { + get { + return ResourceManager.GetString("Found_PC_Engine_CD_signature", resourceCulture); + } + } + + public static string Found_PC_FX_copyright { + get { + return ResourceManager.GetString("Found_PC_FX_copyright", resourceCulture); + } + } + + public static string Found_Atari_signature { + get { + return ResourceManager.GetString("Found_Atari_signature", resourceCulture); + } + } + + public static string Found_Sega_Dreamcast_IP_BIN_on_second_session { + get { + return ResourceManager.GetString("Found_Sega_Dreamcast_IP_BIN_on_second_session", resourceCulture); + } + } + + public static string Found_VideoNow_Color_frame { + get { + return ResourceManager.GetString("Found_VideoNow_Color_frame", resourceCulture); + } + } + + public static string Found_enhanced_graphics_RW_packet { + get { + return ResourceManager.GetString("Found_enhanced_graphics_RW_packet", resourceCulture); + } + } + + public static string Found_graphics_RW_packet { + get { + return ResourceManager.GetString("Found_graphics_RW_packet", resourceCulture); + } + } + + public static string Found_MIDI_RW_packet { + get { + return ResourceManager.GetString("Found_MIDI_RW_packet", resourceCulture); + } + } + + public static string Found_CD32_TM_file_in_root { + get { + return ResourceManager.GetString("Found_CD32_TM_file_in_root", resourceCulture); + } + } + + public static string Found_CDTV_TM_file_in_root { + get { + return ResourceManager.GetString("Found_CDTV_TM_file_in_root", resourceCulture); + } + } + + public static string Found_correct_IPL_TXT_file_in_root { + get { + return ResourceManager.GetString("Found_correct_IPL_TXT_file_in_root", resourceCulture); + } + } + + public static string Found_Video_CD_description_file { + get { + return ResourceManager.GetString("Found_Video_CD_description_file", resourceCulture); + } + } + + public static string Found_Super_Video_CD_description_file { + get { + return ResourceManager.GetString("Found_Super_Video_CD_description_file", resourceCulture); + } + } + + public static string Found_China_Video_Disc_description_file { + get { + return ResourceManager.GetString("Found_China_Video_Disc_description_file", resourceCulture); + } + } + + public static string Found_correct_SYSTEM_CNF_file_in_root_PS1 { + get { + return ResourceManager.GetString("Found_correct_SYSTEM_CNF_file_in_root_PS1", resourceCulture); + } + } + + public static string Found_correct_SYSTEM_CNF_file_in_root_PS2 { + get { + return ResourceManager.GetString("Found_correct_SYSTEM_CNF_file_in_root_PS2", resourceCulture); + } + } + + public static string Found_Sony_PlayStation_2_boot_sectors_DVD { + get { + return ResourceManager.GetString("Found_Sony_PlayStation_2_boot_sectors_DVD", resourceCulture); + } + } + + public static string Found_Sony_PlayStation_3_boot_sectors { + get { + return ResourceManager.GetString("Found_Sony_PlayStation_3_boot_sectors", resourceCulture); + } + } + + public static string Found_Sony_PlayStation_3_boot_sectors_DVD { + get { + return ResourceManager.GetString("Found_Sony_PlayStation_3_boot_sectors_DVD", resourceCulture); + } + } + + public static string Found_Sony_PlayStation_4_boot_sectors { + get { + return ResourceManager.GetString("Found_Sony_PlayStation_4_boot_sectors", resourceCulture); + } + } + + public static string Blu_ray_type_XG4_setting_disc_type_XGD4 { + get { + return ResourceManager.GetString("Blu_ray_type_XG4_setting_disc_type_XGD4", resourceCulture); + } + } + + public static string Found_Sony_PlayStation_5_boot_sectors { + get { + return ResourceManager.GetString("Found_Sony_PlayStation_5_boot_sectors", resourceCulture); + } + } + + public static string Blu_ray_type_BDU_setting_disc_type_UHD { + get { + return ResourceManager.GetString("Blu_ray_type_BDU_setting_disc_type_UHD", resourceCulture); + } + } + + public static string Could_not_find_VideoNow_Color_frame_offset { + get { + return ResourceManager.GetString("Could_not_find_VideoNow_Color_frame_offset", resourceCulture); + } + } + + public static string VideoNow_Color_frame_is_offset_0_bytes { + get { + return ResourceManager.GetString("VideoNow_Color_frame_is_offset_0_bytes", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Recognized_Format_Layers_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Recognized_Format_Layers_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Write_Protection_Status_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Write_Protection_Status_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_PFI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_PFI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_DMI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_DMI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_CMI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_CMI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_BCA_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_BCA_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_DVD_AACS_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_DVD_AACS_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_DDS_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_DDS_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Medium_Status_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Medium_Status_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_SAI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_SAI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Last_Out_Border_RMD_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Last_Out_Border_RMD_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Disc_Key_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Disc_Key_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Sector_CMI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Sector_CMI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Pre_Recorded_Info_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Pre_Recorded_Info_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_DVD_R_Media_ID_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_DVD_R_Media_ID_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_DVD_R_PFI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_DVD_R_PFI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_ADIP_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_ADIP_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_DCB_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_DCB_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_HD_DVD_CMI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_HD_DVD_CMI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_HD_DVD_R_Medium_Status { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_HD_DVD_R_Medium_Status", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Last_RMD_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Last_RMD_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Layer_Capacity_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Layer_Capacity_0", resourceCulture); + } + } + + public static string READ_MEDIA_SERIAL_NUMBER_0 { + get { + return ResourceManager.GetString("READ_MEDIA_SERIAL_NUMBER_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Middle_Zone_Start_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Middle_Zone_Start_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Jump_Interval_Size_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Jump_Interval_Size_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Manual_Layer_Jump_Start_LBA_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Manual_Layer_Jump_Start_LBA_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Remap_Anchor_Point_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Remap_Anchor_Point_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_DI_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_DI_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_PAC_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_PAC_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Cartridge_Status_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Cartridge_Status_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_Raw_DFL_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_Raw_DFL_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_001b_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_001b_0", resourceCulture); + } + } + + public static string READ_DISC_STRUCTURE_010b_0 { + get { + return ResourceManager.GetString("READ_DISC_STRUCTURE_010b_0", resourceCulture); + } + } + + public static string READ_TOC_PMA_ATIP_TOC_0 { + get { + return ResourceManager.GetString("READ_TOC_PMA_ATIP_TOC_0", resourceCulture); + } + } + + public static string READ_TOC_PMA_ATIP_ATIP_0 { + get { + return ResourceManager.GetString("READ_TOC_PMA_ATIP_ATIP_0", resourceCulture); + } + } + + public static string READ_TOC_PMA_ATIP_Session_Info_0 { + get { + return ResourceManager.GetString("READ_TOC_PMA_ATIP_Session_Info_0", resourceCulture); + } + } + + public static string READ_TOC_PMA_ATIP_Raw_TOC_0 { + get { + return ResourceManager.GetString("READ_TOC_PMA_ATIP_Raw_TOC_0", resourceCulture); + } + } + + public static string READ_TOC_PMA_ATIP_PMA_0 { + get { + return ResourceManager.GetString("READ_TOC_PMA_ATIP_PMA_0", resourceCulture); + } + } + + public static string READ_TOC_PMA_ATIP_CD_TEXT_0 { + get { + return ResourceManager.GetString("READ_TOC_PMA_ATIP_CD_TEXT_0", resourceCulture); + } + } + + public static string KREON_EXTRACT_SS_0 { + get { + return ResourceManager.GetString("KREON_EXTRACT_SS_0", resourceCulture); + } + } + + public static string READ_DISC_INFORMATION_000b_0 { + get { + return ResourceManager.GetString("READ_DISC_INFORMATION_000b_0", resourceCulture); + } + } + + public static string Found_new_ISRC_0_for_track_1 { + get { + return ResourceManager.GetString("Found_new_ISRC_0_for_track_1", resourceCulture); + } + } + + public static string ISRC_for_track_0_changed_from_1_to_2 { + get { + return ResourceManager.GetString("ISRC_for_track_0_changed_from_1_to_2", resourceCulture); + } + } + + public static string Found_new_MCN_0 { + get { + return ResourceManager.GetString("Found_new_MCN_0", resourceCulture); + } + } + + public static string MCN_changed_from_0_to_1 { + get { + return ResourceManager.GetString("MCN_changed_from_0_to_1", resourceCulture); + } + } + + public static string Pregap_for_track_0_set_to_1_sectors { + get { + return ResourceManager.GetString("Pregap_for_track_0_set_to_1_sectors", resourceCulture); + } + } + + public static string Setting_index_0_for_track_1_to_LBA_2 { + get { + return ResourceManager.GetString("Setting_index_0_for_track_1_to_LBA_2", resourceCulture); + } + } + + public static string Generating_subchannel_for_sector_0 { + get { + return ResourceManager.GetString("Generating_subchannel_for_sector_0", resourceCulture); + } + } + + public static string Hashing_media_tags { + get { + return ResourceManager.GetString("Hashing_media_tags", resourceCulture); + } + } + + public static string Error_0_reading_sector_1 { + get { + return ResourceManager.GetString("Error_0_reading_sector_1", resourceCulture); + } + } + + public static string Hashing_sector_0_of_1 { + get { + return ResourceManager.GetString("Hashing_sector_0_of_1", resourceCulture); + } + } + + public static string Hashing_partition_0 { + get { + return ResourceManager.GetString("Hashing_partition_0", resourceCulture); + } + } + + public static string Hashing_blocks_0_of_1 { + get { + return ResourceManager.GetString("Hashing_blocks_0_of_1", resourceCulture); + } + } + + public static string Hashing_file_0 { + get { + return ResourceManager.GetString("Hashing_file_0", resourceCulture); + } + } + + public static string Checking_filesystems { + get { + return ResourceManager.GetString("Checking_filesystems", resourceCulture); + } + } + + public static string Mounting_0 { + get { + return ResourceManager.GetString("Mounting_0", resourceCulture); + } + } + + public static string Saving_metadata { + get { + return ResourceManager.GetString("Saving_metadata", resourceCulture); + } + } + + public static string Hashing_SuperCardPro_image { + get { + return ResourceManager.GetString("Hashing_SuperCardPro_image", resourceCulture); + } + } + + public static string SCP_image_do_not_same_number_tracks_0_disk_image_1_ignoring { + get { + return ResourceManager.GetString("SCP_image_do_not_same_number_tracks_0_disk_image_1_ignoring", resourceCulture); + } + } + + public static string SCP_image_do_not_same_number_heads_0_disk_image_1_ignoring { + get { + return ResourceManager.GetString("SCP_image_do_not_same_number_heads_0_disk_image_1_ignoring", resourceCulture); + } + } + + public static string Hashing_KryoFlux_images { + get { + return ResourceManager.GetString("Hashing_KryoFlux_images", resourceCulture); + } + } + + public static string KryoFlux_image_do_not_same_number_tracks_0_disk_image_1_ignoring { + get { + return ResourceManager.GetString("KryoFlux_image_do_not_same_number_tracks_0_disk_image_1_ignoring", resourceCulture); + } + } + + public static string KryoFlux_image_do_not_same_number_heads_0_disk_image_1_ignoring { + get { + return ResourceManager.GetString("KryoFlux_image_do_not_same_number_heads_0_disk_image_1_ignoring", resourceCulture); + } + } + + public static string Hashing_DiscFerret_image { + get { + return ResourceManager.GetString("Hashing_DiscFerret_image", resourceCulture); + } + } + + public static string DiscFerret_image_do_not_same_number_tracks_0_disk_image_1_ignoring { + get { + return ResourceManager.GetString("DiscFerret_image_do_not_same_number_tracks_0_disk_image_1_ignoring", resourceCulture); + } + } + + public static string DiscFerret_image_do_not_same_number_heads_0_disk_image_1_ignoring { + get { + return ResourceManager.GetString("DiscFerret_image_do_not_same_number_heads_0_disk_image_1_ignoring", resourceCulture); + } + } + + public static string Cannot_stat_0 { + get { + return ResourceManager.GetString("Cannot_stat_0", resourceCulture); + } + } + + public static string Hashing_file_0_1 { + get { + return ResourceManager.GetString("Hashing_file_0_1", resourceCulture); + } + } + + public static string Hashing_file_byte_0_of_1 { + get { + return ResourceManager.GetString("Hashing_file_byte_0_of_1", resourceCulture); + } + } + + public static string Track_0_of_1 { + get { + return ResourceManager.GetString("Track_0_of_1", resourceCulture); + } + } + + public static string Hashing_subchannel_sector_0_of_1 { + get { + return ResourceManager.GetString("Hashing_subchannel_sector_0_of_1", resourceCulture); + } + } + + public static string Hashing_image_file { + get { + return ResourceManager.GetString("Hashing_image_file", resourceCulture); + } + } + + public static string Hashing_image_file_byte_0_of_1 { + get { + return ResourceManager.GetString("Hashing_image_file_byte_0_of_1", resourceCulture); + } + } + + public static string The_specified_image_says_it_contains_an_optical_media_but_at_the_same_time_says_it_does_not_support_them { + get { + return ResourceManager.GetString("The_specified_image_says_it_contains_an_optical_media_but_at_the_same_time_says_i" + + "t_does_not_support_them", resourceCulture); + } + } + + public static string The_specified_image_says_it_contains_a_block_addressable_media_but_at_the_same_time_says_it_does_not_support_them { + get { + return ResourceManager.GetString("The_specified_image_says_it_contains_a_block_addressable_media_but_at_the_same_ti" + + "me_says_it_does_not_support_them", resourceCulture); + } + } + + public static string Please_open_an_issue_at_Github { + get { + return ResourceManager.GetString("Please_open_an_issue_at_Github", resourceCulture); + } + } + + public static string The_specified_image_says_it_contains_a_byte_addressable_media_but_at_the_same_time_says_it_does_not_support_them { + get { + return ResourceManager.GetString("The_specified_image_says_it_contains_a_byte_addressable_media_but_at_the_same_tim" + + "e_says_it_does_not_support_them", resourceCulture); + } + } + + public static string Not_overwriting_file_0 { + get { + return ResourceManager.GetString("Not_overwriting_file_0", resourceCulture); + } + } + + public static string Writing_0_to_1 { + get { + return ResourceManager.GetString("Writing_0_to_1", resourceCulture); + } + } + + public static string Unable_to_write_file_0 { + get { + return ResourceManager.GetString("Unable_to_write_file_0", resourceCulture); + } + } + + public static string Sectors_0 { + get { + return ResourceManager.GetString("Sectors_0", resourceCulture); + } + } + + public static string Entropying_sector_0 { + get { + return ResourceManager.GetString("Entropying_sector_0", resourceCulture); + } + } + + public static string Error_0_while_reading_sector_1_continuing { + get { + return ResourceManager.GetString("Error_0_while_reading_sector_1_continuing", resourceCulture); + } + } + + public static string _0_bytes { + get { + return ResourceManager.GetString("_0_bytes", resourceCulture); + } + } + + public static string The_selected_image_does_not_support_tracks { + get { + return ResourceManager.GetString("The_selected_image_does_not_support_tracks", resourceCulture); + } + } + + public static string Entropying_track_0_of_1 { + get { + return ResourceManager.GetString("Entropying_track_0_of_1", resourceCulture); + } + } + + public static string Track_0_has_1_sectors { + get { + return ResourceManager.GetString("Track_0_has_1_sectors", resourceCulture); + } + } + + public static string Entropying_sector_0_of_track_1 { + get { + return ResourceManager.GetString("Entropying_sector_0_of_track_1", resourceCulture); + } + } + + public static string Unable_to_get_separate_tracks_not_calculating_their_entropy { + get { + return ResourceManager.GetString("Unable_to_get_separate_tracks_not_calculating_their_entropy", resourceCulture); + } + } + + public static string Error_0_while_reading_data__not_continuing { + get { + return ResourceManager.GetString("Error_0_while_reading_data__not_continuing", resourceCulture); + } + } + + public static string error_code_0 { + get { + return ResourceManager.GetString("error_code_0", resourceCulture); + } + } + + public static string The_specified_device_cannot_be_found { + get { + return ResourceManager.GetString("The_specified_device_cannot_be_found", resourceCulture); + } + } + + public static string Not_enough_permissions_to_open_the_device { + get { + return ResourceManager.GetString("Not_enough_permissions_to_open_the_device", resourceCulture); + } + } + + public static string The_specified_device_is_in_use_by_another_process { + get { + return ResourceManager.GetString("The_specified_device_is_in_use_by_another_process", resourceCulture); + } + } + + public static string Cannot_open_the_device_in_writable_mode_as_needed_by_some_commands { + get { + return ResourceManager.GetString("Cannot_open_the_device_in_writable_mode_as_needed_by_some_commands", resourceCulture); + } + } + + public static string Tried_to_open_a_file_instead_of_a_device { + get { + return ResourceManager.GetString("Tried_to_open_a_file_instead_of_a_device", resourceCulture); + } + } + + public static string Trying_plugin_0 { + get { + return ResourceManager.GetString("Trying_plugin_0", resourceCulture); + } + } + + public static string Title_Index { + get { + return ResourceManager.GetString("Title_Index", resourceCulture); + } + } + + public static string Title_Image_indexes { + get { + return ResourceManager.GetString("Title_Image_indexes", resourceCulture); + } + } + + public static string Found_0_at_1 { + get { + return ResourceManager.GetString("Found_0_at_1", resourceCulture); + } + } + + public static string Found_0_at_zero { + get { + return ResourceManager.GetString("Found_0_at_zero", resourceCulture); + } + } + + public static string Trying_0_at_1 { + get { + return ResourceManager.GetString("Trying_0_at_1", resourceCulture); + } + } + + public static string Got_0_children { + get { + return ResourceManager.GetString("Got_0_children", resourceCulture); + } + } + + public static string Got_0_parents { + get { + return ResourceManager.GetString("Got_0_parents", resourceCulture); + } + } + + public static string Got_0_partitions { + get { + return ResourceManager.GetString("Got_0_partitions", resourceCulture); + } + } + + public static string Found_unknown_vendor_mode_page_0_subpage_1 { + get { + return ResourceManager.GetString("Found_unknown_vendor_mode_page_0_subpage_1", resourceCulture); + } + } + + public static string Found_unknown_vendor_mode_page_0 { + get { + return ResourceManager.GetString("Found_unknown_vendor_mode_page_0", resourceCulture); + } + } + + public static string Found_unknown_mode_page_0_subpage_1 { + get { + return ResourceManager.GetString("Found_unknown_mode_page_0_subpage_1", resourceCulture); + } + } + + public static string Found_unknown_mode_page_0 { + get { + return ResourceManager.GetString("Found_unknown_mode_page_0", resourceCulture); + } + } + + public static string Uploading_device_report { + get { + return ResourceManager.GetString("Uploading_device_report", resourceCulture); + } + } + + public static string Creating_main_database { + get { + return ResourceManager.GetString("Creating_main_database", resourceCulture); + } + } + + public static string Updating_main_database { + get { + return ResourceManager.GetString("Updating_main_database", resourceCulture); + } + } + + public static string Last_update_0 { + get { + return ResourceManager.GetString("Last_update_0", resourceCulture); + } + } + + public static string Error_0_when_trying_to_get_updated_entities { + get { + return ResourceManager.GetString("Error_0_when_trying_to_get_updated_entities", resourceCulture); + } + } + + public static string Adding_USB_vendors { + get { + return ResourceManager.GetString("Adding_USB_vendors", resourceCulture); + } + } + + public static string Added_0_usb_vendors { + get { + return ResourceManager.GetString("Added_0_usb_vendors", resourceCulture); + } + } + + public static string Adding_USB_products { + get { + return ResourceManager.GetString("Adding_USB_products", resourceCulture); + } + } + + public static string Added_0_usb_products { + get { + return ResourceManager.GetString("Added_0_usb_products", resourceCulture); + } + } + + public static string Adding_CompactDisc_read_offsets { + get { + return ResourceManager.GetString("Adding_CompactDisc_read_offsets", resourceCulture); + } + } + + public static string Added_0_CompactDisc_read_offsets { + get { + return ResourceManager.GetString("Added_0_CompactDisc_read_offsets", resourceCulture); + } + } + + public static string Adding_known_devices { + get { + return ResourceManager.GetString("Adding_known_devices", resourceCulture); + } + } + + public static string Added_0_known_devices { + get { + return ResourceManager.GetString("Added_0_known_devices", resourceCulture); + } + } + + public static string Adding_known_iNES_NES_2_0_headers { + get { + return ResourceManager.GetString("Adding_known_iNES_NES_2_0_headers", resourceCulture); + } + } + + public static string Added_0_known_iNES_NES_2_0_headers { + get { + return ResourceManager.GetString("Added_0_known_iNES_NES_2_0_headers", resourceCulture); + } + } + + public static string Updating_USB_vendors { + get { + return ResourceManager.GetString("Updating_USB_vendors", resourceCulture); + } + } + + public static string Modified_0_USB_vendors { + get { + return ResourceManager.GetString("Modified_0_USB_vendors", resourceCulture); + } + } + + public static string Updating_USB_products { + get { + return ResourceManager.GetString("Updating_USB_products", resourceCulture); + } + } + + public static string Modified_0_USB_products { + get { + return ResourceManager.GetString("Modified_0_USB_products", resourceCulture); + } + } + + public static string Updating_CompactDisc_read_offsets { + get { + return ResourceManager.GetString("Updating_CompactDisc_read_offsets", resourceCulture); + } + } + + public static string Modified_0_CompactDisc_read_offsets { + get { + return ResourceManager.GetString("Modified_0_CompactDisc_read_offsets", resourceCulture); + } + } + + public static string Updating_known_devices { + get { + return ResourceManager.GetString("Updating_known_devices", resourceCulture); + } + } + + public static string Modified_0_known_devices { + get { + return ResourceManager.GetString("Modified_0_known_devices", resourceCulture); + } + } + + public static string Updating_known_iNES_NES_2_0_headers { + get { + return ResourceManager.GetString("Updating_known_iNES_NES_2_0_headers", resourceCulture); + } + } + + public static string Modified_0_known_iNES_NES_2_0_headers { + get { + return ResourceManager.GetString("Modified_0_known_iNES_NES_2_0_headers", resourceCulture); + } + } + + public static string Exception_0_when_updating_database { + get { + return ResourceManager.GetString("Exception_0_when_updating_database", resourceCulture); + } + } + + public static string Saving_changes { + get { + return ResourceManager.GetString("Saving_changes", resourceCulture); + } + } + + public static string Exception_while_trying_to_save_statistics { + get { + return ResourceManager.GetString("Exception_while_trying_to_save_statistics", resourceCulture); + } + } + + public static string Uploading_statistics { + get { + return ResourceManager.GetString("Uploading_statistics", resourceCulture); + } + } + + public static string Uploading_partial_statistics_file_0 { + get { + return ResourceManager.GetString("Uploading_partial_statistics_file_0", resourceCulture); + } + } + + public static string Was_created_with_0_version_1_WithMarkup { + get { + return ResourceManager.GetString("Was_created_with_0_version_1_WithMarkup", resourceCulture); + } + } + + public static string Created_by_0_WithMarkup { + get { + return ResourceManager.GetString("Created_by_0_WithMarkup", resourceCulture); + } + } + + public static string Has_partitions { + get { + return ResourceManager.GetString("Has_partitions", resourceCulture); + } + } + + public static string Doesnt_have_partitions { + get { + return ResourceManager.GetString("Doesnt_have_partitions", resourceCulture); + } + } + + public static string Has_sessions { + get { + return ResourceManager.GetString("Has_sessions", resourceCulture); + } + } + + public static string Doesnt_have_sessions { + get { + return ResourceManager.GetString("Doesnt_have_sessions", resourceCulture); + } + } + + public static string Comments_0_WithMarkup { + get { + return ResourceManager.GetString("Comments_0_WithMarkup", resourceCulture); + } + } + + public static string Media_title_0_WithMarkup { + get { + return ResourceManager.GetString("Media_title_0_WithMarkup", resourceCulture); + } + } + + public static string Media_manufacturer_0_WithMarkup { + get { + return ResourceManager.GetString("Media_manufacturer_0_WithMarkup", resourceCulture); + } + } + + public static string Media_model_0_WithMarkup { + get { + return ResourceManager.GetString("Media_model_0_WithMarkup", resourceCulture); + } + } + + public static string Media_serial_number_0_WithMarkup { + get { + return ResourceManager.GetString("Media_serial_number_0_WithMarkup", resourceCulture); + } + } + + public static string Media_barcode_0_WithMarkup { + get { + return ResourceManager.GetString("Media_barcode_0_WithMarkup", resourceCulture); + } + } + + public static string Media_part_number_0_WithMarkup { + get { + return ResourceManager.GetString("Media_part_number_0_WithMarkup", resourceCulture); + } + } + + public static string Drive_manufacturer_0_WithMarkup { + get { + return ResourceManager.GetString("Drive_manufacturer_0_WithMarkup", resourceCulture); + } + } + + public static string Drive_model_0_WithMarkup { + get { + return ResourceManager.GetString("Drive_model_0_WithMarkup", resourceCulture); + } + } + + public static string Drive_firmware_info_0_WithMarkup { + get { + return ResourceManager.GetString("Drive_firmware_info_0_WithMarkup", resourceCulture); + } + } + + public static string Media_geometry_0_cylinders_1_heads_2_sectors_per_track_WithMarkup { + get { + return ResourceManager.GetString("Media_geometry_0_cylinders_1_heads_2_sectors_per_track_WithMarkup", resourceCulture); + } + } + + public static string Contains_0_readable_media_tags_WithMarkup { + get { + return ResourceManager.GetString("Contains_0_readable_media_tags_WithMarkup", resourceCulture); + } + } + + public static string Contains_0_readable_sector_tags_WithMarkup { + get { + return ResourceManager.GetString("Contains_0_readable_sector_tags_WithMarkup", resourceCulture); + } + } + + public static string Title_Manufacturer { + get { + return ResourceManager.GetString("Title_Manufacturer", resourceCulture); + } + } + + public static string Title_Model { + get { + return ResourceManager.GetString("Title_Model", resourceCulture); + } + } + + public static string Title_Serial { + get { + return ResourceManager.GetString("Title_Serial", resourceCulture); + } + } + + public static string Title_Software { + get { + return ResourceManager.GetString("Title_Software", resourceCulture); + } + } + + public static string Title_Version { + get { + return ResourceManager.GetString("Title_Version", resourceCulture); + } + } + + public static string Title_Operating_system { + get { + return ResourceManager.GetString("Title_Operating_system", resourceCulture); + } + } + + public static string Title_Dump_hardware_information { + get { + return ResourceManager.GetString("Title_Dump_hardware_information", resourceCulture); + } + } + + public static string Mapping_WithMarkup { + get { + return ResourceManager.GetString("Mapping_WithMarkup", resourceCulture); + } + } + + public static string SCSI_INQUIRY_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("SCSI_INQUIRY_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string ATA_IDENTIFY_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("ATA_IDENTIFY_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string ATAPI_IDENTIFY_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("ATAPI_IDENTIFY_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string SCSI_MODE_SENSE_10_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("SCSI_MODE_SENSE_10_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string SCSI_MODE_SENSE_6_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("SCSI_MODE_SENSE_6_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string CompactDisc_Table_of_Contents_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("CompactDisc_Table_of_Contents_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string CompactDisc_Absolute_Time_In_Pregroove_ATIP_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("CompactDisc_Absolute_Time_In_Pregroove_ATIP_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string CompactDisc_Lead_in_CD_Text_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("CompactDisc_Lead_in_CD_Text_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string CompactDisc_Media_Catalogue_Number_contained_in_image_0_WithMarkup { + get { + return ResourceManager.GetString("CompactDisc_Media_Catalogue_Number_contained_in_image_0_WithMarkup", resourceCulture); + } + } + + public static string DVD_RW_Pre_Recorded_Information_WithMarkup { + get { + return ResourceManager.GetString("DVD_RW_Pre_Recorded_Information_WithMarkup", resourceCulture); + } + } + + public static string DVD_Physical_Format_Information_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("DVD_Physical_Format_Information_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string DVD_RAM_Disc_Definition_Structure_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("DVD_RAM_Disc_Definition_Structure_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string DVD_R_Physical_Format_Information_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("DVD_R_Physical_Format_Information_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string Bluray_Disc_Information_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("Bluray_Disc_Information_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string Bluray_Disc_Definition_Structure_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("Bluray_Disc_Definition_Structure_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string PCMCIA_CIS_WithMarkup { + get { + return ResourceManager.GetString("PCMCIA_CIS_WithMarkup", resourceCulture); + } + } + + public static string SecureDigital_CID_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("SecureDigital_CID_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string SecureDigital_CSD_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("SecureDigital_CSD_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string SecureDigital_SCR_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("SecureDigital_SCR_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string SecureDigital_OCR_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("SecureDigital_OCR_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string MultiMediaCard_CID_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("MultiMediaCard_CID_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string MultiMediaCard_CSD_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("MultiMediaCard_CSD_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string MultiMediaCard_Extended_CSD_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("MultiMediaCard_Extended_CSD_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string MultiMediaCard_OCR_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("MultiMediaCard_OCR_contained_in_image_WithMarkup", resourceCulture); } } - /// - /// Looks up a localized string similar to [bold]Xbox Physical Format Information contained in image:[/]. - /// public static string Xbox_Physical_Format_Information_contained_in_image_WithMarkup { get { return ResourceManager.GetString("Xbox_Physical_Format_Information_contained_in_image_WithMarkup", resourceCulture); } } - /// - /// Looks up a localized string similar to Xbox Security Sector. - /// - public static string Xbox_Security_Sector { + public static string Xbox_DMI_contained_in_image_WithMarkup { get { - return ResourceManager.GetString("Xbox_Security_Sector", resourceCulture); + return ResourceManager.GetString("Xbox_DMI_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string Xbox_360_DMI_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("Xbox_360_DMI_contained_in_image_WithMarkup", resourceCulture); } } - /// - /// Looks up a localized string similar to [bold]Xbox Security Sectors contained in image:[/]. - /// public static string Xbox_Security_Sectors_contained_in_image_WithMarkup { get { return ResourceManager.GetString("Xbox_Security_Sectors_contained_in_image_WithMarkup", resourceCulture); } } + + public static string Title_Image_tracks { + get { + return ResourceManager.GetString("Title_Image_tracks", resourceCulture); + } + } + + public static string Title_Image_sessions { + get { + return ResourceManager.GetString("Title_Image_sessions", resourceCulture); + } + } + + public static string Please_write_description_of_media_type { + get { + return ResourceManager.GetString("Please_write_description_of_media_type", resourceCulture); + } + } + + public static string Please_write_media_model { + get { + return ResourceManager.GetString("Please_write_media_model", resourceCulture); + } + } + + public static string Error_0 { + get { + return ResourceManager.GetString("Error_0", resourceCulture); + } + } + + public static string The_drive_has_returned_incorrect_Q_positioning_calculating_pregaps { + get { + return ResourceManager.GetString("The_drive_has_returned_incorrect_Q_positioning_calculating_pregaps", resourceCulture); + } + } + + public static string Output_format_does_not_support_sessions { + get { + return ResourceManager.GetString("Output_format_does_not_support_sessions", resourceCulture); + } + } + + public static string Error_0_setting_metadata { + get { + return ResourceManager.GetString("Error_0_setting_metadata", resourceCulture); + } + } + + public static string Could_not_read_subchannel_for_this_track_supposing_zero_sectors { + get { + return ResourceManager.GetString("Could_not_read_subchannel_for_this_track_supposing_zero_sectors", resourceCulture); + } + } + + public static string System_information { + get { + return ResourceManager.GetString("System_information", resourceCulture); + } + } + + public static string Program_information { + get { + return ResourceManager.GetString("Program_information", resourceCulture); + } + } + + public static string Running_in_0_bit { + get { + return ResourceManager.GetString("Running_in_0_bit", resourceCulture); + } + } + + public static string DEBUG_version { + get { + return ResourceManager.GetString("DEBUG_version", resourceCulture); + } + } + + public static string Command_line_0 { + get { + return ResourceManager.GetString("Command_line_0", resourceCulture); + } + } + + public static string Hashing_sectors { + get { + return ResourceManager.GetString("Hashing_sectors", resourceCulture); + } + } + + public static string Hashing_files { + get { + return ResourceManager.GetString("Hashing_files", resourceCulture); + } + } + + public static string Hashing_tracks { + get { + return ResourceManager.GetString("Hashing_tracks", resourceCulture); + } + } + + public static string Could_not_get_tracks_because_0 { + get { + return ResourceManager.GetString("Could_not_get_tracks_because_0", resourceCulture); + } + } + + public static string Invoke_Found_undecoded_tuple_ID_0 { + get { + return ResourceManager.GetString("Invoke_Found_undecoded_tuple_ID_0", resourceCulture); + } + } + + public static string Found_unknown_tuple_ID_0 { + get { + return ResourceManager.GetString("Found_unknown_tuple_ID_0", resourceCulture); + } + } + + public static string Could_not_get_tuples { + get { + return ResourceManager.GetString("Could_not_get_tuples", resourceCulture); + } + } + + public static string Title_Type_for_media { + get { + return ResourceManager.GetString("Title_Type_for_media", resourceCulture); + } + } + + public static string Image_information_WithMarkup { + get { + return ResourceManager.GetString("Image_information_WithMarkup", resourceCulture); + } + } + + public static string Format_0_version_1_WithMarkup { + get { + return ResourceManager.GetString("Format_0_version_1_WithMarkup", resourceCulture); + } + } + + public static string Format_0_WithMarkup { + get { + return ResourceManager.GetString("Format_0_WithMarkup", resourceCulture); + } + } + + public static string Was_created_with_0_WithMarkup { + get { + return ResourceManager.GetString("Was_created_with_0_WithMarkup", resourceCulture); + } + } + + public static string Contains_a_media_of_type_0_and_XML_type_1_WithMarkup { + get { + return ResourceManager.GetString("Contains_a_media_of_type_0_and_XML_type_1_WithMarkup", resourceCulture); + } + } + + public static string Drive_serial_number_0_WithMarkup { + get { + return ResourceManager.GetString("Drive_serial_number_0_WithMarkup", resourceCulture); + } + } + + public static string CompactDisc_Power_Management_Area_contained_in_image_WithMarkup { + get { + return ResourceManager.GetString("CompactDisc_Power_Management_Area_contained_in_image_WithMarkup", resourceCulture); + } + } + + public static string Output_format_does_not_support_hidden_tracks { + get { + return ResourceManager.GetString("Output_format_does_not_support_hidden_tracks", resourceCulture); + } + } + + public static string Image_flux_captures { + get { + return ResourceManager.GetString("Image_flux_captures", resourceCulture); + } + } + + public static string Archive_Information_With_Markup { + get { + return ResourceManager.GetString("Archive_Information_With_Markup", resourceCulture); + } + } + + public static string Using_Lite_On_raw_DVD_reading { + get { + return ResourceManager.GetString("Using_Lite-On_raw_DVD_reading", resourceCulture); + } + } } } diff --git a/Aaru.Localization/Core.resx b/Aaru.Localization/Core.resx index 90827f1d0..29e600a21 100644 --- a/Aaru.Localization/Core.resx +++ b/Aaru.Localization/Core.resx @@ -2202,6 +2202,9 @@ Do you want to proceed? (Y/N): Trying HL-DT-ST (aka LG) trick to raw read DVDs... + + + Trying Lite-On trick to raw read DVDs... Trying MediaTek READ DRAM command... @@ -3494,6 +3497,9 @@ It has no sense to do it, and it will put too much strain on the tape. This image contains low-level flux captures. - [bold]Archive information:[/] - + [bold]Archive information:[/] + + + Using Lite-On raw DVD reading. + \ No newline at end of file diff --git a/Aaru.Tests.Devices/SCSI/HL-DT-ST.cs b/Aaru.Tests.Devices/SCSI/HL-DT-ST.cs index 13cee5951..b0c59f141 100644 --- a/Aaru.Tests.Devices/SCSI/HL-DT-ST.cs +++ b/Aaru.Tests.Devices/SCSI/HL-DT-ST.cs @@ -150,7 +150,9 @@ static class HlDtSt lba, count, dev.Timeout, - out double duration); + out double duration, + 0xffffff, + false); menu: AaruConsole.WriteLine(Localization.Device_0, devPath); diff --git a/Aaru/Commands/Device/DeviceReport.cs b/Aaru/Commands/Device/DeviceReport.cs index d24ed96b0..2ce9d344e 100644 --- a/Aaru/Commands/Device/DeviceReport.cs +++ b/Aaru/Commands/Device/DeviceReport.cs @@ -685,7 +685,8 @@ sealed class DeviceReportCommand : Command tryHldtst = false, tryPioneer = false, tryNec = false, - tryMediaTekF106 = false; + tryMediaTekF106 = false, + tryLiteOn = false; tryPlextor |= dev.Manufacturer.Equals("plextor", StringComparison.InvariantCultureIgnoreCase); @@ -698,6 +699,8 @@ sealed class DeviceReportCommand : Command tryNec |= dev.Manufacturer.Equals("nec", StringComparison.InvariantCultureIgnoreCase); + tryLiteOn |= dev.Manufacturer.Equals("lite-on", StringComparison.InvariantCultureIgnoreCase); + if(!iomegaRev) { if(!tryPlextor) @@ -831,7 +834,8 @@ sealed class DeviceReportCommand : Command tryPioneer, tryNec, tryHldtst, - tryMediaTekF106); + tryMediaTekF106, + tryLiteOn); if(mediaTest is null) continue;