diff --git a/Aaru.Core/Devices/Dumping/ATA.cs b/Aaru.Core/Devices/Dumping/ATA.cs index d90f7faee..89226824d 100644 --- a/Aaru.Core/Devices/Dumping/ATA.cs +++ b/Aaru.Core/Devices/Dumping/ATA.cs @@ -47,6 +47,7 @@ using Aaru.Decoders.ATA; using Aaru.Decoders.PCMCIA; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Identify = Aaru.CommonTypes.Structs.Devices.ATA.Identify; using Tuple = Aaru.Decoders.PCMCIA.Tuple; using Version = Aaru.CommonTypes.Interop.Version; @@ -381,17 +382,19 @@ public partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). Per(totalDuration.Milliseconds()))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_write_speed_0, - ByteSize.FromBytes(blockSize * (blocks + 1)).Per(imageWriteDuration.Seconds()))); + ByteSize.FromBytes(blockSize * (blocks + 1)). + Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalDuration.Milliseconds())); @@ -443,11 +446,11 @@ public partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, - (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } #endregion Trimming @@ -650,8 +653,8 @@ public partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -661,7 +664,8 @@ public partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalDuration.Milliseconds())); @@ -695,10 +699,11 @@ public partial class Dump outputFormat.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -850,15 +855,15 @@ public partial class Dump totalChkDuration = (chkEnd - chkStart).TotalMilliseconds; - UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0_seconds, - (chkEnd - chkStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0, + (chkEnd - chkStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). Per(totalChkDuration.Milliseconds()))); - _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0_seconds, - (chkEnd - chkStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0, + (chkEnd - chkStart).Humanize(minUnit: TimeUnit.Second)); _dumpLog.WriteLine(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalChkDuration.Milliseconds())); @@ -926,9 +931,12 @@ public partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Core/Devices/Dumping/CompactDisc/Dump.cs b/Aaru.Core/Devices/Dumping/CompactDisc/Dump.cs index a23a4e9e5..a49745972 100644 --- a/Aaru.Core/Devices/Dumping/CompactDisc/Dump.cs +++ b/Aaru.Core/Devices/Dumping/CompactDisc/Dump.cs @@ -52,6 +52,7 @@ using Aaru.Decoders.CD; using Aaru.Devices; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Track = Aaru.CommonTypes.Structs.Track; using TrackType = Aaru.CommonTypes.Enums.TrackType; using Version = Aaru.CommonTypes.Interop.Version; @@ -1294,7 +1295,8 @@ sealed partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -1304,7 +1306,8 @@ sealed partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -1440,8 +1443,8 @@ sealed partial class Dump outputOptical.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); subLog?.Close(); @@ -1462,9 +1465,12 @@ sealed partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - dumpStart).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Core/Devices/Dumping/CompactDisc/Trim.cs b/Aaru.Core/Devices/Dumping/CompactDisc/Trim.cs index 468a11ca2..93d9c6d2e 100644 --- a/Aaru.Core/Devices/Dumping/CompactDisc/Trim.cs +++ b/Aaru.Core/Devices/Dumping/CompactDisc/Trim.cs @@ -44,6 +44,8 @@ using Aaru.Core.Logging; using Aaru.Decoders.CD; using Aaru.Decoders.SCSI; using Aaru.Devices; +using Humanizer; +using Humanizer.Localisation; using Track = Aaru.CommonTypes.Structs.Track; namespace Aaru.Core.Devices.Dumping; @@ -293,9 +295,10 @@ partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } } \ No newline at end of file diff --git a/Aaru.Core/Devices/Dumping/LinearMemory/Retrode.cs b/Aaru.Core/Devices/Dumping/LinearMemory/Retrode.cs index d59c7cc1d..44d545a80 100644 --- a/Aaru.Core/Devices/Dumping/LinearMemory/Retrode.cs +++ b/Aaru.Core/Devices/Dumping/LinearMemory/Retrode.cs @@ -38,6 +38,7 @@ using Aaru.CommonTypes.Interfaces; using Aaru.Core.Graphics; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Version = Aaru.CommonTypes.Interop.Version; namespace Aaru.Core.Devices.Dumping; @@ -403,7 +404,7 @@ public partial class Dump DateTime end = DateTime.UtcNow; EndProgress?.Invoke(); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(512 * (romSectors + 1)). @@ -413,7 +414,7 @@ public partial class Dump ByteSize.FromBytes(512 * (romSectors + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(512 * (romSectors + 1)).Per(totalDuration.Milliseconds()))); @@ -442,7 +443,7 @@ public partial class Dump DateTime closeStart = DateTime.Now; outputBai.Close(); DateTime closeEnd = DateTime.Now; - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -461,9 +462,12 @@ public partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(512 * (romSectors + 1)). diff --git a/Aaru.Core/Devices/Dumping/Metadata.cs b/Aaru.Core/Devices/Dumping/Metadata.cs index b6eeae90f..0b8a0fb8c 100644 --- a/Aaru.Core/Devices/Dumping/Metadata.cs +++ b/Aaru.Core/Devices/Dumping/Metadata.cs @@ -41,6 +41,7 @@ using Aaru.CommonTypes.Enums; using Aaru.CommonTypes.Interfaces; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; namespace Aaru.Core.Devices.Dumping; @@ -98,7 +99,7 @@ partial class Dump return; totalChkDuration = (end - chkStart).TotalMilliseconds; - _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0_seconds, (end - chkStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0, (end - chkStart).Humanize(minUnit: TimeUnit.Second)); _dumpLog.WriteLine(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalChkDuration.Milliseconds())); diff --git a/Aaru.Core/Devices/Dumping/MiniDisc.cs b/Aaru.Core/Devices/Dumping/MiniDisc.cs index 1b24ce3e6..867e9dcfe 100644 --- a/Aaru.Core/Devices/Dumping/MiniDisc.cs +++ b/Aaru.Core/Devices/Dumping/MiniDisc.cs @@ -49,6 +49,7 @@ using Aaru.Decoders.SCSI; using Aaru.Devices; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Version = Aaru.CommonTypes.Interop.Version; namespace Aaru.Core.Devices.Dumping; @@ -443,7 +444,8 @@ partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -453,7 +455,8 @@ partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -503,10 +506,11 @@ partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } #endregion Trimming @@ -727,10 +731,10 @@ partial class Dump outputFormat.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -774,14 +778,15 @@ partial class Dump { totalChkDuration = (end - chkStart).TotalMilliseconds; - UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0_seconds, - (end - chkStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). Per(totalChkDuration.Milliseconds()))); - _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0_seconds, (end - chkStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second)); _dumpLog.WriteLine(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalChkDuration.Milliseconds())); @@ -859,9 +864,12 @@ partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -871,10 +879,9 @@ partial class Dump UpdateStatus?.Invoke(string.Format(Localization.Core.Fastest_speed_burst_0, ByteSize.FromMegabytes(maxSpeed).Per(_oneSecond))); if(minSpeed is > 0 and < double.MaxValue) - UpdateStatus?.Invoke(string.Format(Localization.Core.Slowest_speed_burst_0, + UpdateStatus?.Invoke(string.Format(Localization.Core.Slowest_speed_burst_0, ByteSize.FromMegabytes(minSpeed).Per(_oneSecond))); - UpdateStatus?.Invoke(string.Format(Localization.Core._0_sectors_could_not_be_read, _resume.BadBlocks.Count)); UpdateStatus?.Invoke(""); diff --git a/Aaru.Core/Devices/Dumping/PlayStationPortable/MemoryStick.cs b/Aaru.Core/Devices/Dumping/PlayStationPortable/MemoryStick.cs index ccbbc6129..40674af28 100644 --- a/Aaru.Core/Devices/Dumping/PlayStationPortable/MemoryStick.cs +++ b/Aaru.Core/Devices/Dumping/PlayStationPortable/MemoryStick.cs @@ -49,6 +49,7 @@ using Aaru.Decoders.SCSI; using Aaru.Devices; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Version = Aaru.CommonTypes.Interop.Version; namespace Aaru.Core.Devices.Dumping; @@ -278,7 +279,8 @@ public partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -288,7 +290,8 @@ public partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -342,7 +345,9 @@ public partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, (end - start).TotalSeconds); + + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } #endregion Trimming @@ -580,10 +585,10 @@ public partial class Dump outputFormat.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -627,14 +632,15 @@ public partial class Dump { totalChkDuration = (end - chkStart).TotalMilliseconds; - UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0_seconds, - (end - chkStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). Per(totalChkDuration.Milliseconds()))); - _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0_seconds, (end - chkStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second)); _dumpLog.WriteLine(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalChkDuration.Milliseconds())); @@ -701,9 +707,12 @@ public partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Core/Devices/Dumping/PlayStationPortable/UMD.cs b/Aaru.Core/Devices/Dumping/PlayStationPortable/UMD.cs index 98a826495..448484543 100644 --- a/Aaru.Core/Devices/Dumping/PlayStationPortable/UMD.cs +++ b/Aaru.Core/Devices/Dumping/PlayStationPortable/UMD.cs @@ -47,6 +47,7 @@ using Aaru.Decoders.SCSI; using Aaru.Devices; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Track = Aaru.CommonTypes.Structs.Track; using TrackType = Aaru.CommonTypes.Enums.TrackType; using Version = Aaru.CommonTypes.Interop.Version; @@ -300,7 +301,8 @@ public partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -310,7 +312,8 @@ public partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -362,7 +365,9 @@ public partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, (end - start).TotalSeconds); + + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } #endregion Trimming @@ -585,7 +590,7 @@ public partial class Dump DateTime closeStart = DateTime.Now; outputOptical.Close(); DateTime closeEnd = DateTime.Now; - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -603,9 +608,12 @@ public partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Core/Devices/Dumping/SSC.cs b/Aaru.Core/Devices/Dumping/SSC.cs index 2259e94b3..a16ef856a 100644 --- a/Aaru.Core/Devices/Dumping/SSC.cs +++ b/Aaru.Core/Devices/Dumping/SSC.cs @@ -50,6 +50,7 @@ using Aaru.Devices; using Aaru.Helpers; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using TapeFile = Aaru.CommonTypes.Structs.TapeFile; using TapePartition = Aaru.CommonTypes.Structs.TapePartition; using Version = Aaru.CommonTypes.Interop.Version; @@ -1104,7 +1105,8 @@ partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -1114,7 +1116,8 @@ partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -1324,10 +1327,10 @@ partial class Dump outputTape.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -1379,14 +1382,15 @@ partial class Dump { totalChkDuration = (end - chkStart).TotalMilliseconds; - UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0_seconds, - (end - chkStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). Per(totalChkDuration.Milliseconds()))); - _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0_seconds, (end - chkStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second)); _dumpLog.WriteLine(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalChkDuration.Milliseconds())); @@ -1465,9 +1469,12 @@ partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Core/Devices/Dumping/Sbc/Dump.cs b/Aaru.Core/Devices/Dumping/Sbc/Dump.cs index 0fcb55fe2..6661cffd5 100644 --- a/Aaru.Core/Devices/Dumping/Sbc/Dump.cs +++ b/Aaru.Core/Devices/Dumping/Sbc/Dump.cs @@ -54,6 +54,7 @@ using Aaru.Decoders.SCSI.MMC; using Aaru.Devices; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using DVDDecryption = Aaru.Decryption.DVD.Dump; using Track = Aaru.CommonTypes.Structs.Track; using TrackType = Aaru.CommonTypes.Enums.TrackType; @@ -764,7 +765,8 @@ partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -774,7 +776,8 @@ partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -801,10 +804,11 @@ partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } #endregion Trimming @@ -1010,10 +1014,10 @@ partial class Dump outputFormat.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -1063,14 +1067,15 @@ partial class Dump { totalChkDuration = (end - chkStart).TotalMilliseconds; - UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0_seconds, - (end - chkStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). Per(totalChkDuration.Milliseconds()))); - _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0_seconds, (end - chkStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second)); _dumpLog.WriteLine(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -1289,9 +1294,12 @@ partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Core/Devices/Dumping/SecureDigital.cs b/Aaru.Core/Devices/Dumping/SecureDigital.cs index c038e89ad..dc32c6bbc 100644 --- a/Aaru.Core/Devices/Dumping/SecureDigital.cs +++ b/Aaru.Core/Devices/Dumping/SecureDigital.cs @@ -48,6 +48,7 @@ using Aaru.Decoders.MMC; using Aaru.Decoders.SecureDigital; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using CSD = Aaru.Decoders.MMC.CSD; using DeviceType = Aaru.CommonTypes.Enums.DeviceType; using Version = Aaru.CommonTypes.Interop.Version; @@ -718,7 +719,8 @@ public partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -728,7 +730,8 @@ public partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -785,10 +788,11 @@ public partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } #endregion Trimming @@ -886,10 +890,10 @@ public partial class Dump outputFormat.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -936,14 +940,15 @@ public partial class Dump totalChkDuration = (end - chkStart).TotalMilliseconds; - UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0_seconds, - (end - chkStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). Per(totalChkDuration.Milliseconds()))); - _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0_seconds, (end - chkStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Sidecar_created_in_0, + (end - chkStart).Humanize(minUnit: TimeUnit.Second)); _dumpLog.WriteLine(Localization.Core.Average_checksum_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)).Per(totalChkDuration.Milliseconds())); @@ -997,9 +1002,12 @@ public partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Core/Devices/Dumping/XGD.cs b/Aaru.Core/Devices/Dumping/XGD.cs index efd25fece..f51d6d252 100644 --- a/Aaru.Core/Devices/Dumping/XGD.cs +++ b/Aaru.Core/Devices/Dumping/XGD.cs @@ -51,6 +51,7 @@ using Aaru.Decoders.Xbox; using Aaru.Devices; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Device = Aaru.Devices.Remote.Device; using Layers = Aaru.CommonTypes.AaruMetadata.Layers; using PlatformID = Aaru.CommonTypes.Interop.PlatformID; @@ -945,7 +946,8 @@ partial class Dump ibgLog.Close(_dev, blocks, blockSize, (end - start).TotalSeconds, currentSpeed * 1024, blockSize * (double)(blocks + 1) / 1024 / (totalDuration / 1000), _devicePath); - UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -955,7 +957,8 @@ partial class Dump ByteSize.FromBytes(blockSize * (blocks + 1)). Per(imageWriteDuration.Seconds()))); - _dumpLog.WriteLine(Localization.Core.Dump_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Dump_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); _dumpLog.WriteLine(string.Format(Localization.Core.Average_dump_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). @@ -1011,10 +1014,11 @@ partial class Dump EndProgress?.Invoke(); end = DateTime.UtcNow; - UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0_seconds, - (end - start).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Trimming_finished_in_0_seconds, (end - start).TotalSeconds); + _dumpLog.WriteLine(string.Format(Localization.Core.Trimming_finished_in_0, + (end - start).Humanize(minUnit: TimeUnit.Second))); } #endregion Trimming @@ -1284,10 +1288,10 @@ partial class Dump outputFormat.Close(); DateTime closeEnd = DateTime.Now; - UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0_seconds, - (closeEnd - closeStart).TotalSeconds)); + UpdateStatus?.Invoke(string.Format(Localization.Core.Closed_in_0, + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); - _dumpLog.WriteLine(Localization.Core.Closed_in_0_seconds, (closeEnd - closeStart).TotalSeconds); + _dumpLog.WriteLine(Localization.Core.Closed_in_0, (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second)); if(_aborted) { @@ -1319,9 +1323,12 @@ partial class Dump UpdateStatus?.Invoke(""); UpdateStatus?. - Invoke(string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands_2_checksumming_3_writing_4_closing, - (end - start).TotalSeconds, totalDuration / 1000, totalChkDuration / 1000, - imageWriteDuration, (closeEnd - closeStart).TotalSeconds)); + Invoke(string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing, + (end - start).Humanize(minUnit: TimeUnit.Second), + totalDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + totalChkDuration.Milliseconds().Humanize(minUnit: TimeUnit.Second), + imageWriteDuration.Seconds().Humanize(minUnit: TimeUnit.Second), + (closeEnd - closeStart).Humanize(minUnit: TimeUnit.Second))); UpdateStatus?.Invoke(string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(blockSize * (blocks + 1)). diff --git a/Aaru.Gui/ViewModels/Panels/DeviceInfoViewModel.cs b/Aaru.Gui/ViewModels/Panels/DeviceInfoViewModel.cs index 9bd29df99..4f77e880d 100644 --- a/Aaru.Gui/ViewModels/Panels/DeviceInfoViewModel.cs +++ b/Aaru.Gui/ViewModels/Panels/DeviceInfoViewModel.cs @@ -41,6 +41,8 @@ using Aaru.Gui.ViewModels.Tabs; using Aaru.Gui.Views.Tabs; using Aaru.Localization; using Avalonia.Controls; +using Humanizer; +using Humanizer.Localisation; using ReactiveUI; using DeviceInfo = Aaru.Core.Devices.Info.DeviceInfo; @@ -207,17 +209,20 @@ public sealed class DeviceInfoViewModel : ViewModelBase { PlextorEepromVisible = true; PlextorDiscs = $"{devInfo.PlextorFeatures.Discs}"; - PlextorCdReadTime = TimeSpan.FromSeconds(devInfo.PlextorFeatures.CdReadTime).ToString(); + PlextorCdReadTime = devInfo.PlextorFeatures.CdReadTime.Seconds().Humanize(minUnit: TimeUnit.Second); - PlextorCdWriteTime = TimeSpan.FromSeconds(devInfo.PlextorFeatures.CdWriteTime).ToString(); + PlextorCdWriteTime = + devInfo.PlextorFeatures.CdWriteTime.Seconds().Humanize(minUnit: TimeUnit.Second); if(devInfo.PlextorFeatures.IsDvd) { PlextorDvdTimesVisible = true; - PlextorDvdReadTime = TimeSpan.FromSeconds(devInfo.PlextorFeatures.DvdReadTime).ToString(); + PlextorDvdReadTime = devInfo.PlextorFeatures.DvdReadTime.Seconds(). + Humanize(minUnit: TimeUnit.Second); - PlextorDvdWriteTime = TimeSpan.FromSeconds(devInfo.PlextorFeatures.DvdWriteTime).ToString(); + PlextorDvdWriteTime = devInfo.PlextorFeatures.DvdWriteTime.Seconds(). + Humanize(minUnit: TimeUnit.Second); } } diff --git a/Aaru.Gui/ViewModels/Windows/ImageVerifyViewModel.cs b/Aaru.Gui/ViewModels/Windows/ImageVerifyViewModel.cs index 74fa89b4c..2da7744d6 100644 --- a/Aaru.Gui/ViewModels/Windows/ImageVerifyViewModel.cs +++ b/Aaru.Gui/ViewModels/Windows/ImageVerifyViewModel.cs @@ -44,6 +44,8 @@ using Aaru.Gui.Models; using Aaru.Localization; using Avalonia.Controls; using Avalonia.Threading; +using Humanizer; +using Humanizer.Localisation; using ReactiveUI; namespace Aaru.Gui.ViewModels.Windows; @@ -437,7 +439,8 @@ public sealed class ImageVerifyViewModel : ViewModelBase }; }); - AaruConsole.VerboseWriteLine(UI.Checking_disc_image_checksums_took_0_seconds, checkTime.TotalSeconds); + AaruConsole.VerboseWriteLine(UI.Checking_disc_image_checksums_took_0, + checkTime.Humanize(minUnit: TimeUnit.Second)); } } @@ -589,7 +592,9 @@ public sealed class ImageVerifyViewModel : ViewModelBase } TimeSpan checkTime = endCheck - startCheck; - AaruConsole.VerboseWriteLine(UI.Checking_sector_checksums_took_0_seconds, checkTime.TotalSeconds); + + AaruConsole.VerboseWriteLine(UI.Checking_sector_checksums_took_0, + checkTime.Humanize(minUnit: TimeUnit.Second)); await Dispatcher.UIThread.InvokeAsync(() => { diff --git a/Aaru.Gui/ViewModels/Windows/MediaScanViewModel.cs b/Aaru.Gui/ViewModels/Windows/MediaScanViewModel.cs index 671193e51..f35eef814 100644 --- a/Aaru.Gui/ViewModels/Windows/MediaScanViewModel.cs +++ b/Aaru.Gui/ViewModels/Windows/MediaScanViewModel.cs @@ -45,6 +45,7 @@ using Avalonia.Media; using Avalonia.Threading; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using MsBox.Avalonia; using MsBox.Avalonia.Enums; @@ -398,8 +399,9 @@ public sealed class MediaScanViewModel : ViewModelBase await Dispatcher.UIThread.InvokeAsync(() => { - TotalTime = string.Format(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands, - results.TotalTime, results.ProcessingTime); + TotalTime = string.Format(Localization.Core.Took_a_total_of_0_1_processing_commands, + results.TotalTime.Seconds().Humanize(minUnit: TimeUnit.Second), + results.ProcessingTime.Seconds().Humanize(minUnit: TimeUnit.Second)); AvgSpeed = string.Format(Localization.Core.Average_speed_0, ByteSize.FromBytes(results.AvgSpeed).Per(1.Seconds())); diff --git a/Aaru.Localization/Core.Designer.cs b/Aaru.Localization/Core.Designer.cs index f263ecb88..ad92d7919 100644 --- a/Aaru.Localization/Core.Designer.cs +++ b/Aaru.Localization/Core.Designer.cs @@ -1212,11 +1212,11 @@ namespace Aaru.Localization { } /// - /// Looks up a localized string similar to Closed in {0} seconds.. + /// Looks up a localized string similar to Closed in {0}.. /// - public static string Closed_in_0_seconds { + public static string Closed_in_0 { get { - return ResourceManager.GetString("Closed_in_0_seconds", resourceCulture); + return ResourceManager.GetString("Closed_in_0", resourceCulture); } } @@ -2541,38 +2541,38 @@ namespace Aaru.Localization { } /// - /// Looks up a localized string similar to Drive has spent {0} hours, {1} minutes and {2} seconds reading CDs. + /// Looks up a localized string similar to Drive has spent {0} reading CDs. /// - public static string Drive_has_spent_0_hours_1_minutes_and_2_seconds_reading_CDs { + public static string Drive_has_spent_0_reading_CDs { get { - return ResourceManager.GetString("Drive_has_spent_0_hours_1_minutes_and_2_seconds_reading_CDs", resourceCulture); + return ResourceManager.GetString("Drive_has_spent_0_reading_CDs", resourceCulture); } } /// - /// Looks up a localized string similar to Drive has spent {0} hours, {1} minutes and {2} seconds reading DVDs. + /// Looks up a localized string similar to Drive has spent {0} reading DVDs. /// - public static string Drive_has_spent_0_hours_1_minutes_and_2_seconds_reading_DVDs { + public static string Drive_has_spent_0_reading_DVDs { get { - return ResourceManager.GetString("Drive_has_spent_0_hours_1_minutes_and_2_seconds_reading_DVDs", resourceCulture); + return ResourceManager.GetString("Drive_has_spent_0_reading_DVDs", resourceCulture); } } /// - /// Looks up a localized string similar to Drive has spent {0} hours, {1} minutes and {2} seconds writing CDs. + /// Looks up a localized string similar to Drive has spent {0} writing CDs. /// - public static string Drive_has_spent_0_hours_1_minutes_and_2_seconds_writing_CDs { + public static string Drive_has_spent_0_writing_CDs { get { - return ResourceManager.GetString("Drive_has_spent_0_hours_1_minutes_and_2_seconds_writing_CDs", resourceCulture); + return ResourceManager.GetString("Drive_has_spent_0_writing_CDs", resourceCulture); } } /// - /// Looks up a localized string similar to Drive has spent {0} hours, {1} minutes and {2} seconds writing DVDs. + /// Looks up a localized string similar to Drive has spent {0} writing DVDs. /// - public static string Drive_has_spent_0_hours_1_minutes_and_2_seconds_writing_DVDs { + public static string Drive_has_spent_0_writing_DVDs { get { - return ResourceManager.GetString("Drive_has_spent_0_hours_1_minutes_and_2_seconds_writing_DVDs", resourceCulture); + return ResourceManager.GetString("Drive_has_spent_0_writing_DVDs", resourceCulture); } } @@ -2884,11 +2884,11 @@ namespace Aaru.Localization { } /// - /// Looks up a localized string similar to Dump finished in {0} seconds.. + /// Looks up a localized string similar to Dump finished in {0}.. /// - public static string Dump_finished_in_0_seconds { + public static string Dump_finished_in_0 { get { - return ResourceManager.GetString("Dump_finished_in_0_seconds", resourceCulture); + return ResourceManager.GetString("Dump_finished_in_0", resourceCulture); } } @@ -8154,11 +8154,11 @@ namespace Aaru.Localization { } /// - /// Looks up a localized string similar to Sidecar created in {0} seconds.. + /// Looks up a localized string similar to Sidecar created in {0}.. /// - public static string Sidecar_created_in_0_seconds { + public static string Sidecar_created_in_0 { get { - return ResourceManager.GetString("Sidecar_created_in_0_seconds", resourceCulture); + return ResourceManager.GetString("Sidecar_created_in_0", resourceCulture); } } @@ -8789,21 +8789,20 @@ namespace Aaru.Localization { } /// - /// Looks up a localized string similar to Took a total of {0} seconds ({1} processing commands).. + /// Looks up a localized string similar to Took a total of {0} ({1} processing commands).. /// - public static string Took_a_total_of_0_seconds_1_processing_commands { + public static string Took_a_total_of_0_1_processing_commands { get { - return ResourceManager.GetString("Took_a_total_of_0_seconds_1_processing_commands", resourceCulture); + return ResourceManager.GetString("Took_a_total_of_0_1_processing_commands", resourceCulture); } } /// - /// Looks up a localized string similar to Took a total of {0:F3} seconds ({1:F3} processing commands, {2:F3} checksumming, {3:F3} writing, {4:F3} closing).. + /// 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_seconds_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_seconds_1_processing_commands_2_checksumming_3_writing_4_closin" + - "g", resourceCulture); + return ResourceManager.GetString("Took_a_total_of_0_1_processing_commands_2_checksumming_3_writing_4_closing", resourceCulture); } } @@ -8979,11 +8978,11 @@ namespace Aaru.Localization { } /// - /// Looks up a localized string similar to Trimming finished in {0} seconds.. + /// Looks up a localized string similar to Trimming finished in {0}.. /// - public static string Trimming_finished_in_0_seconds { + public static string Trimming_finished_in_0 { get { - return ResourceManager.GetString("Trimming_finished_in_0_seconds", resourceCulture); + return ResourceManager.GetString("Trimming_finished_in_0", resourceCulture); } } diff --git a/Aaru.Localization/Core.resx b/Aaru.Localization/Core.resx index 03e0ec93b..792ddc587 100644 --- a/Aaru.Localization/Core.resx +++ b/Aaru.Localization/Core.resx @@ -153,17 +153,17 @@ Drive has loaded a total of {0} discs - - Drive has spent {0} hours, {1} minutes and {2} seconds reading CDs + + Drive has spent {0} reading CDs - - Drive has spent {0} hours, {1} minutes and {2} seconds writing CDs + + Drive has spent {0} writing CDs - - Drive has spent {0} hours, {1} minutes and {2} seconds reading DVDs + + Drive has spent {0} reading DVDs - - Drive has spent {0} hours, {1} minutes and {2} seconds writing DVDs + + Drive has spent {0} writing DVDs Drive supports PoweRec, is enabled and recommends {0} Kb/sec. @@ -396,8 +396,8 @@ Combined offset is {0} bytes ({1} samples). - - Took a total of {0} seconds ({1} processing commands). + + Took a total of {0} ({1} processing commands). Average speed: {0}. @@ -899,8 +899,8 @@ There will be thousand of errors between track 0 and track 1, that is normal and you can ignore them. - - Dump finished in {0} seconds. + + Dump finished in {0}. Average dump speed {0}. @@ -926,11 +926,11 @@ Closing output file. - - Closed in {0} seconds. + + Closed in {0}. - - Took a total of {0:F3} seconds ({1:F3} processing commands, {2:F3} checksumming, {3:F3} writing, {4:F3} closing). + + Took a total of {0} ({1} processing commands, {2} checksumming, {3} writing, {4} closing). {0} subchannels could not be read. @@ -1100,8 +1100,8 @@ Trimming sector {0} - - Trimming finished in {0} seconds. + + Trimming finished in {0}. Could not read... @@ -1166,8 +1166,8 @@ Error {0} opening created image. - - Sidecar created in {0} seconds. + + Sidecar created in {0}. Average checksum speed {0}. diff --git a/Aaru.Localization/UI.Designer.cs b/Aaru.Localization/UI.Designer.cs index 85ea909bb..65a7e975b 100644 --- a/Aaru.Localization/UI.Designer.cs +++ b/Aaru.Localization/UI.Designer.cs @@ -11,32 +11,46 @@ namespace Aaru.Localization { using System; - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + /// + /// 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()] public class UI { - private static System.Resources.ResourceManager resourceMan; + private static global::System.Resources.ResourceManager resourceMan; - private static System.Globalization.CultureInfo resourceCulture; + private static global::System.Globalization.CultureInfo resourceCulture; - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal UI() { } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - public static System.Resources.ResourceManager ResourceManager { + /// + /// 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 { get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aaru.Localization.UI", typeof(UI).Assembly); + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aaru.Localization.UI", typeof(UI).Assembly); resourceMan = temp; } return resourceMan; } } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - public static System.Globalization.CultureInfo Culture { + /// + /// 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 { get { return resourceCulture; } @@ -45,2016 +59,3866 @@ namespace Aaru.Localization { } } - public static string New_database_version_updating { + /// + /// Looks up a localized string similar to {0} Kb/sec.. + /// + public static string _0_Kb_sec { get { - return ResourceManager.GetString("New_database_version_updating", resourceCulture); - } - } - - public static string Exception_trying_to_remove_old_database_version { - get { - return ResourceManager.GetString("Exception_trying_to_remove_old_database_version", resourceCulture); - } - } - - public static string Please_manually_remove_file_at_0 { - get { - return ResourceManager.GetString("Please_manually_remove_file_at_0", resourceCulture); - } - } - - public static string Shows_verbose_output { - get { - return ResourceManager.GetString("Shows_verbose_output", resourceCulture); - } - } - - public static string Shows_debug_output_from_plugins { - get { - return ResourceManager.GetString("Shows_debug_output_from_plugins", resourceCulture); - } - } - - public static string Pauses_before_exiting { - get { - return ResourceManager.GetString("Pauses_before_exiting", resourceCulture); - } - } - - public static string Press_any_key_to_exit { - get { - return ResourceManager.GetString("Press_any_key_to_exit", resourceCulture); - } - } - - public static string Archive_Command_Family_Description { - get { - return ResourceManager.GetString("Archive_Command_Family_Description", resourceCulture); - } - } - - public static string Archive_Info_Command_Description { - get { - return ResourceManager.GetString("Archive_Info_Command_Description", resourceCulture); - } - } - - public static string Database_Command_Family_Description { - get { - return ResourceManager.GetString("Database_Command_Family_Description", resourceCulture); - } - } - - public static string Device_Command_Family_Description { - get { - return ResourceManager.GetString("Device_Command_Family_Description", resourceCulture); - } - } - - public static string Filesystem_Command_Family_Description { - get { - return ResourceManager.GetString("Filesystem_Command_Family_Description", resourceCulture); - } - } - - public static string Image_Command_Family_Description { - get { - return ResourceManager.GetString("Image_Command_Family_Description", resourceCulture); - } - } - - public static string Media_Command_Family_Description { - get { - return ResourceManager.GetString("Media_Command_Family_Description", resourceCulture); - } - } - - public static string Database_Stats_Command_Description { - get { - return ResourceManager.GetString("Database_Stats_Command_Description", resourceCulture); - } - } - - public static string Database_Update_Command_Description { - get { - return ResourceManager.GetString("Database_Update_Command_Description", resourceCulture); - } - } - - public static string Device_Report_Command_Description { - get { - return ResourceManager.GetString("Device_Report_Command_Description", resourceCulture); - } - } - - public static string Device_Info_Command_Description { - get { - return ResourceManager.GetString("Device_Info_Command_Description", resourceCulture); - } - } - - public static string Device_List_Command_Description { - get { - return ResourceManager.GetString("Device_List_Command_Description", resourceCulture); - } - } - - public static string Filesystem_Extract_Command_Description { - get { - return ResourceManager.GetString("Filesystem_Extract_Command_Description", resourceCulture); - } - } - - public static string Filesystem_Info_Command_Description { - get { - return ResourceManager.GetString("Filesystem_Info_Command_Description", resourceCulture); - } - } - - public static string Filesystem_List_Command_Description { - get { - return ResourceManager.GetString("Filesystem_List_Command_Description", resourceCulture); - } - } - - public static string Filesystem_Options_Command_Description { - get { - return ResourceManager.GetString("Filesystem_Options_Command_Description", resourceCulture); - } - } - - public static string Image_Checksum_Command_Description { - get { - return ResourceManager.GetString("Image_Checksum_Command_Description", resourceCulture); - } - } - - public static string Image_Compare_Command_Description { - get { - return ResourceManager.GetString("Image_Compare_Command_Description", resourceCulture); - } - } - - public static string Image_Convert_Command_Description { - get { - return ResourceManager.GetString("Image_Convert_Command_Description", resourceCulture); - } - } - - public static string Image_Create_Sidecar_Command_Description { - get { - return ResourceManager.GetString("Image_Create_Sidecar_Command_Description", resourceCulture); - } - } - - public static string Image_Decode_Command_Description { - get { - return ResourceManager.GetString("Image_Decode_Command_Description", resourceCulture); - } - } - - public static string Image_Entropy_Command_Description { - get { - return ResourceManager.GetString("Image_Entropy_Command_Description", resourceCulture); - } - } - - public static string Image_Info_Command_Description { - get { - return ResourceManager.GetString("Image_Info_Command_Description", resourceCulture); - } - } - - public static string Image_Options_Command_Description { - get { - return ResourceManager.GetString("Image_Options_Command_Description", resourceCulture); - } - } - - public static string Image_Print_Command_Description { - get { - return ResourceManager.GetString("Image_Print_Command_Description", resourceCulture); - } - } - - public static string Image_Verify_Command_Description { - get { - return ResourceManager.GetString("Image_Verify_Command_Description", resourceCulture); - } - } - - public static string Media_Dump_Command_Description { - get { - return ResourceManager.GetString("Media_Dump_Command_Description", resourceCulture); - } - } - - public static string Media_Info_Command_Description { - get { - return ResourceManager.GetString("Media_Info_Command_Description", resourceCulture); - } - } - - public static string Media_Scan_Command_Description { - get { - return ResourceManager.GetString("Media_Scan_Command_Description", resourceCulture); - } - } - - public static string Configure_Command_Description { - get { - return ResourceManager.GetString("Configure_Command_Description", resourceCulture); - } - } - - public static string List_Formats_Command_Description { - get { - return ResourceManager.GetString("List_Formats_Command_Description", resourceCulture); - } - } - - public static string List_Encodings_Command_Description { - get { - return ResourceManager.GetString("List_Encodings_Command_Description", resourceCulture); - } - } - - public static string List_Namespaces_Command_Description { - get { - return ResourceManager.GetString("List_Namespaces_Command_Description", resourceCulture); - } - } - - public static string Remote_Command_Description { - get { - return ResourceManager.GetString("Remote_Command_Description", resourceCulture); - } - } - - public static string There_are_no_statistics { - get { - return ResourceManager.GetString("There_are_no_statistics", resourceCulture); - } - } - - public static string Commands_statistics { - get { - return ResourceManager.GetString("Commands_statistics", resourceCulture); - } - } - - public static string Title_Command { - get { - return ResourceManager.GetString("Title_Command", resourceCulture); - } - } - - public static string Title_Times_used { - get { - return ResourceManager.GetString("Title_Times_used", resourceCulture); - } - } - - public static string Title_Filter { - get { - return ResourceManager.GetString("Title_Filter", resourceCulture); - } - } - - public static string Filters_statistics { - get { - return ResourceManager.GetString("Filters_statistics", resourceCulture); - } - } - - public static string Media_image_format_statistics { - get { - return ResourceManager.GetString("Media_image_format_statistics", resourceCulture); - } - } - - public static string Title_Format { - get { - return ResourceManager.GetString("Title_Format", resourceCulture); - } - } - - public static string Partitioning_scheme_statistics { - get { - return ResourceManager.GetString("Partitioning_scheme_statistics", resourceCulture); - } - } - - public static string Title_Scheme { - get { - return ResourceManager.GetString("Title_Scheme", resourceCulture); - } - } - - public static string Filesystem_statistics { - get { - return ResourceManager.GetString("Filesystem_statistics", resourceCulture); - } - } - - public static string Title_Filesystem { - get { - return ResourceManager.GetString("Title_Filesystem", resourceCulture); - } - } - - public static string Device_statistics { - get { - return ResourceManager.GetString("Device_statistics", 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_Revision { - get { - return ResourceManager.GetString("Title_Revision", resourceCulture); - } - } - - public static string Title_Bus { - get { - return ResourceManager.GetString("Title_Bus", resourceCulture); - } - } - - public static string Media_found_in_real_device_statistics { - get { - return ResourceManager.GetString("Media_found_in_real_device_statistics", resourceCulture); - } - } - - public static string Media_found_in_images_statistics { - get { - return ResourceManager.GetString("Media_found_in_images_statistics", resourceCulture); - } - } - - public static string Clear_existing_main_database { - get { - return ResourceManager.GetString("Clear_existing_main_database", resourceCulture); - } - } - - public static string Clear_existing_main_and_local_database { - get { - return ResourceManager.GetString("Clear_existing_main_and_local_database", resourceCulture); - } - } - - public static string Could_not_remove_local_database { - get { - return ResourceManager.GetString("Could_not_remove_local_database", resourceCulture); - } - } - - public static string Could_not_remove_main_database { - get { - return ResourceManager.GetString("Could_not_remove_main_database", resourceCulture); - } - } - - public static string Device_path { - get { - return ResourceManager.GetString("Device_path", resourceCulture); - } - } - - public static string Device_report_using_trap_disc { - get { - return ResourceManager.GetString("Device_report_using_trap_disc", resourceCulture); - } - } - - public static string Could_not_open_device_error_0 { - get { - return ResourceManager.GetString("Could_not_open_device_error_0", resourceCulture); - } - } - - public static string Device_report_must_be_run_as_admin { - get { - return ResourceManager.GetString("Device_report_must_be_run_as_admin", resourceCulture); - } - } - - public static string Not_continuing { - get { - return ResourceManager.GetString("Not_continuing", resourceCulture); - } - } - - public static string Device_does_not_report_with_trap_discs { - get { - return ResourceManager.GetString("Device_does_not_report_with_trap_discs", resourceCulture); - } - } - - public static string Is_the_device_natively_USB { - get { - return ResourceManager.GetString("Is_the_device_natively_USB", resourceCulture); - } - } - - public static string Is_the_media_removable { - get { - return ResourceManager.GetString("Is_the_media_removable", resourceCulture); - } - } - - public static string Is_the_device_natively_FireWire { - get { - return ResourceManager.GetString("Is_the_device_natively_FireWire", resourceCulture); - } - } - - public static string Please_remove_any_media { - get { - return ResourceManager.GetString("Please_remove_any_media", resourceCulture); - } - } - - public static string Do_you_have_media_you_can_insert { - get { - return ResourceManager.GetString("Do_you_have_media_you_can_insert", resourceCulture); - } - } - - public static string Please_insert_it_in_the_drive { - get { - return ResourceManager.GetString("Please_insert_it_in_the_drive", resourceCulture); - } - } - - public static string Unsupported_device_type_for_report { - get { - return ResourceManager.GetString("Unsupported_device_type_for_report", resourceCulture); - } - } - - public static string Is_the_media_removable_flash_is_not { - get { - return ResourceManager.GetString("Is_the_media_removable_flash_is_not", resourceCulture); - } - } - - public static string Asking_drive_to_unload_tape { - get { - return ResourceManager.GetString("Asking_drive_to_unload_tape", resourceCulture); - } - } - - public static string Sure_report_trap_disc { - get { - return ResourceManager.GetString("Sure_report_trap_disc", resourceCulture); - } - } - - public static string Do_you_have_audio_trap_disc { - get { - return ResourceManager.GetString("Do_you_have_audio_trap_disc", resourceCulture); - } - } - - public static string Please_burn_audio_trap_disc { - get { - return ResourceManager.GetString("Please_burn_audio_trap_disc", resourceCulture); - } - } - - public static string Do_you_have_GD_ROM_disc { - get { - return ResourceManager.GetString("Do_you_have_GD_ROM_disc", resourceCulture); - } - } - - public static string Do_you_want_to_try_Plextor_commands { - get { - return ResourceManager.GetString("Do_you_want_to_try_Plextor_commands", resourceCulture); - } - } - - public static string Do_you_want_to_try_NEC_commands { - get { - return ResourceManager.GetString("Do_you_want_to_try_NEC_commands", resourceCulture); - } - } - - public static string Do_you_want_to_try_Pioneer_commands { - get { - return ResourceManager.GetString("Do_you_want_to_try_Pioneer_commands", resourceCulture); - } - } - - public static string Do_you_want_to_try_HLDTST_commands { - get { - return ResourceManager.GetString("Do_you_want_to_try_HLDTST_commands", resourceCulture); - } - } - - public static string Do_you_want_to_try_MediaTek_commands { - get { - return ResourceManager.GetString("Do_you_want_to_try_MediaTek_commands", resourceCulture); - } - } - - public static string This_is_dangerous { - get { - return ResourceManager.GetString("This_is_dangerous", resourceCulture); - } - } - - public static string Do_you_have_a_0_disc { - get { - return ResourceManager.GetString("Do_you_have_a_0_disc", resourceCulture); - } - } - - public static string Prefix_for_saving_binary_information { - get { - return ResourceManager.GetString("Prefix_for_saving_binary_information", resourceCulture); - } - } - - public static string Title_USB_device { - get { - return ResourceManager.GetString("Title_USB_device", resourceCulture); - } - } - - public static string Title_FireWire_device { - get { - return ResourceManager.GetString("Title_FireWire_device", resourceCulture); - } - } - - public static string Title_PCMCIA_device { - get { - return ResourceManager.GetString("Title_PCMCIA_device", resourceCulture); - } - } - - public static string Title_SCSI_device { - get { - return ResourceManager.GetString("Title_SCSI_device", resourceCulture); - } - } - - public static string Title_SCSI_MMC_GET_CONFIGURATION_Features { - get { - return ResourceManager.GetString("Title_SCSI_MMC_GET_CONFIGURATION_Features", resourceCulture); - } - } - - public static string Title_Drive_has_kreon_firmware { - get { - return ResourceManager.GetString("Title_Drive_has_kreon_firmware", resourceCulture); - } - } - - public static string Title_Descriptor_size { - get { - return ResourceManager.GetString("Title_Descriptor_size", resourceCulture); - } - } - - public static string Title_Vendor_ID { - get { - return ResourceManager.GetString("Title_Vendor_ID", resourceCulture); - } - } - - public static string Title_Product_ID { - get { - return ResourceManager.GetString("Title_Product_ID", resourceCulture); - } - } - - public static string Title_Product { - get { - return ResourceManager.GetString("Title_Product", resourceCulture); - } - } - - public static string Title_Serial_number { - get { - return ResourceManager.GetString("Title_Serial_number", resourceCulture); - } - } - - public static string Title_Model_ID { - get { - return ResourceManager.GetString("Title_Model_ID", resourceCulture); - } - } - - public static string Title_Vendor { - get { - return ResourceManager.GetString("Title_Vendor", resourceCulture); - } - } - - public static string Title_GUID { - get { - return ResourceManager.GetString("Title_GUID", resourceCulture); - } - } - - public static string PCMCIA_CIS_is_0_bytes { - get { - return ResourceManager.GetString("PCMCIA_CIS_is_0_bytes", resourceCulture); - } - } - - public static string aaruremote_host { - get { - return ResourceManager.GetString("aaruremote_host", resourceCulture); - } - } - - public static string No_known_devices_attached { - get { - return ResourceManager.GetString("No_known_devices_attached", resourceCulture); - } - } - - public static string Path { - get { - return ResourceManager.GetString("Path", resourceCulture); - } - } - - public static string Serial { - get { - return ResourceManager.GetString("Serial", resourceCulture); - } - } - - public static string Supported_Question { - get { - return ResourceManager.GetString("Supported_Question", resourceCulture); - } - } - - public static string Name_of_character_encoding_to_use { - get { - return ResourceManager.GetString("Name_of_character_encoding_to_use", resourceCulture); - } - } - - public static string Comma_separated_name_value_pairs_of_filesystem_options { - get { - return ResourceManager.GetString("Comma_separated_name_value_pairs_of_filesystem_options", resourceCulture); - } - } - - public static string Extract_extended_attributes_if_present { - get { - return ResourceManager.GetString("Extract_extended_attributes_if_present", resourceCulture); - } - } - - public static string Namespace_to_use_for_filenames { - get { - return ResourceManager.GetString("Namespace_to_use_for_filenames", resourceCulture); - } - } - - public static string Disc_image_path { - get { - return ResourceManager.GetString("Disc_image_path", resourceCulture); - } - } - - public static string Directory_where_extracted_files_will_be_created { - get { - return ResourceManager.GetString("Directory_where_extracted_files_will_be_created", resourceCulture); - } - } - - public static string Identifying_file_filter { - get { - return ResourceManager.GetString("Identifying_file_filter", resourceCulture); - } - } - - public static string Parsed_options { - get { - return ResourceManager.GetString("Parsed_options", resourceCulture); - } - } - - public static string Cannot_open_specified_file { - get { - return ResourceManager.GetString("Cannot_open_specified_file", resourceCulture); - } - } - - public static string encoding_for_0 { - get { - return ResourceManager.GetString("encoding_for_0", resourceCulture); - } - } - - public static string Specified_encoding_is_not_supported { - get { - return ResourceManager.GetString("Specified_encoding_is_not_supported", resourceCulture); - } - } - - public static string Identifying_image_format { - get { - return ResourceManager.GetString("Identifying_image_format", resourceCulture); - } - } - - public static string Image_format_not_identified_not_proceeding_with_file_extraction { - get { - return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_file_extraction", resourceCulture); - } - } - - public static string Command_not_supported_for_this_image_type { - get { - return ResourceManager.GetString("Command_not_supported_for_this_image_type", resourceCulture); - } - } - - public static string Image_format_identified_by_0_1 { - get { - return ResourceManager.GetString("Image_format_identified_by_0_1", resourceCulture); - } - } - - public static string Image_format_identified_by_0 { - get { - return ResourceManager.GetString("Image_format_identified_by_0", resourceCulture); - } - } - - public static string Output_directory_missing { - get { - return ResourceManager.GetString("Output_directory_missing", resourceCulture); - } - } - - public static string Destination_exists_aborting { - get { - return ResourceManager.GetString("Destination_exists_aborting", resourceCulture); - } - } - - public static string Invoke_Opening_image_file { - get { - return ResourceManager.GetString("Invoke_Opening_image_file", resourceCulture); - } - } - - public static string Unable_to_open_image_format { - get { - return ResourceManager.GetString("Unable_to_open_image_format", resourceCulture); - } - } - - public static string Correctly_opened_image_file { - get { - return ResourceManager.GetString("Correctly_opened_image_file", resourceCulture); - } - } - - public static string Image_without_headers_is_0_bytes { - get { - return ResourceManager.GetString("Image_without_headers_is_0_bytes", resourceCulture); - } - } - - public static string Image_has_0_sectors { - get { - return ResourceManager.GetString("Image_has_0_sectors", resourceCulture); - } - } - - public static string Image_identifies_disk_type_as_0 { - get { - return ResourceManager.GetString("Image_identifies_disk_type_as_0", resourceCulture); - } - } - - public static string Enumerating_partitions { - get { - return ResourceManager.GetString("Enumerating_partitions", resourceCulture); - } - } - - public static string No_partitions_found { - get { - return ResourceManager.GetString("No_partitions_found", resourceCulture); + return ResourceManager.GetString("_0_Kb_sec", resourceCulture); } } + /// + /// Looks up a localized string similar to {0} partitions found.. + /// public static string _0_partitions_found { get { return ResourceManager.GetString("_0_partitions_found", resourceCulture); } } - public static string Partition_0 { - get { - return ResourceManager.GetString("Partition_0", resourceCulture); - } - } - - public static string Identifying_filesystems_on_partition { - get { - return ResourceManager.GetString("Identifying_filesystems_on_partition", resourceCulture); - } - } - - public static string Filesystem_not_identified { - get { - return ResourceManager.GetString("Filesystem_not_identified", resourceCulture); - } - } - - public static string Identified_by_0_plugins { - get { - return ResourceManager.GetString("Identified_by_0_plugins", resourceCulture); - } - } - - public static string As_identified_by_0 { - get { - return ResourceManager.GetString("As_identified_by_0", resourceCulture); - } - } - - public static string Mounting_filesystem { - get { - return ResourceManager.GetString("Mounting_filesystem", resourceCulture); - } - } - - public static string Unable_to_mount_volume_error_0 { - get { - return ResourceManager.GetString("Unable_to_mount_volume_error_0", resourceCulture); - } - } - - public static string Identified_by_0 { - get { - return ResourceManager.GetString("Identified_by_0", resourceCulture); - } - } - - public static string Error_reading_file_0 { - get { - return ResourceManager.GetString("Error_reading_file_0", resourceCulture); - } - } - - public static string Error_0_reading_root_directory { - get { - return ResourceManager.GetString("Error_0_reading_root_directory", resourceCulture); - } - } - - public static string Retrieving_file_information { - get { - return ResourceManager.GetString("Retrieving_file_information", resourceCulture); - } - } - - public static string Created_subdirectory_at_0 { - get { - return ResourceManager.GetString("Created_subdirectory_at_0", resourceCulture); - } - } - - public static string Listing_extended_attributes { - get { - return ResourceManager.GetString("Listing_extended_attributes", resourceCulture); - } - } - - public static string Reading_extended_attribute { - get { - return ResourceManager.GetString("Reading_extended_attribute", resourceCulture); - } - } - - public static string Writing_extended_attribute { - get { - return ResourceManager.GetString("Writing_extended_attribute", resourceCulture); - } - } - - public static string Written_0_bytes_of_xattr_1_from_file_2_to_3 { - get { - return ResourceManager.GetString("Written_0_bytes_of_xattr_1_from_file_2_to_3", resourceCulture); - } - } - - public static string Cannot_write_xattr_0_for_1_output_exists { - get { - return ResourceManager.GetString("Cannot_write_xattr_0_for_1_output_exists", resourceCulture); - } - } - - public static string Reading_file_0 { - get { - return ResourceManager.GetString("Reading_file_0", resourceCulture); - } - } - - public static string Error_0_reading_file_1 { - get { - return ResourceManager.GetString("Error_0_reading_file_1", resourceCulture); - } - } - - public static string Written_0_bytes_of_file_1_to_2 { - get { - return ResourceManager.GetString("Written_0_bytes_of_file_1_to_2", resourceCulture); - } - } - - public static string Cannot_write_file_0_output_exists { - get { - return ResourceManager.GetString("Cannot_write_file_0_output_exists", resourceCulture); - } - } - - public static string Searches_and_prints_information_about_filesystems { - get { - return ResourceManager.GetString("Searches_and_prints_information_about_filesystems", resourceCulture); - } - } - - public static string Searches_and_interprets_partitions { - get { - return ResourceManager.GetString("Searches_and_interprets_partitions", resourceCulture); - } - } - - public static string Media_image_path { - get { - return ResourceManager.GetString("Media_image_path", resourceCulture); - } - } - - public static string Image_format_not_identified_not_proceeding_with_analysis { - get { - return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_analysis", resourceCulture); - } - } - - public static string No_partitions_founds_not_searching_for_filesystems { - get { - return ResourceManager.GetString("No_partitions_founds_not_searching_for_filesystems", resourceCulture); - } - } - - public static string Title_Name { - get { - return ResourceManager.GetString("Title_Name", resourceCulture); - } - } - - public static string Title_Type { - get { - return ResourceManager.GetString("Title_Type", resourceCulture); - } - } - - public static string Title_Length { - get { - return ResourceManager.GetString("Title_Length", resourceCulture); - } - } - - public static string sector_0_byte_1 { - get { - return ResourceManager.GetString("sector_0_byte_1", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to {0} sectors, {1} bytes. + /// public static string _0_sectors_1_bytes { get { return ResourceManager.GetString("_0_sectors_1_bytes", resourceCulture); } } - public static string Title_Description { + /// + /// Looks up a localized string similar to {0} sectors to convert. + /// + public static string _0_sectors_to_convert { get { - return ResourceManager.GetString("Title_Description", resourceCulture); + return ResourceManager.GetString("_0_sectors_to_convert", resourceCulture); } } - public static string Identifying_filesystems { + /// + /// Looks up a localized string similar to <From image>. + /// + public static string _From_image_ { get { - return ResourceManager.GetString("Identifying_filesystems", resourceCulture); + return ResourceManager.GetString("_From_image_", resourceCulture); } } - public static string Use_long_format { + /// + /// Looks up a localized string similar to Aaru started!. + /// + public static string Aaru_started { get { - return ResourceManager.GetString("Use_long_format", resourceCulture); + return ResourceManager.GetString("Aaru_started", resourceCulture); } } - public static string Image_format_not_identified_not_proceeding_with_listing { + /// + /// Looks up a localized string similar to aaruremote host. + /// + public static string aaruremote_host { get { - return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_listing", resourceCulture); + return ResourceManager.GetString("aaruremote_host", resourceCulture); } } - public static string Root_directory { + /// + /// Looks up a localized string similar to All sector checksums are correct. + /// + public static string All_sector_checksums_are_correct { get { - return ResourceManager.GetString("Root_directory", resourceCulture); + return ResourceManager.GetString("All_sector_checksums_are_correct", resourceCulture); } } - public static string Directory_0 { + /// + /// Looks up a localized string similar to all sectors.. + /// + public static string all_sectors { get { - return ResourceManager.GetString("Directory_0", resourceCulture); + return ResourceManager.GetString("all_sectors", resourceCulture); } } - public static string Reading_directory { + /// + /// Looks up a localized string similar to All sectors are unknown. + /// + public static string All_sectors_are_unknown { get { - return ResourceManager.GetString("Reading_directory", resourceCulture); + return ResourceManager.GetString("All_sectors_are_unknown", resourceCulture); } } - public static string Error_0_reading_directory_1 { + /// + /// Looks up a localized string similar to All sectors contain errors. + /// + public static string All_sectors_contain_errors { get { - return ResourceManager.GetString("Error_0_reading_directory_1", resourceCulture); + return ResourceManager.GetString("All_sectors_contain_errors", resourceCulture); } } - public static string Directory_abbreviation { + /// + /// Looks up a localized string similar to Commands to manage archive files. + /// + public static string Archive_Command_Family_Description { get { - return ResourceManager.GetString("Directory_abbreviation", resourceCulture); + return ResourceManager.GetString("Archive_Command_Family_Description", resourceCulture); } } - public static string Read_only_filesystems_options { + /// + /// Looks up a localized string similar to Identifies an archive file and shows information about it.. + /// + public static string Archive_Info_Command_Description { get { - return ResourceManager.GetString("Read_only_filesystems_options", resourceCulture); + return ResourceManager.GetString("Archive_Info_Command_Description", resourceCulture); } } - public static string Options_for_0 { + /// + /// Looks up a localized string similar to As identified by {0}.. + /// + public static string As_identified_by_0 { get { - return ResourceManager.GetString("Options_for_0", resourceCulture); + return ResourceManager.GetString("As_identified_by_0", resourceCulture); } } - public static string TypeToString_boolean { + /// + /// Looks up a localized string similar to ASCII implemented operating definitions. + /// + public static string ASCII_implemented_operating_definitions { get { - return ResourceManager.GetString("TypeToString_boolean", resourceCulture); + return ResourceManager.GetString("ASCII_implemented_operating_definitions", resourceCulture); } } - public static string TypeToString_signed_number { + /// + /// Looks up a localized string similar to ASCII Page {0:X2}h. + /// + public static string ASCII_Page_0 { get { - return ResourceManager.GetString("TypeToString_signed_number", resourceCulture); + return ResourceManager.GetString("ASCII_Page_0", resourceCulture); } } - public static string TypeToString_number { + /// + /// Looks up a localized string similar to Asking drive to unload tape (can take a few minutes).... + /// + public static string Asking_drive_to_unload_tape { get { - return ResourceManager.GetString("TypeToString_number", resourceCulture); + return ResourceManager.GetString("Asking_drive_to_unload_tape", resourceCulture); } } - public static string TypeToString_float_number { + /// + /// Looks up a localized string similar to ATA IDENTIFY DEVICE command response:. + /// + public static string ATA_IDENTIFY_DEVICE_command_response { get { - return ResourceManager.GetString("TypeToString_float_number", resourceCulture); + return ResourceManager.GetString("ATA_IDENTIFY_DEVICE_command_response", resourceCulture); } } - public static string TypeToString_uuid { + /// + /// Looks up a localized string similar to ATA IDENTIFY PACKET DEVICE command response:. + /// + public static string ATA_IDENTIFY_PACKET_DEVICE_command_response { get { - return ResourceManager.GetString("TypeToString_uuid", resourceCulture); + return ResourceManager.GetString("ATA_IDENTIFY_PACKET_DEVICE_command_response", resourceCulture); } } - public static string TypeToString_string { + /// + /// Looks up a localized string similar to Automation Device Serial Number. + /// + public static string Automation_Device_Serial_Number { get { - return ResourceManager.GetString("TypeToString_string", resourceCulture); - } - } - - public static string Calculates_Adler_32 { - get { - return ResourceManager.GetString("Calculates_Adler_32", resourceCulture); - } - } - - public static string Calculates_CRC16 { - get { - return ResourceManager.GetString("Calculates_CRC16", resourceCulture); - } - } - - public static string Calculates_CRC32 { - get { - return ResourceManager.GetString("Calculates_CRC32", resourceCulture); - } - } - - public static string Calculates_CRC64_ECMA { - get { - return ResourceManager.GetString("Calculates_CRC64_ECMA", resourceCulture); - } - } - - public static string Calculates_Fletcher_16 { - get { - return ResourceManager.GetString("Calculates_Fletcher_16", resourceCulture); - } - } - - public static string Calculates_Fletcher_32 { - get { - return ResourceManager.GetString("Calculates_Fletcher_32", resourceCulture); - } - } - - public static string Calculates_MD5 { - get { - return ResourceManager.GetString("Calculates_MD5", resourceCulture); - } - } - - public static string Checksums_each_track_separately { - get { - return ResourceManager.GetString("Checksums_each_track_separately", resourceCulture); - } - } - - public static string Calculates_SHA1 { - get { - return ResourceManager.GetString("Calculates_SHA1", resourceCulture); - } - } - - public static string Calculates_SHA256 { - get { - return ResourceManager.GetString("Calculates_SHA256", resourceCulture); - } - } - - public static string Calculates_SHA384 { - get { - return ResourceManager.GetString("Calculates_SHA384", resourceCulture); - } - } - - public static string Calculates_SHA512 { - get { - return ResourceManager.GetString("Calculates_SHA512", resourceCulture); - } - } - - public static string Calculates_SpamSum_fuzzy_hash { - get { - return ResourceManager.GetString("Calculates_SpamSum_fuzzy_hash", resourceCulture); - } - } - - public static string Checksums_the_whole_disc { - get { - return ResourceManager.GetString("Checksums_the_whole_disc", resourceCulture); - } - } - - public static string Unable_to_recognize_image_format_not_checksumming { - get { - return ResourceManager.GetString("Unable_to_recognize_image_format_not_checksumming", resourceCulture); - } - } - - public static string Hashing_track_0_of_1 { - get { - return ResourceManager.GetString("Hashing_track_0_of_1", resourceCulture); - } - } - - public static string Hashing_sector { - get { - return ResourceManager.GetString("Hashing_sector", resourceCulture); - } - } - - public static string Track_0_starts_at_sector_1_and_ends_at_sector_2 { - get { - return ResourceManager.GetString("Track_0_starts_at_sector_1_and_ends_at_sector_2", resourceCulture); - } - } - - public static string Hashing_sectors_0_to_2_of_track_1 { - get { - return ResourceManager.GetString("Hashing_sectors_0_to_2_of_track_1", resourceCulture); - } - } - - public static string Error_0_while_reading_1_sectors_from_sector_2 { - get { - return ResourceManager.GetString("Error_0_while_reading_1_sectors_from_sector_2", resourceCulture); - } - } - - public static string Checksums_Track_0_has_1 { - get { - return ResourceManager.GetString("Checksums_Track_0_has_1", resourceCulture); - } - } - - public static string Checksums_Disc_has_0 { - get { - return ResourceManager.GetString("Checksums_Disc_has_0", resourceCulture); - } - } - - public static string Hashing_file_0_of_1 { - get { - return ResourceManager.GetString("Hashing_file_0_of_1", resourceCulture); - } - } - - public static string Hashing_file_less_block_0 { - get { - return ResourceManager.GetString("Hashing_file_less_block_0", resourceCulture); - } - } - - public static string Error_0_while_reading_block_1 { - get { - return ResourceManager.GetString("Error_0_while_reading_block_1", resourceCulture); - } - } - - public static string File_0_starts_at_block_1_and_ends_at_block_2 { - get { - return ResourceManager.GetString("File_0_starts_at_block_1_and_ends_at_block_2", resourceCulture); - } - } - - public static string Hashing_blocks_0_to_2_of_file_1 { - get { - return ResourceManager.GetString("Hashing_blocks_0_to_2_of_file_1", resourceCulture); - } - } - - public static string Checksums_File_0_has_1 { - get { - return ResourceManager.GetString("Checksums_File_0_has_1", resourceCulture); - } - } - - public static string Checksums_Tape_has_0 { - get { - return ResourceManager.GetString("Checksums_Tape_has_0", resourceCulture); - } - } - - public static string Hashing_image { - get { - return ResourceManager.GetString("Hashing_image", resourceCulture); - } - } - - public static string Error_0_while_reading_1_bytes_from_2 { - get { - return ResourceManager.GetString("Error_0_while_reading_1_bytes_from_2", resourceCulture); - } - } - - public static string Hashing_bytes_0_to_1 { - get { - return ResourceManager.GetString("Hashing_bytes_0_to_1", resourceCulture); - } - } - - public static string Checksums_Media_has_0 { - get { - return ResourceManager.GetString("Checksums_Media_has_0", resourceCulture); - } - } - - public static string Hashing_sectors_0_to_1 { - get { - return ResourceManager.GetString("Hashing_sectors_0_to_1", resourceCulture); - } - } - - public static string Checksums_Disk_has_0 { - get { - return ResourceManager.GetString("Checksums_Disk_has_0", resourceCulture); - } - } - - public static string First_media_image_path { - get { - return ResourceManager.GetString("First_media_image_path", resourceCulture); - } - } - - public static string Second_media_image_path { - get { - return ResourceManager.GetString("Second_media_image_path", resourceCulture); - } - } - - public static string Identifying_first_file_filter { - get { - return ResourceManager.GetString("Identifying_first_file_filter", resourceCulture); - } - } - - public static string Identifying_second_file_filter { - get { - return ResourceManager.GetString("Identifying_second_file_filter", resourceCulture); - } - } - - public static string Cannot_open_first_input_file { - get { - return ResourceManager.GetString("Cannot_open_first_input_file", resourceCulture); - } - } - - public static string Cannot_open_second_input_file { - get { - return ResourceManager.GetString("Cannot_open_second_input_file", resourceCulture); - } - } - - public static string Identifying_first_image_format { - get { - return ResourceManager.GetString("Identifying_first_image_format", resourceCulture); - } - } - - public static string Identifying_second_image_format { - get { - return ResourceManager.GetString("Identifying_second_image_format", resourceCulture); - } - } - - public static string First_input_file_format_not_identified { - get { - return ResourceManager.GetString("First_input_file_format_not_identified", resourceCulture); - } - } - - public static string First_input_file_format_identified_by_0_1 { - get { - return ResourceManager.GetString("First_input_file_format_identified_by_0_1", resourceCulture); - } - } - - public static string First_input_file_format_identified_by_0 { - get { - return ResourceManager.GetString("First_input_file_format_identified_by_0", resourceCulture); - } - } - - public static string Second_input_file_format_not_identified { - get { - return ResourceManager.GetString("Second_input_file_format_not_identified", resourceCulture); - } - } - - public static string Second_input_file_format_identified_by_0_1 { - get { - return ResourceManager.GetString("Second_input_file_format_identified_by_0_1", resourceCulture); - } - } - - public static string Second_input_file_format_identified_by_0 { - get { - return ResourceManager.GetString("Second_input_file_format_identified_by_0", resourceCulture); - } - } - - public static string Opening_first_image_file { - get { - return ResourceManager.GetString("Opening_first_image_file", resourceCulture); - } - } - - public static string Unable_to_open_first_image_format { - get { - return ResourceManager.GetString("Unable_to_open_first_image_format", resourceCulture); - } - } - - public static string Opening_second_image_file { - get { - return ResourceManager.GetString("Opening_second_image_file", resourceCulture); - } - } - - public static string Unable_to_open_second_image_format { - get { - return ResourceManager.GetString("Unable_to_open_second_image_format", resourceCulture); - } - } - - public static string Title_First_Media_image { - get { - return ResourceManager.GetString("Title_First_Media_image", resourceCulture); - } - } - - public static string Title_Second_Media_image { - get { - return ResourceManager.GetString("Title_Second_Media_image", resourceCulture); - } - } - - public static string Title_File { - get { - return ResourceManager.GetString("Title_File", resourceCulture); - } - } - - public static string Title_Media_image_format { - get { - return ResourceManager.GetString("Title_Media_image_format", resourceCulture); - } - } - - public static string Has_partitions_Question { - get { - return ResourceManager.GetString("Has_partitions_Question", resourceCulture); - } - } - - public static string Has_sessions_Question { - get { - return ResourceManager.GetString("Has_sessions_Question", resourceCulture); - } - } - - public static string Title_Image_size { - get { - return ResourceManager.GetString("Title_Image_size", resourceCulture); - } - } - - public static string Title_Sectors { - get { - return ResourceManager.GetString("Title_Sectors", resourceCulture); - } - } - - public static string Title_Sector_size { - get { - return ResourceManager.GetString("Title_Sector_size", resourceCulture); - } - } - - public static string Title_Creation_time { - get { - return ResourceManager.GetString("Title_Creation_time", resourceCulture); - } - } - - public static string Title_Last_modification_time { - get { - return ResourceManager.GetString("Title_Last_modification_time", resourceCulture); - } - } - - public static string Title_Media_type { - get { - return ResourceManager.GetString("Title_Media_type", resourceCulture); - } - } - - public static string Title_Image_version { - get { - return ResourceManager.GetString("Title_Image_version", resourceCulture); - } - } - - public static string Title_Image_application { - get { - return ResourceManager.GetString("Title_Image_application", resourceCulture); - } - } - - public static string Title_Image_application_version { - get { - return ResourceManager.GetString("Title_Image_application_version", resourceCulture); - } - } - - public static string Title_Image_creator { - get { - return ResourceManager.GetString("Title_Image_creator", resourceCulture); - } - } - - public static string Title_Image_name { - get { - return ResourceManager.GetString("Title_Image_name", resourceCulture); - } - } - - public static string Title_Image_comments { - get { - return ResourceManager.GetString("Title_Image_comments", resourceCulture); - } - } - - public static string Title_Media_manufacturer { - get { - return ResourceManager.GetString("Title_Media_manufacturer", resourceCulture); - } - } - - public static string Title_Media_model { - get { - return ResourceManager.GetString("Title_Media_model", resourceCulture); - } - } - - public static string Title_Media_serial_number { - get { - return ResourceManager.GetString("Title_Media_serial_number", resourceCulture); - } - } - - public static string Title_Media_barcode { - get { - return ResourceManager.GetString("Title_Media_barcode", resourceCulture); - } - } - - public static string Title_Media_part_number { - get { - return ResourceManager.GetString("Title_Media_part_number", resourceCulture); - } - } - - public static string Title_Media_sequence { - get { - return ResourceManager.GetString("Title_Media_sequence", resourceCulture); - } - } - - public static string Title_Last_media_on_sequence { - get { - return ResourceManager.GetString("Title_Last_media_on_sequence", resourceCulture); - } - } - - public static string Title_Drive_manufacturer { - get { - return ResourceManager.GetString("Title_Drive_manufacturer", resourceCulture); - } - } - - public static string Title_Drive_firmware_revision { - get { - return ResourceManager.GetString("Title_Drive_firmware_revision", resourceCulture); - } - } - - public static string Title_Drive_model { - get { - return ResourceManager.GetString("Title_Drive_model", resourceCulture); - } - } - - public static string Title_Drive_serial_number { - get { - return ResourceManager.GetString("Title_Drive_serial_number", resourceCulture); - } - } - - public static string Has_tag_0_Question { - get { - return ResourceManager.GetString("Has_tag_0_Question", resourceCulture); - } - } - - public static string Comparing_media_image_characteristics { - get { - return ResourceManager.GetString("Comparing_media_image_characteristics", resourceCulture); - } - } - - public static string Image_partitioned_status_differ { - get { - return ResourceManager.GetString("Image_partitioned_status_differ", resourceCulture); - } - } - - public static string Image_session_status_differ { - get { - return ResourceManager.GetString("Image_session_status_differ", resourceCulture); - } - } - - public static string Image_sectors_differ { - get { - return ResourceManager.GetString("Image_sectors_differ", resourceCulture); - } - } - - public static string Image_sector_size_differ { - get { - return ResourceManager.GetString("Image_sector_size_differ", resourceCulture); - } - } - - public static string Media_type_differs { - get { - return ResourceManager.GetString("Media_type_differs", resourceCulture); - } - } - - public static string Second_image_has_more_sectors { - get { - return ResourceManager.GetString("Second_image_has_more_sectors", resourceCulture); - } - } - - public static string First_image_has_more_sectors { - get { - return ResourceManager.GetString("First_image_has_more_sectors", resourceCulture); - } - } - - public static string Comparing_sectors { - get { - return ResourceManager.GetString("Comparing_sectors", resourceCulture); - } - } - - public static string Comparing_sector_0_of_1 { - get { - return ResourceManager.GetString("Comparing_sector_0_of_1", resourceCulture); - } - } - - public static string Error_0_reading_sector_1_from_first_image { - get { - return ResourceManager.GetString("Error_0_reading_sector_1_from_first_image", resourceCulture); - } - } - - public static string Error_0_reading_sector_1_from_second_image { - get { - return ResourceManager.GetString("Error_0_reading_sector_1_from_second_image", resourceCulture); - } - } - - public static string Comparing_images { - get { - return ResourceManager.GetString("Comparing_images", resourceCulture); - } - } - - public static string Images_differ { - get { - return ResourceManager.GetString("Images_differ", resourceCulture); - } - } - - public static string Images_do_not_differ { - get { - return ResourceManager.GetString("Images_do_not_differ", resourceCulture); - } - } - - public static string Take_metadata_from_existing_CICM_XML_sidecar { - get { - return ResourceManager.GetString("Take_metadata_from_existing_CICM_XML_sidecar", resourceCulture); - } - } - - public static string Image_comments { - get { - return ResourceManager.GetString("Image_comments", resourceCulture); - } - } - - public static string How_many_sectors_to_convert_at_once { - get { - return ResourceManager.GetString("How_many_sectors_to_convert_at_once", resourceCulture); - } - } - - public static string Who_person_created_the_image { - get { - return ResourceManager.GetString("Who_person_created_the_image", resourceCulture); - } - } - - public static string Manufacturer_of_drive_read_the_media_by_image { - get { - return ResourceManager.GetString("Manufacturer_of_drive_read_the_media_by_image", resourceCulture); - } - } - - public static string Model_of_drive_read_the_media_by_image { - get { - return ResourceManager.GetString("Model_of_drive_read_the_media_by_image", resourceCulture); - } - } - - public static string Firmware_revision_of_drive_read_the_media_by_image { - get { - return ResourceManager.GetString("Firmware_revision_of_drive_read_the_media_by_image", resourceCulture); - } - } - - public static string Serial_number_of_drive_read_the_media_by_image { - get { - return ResourceManager.GetString("Serial_number_of_drive_read_the_media_by_image", resourceCulture); - } - } - - public static string Continue_conversion_even_if_data_lost { - get { - return ResourceManager.GetString("Continue_conversion_even_if_data_lost", resourceCulture); - } - } - - public static string Format_of_the_output_image_as_plugin_name_or_plugin_id { - get { - return ResourceManager.GetString("Format_of_the_output_image_as_plugin_name_or_plugin_id", resourceCulture); + return ResourceManager.GetString("Automation_Device_Serial_Number", resourceCulture); } } + /// + /// Looks up a localized string similar to Barcode of the media represented by the image.. + /// public static string Barcode_of_the_media_by_image { get { return ResourceManager.GetString("Barcode_of_the_media_by_image", resourceCulture); } } - public static string Last_media_of_sequence_by_image { + /// + /// Looks up a localized string similar to Base Mechanical Serial Number. + /// + public static string Base_Mechanical_Serial_Number { get { - return ResourceManager.GetString("Last_media_of_sequence_by_image", resourceCulture); + return ResourceManager.GetString("Base_Mechanical_Serial_Number", resourceCulture); } } - public static string Manufacturer_of_media_by_image { + /// + /// Looks up a localized string similar to Board Serial Number. + /// + public static string Board_Serial_Number { get { - return ResourceManager.GetString("Manufacturer_of_media_by_image", resourceCulture); + return ResourceManager.GetString("Board_Serial_Number", resourceCulture); } } - public static string Model_of_media_by_image { + /// + /// Looks up a localized string similar to Burst Cutting Area. + /// + public static string Burst_Cutting_Area { get { - return ResourceManager.GetString("Model_of_media_by_image", resourceCulture); + return ResourceManager.GetString("Burst_Cutting_Area", resourceCulture); } } - public static string Part_number_of_media_by_image { + /// + /// Looks up a localized string similar to Calculate entropy. + /// + public static string ButtonLabel_Calculate_entropy { get { - return ResourceManager.GetString("Part_number_of_media_by_image", resourceCulture); + return ResourceManager.GetString("ButtonLabel_Calculate_entropy", resourceCulture); } } - public static string Number_in_sequence_for_media_by_image { + /// + /// Looks up a localized string similar to Cancel. + /// + public static string ButtonLabel_Cancel { get { - return ResourceManager.GetString("Number_in_sequence_for_media_by_image", resourceCulture); + return ResourceManager.GetString("ButtonLabel_Cancel", resourceCulture); } } - public static string Serial_number_of_media_by_image { + /// + /// Looks up a localized string similar to Checksum. + /// + public static string ButtonLabel_Checksum { get { - return ResourceManager.GetString("Serial_number_of_media_by_image", resourceCulture); + return ResourceManager.GetString("ButtonLabel_Checksum", resourceCulture); } } - public static string Title_of_media_represented_by_image { + /// + /// Looks up a localized string similar to Choose.... + /// + public static string ButtonLabel_Choose { get { - return ResourceManager.GetString("Title_of_media_represented_by_image", resourceCulture); + return ResourceManager.GetString("ButtonLabel_Choose", resourceCulture); } } + /// + /// Looks up a localized string similar to Clear. + /// + public static string ButtonLabel_Clear { + get { + return ResourceManager.GetString("ButtonLabel_Clear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string ButtonLabel_Close { + get { + return ResourceManager.GetString("ButtonLabel_Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Convert to.... + /// + public static string ButtonLabel_Convert_to { + get { + return ResourceManager.GetString("ButtonLabel_Convert_to", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Aaru Metadata sidecar.... + /// + public static string ButtonLabel_Create_Aaru_Metadata_sidecar { + get { + return ResourceManager.GetString("ButtonLabel_Create_Aaru_Metadata_sidecar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decode media tags. + /// + public static string ButtonLabel_Decode_media_tags { + get { + return ResourceManager.GetString("ButtonLabel_Decode_media_tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dump media to image. + /// + public static string ButtonLabel_Dump_media_to_image { + get { + return ResourceManager.GetString("ButtonLabel_Dump_media_to_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extract to.... + /// + public static string ButtonLabel_Extract_to { + get { + return ResourceManager.GetString("ButtonLabel_Extract_to", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get from source image. + /// + public static string ButtonLabel_Get_from_source_image { + get { + return ResourceManager.GetString("ButtonLabel_Get_from_source_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string ButtonLabel_Save { + get { + return ResourceManager.GetString("ButtonLabel_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save AACS Information. + /// + public static string ButtonLabel_Save_AACS_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_AACS_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save ADIP. + /// + public static string ButtonLabel_Save_ADIP { + get { + return ResourceManager.GetString("ButtonLabel_Save_ADIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save binary to file. + /// + public static string ButtonLabel_Save_binary_to_file { + get { + return ResourceManager.GetString("ButtonLabel_Save_binary_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Burst Cutting Area. + /// + public static string ButtonLabel_Save_Burst_Cutting_Area { + get { + return ResourceManager.GetString("ButtonLabel_Save_Burst_Cutting_Area", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Cartridge Status. + /// + public static string ButtonLabel_Save_Cartridge_Status { + get { + return ResourceManager.GetString("ButtonLabel_Save_Cartridge_Status", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Copyright Management Information. + /// + public static string ButtonLabel_Save_Copyright_Management_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_Copyright_Management_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Disc Control Blocks. + /// + public static string ButtonLabel_Save_Disc_Control_Blocks { + get { + return ResourceManager.GetString("ButtonLabel_Save_Disc_Control_Blocks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Disc Definition Structure. + /// + public static string ButtonLabel_Save_Disc_Definition_Structure { + get { + return ResourceManager.GetString("ButtonLabel_Save_Disc_Definition_Structure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Disc Information. + /// + public static string ButtonLabel_Save_Disc_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_Disc_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Disc Manufacturer Information. + /// + public static string ButtonLabel_Save_Disc_Manufacturer_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_Disc_Manufacturer_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save EVPD page to file. + /// + public static string ButtonLabel_Save_EVPD_page_to_file { + get { + return ResourceManager.GetString("ButtonLabel_Save_EVPD_page_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save GET CONFIGURATION response. + /// + public static string ButtonLabel_Save_GET_CONFIGURATION_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_GET_CONFIGURATION_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Jump Interval Size. + /// + public static string ButtonLabel_Save_Jump_Interval_Size { + get { + return ResourceManager.GetString("ButtonLabel_Save_Jump_Interval_Size", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Last Border-Out RMD. + /// + public static string ButtonLabel_Save_Last_Border_Out_RMD { + get { + return ResourceManager.GetString("ButtonLabel_Save_Last_Border_Out_RMD", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Layer Capacity. + /// + public static string ButtonLabel_Save_Layer_Capacity { + get { + return ResourceManager.GetString("ButtonLabel_Save_Layer_Capacity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Lead-In CD-TEXT. + /// + public static string ButtonLabel_Save_Lead_In_CD_TEXT { + get { + return ResourceManager.GetString("ButtonLabel_Save_Lead_In_CD_TEXT", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Manual Layer Jump Start LBA. + /// + public static string ButtonLabel_Save_Manual_Layer_Jump_Start_LBA { + get { + return ResourceManager.GetString("ButtonLabel_Save_Manual_Layer_Jump_Start_LBA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Media Identifier. + /// + public static string ButtonLabel_Save_Media_Identifier { + get { + return ResourceManager.GetString("ButtonLabel_Save_Media_Identifier", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Medium Status. + /// + public static string ButtonLabel_Save_Medium_Status { + get { + return ResourceManager.GetString("ButtonLabel_Save_Medium_Status", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Middle Zone Start. + /// + public static string ButtonLabel_Save_Middle_Zone_Start { + get { + return ResourceManager.GetString("ButtonLabel_Save_Middle_Zone_Start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save MMC GET CONFIGURATION response to file. + /// + public static string ButtonLabel_Save_MMC_GET_CONFIGURATION_response_to_file { + get { + return ResourceManager.GetString("ButtonLabel_Save_MMC_GET_CONFIGURATION_response_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save MODE SENSE (10) response to file. + /// + public static string ButtonLabel_Save_MODE_SENSE_10_response_to_file { + get { + return ResourceManager.GetString("ButtonLabel_Save_MODE_SENSE_10_response_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save MODE SENSE (6) response to file. + /// + public static string ButtonLabel_Save_MODE_SENSE_6_response_to_file { + get { + return ResourceManager.GetString("ButtonLabel_Save_MODE_SENSE_6_response_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save PAC. + /// + public static string ButtonLabel_Save_PAC { + get { + return ResourceManager.GetString("ButtonLabel_Save_PAC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save PCMCIA CIS to file. + /// + public static string ButtonLabel_Save_PCMCIA_CIS_to_file { + get { + return ResourceManager.GetString("ButtonLabel_Save_PCMCIA_CIS_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Physical Format Information. + /// + public static string ButtonLabel_Save_Physical_Format_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_Physical_Format_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Pre-Recorded Physical Information. + /// + public static string ButtonLabel_Save_Pre_Recorded_Physical_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_Pre_Recorded_Physical_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Pseudo-OverWrite Resources. + /// + public static string ButtonLabel_Save_Pseudo_OverWrite_Resources { + get { + return ResourceManager.GetString("ButtonLabel_Save_Pseudo_OverWrite_Resources", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save raw DFL. + /// + public static string ButtonLabel_Save_raw_DFL { + get { + return ResourceManager.GetString("ButtonLabel_Save_raw_DFL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ ATIP response. + /// + public static string ButtonLabel_Save_READ_ATIP_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_ATIP_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ CAPACITY (16) response. + /// + public static string ButtonLabel_Save_READ_CAPACITY_16_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_CAPACITY_16_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ CAPACITY response. + /// + public static string ButtonLabel_Save_READ_CAPACITY_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_CAPACITY_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ DISC INFORMATION response. + /// + public static string ButtonLabel_Save_READ_DISC_INFORMATION_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_DISC_INFORMATION_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ MEDIA SERIAL NUMBER response. + /// + public static string ButtonLabel_Save_READ_MEDIA_SERIAL_NUMBER_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_MEDIA_SERIAL_NUMBER_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ PMA response. + /// + public static string ButtonLabel_Save_READ_PMA_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_PMA_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ RAW TOC response. + /// + public static string ButtonLabel_Save_READ_RAW_TOC_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_RAW_TOC_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ SESSION response. + /// + public static string ButtonLabel_Save_READ_SESSION_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_SESSION_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save READ TOC response. + /// + public static string ButtonLabel_Save_READ_TOC_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_READ_TOC_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save RECOGNIZED FORMAT LAYERS response. + /// + public static string ButtonLabel_Save_RECOGNIZED_FORMAT_LAYERS_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_RECOGNIZED_FORMAT_LAYERS_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Recordable Physical Information. + /// + public static string ButtonLabel_Save_Recordable_Physical_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_Recordable_Physical_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Remap Anchor Point. + /// + public static string ButtonLabel_Save_Remap_Anchor_Point { + get { + return ResourceManager.GetString("ButtonLabel_Save_Remap_Anchor_Point", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save REPORT DENSITY SUPPORT (MEDIA) response. + /// + public static string ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIA_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIA_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save REPORT DENSITY SUPPORT (MEDIUM & MEDIA) response. + /// + public static string ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIUM_MEDIA_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIUM_MEDIA_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Spare Area Information. + /// + public static string ButtonLabel_Save_Spare_Area_Information { + get { + return ResourceManager.GetString("ButtonLabel_Save_Spare_Area_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save text to file. + /// + public static string ButtonLabel_Save_text_to_file { + get { + return ResourceManager.GetString("ButtonLabel_Save_text_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Track Resources. + /// + public static string ButtonLabel_Save_Track_Resources { + get { + return ResourceManager.GetString("ButtonLabel_Save_Track_Resources", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save WRITE PROTECTION STATUS response. + /// + public static string ButtonLabel_Save_WRITE_PROTECTION_STATUS_response { + get { + return ResourceManager.GetString("ButtonLabel_Save_WRITE_PROTECTION_STATUS_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Xbox Security Sector. + /// + public static string ButtonLabel_Save_Xbox_Security_Sector { + get { + return ResourceManager.GetString("ButtonLabel_Save_Xbox_Security_Sector", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scan media surface. + /// + public static string ButtonLabel_Scan_media_surface { + get { + return ResourceManager.GetString("ButtonLabel_Scan_media_surface", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start. + /// + public static string ButtonLabel_Start { + get { + return ResourceManager.GetString("ButtonLabel_Start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stop. + /// + public static string ButtonLabel_Stop { + get { + return ResourceManager.GetString("ButtonLabel_Stop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verify. + /// + public static string ButtonLabel_Verify { + get { + return ResourceManager.GetString("ButtonLabel_Verify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View sectors. + /// + public static string ButtonLabel_View_sectors { + get { + return ResourceManager.GetString("ButtonLabel_View_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates Adler-32.. + /// + public static string Calculates_Adler_32 { + get { + return ResourceManager.GetString("Calculates_Adler_32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates CRC16.. + /// + public static string Calculates_CRC16 { + get { + return ResourceManager.GetString("Calculates_CRC16", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates CRC32.. + /// + public static string Calculates_CRC32 { + get { + return ResourceManager.GetString("Calculates_CRC32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates CRC64 (ECMA).. + /// + public static string Calculates_CRC64_ECMA { + get { + return ResourceManager.GetString("Calculates_CRC64_ECMA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates entropy for each track separately.. + /// + public static string Calculates_entropy_for_each_track_separately { + get { + return ResourceManager.GetString("Calculates_entropy_for_each_track_separately", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates entropy for the whole disc.. + /// + public static string Calculates_entropy_for_the_whole_disc { + get { + return ResourceManager.GetString("Calculates_entropy_for_the_whole_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates Fletcher-16.. + /// + public static string Calculates_Fletcher_16 { + get { + return ResourceManager.GetString("Calculates_Fletcher_16", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates Fletcher-32.. + /// + public static string Calculates_Fletcher_32 { + get { + return ResourceManager.GetString("Calculates_Fletcher_32", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates how many sectors are duplicated (have same exact data in user area).. + /// + public static string Calculates_how_many_sectors_are_duplicated { + get { + return ResourceManager.GetString("Calculates_how_many_sectors_are_duplicated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates MD5.. + /// + public static string Calculates_MD5 { + get { + return ResourceManager.GetString("Calculates_MD5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates SHA1.. + /// + public static string Calculates_SHA1 { + get { + return ResourceManager.GetString("Calculates_SHA1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates SHA256.. + /// + public static string Calculates_SHA256 { + get { + return ResourceManager.GetString("Calculates_SHA256", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates SHA384.. + /// + public static string Calculates_SHA384 { + get { + return ResourceManager.GetString("Calculates_SHA384", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates SHA512.. + /// + public static string Calculates_SHA512 { + get { + return ResourceManager.GetString("Calculates_SHA512", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculates SpamSum fuzzy hash.. + /// + public static string Calculates_SpamSum_fuzzy_hash { + get { + return ResourceManager.GetString("Calculates_SpamSum_fuzzy_hash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculating disc entropy of multisession images is not yet implemented.. + /// + public static string Calculating_disc_entropy_of_multisession_images_is_not_yet_implemented { + get { + return ResourceManager.GetString("Calculating_disc_entropy_of_multisession_images_is_not_yet_implemented", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot create file. + /// + public static string Cannot_create_file { + get { + return ResourceManager.GetString("Cannot_create_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot delete. + /// + public static string Cannot_delete { + get { + return ResourceManager.GetString("Cannot_delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open input file 1. + /// + public static string Cannot_open_first_input_file { + get { + return ResourceManager.GetString("Cannot_open_first_input_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open image file, aborting.... + /// + public static string Cannot_open_image_file_aborting { + get { + return ResourceManager.GetString("Cannot_open_image_file_aborting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open output plugin.. + /// + public static string Cannot_open_output_plugin { + get { + return ResourceManager.GetString("Cannot_open_output_plugin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open input file 2. + /// + public static string Cannot_open_second_input_file { + get { + return ResourceManager.GetString("Cannot_open_second_input_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open specified file.. + /// + public static string Cannot_open_specified_file { + get { + return ResourceManager.GetString("Cannot_open_specified_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot write file {0}, output exists. + /// + public static string Cannot_write_file_0_output_exists { + get { + return ResourceManager.GetString("Cannot_write_file_0_output_exists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot write xattr {0} for {1}, output exists. + /// + public static string Cannot_write_xattr_0_for_1_output_exists { + get { + return ResourceManager.GetString("Cannot_write_xattr_0_for_1_output_exists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cartridge Status. + /// + public static string Cartridge_Status { + get { + return ResourceManager.GetString("Cartridge_Status", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD ATIP:. + /// + public static string CD_ATIP { + get { + return ResourceManager.GetString("CD_ATIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD full TOC:. + /// + public static string CD_full_TOC { + get { + return ResourceManager.GetString("CD_full_TOC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD read speed limited to. + /// + public static string CD_read_speed_limited_to { + get { + return ResourceManager.GetString("CD_read_speed_limited_to", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD session information:. + /// + public static string CD_session_information { + get { + return ResourceManager.GetString("CD_session_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD-TEXT:. + /// + public static string CD_TEXT { + get { + return ResourceManager.GetString("CD_TEXT", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD TOC:. + /// + public static string CD_TOC { + get { + return ResourceManager.GetString("CD_TOC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD write speed limited to. + /// + public static string CD_write_speed_limited_to { + get { + return ResourceManager.GetString("CD_write_speed_limited_to", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Certance Drive Component Revision Levels page. + /// + public static string Certance_Drive_Component_Revision_Levels_page { + get { + return ResourceManager.GetString("Certance_Drive_Component_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Certance drive status page. + /// + public static string Certance_drive_status_page { + get { + return ResourceManager.GetString("Certance_drive_status_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking disc image checksums took {0}. + /// + public static string Checking_disc_image_checksums_took_0 { + get { + return ResourceManager.GetString("Checking_disc_image_checksums_took_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking GDPR compliance.... + /// + public static string Checking_GDPR_compliance { + get { + return ResourceManager.GetString("Checking_GDPR_compliance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking media image.... + /// + public static string Checking_media_image { + get { + return ResourceManager.GetString("Checking_media_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking sector. + /// + public static string Checking_sector { + get { + return ResourceManager.GetString("Checking_sector", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking sector {0} of {1}. + /// + public static string Checking_sector_0_of_1 { + get { + return ResourceManager.GetString("Checking_sector_0_of_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking sector {0} of {1}, on track {2}. + /// + public static string Checking_sector_0_of_1_on_track_2 { + get { + return ResourceManager.GetString("Checking_sector_0_of_1_on_track_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking sector checksums took {0}. + /// + public static string Checking_sector_checksums_took_0 { + get { + return ResourceManager.GetString("Checking_sector_checksums_took_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking sectors.... + /// + public static string Checking_sectors { + get { + return ResourceManager.GetString("Checking_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking track {0} of {1}. + /// + public static string Checking_track_0_of_1 { + get { + return ResourceManager.GetString("Checking_track_0_of_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking tracks.... + /// + public static string Checking_tracks { + get { + return ResourceManager.GetString("Checking_tracks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc's {0}. + /// + public static string Checksums_Disc_has_0 { + get { + return ResourceManager.GetString("Checksums_Disc_has_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disk's {0}:. + /// + public static string Checksums_Disk_has_0 { + get { + return ResourceManager.GetString("Checksums_Disk_has_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checksums each track separately.. + /// + public static string Checksums_each_track_separately { + get { + return ResourceManager.GetString("Checksums_each_track_separately", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File {0}'s {1}. + /// + public static string Checksums_File_0_has_1 { + get { + return ResourceManager.GetString("Checksums_File_0_has_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media's {0}:. + /// + public static string Checksums_Media_has_0 { + get { + return ResourceManager.GetString("Checksums_Media_has_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tape's {0}:. + /// + public static string Checksums_Tape_has_0 { + get { + return ResourceManager.GetString("Checksums_Tape_has_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checksums the whole disc.. + /// + public static string Checksums_the_whole_disc { + get { + return ResourceManager.GetString("Checksums_the_whole_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track {0}'s {1}:. + /// + public static string Checksums_Track_0_has_1 { + get { + return ResourceManager.GetString("Checksums_Track_0_has_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear existing main and local database.. + /// + public static string Clear_existing_main_and_local_database { + get { + return ResourceManager.GetString("Clear_existing_main_and_local_database", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear existing main database.. + /// + public static string Clear_existing_main_database { + get { + return ResourceManager.GetString("Clear_existing_main_database", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Closing output image.... + /// + public static string Closing_output_image { + get { + return ResourceManager.GetString("Closing_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comma separated name=value pairs of options to pass to filesystem plugin.. + /// + public static string Comma_separated_name_value_pairs_of_filesystem_options { + get { + return ResourceManager.GetString("Comma_separated_name_value_pairs_of_filesystem_options", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comma separated name=value pairs of options to pass to output image plugin.. + /// public static string Comma_separated_name_value_pairs_of_image_options { get { return ResourceManager.GetString("Comma_separated_name_value_pairs_of_image_options", resourceCulture); } } - public static string Take_dump_hardware_from_existing_resume { + /// + /// Looks up a localized string similar to Command not supported for this image type.. + /// + public static string Command_not_supported_for_this_image_type { get { - return ResourceManager.GetString("Take_dump_hardware_from_existing_resume", resourceCulture); - } - } - - public static string Force_geometry_help { - get { - return ResourceManager.GetString("Force_geometry_help", resourceCulture); - } - } - - public static string Fix_subchannel_position_help { - get { - return ResourceManager.GetString("Fix_subchannel_position_help", resourceCulture); - } - } - - public static string Fix_subchannel_help { - get { - return ResourceManager.GetString("Fix_subchannel_help", resourceCulture); - } - } - - public static string Fix_subchannel_crc_help { - get { - return ResourceManager.GetString("Fix_subchannel_crc_help", resourceCulture); - } - } - - public static string Generates_subchannels_help { - get { - return ResourceManager.GetString("Generates_subchannels_help", resourceCulture); - } - } - - public static string Decrypt_sectors_help { - get { - return ResourceManager.GetString("Decrypt_sectors_help", resourceCulture); - } - } - - public static string Input_image_path { - get { - return ResourceManager.GetString("Input_image_path", resourceCulture); - } - } - - public static string Output_image_path { - get { - return ResourceManager.GetString("Output_image_path", resourceCulture); - } - } - - public static string Need_to_specify_more_than_zero_sectors_to_copy_at_once { - get { - return ResourceManager.GetString("Need_to_specify_more_than_zero_sectors_to_copy_at_once", resourceCulture); - } - } - - public static string Invalid_geometry_specified { - get { - return ResourceManager.GetString("Invalid_geometry_specified", resourceCulture); - } - } - - public static string Invalid_number_of_cylinders_specified { - get { - return ResourceManager.GetString("Invalid_number_of_cylinders_specified", resourceCulture); - } - } - - public static string Invalid_number_of_heads_specified { - get { - return ResourceManager.GetString("Invalid_number_of_heads_specified", resourceCulture); - } - } - - public static string Invalid_sectors_per_track_specified { - get { - return ResourceManager.GetString("Invalid_sectors_per_track_specified", resourceCulture); - } - } - - public static string Incorrect_metadata_sidecar_file_not_continuing { - get { - return ResourceManager.GetString("Incorrect_metadata_sidecar_file_not_continuing", resourceCulture); - } - } - - public static string Could_not_find_metadata_sidecar { - get { - return ResourceManager.GetString("Could_not_find_metadata_sidecar", resourceCulture); - } - } - - public static string Incorrect_resume_file { - get { - return ResourceManager.GetString("Incorrect_resume_file", resourceCulture); - } - } - - public static string Could_not_find_resume_file { - get { - return ResourceManager.GetString("Could_not_find_resume_file", resourceCulture); - } - } - - public static string Output_file_already_exists { - get { - return ResourceManager.GetString("Output_file_already_exists", resourceCulture); - } - } - - public static string Input_image_format_not_identified { - get { - return ResourceManager.GetString("Input_image_format_not_identified", resourceCulture); + return ResourceManager.GetString("Command_not_supported_for_this_image_type", resourceCulture); } } + /// + /// Looks up a localized string similar to Command not yet supported for this image type.. + /// public static string Command_not_yet_supported_for_this_image_type { get { return ResourceManager.GetString("Command_not_yet_supported_for_this_image_type", resourceCulture); } } - public static string Input_image_format_identified_by_0_1 { + /// + /// Looks up a localized string similar to Commands statistics. + /// + public static string Commands_statistics { get { - return ResourceManager.GetString("Input_image_format_identified_by_0_1", resourceCulture); + return ResourceManager.GetString("Commands_statistics", resourceCulture); } } - public static string Input_image_format_identified_by_0 { + /// + /// Looks up a localized string similar to Comparing images.... + /// + public static string Comparing_images { get { - return ResourceManager.GetString("Input_image_format_identified_by_0", resourceCulture); + return ResourceManager.GetString("Comparing_images", resourceCulture); } } - public static string Image_identifies_media_type_as_0 { + /// + /// Looks up a localized string similar to Comparing media image characteristics. + /// + public static string Comparing_media_image_characteristics { get { - return ResourceManager.GetString("Image_identifies_media_type_as_0", resourceCulture); + return ResourceManager.GetString("Comparing_media_image_characteristics", resourceCulture); } } - public static string No_plugin_supports_requested_extension { + /// + /// Looks up a localized string similar to Comparing sector {0} of {1}.... + /// + public static string Comparing_sector_0_of_1 { get { - return ResourceManager.GetString("No_plugin_supports_requested_extension", resourceCulture); + return ResourceManager.GetString("Comparing_sector_0_of_1", resourceCulture); } } - public static string More_than_one_plugin_supports_requested_extension { + /// + /// Looks up a localized string similar to Comparing sectors.... + /// + public static string Comparing_sectors { get { - return ResourceManager.GetString("More_than_one_plugin_supports_requested_extension", resourceCulture); + return ResourceManager.GetString("Comparing_sectors", resourceCulture); } } - public static string Output_image_format_0_1 { + /// + /// Looks up a localized string similar to Configures user settings and statistics.. + /// + public static string Configure_Command_Description { get { - return ResourceManager.GetString("Output_image_format_0_1", resourceCulture); + return ResourceManager.GetString("Configure_Command_Description", resourceCulture); } } - public static string Output_image_format_0 { + /// + /// Looks up a localized string similar to With the 'device-report' command, Aaru creates a report of a device, that includes its + ///manufacturer, model, firmware revision and/or version, attached bus, size, and supported commands. + ///The serial number of the device is not stored in the report. If used with the debug parameter, + ///extra information about the device will be stored in the report. This information is known to contain + ///the device serial number in non-standard places that prevent the automatic removal of it on a handful + ///of devices. A human-readabl [rest of string was truncated]";. + /// + public static string Configure_Device_Report_information_disclaimer { get { - return ResourceManager.GetString("Output_image_format_0", resourceCulture); + return ResourceManager.GetString("Configure_Device_Report_information_disclaimer", resourceCulture); } } - public static string Output_format_does_not_support_media_type { + /// + /// Looks up a localized string similar to Do you want to save device reports in shared folder of your computer?. + /// + public static string Configure_Do_you_want_to_save_device_reports_in_shared_folder_of_your_computer_Q { get { - return ResourceManager.GetString("Output_format_does_not_support_media_type", resourceCulture); + return ResourceManager.GetString("Configure_Do_you_want_to_save_device_reports_in_shared_folder_of_your_computer_Q", resourceCulture); } } + /// + /// Looks up a localized string similar to Do you want to enable the decryption of copy protected media (also known as DRM), + ///like for example DVD Video CSS encryption. + ///Consult your local laws before enabling it, as this is illegal in some countries, or + ///only legal under some circumstances.. + /// + public static string Configure_enable_decryption_disclaimer { + get { + return ResourceManager.GetString("Configure_enable_decryption_disclaimer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sharing a report with us will send it to our server, that's in the european union territory, where it + ///will be manually analyzed by an european union citizen to remove any trace of personal identification + ///from it. Once that is done, it will be shared in our stats website, https://www.aaru.app + ///These report will be used to improve Aaru support, and in some cases, to provide emulation of the + ///devices to other open-source projects. In any case, no information linking the report to you will be stored.. + /// + public static string Configure_share_report_disclaimer { + get { + return ResourceManager.GetString("Configure_share_report_disclaimer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ################# Console ################. + /// + public static string Console_with_ornament { + get { + return ResourceManager.GetString("Console_with_ornament", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Continue conversion even if sector or media tags will be lost in the process.. + /// + public static string Continue_conversion_even_if_data_lost { + get { + return ResourceManager.GetString("Continue_conversion_even_if_data_lost", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Continue dump whatever happens.. + /// + public static string Continue_dump_whatever_happens { + get { + return ResourceManager.GetString("Continue_dump_whatever_happens", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Continue dumping whatever happens. + /// + public static string Continue_dumping_whatever_happens { + get { + return ResourceManager.GetString("Continue_dumping_whatever_happens", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conversion done.. + /// + public static string Conversion_done { + get { + return ResourceManager.GetString("Conversion_done", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting disc.... + /// + public static string Converting_disc { + get { + return ResourceManager.GetString("Converting_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting file {0} of partition {1}.... + /// + public static string Converting_file_0_of_partition_1 { + get { + return ResourceManager.GetString("Converting_file_0_of_partition_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting files. + /// + public static string Converting_files { + get { + return ResourceManager.GetString("Converting_files", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting image will lose media tag {0}, not continuing.... + /// public static string Converting_image_will_lose_media_tag_0 { get { return ResourceManager.GetString("Converting_image_will_lose_media_tag_0", resourceCulture); } } - public static string If_you_dont_care_use_force_option { - get { - return ResourceManager.GetString("If_you_dont_care_use_force_option", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to Converting image will lose sector tag {0}, not continuing.... + /// public static string Converting_image_will_lose_sector_tag_0 { get { return ResourceManager.GetString("Converting_image_will_lose_sector_tag_0", resourceCulture); } } + /// + /// Looks up a localized string similar to Converting media. + /// + public static string Converting_media { + get { + return ResourceManager.GetString("Converting_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting media tag {0}. + /// + public static string Converting_media_tag_0 { + get { + return ResourceManager.GetString("Converting_media_tag_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting sectors. + /// + public static string Converting_sectors { + get { + return ResourceManager.GetString("Converting_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting sectors {0} to {1}. + /// + public static string Converting_sectors_0_to_1 { + get { + return ResourceManager.GetString("Converting_sectors_0_to_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting sectors {0} to {1} ({2:P2} done). + /// + public static string Converting_sectors_0_to_1_2_done { + get { + return ResourceManager.GetString("Converting_sectors_0_to_1_2_done", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting sectors {0} to {1} in track {2}. + /// + public static string Converting_sectors_0_to_1_in_track_2 { + get { + return ResourceManager.GetString("Converting_sectors_0_to_1_in_track_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting sectors {0} to {1} in track {2} ({3:P2} done). + /// + public static string Converting_sectors_0_to_1_in_track_2_3_done { + get { + return ResourceManager.GetString("Converting_sectors_0_to_1_in_track_2_3_done", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting sectors in track {0}. + /// + public static string Converting_sectors_in_track_0 { + get { + return ResourceManager.GetString("Converting_sectors_in_track_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting sectors in track {0} of {1}. + /// + public static string Converting_sectors_in_track_0_of_1 { + get { + return ResourceManager.GetString("Converting_sectors_in_track_0_of_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tag {0}. + /// + public static string Converting_tag_0 { + get { + return ResourceManager.GetString("Converting_tag_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tag {0} for sectors {1} to {2} ({3:P2} done). + /// + public static string Converting_tag_0_for_sectors_1_to_2_3_done { + get { + return ResourceManager.GetString("Converting_tag_0_for_sectors_1_to_2_3_done", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tag {0} for sectors {1} to {2} in track {3} ({4:P2} done). + /// + public static string Converting_tag_0_for_sectors_1_to_2_in_track_3_4_done { + get { + return ResourceManager.GetString("Converting_tag_0_for_sectors_1_to_2_in_track_3_4_done", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tag {2} for sectors {0} to {1}. + /// + public static string Converting_tag_2_for_sectors_0_to_1 { + get { + return ResourceManager.GetString("Converting_tag_2_for_sectors_0_to_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tag {3} for sectors {0} to {1} in track {2}. + /// + public static string Converting_tag_3_for_sectors_0_to_1_in_track_2 { + get { + return ResourceManager.GetString("Converting_tag_3_for_sectors_0_to_1_in_track_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tags. + /// + public static string Converting_tags { + get { + return ResourceManager.GetString("Converting_tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tags in track {0} of {1}. + /// + public static string Converting_tags_in_track_0_of_1 { + get { + return ResourceManager.GetString("Converting_tags_in_track_0_of_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting tape partition {0}.... + /// + public static string Converting_tape_partition_0 { + get { + return ResourceManager.GetString("Converting_tape_partition_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Converting track. + /// + public static string Converting_track { + get { + return ResourceManager.GetString("Converting_track", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Correctly opened image file.. + /// + public static string Correctly_opened_image_file { + get { + return ResourceManager.GetString("Correctly_opened_image_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not create destination file. + ///Do you want to continue?. + /// + public static string Could_not_create_destination_file_continue_Q { + get { + return ResourceManager.GetString("Could_not_create_destination_file_continue_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not find metadata sidecar, not continuing.... + /// + public static string Could_not_find_metadata_sidecar { + get { + return ResourceManager.GetString("Could_not_find_metadata_sidecar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not find resume file, not continuing.... + /// + public static string Could_not_find_resume_file { + get { + return ResourceManager.GetString("Could_not_find_resume_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not open device, error {0}.. + /// + public static string Could_not_open_device_error_0 { + get { + return ResourceManager.GetString("Could_not_open_device_error_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not remove local database.. + /// + public static string Could_not_remove_local_database { + get { + return ResourceManager.GetString("Could_not_remove_local_database", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not remove main database.. + /// + public static string Could_not_remove_main_database { + get { + return ResourceManager.GetString("Could_not_remove_main_database", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not delete existing file. + ///Do you want to continue?. + /// + public static string Could_note_delete_existe_file_continue_Q { + get { + return ResourceManager.GetString("Could_note_delete_existe_file_continue_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Aaru Metadata sidecar. + /// + public static string Create_Aaru_Metadata_sidecar { + get { + return ResourceManager.GetString("Create_Aaru_Metadata_sidecar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create graph of dumped media. Currently only supported for CD/DVD/BD/GD/UMD.. + /// + public static string Create_graph_of_dumped_media { + get { + return ResourceManager.GetString("Create_graph_of_dumped_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create graph of verified disc (currently only implemented for optical discs).. + /// + public static string Create_graph_of_verified_disc { + get { + return ResourceManager.GetString("Create_graph_of_verified_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create/use resume mapfile.. + /// + public static string Create_or_use_resume_mapfile { + get { + return ResourceManager.GetString("Create_or_use_resume_mapfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create/use resume mapfile. + /// + public static string Create_use_resume_mapfile { + get { + return ResourceManager.GetString("Create_use_resume_mapfile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Created subdirectory at {0}. + /// + public static string Created_subdirectory_at_0 { + get { + return ResourceManager.GetString("Created_subdirectory_at_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creating output image. + /// + public static string Creating_output_image { + get { + return ResourceManager.GetString("Creating_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Data Transfer Device Element Address. + /// + public static string Data_Transfer_Device_Element_Address { + get { + return ResourceManager.GetString("Data_Transfer_Device_Element_Address", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commands to manage the device and statistics database. + /// + public static string Database_Command_Family_Description { + get { + return ResourceManager.GetString("Database_Command_Family_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shows statistics.. + /// + public static string Database_Stats_Command_Description { + get { + return ResourceManager.GetString("Database_Stats_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Updates the database.. + /// + public static string Database_Update_Command_Description { + get { + return ResourceManager.GetString("Database_Update_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decode disk tags.. + /// + public static string Decode_disk_tags { + get { + return ResourceManager.GetString("Decode_disk_tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decode sector tags.. + /// + public static string Decode_sector_tags { + get { + return ResourceManager.GetString("Decode_sector_tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decoder for disk tag type "{0}" not yet implemented, sorry.. + /// + public static string Decoder_for_disk_tag_type_0_not_yet_implemented_sorry { + get { + return ResourceManager.GetString("Decoder_for_disk_tag_type_0_not_yet_implemented_sorry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decoder for sector tag type "{0}" not yet implemented, sorry.. + /// + public static string Decoder_for_sector_tag_type_0_not_yet_implemented_sorry { + get { + return ResourceManager.GetString("Decoder_for_sector_tag_type_0_not_yet_implemented_sorry", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try to decrypt encrypted sectors.. + /// + public static string Decrypt_sectors_help { + get { + return ResourceManager.GetString("Decrypt_sectors_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default. + /// + public static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Densities supported by currently inserted media. + /// + public static string Densities_supported_by_currently_inserted_media { + get { + return ResourceManager.GetString("Densities_supported_by_currently_inserted_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Densities supported by device:. + /// + public static string Densities_supported_by_device { + get { + return ResourceManager.GetString("Densities_supported_by_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Destination exists, aborting.. + /// + public static string Destination_exists_aborting { + get { + return ResourceManager.GetString("Destination_exists_aborting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commands that talk to devices. + /// + public static string Device_Command_Family_Description { + get { + return ResourceManager.GetString("Device_Command_Family_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This device type does not support doing reports with trap discs.. + /// + public static string Device_does_not_report_with_trap_discs { + get { + return ResourceManager.GetString("Device_does_not_report_with_trap_discs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device Geometry Tuples. + /// + public static string Device_Geometry_Tuples { + get { + return ResourceManager.GetString("Device_Geometry_Tuples", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gets information about a device.. + /// + public static string Device_Info_Command_Description { + get { + return ResourceManager.GetString("Device_Info_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists all connected devices.. + /// + public static string Device_List_Command_Description { + get { + return ResourceManager.GetString("Device_List_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device path. + /// + public static string Device_path { + get { + return ResourceManager.GetString("Device_path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tests the device capabilities and creates an JSON report of them.. + /// + public static string Device_Report_Command_Description { + get { + return ResourceManager.GetString("Device_Report_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Because of the commands sent to a device, device report must be run with administrative privileges.. + /// + public static string Device_report_must_be_run_as_admin { + get { + return ResourceManager.GetString("Device_report_must_be_run_as_admin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Does a device report using a trap disc.. + /// + public static string Device_report_using_trap_disc { + get { + return ResourceManager.GetString("Device_report_using_trap_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device statistics. + /// + public static string Device_statistics { + get { + return ResourceManager.GetString("Device_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aaru Metadata. + /// + public static string Dialog_Aaru_Metadata { + get { + return ResourceManager.GetString("Dialog_Aaru_Metadata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Binary. + /// + public static string Dialog_Binary_files { + get { + return ResourceManager.GetString("Dialog_Binary_files", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose destination file. + /// + public static string Dialog_Choose_destination_file { + get { + return ResourceManager.GetString("Dialog_Choose_destination_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose destination folder.... + /// + public static string Dialog_Choose_destination_folder { + get { + return ResourceManager.GetString("Dialog_Choose_destination_folder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose existing metadata sidecar. + /// + public static string Dialog_Choose_existing_metadata_sidecar { + get { + return ResourceManager.GetString("Dialog_Choose_existing_metadata_sidecar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose existing resume file. + /// + public static string Dialog_Choose_existing_resume_file { + get { + return ResourceManager.GetString("Dialog_Choose_existing_resume_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose image to open. + /// + public static string Dialog_Choose_image_to_open { + get { + return ResourceManager.GetString("Dialog_Choose_image_to_open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log files. + /// + public static string Dialog_Log_files { + get { + return ResourceManager.GetString("Dialog_Log_files", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text. + /// + public static string Dialog_Text_files { + get { + return ResourceManager.GetString("Dialog_Text_files", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Directory: {0}. + /// + public static string Directory_0 { + get { + return ResourceManager.GetString("Directory_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <DIR>. + /// + public static string Directory_abbreviation { + get { + return ResourceManager.GetString("Directory_abbreviation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Directory where extracted files will be created. Will abort if it exists. + /// + public static string Directory_where_extracted_files_will_be_created { + get { + return ResourceManager.GetString("Directory_where_extracted_files_will_be_created", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc Definition Structure. + /// + public static string Disc_Definition_Structure { + get { + return ResourceManager.GetString("Disc_Definition_Structure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc image checksums are correct. + /// + public static string Disc_image_checksums_are_correct { + get { + return ResourceManager.GetString("Disc_image_checksums_are_correct", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc image checksums are incorrect. + /// + public static string Disc_image_checksums_are_incorrect { + get { + return ResourceManager.GetString("Disc_image_checksums_are_incorrect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc image does not contain checksums. + /// + public static string Disc_image_does_not_contain_checksums { + get { + return ResourceManager.GetString("Disc_image_does_not_contain_checksums", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc image does not support verification.. + /// + public static string Disc_image_does_not_support_verification { + get { + return ResourceManager.GetString("Disc_image_does_not_support_verification", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc image path. + /// + public static string Disc_image_path { + get { + return ResourceManager.GetString("Disc_image_path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc information. + /// + public static string Disc_information { + get { + return ResourceManager.GetString("Disc_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disk has {0} unique sectors ({1:P3}). + /// + public static string Disk_has_0_unique_sectors_1 { + get { + return ResourceManager.GetString("Disk_has_0_unique_sectors_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do not store paths and serial numbers in log or metadata.. + /// + public static string Do_not_store_paths_and_serial_numbers_in_log_or_metadata { + get { + return ResourceManager.GetString("Do_not_store_paths_and_serial_numbers_in_log_or_metadata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have a {0} disc that you can insert in the drive?. + /// + public static string Do_you_have_a_0_disc { + get { + return ResourceManager.GetString("Do_you_have_a_0_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have an audio trap disc (if unsure press N)?. + /// + public static string Do_you_have_audio_trap_disc { + get { + return ResourceManager.GetString("Do_you_have_audio_trap_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have a GD-ROM disc (if unsure press N)?. + /// + public static string Do_you_have_GD_ROM_disc { + get { + return ResourceManager.GetString("Do_you_have_GD_ROM_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have media that you can insert in the drive?. + /// + public static string Do_you_have_media_you_can_insert { + get { + return ResourceManager.GetString("Do_you_have_media_you_can_insert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to enable decryption of copy protected media?. + /// + public static string Do_you_want_to_enable_decryption_of_copy_protected_media_Q { + get { + return ResourceManager.GetString("Do_you_want_to_enable_decryption_of_copy_protected_media_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about command usage?. + /// + public static string Do_you_want_to_gather_statistics_about_command_usage_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_command_usage_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about found devices?. + /// + public static string Do_you_want_to_gather_statistics_about_found_devices_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_devices_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about found file filters?. + /// + public static string Do_you_want_to_gather_statistics_about_found_file_filters_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_file_filters_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about found filesystems?. + /// + public static string Do_you_want_to_gather_statistics_about_found_filesystems_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_filesystems_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about found media image formats?. + /// + public static string Do_you_want_to_gather_statistics_about_found_media_image_formats_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_media_image_formats_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about found partitioning schemes?. + /// + public static string Do_you_want_to_gather_statistics_about_found_partitioning_schemes_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_partitioning_schemes_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about media image verifications?. + /// + public static string Do_you_want_to_gather_statistics_about_media_image_verifications_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_media_image_verifications_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about media types?. + /// + public static string Do_you_want_to_gather_statistics_about_media_types_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_media_types_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to gather statistics about scanned media?. + /// + public static string Do_you_want_to_gather_statistics_about_scanned_media_Q { + get { + return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_scanned_media_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to save stats about your Aaru usage?. + /// + public static string Do_you_want_to_save_stats_about_your_Aaru_usage_Q { + get { + return ResourceManager.GetString("Do_you_want_to_save_stats_about_your_Aaru_usage_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to share your device reports with us?. + /// + public static string Do_you_want_to_share_your_device_reports_with_us_Q { + get { + return ResourceManager.GetString("Do_you_want_to_share_your_device_reports_with_us_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to share your stats (anonymously)?. + /// + public static string Do_you_want_to_share_your_stats__anonymously_Q { + get { + return ResourceManager.GetString("Do_you_want_to_share_your_stats__anonymously_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have want to try HL-DT-ST (aka LG) vendor commands?. + /// + public static string Do_you_want_to_try_HLDTST_commands { + get { + return ResourceManager.GetString("Do_you_want_to_try_HLDTST_commands", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have want to try MediaTek vendor command F1h subcommand 06h?. + /// + public static string Do_you_want_to_try_MediaTek_commands { + get { + return ResourceManager.GetString("Do_you_want_to_try_MediaTek_commands", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have want to try NEC vendor commands?. + /// + public static string Do_you_want_to_try_NEC_commands { + get { + return ResourceManager.GetString("Do_you_want_to_try_NEC_commands", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have want to try Pioneer vendor commands?. + /// + public static string Do_you_want_to_try_Pioneer_commands { + get { + return ResourceManager.GetString("Do_you_want_to_try_Pioneer_commands", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you have want to try Plextor vendor commands?. + /// + public static string Do_you_want_to_try_Plextor_commands { + get { + return ResourceManager.GetString("Do_you_want_to_try_Plextor_commands", 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 firmware info: {0}. + /// + public static string Drive_firmware_info_0 { + get { + return ResourceManager.GetString("Drive_firmware_info_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive manufacturer: {0}. + /// + public static string Drive_manufacturer_0 { + get { + return ResourceManager.GetString("Drive_manufacturer_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive model: {0}. + /// + public static string Drive_model_0 { + get { + return ResourceManager.GetString("Drive_model_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dimensions in pixels of the square that will contain the graph of dumped media.. + /// + public static string Dump_graph_dimensions_argument_help { + get { + return ResourceManager.GetString("Dump_graph_dimensions_argument_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duration cannot be negative or infinite. + /// + public static string Duration_cannot_be_negative_or_infinite { + get { + return ResourceManager.GetString("Duration_cannot_be_negative_or_infinite", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DVD read speed limited to. + /// + public static string DVD_read_speed_limited_to { + get { + return ResourceManager.GetString("DVD_read_speed_limited_to", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Eject media after dump finishes.. + /// + public static string Eject_media_after_dump_finishes { + get { + return ResourceManager.GetString("Eject_media_after_dump_finishes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ejecting media.... + /// + public static string Ejecting_media { + get { + return ResourceManager.GetString("Ejecting_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable debug console. + /// + public static string Enable_debug_console { + get { + return ResourceManager.GetString("Enable_debug_console", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enables creating Aaru Metadata sidecar.. + /// + public static string Enables_creating_Aaru_Metadata_sidecar { + get { + return ResourceManager.GetString("Enables_creating_Aaru_Metadata_sidecar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enables trimming errored from skipped sectors.. + /// + public static string Enables_trimming_errored_from_skipped_sectors { + get { + return ResourceManager.GetString("Enables_trimming_errored_from_skipped_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Using encoding for {0}.. + /// + public static string encoding_for_0 { + get { + return ResourceManager.GetString("encoding_for_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encoding to use on metadata sidecar creation. + /// + public static string Encoding_to_use_on_metadata_sidecar_creation { + get { + return ResourceManager.GetString("Encoding_to_use_on_metadata_sidecar_creation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encodings. + /// + public static string Encodings { + get { + return ResourceManager.GetString("Encodings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Entropy for disk is {0:F4}.. + /// + public static string Entropy_for_disk_is_0 { + get { + return ResourceManager.GetString("Entropy_for_disk_is_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Entropy for track {0} is {1:F4}.. + /// + public static string Entropy_for_track_0_is_1 { + get { + return ResourceManager.GetString("Entropy_for_track_0_is_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enumerating partitions.... + /// + public static string Enumerating_partitions { + get { + return ResourceManager.GetString("Enumerating_partitions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} closing output image... Contents are not correct.. + /// + public static string Error_0_closing_output_image_Contents_are_not_correct { + get { + return ResourceManager.GetString("Error_0_closing_output_image_Contents_are_not_correct", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} creating output image.. + /// + public static string Error_0_creating_output_image { + get { + return ResourceManager.GetString("Error_0_creating_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} opening device. + /// + public static string Error_0_opening_device { + get { + return ResourceManager.GetString("Error_0_opening_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} opening image format.. + /// + public static string Error_0_opening_image_format { + get { + return ResourceManager.GetString("Error_0_opening_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading ATA IDENTIFY DEVICE response from disc image. + /// + public static string Error_0_reading_ATA_IDENTIFY_DEVICE_response_from_disc_image { + get { + return ResourceManager.GetString("Error_0_reading_ATA_IDENTIFY_DEVICE_response_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading ATA IDENTIFY PACKET DEVICE response from disc image. + /// + public static string Error_0_reading_ATA_IDENTIFY_PACKET_DEVICE_response_from_disc_image { + get { + return ResourceManager.GetString("Error_0_reading_ATA_IDENTIFY_PACKET_DEVICE_response_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading CD ATIP from disc image. + /// + public static string Error_0_reading_CD_ATIP_from_disc_image { + get { + return ResourceManager.GetString("Error_0_reading_CD_ATIP_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading CD full TOC from disc image. + /// + public static string Error_0_reading_CD_full_TOC_from_disc_image { + get { + return ResourceManager.GetString("Error_0_reading_CD_full_TOC_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading CD PMA from disc image. + /// + public static string Error_0_reading_CD_PMA_from_disc_image { + get { + return ResourceManager.GetString("Error_0_reading_CD_PMA_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading CD session information from disc image. + /// + public static string Error_0_reading_CD_session_information_from_disc_image { + get { + return ResourceManager.GetString("Error_0_reading_CD_session_information_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading data from {1}.. + /// + public static string Error_0_reading_data_from_1 { + get { + return ResourceManager.GetString("Error_0_reading_data_from_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading directory {1}. + /// + public static string Error_0_reading_directory_1 { + get { + return ResourceManager.GetString("Error_0_reading_directory_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading file {1}. + /// + public static string Error_0_reading_file_1 { + get { + return ResourceManager.GetString("Error_0_reading_file_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading file. + ///Do you want to continue?. + /// + public static string Error_0_reading_file_continue_Q { + get { + return ResourceManager.GetString("Error_0_reading_file_continue_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading media tag, continuing.... + /// + public static string Error_0_reading_media_tag { + get { + return ResourceManager.GetString("Error_0_reading_media_tag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading media tag, not continuing.... + /// + public static string Error_0_reading_media_tag_not_continuing { + get { + return ResourceManager.GetString("Error_0_reading_media_tag_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading root directory.. + /// + public static string Error_0_reading_root_directory { + get { + return ResourceManager.GetString("Error_0_reading_root_directory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading SCSI INQUIRY response from disc image. + /// + public static string Error_0_reading_SCSI_INQUIRY_response_from_disc_image { + get { + return ResourceManager.GetString("Error_0_reading_SCSI_INQUIRY_response_from_disc_image", 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} reading sector {1}, continuing.... + /// + public static string Error_0_reading_sector_1_continuing { + get { + return ResourceManager.GetString("Error_0_reading_sector_1_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading sector {1} from image 1.. + /// + public static string Error_0_reading_sector_1_from_first_image { + get { + return ResourceManager.GetString("Error_0_reading_sector_1_from_first_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading sector {1} from image 2.. + /// + public static string Error_0_reading_sector_1_from_second_image { + get { + return ResourceManager.GetString("Error_0_reading_sector_1_from_second_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading sector {1}, not continuing.... + /// + public static string Error_0_reading_sector_1_not_continuing { + get { + return ResourceManager.GetString("Error_0_reading_sector_1_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading tag for sector {1}, continuing.... + /// + public static string Error_0_reading_tag_for_sector_1_continuing { + get { + return ResourceManager.GetString("Error_0_reading_tag_for_sector_1_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} reading tag for sector {1}, not continuing.... + /// + public static string Error_0_reading_tag_for_sector_1_not_continuing { + get { + return ResourceManager.GetString("Error_0_reading_tag_for_sector_1_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} sending tracks list to output image.. + /// + public static string Error_0_sending_tracks_list_to_output_image { + get { + return ResourceManager.GetString("Error_0_sending_tracks_list_to_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} setting geometry, image may be incorrect, continuing.... + /// + public static string Error_0_setting_geometry_image_may_be_incorrect_continuing { + get { + return ResourceManager.GetString("Error_0_setting_geometry_image_may_be_incorrect_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} setting metadata, not continuing.... + /// + public static string Error_0_setting_metadata_not_continuing { + get { + return ResourceManager.GetString("Error_0_setting_metadata_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} trying to get information about filesystem entry named {1}. + /// + public static string Error_0_trying_to_get_information_about_filesystem_entry_named_1 { + get { + return ResourceManager.GetString("Error_0_trying_to_get_information_about_filesystem_entry_named_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} trying to read "{1}" of chosen filesystem. + /// + public static string Error_0_trying_to_read_1_of_chosen_filesystem { + get { + return ResourceManager.GetString("Error_0_trying_to_read_1_of_chosen_filesystem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} while reading {1} bytes from {2}, not continuing.... + /// + public static string Error_0_while_reading_1_bytes_from_2 { + get { + return ResourceManager.GetString("Error_0_while_reading_1_bytes_from_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} while reading {1} sectors from sector {2}, not continuing.... + /// + public static string Error_0_while_reading_1_sectors_from_sector_2 { + get { + return ResourceManager.GetString("Error_0_while_reading_1_sectors_from_sector_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} while reading block {1}, not continuing.... + /// + public static string Error_0_while_reading_block_1 { + get { + return ResourceManager.GetString("Error_0_while_reading_block_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing Aaru Metadata to output image.. + /// + public static string Error_0_writing_Aaru_Metadata_to_output_image { + get { + return ResourceManager.GetString("Error_0_writing_Aaru_Metadata_to_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing dump hardware list to output image.. + /// + public static string Error_0_writing_dump_hardware_list_to_output_image { + get { + return ResourceManager.GetString("Error_0_writing_dump_hardware_list_to_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing media tag, continuing.... + /// + public static string Error_0_writing_media_tag { + get { + return ResourceManager.GetString("Error_0_writing_media_tag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing media tag, not continuing.... + /// + public static string Error_0_writing_media_tag_not_continuing { + get { + return ResourceManager.GetString("Error_0_writing_media_tag_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing sector {1}, continuing.... + /// + public static string Error_0_writing_sector_1_continuing { + get { + return ResourceManager.GetString("Error_0_writing_sector_1_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing sector {1}, not continuing.... + /// + public static string Error_0_writing_sector_1_not_continuing { + get { + return ResourceManager.GetString("Error_0_writing_sector_1_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing tag, continuing.... + /// + public static string Error_0_writing_tag_continuing { + get { + return ResourceManager.GetString("Error_0_writing_tag_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing tag for sector {1}, continuing.... + /// + public static string Error_0_writing_tag_for_sector_1_continuing { + get { + return ResourceManager.GetString("Error_0_writing_tag_for_sector_1_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing tag for sector {1}, not continuing.... + /// + public static string Error_0_writing_tag_for_sector_1_not_continuing { + get { + return ResourceManager.GetString("Error_0_writing_tag_for_sector_1_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error {0} writing tag, not continuing.... + /// + public static string Error_0_writing_tag_not_continuing { + get { + return ResourceManager.GetString("Error_0_writing_tag_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error decoding page, please open an issue.. + /// + public static string Error_decoding_page_please_open_an_issue { + get { + return ResourceManager.GetString("Error_decoding_page_please_open_an_issue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error reading CD-TEXT from disc image. + /// + public static string Error_reading_CD_TEXT_from_disc_image { + get { + return ResourceManager.GetString("Error_reading_CD_TEXT_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error reading CD TOC from disc image. + /// + public static string Error_reading_CD_TOC_from_disc_image { + get { + return ResourceManager.GetString("Error_reading_CD_TOC_from_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error reading file. + /// + public static string Error_reading_file { + get { + return ResourceManager.GetString("Error_reading_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error reading file: {0}. + /// + public static string Error_reading_file_0 { + get { + return ResourceManager.GetString("Error_reading_file_0", 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 { + get { + return ResourceManager.GetString("Error_setting_output_image_in_tape_mode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error trying to find selected plugin. + /// + public static string Error_trying_to_find_selected_plugin { + get { + return ResourceManager.GetString("Error_trying_to_find_selected_plugin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exception {0} trying to save logfile, details has been sent to console.. + /// + public static string Exception_0_trying_to_save_logfile_details_has_been_sent_to_console { + get { + return ResourceManager.GetString("Exception_0_trying_to_save_logfile_details_has_been_sent_to_console", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exception reading file.. + /// + public static string Exception_reading_file { + get { + return ResourceManager.GetString("Exception_reading_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exception trying to remove old database version, cannot continue.... + /// + public static string Exception_trying_to_remove_old_database_version { + get { + return ResourceManager.GetString("Exception_trying_to_remove_old_database_version", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Existing file. + /// + public static string Existing_file { + get { + return ResourceManager.GetString("Existing_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extract extended attributes if present.. + /// + public static string Extract_extended_attributes_if_present { + get { + return ResourceManager.GetString("Extract_extended_attributes_if_present", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File {0} starts at block {1} and ends at block {2}. + /// + public static string File_0_starts_at_block_1_and_ends_at_block_2 { + get { + return ResourceManager.GetString("File_0_starts_at_block_1_and_ends_at_block_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A file named {0} already exists on the destination folder. + ///Do you want to overwrite it?. + /// + public static string File_named_0_exists_overwrite_Q { + get { + return ResourceManager.GetString("File_named_0_exists_overwrite_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The file name {0} is not supported on this platform. + ///Do you want to rename it to {1}?. + /// + public static string Filename_0_not_supported_want_to_rename_to_1 { + get { + return ResourceManager.GetString("Filename_0_not_supported_want_to_rename_to_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commands to manage filesystems. + /// + public static string Filesystem_Command_Family_Description { + get { + return ResourceManager.GetString("Filesystem_Command_Family_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extracts all files in disc image.. + /// + public static string Filesystem_Extract_Command_Description { + get { + return ResourceManager.GetString("Filesystem_Extract_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opens a disc image and prints info on the found partitions and/or filesystems.. + /// + public static string Filesystem_Info_Command_Description { + get { + return ResourceManager.GetString("Filesystem_Info_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists files in disc image.. + /// + public static string Filesystem_List_Command_Description { + get { + return ResourceManager.GetString("Filesystem_List_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filesystem not identified. + /// + public static string Filesystem_not_identified { + get { + return ResourceManager.GetString("Filesystem_not_identified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists all options supported by read-only filesystems.. + /// + public static string Filesystem_Options_Command_Description { + get { + return ResourceManager.GetString("Filesystem_Options_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filesystem statistics. + /// + public static string Filesystem_statistics { + get { + return ResourceManager.GetString("Filesystem_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter: {0}. + /// + public static string Filter_0 { + get { + return ResourceManager.GetString("Filter_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filters statistics. + /// + public static string Filters_statistics { + get { + return ResourceManager.GetString("Filters_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Firmware revision of the drive used to read the media represented by the image.. + /// + public static string Firmware_revision_of_drive_read_the_media_by_image { + get { + return ResourceManager.GetString("Firmware_revision_of_drive_read_the_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image 1 has more sectors. + /// + public static string First_image_has_more_sectors { + get { + return ResourceManager.GetString("First_image_has_more_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input file 1 format identified by {0}.. + /// + public static string First_input_file_format_identified_by_0 { + get { + return ResourceManager.GetString("First_input_file_format_identified_by_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input file 1 format identified by {0} ({1}).. + /// + public static string First_input_file_format_identified_by_0_1 { + get { + return ResourceManager.GetString("First_input_file_format_identified_by_0_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input file 1 format not identified, not proceeding with comparison.. + /// + public static string First_input_file_format_not_identified { + get { + return ResourceManager.GetString("First_input_file_format_not_identified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First media image path. + /// + public static string First_media_image_path { + get { + return ResourceManager.GetString("First_media_image_path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fix audio tracks offset. Only applicable to CD/GD.. + /// + public static string Fix_audio_tracks_offset { + get { + return ResourceManager.GetString("Fix_audio_tracks_offset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If subchannel looks OK but CRC fails, rewrite it. Implies fixing subchannel.. + /// + public static string Fix_subchannel_crc_help { + get { + return ResourceManager.GetString("Fix_subchannel_crc_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try to fix subchannel. Implies fixing subchannel position.. + /// + public static string Fix_subchannel_help { + get { + return ResourceManager.GetString("Fix_subchannel_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Store subchannel according to the sector they describe.. + /// + public static string Fix_subchannel_position_help { + get { + return ResourceManager.GetString("Fix_subchannel_position_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Force geometry, only supported in not tape block media. Specify as C/H/S.. + /// + public static string Force_geometry_help { + get { + return ResourceManager.GetString("Force_geometry_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format: {0}. + /// + public static string Format_0 { + get { + return ResourceManager.GetString("Format_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format: {0} version {1}. + /// + public static string Format_0_version_1 { + get { + return ResourceManager.GetString("Format_0_version_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format of the output image, as plugin name or plugin id. If not present, will try to detect it from output image extension.. + /// + public static string Format_of_the_output_image_as_plugin_name_or_plugin_id { + get { + return ResourceManager.GetString("Format_of_the_output_image_as_plugin_name_or_plugin_id", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Found supported device model {0} by manufacturer {1} on bus {2} and path {3}. + /// + public static string Found_supported_device_model_0_by_manufacturer_1_on_bus_2_and_path_3 { + get { + return ResourceManager.GetString("Found_supported_device_model_0_by_manufacturer_1_on_bus_2_and_path_3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about command usage?. + /// + public static string Gather_statistics_about_command_usage_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_command_usage_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about found devices?. + /// + public static string Gather_statistics_about_found_devices_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_found_devices_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about found file filters?. + /// + public static string Gather_statistics_about_found_file_filters_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_found_file_filters_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about found filesystems?. + /// + public static string Gather_statistics_about_found_filesystems_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_found_filesystems_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about found media image formats?. + /// + public static string Gather_statistics_about_found_media_image_formats_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_found_media_image_formats_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about found partitioning schemes?. + /// + public static string Gather_statistics_about_found_partitioning_schemes_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_found_partitioning_schemes_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about media image verifications?. + /// + public static string Gather_statistics_about_media_image_verifications_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_media_image_verifications_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about media types?. + /// + public static string Gather_statistics_about_media_types_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_media_types_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gather statistics about scanned media?. + /// + public static string Gather_statistics_about_scanned_media_Q { + get { + return ResourceManager.GetString("Gather_statistics_about_scanned_media_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to In compliance with the European Union General Data Protection Regulation 2016/679 (GDPR), + ///we must give you the following information about Aaru and ask if you want to opt-in + ///in some information sharing.. + /// + public static string GDPR_Compliance { + get { + return ResourceManager.GetString("GDPR_Compliance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For any information sharing your IP address may be stored in our server, in a way that is not + ///possible for any person, manual, or automated process, to link with your identity, unless + ///specified otherwise.. + /// + public static string GDPR_Information_sharing { + get { + return ResourceManager.GetString("GDPR_Information_sharing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disclaimer: Because Aaru is an open source software this information, and therefore, + ///compliance with GDPR only holds true if you obtained a certificated copy from its original + ///authors. In case of doubt, close Aaru now and ask in our IRC support channel.. + /// + public static string GDPR_Open_Source_Disclaimer { + get { + return ResourceManager.GetString("GDPR_Open_Source_Disclaimer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Generates missing subchannels (they don't count as dumped in resume file).. + /// + public static string Generate_subchannels_dump_help { + get { + return ResourceManager.GetString("Generate_subchannels_dump_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Generates missing subchannels.. + /// + public static string Generates_subchannels_help { + get { + return ResourceManager.GetString("Generates_subchannels_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decryption keys not found. Trying to generate keys.. + /// + public static string Generating_decryption_keys { + get { + return ResourceManager.GetString("Generating_decryption_keys", 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 partitions?. + /// + public static string Has_partitions_Question { + get { + return ResourceManager.GetString("Has_partitions_Question", 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 Has sessions?. + /// + public static string Has_sessions_Question { + get { + return ResourceManager.GetString("Has_sessions_Question", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Has {0}?. + /// + public static string Has_tag_0_Question { + get { + return ResourceManager.GetString("Has_tag_0_Question", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing blocks {0} to {2} of file {1}. + /// + public static string Hashing_blocks_0_to_2_of_file_1 { + get { + return ResourceManager.GetString("Hashing_blocks_0_to_2_of_file_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing bytes {0} to {1}. + /// + public static string Hashing_bytes_0_to_1 { + get { + return ResourceManager.GetString("Hashing_bytes_0_to_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing file {0} of {1}. + /// + public static string Hashing_file_0_of_1 { + get { + return ResourceManager.GetString("Hashing_file_0_of_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing file-less block {0}. + /// + public static string Hashing_file_less_block_0 { + get { + return ResourceManager.GetString("Hashing_file_less_block_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing image.... + /// + public static string Hashing_image { + get { + return ResourceManager.GetString("Hashing_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing sector. + /// + public static string Hashing_sector { + get { + return ResourceManager.GetString("Hashing_sector", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing sectors {0} to {1}. + /// + public static string Hashing_sectors_0_to_1 { + get { + return ResourceManager.GetString("Hashing_sectors_0_to_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing sectors {0} to {2} of track {1}. + /// + public static string Hashing_sectors_0_to_2_of_track_1 { + get { + return ResourceManager.GetString("Hashing_sectors_0_to_2_of_track_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hashing track {0} of {1}. + /// + public static string Hashing_track_0_of_1 { + get { + return ResourceManager.GetString("Hashing_track_0_of_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Head Assembly Serial Number. + /// + public static string Head_Assembly_Serial_Number { + get { + return ResourceManager.GetString("Head_Assembly_Serial_Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hidden track starts at LBA {0}, ends at LBA {1}. + /// + public static string Hidden_track_starts_at_LBA_0_ends_at_LBA_1 { + get { + return ResourceManager.GetString("Hidden_track_starts_at_LBA_0_ends_at_LBA_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How many bytes to print per line.. + /// + public static string How_many_bytes_to_print_per_line { + get { + return ResourceManager.GetString("How_many_bytes_to_print_per_line", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How many CD-R(W) run-out sectors to ignore and regenerate (0 for none).. + /// + public static string How_many_CDRW_run_out_sectors_to_ignore_and_regenerate { + get { + return ResourceManager.GetString("How_many_CDRW_run_out_sectors_to_ignore_and_regenerate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How many retry passes to do.. + /// + public static string How_many_retry_passes_to_do { + get { + return ResourceManager.GetString("How_many_retry_passes_to_do", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How many sectors to convert at once.. + /// + public static string How_many_sectors_to_convert_at_once { + get { + return ResourceManager.GetString("How_many_sectors_to_convert_at_once", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How many sectors to decode, or "all".. + /// + public static string How_many_sectors_to_decode_or_all { + get { + return ResourceManager.GetString("How_many_sectors_to_decode_or_all", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to How many sectors to print.. + /// + public static string How_many_sectors_to_print { + get { + return ResourceManager.GetString("How_many_sectors_to_print", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HP Drive ACI Revision Levels page. + /// + public static string HP_Drive_ACI_Revision_Levels_page { + get { + return ResourceManager.GetString("HP_Drive_ACI_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HP Drive Firmware Revision Levels page. + /// + public static string HP_Drive_Firmware_Revision_Levels_page { + get { + return ResourceManager.GetString("HP_Drive_Firmware_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HP Drive Hardware Revision Levels page. + /// + public static string HP_Drive_Hardware_Revision_Levels_page { + get { + return ResourceManager.GetString("HP_Drive_Hardware_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HP Drive Head Assembly Revision Levels page. + /// + public static string HP_Drive_Head_Assembly_Revision_Levels_page { + get { + return ResourceManager.GetString("HP_Drive_Head_Assembly_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HP Drive Mechanism Revision Levels page. + /// + public static string HP_Drive_Mechanism_Revision_Levels_page { + get { + return ResourceManager.GetString("HP_Drive_Mechanism_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HP Drive PCA Revision Levels page. + /// + public static string HP_Drive_PCA_Revision_Levels_page { + get { + return ResourceManager.GetString("HP_Drive_PCA_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to IBM Drive Component Revision Levels page. + /// + public static string IBM_Drive_Component_Revision_Levels_page { + get { + return ResourceManager.GetString("IBM_Drive_Component_Revision_Levels_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to IBM Drive Serial Numbers page. + /// + public static string IBM_Drive_Serial_Numbers_page { + get { + return ResourceManager.GetString("IBM_Drive_Serial_Numbers_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identified by {0}.. + /// + public static string Identified_by_0 { + get { + return ResourceManager.GetString("Identified_by_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identified by {0} plugins. + /// + public static string Identified_by_0_plugins { + get { + return ResourceManager.GetString("Identified_by_0_plugins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying file filter.... + /// + public static string Identifying_file_filter { + get { + return ResourceManager.GetString("Identifying_file_filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying filesystems.... + /// + public static string Identifying_filesystems { + get { + return ResourceManager.GetString("Identifying_filesystems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying filesystems on partition.... + /// + public static string Identifying_filesystems_on_partition { + get { + return ResourceManager.GetString("Identifying_filesystems_on_partition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying file 1 filter.... + /// + public static string Identifying_first_file_filter { + get { + return ResourceManager.GetString("Identifying_first_file_filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying image 1 format.... + /// + public static string Identifying_first_image_format { + get { + return ResourceManager.GetString("Identifying_first_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying image format.... + /// + public static string Identifying_image_format { + get { + return ResourceManager.GetString("Identifying_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying file 2 filter.... + /// + public static string Identifying_second_file_filter { + get { + return ResourceManager.GetString("Identifying_second_file_filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifying image 2 format.... + /// + public static string Identifying_second_image_format { + get { + return ResourceManager.GetString("Identifying_second_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you don't care, use force option.. + /// + public static string If_you_dont_care_use_force_option { + get { + return ResourceManager.GetString("If_you_dont_care_use_force_option", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you don't care, use force option. This will skip all sector tags converting only user data.. + /// public static string If_you_dont_care_use_force_option_This_will_skip_all_sector_tags_converting_only_user_data { get { return ResourceManager.GetString("If_you_dont_care_use_force_option_This_will_skip_all_sector_tags_converting_only_" + @@ -2062,3831 +3926,4937 @@ namespace Aaru.Localization { } } - public static string Input_format_contains_a_tape_image_and_is_not_supported_by_output_format { + /// + /// Looks up a localized string similar to Checksums an image.. + /// + public static string Image_Checksum_Command_Description { get { - return ResourceManager.GetString("Input_format_contains_a_tape_image_and_is_not_supported_by_output_format", resourceCulture); + return ResourceManager.GetString("Image_Checksum_Command_Description", resourceCulture); } } - public static string Error_setting_output_image_in_tape_mode { + /// + /// Looks up a localized string similar to Commands to manage images. + /// + public static string Image_Command_Family_Description { get { - return ResourceManager.GetString("Error_setting_output_image_in_tape_mode", resourceCulture); + return ResourceManager.GetString("Image_Command_Family_Description", resourceCulture); } } - public static string Error_0_creating_output_image { + /// + /// Looks up a localized string similar to Image comments.. + /// + public static string Image_comments { get { - return ResourceManager.GetString("Error_0_creating_output_image", resourceCulture); + return ResourceManager.GetString("Image_comments", resourceCulture); } } - public static string Error_0_setting_metadata_not_continuing { + /// + /// Looks up a localized string similar to Compares two disc images.. + /// + public static string Image_Compare_Command_Description { get { - return ResourceManager.GetString("Error_0_setting_metadata_not_continuing", resourceCulture); + return ResourceManager.GetString("Image_Compare_Command_Description", resourceCulture); } } - public static string Converting_media_tag_0 { + /// + /// Looks up a localized string similar to Converts one image to another format.. + /// + public static string Image_Convert_Command_Description { get { - return ResourceManager.GetString("Converting_media_tag_0", resourceCulture); - } - } - - public static string Error_0_reading_media_tag { - get { - return ResourceManager.GetString("Error_0_reading_media_tag", resourceCulture); - } - } - - public static string Error_0_writing_media_tag_not_continuing { - get { - return ResourceManager.GetString("Error_0_writing_media_tag_not_continuing", resourceCulture); - } - } - - public static string Error_0_reading_media_tag_not_continuing { - get { - return ResourceManager.GetString("Error_0_reading_media_tag_not_continuing", resourceCulture); - } - } - - public static string Error_0_writing_media_tag { - get { - return ResourceManager.GetString("Error_0_writing_media_tag", resourceCulture); - } - } - - public static string _0_sectors_to_convert { - get { - return ResourceManager.GetString("_0_sectors_to_convert", resourceCulture); - } - } - - public static string Error_0_sending_tracks_list_to_output_image { - get { - return ResourceManager.GetString("Error_0_sending_tracks_list_to_output_image", resourceCulture); - } - } - - public static string Converting_disc { - get { - return ResourceManager.GetString("Converting_disc", resourceCulture); - } - } - - public static string Converting_sectors_in_track_0_of_1 { - get { - return ResourceManager.GetString("Converting_sectors_in_track_0_of_1", resourceCulture); - } - } - - public static string Converting_track { - get { - return ResourceManager.GetString("Converting_track", resourceCulture); - } - } - - public static string Converting_sectors_0_to_1_in_track_2 { - get { - return ResourceManager.GetString("Converting_sectors_0_to_1_in_track_2", resourceCulture); - } - } - - public static string Error_0_reading_sector_1_continuing { - get { - return ResourceManager.GetString("Error_0_reading_sector_1_continuing", resourceCulture); - } - } - - public static string Error_0_reading_sector_1_not_continuing { - get { - return ResourceManager.GetString("Error_0_reading_sector_1_not_continuing", resourceCulture); - } - } - - public static string Input_image_is_not_returning_raw_sectors_use_force_if_you_want_to_continue { - get { - return ResourceManager.GetString("Input_image_is_not_returning_raw_sectors_use_force_if_you_want_to_continue", resourceCulture); - } - } - - public static string Error_0_writing_sector_1_continuing { - get { - return ResourceManager.GetString("Error_0_writing_sector_1_continuing", resourceCulture); - } - } - - public static string Error_0_writing_sector_1_not_continuing { - get { - return ResourceManager.GetString("Error_0_writing_sector_1_not_continuing", resourceCulture); - } - } - - public static string Converting_tags_in_track_0_of_1 { - get { - return ResourceManager.GetString("Converting_tags_in_track_0_of_1", resourceCulture); - } - } - - public static string Error_0_writing_tag_continuing { - get { - return ResourceManager.GetString("Error_0_writing_tag_continuing", resourceCulture); - } - } - - public static string Error_0_writing_tag_not_continuing { - get { - return ResourceManager.GetString("Error_0_writing_tag_not_continuing", resourceCulture); - } - } - - public static string Converting_tag_3_for_sectors_0_to_1_in_track_2 { - get { - return ResourceManager.GetString("Converting_tag_3_for_sectors_0_to_1_in_track_2", resourceCulture); - } - } - - public static string Error_0_reading_tag_for_sector_1_continuing { - get { - return ResourceManager.GetString("Error_0_reading_tag_for_sector_1_continuing", resourceCulture); - } - } - - public static string Error_0_reading_tag_for_sector_1_not_continuing { - get { - return ResourceManager.GetString("Error_0_reading_tag_for_sector_1_not_continuing", resourceCulture); - } - } - - public static string Error_0_writing_tag_for_sector_1_continuing { - get { - return ResourceManager.GetString("Error_0_writing_tag_for_sector_1_continuing", resourceCulture); - } - } - - public static string Error_0_writing_tag_for_sector_1_not_continuing { - get { - return ResourceManager.GetString("Error_0_writing_tag_for_sector_1_not_continuing", resourceCulture); - } - } - - public static string Setting_geometry_to_0_cylinders_1_heads_and_2_sectors_per_track { - get { - return ResourceManager.GetString("Setting_geometry_to_0_cylinders_1_heads_and_2_sectors_per_track", resourceCulture); - } - } - - public static string Error_0_setting_geometry_image_may_be_incorrect_continuing { - get { - return ResourceManager.GetString("Error_0_setting_geometry_image_may_be_incorrect_continuing", resourceCulture); - } - } - - public static string Converting_media { - get { - return ResourceManager.GetString("Converting_media", resourceCulture); - } - } - - public static string Converting_sectors_0_to_1 { - get { - return ResourceManager.GetString("Converting_sectors_0_to_1", resourceCulture); - } - } - - public static string Converting_tags { - get { - return ResourceManager.GetString("Converting_tags", resourceCulture); - } - } - - public static string Converting_tag_2_for_sectors_0_to_1 { - get { - return ResourceManager.GetString("Converting_tag_2_for_sectors_0_to_1", resourceCulture); - } - } - - public static string Converting_files { - get { - return ResourceManager.GetString("Converting_files", resourceCulture); - } - } - - public static string Converting_file_0_of_partition_1 { - get { - return ResourceManager.GetString("Converting_file_0_of_partition_1", resourceCulture); - } - } - - public static string Converting_tape_partition_0 { - get { - return ResourceManager.GetString("Converting_tape_partition_0", resourceCulture); - } - } - - public static string Writing_dump_hardware_list { - get { - return ResourceManager.GetString("Writing_dump_hardware_list", resourceCulture); - } - } - - public static string Written_dump_hardware_list_to_output_image { - get { - return ResourceManager.GetString("Written_dump_hardware_list_to_output_image", resourceCulture); - } - } - - public static string Writing_metadata { - get { - return ResourceManager.GetString("Writing_metadata", resourceCulture); - } - } - - public static string Written_Aaru_Metadata_to_output_image { - get { - return ResourceManager.GetString("Written_Aaru_Metadata_to_output_image", resourceCulture); - } - } - - public static string Closing_output_image { - get { - return ResourceManager.GetString("Closing_output_image", resourceCulture); - } - } - - public static string Error_0_closing_output_image_Contents_are_not_correct { - get { - return ResourceManager.GetString("Error_0_closing_output_image_Contents_are_not_correct", resourceCulture); - } - } - - public static string Conversion_done { - get { - return ResourceManager.GetString("Conversion_done", resourceCulture); - } - } - - public static string Tape_block_size_argument_help { - get { - return ResourceManager.GetString("Tape_block_size_argument_help", resourceCulture); - } - } - - public static string Tape_argument_input_help { - get { - return ResourceManager.GetString("Tape_argument_input_help", resourceCulture); - } - } - - public static string You_cannot_use_tape_option_when_input_is_a_file { - get { - return ResourceManager.GetString("You_cannot_use_tape_option_when_input_is_a_file", resourceCulture); - } - } - - public static string Image_format_not_identified_not_proceeding_with_sidecar_creation { - get { - return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_sidecar_creation", resourceCulture); - } - } - - public static string The_specified_input_file_cannot_be_found { - get { - return ResourceManager.GetString("The_specified_input_file_cannot_be_found", resourceCulture); - } - } - - public static string Decode_disk_tags { - get { - return ResourceManager.GetString("Decode_disk_tags", resourceCulture); - } - } - - public static string Parameter_response_all_sectors { - get { - return ResourceManager.GetString("Parameter_response_all_sectors", resourceCulture); - } - } - - public static string How_many_sectors_to_decode_or_all { - get { - return ResourceManager.GetString("How_many_sectors_to_decode_or_all", resourceCulture); - } - } - - public static string Decode_sector_tags { - get { - return ResourceManager.GetString("Decode_sector_tags", resourceCulture); - } - } - - public static string Sector_to_start_decoding_from { - get { - return ResourceManager.GetString("Sector_to_start_decoding_from", resourceCulture); - } - } - - public static string Unable_to_recognize_image_format_not_decoding { - get { - return ResourceManager.GetString("Unable_to_recognize_image_format_not_decoding", resourceCulture); - } - } - - public static string There_are_no_disk_tags_in_chosen_disc_image { - get { - return ResourceManager.GetString("There_are_no_disk_tags_in_chosen_disc_image", resourceCulture); - } - } - - public static string Error_0_reading_SCSI_INQUIRY_response_from_disc_image { - get { - return ResourceManager.GetString("Error_0_reading_SCSI_INQUIRY_response_from_disc_image", resourceCulture); - } - } - - public static string SCSI_INQUIRY_command_response { - get { - return ResourceManager.GetString("SCSI_INQUIRY_command_response", resourceCulture); - } - } - - public static string Error_0_reading_ATA_IDENTIFY_DEVICE_response_from_disc_image { - get { - return ResourceManager.GetString("Error_0_reading_ATA_IDENTIFY_DEVICE_response_from_disc_image", resourceCulture); - } - } - - public static string ATA_IDENTIFY_DEVICE_command_response { - get { - return ResourceManager.GetString("ATA_IDENTIFY_DEVICE_command_response", resourceCulture); - } - } - - public static string Error_0_reading_ATA_IDENTIFY_PACKET_DEVICE_response_from_disc_image { - get { - return ResourceManager.GetString("Error_0_reading_ATA_IDENTIFY_PACKET_DEVICE_response_from_disc_image", resourceCulture); - } - } - - public static string ATA_IDENTIFY_PACKET_DEVICE_command_response { - get { - return ResourceManager.GetString("ATA_IDENTIFY_PACKET_DEVICE_command_response", resourceCulture); - } - } - - public static string Error_0_reading_CD_ATIP_from_disc_image { - get { - return ResourceManager.GetString("Error_0_reading_CD_ATIP_from_disc_image", resourceCulture); - } - } - - public static string CD_ATIP { - get { - return ResourceManager.GetString("CD_ATIP", resourceCulture); - } - } - - public static string Error_0_reading_CD_full_TOC_from_disc_image { - get { - return ResourceManager.GetString("Error_0_reading_CD_full_TOC_from_disc_image", resourceCulture); - } - } - - public static string CD_full_TOC { - get { - return ResourceManager.GetString("CD_full_TOC", resourceCulture); - } - } - - public static string Error_0_reading_CD_PMA_from_disc_image { - get { - return ResourceManager.GetString("Error_0_reading_CD_PMA_from_disc_image", resourceCulture); - } - } - - public static string Error_0_reading_CD_session_information_from_disc_image { - get { - return ResourceManager.GetString("Error_0_reading_CD_session_information_from_disc_image", resourceCulture); - } - } - - public static string CD_session_information { - get { - return ResourceManager.GetString("CD_session_information", resourceCulture); - } - } - - public static string Error_reading_CD_TEXT_from_disc_image { - get { - return ResourceManager.GetString("Error_reading_CD_TEXT_from_disc_image", resourceCulture); - } - } - - public static string CD_TEXT { - get { - return ResourceManager.GetString("CD_TEXT", resourceCulture); - } - } - - public static string Error_reading_CD_TOC_from_disc_image { - get { - return ResourceManager.GetString("Error_reading_CD_TOC_from_disc_image", resourceCulture); - } - } - - public static string CD_TOC { - get { - return ResourceManager.GetString("CD_TOC", resourceCulture); - } - } - - public static string Decoder_for_disk_tag_type_0_not_yet_implemented_sorry { - get { - return ResourceManager.GetString("Decoder_for_disk_tag_type_0_not_yet_implemented_sorry", resourceCulture); - } - } - - public static string Value_0_is_not_a_valid_number_for_length { - get { - return ResourceManager.GetString("Value_0_is_not_a_valid_number_for_length", resourceCulture); - } - } - - public static string Not_decoding_sectors_tags { - get { - return ResourceManager.GetString("Not_decoding_sectors_tags", resourceCulture); - } - } - - public static string There_are_no_sector_tags_in_chosen_disc_image { - get { - return ResourceManager.GetString("There_are_no_sector_tags_in_chosen_disc_image", resourceCulture); - } - } - - public static string Decoder_for_sector_tag_type_0_not_yet_implemented_sorry { - get { - return ResourceManager.GetString("Decoder_for_sector_tag_type_0_not_yet_implemented_sorry", resourceCulture); - } - } - - public static string Calculates_how_many_sectors_are_duplicated { - get { - return ResourceManager.GetString("Calculates_how_many_sectors_are_duplicated", resourceCulture); - } - } - - public static string Calculates_entropy_for_each_track_separately { - get { - return ResourceManager.GetString("Calculates_entropy_for_each_track_separately", resourceCulture); - } - } - - public static string Calculates_entropy_for_the_whole_disc { - get { - return ResourceManager.GetString("Calculates_entropy_for_the_whole_disc", resourceCulture); - } - } - - public static string Calculating_disc_entropy_of_multisession_images_is_not_yet_implemented { - get { - return ResourceManager.GetString("Calculating_disc_entropy_of_multisession_images_is_not_yet_implemented", resourceCulture); - } - } - - public static string Entropy_for_track_0_is_1 { - get { - return ResourceManager.GetString("Entropy_for_track_0_is_1", resourceCulture); - } - } - - public static string Track_0_has_1_unique_sectors_2 { - get { - return ResourceManager.GetString("Track_0_has_1_unique_sectors_2", resourceCulture); - } - } - - public static string Entropy_for_disk_is_0 { - get { - return ResourceManager.GetString("Entropy_for_disk_is_0", resourceCulture); - } - } - - public static string Disk_has_0_unique_sectors_1 { - get { - return ResourceManager.GetString("Disk_has_0_unique_sectors_1", resourceCulture); - } - } - - public static string Image_format_not_identified { - get { - return ResourceManager.GetString("Image_format_not_identified", resourceCulture); - } - } - - public static string Read_Write_media_images_options { - get { - return ResourceManager.GetString("Read_Write_media_images_options", resourceCulture); - } - } - - public static string Default { - get { - return ResourceManager.GetString("Default", resourceCulture); - } - } - - public static string How_many_sectors_to_print { - get { - return ResourceManager.GetString("How_many_sectors_to_print", resourceCulture); - } - } - - public static string Print_sectors_with_tags_included { - get { - return ResourceManager.GetString("Print_sectors_with_tags_included", resourceCulture); - } - } - - public static string Starting_sector { - get { - return ResourceManager.GetString("Starting_sector", resourceCulture); - } - } - - public static string How_many_bytes_to_print_per_line { - get { - return ResourceManager.GetString("How_many_bytes_to_print_per_line", resourceCulture); - } - } - - public static string Unable_to_recognize_image_format_not_printing { - get { - return ResourceManager.GetString("Unable_to_recognize_image_format_not_printing", resourceCulture); - } - } - - public static string Start_0_as_in_sector_start { - get { - return ResourceManager.GetString("Start_0_as_in_sector_start", resourceCulture); - } - } - - public static string Reading_data { - get { - return ResourceManager.GetString("Reading_data", resourceCulture); - } - } - - public static string Error_0_reading_data_from_1 { - get { - return ResourceManager.GetString("Error_0_reading_data_from_1", resourceCulture); - } - } - - public static string Cannot_open_image_file_aborting { - get { - return ResourceManager.GetString("Cannot_open_image_file_aborting", resourceCulture); - } - } - - public static string Sector_0_as_in_sector_number { - get { - return ResourceManager.GetString("Sector_0_as_in_sector_number", resourceCulture); - } - } - - public static string Requested_sectors_tags_unsupported_by_image_format_printing_user_data { - get { - return ResourceManager.GetString("Requested_sectors_tags_unsupported_by_image_format_printing_user_data", resourceCulture); - } - } - - public static string Reading_sector { - get { - return ResourceManager.GetString("Reading_sector", resourceCulture); - } - } - - public static string Error_0_reading_sector_1 { - get { - return ResourceManager.GetString("Error_0_reading_sector_1", resourceCulture); - } - } - - public static string Verify_disc_image_if_supported { - get { - return ResourceManager.GetString("Verify_disc_image_if_supported", resourceCulture); - } - } - - public static string Verify_all_sectors_if_supported { - get { - return ResourceManager.GetString("Verify_all_sectors_if_supported", resourceCulture); - } - } - - public static string Unable_to_recognize_image_format_not_verifying { - get { - return ResourceManager.GetString("Unable_to_recognize_image_format_not_verifying", resourceCulture); - } - } - - public static string The_specified_image_does_not_support_any_kind_of_verification { - get { - return ResourceManager.GetString("The_specified_image_does_not_support_any_kind_of_verification", resourceCulture); - } - } - - public static string Verifying_image_checksums { - get { - return ResourceManager.GetString("Verifying_image_checksums", resourceCulture); - } - } - - public static string Disc_image_checksums_are_correct { - get { - return ResourceManager.GetString("Disc_image_checksums_are_correct", resourceCulture); - } - } - - public static string Disc_image_checksums_are_incorrect { - get { - return ResourceManager.GetString("Disc_image_checksums_are_incorrect", resourceCulture); - } - } - - public static string Disc_image_does_not_contain_checksums { - get { - return ResourceManager.GetString("Disc_image_does_not_contain_checksums", resourceCulture); - } - } - - public static string Checking_disc_image_checksums_took_0_seconds { - get { - return ResourceManager.GetString("Checking_disc_image_checksums_took_0_seconds", resourceCulture); - } - } - - public static string Checking_tracks { - get { - return ResourceManager.GetString("Checking_tracks", resourceCulture); - } - } - - public static string Checking_track_0_of_1 { - get { - return ResourceManager.GetString("Checking_track_0_of_1", resourceCulture); - } - } - - public static string Checking_sector { - get { - return ResourceManager.GetString("Checking_sector", resourceCulture); - } - } - - public static string Checking_sector_0_of_1_on_track_2 { - get { - return ResourceManager.GetString("Checking_sector_0_of_1_on_track_2", resourceCulture); - } - } - - public static string Checking_sectors { - get { - return ResourceManager.GetString("Checking_sectors", resourceCulture); - } - } - - public static string Checking_sector_0_of_1 { - get { - return ResourceManager.GetString("Checking_sector_0_of_1", resourceCulture); - } - } - - public static string There_is_at_least_one_sector_that_does_not_contain_a_checksum { - get { - return ResourceManager.GetString("There_is_at_least_one_sector_that_does_not_contain_a_checksum", resourceCulture); - } - } - - public static string There_is_at_least_one_sector_with_incorrect_checksum_or_errors { - get { - return ResourceManager.GetString("There_is_at_least_one_sector_with_incorrect_checksum_or_errors", resourceCulture); - } - } - - public static string All_sector_checksums_are_correct { - get { - return ResourceManager.GetString("All_sector_checksums_are_correct", resourceCulture); - } - } - - public static string Checking_sector_checksums_took_0_seconds { - get { - return ResourceManager.GetString("Checking_sector_checksums_took_0_seconds", resourceCulture); - } - } - - public static string LBAs_with_error { - get { - return ResourceManager.GetString("LBAs_with_error", resourceCulture); - } - } - - public static string all_sectors { - get { - return ResourceManager.GetString("all_sectors", resourceCulture); - } - } - - public static string LBAs_without_checksum { - get { - return ResourceManager.GetString("LBAs_without_checksum", resourceCulture); - } - } - - public static string Total_sectors { - get { - return ResourceManager.GetString("Total_sectors", resourceCulture); - } - } - - public static string Total_errors { - get { - return ResourceManager.GetString("Total_errors", resourceCulture); - } - } - - public static string Total_unknowns { - get { - return ResourceManager.GetString("Total_unknowns", resourceCulture); - } - } - - public static string Total_errors_plus_unknowns { - get { - return ResourceManager.GetString("Total_errors_plus_unknowns", resourceCulture); - } - } - - public static string Try_to_read_first_track_pregap { - get { - return ResourceManager.GetString("Try_to_read_first_track_pregap", resourceCulture); - } - } - - public static string Fix_audio_tracks_offset { - get { - return ResourceManager.GetString("Fix_audio_tracks_offset", resourceCulture); - } - } - - public static string Continue_dump_whatever_happens { - get { - return ResourceManager.GetString("Continue_dump_whatever_happens", resourceCulture); - } - } - - public static string Enables_creating_Aaru_Metadata_sidecar { - get { - return ResourceManager.GetString("Enables_creating_Aaru_Metadata_sidecar", resourceCulture); - } - } - - public static string Enables_trimming_errored_from_skipped_sectors { - get { - return ResourceManager.GetString("Enables_trimming_errored_from_skipped_sectors", resourceCulture); - } - } - - public static string Try_to_recover_partial_or_incorrect_data { - get { - return ResourceManager.GetString("Try_to_recover_partial_or_incorrect_data", resourceCulture); - } - } - - public static string Create_or_use_resume_mapfile { - get { - return ResourceManager.GetString("Create_or_use_resume_mapfile", resourceCulture); - } - } - - public static string How_many_retry_passes_to_do { - get { - return ResourceManager.GetString("How_many_retry_passes_to_do", resourceCulture); - } - } - - public static string When_an_unreadable_sector_is_found_skip_this_many_sectors { - get { - return ResourceManager.GetString("When_an_unreadable_sector_is_found_skip_this_many_sectors", resourceCulture); - } - } - - public static string Stop_media_dump_on_first_error { - get { - return ResourceManager.GetString("Stop_media_dump_on_first_error", resourceCulture); - } - } - - public static string Subchannel_name_any { - get { - return ResourceManager.GetString("Subchannel_name_any", resourceCulture); - } - } - - public static string Subchannel_to_dump_help { - get { - return ResourceManager.GetString("Subchannel_to_dump_help", resourceCulture); - } - } - - public static string Speed_to_dump { - get { - return ResourceManager.GetString("Speed_to_dump", resourceCulture); - } - } - - public static string Output_image_path_Dump_help { - get { - return ResourceManager.GetString("Output_image_path_Dump_help", resourceCulture); - } - } - - public static string Do_not_store_paths_and_serial_numbers_in_log_or_metadata { - get { - return ResourceManager.GetString("Do_not_store_paths_and_serial_numbers_in_log_or_metadata", resourceCulture); - } - } - - public static string Retry_subchannel_help { - get { - return ResourceManager.GetString("Retry_subchannel_help", resourceCulture); - } - } - - public static string Generate_subchannels_dump_help { - get { - return ResourceManager.GetString("Generate_subchannels_dump_help", resourceCulture); - } - } - - public static string Skip_CDi_Ready_hole_help { - get { - return ResourceManager.GetString("Skip_CDi_Ready_hole_help", resourceCulture); - } - } - - public static string Eject_media_after_dump_finishes { - get { - return ResourceManager.GetString("Eject_media_after_dump_finishes", resourceCulture); - } - } - - public static string Maximum_number_of_blocks_to_read_at_once { - get { - return ResourceManager.GetString("Maximum_number_of_blocks_to_read_at_once", resourceCulture); - } - } - - public static string OS_buffered_reads_help { - get { - return ResourceManager.GetString("OS_buffered_reads_help", resourceCulture); - } - } - - public static string Store_encrypted_data_as_is { - get { - return ResourceManager.GetString("Store_encrypted_data_as_is", resourceCulture); - } - } - - public static string Try_to_read_the_title_keys_from_CSS_DVDs { - get { - return ResourceManager.GetString("Try_to_read_the_title_keys_from_CSS_DVDs", resourceCulture); - } - } - - public static string How_many_CDRW_run_out_sectors_to_ignore_and_regenerate { - get { - return ResourceManager.GetString("How_many_CDRW_run_out_sectors_to_ignore_and_regenerate", resourceCulture); - } - } - - public static string Subchannel_name_rw { - get { - return ResourceManager.GetString("Subchannel_name_rw", resourceCulture); - } - } - - public static string Subchannel_name_rw_or_pq { - get { - return ResourceManager.GetString("Subchannel_name_rw_or_pq", resourceCulture); - } - } - - public static string Subchannel_name_pq { - get { - return ResourceManager.GetString("Subchannel_name_pq", resourceCulture); - } - } - - public static string Subchannel_name_none { - get { - return ResourceManager.GetString("Subchannel_name_none", resourceCulture); - } - } - - public static string Incorrect_subchannel_type_0_requested { - get { - return ResourceManager.GetString("Incorrect_subchannel_type_0_requested", resourceCulture); - } - } - - public static string Invalid_characters_found_in_list_of_files { - get { - return ResourceManager.GetString("Invalid_characters_found_in_list_of_files", resourceCulture); - } - } - - public static string Please_insert_media_with_title_0_and_press_any_key_to_continue_ { - get { - return ResourceManager.GetString("Please_insert_media_with_title_0_and_press_any_key_to_continue_", resourceCulture); - } - } - - public static string Opening_device { - get { - return ResourceManager.GetString("Opening_device", resourceCulture); - } - } - - public static string Incorrect_resume_file_not_continuing { - get { - return ResourceManager.GetString("Incorrect_resume_file_not_continuing", resourceCulture); - } - } - - public static string Media_already_dumped_correctly_not_continuing { - get { - return ResourceManager.GetString("Media_already_dumped_correctly_not_continuing", resourceCulture); - } - } - - public static string Ejecting_media { - get { - return ResourceManager.GetString("Ejecting_media", resourceCulture); - } - } - - public static string Please_use_device_info_command_for_ATA_devices { - get { - return ResourceManager.GetString("Please_use_device_info_command_for_ATA_devices", resourceCulture); - } - } - - public static string Please_use_device_info_command_for_MMC_SD_devices { - get { - return ResourceManager.GetString("Please_use_device_info_command_for_MMC_SD_devices", resourceCulture); - } - } - - public static string Retrieving_SCSI_information { - get { - return ResourceManager.GetString("Retrieving_SCSI_information", resourceCulture); - } - } - - public static string Densities_supported_by_currently_inserted_media { - get { - return ResourceManager.GetString("Densities_supported_by_currently_inserted_media", resourceCulture); - } - } - - public static string Medium_types_currently_inserted_in_device { - get { - return ResourceManager.GetString("Medium_types_currently_inserted_in_device", resourceCulture); - } - } - - public static string Hidden_track_starts_at_LBA_0_ends_at_LBA_1 { - get { - return ResourceManager.GetString("Hidden_track_starts_at_LBA_0_ends_at_LBA_1", resourceCulture); - } - } - - public static string Track_0_starts_at_LBA_1_ends_at_LBA_2_has_a_pregap_of_3_sectors_and_is_of_type_4 { - get { - return ResourceManager.GetString("Track_0_starts_at_LBA_1_ends_at_LBA_2_has_a_pregap_of_3_sectors_and_is_of_type_4", resourceCulture); - } - } - - public static string Write_a_log_of_the_scan_in_the_format_used_by_MHDD { - get { - return ResourceManager.GetString("Write_a_log_of_the_scan_in_the_format_used_by_MHDD", resourceCulture); - } - } - - public static string Write_a_log_of_the_scan_in_the_format_used_by_ImgBurn { - get { - return ResourceManager.GetString("Write_a_log_of_the_scan_in_the_format_used_by_ImgBurn", resourceCulture); - } - } - - public static string GDPR_Compliance { - get { - return ResourceManager.GetString("GDPR_Compliance", resourceCulture); - } - } - - public static string GDPR_Open_Source_Disclaimer { - get { - return ResourceManager.GetString("GDPR_Open_Source_Disclaimer", resourceCulture); - } - } - - public static string GDPR_Information_sharing { - get { - return ResourceManager.GetString("GDPR_Information_sharing", resourceCulture); - } - } - - public static string Configure_enable_decryption_disclaimer { - get { - return ResourceManager.GetString("Configure_enable_decryption_disclaimer", resourceCulture); - } - } - - public static string Do_you_want_to_enable_decryption_of_copy_protected_media_Q { - get { - return ResourceManager.GetString("Do_you_want_to_enable_decryption_of_copy_protected_media_Q", resourceCulture); - } - } - - public static string Configure_Device_Report_information_disclaimer { - get { - return ResourceManager.GetString("Configure_Device_Report_information_disclaimer", resourceCulture); - } - } - - public static string Configure_Do_you_want_to_save_device_reports_in_shared_folder_of_your_computer_Q { - get { - return ResourceManager.GetString("Configure_Do_you_want_to_save_device_reports_in_shared_folder_of_your_computer_Q", resourceCulture); - } - } - - public static string Configure_share_report_disclaimer { - get { - return ResourceManager.GetString("Configure_share_report_disclaimer", resourceCulture); - } - } - - public static string Do_you_want_to_share_your_device_reports_with_us_Q { - get { - return ResourceManager.GetString("Do_you_want_to_share_your_device_reports_with_us_Q", resourceCulture); - } - } - - public static string Statistics_disclaimer { - get { - return ResourceManager.GetString("Statistics_disclaimer", resourceCulture); - } - } - - public static string Do_you_want_to_save_stats_about_your_Aaru_usage_Q { - get { - return ResourceManager.GetString("Do_you_want_to_save_stats_about_your_Aaru_usage_Q", resourceCulture); - } - } - - public static string Do_you_want_to_share_your_stats__anonymously_Q { - get { - return ResourceManager.GetString("Do_you_want_to_share_your_stats__anonymously_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_command_usage_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_command_usage_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_found_devices_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_devices_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_found_filesystems_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_filesystems_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_found_file_filters_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_file_filters_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_found_media_image_formats_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_media_image_formats_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_scanned_media_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_scanned_media_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_found_partitioning_schemes_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_found_partitioning_schemes_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_media_types_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_media_types_Q", resourceCulture); - } - } - - public static string Do_you_want_to_gather_statistics_about_media_image_verifications_Q { - get { - return ResourceManager.GetString("Do_you_want_to_gather_statistics_about_media_image_verifications_Q", resourceCulture); - } - } - - public static string Supported_filters_0 { - get { - return ResourceManager.GetString("Supported_filters_0", resourceCulture); - } - } - - public static string Read_only_media_image_formats_0 { - get { - return ResourceManager.GetString("Read_only_media_image_formats_0", resourceCulture); - } - } - - public static string Read_write_media_image_formats_0 { - get { - return ResourceManager.GetString("Read_write_media_image_formats_0", resourceCulture); - } - } - - public static string Supported_filesystems_for_identification_and_information_only_0 { - get { - return ResourceManager.GetString("Supported_filesystems_for_identification_and_information_only_0", resourceCulture); - } - } - - public static string Supported_filesystems_that_can_read_their_contents_0 { - get { - return ResourceManager.GetString("Supported_filesystems_that_can_read_their_contents_0", resourceCulture); - } - } - - public static string Supported_partitioning_schemes_0 { - get { - return ResourceManager.GetString("Supported_partitioning_schemes_0", resourceCulture); - } - } - - public static string Supported_archive_formats_0 { - get { - return ResourceManager.GetString("Supported_archive_formats_0", resourceCulture); - } - } - - public static string Namespaces_for_0 { - get { - return ResourceManager.GetString("Namespaces_for_0", resourceCulture); - } - } - - public static string Title_Namespace { - get { - return ResourceManager.GetString("Title_Namespace", resourceCulture); - } - } - - public static string Invalid_list_of_items { - get { - return ResourceManager.GetString("Invalid_list_of_items", resourceCulture); - } - } - - public static string Invalid_item_in_list { - get { - return ResourceManager.GetString("Invalid_item_in_list", resourceCulture); - } - } - - public static string Duration_cannot_be_negative_or_infinite { - get { - return ResourceManager.GetString("Duration_cannot_be_negative_or_infinite", resourceCulture); - } - } - - public static string Items_must_be_a_IList_ulong_double { - get { - return ResourceManager.GetString("Items_must_be_a_IList_ulong_double", resourceCulture); - } - } - - public static string Label_About { - get { - return ResourceManager.GetString("Label_About", resourceCulture); - } - } - - public static string Label_Libraries { - get { - return ResourceManager.GetString("Label_Libraries", resourceCulture); - } - } - - public static string Label_Authors { - get { - return ResourceManager.GetString("Label_Authors", resourceCulture); - } - } - - public static string Title_About_Aaru { - get { - return ResourceManager.GetString("Title_About_Aaru", resourceCulture); - } - } - - public static string Label_License { - get { - return ResourceManager.GetString("Label_License", resourceCulture); - } - } - - public static string ButtonLabel_Close { - get { - return ResourceManager.GetString("ButtonLabel_Close", resourceCulture); - } - } - - public static string Title_Library { - get { - return ResourceManager.GetString("Title_Library", resourceCulture); - } - } - - public static string Title_Version { - get { - return ResourceManager.GetString("Title_Version", resourceCulture); - } - } - - public static string Text_Authors { - get { - return ResourceManager.GetString("Text_Authors", resourceCulture); - } - } - - public static string Title_Console { - get { - return ResourceManager.GetString("Title_Console", resourceCulture); - } - } - - public static string Enable_debug_console { - get { - return ResourceManager.GetString("Enable_debug_console", resourceCulture); - } - } - - public static string ButtonLabel_Save { - get { - return ResourceManager.GetString("ButtonLabel_Save", resourceCulture); - } - } - - public static string ButtonLabel_Clear { - get { - return ResourceManager.GetString("ButtonLabel_Clear", resourceCulture); - } - } - - public static string Title_Time { - get { - return ResourceManager.GetString("Title_Time", resourceCulture); - } - } - - public static string Title_Module { - get { - return ResourceManager.GetString("Title_Module", resourceCulture); - } - } - - public static string Title_Message { - get { - return ResourceManager.GetString("Title_Message", resourceCulture); - } - } - - public static string Dialog_Log_files { - get { - return ResourceManager.GetString("Dialog_Log_files", resourceCulture); - } - } - - public static string Log_saved_at_0 { - get { - return ResourceManager.GetString("Log_saved_at_0", resourceCulture); - } - } - - public static string Console_with_ornament { - get { - return ResourceManager.GetString("Console_with_ornament", resourceCulture); - } - } - - public static string LogEntry_Type_Info { - get { - return ResourceManager.GetString("LogEntry_Type_Info", resourceCulture); - } - } - - public static string Title_Error { - get { - return ResourceManager.GetString("Title_Error", resourceCulture); - } - } - - public static string Exception_0_trying_to_save_logfile_details_has_been_sent_to_console { - get { - return ResourceManager.GetString("Exception_0_trying_to_save_logfile_details_has_been_sent_to_console", resourceCulture); - } - } - - public static string Encodings { - get { - return ResourceManager.GetString("Encodings", resourceCulture); - } - } - - public static string Title_Code_for_encoding { - get { - return ResourceManager.GetString("Title_Code_for_encoding", resourceCulture); - } - } - - public static string Title_Aaru_license { - get { - return ResourceManager.GetString("Title_Aaru_license", resourceCulture); - } - } - - public static string Title_Plugins { - get { - return ResourceManager.GetString("Title_Plugins", resourceCulture); - } - } - - public static string Title_Filters { - get { - return ResourceManager.GetString("Title_Filters", resourceCulture); - } - } - - public static string Title_Partitions { - get { - return ResourceManager.GetString("Title_Partitions", resourceCulture); - } - } - - public static string Title_Filesystems { - get { - return ResourceManager.GetString("Title_Filesystems", resourceCulture); - } - } - - public static string Title_Identify_only { - get { - return ResourceManager.GetString("Title_Identify_only", resourceCulture); - } - } - - public static string Title_Media_images { - get { - return ResourceManager.GetString("Title_Media_images", resourceCulture); - } - } - - public static string Title_Floppy_images { - get { - return ResourceManager.GetString("Title_Floppy_images", resourceCulture); - } - } - - public static string Title_Readable { - get { - return ResourceManager.GetString("Title_Readable", resourceCulture); - } - } - - public static string Title_Writable { - get { - return ResourceManager.GetString("Title_Writable", resourceCulture); - } - } - - public static string Title_UUID { - get { - return ResourceManager.GetString("Title_UUID", resourceCulture); - } - } - - public static string Title_Author { - get { - return ResourceManager.GetString("Title_Author", resourceCulture); - } - } - - public static string Title_Settings { - get { - return ResourceManager.GetString("Title_Settings", resourceCulture); - } - } - - public static string Title_GDPR { - get { - return ResourceManager.GetString("Title_GDPR", resourceCulture); - } - } - - public static string Title_Reports { - get { - return ResourceManager.GetString("Title_Reports", resourceCulture); - } - } - - public static string Title_Statistics { - get { - return ResourceManager.GetString("Title_Statistics", resourceCulture); - } - } - - public static string ButtonLabel_Cancel { - get { - return ResourceManager.GetString("ButtonLabel_Cancel", resourceCulture); - } - } - - public static string Save_device_reports_in_shared_folder_of_your_computer_Q { - get { - return ResourceManager.GetString("Save_device_reports_in_shared_folder_of_your_computer_Q", resourceCulture); - } - } - - public static string Share_your_device_reports_with_us_Q { - get { - return ResourceManager.GetString("Share_your_device_reports_with_us_Q", resourceCulture); - } - } - - public static string Save_stats_about_your_Aaru_usage_Q { - get { - return ResourceManager.GetString("Save_stats_about_your_Aaru_usage_Q", resourceCulture); - } - } - - public static string Share_your_stats_anonymously_Q { - get { - return ResourceManager.GetString("Share_your_stats_anonymously_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_command_usage_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_command_usage_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_found_devices_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_found_devices_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_found_filesystems_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_found_filesystems_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_found_file_filters_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_found_file_filters_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_found_media_image_formats_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_found_media_image_formats_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_scanned_media_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_scanned_media_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_found_partitioning_schemes_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_found_partitioning_schemes_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_media_types_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_media_types_Q", resourceCulture); - } - } - - public static string Gather_statistics_about_media_image_verifications_Q { - get { - return ResourceManager.GetString("Gather_statistics_about_media_image_verifications_Q", resourceCulture); - } - } - - public static string You_have_called_the_Filesystem_Info_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Filesystem_Info_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Checksum_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Checksum_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Compare_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Compare_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Convert_Image_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Convert_Image_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Create_Sidecar_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Create_Sidecar_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Decode_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Decode_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Device_Info_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Device_Info_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Device_Report_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Device_Report_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Dump_Media_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Dump_Media_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Entropy_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Entropy_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Formats_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Formats_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Image_Info_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Image_Info_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Media_Info_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Media_Info_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Media_Scan_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Media_Scan_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Print_Hex_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Print_Hex_command_0_times", resourceCulture); - } - } - - public static string You_have_called_the_Verify_command_0_times { - get { - return ResourceManager.GetString("You_have_called_the_Verify_command_0_times", resourceCulture); - } - } - - public static string Media_found_type_real { - get { - return ResourceManager.GetString("Media_found_type_real", resourceCulture); - } - } - - public static string Media_found_type_image { - get { - return ResourceManager.GetString("Media_found_type_image", resourceCulture); - } - } - - public static string Title_Commands { - get { - return ResourceManager.GetString("Title_Commands", resourceCulture); - } - } - - public static string Title_Partition { - get { - return ResourceManager.GetString("Title_Partition", resourceCulture); - } - } - - public static string Title_Formats { - get { - return ResourceManager.GetString("Title_Formats", resourceCulture); - } - } - - public static string Title_Devices { - get { - return ResourceManager.GetString("Title_Devices", resourceCulture); - } - } - - public static string Title_Device { - get { - return ResourceManager.GetString("Title_Device", resourceCulture); - } - } - - public static string Title_Medias { - get { - return ResourceManager.GetString("Title_Medias", resourceCulture); - } - } - - public static string Title_Media { - get { - return ResourceManager.GetString("Title_Media", resourceCulture); - } - } - - public static string _0_Kb_sec { - get { - return ResourceManager.GetString("_0_Kb_sec", resourceCulture); - } - } - - public static string unlimited_as_in_speed { - get { - return ResourceManager.GetString("unlimited_as_in_speed", resourceCulture); - } - } - - public static string Save_descriptors_to_file { - get { - return ResourceManager.GetString("Save_descriptors_to_file", resourceCulture); - } - } - - public static string Title_USB { - get { - return ResourceManager.GetString("Title_USB", resourceCulture); - } - } - - public static string Title_Connected_by_USB { - get { - return ResourceManager.GetString("Title_Connected_by_USB", resourceCulture); - } - } - - public static string Title_Removable_media { - get { - return ResourceManager.GetString("Title_Removable_media", resourceCulture); - } - } - - public static string Title_Peripheral_device_type { - get { - return ResourceManager.GetString("Title_Peripheral_device_type", resourceCulture); - } - } - - public static string Title_Device_type { - get { - return ResourceManager.GetString("Title_Device_type", resourceCulture); - } - } - - public static string Title_General { - get { - return ResourceManager.GetString("Title_General", resourceCulture); - } - } - - public static string Title_Device_information { - get { - return ResourceManager.GetString("Title_Device_information", resourceCulture); - } - } - - public static string Title_FireWire { - get { - return ResourceManager.GetString("Title_FireWire", resourceCulture); - } - } - - public static string Title_Plextor { - get { - return ResourceManager.GetString("Title_Plextor", resourceCulture); - } - } - - public static string Total_loaded_discs { - get { - return ResourceManager.GetString("Total_loaded_discs", resourceCulture); - } - } - - public static string Time_spent_reading_CDs { - get { - return ResourceManager.GetString("Time_spent_reading_CDs", resourceCulture); - } - } - - public static string Time_spent_writing_CDs { - get { - return ResourceManager.GetString("Time_spent_writing_CDs", resourceCulture); - } - } - - public static string Time_spent_reading_DVDs { - get { - return ResourceManager.GetString("Time_spent_reading_DVDs", resourceCulture); - } - } - - public static string Time_spent_writing_DVDs { - get { - return ResourceManager.GetString("Time_spent_writing_DVDs", resourceCulture); - } - } - - public static string Supports_PoweRec { - get { - return ResourceManager.GetString("Supports_PoweRec", resourceCulture); - } - } - - public static string PoweRec_is_enabled { - get { - return ResourceManager.GetString("PoweRec_is_enabled", resourceCulture); - } - } - - public static string Recommended_speed { - get { - return ResourceManager.GetString("Recommended_speed", resourceCulture); - } - } - - public static string Selected_PoweRec_speed_for_currently_inserted_media { - get { - return ResourceManager.GetString("Selected_PoweRec_speed_for_currently_inserted_media", resourceCulture); - } - } - - public static string Maximum_PoweRec_speed_for_currently_inserted_media { - get { - return ResourceManager.GetString("Maximum_PoweRec_speed_for_currently_inserted_media", resourceCulture); - } - } - - public static string Last_PoweRec_used_speed { - get { - return ResourceManager.GetString("Last_PoweRec_used_speed", resourceCulture); - } - } - - public static string Supports_SilentMode { - get { - return ResourceManager.GetString("Supports_SilentMode", resourceCulture); - } - } - - public static string SilentMode_is_enabled { - get { - return ResourceManager.GetString("SilentMode_is_enabled", resourceCulture); - } - } - - public static string CD_read_speed_limited_to { - get { - return ResourceManager.GetString("CD_read_speed_limited_to", resourceCulture); - } - } - - public static string CD_write_speed_limited_to { - get { - return ResourceManager.GetString("CD_write_speed_limited_to", resourceCulture); - } - } - - public static string DVD_read_speed_limited_to { - get { - return ResourceManager.GetString("DVD_read_speed_limited_to", resourceCulture); - } - } - - public static string Supports_GigaRec { - get { - return ResourceManager.GetString("Supports_GigaRec", resourceCulture); - } - } - - public static string Supports_SecuRec { - get { - return ResourceManager.GetString("Supports_SecuRec", resourceCulture); - } - } - - public static string Supports_SpeedRead { - get { - return ResourceManager.GetString("Supports_SpeedRead", resourceCulture); - } - } - - public static string SpeedRead_is_enabled { - get { - return ResourceManager.GetString("SpeedRead_is_enabled", resourceCulture); - } - } - - public static string Supports_hiding_CD_Rs_and_sessions { - get { - return ResourceManager.GetString("Supports_hiding_CD_Rs_and_sessions", resourceCulture); - } - } - - public static string Is_hiding_CD_Rs { - get { - return ResourceManager.GetString("Is_hiding_CD_Rs", resourceCulture); - } - } - - public static string Is_forcing_only_first_session { - get { - return ResourceManager.GetString("Is_forcing_only_first_session", resourceCulture); - } - } - - public static string Supports_VariRec { - get { - return ResourceManager.GetString("Supports_VariRec", resourceCulture); - } - } - - public static string Supports_VariRec_on_DVDs { - get { - return ResourceManager.GetString("Supports_VariRec_on_DVDs", resourceCulture); - } - } - - public static string Supports_bitsetting_DVD_R_book_type { - get { - return ResourceManager.GetString("Supports_bitsetting_DVD_R_book_type", resourceCulture); - } - } - - public static string Supports_bitsetting_DVD_R_DL_book_type { - get { - return ResourceManager.GetString("Supports_bitsetting_DVD_R_DL_book_type", resourceCulture); - } - } - - public static string Supports_test_writing_DVD_Plus { - get { - return ResourceManager.GetString("Supports_test_writing_DVD_Plus", resourceCulture); - } - } - - public static string Title_Kreon { - get { - return ResourceManager.GetString("Title_Kreon", resourceCulture); - } - } - - public static string Densities_supported_by_device { - get { - return ResourceManager.GetString("Densities_supported_by_device", resourceCulture); - } - } - - public static string Medium_types_supported_by_device { - get { - return ResourceManager.GetString("Medium_types_supported_by_device", resourceCulture); - } - } - - public static string Title_CID { - get { - return ResourceManager.GetString("Title_CID", resourceCulture); - } - } - - public static string Title_CSD { - get { - return ResourceManager.GetString("Title_CSD", resourceCulture); - } - } - - public static string Title_OCR { - get { - return ResourceManager.GetString("Title_OCR", resourceCulture); - } - } - - public static string Title_Extended_CSD { - get { - return ResourceManager.GetString("Title_Extended_CSD", resourceCulture); - } - } - - public static string Title_SCR { - get { - return ResourceManager.GetString("Title_SCR", resourceCulture); - } - } - - public static string Title_PCMCIA { - get { - return ResourceManager.GetString("Title_PCMCIA", resourceCulture); - } - } - - public static string Title_ATA_ATAPI { - get { - return ResourceManager.GetString("Title_ATA_ATAPI", resourceCulture); - } - } - - public static string Title_SCSI { - get { - return ResourceManager.GetString("Title_SCSI", resourceCulture); - } - } - - public static string Title_SD_MMC { - get { - return ResourceManager.GetString("Title_SD_MMC", resourceCulture); - } - } - - public static string Dialog_Binary_files { - get { - return ResourceManager.GetString("Dialog_Binary_files", resourceCulture); - } - } - - public static string Title_Details { - get { - return ResourceManager.GetString("Title_Details", resourceCulture); - } - } - - public static string Path_0 { - get { - return ResourceManager.GetString("Path_0", resourceCulture); - } - } - - public static string Filter_0 { - get { - return ResourceManager.GetString("Filter_0", resourceCulture); - } - } - - public static string Format_0_version_1 { - get { - return ResourceManager.GetString("Format_0_version_1", resourceCulture); - } - } - - public static string Format_0 { - get { - return ResourceManager.GetString("Format_0", 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 Media_title_0 { - get { - return ResourceManager.GetString("Media_title_0", resourceCulture); - } - } - - public static string Media_model_0 { - get { - return ResourceManager.GetString("Media_model_0", resourceCulture); - } - } - - public static string Media_barcode_0 { - get { - return ResourceManager.GetString("Media_barcode_0", resourceCulture); - } - } - - public static string Media_part_number_0 { - get { - return ResourceManager.GetString("Media_part_number_0", resourceCulture); - } - } - - public static string Drive_manufacturer_0 { - get { - return ResourceManager.GetString("Drive_manufacturer_0", resourceCulture); - } - } - - public static string Drive_model_0 { - get { - return ResourceManager.GetString("Drive_model_0", resourceCulture); - } - } - - public static string Drive_firmware_info_0 { - get { - return ResourceManager.GetString("Drive_firmware_info_0", resourceCulture); - } - } - - public static string Media_geometry_0_cylinders_1_heads_2_sectors_per_track { - get { - return ResourceManager.GetString("Media_geometry_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); - } - } - - public static string Title_Image_information { - get { - return ResourceManager.GetString("Title_Image_information", resourceCulture); - } - } - - public static string Title_Comments { - get { - return ResourceManager.GetString("Title_Comments", resourceCulture); - } - } - - public static string Title_Media_information { - get { - return ResourceManager.GetString("Title_Media_information", resourceCulture); - } - } - - public static string Title_Drive_information { - get { - return ResourceManager.GetString("Title_Drive_information", resourceCulture); - } - } - - public static string Title_Readable_media_tags { - get { - return ResourceManager.GetString("Title_Readable_media_tags", resourceCulture); - } - } - - public static string Title_Readable_sector_tags { - get { - return ResourceManager.GetString("Title_Readable_sector_tags", resourceCulture); - } - } - - public static string Title_Sessions { - get { - return ResourceManager.GetString("Title_Sessions", resourceCulture); - } - } - - public static string Title_Tracks { - get { - return ResourceManager.GetString("Title_Tracks", resourceCulture); - } - } - - public static string Title_Dump_hardware { - get { - return ResourceManager.GetString("Title_Dump_hardware", resourceCulture); - } - } - - public static string Title_Software { - get { - return ResourceManager.GetString("Title_Software", resourceCulture); - } - } - - public static string Title_Operating_system { - get { - return ResourceManager.GetString("Title_Operating_system", resourceCulture); - } - } - - public static string ButtonLabel_Calculate_entropy { - get { - return ResourceManager.GetString("ButtonLabel_Calculate_entropy", resourceCulture); - } - } - - public static string ButtonLabel_Verify { - get { - return ResourceManager.GetString("ButtonLabel_Verify", resourceCulture); - } - } - - public static string ButtonLabel_Checksum { - get { - return ResourceManager.GetString("ButtonLabel_Checksum", resourceCulture); - } - } - - public static string ButtonLabel_Convert_to { - get { - return ResourceManager.GetString("ButtonLabel_Convert_to", resourceCulture); - } - } - - public static string ButtonLabel_Create_Aaru_Metadata_sidecar { - get { - return ResourceManager.GetString("ButtonLabel_Create_Aaru_Metadata_sidecar", resourceCulture); - } - } - - public static string ButtonLabel_View_sectors { - get { - return ResourceManager.GetString("ButtonLabel_View_sectors", resourceCulture); - } - } - - public static string ButtonLabel_Decode_media_tags { - get { - return ResourceManager.GetString("ButtonLabel_Decode_media_tags", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_MEDIA_SERIAL_NUMBER_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_MEDIA_SERIAL_NUMBER_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_CAPACITY_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_CAPACITY_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_CAPACITY_16_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_CAPACITY_16_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_GET_CONFIGURATION_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_GET_CONFIGURATION_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_RECOGNIZED_FORMAT_LAYERS_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_RECOGNIZED_FORMAT_LAYERS_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_WRITE_PROTECTION_STATUS_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_WRITE_PROTECTION_STATUS_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIA_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIA_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIUM_MEDIA_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_REPORT_DENSITY_SUPPORT_MEDIUM_MEDIA_response", resourceCulture); - } - } - - public static string ButtonLabel_Dump_media_to_image { - get { - return ResourceManager.GetString("ButtonLabel_Dump_media_to_image", resourceCulture); - } - } - - public static string ButtonLabel_Scan_media_surface { - get { - return ResourceManager.GetString("ButtonLabel_Scan_media_surface", resourceCulture); - } - } - - public static string Error_0_trying_to_read_1_of_chosen_filesystem { - get { - return ResourceManager.GetString("Error_0_trying_to_read_1_of_chosen_filesystem", resourceCulture); - } - } - - public static string Error_0_trying_to_get_information_about_filesystem_entry_named_1 { - get { - return ResourceManager.GetString("Error_0_trying_to_get_information_about_filesystem_entry_named_1", resourceCulture); - } - } - - public static string ButtonLabel_Extract_to { - get { - return ResourceManager.GetString("ButtonLabel_Extract_to", resourceCulture); - } - } - - public static string Title_Creation { - get { - return ResourceManager.GetString("Title_Creation", resourceCulture); - } - } - - public static string Title_Last_access { - get { - return ResourceManager.GetString("Title_Last_access", resourceCulture); - } - } - - public static string Title_Changed { - get { - return ResourceManager.GetString("Title_Changed", resourceCulture); - } - } - - public static string Title_Last_backup { - get { - return ResourceManager.GetString("Title_Last_backup", resourceCulture); - } - } - - public static string Title_Last_write { - get { - return ResourceManager.GetString("Title_Last_write", resourceCulture); - } - } - - public static string Title_Attributes { - get { - return ResourceManager.GetString("Title_Attributes", resourceCulture); - } - } - - public static string Title_GID { - get { - return ResourceManager.GetString("Title_GID", resourceCulture); - } - } - - public static string Title_UID { - get { - return ResourceManager.GetString("Title_UID", resourceCulture); - } - } - - public static string Title_Inode { - get { - return ResourceManager.GetString("Title_Inode", resourceCulture); - } - } - - public static string Title_Links { - get { - return ResourceManager.GetString("Title_Links", resourceCulture); - } - } - - public static string Title_Mode { - get { - return ResourceManager.GetString("Title_Mode", resourceCulture); - } - } - - public static string Dialog_Choose_destination_folder { - get { - return ResourceManager.GetString("Dialog_Choose_destination_folder", resourceCulture); - } - } - - public static string Unsupported_filename { - get { - return ResourceManager.GetString("Unsupported_filename", resourceCulture); - } - } - - public static string Filename_0_not_supported_want_to_rename_to_1 { - get { - return ResourceManager.GetString("Filename_0_not_supported_want_to_rename_to_1", resourceCulture); - } - } - - public static string Existing_file { - get { - return ResourceManager.GetString("Existing_file", resourceCulture); - } - } - - public static string File_named_0_exists_overwrite_Q { - get { - return ResourceManager.GetString("File_named_0_exists_overwrite_Q", resourceCulture); - } - } - - public static string Cannot_delete { - get { - return ResourceManager.GetString("Cannot_delete", resourceCulture); - } - } - - public static string Could_note_delete_existe_file_continue_Q { - get { - return ResourceManager.GetString("Could_note_delete_existe_file_continue_Q", resourceCulture); - } - } - - public static string Error_reading_file { - get { - return ResourceManager.GetString("Error_reading_file", resourceCulture); - } - } - - public static string Error_0_reading_file_continue_Q { - get { - return ResourceManager.GetString("Error_0_reading_file_continue_Q", resourceCulture); - } - } - - public static string Cannot_create_file { - get { - return ResourceManager.GetString("Cannot_create_file", resourceCulture); - } - } - - public static string Could_not_create_destination_file_continue_Q { - get { - return ResourceManager.GetString("Could_not_create_destination_file_continue_Q", resourceCulture); - } - } - - public static string ButtonLabel_Save_binary_to_file { - get { - return ResourceManager.GetString("ButtonLabel_Save_binary_to_file", resourceCulture); - } - } - - public static string ButtonLabel_Save_text_to_file { - get { - return ResourceManager.GetString("ButtonLabel_Save_text_to_file", resourceCulture); - } - } - - public static string Dialog_Text_files { - get { - return ResourceManager.GetString("Dialog_Text_files", resourceCulture); - } - } - - public static string Disc_information { - get { - return ResourceManager.GetString("Disc_information", resourceCulture); - } - } - - public static string Burst_Cutting_Area { - get { - return ResourceManager.GetString("Burst_Cutting_Area", resourceCulture); - } - } - - public static string Cartridge_Status { - get { - return ResourceManager.GetString("Cartridge_Status", resourceCulture); - } - } - - public static string Pseudo_OverWrite_Resources { - get { - return ResourceManager.GetString("Pseudo_OverWrite_Resources", resourceCulture); - } - } - - public static string Disc_Definition_Structure { - get { - return ResourceManager.GetString("Disc_Definition_Structure", resourceCulture); - } - } - - public static string Spare_Area_Information { - get { - return ResourceManager.GetString("Spare_Area_Information", resourceCulture); - } - } - - public static string Track_Resources { - get { - return ResourceManager.GetString("Track_Resources", resourceCulture); - } - } - - public static string ButtonLabel_Save_Disc_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_Disc_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_Burst_Cutting_Area { - get { - return ResourceManager.GetString("ButtonLabel_Save_Burst_Cutting_Area", resourceCulture); - } - } - - public static string ButtonLabel_Save_Disc_Definition_Structure { - get { - return ResourceManager.GetString("ButtonLabel_Save_Disc_Definition_Structure", resourceCulture); - } - } - - public static string ButtonLabel_Save_Cartridge_Status { - get { - return ResourceManager.GetString("ButtonLabel_Save_Cartridge_Status", resourceCulture); - } - } - - public static string ButtonLabel_Save_Spare_Area_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_Spare_Area_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_Pseudo_OverWrite_Resources { - get { - return ResourceManager.GetString("ButtonLabel_Save_Pseudo_OverWrite_Resources", resourceCulture); - } - } - - public static string ButtonLabel_Save_Track_Resources { - get { - return ResourceManager.GetString("ButtonLabel_Save_Track_Resources", resourceCulture); - } - } - - public static string ButtonLabel_Save_raw_DFL { - get { - return ResourceManager.GetString("ButtonLabel_Save_raw_DFL", resourceCulture); - } - } - - public static string ButtonLabel_Save_PAC { - get { - return ResourceManager.GetString("ButtonLabel_Save_PAC", resourceCulture); - } - } - - public static string Title_Information { - get { - return ResourceManager.GetString("Title_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_DISC_INFORMATION_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_DISC_INFORMATION_response", resourceCulture); - } - } - - public static string Title_TOC { - get { - return ResourceManager.GetString("Title_TOC", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_TOC_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_TOC_response", resourceCulture); - } - } - - public static string Title_TOC_full { - get { - return ResourceManager.GetString("Title_TOC_full", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_RAW_TOC_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_RAW_TOC_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_SESSION_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_SESSION_response", resourceCulture); - } - } - - public static string Title_CD_TEXT { - get { - return ResourceManager.GetString("Title_CD_TEXT", resourceCulture); - } - } - - public static string ButtonLabel_Save_Lead_In_CD_TEXT { - get { - return ResourceManager.GetString("ButtonLabel_Save_Lead_In_CD_TEXT", resourceCulture); - } - } - - public static string Title_ATIP { - get { - return ResourceManager.GetString("Title_ATIP", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_ATIP_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_ATIP_response", resourceCulture); - } - } - - public static string Title_Miscellaneous { - get { - return ResourceManager.GetString("Title_Miscellaneous", resourceCulture); - } - } - - public static string Title_Media_catalog_number { - get { - return ResourceManager.GetString("Title_Media_catalog_number", resourceCulture); - } - } - - public static string Title_ISRCs { - get { - return ResourceManager.GetString("Title_ISRCs", resourceCulture); - } - } - - public static string Title_ISRC { - get { - return ResourceManager.GetString("Title_ISRC", resourceCulture); - } - } - - public static string ButtonLabel_Save_READ_PMA_response { - get { - return ResourceManager.GetString("ButtonLabel_Save_READ_PMA_response", resourceCulture); - } - } - - public static string ButtonLabel_Save_Physical_Format_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_Physical_Format_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_Disc_Manufacturer_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_Disc_Manufacturer_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_Copyright_Management_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_Copyright_Management_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_AACS_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_AACS_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_Last_Border_Out_RMD { - get { - return ResourceManager.GetString("ButtonLabel_Save_Last_Border_Out_RMD", resourceCulture); - } - } - - public static string ButtonLabel_Save_Pre_Recorded_Physical_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_Pre_Recorded_Physical_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_Media_Identifier { - get { - return ResourceManager.GetString("ButtonLabel_Save_Media_Identifier", resourceCulture); - } - } - - public static string ButtonLabel_Save_Recordable_Physical_Information { - get { - return ResourceManager.GetString("ButtonLabel_Save_Recordable_Physical_Information", resourceCulture); - } - } - - public static string ButtonLabel_Save_Medium_Status { - get { - return ResourceManager.GetString("ButtonLabel_Save_Medium_Status", resourceCulture); - } - } - - public static string ButtonLabel_Save_Layer_Capacity { - get { - return ResourceManager.GetString("ButtonLabel_Save_Layer_Capacity", resourceCulture); - } - } - - public static string ButtonLabel_Save_Middle_Zone_Start { - get { - return ResourceManager.GetString("ButtonLabel_Save_Middle_Zone_Start", resourceCulture); - } - } - - public static string ButtonLabel_Save_Jump_Interval_Size { - get { - return ResourceManager.GetString("ButtonLabel_Save_Jump_Interval_Size", resourceCulture); - } - } - - public static string ButtonLabel_Save_Manual_Layer_Jump_Start_LBA { - get { - return ResourceManager.GetString("ButtonLabel_Save_Manual_Layer_Jump_Start_LBA", resourceCulture); - } - } - - public static string ButtonLabel_Save_Remap_Anchor_Point { - get { - return ResourceManager.GetString("ButtonLabel_Save_Remap_Anchor_Point", resourceCulture); - } - } - - public static string ButtonLabel_Save_ADIP { - get { - return ResourceManager.GetString("ButtonLabel_Save_ADIP", resourceCulture); - } - } - - public static string ButtonLabel_Save_Disc_Control_Blocks { - get { - return ResourceManager.GetString("ButtonLabel_Save_Disc_Control_Blocks", resourceCulture); - } - } - - public static string Device_Geometry_Tuples { - get { - return ResourceManager.GetString("Device_Geometry_Tuples", resourceCulture); - } - } - - public static string Manufacturer_Identification_Tuple { - get { - return ResourceManager.GetString("Manufacturer_Identification_Tuple", resourceCulture); - } - } - - public static string Level_1_Version_Product_Information_Tuple { - get { - return ResourceManager.GetString("Level_1_Version_Product_Information_Tuple", resourceCulture); - } - } - - public static string Undecoded_tuple_ID_0 { - get { - return ResourceManager.GetString("Undecoded_tuple_ID_0", resourceCulture); - } - } - - public static string PCMCIA_CIS_returned_no_tuples { - get { - return ResourceManager.GetString("PCMCIA_CIS_returned_no_tuples", resourceCulture); - } - } - - public static string Title_CIS { - get { - return ResourceManager.GetString("Title_CIS", resourceCulture); - } - } - - public static string ButtonLabel_Save_PCMCIA_CIS_to_file { - get { - return ResourceManager.GetString("ButtonLabel_Save_PCMCIA_CIS_to_file", resourceCulture); - } - } - - public static string Title_Header { - get { - return ResourceManager.GetString("Title_Header", resourceCulture); - } - } - - public static string MODE_0_Subpage_1 { - get { - return ResourceManager.GetString("MODE_0_Subpage_1", resourceCulture); - } - } - - public static string MODE_0 { - get { - return ResourceManager.GetString("MODE_0", resourceCulture); - } - } - - public static string Undecoded { - get { - return ResourceManager.GetString("Undecoded", resourceCulture); - } - } - - public static string Error_decoding_page_please_open_an_issue { - get { - return ResourceManager.GetString("Error_decoding_page_please_open_an_issue", resourceCulture); - } - } - - public static string ASCII_Page_0 { - get { - return ResourceManager.GetString("ASCII_Page_0", resourceCulture); - } - } - - public static string Unit_Serial_Number { - get { - return ResourceManager.GetString("Unit_Serial_Number", resourceCulture); - } - } - - public static string SCSI_Implemented_operating_definitions { - get { - return ResourceManager.GetString("SCSI_Implemented_operating_definitions", resourceCulture); - } - } - - public static string ASCII_implemented_operating_definitions { - get { - return ResourceManager.GetString("ASCII_implemented_operating_definitions", resourceCulture); - } - } - - public static string SCSI_Device_identification { - get { - return ResourceManager.GetString("SCSI_Device_identification", resourceCulture); - } - } - - public static string SCSI_Software_Interface_Identifiers { - get { - return ResourceManager.GetString("SCSI_Software_Interface_Identifiers", resourceCulture); - } - } - - public static string SCSI_Management_Network_Addresses { - get { - return ResourceManager.GetString("SCSI_Management_Network_Addresses", resourceCulture); - } - } - - public static string SCSI_Extended_INQUIRY_Data { - get { - return ResourceManager.GetString("SCSI_Extended_INQUIRY_Data", resourceCulture); - } - } - - public static string SCSI_to_ATA_Translation_Layer_Data { - get { - return ResourceManager.GetString("SCSI_to_ATA_Translation_Layer_Data", resourceCulture); - } - } - - public static string SCSI_Sequential_access_Device_Capabilities { - get { - return ResourceManager.GetString("SCSI_Sequential_access_Device_Capabilities", resourceCulture); - } - } - - public static string Manufacturer_assigned_Serial_Number { - get { - return ResourceManager.GetString("Manufacturer_assigned_Serial_Number", resourceCulture); - } - } - - public static string TapeAlert_Supported_Flags_Bitmap { - get { - return ResourceManager.GetString("TapeAlert_Supported_Flags_Bitmap", resourceCulture); - } - } - - public static string Automation_Device_Serial_Number { - get { - return ResourceManager.GetString("Automation_Device_Serial_Number", resourceCulture); - } - } - - public static string Data_Transfer_Device_Element_Address { - get { - return ResourceManager.GetString("Data_Transfer_Device_Element_Address", resourceCulture); - } - } - - public static string Quantum_Firmware_Build_Information_page { - get { - return ResourceManager.GetString("Quantum_Firmware_Build_Information_page", resourceCulture); - } - } - - public static string Seagate_Firmware_Numbers_page { - get { - return ResourceManager.GetString("Seagate_Firmware_Numbers_page", resourceCulture); - } - } - - public static string IBM_Drive_Component_Revision_Levels_page { - get { - return ResourceManager.GetString("IBM_Drive_Component_Revision_Levels_page", resourceCulture); - } - } - - public static string IBM_Drive_Serial_Numbers_page { - get { - return ResourceManager.GetString("IBM_Drive_Serial_Numbers_page", resourceCulture); - } - } - - public static string Certance_Drive_Component_Revision_Levels_page { - get { - return ResourceManager.GetString("Certance_Drive_Component_Revision_Levels_page", resourceCulture); - } - } - - public static string Head_Assembly_Serial_Number { - get { - return ResourceManager.GetString("Head_Assembly_Serial_Number", resourceCulture); - } - } - - public static string Reel_Motor_1_Serial_Number { - get { - return ResourceManager.GetString("Reel_Motor_1_Serial_Number", resourceCulture); - } - } - - public static string Reel_Motor_2_Serial_Number { - get { - return ResourceManager.GetString("Reel_Motor_2_Serial_Number", resourceCulture); - } - } - - public static string Board_Serial_Number { - get { - return ResourceManager.GetString("Board_Serial_Number", resourceCulture); - } - } - - public static string Base_Mechanical_Serial_Number { - get { - return ResourceManager.GetString("Base_Mechanical_Serial_Number", resourceCulture); - } - } - - public static string HP_Drive_Firmware_Revision_Levels_page { - get { - return ResourceManager.GetString("HP_Drive_Firmware_Revision_Levels_page", resourceCulture); - } - } - - public static string HP_Drive_Hardware_Revision_Levels_page { - get { - return ResourceManager.GetString("HP_Drive_Hardware_Revision_Levels_page", resourceCulture); - } - } - - public static string HP_Drive_PCA_Revision_Levels_page { - get { - return ResourceManager.GetString("HP_Drive_PCA_Revision_Levels_page", resourceCulture); - } - } - - public static string HP_Drive_Mechanism_Revision_Levels_page { - get { - return ResourceManager.GetString("HP_Drive_Mechanism_Revision_Levels_page", resourceCulture); - } - } - - public static string HP_Drive_Head_Assembly_Revision_Levels_page { - get { - return ResourceManager.GetString("HP_Drive_Head_Assembly_Revision_Levels_page", resourceCulture); - } - } - - public static string HP_Drive_ACI_Revision_Levels_page { - get { - return ResourceManager.GetString("HP_Drive_ACI_Revision_Levels_page", resourceCulture); - } - } - - public static string Certance_drive_status_page { - get { - return ResourceManager.GetString("Certance_drive_status_page", resourceCulture); - } - } - - public static string Page_0_h { - get { - return ResourceManager.GetString("Page_0_h", resourceCulture); - } - } - - public static string Unknown_feature { - get { - return ResourceManager.GetString("Unknown_feature", resourceCulture); - } - } - - public static string Title_INQUIRY { - get { - return ResourceManager.GetString("Title_INQUIRY", resourceCulture); - } - } - - public static string Title_SCSI_INQUIRY { - get { - return ResourceManager.GetString("Title_SCSI_INQUIRY", resourceCulture); - } - } - - public static string Title_MODE_SENSE { - get { - return ResourceManager.GetString("Title_MODE_SENSE", resourceCulture); - } - } - - public static string Title_Page { - get { - return ResourceManager.GetString("Title_Page", resourceCulture); - } - } - - public static string ButtonLabel_Save_MODE_SENSE_6_response_to_file { - get { - return ResourceManager.GetString("ButtonLabel_Save_MODE_SENSE_6_response_to_file", resourceCulture); - } - } - - public static string ButtonLabel_Save_MODE_SENSE_10_response_to_file { - get { - return ResourceManager.GetString("ButtonLabel_Save_MODE_SENSE_10_response_to_file", resourceCulture); - } - } - - public static string Title_EVPD { - get { - return ResourceManager.GetString("Title_EVPD", resourceCulture); - } - } - - public static string ButtonLabel_Save_EVPD_page_to_file { - get { - return ResourceManager.GetString("ButtonLabel_Save_EVPD_page_to_file", resourceCulture); - } - } - - public static string Title_MMC_FEATURES { - get { - return ResourceManager.GetString("Title_MMC_FEATURES", resourceCulture); - } - } - - public static string Title_Feature { - get { - return ResourceManager.GetString("Title_Feature", resourceCulture); - } - } - - public static string ButtonLabel_Save_MMC_GET_CONFIGURATION_response_to_file { - get { - return ResourceManager.GetString("ButtonLabel_Save_MMC_GET_CONFIGURATION_response_to_file", resourceCulture); - } - } - - public static string Title_Disc_Manufacturing_Information { - get { - return ResourceManager.GetString("Title_Disc_Manufacturing_Information", resourceCulture); - } - } - - public static string Title_Security_Sector { - get { - return ResourceManager.GetString("Title_Security_Sector", resourceCulture); - } - } - - public static string ButtonLabel_Save_Xbox_Security_Sector { - get { - return ResourceManager.GetString("ButtonLabel_Save_Xbox_Security_Sector", resourceCulture); - } - } - - public static string Title_Tag { - get { - return ResourceManager.GetString("Title_Tag", resourceCulture); - } - } - - public static string Title_HexView { - get { - return ResourceManager.GetString("Title_HexView", resourceCulture); - } - } - - public static string Title_Decoded { - get { - return ResourceManager.GetString("Title_Decoded", resourceCulture); - } - } - - public static string Title_Track_checksums { - get { - return ResourceManager.GetString("Title_Track_checksums", resourceCulture); - } - } - - public static string Title_Algorithms { - get { - return ResourceManager.GetString("Title_Algorithms", resourceCulture); - } - } - - public static string Title_Hash { - get { - return ResourceManager.GetString("Title_Hash", resourceCulture); - } - } - - public static string Title_Media_checksums { - get { - return ResourceManager.GetString("Title_Media_checksums", resourceCulture); - } - } - - public static string ButtonLabel_Start { - get { - return ResourceManager.GetString("ButtonLabel_Start", resourceCulture); - } - } - - public static string ButtonLabel_Stop { - get { - return ResourceManager.GetString("ButtonLabel_Stop", resourceCulture); - } - } - - public static string Source_image { - get { - return ResourceManager.GetString("Source_image", resourceCulture); - } - } - - public static string Output_format { - get { - return ResourceManager.GetString("Output_format", resourceCulture); - } - } - - public static string ButtonLabel_Choose { - get { - return ResourceManager.GetString("ButtonLabel_Choose", resourceCulture); - } - } - - public static string ButtonLabel_Get_from_source_image { - get { - return ResourceManager.GetString("ButtonLabel_Get_from_source_image", resourceCulture); - } - } - - public static string Title_Metadata { - get { - return ResourceManager.GetString("Title_Metadata", resourceCulture); - } - } - - public static string Title_Title { - get { - return ResourceManager.GetString("Title_Title", resourceCulture); - } - } - - public static string Title_Barcode { - get { - return ResourceManager.GetString("Title_Barcode", resourceCulture); - } - } - - public static string Title_Part_number { - get { - return ResourceManager.GetString("Title_Part_number", resourceCulture); - } - } - - public static string Title_Number_in_sequence { - get { - return ResourceManager.GetString("Title_Number_in_sequence", resourceCulture); - } - } - - public static string Title_Last_media_of_the_sequence { - get { - return ResourceManager.GetString("Title_Last_media_of_the_sequence", resourceCulture); - } - } - - public static string Title_Drive { - get { - return ResourceManager.GetString("Title_Drive", resourceCulture); - } - } - - public static string Title_Firmware_revision { - get { - return ResourceManager.GetString("Title_Firmware_revision", resourceCulture); - } - } - - public static string Title_Existing_Aaru_Metadata_sidecar { - get { - return ResourceManager.GetString("Title_Existing_Aaru_Metadata_sidecar", resourceCulture); - } - } - - public static string Title_From_image { - get { - return ResourceManager.GetString("Title_From_image", resourceCulture); - } - } - - public static string Title_Existing_resume_file { - get { - return ResourceManager.GetString("Title_Existing_resume_file", resourceCulture); - } - } - - public static string _From_image_ { - get { - return ResourceManager.GetString("_From_image_", resourceCulture); - } - } - - public static string Error_trying_to_find_selected_plugin { - get { - return ResourceManager.GetString("Error_trying_to_find_selected_plugin", resourceCulture); - } - } - - public static string Creating_output_image { - get { - return ResourceManager.GetString("Creating_output_image", resourceCulture); - } - } - - public static string Setting_image_metadata { - get { - return ResourceManager.GetString("Setting_image_metadata", resourceCulture); - } - } - - public static string Setting_tracks_list { - get { - return ResourceManager.GetString("Setting_tracks_list", resourceCulture); - } - } - - public static string Converting_sectors { - get { - return ResourceManager.GetString("Converting_sectors", resourceCulture); - } - } - - public static string Converting_sectors_0_to_1_2_done { - get { - return ResourceManager.GetString("Converting_sectors_0_to_1_2_done", resourceCulture); - } - } - - public static string Converting_tag_0 { - get { - return ResourceManager.GetString("Converting_tag_0", resourceCulture); - } - } - - public static string Converting_tag_0_for_sectors_1_to_2_3_done { - get { - return ResourceManager.GetString("Converting_tag_0_for_sectors_1_to_2_3_done", resourceCulture); - } - } - - public static string Converting_sectors_in_track_0 { - get { - return ResourceManager.GetString("Converting_sectors_in_track_0", resourceCulture); - } - } - - public static string Converting_sectors_0_to_1_in_track_2_3_done { - get { - return ResourceManager.GetString("Converting_sectors_0_to_1_in_track_2_3_done", resourceCulture); - } - } - - public static string Converting_tag_0_for_sectors_1_to_2_in_track_3_4_done { - get { - return ResourceManager.GetString("Converting_tag_0_for_sectors_1_to_2_in_track_3_4_done", resourceCulture); - } - } - - public static string Error_0_writing_dump_hardware_list_to_output_image { - get { - return ResourceManager.GetString("Error_0_writing_dump_hardware_list_to_output_image", resourceCulture); - } - } - - public static string Writing_Aaru_Metadata_to_output_image { - get { - return ResourceManager.GetString("Writing_Aaru_Metadata_to_output_image", resourceCulture); - } - } - - public static string Error_0_writing_Aaru_Metadata_to_output_image { - get { - return ResourceManager.GetString("Error_0_writing_Aaru_Metadata_to_output_image", resourceCulture); - } - } - - public static string Operation_canceled_the_output_file_is_not_correct { - get { - return ResourceManager.GetString("Operation_canceled_the_output_file_is_not_correct", resourceCulture); - } - } - - public static string Title_Warning { - get { - return ResourceManager.GetString("Title_Warning", resourceCulture); - } - } - - public static string Title_Conversion_success { - get { - return ResourceManager.GetString("Title_Conversion_success", resourceCulture); - } - } - - public static string Some_warnings_happened_Check_console { - get { - return ResourceManager.GetString("Some_warnings_happened_Check_console", resourceCulture); + return ResourceManager.GetString("Image_Convert_Command_Description", resourceCulture); } } + /// + /// Looks up a localized string similar to Image converted successfully.. + /// public static string Image_converted_successfully { get { return ResourceManager.GetString("Image_converted_successfully", resourceCulture); } } - public static string Dialog_Choose_destination_file { + /// + /// Looks up a localized string similar to Creates CICM Metadata XML sidecar.. + /// + public static string Image_Create_Sidecar_Command_Description { get { - return ResourceManager.GetString("Dialog_Choose_destination_file", resourceCulture); + return ResourceManager.GetString("Image_Create_Sidecar_Command_Description", resourceCulture); } } - public static string Dialog_Choose_existing_metadata_sidecar { + /// + /// Looks up a localized string similar to Decodes and pretty prints disk and/or sector tags.. + /// + public static string Image_Decode_Command_Description { get { - return ResourceManager.GetString("Dialog_Choose_existing_metadata_sidecar", resourceCulture); + return ResourceManager.GetString("Image_Decode_Command_Description", resourceCulture); } } - public static string Dialog_Aaru_Metadata { + /// + /// Looks up a localized string similar to Calculates entropy and/or duplicated sectors of an image.. + /// + public static string Image_Entropy_Command_Description { get { - return ResourceManager.GetString("Dialog_Aaru_Metadata", resourceCulture); + return ResourceManager.GetString("Image_Entropy_Command_Description", resourceCulture); } } + /// + /// Looks up a localized string similar to Image format identified by {0}.. + /// + public static string Image_format_identified_by_0 { + get { + return ResourceManager.GetString("Image_format_identified_by_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image format identified by {0} ({1}).. + /// + public static string Image_format_identified_by_0_1 { + get { + return ResourceManager.GetString("Image_format_identified_by_0_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image format not identified.. + /// + public static string Image_format_not_identified { + get { + return ResourceManager.GetString("Image_format_not_identified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image format not identified, not proceeding with analysis.. + /// + public static string Image_format_not_identified_not_proceeding_with_analysis { + get { + return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_analysis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image format not identified, not proceeding with file extraction.. + /// + public static string Image_format_not_identified_not_proceeding_with_file_extraction { + get { + return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_file_extraction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image format not identified, not proceeding with listing.. + /// + public static string Image_format_not_identified_not_proceeding_with_listing { + get { + return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_listing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image format not identified, not proceeding with sidecar creation.. + /// + public static string Image_format_not_identified_not_proceeding_with_sidecar_creation { + get { + return ResourceManager.GetString("Image_format_not_identified_not_proceeding_with_sidecar_creation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image has {0} sectors.. + /// + public static string Image_has_0_sectors { + get { + return ResourceManager.GetString("Image_has_0_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image identifies disk type as {0}.. + /// + public static string Image_identifies_disk_type_as_0 { + get { + return ResourceManager.GetString("Image_identifies_disk_type_as_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image identifies media type as {0}.. + /// + public static string Image_identifies_media_type_as_0 { + get { + return ResourceManager.GetString("Image_identifies_media_type_as_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identifies a media image and shows information about the media it represents and metadata.. + /// + public static string Image_Info_Command_Description { + get { + return ResourceManager.GetString("Image_Info_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists all options supported by writable media images.. + /// + public static string Image_Options_Command_Description { + get { + return ResourceManager.GetString("Image_Options_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image partitioned status differ. + /// + public static string Image_partitioned_status_differ { + get { + return ResourceManager.GetString("Image_partitioned_status_differ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prints a sector, in hexadecimal values, to the console.. + /// + public static string Image_Print_Command_Description { + get { + return ResourceManager.GetString("Image_Print_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image sector size differ. + /// + public static string Image_sector_size_differ { + get { + return ResourceManager.GetString("Image_sector_size_differ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image sectors differ. + /// + public static string Image_sectors_differ { + get { + return ResourceManager.GetString("Image_sectors_differ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image session status differ. + /// + public static string Image_session_status_differ { + get { + return ResourceManager.GetString("Image_session_status_differ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verifies a disc image integrity, and if supported, sector integrity.. + /// + public static string Image_Verify_Command_Description { + get { + return ResourceManager.GetString("Image_Verify_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image without headers is {0} bytes.. + /// + public static string Image_without_headers_is_0_bytes { + get { + return ResourceManager.GetString("Image_without_headers_is_0_bytes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Images differ. + /// + public static string Images_differ { + get { + return ResourceManager.GetString("Images_differ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Images do not differ. + /// + public static string Images_do_not_differ { + get { + return ResourceManager.GetString("Images_do_not_differ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Incorrect metadata sidecar file.... + /// public static string Incorrect_metadata_sidecar_file { get { return ResourceManager.GetString("Incorrect_metadata_sidecar_file", resourceCulture); } } - public static string Dialog_Choose_existing_resume_file { + /// + /// Looks up a localized string similar to Incorrect metadata sidecar file, not continuing.... + /// + public static string Incorrect_metadata_sidecar_file_not_continuing { get { - return ResourceManager.GetString("Dialog_Choose_existing_resume_file", resourceCulture); + return ResourceManager.GetString("Incorrect_metadata_sidecar_file_not_continuing", resourceCulture); } } - public static string Resume_file_does_not_contain_dump_hardware_information { + /// + /// Looks up a localized string similar to Incorrect resume file.... + /// + public static string Incorrect_resume_file { get { - return ResourceManager.GetString("Resume_file_does_not_contain_dump_hardware_information", resourceCulture); - } - } - - public static string Title_Track_entropy { - get { - return ResourceManager.GetString("Title_Track_entropy", resourceCulture); - } - } - - public static string Title_Entropy { - get { - return ResourceManager.GetString("Title_Entropy", resourceCulture); - } - } - - public static string Title_Unique_sectors { - get { - return ResourceManager.GetString("Title_Unique_sectors", resourceCulture); - } - } - - public static string Title_Calculating_entropy { - get { - return ResourceManager.GetString("Title_Calculating_entropy", resourceCulture); - } - } - - public static string Title_Destination_file { - get { - return ResourceManager.GetString("Title_Destination_file", resourceCulture); - } - } - - public static string Title_LBA { - get { - return ResourceManager.GetString("Title_LBA", resourceCulture); - } - } - - public static string Disc_image_does_not_support_verification { - get { - return ResourceManager.GetString("Disc_image_does_not_support_verification", resourceCulture); - } - } - - public static string Checking_media_image { - get { - return ResourceManager.GetString("Checking_media_image", resourceCulture); - } - } - - public static string Verifying_track_0_of_1 { - get { - return ResourceManager.GetString("Verifying_track_0_of_1", resourceCulture); - } - } - - public static string All_sectors_contain_errors { - get { - return ResourceManager.GetString("All_sectors_contain_errors", resourceCulture); - } - } - - public static string All_sectors_are_unknown { - get { - return ResourceManager.GetString("All_sectors_are_unknown", resourceCulture); - } - } - - public static string Unknown_LBAs { - get { - return ResourceManager.GetString("Unknown_LBAs", resourceCulture); - } - } - - public static string Title_Images { - get { - return ResourceManager.GetString("Title_Images", resourceCulture); - } - } - - public static string Menu_File { - get { - return ResourceManager.GetString("Menu_File", resourceCulture); - } - } - - public static string Menu_Open { - get { - return ResourceManager.GetString("Menu_Open", resourceCulture); - } - } - - public static string Menu_Settings { - get { - return ResourceManager.GetString("Menu_Settings", resourceCulture); - } - } - - public static string Menu_Exit { - get { - return ResourceManager.GetString("Menu_Exit", resourceCulture); - } - } - - public static string Menu_Devices { - get { - return ResourceManager.GetString("Menu_Devices", resourceCulture); - } - } - - public static string Menu_Refresh { - get { - return ResourceManager.GetString("Menu_Refresh", resourceCulture); - } - } - - public static string Menu_Window { - get { - return ResourceManager.GetString("Menu_Window", resourceCulture); - } - } - - public static string Menu_Console { - get { - return ResourceManager.GetString("Menu_Console", resourceCulture); - } - } - - public static string Menu_Help { - get { - return ResourceManager.GetString("Menu_Help", resourceCulture); - } - } - - public static string Menu_Encodings { - get { - return ResourceManager.GetString("Menu_Encodings", resourceCulture); - } - } - - public static string Menu_Plugins { - get { - return ResourceManager.GetString("Menu_Plugins", resourceCulture); - } - } - - public static string Menu_Statistics { - get { - return ResourceManager.GetString("Menu_Statistics", resourceCulture); - } - } - - public static string Menu_About { - get { - return ResourceManager.GetString("Menu_About", resourceCulture); - } - } - - public static string Menu_Refresh_devices { - get { - return ResourceManager.GetString("Menu_Refresh_devices", resourceCulture); - } - } - - public static string Menu_Close_all_images { - get { - return ResourceManager.GetString("Menu_Close_all_images", resourceCulture); - } - } - - public static string Welcome_to_Aaru { - get { - return ResourceManager.GetString("Welcome_to_Aaru", resourceCulture); - } - } - - public static string Error_0_opening_device { - get { - return ResourceManager.GetString("Error_0_opening_device", resourceCulture); - } - } - - public static string Non_removable_device_commands_not_yet_implemented { - get { - return ResourceManager.GetString("Non_removable_device_commands_not_yet_implemented", resourceCulture); - } - } - - public static string No_media_inserted { - get { - return ResourceManager.GetString("No_media_inserted", resourceCulture); - } - } - - public static string Dialog_Choose_image_to_open { - get { - return ResourceManager.GetString("Dialog_Choose_image_to_open", resourceCulture); - } - } - - public static string Error_0_opening_image_format { - get { - return ResourceManager.GetString("Error_0_opening_image_format", resourceCulture); - } - } - - public static string No_error_given { - get { - return ResourceManager.GetString("No_error_given", resourceCulture); - } - } - - public static string Exception_reading_file { - get { - return ResourceManager.GetString("Exception_reading_file", resourceCulture); - } - } - - public static string Refreshing_devices { - get { - return ResourceManager.GetString("Refreshing_devices", resourceCulture); - } - } - - public static string Found_supported_device_model_0_by_manufacturer_1_on_bus_2_and_path_3 { - get { - return ResourceManager.GetString("Found_supported_device_model_0_by_manufacturer_1_on_bus_2_and_path_3", resourceCulture); - } - } - - public static string Continue_dumping_whatever_happens { - get { - return ResourceManager.GetString("Continue_dumping_whatever_happens", resourceCulture); - } - } - - public static string Retry_passes { - get { - return ResourceManager.GetString("Retry_passes", resourceCulture); - } - } - - public static string Create_use_resume_mapfile { - get { - return ResourceManager.GetString("Create_use_resume_mapfile", resourceCulture); - } - } - - public static string Try_to_read_track_1_pregap { - get { - return ResourceManager.GetString("Try_to_read_track_1_pregap", resourceCulture); - } - } - - public static string Skipped_sectors_on_error { - get { - return ResourceManager.GetString("Skipped_sectors_on_error", resourceCulture); - } - } - - public static string Create_Aaru_Metadata_sidecar { - get { - return ResourceManager.GetString("Create_Aaru_Metadata_sidecar", resourceCulture); - } - } - - public static string Trim_errors_from_skipped_sectors { - get { - return ResourceManager.GetString("Trim_errors_from_skipped_sectors", resourceCulture); - } - } - - public static string Encoding_to_use_on_metadata_sidecar_creation { - get { - return ResourceManager.GetString("Encoding_to_use_on_metadata_sidecar_creation", resourceCulture); - } - } - - public static string Writing_image_to { - get { - return ResourceManager.GetString("Writing_image_to", resourceCulture); - } - } - - public static string Title_Log { - get { - return ResourceManager.GetString("Title_Log", resourceCulture); + return ResourceManager.GetString("Incorrect_resume_file", resourceCulture); } } + /// + /// Looks up a localized string similar to Incorrect resume file, cannot use it.... + /// public static string Incorrect_resume_file_cannot_use_it { get { return ResourceManager.GetString("Incorrect_resume_file_cannot_use_it", resourceCulture); } } - public static string Media_already_dumped_correctly_please_choose_another_destination { + /// + /// Looks up a localized string similar to Incorrect resume file, not continuing.... + /// + public static string Incorrect_resume_file_not_continuing { get { - return ResourceManager.GetString("Media_already_dumped_correctly_please_choose_another_destination", resourceCulture); + return ResourceManager.GetString("Incorrect_resume_file_not_continuing", resourceCulture); } } - public static string Cannot_open_output_plugin { + /// + /// Looks up a localized string similar to Incorrect subchannel type "{0}" requested.. + /// + public static string Incorrect_subchannel_type_0_requested { get { - return ResourceManager.GetString("Cannot_open_output_plugin", resourceCulture); - } - } - - public static string Kb_s { - get { - return ResourceManager.GetString("Kb_s", resourceCulture); - } - } - - public static string Title_Block { - get { - return ResourceManager.GetString("Title_Block", resourceCulture); + return ResourceManager.GetString("Incorrect_subchannel_type_0_requested", resourceCulture); } } + /// + /// Looks up a localized string similar to Initializing console.... + /// public static string Initializing_console { get { return ResourceManager.GetString("Initializing_console", resourceCulture); } } - public static string Aaru_started { + /// + /// Looks up a localized string similar to Input format contains a tape image and is not supported by output format, not continuing.... + /// + public static string Input_format_contains_a_tape_image_and_is_not_supported_by_output_format { get { - return ResourceManager.GetString("Aaru_started", resourceCulture); + return ResourceManager.GetString("Input_format_contains_a_tape_image_and_is_not_supported_by_output_format", resourceCulture); } } - public static string Loading_settings { + /// + /// Looks up a localized string similar to Input image format identified by {0}.. + /// + public static string Input_image_format_identified_by_0 { get { - return ResourceManager.GetString("Loading_settings", resourceCulture); + return ResourceManager.GetString("Input_image_format_identified_by_0", resourceCulture); } } - public static string Migrating_local_database { + /// + /// Looks up a localized string similar to Input image format identified by {0} ({1}).. + /// + public static string Input_image_format_identified_by_0_1 { get { - return ResourceManager.GetString("Migrating_local_database", resourceCulture); + return ResourceManager.GetString("Input_image_format_identified_by_0_1", resourceCulture); } } - public static string Updating_main_database { + /// + /// Looks up a localized string similar to Input image format not identified, not proceeding with conversion.. + /// + public static string Input_image_format_not_identified { get { - return ResourceManager.GetString("Updating_main_database", resourceCulture); + return ResourceManager.GetString("Input_image_format_not_identified", resourceCulture); } } - public static string Checking_GDPR_compliance { + /// + /// Looks up a localized string similar to Input image is not returning raw sectors, use force if you want to continue.... + /// + public static string Input_image_is_not_returning_raw_sectors_use_force_if_you_want_to_continue { get { - return ResourceManager.GetString("Checking_GDPR_compliance", resourceCulture); + return ResourceManager.GetString("Input_image_is_not_returning_raw_sectors_use_force_if_you_want_to_continue", resourceCulture); } } - public static string Loading_statistics { + /// + /// Looks up a localized string similar to Input image path. + /// + public static string Input_image_path { get { - return ResourceManager.GetString("Loading_statistics", resourceCulture); + return ResourceManager.GetString("Input_image_path", resourceCulture); } } - public static string Registering_encodings { + /// + /// Looks up a localized string similar to Invalid characters found in list of files, exiting.... + /// + public static string Invalid_characters_found_in_list_of_files { get { - return ResourceManager.GetString("Registering_encodings", resourceCulture); + return ResourceManager.GetString("Invalid_characters_found_in_list_of_files", resourceCulture); } } - public static string Saving_statistics { + /// + /// Looks up a localized string similar to Invalid geometry specified. + /// + public static string Invalid_geometry_specified { get { - return ResourceManager.GetString("Saving_statistics", resourceCulture); + return ResourceManager.GetString("Invalid_geometry_specified", resourceCulture); } } + /// + /// Looks up a localized string similar to Invalid item in list. + /// + public static string Invalid_item_in_list { + get { + return ResourceManager.GetString("Invalid_item_in_list", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid list of items. + /// + public static string Invalid_list_of_items { + get { + return ResourceManager.GetString("Invalid_list_of_items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid number of cylinders specified. + /// + public static string Invalid_number_of_cylinders_specified { + get { + return ResourceManager.GetString("Invalid_number_of_cylinders_specified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid number of heads specified. + /// + public static string Invalid_number_of_heads_specified { + get { + return ResourceManager.GetString("Invalid_number_of_heads_specified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid sectors per track specified. + /// + public static string Invalid_sectors_per_track_specified { + get { + return ResourceManager.GetString("Invalid_sectors_per_track_specified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening image file.... + /// + public static string Invoke_Opening_image_file { + get { + return ResourceManager.GetString("Invoke_Opening_image_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is forcing only first session. + /// + public static string Is_forcing_only_first_session { + get { + return ResourceManager.GetString("Is_forcing_only_first_session", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is hiding CD-Rs. + /// + public static string Is_hiding_CD_Rs { + get { + return ResourceManager.GetString("Is_hiding_CD_Rs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is the device natively FireWire (in case of doubt, press Y)?. + /// + public static string Is_the_device_natively_FireWire { + get { + return ResourceManager.GetString("Is_the_device_natively_FireWire", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is the device natively USB (in case of doubt, press Y)?. + /// + public static string Is_the_device_natively_USB { + get { + return ResourceManager.GetString("Is_the_device_natively_USB", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is the media removable from the reading/writing elements?. + /// + public static string Is_the_media_removable { + get { + return ResourceManager.GetString("Is_the_media_removable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Is the media removable from the reading/writing elements (flash memories ARE NOT removable)?. + /// + public static string Is_the_media_removable_flash_is_not { + get { + return ResourceManager.GetString("Is_the_media_removable_flash_is_not", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items must be a IList<(ulong, double)> with ulong being the block and double being the time spent reading it, or NaN for an error.. + /// + public static string Items_must_be_a_IList_ulong_double { + get { + return ResourceManager.GetString("Items_must_be_a_IList_ulong_double", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kb/s. + /// + public static string Kb_s { + get { + return ResourceManager.GetString("Kb_s", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to About. + /// + public static string Label_About { + get { + return ResourceManager.GetString("Label_About", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authors. + /// + public static string Label_Authors { + get { + return ResourceManager.GetString("Label_Authors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Libraries. + /// + public static string Label_Libraries { + get { + return ResourceManager.GetString("Label_Libraries", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to License: GNU General Public License Version 3. + /// + public static string Label_License { + get { + return ResourceManager.GetString("Label_License", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last media of the sequence the media represented by the image corresponds to.. + /// + public static string Last_media_of_sequence_by_image { + get { + return ResourceManager.GetString("Last_media_of_sequence_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last PoweRec used speed. + /// + public static string Last_PoweRec_used_speed { + get { + return ResourceManager.GetString("Last_PoweRec_used_speed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LBAs with error:. + /// + public static string LBAs_with_error { + get { + return ResourceManager.GetString("LBAs_with_error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LBAs without checksum:. + /// + public static string LBAs_without_checksum { + get { + return ResourceManager.GetString("LBAs_without_checksum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Level 1 Version / Product Information Tuple. + /// + public static string Level_1_Version_Product_Information_Tuple { + get { + return ResourceManager.GetString("Level_1_Version_Product_Information_Tuple", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists all supported text encodings and code pages.. + /// + public static string List_Encodings_Command_Description { + get { + return ResourceManager.GetString("List_Encodings_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists all supported disc images, partition schemes and file systems.. + /// + public static string List_Formats_Command_Description { + get { + return ResourceManager.GetString("List_Formats_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists all namespaces supported by read-only filesystems.. + /// + public static string List_Namespaces_Command_Description { + get { + return ResourceManager.GetString("List_Namespaces_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Listing extended attributes.... + /// + public static string Listing_extended_attributes { + get { + return ResourceManager.GetString("Listing_extended_attributes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Loading main window.... + /// public static string Loading_main_window { get { return ResourceManager.GetString("Loading_main_window", resourceCulture); } } - public static string Title_Sector { + /// + /// Looks up a localized string similar to Loading settings.... + /// + public static string Loading_settings { get { - return ResourceManager.GetString("Title_Sector", resourceCulture); + return ResourceManager.GetString("Loading_settings", resourceCulture); } } + /// + /// Looks up a localized string similar to Loading statistics.... + /// + public static string Loading_statistics { + get { + return ResourceManager.GetString("Loading_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log saved at {0}. + /// + public static string Log_saved_at_0 { + get { + return ResourceManager.GetString("Log_saved_at_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Info. + /// + public static string LogEntry_Type_Info { + get { + return ResourceManager.GetString("LogEntry_Type_Info", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manufacturer-assigned Serial Number. + /// + public static string Manufacturer_assigned_Serial_Number { + get { + return ResourceManager.GetString("Manufacturer_assigned_Serial_Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manufacturer Identification Tuple. + /// + public static string Manufacturer_Identification_Tuple { + get { + return ResourceManager.GetString("Manufacturer_Identification_Tuple", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manufacturer of the drive used to read the media represented by the image.. + /// + public static string Manufacturer_of_drive_read_the_media_by_image { + get { + return ResourceManager.GetString("Manufacturer_of_drive_read_the_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manufacturer of the media represented by the image.. + /// + public static string Manufacturer_of_media_by_image { + get { + return ResourceManager.GetString("Manufacturer_of_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximum number of blocks to read at once.. + /// + public static string Maximum_number_of_blocks_to_read_at_once { + get { + return ResourceManager.GetString("Maximum_number_of_blocks_to_read_at_once", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximum PoweRec speed for currently inserted media:. + /// + public static string Maximum_PoweRec_speed_for_currently_inserted_media { + get { + return ResourceManager.GetString("Maximum_PoweRec_speed_for_currently_inserted_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media already dumped correctly, not continuing.... + /// + public static string Media_already_dumped_correctly_not_continuing { + get { + return ResourceManager.GetString("Media_already_dumped_correctly_not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media already dumped correctly, please choose another destination.... + /// + public static string Media_already_dumped_correctly_please_choose_another_destination { + get { + return ResourceManager.GetString("Media_already_dumped_correctly_please_choose_another_destination", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media barcode: {0}. + /// + public static string Media_barcode_0 { + get { + return ResourceManager.GetString("Media_barcode_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commands to manage media inserted in devices. + /// + public static string Media_Command_Family_Description { + get { + return ResourceManager.GetString("Media_Command_Family_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dumps the media inserted on a device to a media image.. + /// + public static string Media_Dump_Command_Description { + get { + return ResourceManager.GetString("Media_Dump_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media found in images statistics. + /// + public static string Media_found_in_images_statistics { + get { + return ResourceManager.GetString("Media_found_in_images_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media found in real device statistics. + /// + public static string Media_found_in_real_device_statistics { + get { + return ResourceManager.GetString("Media_found_in_real_device_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to image. + /// + public static string Media_found_type_image { + get { + return ResourceManager.GetString("Media_found_type_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to real. + /// + public static string Media_found_type_real { + get { + return ResourceManager.GetString("Media_found_type_real", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media geometry: {0} cylinders, {1} heads, {2} sectors per track. + /// + public static string Media_geometry_0_cylinders_1_heads_2_sectors_per_track { + get { + return ResourceManager.GetString("Media_geometry_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media image format statistics. + /// + public static string Media_image_format_statistics { + get { + return ResourceManager.GetString("Media_image_format_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media image path. + /// + public static string Media_image_path { + get { + return ResourceManager.GetString("Media_image_path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gets information about the media inserted on a device.. + /// + public static string Media_Info_Command_Description { + get { + return ResourceManager.GetString("Media_Info_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media model: {0}. + /// + public static string Media_model_0 { + get { + return ResourceManager.GetString("Media_model_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media part number: {0}. + /// + public static string Media_part_number_0 { + get { + return ResourceManager.GetString("Media_part_number_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scans the media inserted on a device.. + /// + public static string Media_Scan_Command_Description { + get { + return ResourceManager.GetString("Media_Scan_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media title: {0}. + /// + public static string Media_title_0 { + get { + return ResourceManager.GetString("Media_title_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media type differs. + /// + public static string Media_type_differs { + get { + return ResourceManager.GetString("Media_type_differs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Medium types currently inserted in device. + /// + public static string Medium_types_currently_inserted_in_device { + get { + return ResourceManager.GetString("Medium_types_currently_inserted_in_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Medium types supported by device:. + /// + public static string Medium_types_supported_by_device { + get { + return ResourceManager.GetString("Medium_types_supported_by_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _About. + /// + public static string Menu_About { + get { + return ResourceManager.GetString("Menu_About", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Close all images. + /// + public static string Menu_Close_all_images { + get { + return ResourceManager.GetString("Menu_Close_all_images", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Console. + /// + public static string Menu_Console { + get { + return ResourceManager.GetString("Menu_Console", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Devices. + /// + public static string Menu_Devices { + get { + return ResourceManager.GetString("Menu_Devices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Encodings. + /// + public static string Menu_Encodings { + get { + return ResourceManager.GetString("Menu_Encodings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E_xit. + /// + public static string Menu_Exit { + get { + return ResourceManager.GetString("Menu_Exit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _File. + /// + public static string Menu_File { + get { + return ResourceManager.GetString("Menu_File", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Help. + /// + public static string Menu_Help { + get { + return ResourceManager.GetString("Menu_Help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Open. + /// + public static string Menu_Open { + get { + return ResourceManager.GetString("Menu_Open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Plugins. + /// + public static string Menu_Plugins { + get { + return ResourceManager.GetString("Menu_Plugins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Refresh. + /// + public static string Menu_Refresh { + get { + return ResourceManager.GetString("Menu_Refresh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Refresh devices. + /// + public static string Menu_Refresh_devices { + get { + return ResourceManager.GetString("Menu_Refresh_devices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Settings. + /// + public static string Menu_Settings { + get { + return ResourceManager.GetString("Menu_Settings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Statistics. + /// + public static string Menu_Statistics { + get { + return ResourceManager.GetString("Menu_Statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to _Window. + /// + public static string Menu_Window { + get { + return ResourceManager.GetString("Menu_Window", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Migrating local database.... + /// + public static string Migrating_local_database { + get { + return ResourceManager.GetString("Migrating_local_database", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MODE {0:X2}h. + /// + public static string MODE_0 { + get { + return ResourceManager.GetString("MODE_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MODE {0:X2} Subpage {1:X2}. + /// + public static string MODE_0_Subpage_1 { + get { + return ResourceManager.GetString("MODE_0_Subpage_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Model of the drive used to read the media represented by the image.. + /// + public static string Model_of_drive_read_the_media_by_image { + get { + return ResourceManager.GetString("Model_of_drive_read_the_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Model of the media represented by the image.. + /// + public static string Model_of_media_by_image { + get { + return ResourceManager.GetString("Model_of_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More than one plugin supports requested extension.. + /// + public static string More_than_one_plugin_supports_requested_extension { + get { + return ResourceManager.GetString("More_than_one_plugin_supports_requested_extension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mounting filesystem.... + /// + public static string Mounting_filesystem { + get { + return ResourceManager.GetString("Mounting_filesystem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name of character encoding to use.. + /// + public static string Name_of_character_encoding_to_use { + get { + return ResourceManager.GetString("Name_of_character_encoding_to_use", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Namespace to use for filenames.. + /// + public static string Namespace_to_use_for_filenames { + get { + return ResourceManager.GetString("Namespace_to_use_for_filenames", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Namespaces for {0}:. + /// + public static string Namespaces_for_0 { + get { + return ResourceManager.GetString("Namespaces_for_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Need to specify more than 0 sectors to copy at once. + /// + public static string Need_to_specify_more_than_zero_sectors_to_copy_at_once { + get { + return ResourceManager.GetString("Need_to_specify_more_than_zero_sectors_to_copy_at_once", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New database version, updating.... + /// + public static string New_database_version_updating { + get { + return ResourceManager.GetString("New_database_version_updating", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No error given. + /// + public static string No_error_given { + get { + return ResourceManager.GetString("No_error_given", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No known devices attached.. + /// + public static string No_known_devices_attached { + get { + return ResourceManager.GetString("No_known_devices_attached", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No media inserted. + /// + public static string No_media_inserted { + get { + return ResourceManager.GetString("No_media_inserted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No partitions found. + /// + public static string No_partitions_found { + get { + return ResourceManager.GetString("No_partitions_found", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No partitions founds, not searching for filesystems. + /// + public static string No_partitions_founds_not_searching_for_filesystems { + get { + return ResourceManager.GetString("No_partitions_founds_not_searching_for_filesystems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No plugin supports requested extension.. + /// + public static string No_plugin_supports_requested_extension { + get { + return ResourceManager.GetString("No_plugin_supports_requested_extension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Non-removable device commands not yet implemented. + /// + public static string Non_removable_device_commands_not_yet_implemented { + get { + return ResourceManager.GetString("Non_removable_device_commands_not_yet_implemented", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not continuing.. + /// + public static string Not_continuing { + get { + return ResourceManager.GetString("Not_continuing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not decoding sectors tags. + /// + public static string Not_decoding_sectors_tags { + get { + return ResourceManager.GetString("Not_decoding_sectors_tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number in sequence for the media represented by the image.. + /// + public static string Number_in_sequence_for_media_by_image { + get { + return ResourceManager.GetString("Number_in_sequence_for_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening device.... + /// + public static string Opening_device { + get { + return ResourceManager.GetString("Opening_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening image 1 file.... + /// + public static string Opening_first_image_file { + get { + return ResourceManager.GetString("Opening_first_image_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening image 2 file.... + /// + public static string Opening_second_image_file { + get { + return ResourceManager.GetString("Opening_second_image_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Operation canceled, the output file is not correct.. + /// + public static string Operation_canceled_the_output_file_is_not_correct { + get { + return ResourceManager.GetString("Operation_canceled_the_output_file_is_not_correct", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options for {0}:. + /// + public static string Options_for_0 { + get { + return ResourceManager.GetString("Options_for_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For MMC/SD, use OS buffered reads if CMD23 is not supported.. + /// + public static string OS_buffered_reads_help { + get { + return ResourceManager.GetString("OS_buffered_reads_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output directory missing.. + /// + public static string Output_directory_missing { + get { + return ResourceManager.GetString("Output_directory_missing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output file already exists, not continuing.. + /// + public static string Output_file_already_exists { + get { + return ResourceManager.GetString("Output_file_already_exists", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output format. + /// + public static string Output_format { + get { + return ResourceManager.GetString("Output_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output format does not support media type, cannot continue.... + /// + public static string Output_format_does_not_support_media_type { + get { + return ResourceManager.GetString("Output_format_does_not_support_media_type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output image format: {0}.. + /// + public static string Output_image_format_0 { + get { + return ResourceManager.GetString("Output_image_format_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output image format: {0} ({1}).. + /// + public static string Output_image_format_0_1 { + get { + return ResourceManager.GetString("Output_image_format_0_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output image path. + /// + public static string Output_image_path { + get { + return ResourceManager.GetString("Output_image_path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Output image path. If filename starts with # and exists, it will be read as a list of output images, its extension will be used to detect the image output format, each media will be ejected and confirmation for the next one will be asked.. + /// + public static string Output_image_path_Dump_help { + get { + return ResourceManager.GetString("Output_image_path_Dump_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Page {0:X2}h. + /// + public static string Page_0_h { + get { + return ResourceManager.GetString("Page_0_h", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to all. + /// + public static string Parameter_response_all_sectors { + get { + return ResourceManager.GetString("Parameter_response_all_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parsed options:. + /// + public static string Parsed_options { + get { + return ResourceManager.GetString("Parsed_options", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Part number of the media represented by the image.. + /// + public static string Part_number_of_media_by_image { + get { + return ResourceManager.GetString("Part_number_of_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Partition {0}:. + /// + public static string Partition_0 { + get { + return ResourceManager.GetString("Partition_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Partitioning scheme statistics. + /// + public static string Partitioning_scheme_statistics { + get { + return ResourceManager.GetString("Partitioning_scheme_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Path. + /// + public static string Path { + get { + return ResourceManager.GetString("Path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Path: {0}. + /// + public static string Path_0 { + get { + return ResourceManager.GetString("Path_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pauses before exiting.. + /// + public static string Pauses_before_exiting { + get { + return ResourceManager.GetString("Pauses_before_exiting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PCMCIA CIS is {0} bytes. + /// + public static string PCMCIA_CIS_is_0_bytes { + get { + return ResourceManager.GetString("PCMCIA_CIS_is_0_bytes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PCMCIA CIS returned no tuples. + /// + public static string PCMCIA_CIS_returned_no_tuples { + get { + return ResourceManager.GetString("PCMCIA_CIS_returned_no_tuples", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please burn an audio trap disc before continuing.... + /// + public static string Please_burn_audio_trap_disc { + get { + return ResourceManager.GetString("Please_burn_audio_trap_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please insert it in the drive and press any key when it is ready.. + /// + public static string Please_insert_it_in_the_drive { + get { + return ResourceManager.GetString("Please_insert_it_in_the_drive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please insert media with title {0} and press any key to continue.... + /// + public static string Please_insert_media_with_title_0_and_press_any_key_to_continue_ { + get { + return ResourceManager.GetString("Please_insert_media_with_title_0_and_press_any_key_to_continue_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please manually remove file at {0}. + /// + public static string Please_manually_remove_file_at_0 { + get { + return ResourceManager.GetString("Please_manually_remove_file_at_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please remove any media from the device and press any key when it is out.. + /// + public static string Please_remove_any_media { + get { + return ResourceManager.GetString("Please_remove_any_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please use device-info command for ATA devices.. + /// + public static string Please_use_device_info_command_for_ATA_devices { + get { + return ResourceManager.GetString("Please_use_device_info_command_for_ATA_devices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please use device-info command for MMC/SD devices.. + /// + public static string Please_use_device_info_command_for_MMC_SD_devices { + get { + return ResourceManager.GetString("Please_use_device_info_command_for_MMC_SD_devices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PoweRec is enabled. + /// + public static string PoweRec_is_enabled { + get { + return ResourceManager.GetString("PoweRec_is_enabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prefix for saving binary information from device.. + /// + public static string Prefix_for_saving_binary_information { + get { + return ResourceManager.GetString("Prefix_for_saving_binary_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Press any key to exit.. + /// + public static string Press_any_key_to_exit { + get { + return ResourceManager.GetString("Press_any_key_to_exit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Print sectors with tags included.. + /// + public static string Print_sectors_with_tags_included { + get { + return ResourceManager.GetString("Print_sectors_with_tags_included", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pseudo-OverWrite Resources. + /// + public static string Pseudo_OverWrite_Resources { + get { + return ResourceManager.GetString("Pseudo_OverWrite_Resources", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quantum Firmware Build Information page. + /// + public static string Quantum_Firmware_Build_Information_page { + get { + return ResourceManager.GetString("Quantum_Firmware_Build_Information_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Read-only filesystems options:. + /// + public static string Read_only_filesystems_options { + get { + return ResourceManager.GetString("Read_only_filesystems_options", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Read-only media image formats ({0}):. + /// + public static string Read_only_media_image_formats_0 { + get { + return ResourceManager.GetString("Read_only_media_image_formats_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Read/write media image formats ({0}):. + /// + public static string Read_write_media_image_formats_0 { + get { + return ResourceManager.GetString("Read_write_media_image_formats_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Read/Write media images options:. + /// + public static string Read_Write_media_images_options { + get { + return ResourceManager.GetString("Read_Write_media_images_options", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reading data.... + /// + public static string Reading_data { + get { + return ResourceManager.GetString("Reading_data", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reading directory.... + /// + public static string Reading_directory { + get { + return ResourceManager.GetString("Reading_directory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reading extended attribute.... + /// + public static string Reading_extended_attribute { + get { + return ResourceManager.GetString("Reading_extended_attribute", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reading file {0}.... + /// + public static string Reading_file_0 { + get { + return ResourceManager.GetString("Reading_file_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reading sector.... + /// + public static string Reading_sector { + get { + return ResourceManager.GetString("Reading_sector", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recommended speed. + /// + public static string Recommended_speed { + get { + return ResourceManager.GetString("Recommended_speed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reel Motor 1 Serial Number. + /// + public static string Reel_Motor_1_Serial_Number { + get { + return ResourceManager.GetString("Reel_Motor_1_Serial_Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reel Motor 2 Serial Number. + /// + public static string Reel_Motor_2_Serial_Number { + get { + return ResourceManager.GetString("Reel_Motor_2_Serial_Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refreshing devices. + /// + public static string Refreshing_devices { + get { + return ResourceManager.GetString("Refreshing_devices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Registering encodings.... + /// + public static string Registering_encodings { + get { + return ResourceManager.GetString("Registering_encodings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tests connection to a Aaru Remote Server.. + /// + public static string Remote_Command_Description { + get { + return ResourceManager.GetString("Remote_Command_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Requested sectors with tags, unsupported by underlying image format, printing only user data.. + /// + public static string Requested_sectors_tags_unsupported_by_image_format_printing_user_data { + get { + return ResourceManager.GetString("Requested_sectors_tags_unsupported_by_image_format_printing_user_data", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resume file does not contain dump hardware information.... + /// + public static string Resume_file_does_not_contain_dump_hardware_information { + get { + return ResourceManager.GetString("Resume_file_does_not_contain_dump_hardware_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retrieving file information.... + /// + public static string Retrieving_file_information { + get { + return ResourceManager.GetString("Retrieving_file_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retrieving SCSI information.... + /// + public static string Retrieving_SCSI_information { + get { + return ResourceManager.GetString("Retrieving_SCSI_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retry passes. + /// + public static string Retry_passes { + get { + return ResourceManager.GetString("Retry_passes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retry subchannel. Implies fixing subchannel position.. + /// + public static string Retry_subchannel_help { + get { + return ResourceManager.GetString("Retry_subchannel_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Root directory. + /// + public static string Root_directory { + get { + return ResourceManager.GetString("Root_directory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save descriptors to file. + /// + public static string Save_descriptors_to_file { + get { + return ResourceManager.GetString("Save_descriptors_to_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save device reports in shared folder of your computer?. + /// + public static string Save_device_reports_in_shared_folder_of_your_computer_Q { + get { + return ResourceManager.GetString("Save_device_reports_in_shared_folder_of_your_computer_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save stats about your Aaru usage?. + /// + public static string Save_stats_about_your_Aaru_usage_Q { + get { + return ResourceManager.GetString("Save_stats_about_your_Aaru_usage_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Saving statistics.... + /// + public static string Saving_statistics { + get { + return ResourceManager.GetString("Saving_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI Device identification. + /// + public static string SCSI_Device_identification { + get { + return ResourceManager.GetString("SCSI_Device_identification", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI Extended INQUIRY Data. + /// + public static string SCSI_Extended_INQUIRY_Data { + get { + return ResourceManager.GetString("SCSI_Extended_INQUIRY_Data", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI Implemented operating definitions. + /// + public static string SCSI_Implemented_operating_definitions { + get { + return ResourceManager.GetString("SCSI_Implemented_operating_definitions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI INQUIRY command response:. + /// + public static string SCSI_INQUIRY_command_response { + get { + return ResourceManager.GetString("SCSI_INQUIRY_command_response", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI Management Network Addresses. + /// + public static string SCSI_Management_Network_Addresses { + get { + return ResourceManager.GetString("SCSI_Management_Network_Addresses", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI Sequential-access Device Capabilities. + /// + public static string SCSI_Sequential_access_Device_Capabilities { + get { + return ResourceManager.GetString("SCSI_Sequential_access_Device_Capabilities", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI Software Interface Identifiers. + /// + public static string SCSI_Software_Interface_Identifiers { + get { + return ResourceManager.GetString("SCSI_Software_Interface_Identifiers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI to ATA Translation Layer Data. + /// + public static string SCSI_to_ATA_Translation_Layer_Data { + get { + return ResourceManager.GetString("SCSI_to_ATA_Translation_Layer_Data", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Seagate Firmware Numbers page. + /// + public static string Seagate_Firmware_Numbers_page { + get { + return ResourceManager.GetString("Seagate_Firmware_Numbers_page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Searches and interprets partitions.. + /// + public static string Searches_and_interprets_partitions { + get { + return ResourceManager.GetString("Searches_and_interprets_partitions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Searches and prints information about filesystems.. + /// + public static string Searches_and_prints_information_about_filesystems { + get { + return ResourceManager.GetString("Searches_and_prints_information_about_filesystems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image 2 has more sectors. + /// + public static string Second_image_has_more_sectors { + get { + return ResourceManager.GetString("Second_image_has_more_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input file 2 format identified by {0}.. + /// + public static string Second_input_file_format_identified_by_0 { + get { + return ResourceManager.GetString("Second_input_file_format_identified_by_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input file 2 format identified by {0} ({1}).. + /// + public static string Second_input_file_format_identified_by_0_1 { + get { + return ResourceManager.GetString("Second_input_file_format_identified_by_0_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input file 2 format not identified, not proceeding with comparison.. + /// + public static string Second_input_file_format_not_identified { + get { + return ResourceManager.GetString("Second_input_file_format_not_identified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Second media image path. + /// + public static string Second_media_image_path { + get { + return ResourceManager.GetString("Second_media_image_path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sector {0}. + /// + public static string Sector_0_as_in_sector_number { + get { + return ResourceManager.GetString("Sector_0_as_in_sector_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to sector {0}, byte {1}. + /// + public static string sector_0_byte_1 { + get { + return ResourceManager.GetString("sector_0_byte_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sector to start decoding from.. + /// + public static string Sector_to_start_decoding_from { + get { + return ResourceManager.GetString("Sector_to_start_decoding_from", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Selected PoweRec speed for currently inserted media:. + /// + public static string Selected_PoweRec_speed_for_currently_inserted_media { + get { + return ResourceManager.GetString("Selected_PoweRec_speed_for_currently_inserted_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Serial. + /// + public static string Serial { + get { + return ResourceManager.GetString("Serial", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Serial number of the drive used to read the media represented by the image.. + /// + public static string Serial_number_of_drive_read_the_media_by_image { + get { + return ResourceManager.GetString("Serial_number_of_drive_read_the_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Serial number of the media represented by the image.. + /// + public static string Serial_number_of_media_by_image { + get { + return ResourceManager.GetString("Serial_number_of_media_by_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setting geometry to {0} cylinders, {1} heads and {2} sectors per track. + /// + public static string Setting_geometry_to_0_cylinders_1_heads_and_2_sectors_per_track { + get { + return ResourceManager.GetString("Setting_geometry_to_0_cylinders_1_heads_and_2_sectors_per_track", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setting image metadata. + /// + public static string Setting_image_metadata { + get { + return ResourceManager.GetString("Setting_image_metadata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setting tracks list. + /// + public static string Setting_tracks_list { + get { + return ResourceManager.GetString("Setting_tracks_list", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share your device reports with us?. + /// + public static string Share_your_device_reports_with_us_Q { + get { + return ResourceManager.GetString("Share_your_device_reports_with_us_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share your stats (anonymously)?. + /// + public static string Share_your_stats_anonymously_Q { + get { + return ResourceManager.GetString("Share_your_stats_anonymously_Q", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show long sector. + /// public static string Show_long_sector { get { return ResourceManager.GetString("Show_long_sector", resourceCulture); } } - public static string Create_graph_of_verified_disc { + /// + /// Looks up a localized string similar to Shows debug output from plugins.. + /// + public static string Shows_debug_output_from_plugins { get { - return ResourceManager.GetString("Create_graph_of_verified_disc", resourceCulture); + return ResourceManager.GetString("Shows_debug_output_from_plugins", resourceCulture); } } + /// + /// Looks up a localized string similar to Shows verbose output.. + /// + public static string Shows_verbose_output { + get { + return ResourceManager.GetString("Shows_verbose_output", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SilentMode is enabled. + /// + public static string SilentMode_is_enabled { + get { + return ResourceManager.GetString("SilentMode_is_enabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Skip the hole between data and audio in a CD-i Ready disc.. + /// + public static string Skip_CDi_Ready_hole_help { + get { + return ResourceManager.GetString("Skip_CDi_Ready_hole_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Skipped sectors on error. + /// + public static string Skipped_sectors_on_error { + get { + return ResourceManager.GetString("Skipped_sectors_on_error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Some warnings happened. Check console for more information. Image should be correct.. + /// + public static string Some_warnings_happened_Check_console { + get { + return ResourceManager.GetString("Some_warnings_happened_Check_console", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Source image. + /// + public static string Source_image { + get { + return ResourceManager.GetString("Source_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Spare Area Information. + /// + public static string Spare_Area_Information { + get { + return ResourceManager.GetString("Spare_Area_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specified encoding is not supported.. + /// + public static string Specified_encoding_is_not_supported { + get { + return ResourceManager.GetString("Specified_encoding_is_not_supported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Speed to dump. Only applicable to optical drives, 0 for maximum.. + /// + public static string Speed_to_dump { + get { + return ResourceManager.GetString("Speed_to_dump", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SpeedRead is enabled. + /// + public static string SpeedRead_is_enabled { + get { + return ResourceManager.GetString("SpeedRead_is_enabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start {0}. + /// + public static string Start_0_as_in_sector_start { + get { + return ResourceManager.GetString("Start_0_as_in_sector_start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Starting sector.. + /// + public static string Starting_sector { + get { + return ResourceManager.GetString("Starting_sector", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aaru can store some usage statistics. These statistics are limited to the number of times a + ///command is executed, a filesystem, partition, or device is used, the operating system version, and other. + ///In no case, any information besides pure statistical usage numbers is stored, and they're just joint to the + ///pool with no way of using them to identify you.. + /// + public static string Statistics_disclaimer { + get { + return ResourceManager.GetString("Statistics_disclaimer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stop media dump on first error.. + /// + public static string Stop_media_dump_on_first_error { + get { + return ResourceManager.GetString("Stop_media_dump_on_first_error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Store encrypted data as is.. + /// + public static string Store_encrypted_data_as_is { + get { + return ResourceManager.GetString("Store_encrypted_data_as_is", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to any. + /// + public static string Subchannel_name_any { + get { + return ResourceManager.GetString("Subchannel_name_any", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to none. + /// + public static string Subchannel_name_none { + get { + return ResourceManager.GetString("Subchannel_name_none", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to pq. + /// + public static string Subchannel_name_pq { + get { + return ResourceManager.GetString("Subchannel_name_pq", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to rw. + /// + public static string Subchannel_name_rw { + get { + return ResourceManager.GetString("Subchannel_name_rw", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to rw-or-pq. + /// + public static string Subchannel_name_rw_or_pq { + get { + return ResourceManager.GetString("Subchannel_name_rw_or_pq", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Subchannel to dump. Only applicable to CD/GD. Values: any, rw, rw-or-pq, pq, none.. + /// + public static string Subchannel_to_dump_help { + get { + return ResourceManager.GetString("Subchannel_to_dump_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supported archive formats ({0}):. + /// + public static string Supported_archive_formats_0 { + get { + return ResourceManager.GetString("Supported_archive_formats_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supported filesystems for identification and information only ({0}):. + /// + public static string Supported_filesystems_for_identification_and_information_only_0 { + get { + return ResourceManager.GetString("Supported_filesystems_for_identification_and_information_only_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supported filesystems that can read their contents ({0}):. + /// + public static string Supported_filesystems_that_can_read_their_contents_0 { + get { + return ResourceManager.GetString("Supported_filesystems_that_can_read_their_contents_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supported filters ({0}):. + /// + public static string Supported_filters_0 { + get { + return ResourceManager.GetString("Supported_filters_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supported partitioning schemes ({0}):. + /// + public static string Supported_partitioning_schemes_0 { + get { + return ResourceManager.GetString("Supported_partitioning_schemes_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supported?. + /// + public static string Supported_Question { + get { + return ResourceManager.GetString("Supported_Question", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports bitsetting DVD+R book type. + /// + public static string Supports_bitsetting_DVD_R_book_type { + get { + return ResourceManager.GetString("Supports_bitsetting_DVD_R_book_type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports bitsetting DVD+R DL book type. + /// + public static string Supports_bitsetting_DVD_R_DL_book_type { + get { + return ResourceManager.GetString("Supports_bitsetting_DVD_R_DL_book_type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports GigaRec. + /// + public static string Supports_GigaRec { + get { + return ResourceManager.GetString("Supports_GigaRec", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports hiding CD-Rs and sessions. + /// + public static string Supports_hiding_CD_Rs_and_sessions { + get { + return ResourceManager.GetString("Supports_hiding_CD_Rs_and_sessions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports PoweRec. + /// + public static string Supports_PoweRec { + get { + return ResourceManager.GetString("Supports_PoweRec", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports SecuRec. + /// + public static string Supports_SecuRec { + get { + return ResourceManager.GetString("Supports_SecuRec", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports SilentMode. + /// + public static string Supports_SilentMode { + get { + return ResourceManager.GetString("Supports_SilentMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports SpeedRead. + /// + public static string Supports_SpeedRead { + get { + return ResourceManager.GetString("Supports_SpeedRead", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports test writing DVD+. + /// + public static string Supports_test_writing_DVD_Plus { + get { + return ResourceManager.GetString("Supports_test_writing_DVD_Plus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports VariRec. + /// + public static string Supports_VariRec { + get { + return ResourceManager.GetString("Supports_VariRec", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Supports VariRec on DVDs. + /// + public static string Supports_VariRec_on_DVDs { + get { + return ResourceManager.GetString("Supports_VariRec_on_DVDs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to do a report using a trap disc and the swapping method? + ///This method can damage the drive, or the disc, and requires some ability. + ///In you are unsure, please press N to not continue.. + /// + public static string Sure_report_trap_disc { + get { + return ResourceManager.GetString("Sure_report_trap_disc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Take list of dump hardware from existing resume file.. + /// + public static string Take_dump_hardware_from_existing_resume { + get { + return ResourceManager.GetString("Take_dump_hardware_from_existing_resume", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Take metadata from existing CICM XML sidecar.. + /// + public static string Take_metadata_from_existing_CICM_XML_sidecar { + get { + return ResourceManager.GetString("Take_metadata_from_existing_CICM_XML_sidecar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to When used indicates that input is a folder containing alphabetically sorted files extracted from a linear block-based tape with fixed block size (e.g. a SCSI tape device).. + /// + public static string Tape_argument_input_help { + get { + return ResourceManager.GetString("Tape_argument_input_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only used for tapes, indicates block size. Files in the folder whose size is not a multiple of this value will simply be ignored.. + /// + public static string Tape_block_size_argument_help { + get { + return ResourceManager.GetString("Tape_block_size_argument_help", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TapeAlert Supported Flags Bitmap. + /// + public static string TapeAlert_Supported_Flags_Bitmap { + get { + return ResourceManager.GetString("TapeAlert_Supported_Flags_Bitmap", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Developers: + /// Natalia Portillo + /// Michael Drüing + /// Rebecca Wallander + /// + ///Testers: + /// Silas Laspada. + /// + public static string Text_Authors { + get { + return ResourceManager.GetString("Text_Authors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified image does not support any kind of verification. + /// + public static string The_specified_image_does_not_support_any_kind_of_verification { + get { + return ResourceManager.GetString("The_specified_image_does_not_support_any_kind_of_verification", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified input file cannot be found.. + /// + public static string The_specified_input_file_cannot_be_found { + get { + return ResourceManager.GetString("The_specified_input_file_cannot_be_found", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no disk tags in chosen disc image.. + /// + public static string There_are_no_disk_tags_in_chosen_disc_image { + get { + return ResourceManager.GetString("There_are_no_disk_tags_in_chosen_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no sector tags in chosen disc image.. + /// + public static string There_are_no_sector_tags_in_chosen_disc_image { + get { + return ResourceManager.GetString("There_are_no_sector_tags_in_chosen_disc_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no statistics.. + /// + public static string There_are_no_statistics { + get { + return ResourceManager.GetString("There_are_no_statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There is at least one sector that does not contain a checksum. + /// + public static string There_is_at_least_one_sector_that_does_not_contain_a_checksum { + get { + return ResourceManager.GetString("There_is_at_least_one_sector_that_does_not_contain_a_checksum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There is at least one sector with incorrect checksum or errors. + /// + public static string There_is_at_least_one_sector_with_incorrect_checksum_or_errors { + get { + return ResourceManager.GetString("There_is_at_least_one_sector_with_incorrect_checksum_or_errors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to THIS IS DANGEROUS AND CAN IRREVERSIBLY DESTROY YOUR DRIVE (IF IN DOUBT PRESS 'N'). + /// + public static string This_is_dangerous { + get { + return ResourceManager.GetString("This_is_dangerous", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time spent reading CDs. + /// + public static string Time_spent_reading_CDs { + get { + return ResourceManager.GetString("Time_spent_reading_CDs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time spent reading DVDs. + /// + public static string Time_spent_reading_DVDs { + get { + return ResourceManager.GetString("Time_spent_reading_DVDs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time spent writing CDs. + /// + public static string Time_spent_writing_CDs { + get { + return ResourceManager.GetString("Time_spent_writing_CDs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time spent writing DVDs. + /// + public static string Time_spent_writing_DVDs { + get { + return ResourceManager.GetString("Time_spent_writing_DVDs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aaru's license. + /// + public static string Title_Aaru_license { + get { + return ResourceManager.GetString("Title_Aaru_license", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to About Aaru. + /// + public static string Title_About_Aaru { + get { + return ResourceManager.GetString("Title_About_Aaru", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Algorithms. + /// + public static string Title_Algorithms { + get { + return ResourceManager.GetString("Title_Algorithms", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ATA / ATAPI. + /// + public static string Title_ATA_ATAPI { + get { + return ResourceManager.GetString("Title_ATA_ATAPI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ATIP. + /// + public static string Title_ATIP { + get { + return ResourceManager.GetString("Title_ATIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Attributes. + /// + public static string Title_Attributes { + get { + return ResourceManager.GetString("Title_Attributes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Author. + /// + public static string Title_Author { + get { + return ResourceManager.GetString("Title_Author", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Barcode. + /// + public static string Title_Barcode { + get { + return ResourceManager.GetString("Title_Barcode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Block. + /// + public static string Title_Block { + get { + return ResourceManager.GetString("Title_Block", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bus. + /// + public static string Title_Bus { + get { + return ResourceManager.GetString("Title_Bus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Calculating entropy. + /// + public static string Title_Calculating_entropy { + get { + return ResourceManager.GetString("Title_Calculating_entropy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CD-TEXT. + /// + public static string Title_CD_TEXT { + get { + return ResourceManager.GetString("Title_CD_TEXT", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Changed. + /// + public static string Title_Changed { + get { + return ResourceManager.GetString("Title_Changed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CID. + /// + public static string Title_CID { + get { + return ResourceManager.GetString("Title_CID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CIS. + /// + public static string Title_CIS { + get { + return ResourceManager.GetString("Title_CIS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Code. + /// + public static string Title_Code_for_encoding { + get { + return ResourceManager.GetString("Title_Code_for_encoding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Command. + /// + public static string Title_Command { + get { + return ResourceManager.GetString("Title_Command", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commands. + /// + public static string Title_Commands { + get { + return ResourceManager.GetString("Title_Commands", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Comments. + /// + public static string Title_Comments { + get { + return ResourceManager.GetString("Title_Comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connected by USB. + /// + public static string Title_Connected_by_USB { + get { + return ResourceManager.GetString("Title_Connected_by_USB", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Console. + /// + public static string Title_Console { + get { + return ResourceManager.GetString("Title_Console", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conversion success. + /// + public static string Title_Conversion_success { + get { + return ResourceManager.GetString("Title_Conversion_success", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creation. + /// + public static string Title_Creation { + get { + return ResourceManager.GetString("Title_Creation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creation time. + /// + public static string Title_Creation_time { + get { + return ResourceManager.GetString("Title_Creation_time", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CSD. + /// + public static string Title_CSD { + get { + return ResourceManager.GetString("Title_CSD", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decoded. + /// + public static string Title_Decoded { + get { + return ResourceManager.GetString("Title_Decoded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Description. + /// + public static string Title_Description { + get { + return ResourceManager.GetString("Title_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Descriptor size. + /// + public static string Title_Descriptor_size { + get { + return ResourceManager.GetString("Title_Descriptor_size", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Destination file. + /// + public static string Title_Destination_file { + get { + return ResourceManager.GetString("Title_Destination_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Details. + /// + public static string Title_Details { + get { + return ResourceManager.GetString("Title_Details", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device. + /// + public static string Title_Device { + get { + return ResourceManager.GetString("Title_Device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device information. + /// + public static string Title_Device_information { + get { + return ResourceManager.GetString("Title_Device_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device type. + /// + public static string Title_Device_type { + get { + return ResourceManager.GetString("Title_Device_type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Devices. + /// + public static string Title_Devices { + get { + return ResourceManager.GetString("Title_Devices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disc Manufacturing Information. + /// + public static string Title_Disc_Manufacturing_Information { + get { + return ResourceManager.GetString("Title_Disc_Manufacturing_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive. + /// + public static string Title_Drive { + get { + return ResourceManager.GetString("Title_Drive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive firmware revision. + /// + public static string Title_Drive_firmware_revision { + get { + return ResourceManager.GetString("Title_Drive_firmware_revision", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive has kreon firmware:. + /// + public static string Title_Drive_has_kreon_firmware { + get { + return ResourceManager.GetString("Title_Drive_has_kreon_firmware", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive information. + /// + public static string Title_Drive_information { + get { + return ResourceManager.GetString("Title_Drive_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive manufacturer. + /// + public static string Title_Drive_manufacturer { + get { + return ResourceManager.GetString("Title_Drive_manufacturer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive model. + /// + public static string Title_Drive_model { + get { + return ResourceManager.GetString("Title_Drive_model", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drive serial number. + /// + public static string Title_Drive_serial_number { + get { + return ResourceManager.GetString("Title_Drive_serial_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dump hardware. + /// + public static string Title_Dump_hardware { + get { + return ResourceManager.GetString("Title_Dump_hardware", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Entropy. + /// + public static string Title_Entropy { + get { + return ResourceManager.GetString("Title_Entropy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error. + /// + public static string Title_Error { + get { + return ResourceManager.GetString("Title_Error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to EVPD. + /// + public static string Title_EVPD { + get { + return ResourceManager.GetString("Title_EVPD", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Existing Aaru Metadata sidecar. + /// + public static string Title_Existing_Aaru_Metadata_sidecar { + get { + return ResourceManager.GetString("Title_Existing_Aaru_Metadata_sidecar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Existing resume file. + /// + public static string Title_Existing_resume_file { + get { + return ResourceManager.GetString("Title_Existing_resume_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extended CSD. + /// + public static string Title_Extended_CSD { + get { + return ResourceManager.GetString("Title_Extended_CSD", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Feature. + /// + public static string Title_Feature { + get { + return ResourceManager.GetString("Title_Feature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File. + /// + public static string Title_File { + get { + return ResourceManager.GetString("Title_File", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filesystem. + /// + public static string Title_Filesystem { + get { + return ResourceManager.GetString("Title_Filesystem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filesystems. + /// + public static string Title_Filesystems { + get { + return ResourceManager.GetString("Title_Filesystems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter. + /// + public static string Title_Filter { + get { + return ResourceManager.GetString("Title_Filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filters. + /// + public static string Title_Filters { + get { + return ResourceManager.GetString("Title_Filters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FireWire. + /// + public static string Title_FireWire { + get { + return ResourceManager.GetString("Title_FireWire", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FireWire device. + /// + public static string Title_FireWire_device { + get { + return ResourceManager.GetString("Title_FireWire_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Firmware revision. + /// + public static string Title_Firmware_revision { + get { + return ResourceManager.GetString("Title_Firmware_revision", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media image 1. + /// + public static string Title_First_Media_image { + get { + return ResourceManager.GetString("Title_First_Media_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Floppy images. + /// + public static string Title_Floppy_images { + get { + return ResourceManager.GetString("Title_Floppy_images", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Format. + /// + public static string Title_Format { + get { + return ResourceManager.GetString("Title_Format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Formats. + /// + public static string Title_Formats { + get { + return ResourceManager.GetString("Title_Formats", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to From image.... + /// + public static string Title_From_image { + get { + return ResourceManager.GetString("Title_From_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GDPR. + /// + public static string Title_GDPR { + get { + return ResourceManager.GetString("Title_GDPR", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + public static string Title_General { + get { + return ResourceManager.GetString("Title_General", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GID. + /// + public static string Title_GID { + get { + return ResourceManager.GetString("Title_GID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GUID. + /// + public static string Title_GUID { + get { + return ResourceManager.GetString("Title_GUID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hash. + /// + public static string Title_Hash { + get { + return ResourceManager.GetString("Title_Hash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Header. + /// + public static string Title_Header { + get { + return ResourceManager.GetString("Title_Header", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HexView. + /// + public static string Title_HexView { + get { + return ResourceManager.GetString("Title_HexView", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identify only:. + /// + public static string Title_Identify_only { + get { + return ResourceManager.GetString("Title_Identify_only", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image application. + /// + public static string Title_Image_application { + get { + return ResourceManager.GetString("Title_Image_application", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image application version. + /// + public static string Title_Image_application_version { + get { + return ResourceManager.GetString("Title_Image_application_version", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image comments. + /// + public static string Title_Image_comments { + get { + return ResourceManager.GetString("Title_Image_comments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image creator. + /// + public static string Title_Image_creator { + get { + return ResourceManager.GetString("Title_Image_creator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image information. + /// + public static string Title_Image_information { + get { + return ResourceManager.GetString("Title_Image_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image name. + /// + public static string Title_Image_name { + get { + return ResourceManager.GetString("Title_Image_name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image size. + /// + public static string Title_Image_size { + get { + return ResourceManager.GetString("Title_Image_size", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Image version. + /// + public static string Title_Image_version { + get { + return ResourceManager.GetString("Title_Image_version", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Images. + /// + public static string Title_Images { + get { + return ResourceManager.GetString("Title_Images", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Information. + /// + public static string Title_Information { + get { + return ResourceManager.GetString("Title_Information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inode. + /// + public static string Title_Inode { + get { + return ResourceManager.GetString("Title_Inode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to INQUIRY. + /// + public static string Title_INQUIRY { + get { + return ResourceManager.GetString("Title_INQUIRY", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ISRC. + /// + public static string Title_ISRC { + get { + return ResourceManager.GetString("Title_ISRC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ISRCs. + /// + public static string Title_ISRCs { + get { + return ResourceManager.GetString("Title_ISRCs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kreon. + /// + public static string Title_Kreon { + get { + return ResourceManager.GetString("Title_Kreon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last access. + /// + public static string Title_Last_access { + get { + return ResourceManager.GetString("Title_Last_access", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last backup. + /// + public static string Title_Last_backup { + get { + return ResourceManager.GetString("Title_Last_backup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last media of the sequence. + /// + public static string Title_Last_media_of_the_sequence { + get { + return ResourceManager.GetString("Title_Last_media_of_the_sequence", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last media on sequence. + /// + public static string Title_Last_media_on_sequence { + get { + return ResourceManager.GetString("Title_Last_media_on_sequence", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last modification time. + /// + public static string Title_Last_modification_time { + get { + return ResourceManager.GetString("Title_Last_modification_time", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last write. + /// + public static string Title_Last_write { + get { + return ResourceManager.GetString("Title_Last_write", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LBA. + /// + public static string Title_LBA { + get { + return ResourceManager.GetString("Title_LBA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Length. + /// + public static string Title_Length { + get { + return ResourceManager.GetString("Title_Length", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Library. + /// + public static string Title_Library { + get { + return ResourceManager.GetString("Title_Library", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Links. + /// + public static string Title_Links { + get { + return ResourceManager.GetString("Title_Links", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log. + /// + public static string Title_Log { + get { + return ResourceManager.GetString("Title_Log", 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 Media. + /// + public static string Title_Media { + get { + return ResourceManager.GetString("Title_Media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media barcode. + /// + public static string Title_Media_barcode { + get { + return ResourceManager.GetString("Title_Media_barcode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media catalog number. + /// + public static string Title_Media_catalog_number { + get { + return ResourceManager.GetString("Title_Media_catalog_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media checksums:. + /// + public static string Title_Media_checksums { + get { + return ResourceManager.GetString("Title_Media_checksums", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media image format. + /// + public static string Title_Media_image_format { + get { + return ResourceManager.GetString("Title_Media_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media images. + /// + public static string Title_Media_images { + get { + return ResourceManager.GetString("Title_Media_images", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media information. + /// + public static string Title_Media_information { + get { + return ResourceManager.GetString("Title_Media_information", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media manufacturer. + /// + public static string Title_Media_manufacturer { + get { + return ResourceManager.GetString("Title_Media_manufacturer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media model. + /// + public static string Title_Media_model { + get { + return ResourceManager.GetString("Title_Media_model", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media part no.. + /// + public static string Title_Media_part_number { + get { + return ResourceManager.GetString("Title_Media_part_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media sequence. + /// + public static string Title_Media_sequence { + get { + return ResourceManager.GetString("Title_Media_sequence", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media serial number. + /// + public static string Title_Media_serial_number { + get { + return ResourceManager.GetString("Title_Media_serial_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media type. + /// + public static string Title_Media_type { + get { + return ResourceManager.GetString("Title_Media_type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Medias. + /// + public static string Title_Medias { + get { + return ResourceManager.GetString("Title_Medias", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Message. + /// + public static string Title_Message { + get { + return ResourceManager.GetString("Title_Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Metadata. + /// + public static string Title_Metadata { + get { + return ResourceManager.GetString("Title_Metadata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Miscellaneous. + /// + public static string Title_Miscellaneous { + get { + return ResourceManager.GetString("Title_Miscellaneous", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MMC FEATURES. + /// + public static string Title_MMC_FEATURES { + get { + return ResourceManager.GetString("Title_MMC_FEATURES", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mode. + /// + public static string Title_Mode { + get { + return ResourceManager.GetString("Title_Mode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MODE SENSE. + /// + public static string Title_MODE_SENSE { + get { + return ResourceManager.GetString("Title_MODE_SENSE", 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 Model ID. + /// + public static string Title_Model_ID { + get { + return ResourceManager.GetString("Title_Model_ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Module. + /// + public static string Title_Module { + get { + return ResourceManager.GetString("Title_Module", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + public static string Title_Name { + get { + return ResourceManager.GetString("Title_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Namespace. + /// + public static string Title_Namespace { + get { + return ResourceManager.GetString("Title_Namespace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number in sequence. + /// + public static string Title_Number_in_sequence { + get { + return ResourceManager.GetString("Title_Number_in_sequence", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OCR. + /// + public static string Title_OCR { + get { + return ResourceManager.GetString("Title_OCR", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title of the media represented by the image.. + /// + public static string Title_of_media_represented_by_image { + get { + return ResourceManager.GetString("Title_of_media_represented_by_image", 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 Page. + /// + public static string Title_Page { + get { + return ResourceManager.GetString("Title_Page", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Part number. + /// + public static string Title_Part_number { + get { + return ResourceManager.GetString("Title_Part_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Partition. + /// + public static string Title_Partition { + get { + return ResourceManager.GetString("Title_Partition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Partitions. + /// + public static string Title_Partitions { + get { + return ResourceManager.GetString("Title_Partitions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PCMCIA. + /// + public static string Title_PCMCIA { + get { + return ResourceManager.GetString("Title_PCMCIA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PCMCIA device. + /// + public static string Title_PCMCIA_device { + get { + return ResourceManager.GetString("Title_PCMCIA_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Peripheral device type. + /// + public static string Title_Peripheral_device_type { + get { + return ResourceManager.GetString("Title_Peripheral_device_type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plextor. + /// + public static string Title_Plextor { + get { + return ResourceManager.GetString("Title_Plextor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plugins. + /// + public static string Title_Plugins { + get { + return ResourceManager.GetString("Title_Plugins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Product. + /// + public static string Title_Product { + get { + return ResourceManager.GetString("Title_Product", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Product ID. + /// + public static string Title_Product_ID { + get { + return ResourceManager.GetString("Title_Product_ID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Readable:. + /// + public static string Title_Readable { + get { + return ResourceManager.GetString("Title_Readable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Readable media tags. + /// + public static string Title_Readable_media_tags { + get { + return ResourceManager.GetString("Title_Readable_media_tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Readable sector tags. + /// + public static string Title_Readable_sector_tags { + get { + return ResourceManager.GetString("Title_Readable_sector_tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removable media. + /// + public static string Title_Removable_media { + get { + return ResourceManager.GetString("Title_Removable_media", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reports. + /// + public static string Title_Reports { + get { + return ResourceManager.GetString("Title_Reports", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Revision. + /// + public static string Title_Revision { + get { + return ResourceManager.GetString("Title_Revision", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scheme. + /// + public static string Title_Scheme { + get { + return ResourceManager.GetString("Title_Scheme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCR. + /// + public static string Title_SCR { + get { + return ResourceManager.GetString("Title_SCR", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI. + /// + public static string Title_SCSI { + get { + return ResourceManager.GetString("Title_SCSI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI device. + /// + public static string Title_SCSI_device { + get { + return ResourceManager.GetString("Title_SCSI_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI INQUIRY. + /// + public static string Title_SCSI_INQUIRY { + get { + return ResourceManager.GetString("Title_SCSI_INQUIRY", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SCSI MMC GET CONFIGURATION Features:. + /// + public static string Title_SCSI_MMC_GET_CONFIGURATION_Features { + get { + return ResourceManager.GetString("Title_SCSI_MMC_GET_CONFIGURATION_Features", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SD / MMC. + /// + public static string Title_SD_MMC { + get { + return ResourceManager.GetString("Title_SD_MMC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Media image 2. + /// + public static string Title_Second_Media_image { + get { + return ResourceManager.GetString("Title_Second_Media_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sector. + /// + public static string Title_Sector { + get { + return ResourceManager.GetString("Title_Sector", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sector size. + /// + public static string Title_Sector_size { + get { + return ResourceManager.GetString("Title_Sector_size", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sectors. + /// + public static string Title_Sectors { + get { + return ResourceManager.GetString("Title_Sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Security Sector. + /// + public static string Title_Security_Sector { + get { + return ResourceManager.GetString("Title_Security_Sector", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Serial number. + /// + public static string Title_Serial_number { + get { + return ResourceManager.GetString("Title_Serial_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sessions. + /// + public static string Title_Sessions { + get { + return ResourceManager.GetString("Title_Sessions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Settings. + /// + public static string Title_Settings { + get { + return ResourceManager.GetString("Title_Settings", 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 Statistics. + /// + public static string Title_Statistics { + get { + return ResourceManager.GetString("Title_Statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tag:. + /// + public static string Title_Tag { + get { + return ResourceManager.GetString("Title_Tag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time. + /// + public static string Title_Time { + get { + return ResourceManager.GetString("Title_Time", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Times used. + /// + public static string Title_Times_used { + get { + return ResourceManager.GetString("Title_Times_used", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title. + /// + public static string Title_Title { + get { + return ResourceManager.GetString("Title_Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC. + /// + public static string Title_TOC { + get { + return ResourceManager.GetString("Title_TOC", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOC (full). + /// + public static string Title_TOC_full { + get { + return ResourceManager.GetString("Title_TOC_full", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track checksums:. + /// + public static string Title_Track_checksums { + get { + return ResourceManager.GetString("Title_Track_checksums", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track entropy. + /// + public static string Title_Track_entropy { + get { + return ResourceManager.GetString("Title_Track_entropy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tracks. + /// + public static string Title_Tracks { + get { + return ResourceManager.GetString("Title_Tracks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + public static string Title_Type { + get { + return ResourceManager.GetString("Title_Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UID. + /// + public static string Title_UID { + get { + return ResourceManager.GetString("Title_UID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unique sectors. + /// + public static string Title_Unique_sectors { + get { + return ResourceManager.GetString("Title_Unique_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to USB. + /// + public static string Title_USB { + get { + return ResourceManager.GetString("Title_USB", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to USB device. + /// + public static string Title_USB_device { + get { + return ResourceManager.GetString("Title_USB_device", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UUID. + /// + public static string Title_UUID { + get { + return ResourceManager.GetString("Title_UUID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vendor. + /// + public static string Title_Vendor { + get { + return ResourceManager.GetString("Title_Vendor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vendor ID. + /// + public static string Title_Vendor_ID { + get { + return ResourceManager.GetString("Title_Vendor_ID", 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 Warning. + /// + public static string Title_Warning { + get { + return ResourceManager.GetString("Title_Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Writable:. + /// + public static string Title_Writable { + get { + return ResourceManager.GetString("Title_Writable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total errors............. + /// + public static string Total_errors { + get { + return ResourceManager.GetString("Total_errors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total errors+unknowns.... + /// + public static string Total_errors_plus_unknowns { + get { + return ResourceManager.GetString("Total_errors_plus_unknowns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total loaded discs:. + /// + public static string Total_loaded_discs { + get { + return ResourceManager.GetString("Total_loaded_discs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total sectors............ + /// + public static string Total_sectors { + get { + return ResourceManager.GetString("Total_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total unknowns........... + /// + public static string Total_unknowns { + get { + return ResourceManager.GetString("Total_unknowns", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track {0} has {1} unique sectors ({2:P3}). + /// + public static string Track_0_has_1_unique_sectors_2 { + get { + return ResourceManager.GetString("Track_0_has_1_unique_sectors_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track {0} starts at LBA {1}, ends at LBA {2}, has a pregap of {3} sectors and is of type {4}. + /// + public static string Track_0_starts_at_LBA_1_ends_at_LBA_2_has_a_pregap_of_3_sectors_and_is_of_type_4 { + get { + return ResourceManager.GetString("Track_0_starts_at_LBA_1_ends_at_LBA_2_has_a_pregap_of_3_sectors_and_is_of_type_4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track {0} starts at sector {1} and ends at sector {2}. + /// + public static string Track_0_starts_at_sector_1_and_ends_at_sector_2 { + get { + return ResourceManager.GetString("Track_0_starts_at_sector_1_and_ends_at_sector_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Track Resources. + /// + public static string Track_Resources { + get { + return ResourceManager.GetString("Track_Resources", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Trim errors from skipped sectors. + /// + public static string Trim_errors_from_skipped_sectors { + get { + return ResourceManager.GetString("Trim_errors_from_skipped_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try to read first track pregap. Only applicable to CD/DDCD/GD.. + /// + public static string Try_to_read_first_track_pregap { + get { + return ResourceManager.GetString("Try_to_read_first_track_pregap", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try to read the title keys from CSS encrypted DVDs (very slow).. + /// + public static string Try_to_read_the_title_keys_from_CSS_DVDs { + get { + return ResourceManager.GetString("Try_to_read_the_title_keys_from_CSS_DVDs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try to read track 1 pregap. + /// + public static string Try_to_read_track_1_pregap { + get { + return ResourceManager.GetString("Try_to_read_track_1_pregap", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try to recover partial or incorrect data.. + /// + public static string Try_to_recover_partial_or_incorrect_data { + get { + return ResourceManager.GetString("Try_to_recover_partial_or_incorrect_data", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to boolean. + /// + public static string TypeToString_boolean { + get { + return ResourceManager.GetString("TypeToString_boolean", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to float number. + /// + public static string TypeToString_float_number { + get { + return ResourceManager.GetString("TypeToString_float_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to number. + /// + public static string TypeToString_number { + get { + return ResourceManager.GetString("TypeToString_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to signed number. + /// + public static string TypeToString_signed_number { + get { + return ResourceManager.GetString("TypeToString_signed_number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to string. + /// + public static string TypeToString_string { + get { + return ResourceManager.GetString("TypeToString_string", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to uuid. + /// + public static string TypeToString_uuid { + get { + return ResourceManager.GetString("TypeToString_uuid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to mount volume, error {0}. + /// + public static string Unable_to_mount_volume_error_0 { + get { + return ResourceManager.GetString("Unable_to_mount_volume_error_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to open image 1 format. + /// + public static string Unable_to_open_first_image_format { + get { + return ResourceManager.GetString("Unable_to_open_first_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to open image format. + /// + public static string Unable_to_open_image_format { + get { + return ResourceManager.GetString("Unable_to_open_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to open image 2 format. + /// + public static string Unable_to_open_second_image_format { + get { + return ResourceManager.GetString("Unable_to_open_second_image_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to recognize image format, not checksumming. + /// + public static string Unable_to_recognize_image_format_not_checksumming { + get { + return ResourceManager.GetString("Unable_to_recognize_image_format_not_checksumming", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to recognize image format, not decoding. + /// + public static string Unable_to_recognize_image_format_not_decoding { + get { + return ResourceManager.GetString("Unable_to_recognize_image_format_not_decoding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to recognize image format, not printing. + /// + public static string Unable_to_recognize_image_format_not_printing { + get { + return ResourceManager.GetString("Unable_to_recognize_image_format_not_printing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to recognize image format, not verifying. + /// + public static string Unable_to_recognize_image_format_not_verifying { + get { + return ResourceManager.GetString("Unable_to_recognize_image_format_not_verifying", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undecoded. + /// + public static string Undecoded { + get { + return ResourceManager.GetString("Undecoded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Undecoded tuple ID {0}. + /// + public static string Undecoded_tuple_ID_0 { + get { + return ResourceManager.GetString("Undecoded_tuple_ID_0", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unit Serial Number. + /// + public static string Unit_Serial_Number { + get { + return ResourceManager.GetString("Unit_Serial_Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unknown feature. + /// + public static string Unknown_feature { + get { + return ResourceManager.GetString("Unknown_feature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unknown LBAs:. + /// + public static string Unknown_LBAs { + get { + return ResourceManager.GetString("Unknown_LBAs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to unlimited. + /// + public static string unlimited_as_in_speed { + get { + return ResourceManager.GetString("unlimited_as_in_speed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unsupported device type, report cannot be created. + /// + public static string Unsupported_device_type_for_report { + get { + return ResourceManager.GetString("Unsupported_device_type_for_report", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unsupported filename. + /// + public static string Unsupported_filename { + get { + return ResourceManager.GetString("Unsupported_filename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Updating main database.... + /// + public static string Updating_main_database { + get { + return ResourceManager.GetString("Updating_main_database", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use long format.. + /// + public static string Use_long_format { + get { + return ResourceManager.GetString("Use_long_format", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Value "{0}" is not a valid number for length.. + /// + public static string Value_0_is_not_a_valid_number_for_length { + get { + return ResourceManager.GetString("Value_0_is_not_a_valid_number_for_length", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verify all sectors if supported.. + /// + public static string Verify_all_sectors_if_supported { + get { + return ResourceManager.GetString("Verify_all_sectors_if_supported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dimensions, as a square, in pixels, for the graph of verified disc.. + /// public static string Verify_dimensions_paramater_help { get { return ResourceManager.GetString("Verify_dimensions_paramater_help", resourceCulture); } } - public static string Create_graph_of_dumped_media { + /// + /// Looks up a localized string similar to Verify disc image if supported.. + /// + public static string Verify_disc_image_if_supported { get { - return ResourceManager.GetString("Create_graph_of_dumped_media", resourceCulture); + return ResourceManager.GetString("Verify_disc_image_if_supported", resourceCulture); } } - public static string Dump_graph_dimensions_argument_help { + /// + /// Looks up a localized string similar to Verifying image checksums.... + /// + public static string Verifying_image_checksums { get { - return ResourceManager.GetString("Dump_graph_dimensions_argument_help", resourceCulture); + return ResourceManager.GetString("Verifying_image_checksums", resourceCulture); } } - public static string Generating_decryption_keys { + /// + /// Looks up a localized string similar to Verifying track {0} of {1}. + /// + public static string Verifying_track_0_of_1 { get { - return ResourceManager.GetString("Generating_decryption_keys", resourceCulture); + return ResourceManager.GetString("Verifying_track_0_of_1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Welcome to Aaru!. + /// + public static string Welcome_to_Aaru { + get { + return ResourceManager.GetString("Welcome_to_Aaru", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to When an unreadable sector is found skip this many sectors.. + /// + public static string When_an_unreadable_sector_is_found_skip_this_many_sectors { + get { + return ResourceManager.GetString("When_an_unreadable_sector_is_found_skip_this_many_sectors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Who (person) created the image?. + /// + public static string Who_person_created_the_image { + get { + return ResourceManager.GetString("Who_person_created_the_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Write a log of the scan in the format used by ImgBurn.. + /// + public static string Write_a_log_of_the_scan_in_the_format_used_by_ImgBurn { + get { + return ResourceManager.GetString("Write_a_log_of_the_scan_in_the_format_used_by_ImgBurn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Write a log of the scan in the format used by MHDD.. + /// + public static string Write_a_log_of_the_scan_in_the_format_used_by_MHDD { + get { + return ResourceManager.GetString("Write_a_log_of_the_scan_in_the_format_used_by_MHDD", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Writing Aaru Metadata to output image.. + /// + public static string Writing_Aaru_Metadata_to_output_image { + get { + return ResourceManager.GetString("Writing_Aaru_Metadata_to_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Writing dump hardware list.... + /// + public static string Writing_dump_hardware_list { + get { + return ResourceManager.GetString("Writing_dump_hardware_list", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Writing extended attribute.... + /// + public static string Writing_extended_attribute { + get { + return ResourceManager.GetString("Writing_extended_attribute", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Writing image to:. + /// + public static string Writing_image_to { + get { + return ResourceManager.GetString("Writing_image_to", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Writing metadata.... + /// + public static string Writing_metadata { + get { + return ResourceManager.GetString("Writing_metadata", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Written {0} bytes of file {1} to {2}. + /// + public static string Written_0_bytes_of_file_1_to_2 { + get { + return ResourceManager.GetString("Written_0_bytes_of_file_1_to_2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Written {0} bytes of xattr {1} from file {2} to {3}. + /// + public static string Written_0_bytes_of_xattr_1_from_file_2_to_3 { + get { + return ResourceManager.GetString("Written_0_bytes_of_xattr_1_from_file_2_to_3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Written Aaru Metadata to output image.. + /// + public static string Written_Aaru_Metadata_to_output_image { + get { + return ResourceManager.GetString("Written_Aaru_Metadata_to_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Written dump hardware list to output image.. + /// + public static string Written_dump_hardware_list_to_output_image { + get { + return ResourceManager.GetString("Written_dump_hardware_list_to_output_image", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You cannot use --tape option when input is a file.. + /// + public static string You_cannot_use_tape_option_when_input_is_a_file { + get { + return ResourceManager.GetString("You_cannot_use_tape_option_when_input_is_a_file", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Checksum command {0} times. + /// + public static string You_have_called_the_Checksum_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Checksum_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Compare command {0} times. + /// + public static string You_have_called_the_Compare_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Compare_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Convert-Image command {0} times. + /// + public static string You_have_called_the_Convert_Image_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Convert_Image_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Create-Sidecar command {0} times. + /// + public static string You_have_called_the_Create_Sidecar_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Create_Sidecar_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Decode command {0} times. + /// + public static string You_have_called_the_Decode_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Decode_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Device-Info command {0} times. + /// + public static string You_have_called_the_Device_Info_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Device_Info_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Device-Report command {0} times. + /// + public static string You_have_called_the_Device_Report_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Device_Report_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Dump-Media command {0} times. + /// + public static string You_have_called_the_Dump_Media_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Dump_Media_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Entropy command {0} times. + /// + public static string You_have_called_the_Entropy_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Entropy_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Filesystem Info command {0} times. + /// + public static string You_have_called_the_Filesystem_Info_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Filesystem_Info_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Formats command {0} times. + /// + public static string You_have_called_the_Formats_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Formats_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Image-Info command {0} times. + /// + public static string You_have_called_the_Image_Info_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Image_Info_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Media-Info command {0} times. + /// + public static string You_have_called_the_Media_Info_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Media_Info_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Media-Scan command {0} times. + /// + public static string You_have_called_the_Media_Scan_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Media_Scan_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Print-Hex command {0} times. + /// + public static string You_have_called_the_Print_Hex_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Print_Hex_command_0_times", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You have called the Verify command {0} times. + /// + public static string You_have_called_the_Verify_command_0_times { + get { + return ResourceManager.GetString("You_have_called_the_Verify_command_0_times", resourceCulture); } } } diff --git a/Aaru.Localization/UI.resx b/Aaru.Localization/UI.resx index 584db2b3d..1cedc7218 100644 --- a/Aaru.Localization/UI.resx +++ b/Aaru.Localization/UI.resx @@ -1376,8 +1376,8 @@ In you are unsure, please press N to not continue. Disc image does not contain checksums - - Checking disc image checksums took {0} seconds + + Checking disc image checksums took {0} Checking tracks... @@ -1406,8 +1406,8 @@ In you are unsure, please press N to not continue. All sector checksums are correct - - Checking sector checksums took {0} seconds + + Checking sector checksums took {0} LBAs with error: diff --git a/Aaru/Commands/Device/Info.cs b/Aaru/Commands/Device/Info.cs index 6cd776f3e..8e8fb7db2 100644 --- a/Aaru/Commands/Device/Info.cs +++ b/Aaru/Commands/Device/Info.cs @@ -52,6 +52,8 @@ using Aaru.Decoders.SCSI.SSC; using Aaru.Devices; using Aaru.Helpers; using Aaru.Localization; +using Humanizer; +using Humanizer.Localisation; using Spectre.Console; using Command = System.CommandLine.Command; using DeviceInfo = Aaru.Core.Devices.Info.DeviceInfo; @@ -852,29 +854,21 @@ sealed class DeviceInfoCommand : Command AaruConsole.WriteLine(Localization.Core.Drive_has_loaded_a_total_of_0_discs, devInfo.PlextorFeatures.Discs); - AaruConsole.WriteLine(Localization.Core.Drive_has_spent_0_hours_1_minutes_and_2_seconds_reading_CDs, - devInfo.PlextorFeatures.CdReadTime / 3600, - devInfo.PlextorFeatures.CdReadTime / 60 % 60, - devInfo.PlextorFeatures.CdReadTime % 60); + AaruConsole.WriteLine(Localization.Core.Drive_has_spent_0_reading_CDs, + devInfo.PlextorFeatures.CdReadTime.Seconds().Humanize(minUnit: TimeUnit.Second)); - AaruConsole.WriteLine(Localization.Core.Drive_has_spent_0_hours_1_minutes_and_2_seconds_writing_CDs, - devInfo.PlextorFeatures.CdWriteTime / 3600, - devInfo.PlextorFeatures.CdWriteTime / 60 % 60, - devInfo.PlextorFeatures.CdWriteTime % 60); + AaruConsole.WriteLine(Localization.Core.Drive_has_spent_0_writing_CDs, + devInfo.PlextorFeatures.CdWriteTime.Seconds().Humanize(minUnit: TimeUnit.Second)); if(devInfo.PlextorFeatures.IsDvd) { - AaruConsole. - WriteLine(Localization.Core.Drive_has_spent_0_hours_1_minutes_and_2_seconds_reading_DVDs, - devInfo.PlextorFeatures.DvdReadTime / 3600, - devInfo.PlextorFeatures.DvdReadTime / 60 % 60, - devInfo.PlextorFeatures.DvdReadTime % 60); + AaruConsole.WriteLine(Localization.Core.Drive_has_spent_0_reading_DVDs, + devInfo.PlextorFeatures.DvdReadTime.Seconds(). + Humanize(minUnit: TimeUnit.Second)); - AaruConsole. - WriteLine(Localization.Core.Drive_has_spent_0_hours_1_minutes_and_2_seconds_writing_DVDs, - devInfo.PlextorFeatures.DvdWriteTime / 3600, - devInfo.PlextorFeatures.DvdWriteTime / 60 % 60, - devInfo.PlextorFeatures.DvdWriteTime % 60); + AaruConsole.WriteLine(Localization.Core.Drive_has_spent_0_writing_DVDs, + devInfo.PlextorFeatures.DvdWriteTime.Seconds(). + Humanize(minUnit: TimeUnit.Second)); } } diff --git a/Aaru/Commands/Image/Verify.cs b/Aaru/Commands/Image/Verify.cs index cf5d0209c..7033e6838 100644 --- a/Aaru/Commands/Image/Verify.cs +++ b/Aaru/Commands/Image/Verify.cs @@ -43,6 +43,8 @@ using Aaru.Console; using Aaru.Core; using Aaru.Core.Graphics; using Aaru.Localization; +using Humanizer; +using Humanizer.Localisation; using Spectre.Console; namespace Aaru.Commands.Image; @@ -220,7 +222,7 @@ sealed class VerifyCommand : Command } correctImage = discCheckStatus; - AaruConsole.VerboseWriteLine(UI.Checking_disc_image_checksums_took_0_seconds, checkTime.TotalSeconds); + AaruConsole.VerboseWriteLine(UI.Checking_disc_image_checksums_took_0, checkTime.Humanize(minUnit: TimeUnit.Second)); } if(!verifySectors) @@ -422,7 +424,7 @@ sealed class VerifyCommand : Command failingLbas.Count == 0) AaruConsole.WriteLine(UI.All_sector_checksums_are_correct); - AaruConsole.VerboseWriteLine(UI.Checking_sector_checksums_took_0_seconds, checkTime.TotalSeconds); + AaruConsole.VerboseWriteLine(UI.Checking_sector_checksums_took_0, checkTime.Humanize(minUnit: TimeUnit.Second)); if(verbose) { diff --git a/Aaru/Commands/Media/Scan.cs b/Aaru/Commands/Media/Scan.cs index 4be45aede..ef8f538dd 100644 --- a/Aaru/Commands/Media/Scan.cs +++ b/Aaru/Commands/Media/Scan.cs @@ -39,6 +39,7 @@ using Aaru.Core.Devices.Scanning; using Aaru.Localization; using Humanizer; using Humanizer.Bytes; +using Humanizer.Localisation; using Spectre.Console; namespace Aaru.Commands.Media; @@ -206,8 +207,9 @@ sealed class MediaScanCommand : Command results = scanner.Scan(); }); - AaruConsole.WriteLine(Localization.Core.Took_a_total_of_0_seconds_1_processing_commands, results.TotalTime, - results.ProcessingTime); + AaruConsole.WriteLine(Localization.Core.Took_a_total_of_0_1_processing_commands, + results.TotalTime.Seconds().Humanize(minUnit: TimeUnit.Second), + results.ProcessingTime.Seconds().Humanize(minUnit: TimeUnit.Second)); AaruConsole.WriteLine(Localization.Core.Average_speed_0, ByteSize.FromBytes(results.AvgSpeed).Per(1.Seconds()));