diff --git a/Aaru.Images/Alcohol120/Write.cs b/Aaru.Images/Alcohol120/Write.cs index aca9feee8..3dc7e321d 100644 --- a/Aaru.Images/Alcohol120/Write.cs +++ b/Aaru.Images/Alcohol120/Write.cs @@ -61,6 +61,20 @@ public sealed partial class Alcohol120 return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + _imageInfo = new ImageInfo { MediaType = mediaType, diff --git a/Aaru.Images/Anex86/Write.cs b/Aaru.Images/Anex86/Write.cs index cc7d95d32..671fb804b 100644 --- a/Aaru.Images/Anex86/Write.cs +++ b/Aaru.Images/Anex86/Write.cs @@ -58,6 +58,20 @@ public sealed partial class Anex86 return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors * sectorSize > int.MaxValue || sectors > (long)int.MaxValue * 8 * 33) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/Apple2MG/Write.cs b/Aaru.Images/Apple2MG/Write.cs index 4ba8cfafa..b3069c8ee 100644 --- a/Aaru.Images/Apple2MG/Write.cs +++ b/Aaru.Images/Apple2MG/Write.cs @@ -61,6 +61,20 @@ public sealed partial class Apple2Mg } } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/AppleDOS/Write.cs b/Aaru.Images/AppleDOS/Write.cs index 4992b8f21..986bc237b 100644 --- a/Aaru.Images/AppleDOS/Write.cs +++ b/Aaru.Images/AppleDOS/Write.cs @@ -56,6 +56,20 @@ public sealed partial class AppleDos return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(mediaType != MediaType.Apple32SS && mediaType != MediaType.Apple33SS) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/Apridisk/Write.cs b/Aaru.Images/Apridisk/Write.cs index c19c6ea39..2f8cac833 100644 --- a/Aaru.Images/Apridisk/Write.cs +++ b/Aaru.Images/Apridisk/Write.cs @@ -59,6 +59,20 @@ public sealed partial class Apridisk return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + _imageInfo = new ImageInfo { MediaType = mediaType, diff --git a/Aaru.Images/BLU/Write.cs b/Aaru.Images/BLU/Write.cs index 5027086f2..9ac81f993 100644 --- a/Aaru.Images/BLU/Write.cs +++ b/Aaru.Images/BLU/Write.cs @@ -63,6 +63,20 @@ public sealed partial class Blu return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors > 0xFFFFFF) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/CDRDAO/Write.cs b/Aaru.Images/CDRDAO/Write.cs index 543833db1..2091488ab 100644 --- a/Aaru.Images/CDRDAO/Write.cs +++ b/Aaru.Images/CDRDAO/Write.cs @@ -75,6 +75,20 @@ public sealed partial class Cdrdao else _separateTracksWriting = false; + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); @@ -487,8 +501,9 @@ public sealed partial class Cdrdao } if(_writingTracks != null && _writingStreams != null) - foreach(FileStream oldTrack in _writingStreams.Select(t => t.Value).Distinct()) - oldTrack.Close(); + { + foreach(FileStream oldTrack in _writingStreams.Select(t => t.Value).Distinct()) oldTrack.Close(); + } ulong currentOffset = 0; _writingTracks = []; diff --git a/Aaru.Images/CDRWin/Write.cs b/Aaru.Images/CDRWin/Write.cs index f11b70aec..084a13287 100644 --- a/Aaru.Images/CDRWin/Write.cs +++ b/Aaru.Images/CDRWin/Write.cs @@ -81,6 +81,20 @@ public sealed partial class CdrWin return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + _imageInfo = new ImageInfo { MediaType = mediaType, @@ -422,8 +436,9 @@ public sealed partial class CdrWin } if(_writingTracks != null && _writingStreams != null) - foreach(FileStream oldTrack in _writingStreams.Select(t => t.Value).Distinct()) - oldTrack.Close(); + { + foreach(FileStream oldTrack in _writingStreams.Select(t => t.Value).Distinct()) oldTrack.Close(); + } _writingTracks = []; diff --git a/Aaru.Images/CisCopy/Write.cs b/Aaru.Images/CisCopy/Write.cs index 34e69bd3f..df9e5c60c 100644 --- a/Aaru.Images/CisCopy/Write.cs +++ b/Aaru.Images/CisCopy/Write.cs @@ -56,6 +56,20 @@ public sealed partial class CisCopy return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/CloneCD/Write.cs b/Aaru.Images/CloneCD/Write.cs index 8cb501831..0d0a473aa 100644 --- a/Aaru.Images/CloneCD/Write.cs +++ b/Aaru.Images/CloneCD/Write.cs @@ -62,6 +62,20 @@ public sealed partial class CloneCd return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + _imageInfo = new ImageInfo { MediaType = mediaType, diff --git a/Aaru.Images/CopyTape/Write.cs b/Aaru.Images/CopyTape/Write.cs index 59ef96d9f..629edf111 100644 --- a/Aaru.Images/CopyTape/Write.cs +++ b/Aaru.Images/CopyTape/Write.cs @@ -63,6 +63,20 @@ public sealed partial class CopyTape return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + _imageInfo = new ImageInfo { MediaType = mediaType, diff --git a/Aaru.Images/DiskCopy42/Write.cs b/Aaru.Images/DiskCopy42/Write.cs index e1a23fff6..44364e1f9 100644 --- a/Aaru.Images/DiskCopy42/Write.cs +++ b/Aaru.Images/DiskCopy42/Write.cs @@ -63,6 +63,20 @@ public sealed partial class DiskCopy42 return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + switch(mediaType) { case MediaType.AppleFileWare: diff --git a/Aaru.Images/DriDiskCopy/Write.cs b/Aaru.Images/DriDiskCopy/Write.cs index 1d540ba8f..2d4d4180c 100644 --- a/Aaru.Images/DriDiskCopy/Write.cs +++ b/Aaru.Images/DriDiskCopy/Write.cs @@ -58,6 +58,20 @@ public sealed partial class DriDiskCopy return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors > ushort.MaxValue) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/Localization/Localization.Designer.cs b/Aaru.Images/Localization/Localization.Designer.cs index 8709df02a..bf5e86689 100644 --- a/Aaru.Images/Localization/Localization.Designer.cs +++ b/Aaru.Images/Localization/Localization.Designer.cs @@ -11,46 +11,32 @@ namespace Aaru.Images { using System; - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Localization { - private static global::System.Resources.ResourceManager resourceMan; + private static System.Resources.ResourceManager resourceMan; - private static global::System.Globalization.CultureInfo resourceCulture; + private static System.Globalization.CultureInfo resourceCulture; - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Localization() { } - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aaru.Images.Localization.Localization", typeof(Localization).Assembly); + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aaru.Images.Localization.Localization", typeof(Localization).Assembly); resourceMan = temp; } return resourceMan; } } - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -59,5081 +45,60 @@ namespace Aaru.Images { } } - /// - /// Looks up a localized string similar to {0} ({1:P}%) MODE 2 Form 1 are correct, {2} ({3:P}%) MODE 2 Form 2 are correct, {4} ({5:P}%) MODE 2 Form 2 have empty CRC. - /// - internal static string _0_1_MODE_2_Form_1_are_correct_2_3_MODE_2_Form_2_are_correct_4_5_MODE_2_Form_2_have_empty_CRC { + internal static string Took_0_ms_to_deinterleave_subchannel { get { - return ResourceManager.GetString("_0_1_MODE_2_Form_1_are_correct_2_3_MODE_2_Form_2_are_correct_4_5_MODE_2_Form_2_ha" + - "ve_empty_CRC", resourceCulture); + return ResourceManager.GetString("Took_0_ms_to_deinterleave_subchannel", resourceCulture); } } - /// - /// Looks up a localized string similar to {0} ({1:P}%) prefixes are correct, {2} ({3:P}%) prefixes have not been dumped, {4} ({5:P}%) prefixes have been written to image. - /// - internal static string _0_1_prefixes_are_correct_2_3_prefixes_have_not_been_dumped_4_5_prefixes_have_been_written_to_image { + internal static string Took_0_ms_to_sequentialize_subchannel { get { - return ResourceManager.GetString("_0_1_prefixes_are_correct_2_3_prefixes_have_not_been_dumped_4_5_prefixes_have_bee" + - "n_written_to_image", resourceCulture); + return ResourceManager.GetString("Took_0_ms_to_sequentialize_subchannel", resourceCulture); } } - /// - /// Looks up a localized string similar to {0} ({1:P}%) suffixes are correct, {2} ({3:P}%) suffixes have not been dumped, {4} ({5:P}%) suffixes have been written to image. - /// - internal static string _0_1_suffixes_are_correct_2_3_suffixes_have_not_been_dumped_4_5_suffixes_have_been_written_to_image { + internal static string Took_0_ms_to_transform_subchannel { get { - return ResourceManager.GetString("_0_1_suffixes_are_correct_2_3_suffixes_have_not_been_dumped_4_5_suffixes_have_bee" + - "n_written_to_image", resourceCulture); + return ResourceManager.GetString("Took_0_ms_to_transform_subchannel", resourceCulture); } } - /// - /// Looks up a localized string similar to {0} bytes per sector. - /// - internal static string _0_bytes_per_sector { + internal static string Took_0_ms_to_desequentialize_subchannel { get { - return ResourceManager.GetString("_0_bytes_per_sector", resourceCulture); + return ResourceManager.GetString("Took_0_ms_to_desequentialize_subchannel", resourceCulture); } } - /// - /// Looks up a localized string similar to {0} is not an VMware extent.. - /// - internal static string _0_is_not_an_VMware_extent { + internal static string Took_0_ms_to_interleave_subchannel { get { - return ResourceManager.GetString("_0_is_not_an_VMware_extent", resourceCulture); + return ResourceManager.GetString("Took_0_ms_to_interleave_subchannel", resourceCulture); } } - /// - /// Looks up a localized string similar to {0} sectors. - /// - internal static string _0_sectors { + internal static string Took_0_ms_to_untransform_subchannel { get { - return ResourceManager.GetString("_0_sectors", resourceCulture); + return ResourceManager.GetString("Took_0_ms_to_untransform_subchannel", resourceCulture); } } - /// - /// Looks up a localized string similar to {0} sectors in {1} grains in {2} tables. - /// - internal static string _0_sectors_in_1_grains_in_2_tables { - get { - return ResourceManager.GetString("_0_sectors_in_1_grains_in_2_tables", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} tracks. - /// - internal static string _0_tracks { - get { - return ResourceManager.GetString("_0_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 2MG comments: {0}. - /// - internal static string _2MG_comments_0 { - get { - return ResourceManager.GetString("_2MG_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 2MG image contains a disk of type {0}. - /// - internal static string _2MG_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("_2MG_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 5, 6 or 7. - /// - internal static string _5_6_or_7 { - get { - return ResourceManager.GetString("_5_6_or_7", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to A2R. - /// - internal static string A2R_Name { - get { - return ResourceManager.GetString("A2R_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Aaru Format. - /// internal static string AaruFormat_Name { get { return ResourceManager.GetString("AaruFormat_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to AddressMark cylinder: {0}. - /// - internal static string AddressMark_cylinder_0 { - get { - return ResourceManager.GetString("AddressMark_cylinder_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AddressMark head: {0}. - /// - internal static string AddressMark_head_0 { - get { - return ResourceManager.GetString("AddressMark_head_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AddressMark sector number: {0}. - /// - internal static string AddressMark_sector_number_0 { - get { - return ResourceManager.GetString("AddressMark_sector_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AES encrypted images not yet supported. - /// - internal static string AES_encrypted_images_not_yet_supported { - get { - return ResourceManager.GetString("AES_encrypted_images_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Alcohol 120% image describes a disc of type {0}. - /// - internal static string Alcohol_120_image_describes_a_disc_of_type_0 { - get { - return ResourceManager.GetString("Alcohol_120_image_describes_a_disc_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Alcohol 120% Media Descriptor Structure. - /// - internal static string Alcohol120_Name { - get { - return ResourceManager.GetString("Alcohol120_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All tracks are same size? {0}. - /// - internal static string All_tracks_are_same_size_0 { - get { - return ResourceManager.GetString("All_tracks_are_same_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Anex86 Disk Image. - /// - internal static string Anex86_Name { - get { - return ResourceManager.GetString("Anex86_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple 2IMG. - /// - internal static string Apple2Mg_Name { - get { - return ResourceManager.GetString("Apple2Mg_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple ][ Interleaved Disk Image. - /// - internal static string AppleDos_Name { - get { - return ResourceManager.GetString("AppleDos_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple NIB. - /// - internal static string AppleNib_Name { - get { - return ResourceManager.GetString("AppleNib_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ACT Apricot Disk Image. - /// - internal static string Apridisk_Name { - get { - return ResourceManager.GetString("Apridisk_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Arranger: {0}. - /// - internal static string Arranger_0 { - get { - return ResourceManager.GetString("Arranger_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Arranger is not set.. - /// - internal static string Arranger_is_not_set { - get { - return ResourceManager.GetString("Arranger_is_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Arrived end of disk at cylinder {0}. - /// - internal static string Arrived_end_of_disk_at_cylinder_0 { - get { - return ResourceManager.GetString("Arrived_end_of_disk_at_cylinder_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Asia (NTSC). - /// - internal static string Asia_NTSC { - get { - return ResourceManager.GetString("Asia_NTSC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Atari Lynx. - /// - internal static string AtariLynx_Name { - get { - return ResourceManager.GetString("AtariLynx_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Australia. - /// - internal static string Australia { - get { - return ResourceManager.GetString("Australia", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bank 1 size: {0} pages ({1} bytes). - /// - internal static string Bank_one_size_0_pages_1_bytes { - get { - return ResourceManager.GetString("Bank_one_size_0_pages_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bank size: {0} bytes. - /// - internal static string Bank_size_0_bytes { - get { - return ResourceManager.GetString("Bank_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bank 0 size: {0} pages ({1} bytes). - /// - internal static string Bank_zero_size_0_pages_1_bytes { - get { - return ResourceManager.GetString("Bank_zero_size_0_pages_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Barcode: {0}. - /// - internal static string Barcode_0 { - get { - return ResourceManager.GetString("Barcode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Barcode not set.. - /// - internal static string Barcode_not_set { - get { - return ResourceManager.GetString("Barcode_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BAT not found, cannot continue.. - /// - internal static string BAT_not_found_cannot_continue { - get { - return ResourceManager.GetString("BAT_not_found_cannot_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Beta. - /// - internal static string Beta { - get { - return ResourceManager.GetString("Beta", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bitmap is {0} sectors. - /// - internal static string Bitmap_is_0_sectors { - get { - return ResourceManager.GetString("Bitmap_is_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BlindWrite comments: {0}. - /// - internal static string BlindWrite_comments_0 { - get { - return ResourceManager.GetString("BlindWrite_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BlindWrite image describes a disc of type {0}. - /// - internal static string BlindWrite_image_describes_a_disc_of_type_0 { - get { - return ResourceManager.GetString("BlindWrite_image_describes_a_disc_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BlindWrite 4. - /// - internal static string BlindWrite4_Name { - get { - return ResourceManager.GetString("BlindWrite4_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BlindWrite5 found unknown subchannel size: {0}. - /// - internal static string BlindWrite5_found_unknown_subchannel_size_0 { - get { - return ResourceManager.GetString("BlindWrite5_found_unknown_subchannel_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BlindWrite5 image ends after expected position. Probably new version with different data. Errors may occur.. - /// - internal static string BlindWrite5_image_ends_after_expected_position_Probably_new_version_with_different_data_Errors_may_occur { - get { - return ResourceManager.GetString("BlindWrite5_image_ends_after_expected_position_Probably_new_version_with_differen" + - "t_data_Errors_may_occur", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BlindWrite 5. - /// - internal static string BlindWrite5_Name { - get { - return ResourceManager.GetString("BlindWrite5_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (Block pattern decoder): Input data size: {0} bytes. - /// - internal static string Block_pattern_decoder_Input_data_size_0_bytes { - get { - return ResourceManager.GetString("Block_pattern_decoder_Input_data_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (Block pattern decoder): Output data size: {0} bytes. - /// - internal static string Block_pattern_decoder_Output_data_size_0_bytes { - get { - return ResourceManager.GetString("Block_pattern_decoder_Output_data_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (Block pattern decoder): Processed input: {0} bytes. - /// - internal static string Block_pattern_decoder_Processed_input_0_bytes { - get { - return ResourceManager.GetString("Block_pattern_decoder_Processed_input_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (Block pattern decoder): Processed Output: {0} bytes. - /// - internal static string Block_pattern_decoder_Processed_Output_0_bytes { - get { - return ResourceManager.GetString("Block_pattern_decoder_Processed_Output_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Block size too small for number of sectors, try with a bigger value.. - /// - internal static string Block_size_too_small_for_number_of_sectors { - get { - return ResourceManager.GetString("Block_size_too_small_for_number_of_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Block type {0} with data type {1} is indexed to be at {2}. - /// - internal static string Block_type_0_with_data_type_1_is_indexed_to_be_at_2 { - get { - return ResourceManager.GetString("Block_type_0_with_data_type_1_is_indexed_to_be_at_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BLU image contains a disk of type {0}. - /// - internal static string BLU_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("BLU_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Basic Lisa Utility. - /// - internal static string Blu_Name { - get { - return ResourceManager.GetString("Blu_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Brazil. - /// - internal static string Brazil { - get { - return ResourceManager.GetString("Brazil", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Breaking track processing and trying recovery of information.. - /// - internal static string Breaking_track_processing_and_trying_recovery_of_information { - get { - return ResourceManager.GetString("Breaking_track_processing_and_trying_recovery_of_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Buffer must not be null.. - /// - internal static string Buffer_must_not_be_null { - get { - return ResourceManager.GetString("Buffer_must_not_be_null", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Building maps. - /// - internal static string Building_maps { - get { - return ResourceManager.GetString("Building_maps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Building offset map. - /// - internal static string Building_offset_map { - get { - return ResourceManager.GetString("Building_offset_map", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Building offset, track and session maps. - /// - internal static string Building_offset_track_and_session_maps { - get { - return ResourceManager.GetString("Building_offset_track_and_session_maps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculate and store MD5 of image's user data. - /// - internal static string Calculate_and_store_MD5_of_image_user_data { - get { - return ResourceManager.GetString("Calculate_and_store_MD5_of_image_user_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculate and store SHA1 of image's user data. - /// - internal static string Calculate_and_store_SHA1_of_image_user_data { - get { - return ResourceManager.GetString("Calculate_and_store_SHA1_of_image_user_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculate and store SHA256 of image's user data. - /// - internal static string Calculate_and_store_SHA256_of_image_user_data { - get { - return ResourceManager.GetString("Calculate_and_store_SHA256_of_image_user_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculate and store SpamSum of image's user data. - /// - internal static string Calculate_and_store_SpamSum_of_image_user_data { - get { - return ResourceManager.GetString("Calculate_and_store_SpamSum_of_image_user_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated checksum = 0x{0:X8}, {1}. - /// - internal static string Calculated_checksum_equals_0_X8_1 { - get { - return ResourceManager.GetString("Calculated_checksum_equals_0_X8_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated CRC does not coincide with stored one.. - /// - internal static string Calculated_CRC_does_not_coincide_with_stored_one { - get { - return ResourceManager.GetString("Calculated_CRC_does_not_coincide_with_stored_one", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated CRC = 0x{0:X4}. - /// - internal static string Calculated_CRC_equals_0_X4 { - get { - return ResourceManager.GetString("Calculated_CRC_equals_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated CRC32: {0}. - /// - internal static string Calculated_CRC32_0 { - get { - return ResourceManager.GetString("Calculated_CRC32_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated data checksum = 0x{0:X8}. - /// - internal static string Calculated_data_checksum_equals_0_X8 { - get { - return ResourceManager.GetString("Calculated_data_checksum_equals_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated data CRC = 0x{0:X8}, {1}. - /// - internal static string Calculated_data_CRC_equals_0_X8_1 { - get { - return ResourceManager.GetString("Calculated_data_CRC_equals_0_X8_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated header checksum = 0x{0:X2}, {1}. - /// - internal static string Calculated_header_checksum_equals_0_X2_1 { - get { - return ResourceManager.GetString("Calculated_header_checksum_equals_0_X2_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to calculated header crc = 0x{0:X4}. - /// - internal static string calculated_header_crc_equals_0_X4 { - get { - return ResourceManager.GetString("calculated_header_crc_equals_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated MD5: {0}. - /// - internal static string Calculated_MD5_0 { - get { - return ResourceManager.GetString("Calculated_MD5_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated SHA1: {0}. - /// - internal static string Calculated_SHA1_0 { - get { - return ResourceManager.GetString("Calculated_SHA1_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculated tag checksum = 0x{0:X8}. - /// - internal static string Calculated_tag_checksum_equals_0_X8 { - get { - return ResourceManager.GetString("Calculated_tag_checksum_equals_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculating data checksum. - /// - internal static string Calculating_data_checksum { - get { - return ResourceManager.GetString("Calculating_data_checksum", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Calculating tag checksum. - /// - internal static string Calculating_tag_checksum { - get { - return ResourceManager.GetString("Calculating_tag_checksum", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Canada. - /// - internal static string Canada { - get { - return ResourceManager.GetString("Canada", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot access NOACCESS extents 😉.. - /// - internal static string Cannot_access_NOACCESS_extents { - get { - return ResourceManager.GetString("Cannot_access_NOACCESS_extents", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot append to a non Aaru Format image. - /// - internal static string Cannot_append_to_a_non_Aaru_Format_image { - get { - return ResourceManager.GetString("Cannot_append_to_a_non_Aaru_Format_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot append to an unknown image version {0}. - /// - internal static string Cannot_append_to_an_unknown_image_version_0 { - get { - return ResourceManager.GetString("Cannot_append_to_an_unknown_image_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot create an opened image. - /// - internal static string Cannot_create_an_opened_image { - get { - return ResourceManager.GetString("Cannot_create_an_opened_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot decode block header, cannot open.. - /// - internal static string Cannot_decode_block_header_cannot_open { - get { - return ResourceManager.GetString("Cannot_decode_block_header_cannot_open", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find bitmap. - /// - internal static string Cannot_find_bitmap { - get { - return ResourceManager.GetString("Cannot_find_bitmap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find cyl 0 hd 0, supposing only top head was dumped. - /// - internal static string Cannot_find_cyl_0_hd_0_supposing_only_top_head_was_dumped { - get { - return ResourceManager.GetString("Cannot_find_cyl_0_hd_0_supposing_only_top_head_was_dumped", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find cyl 0 hd 1, supposing only bottom head was dumped. - /// - internal static string Cannot_find_cyl_0_hd_1_supposing_only_bottom_head_was_dumped { - get { - return ResourceManager.GetString("Cannot_find_cyl_0_hd_1_supposing_only_bottom_head_was_dumped", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find cyl 1, supposing double stepping. - /// - internal static string Cannot_find_cyl_1_supposing_double_stepping { - get { - return ResourceManager.GetString("Cannot_find_cyl_1_supposing_double_stepping", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find data blocks. - /// - internal static string Cannot_find_data_blocks { - get { - return ResourceManager.GetString("Cannot_find_data_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find data file {0}. - /// - internal static string Cannot_find_data_file_0 { - get { - return ResourceManager.GetString("Cannot_find_data_file_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find info block. - /// - internal static string Cannot_find_info_block { - get { - return ResourceManager.GetString("Cannot_find_info_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find local header. - /// - internal static string Cannot_find_local_header { - get { - return ResourceManager.GetString("Cannot_find_local_header", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find MBRs. - /// - internal static string Cannot_find_MBRs { - get { - return ResourceManager.GetString("Cannot_find_MBRs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find parent "{0}".. - /// - internal static string Cannot_find_parent_0 { - get { - return ResourceManager.GetString("Cannot_find_parent_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find tail. Multiple volumes are not supported or image is corrupt.. - /// - internal static string Cannot_find_tail_Multiple_volumes_are_not_supported_or_image_is_corrupt { - get { - return ResourceManager.GetString("Cannot_find_tail_Multiple_volumes_are_not_supported_or_image_is_corrupt", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot open data file. - /// - internal static string Cannot_open_data_file { - get { - return ResourceManager.GetString("Cannot_open_data_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot read compressed CHD version 5. - /// - internal static string Cannot_read_compressed_CHD_version_5 { - get { - return ResourceManager.GetString("Cannot_read_compressed_CHD_version_5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot skip blocks. - /// - internal static string Cannot_skip_blocks { - get { - return ResourceManager.GetString("Cannot_skip_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write a media with type {0} to an image with type {1}. - /// - internal static string Cannot_write_a_media_with_type_0_to_an_image_with_type_1 { - get { - return ResourceManager.GetString("Cannot_write_a_media_with_type_0_to_an_image_with_type_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write non-long sectors to CD images.. - /// - internal static string Cannot_write_non_long_sectors_to_CD_images { - get { - return ResourceManager.GetString("Cannot_write_non_long_sectors_to_CD_images", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot write unwritten blocks. - /// - internal static string Cannot_write_unwritten_blocks { - get { - return ResourceManager.GetString("Cannot_write_unwritten_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can't cross tracks. - /// - internal static string Cant_cross_tracks { - get { - return ResourceManager.GetString("Cant_cross_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can't find file containing {0}. - /// - internal static string Cant_find_file_containing_0 { - get { - return ResourceManager.GetString("Cant_find_file_containing_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can't find track {0}. - /// - internal static string Cant_find_track_0 { - get { - return ResourceManager.GetString("Cant_find_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can't find track containing {0}. - /// - internal static string Cant_find_track_containing_0 { - get { - return ResourceManager.GetString("Cant_find_track_containing_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cartridge chip set: {0}. - /// - internal static string Cartridge_chip_set_0 { - get { - return ResourceManager.GetString("Cartridge_chip_set_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cartridge ID: {0}. - /// - internal static string Cartridge_ID_0 { - get { - return ResourceManager.GetString("Cartridge_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cartridge type: {0}. - /// - internal static string Cartridge_type_0 { - get { - return ResourceManager.GetString("Cartridge_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD-TEXT binary file: {0}. - /// - internal static string CD_TEXT_binary_file_0 { - get { - return ResourceManager.GetString("CD_TEXT_binary_file_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD-TEXT binary file not set.. - /// - internal static string CD_TEXT_binary_file_not_set { - get { - return ResourceManager.GetString("CD_TEXT_binary_file_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD-TEXT entry {0}. - /// - internal static string CD_TEXT_entry_0 { - get { - return ResourceManager.GetString("CD_TEXT_entry_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CDRDAO comments: {0}. - /// - internal static string CDRDAO_comments_0 { - get { - return ResourceManager.GetString("CDRDAO_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CDRDAO image describes a disc of type {0}. - /// - internal static string CDRDAO_image_describes_a_disc_of_type_0 { - get { - return ResourceManager.GetString("CDRDAO_image_describes_a_disc_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CDRDAO tocfile. - /// - internal static string Cdrdao_Name { - get { - return ResourceManager.GetString("Cdrdao_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CDRWIN comments: {0}. - /// - internal static string CDRWIN_comments_0 { - get { - return ResourceManager.GetString("CDRWIN_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CDRWIN image describes a disc of type {0}. - /// - internal static string CDRWIN_image_describes_a_disc_of_type_0 { - get { - return ResourceManager.GetString("CDRWIN_image_describes_a_disc_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CDRWin cuesheet. - /// - internal static string CdrWin_Name { - get { - return ResourceManager.GetString("CdrWin_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MAME Compressed Hunks of Data. - /// - internal static string Chd_Name { - get { - return ResourceManager.GetString("Chd_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CHD version 5 is not yet supported.. - /// - internal static string CHD_version_5_is_not_yet_supported { - get { - return ResourceManager.GetString("CHD_version_5_is_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking index integrity at {0}. - /// - internal static string Checking_index_integrity_at_0 { - get { - return ResourceManager.GetString("Checking_index_integrity_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checksum: 0x{0:X4}. - /// - internal static string Checksum_0_X4 { - get { - return ResourceManager.GetString("Checksum_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to China. - /// - internal static string China { - get { - return ResourceManager.GetString("China", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to China, Hong Kong. - /// - internal static string China_Hong_Kong { - get { - return ResourceManager.GetString("China_Hong_Kong", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CHR ROM size: {0} bytes. - /// - internal static string CHR_ROM_size_0_bytes { - get { - return ResourceManager.GetString("CHR_ROM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CHS {0},{1},{2}: CRC mismatch: stored CRC=0x{3:x4}, calculated CRC=0x{4:x4}. - /// - internal static string CHS_0_1_2_CRC_mismatch_stored_CRC_3_X4_calculated_CRC_4_X4 { - get { - return ResourceManager.GetString("CHS_0_1_2_CRC_mismatch_stored_CRC_3_X4_calculated_CRC_4_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Chunks compressed with KenCode are not yet supported.. - /// - internal static string Chunks_compressed_with_KenCode_are_not_yet_supported { - get { - return ResourceManager.GetString("Chunks_compressed_with_KenCode_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Chunks compressed with lzfse are not yet supported.. - /// - internal static string Chunks_compressed_with_lzfse_are_not_yet_supported { - get { - return ResourceManager.GetString("Chunks_compressed_with_lzfse_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Chunks compressed with LZH are not yet supported.. - /// - internal static string Chunks_compressed_with_LZH_are_not_yet_supported { - get { - return ResourceManager.GetString("Chunks_compressed_with_LZH_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Chunks compressed with StuffIt! are not yet supported.. - /// - internal static string Chunks_compressed_with_StuffIt_are_not_yet_supported { - get { - return ResourceManager.GetString("Chunks_compressed_with_StuffIt_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CisCopy image contains a disk of type {0}. - /// - internal static string CisCopy_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("CisCopy_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CisCopy Disk Image (DC-File). - /// - internal static string CisCopy_Name { - get { - return ResourceManager.GetString("CisCopy_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CloneCD. - /// - internal static string CloneCd_Name { - get { - return ResourceManager.GetString("CloneCd_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (CloneCD plugin): Warning! Unknown CCD image version {0}, may not work!. - /// - internal static string CloneCD_plugin_Warning_Unknown_CCD_image_version_0_may_not_work { - get { - return ResourceManager.GetString("CloneCD_plugin_Warning_Unknown_CCD_image_version_0_may_not_work", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cluster size must be a power of 2. - /// - internal static string Cluster_size_must_be_a_power_of_2 { - get { - return ResourceManager.GetString("Cluster_size_must_be_a_power_of_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cluster size must be between 4 Kbytes and 64 Mbytes. - /// - internal static string Cluster_size_must_be_between_4_Kbytes_and_64_Mbytes { - get { - return ResourceManager.GetString("Cluster_size_must_be_between_4_Kbytes_and_64_Mbytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cluster size must be between 512 bytes and 64 Kbytes. - /// - internal static string Cluster_size_must_be_between_512_bytes_and_64_Kbytes { - get { - return ResourceManager.GetString("Cluster_size_must_be_between_512_bytes_and_64_Kbytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Comment. - /// - internal static string Comment { - get { - return ResourceManager.GetString("Comment", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Comment: "{0}". - /// - internal static string Comment_0 { - get { - return ResourceManager.GetString("Comment_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Comment header. - /// - internal static string Comment_header { - get { - return ResourceManager.GetString("Comment_header", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Comment not set.. - /// - internal static string Comment_not_set { - get { - return ResourceManager.GetString("Comment_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Comment present, reading. - /// - internal static string Comment_present_reading { - get { - return ResourceManager.GetString("Comment_present_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Composer: {0}. - /// - internal static string Composer_0 { - get { - return ResourceManager.GetString("Composer_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Composer is not set.. - /// - internal static string Composer_is_not_set { - get { - return ResourceManager.GetString("Composer_is_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compress user data blocks. Other blocks will always be compressed. - /// - internal static string Compress_user_data_blocks_Other_blocks_will_always_be_compressed { - get { - return ResourceManager.GetString("Compress_user_data_blocks_Other_blocks_will_always_be_compressed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compressed CD/GD-ROM hunks are not yet supported. - /// - internal static string Compressed_CD_GD_ROM_hunks_are_not_yet_supported { - get { - return ResourceManager.GetString("Compressed_CD_GD_ROM_hunks_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compressed extents are not yet supported.. - /// - internal static string Compressed_extents_are_not_yet_supported { - get { - return ResourceManager.GetString("Compressed_extents_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compressed images are not supported.. - /// - internal static string Compressed_images_are_not_supported { - get { - return ResourceManager.GetString("Compressed_images_are_not_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compressed SaveDskF images are not supported.. - /// - internal static string Compressed_SaveDskF_images_are_not_supported { - get { - return ResourceManager.GetString("Compressed_SaveDskF_images_are_not_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compressed v5 hunks not yet supported. - /// - internal static string Compressed_v5_hunks_not_yet_supported { - get { - return ResourceManager.GetString("Compressed_v5_hunks_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Console type: {0}. - /// - internal static string Console_type_0 { - get { - return ResourceManager.GetString("Console_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Contains features for Game Boy Color. - /// - internal static string Contains_features_for_Game_Boy_Color { - get { - return ResourceManager.GetString("Contains_features_for_Game_Boy_Color", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Contains features for Super Game Boy. - /// - internal static string Contains_features_for_Super_Game_Boy { - get { - return ResourceManager.GetString("Contains_features_for_Super_Game_Boy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cooking sectors. - /// - internal static string Cooking_sectors { - get { - return ResourceManager.GetString("Cooking_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Coprocessor: {0}. - /// - internal static string Coprocessor_0 { - get { - return ResourceManager.GetString("Coprocessor_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CopyQM comments: {0}. - /// - internal static string CopyQM_comments_0 { - get { - return ResourceManager.GetString("CopyQM_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CopyQM image contains a disk of type {0}. - /// - internal static string CopyQM_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("CopyQM_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sydex CopyQM. - /// - internal static string CopyQm_Name { - get { - return ResourceManager.GetString("CopyQm_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Copyright string: {0}. - /// - internal static string Copyright_string_0 { - get { - return ResourceManager.GetString("Copyright_string_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CopyTape. - /// - internal static string CopyTape_Name { - get { - return ResourceManager.GetString("CopyTape_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Correctly arrived end of image. - /// - internal static string Correctly_arrived_end_of_image { - get { - return ResourceManager.GetString("Correctly_arrived_end_of_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not create new image file, exception {0}. - /// - internal static string Could_not_create_new_image_file_exception_0 { - get { - return ResourceManager.GetString("Could_not_create_new_image_file_exception_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not create subchannel file, exception {0}. - /// - internal static string Could_not_create_subchannel_file_exception_0 { - get { - return ResourceManager.GetString("Could_not_create_subchannel_file_exception_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find image for track {0}. - /// - internal static string Could_not_find_image_for_track_0 { - get { - return ResourceManager.GetString("Could_not_find_image_for_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find partclone BiTmAgIc, not continuing.... - /// - internal static string Could_not_find_partclone_BiTmAgIc_not_continuing { - get { - return ResourceManager.GetString("Could_not_find_partclone_BiTmAgIc_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find user data deduplication table.. - /// - internal static string Could_not_find_user_data_deduplication_table { - get { - return ResourceManager.GetString("Could_not_find_user_data_deduplication_table", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not parse property list.. - /// - internal static string Could_not_parse_property_list { - get { - return ResourceManager.GetString("Could_not_parse_property_list", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not retrieve block chunks. Please fill an issue and send it to us.. - /// - internal static string Could_not_retrieve_block_chunks { - get { - return ResourceManager.GetString("Could_not_retrieve_block_chunks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not retrieve block chunks array.. - /// - internal static string Could_not_retrieve_block_chunks_array { - get { - return ResourceManager.GetString("Could_not_retrieve_block_chunks_array", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not retrieve Data. - /// - internal static string Could_not_retrieve_Data { - get { - return ResourceManager.GetString("Could_not_retrieve_Data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not retrieve Name. - /// - internal static string Could_not_retrieve_Name { - get { - return ResourceManager.GetString("Could_not_retrieve_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not retrieve resource fork.. - /// - internal static string Could_not_retrieve_resource_fork { - get { - return ResourceManager.GetString("Could_not_retrieve_resource_fork", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CPCEMU Disk-File and Extended CPC Disk-File. - /// - internal static string Cpcdsk_Name { - get { - return ResourceManager.GetString("Cpcdsk_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CRC1: 0x{0:X8}. - /// - internal static string CRC1_0 { - get { - return ResourceManager.GetString("CRC1_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CRC2: 0x{0:X8}. - /// - internal static string CRC2_0 { - get { - return ResourceManager.GetString("CRC2_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Create a dynamic image, empty sectors are ignored. - /// - internal static string Create_a_dynamic_image { - get { - return ResourceManager.GetString("Create_a_dynamic_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creator: "{0}". - /// - internal static string Creator_0 { - get { - return ResourceManager.GetString("Creator_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cuesheet entry {0}. - /// - internal static string Cuesheet_entry_0 { - get { - return ResourceManager.GetString("Cuesheet_entry_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Current position = {0}. - /// - internal static string Current_position_equals_0 { - get { - return ResourceManager.GetString("Current_position_equals_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to cylinders = {0}. - /// - internal static string cylinders_equal_0 { - get { - return ResourceManager.GetString("cylinders_equal_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to D88 Disk Image. - /// - internal static string D88_Name { - get { - return ResourceManager.GetString("D88_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple Disk Archival/Retrieval Tool. - /// - internal static string Dart_Name { - get { - return ResourceManager.GetString("Dart_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data: {0} sectors. - /// - internal static string Data_0_sectors { - get { - return ResourceManager.GetString("Data_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data: {0} sectors starting at sector {1}. - /// - internal static string Data_0_sectors_starting_at_sector_1 { - get { - return ResourceManager.GetString("Data_0_sectors_starting_at_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data encoding {0} is incorrect.. - /// - internal static string Data_encoding_0_is_incorrect { - get { - return ResourceManager.GetString("Data_encoding_0_is_incorrect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data encoding: 0x{0:X2}. - /// - internal static string Data_encoding_0_X2 { - get { - return ResourceManager.GetString("Data_encoding_0_X2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data file {0} not found. - /// - internal static string Data_file_0_not_found { - get { - return ResourceManager.GetString("Data_file_0_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data filename: {0}. - /// - internal static string Data_filename_0 { - get { - return ResourceManager.GetString("Data_filename_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data path: {0}. - /// - internal static string Data_path_0 { - get { - return ResourceManager.GetString("Data_path_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data size (in-image): {0}. - /// - internal static string Data_size_in_image_0 { - get { - return ResourceManager.GetString("Data_size_in_image_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decoding whole image. - /// - internal static string Decoding_whole_image { - get { - return ResourceManager.GetString("Decoding_whole_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decompressing DDT.... - /// - internal static string Decompressing_DDT { - get { - return ResourceManager.GetString("Decompressing_DDT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Denmark. - /// - internal static string Denmark { - get { - return ResourceManager.GetString("Denmark", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Detected DiskDupe DDI image with {0} tracks and {1} sectors per track.. - /// - internal static string Detected_DiskDupe_DDI_image_with_0_tracks_and_1_sectors_per_track { - get { - return ResourceManager.GetString("Detected_DiskDupe_DDI_image_with_0_tracks_and_1_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Detected HD-Copy image with {0} tracks and {1} sectors per track.. - /// - internal static string Detected_HD_Copy_image_with_0_tracks_and_1_sectors_per_track { - get { - return ResourceManager.GetString("Detected_HD_Copy_image_with_0_tracks_and_1_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Detected incorrect endian on data size field, correcting.. - /// - internal static string Detected_incorrect_endian_on_data_size_field_correcting { - get { - return ResourceManager.GetString("Detected_incorrect_endian_on_data_size_field_correcting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Detected WC DISK IMAGE with {0} heads, {1} tracks and {2} sectors per track.. - /// - internal static string Detected_WC_DISK_IMAGE_with_0_heads_1_tracks_and_2_sectors_per_track { - get { - return ResourceManager.GetString("Detected_WC_DISK_IMAGE_with_0_heads_1_tracks_and_2_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device type: {0}. - /// - internal static string Device_type_0 { - get { - return ResourceManager.GetString("Device_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Devices supported: {0}. - /// - internal static string Devices_supported_0 { - get { - return ResourceManager.GetString("Devices_supported_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Did not find any extent. - /// - internal static string Did_not_find_any_extent { - get { - return ResourceManager.GetString("Did_not_find_any_extent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Did not find any track.. - /// - internal static string Did_not_find_any_track { - get { - return ResourceManager.GetString("Did_not_find_any_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Differencing images not yet supported. - /// - internal static string Differencing_images_not_yet_supported { - get { - return ResourceManager.GetString("Differencing_images_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Digital Research DiskCopy image contains a disk of type {0}. - /// - internal static string Digital_Research_DiskCopy_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("Digital_Research_DiskCopy_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DIM comments: {0}. - /// - internal static string DIM_comments_0 { - get { - return ResourceManager.GetString("DIM_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DIM image contains a disk of type {0}. - /// - internal static string DIM_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("DIM_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DIM Disk Image. - /// - internal static string Dim_Name { - get { - return ResourceManager.GetString("Dim_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DIM shows unknown image with {0} tracks. - /// - internal static string DIM_shows_unknown_image_with_0_tracks { - get { - return ResourceManager.GetString("DIM_shows_unknown_image_with_0_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory listing present, reading. - /// - internal static string Directory_listing_present_reading { - get { - return ResourceManager.GetString("Directory_listing_present_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc-At-Once entry {0}. - /// - internal static string Disc_At_Once_entry_0 { - get { - return ResourceManager.GetString("Disc_At_Once_entry_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc CD-TEXT:. - /// - internal static string Disc_CD_TEXT { - get { - return ResourceManager.GetString("Disc_CD_TEXT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc contains {0} sessions. - /// - internal static string Disc_contains_0_sessions { - get { - return ResourceManager.GetString("Disc_contains_0_sessions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc contains {0} tracks. - /// - internal static string Disc_contains_0_tracks { - get { - return ResourceManager.GetString("Disc_contains_0_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc ID: {0}. - /// - internal static string Disc_ID_0 { - get { - return ResourceManager.GetString("Disc_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc ID: {0:X6}. - /// - internal static string Disc_ID_0_X6 { - get { - return ResourceManager.GetString("Disc_ID_0_X6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc ID not set.. - /// - internal static string Disc_ID_not_set { - get { - return ResourceManager.GetString("Disc_ID_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc image parsing results. - /// - internal static string Disc_image_parsing_results { - get { - return ResourceManager.GetString("Disc_image_parsing_results", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc information:. - /// - internal static string Disc_information { - get { - return ResourceManager.GetString("Disc_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc information: {0}. - /// - internal static string Disc_information_0 { - get { - return ResourceManager.GetString("Disc_information_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc manufactured by: {0}. - /// - internal static string Disc_manufactured_by_0 { - get { - return ResourceManager.GetString("Disc_manufactured_by_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc Type: {0}. - /// - internal static string Disc_Type_0 { - get { - return ResourceManager.GetString("Disc_Type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DiscFerret. - /// - internal static string DiscFerret_Name { - get { - return ResourceManager.GetString("DiscFerret_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DiscJuggler. - /// - internal static string DiscJuggler_Name { - get { - return ResourceManager.GetString("DiscJuggler_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk tracks are not same size. spt = {0} (expected {1}), bps = {2} (expected {3}) at track {4} sector {5}. - /// - internal static string Disk_tracks_are_not_same_size { - get { - return ResourceManager.GetString("Disk_tracks_are_not_same_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DiskCopy 4.2 image contains a disk of type {0}. - /// - internal static string DiskCopy_4_2_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("DiskCopy_4_2_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple DiskCopy 4.2. - /// - internal static string DiskCopy42_Name { - get { - return ResourceManager.GetString("DiskCopy42_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DiskDupe DDI Disk Image. - /// - internal static string DiskDupe_Name { - get { - return ResourceManager.GetString("DiskDupe_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Domestic title: {0}. - /// - internal static string Domestic_title_0 { - get { - return ResourceManager.GetString("Domestic_title_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Don't know how to write sector tag type {0}. - /// - internal static string Dont_know_how_to_write_sector_tag_type_0 { - get { - return ResourceManager.GetString("Dont_know_how_to_write_sector_tag_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Digital Research DiskCopy. - /// - internal static string DriDiskCopy_Name { - get { - return ResourceManager.GetString("DriDiskCopy_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dunno how to handle "{0}" extents.. - /// - internal static string Dunno_how_to_handle_0_extents { - get { - return ResourceManager.GetString("Dunno_how_to_handle_0_extents", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dynamic header checksum = 0x{0:X8}, calculated = 0x{1:X8}. - /// - internal static string Dynamic_header_checksum_equals_0_X8_calculated_1_X8 { - get { - return ResourceManager.GetString("Dynamic_header_checksum_equals_0_X8_calculated_1_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable Apridisk compression.. - /// - internal static string Enable_Apridisk_compression { - get { - return ResourceManager.GetString("Enable_Apridisk_compression", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Encrypted images are not yet supported.. - /// - internal static string Encrypted_images_are_not_yet_supported { - get { - return ResourceManager.GetString("Encrypted_images_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to End of disk image arrived. - /// - internal static string End_of_disk_image_arrived { - get { - return ResourceManager.GetString("End_of_disk_image_arrived", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to End position = {0}. - /// - internal static string End_position_equals_0 { - get { - return ResourceManager.GetString("End_position_equals_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ending sector: {0}. - /// - internal static string Ending_sector_0 { - get { - return ResourceManager.GetString("Ending_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ending track: {0}. - /// - internal static string Ending_track_0 { - get { - return ResourceManager.GetString("Ending_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} opening parent "{1}".. - /// - internal static string Error_0_opening_parent_1 { - get { - return ResourceManager.GetString("Error_0_opening_parent_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error decompressing block, should be {0} bytes but got {1} bytes.. - /// - internal static string Error_decompressing_block_should_be_0_bytes_but_got_1_bytes { - get { - return ResourceManager.GetString("Error_decompressing_block_should_be_0_bytes_but_got_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error decompressing DDT, should be {0} bytes but got {1} bytes.. - /// - internal static string Error_decompressing_DDT_should_be_0_bytes_but_got_1_bytes { - get { - return ResourceManager.GetString("Error_decompressing_DDT_should_be_0_bytes_but_got_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Europe. - /// - internal static string Europe { - get { - return ResourceManager.GetString("Europe", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Europe, Oceania, Asia. - /// - internal static string Europe_Oceania_Asia { - get { - return ResourceManager.GetString("Europe_Oceania_Asia", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception: {0}. - /// - internal static string Exception_0 { - get { - return ResourceManager.GetString("Exception_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception {0} processing Aaru Metadata block. - /// - internal static string Exception_0_processing_Aaru_Metadata_block { - get { - return ResourceManager.GetString("Exception_0_processing_Aaru_Metadata_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception {0} processing CICM XML metadata block. - /// - internal static string Exception_0_processing_CICM_XML_metadata_block { - get { - return ResourceManager.GetString("Exception_0_processing_CICM_XML_metadata_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception occurred opening file.. - /// - internal static string Exception_occurred_opening_file { - get { - return ResourceManager.GetString("Exception_occurred_opening_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception trying to identify image file {0}. - /// - internal static string Exception_trying_to_identify_image_file_0 { - get { - return ResourceManager.GetString("Exception_trying_to_identify_image_file_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception trying to open image file {0}. - /// - internal static string Exception_trying_to_open_image_file_0 { - get { - return ResourceManager.GetString("Exception_trying_to_open_image_file_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expansion RAM size: {0} bytes. - /// - internal static string Expansion_RAM_size_0_bytes { - get { - return ResourceManager.GetString("Expansion_RAM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected block CRC {0:X16} but got {1:X16}. - /// - internal static string Expected_block_CRC_0_X16_but_got_1_X16 { - get { - return ResourceManager.GetString("Expected_block_CRC_0_X16_but_got_1_X16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected block with data type {0} at position {1} but found data type {2}. - /// - internal static string Expected_block_with_data_type_0_at_position_1_but_found_data_type_2 { - get { - return ResourceManager.GetString("Expected_block_with_data_type_0_at_position_1_but_found_data_type_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected CRC32: {0}. - /// - internal static string Expected_CRC32_0 { - get { - return ResourceManager.GetString("Expected_CRC32_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected DDT CRC {0:X16} but got {1:X16}. - /// - internal static string Expected_DDT_CRC_0_but_got_1 { - get { - return ResourceManager.GetString("Expected_DDT_CRC_0_but_got_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected index CRC {0:X16} but got {1:X16}. - /// - internal static string Expected_index_CRC_0_X16_but_got_1_X16 { - get { - return ResourceManager.GetString("Expected_index_CRC_0_X16_but_got_1_X16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected MD5: {0}. - /// - internal static string Expected_MD5_0 { - get { - return ResourceManager.GetString("Expected_MD5_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expected SHA1: {0}. - /// - internal static string Expected_SHA1_0 { - get { - return ResourceManager.GetString("Expected_SHA1_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export. - /// - internal static string Export { - get { - return ResourceManager.GetString("Export", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extended = {0}. - /// - internal static string Extended_equals_0 { - get { - return ResourceManager.GetString("Extended_equals_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extent {0} is too small.. - /// - internal static string Extent_0_is_too_small { - get { - return ResourceManager.GetString("Extent_0_is_too_small", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extent contains incorrect number of sectors, {0}. {1} were expected. - /// - internal static string Extent_contains_incorrect_number_of_sectors_0_1_were_expected { - get { - return ResourceManager.GetString("Extent_contains_incorrect_number_of_sectors_0_1_were_expected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extent file {0} not found.. - /// - internal static string Extent_file_0_not_found { - get { - return ResourceManager.GetString("Extent_file_0_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM is of unknown type 0x{0:X2}. - /// - internal static string Extra_RAM_is_of_unknown_type_0 { - get { - return ResourceManager.GetString("Extra_RAM_is_of_unknown_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM not present.. - /// - internal static string Extra_RAM_not_present { - get { - return ResourceManager.GetString("Extra_RAM_not_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM present.. - /// - internal static string Extra_RAM_present { - get { - return ResourceManager.GetString("Extra_RAM_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM starts at 0x{0:X8} and ends at 0x{1:X8} ({2} bytes). - /// - internal static string Extra_RAM_starts_at_0_and_ends_at_1_2_bytes { - get { - return ResourceManager.GetString("Extra_RAM_starts_at_0_and_ends_at_1_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM uses 16-bit access.. - /// - internal static string Extra_RAM_uses_16_bit_access { - get { - return ResourceManager.GetString("Extra_RAM_uses_16_bit_access", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM uses 16-bit access and persists when powered off.. - /// - internal static string Extra_RAM_uses_16_bit_access_and_persists_when_powered_off { - get { - return ResourceManager.GetString("Extra_RAM_uses_16_bit_access_and_persists_when_powered_off", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM uses 8-bit access (even addresses).. - /// - internal static string Extra_RAM_uses_8_bit_access_even_addresses { - get { - return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_even_addresses", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM uses 8-bit access (even addresses) and persists when powered off.. - /// - internal static string Extra_RAM_uses_8_bit_access_even_addresses_and_persists_when_powered_off { - get { - return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_even_addresses_and_persists_when_powered_off", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM uses 8-bit access (odd addresses).. - /// - internal static string Extra_RAM_uses_8_bit_access_odd_addresses { - get { - return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_odd_addresses", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra RAM uses 8-bit access (odd addresses) and persists when powered off.. - /// - internal static string Extra_RAM_uses_8_bit_access_odd_addresses_and_persists_when_powered_off { - get { - return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_odd_addresses_and_persists_when_powered_off", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra track 1 (head 0) present, reading. - /// - internal static string Extra_track_1_head_0_present_reading { - get { - return ResourceManager.GetString("Extra_track_1_head_0_present_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra track 1 (head 1) present, reading. - /// - internal static string Extra_track_1_head_1_present_reading { - get { - return ResourceManager.GetString("Extra_track_1_head_1_present_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra track 2 (head 0) present, reading. - /// - internal static string Extra_track_2_head_0_present_reading { - get { - return ResourceManager.GetString("Extra_track_2_head_0_present_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extra track 2 (head 1) present, reading. - /// - internal static string Extra_track_2_head_1_present_reading { - get { - return ResourceManager.GetString("Extra_track_2_head_1_present_reading", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File "{0}" found. - /// - internal static string File_0_found { - get { - return ResourceManager.GetString("File_0_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File "{0}" not found.. - /// - internal static string File_0_not_found { - get { - return ResourceManager.GetString("File_0_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File parameters not found.. - /// - internal static string File_parameters_not_found { - get { - return ResourceManager.GetString("File_parameters_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filling extents. - /// - internal static string Filling_extents { - get { - return ResourceManager.GetString("Filling_extents", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filling the BAT took {0} seconds. - /// - internal static string Filling_the_BAT_took_0_seconds { - get { - return ResourceManager.GetString("Filling_the_BAT_took_0_seconds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Finland. - /// - internal static string Finland { - get { - return ResourceManager.GetString("Finland", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FLAC is not supported. - /// - internal static string FLAC_is_not_supported { - get { - return ResourceManager.GetString("FLAC_is_not_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Flash size: {0} bytes. - /// - internal static string Flash_size_0_bytes { - get { - return ResourceManager.GetString("Flash_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Flux decoding is not yet implemented.. - /// - internal static string Flux_decoding_is_not_yet_implemented { - get { - return ResourceManager.GetString("Flux_decoding_is_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {0} compact disc indexes at position {1}. - /// - internal static string Found_0_compact_disc_indexes_at_position_1 { - get { - return ResourceManager.GetString("Found_0_compact_disc_indexes_at_position_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {0} cylinders and {1} heads with a maximum sector number of {2}. - /// - internal static string Found_0_cylinders_and_1_heads_with_a_maximum_sector_number_of_2 { - get { - return ResourceManager.GetString("Found_0_cylinders_and_1_heads_with_a_maximum_sector_number_of_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {0} tracks at position {1}. - /// - internal static string Found_0_tracks_at_position_1 { - get { - return ResourceManager.GetString("Found_0_tracks_at_position_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {1} at line {0}. - /// - internal static string Found_1_at_line_0 { - get { - return ResourceManager.GetString("Found_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {1}_CHANNEL_AUDIO at line {0}. - /// - internal static string Found_1_CHANNEL_AUDIO_at_line_0 { - get { - return ResourceManager.GetString("Found_1_CHANNEL_AUDIO_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {1} COPY at line {0}. - /// - internal static string Found_1_COPY_at_line_0 { - get { - return ResourceManager.GetString("Found_1_COPY_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found {1} PRE_EMPHASIS at line {0}. - /// - internal static string Found_1_PRE_EMPHASIS_at_line_0 { - get { - return ResourceManager.GetString("Found_1_PRE_EMPHASIS_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found a minimum of {0} bytes per sector. - /// - internal static string Found_a_minimum_of_0_bytes_per_sector { - get { - return ResourceManager.GetString("Found_a_minimum_of_0_bytes_per_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found a minimum of {0} sectors per track. - /// - internal static string Found_a_minimum_of_0_sectors_per_track { - get { - return ResourceManager.GetString("Found_a_minimum_of_0_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Aaru Metadata block at position {0}. - /// - internal static string Found_Aaru_Metadata_block_at_position_0 { - get { - return ResourceManager.GetString("Found_Aaru_Metadata_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ADR at line {0}. - /// - internal static string Found_ADR_at_line_0 { - get { - return ResourceManager.GetString("Found_ADR_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found AFrame at line {0}. - /// - internal static string Found_AFrame_at_line_0 { - get { - return ResourceManager.GetString("Found_AFrame_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ALBA at line {0}. - /// - internal static string Found_ALBA_at_line_0 { - get { - return ResourceManager.GetString("Found_ALBA_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found AMin at line {0}. - /// - internal static string Found_AMin_at_line_0 { - get { - return ResourceManager.GetString("Found_AMin_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ARRANGER "{1}" at line {0}. - /// - internal static string Found_ARRANGER_1_at_line_0 { - get { - return ResourceManager.GetString("Found_ARRANGER_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ARRANGER at line {0}. - /// - internal static string Found_ARRANGER_at_line_0 { - get { - return ResourceManager.GetString("Found_ARRANGER_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ASec at line {0}. - /// - internal static string Found_ASec_at_line_0 { - get { - return ResourceManager.GetString("Found_ASec_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found AUDIOFILE "{1}" at line {0}. - /// - internal static string Found_AUDIOFILE_1_at_line_0 { - get { - return ResourceManager.GetString("Found_AUDIOFILE_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found barcode field in incorrect place at line {0}. - /// - internal static string Found_barcode_field_in_incorrect_place_at_line_0 { - get { - return ResourceManager.GetString("Found_barcode_field_in_incorrect_place_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CATALOG "{1}" at line {0}. - /// - internal static string Found_CATALOG_1_at_line_0 { - get { - return ResourceManager.GetString("Found_CATALOG_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CATALOG at line {0}. - /// - internal static string Found_CATALOG_at_line_0 { - get { - return ResourceManager.GetString("Found_CATALOG_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Catalog at line {0}. - /// - internal static string Found_Catalog_at_line_0_smallcase { - get { - return ResourceManager.GetString("Found_Catalog_at_line_0_smallcase", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CATALOG field in incorrect place at line {0}. - /// - internal static string Found_CATALOG_field_in_incorrect_place_at_line_0 { - get { - return ResourceManager.GetString("Found_CATALOG_field_in_incorrect_place_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CD-Text Entries at line {0}. - /// - internal static string Found_CD_Text_Entries_at_line_0 { - get { - return ResourceManager.GetString("Found_CD_Text_Entries_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CD-Text Entry at line {0}. - /// - internal static string Found_CD_Text_Entry_at_line_0 { - get { - return ResourceManager.GetString("Found_CD_Text_Entry_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CD-Text file field in incorrect place at line {0}. - /// - internal static string Found_CD_Text_file_field_in_incorrect_place_at_line_0 { - get { - return ResourceManager.GetString("Found_CD_Text_file_field_in_incorrect_place_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CDDB ID field in incorrect place at line {0}. - /// - internal static string Found_CDDB_ID_field_in_incorrect_place_at_line_0 { - get { - return ResourceManager.GetString("Found_CDDB_ID_field_in_incorrect_place_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CDTEXTFILE at line {0}. - /// - internal static string Found_CDTEXTFILE_at_line_0 { - get { - return ResourceManager.GetString("Found_CDTEXTFILE_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CDTextLength at line {0}. - /// - internal static string Found_CDTextLength_at_line_0 { - get { - return ResourceManager.GetString("Found_CDTextLength_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "CDTX" chunk, parsing {0} bytes. - /// - internal static string Found_CDTX_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_CDTX_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CICM XML metadata block at position {0}. - /// - internal static string Found_CICM_XML_metadata_block_at_position_0 { - get { - return ResourceManager.GetString("Found_CICM_XML_metadata_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found [CloneCD] out of order in line {0}. - /// - internal static string Found_CloneCD_out_of_order_in_line_0 { - get { - return ResourceManager.GetString("Found_CloneCD_out_of_order_in_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found comment "{1}" at line {0}. - /// - internal static string Found_comment_1_at_line_0 { - get { - return ResourceManager.GetString("Found_comment_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found comment record at {0}. - /// - internal static string Found_comment_record_at_0 { - get { - return ResourceManager.GetString("Found_comment_record_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found COMPOSER "{1}" at line {0}. - /// - internal static string Found_COMPOSER_1_at_line_0 { - get { - return ResourceManager.GetString("Found_COMPOSER_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found COMPOSER at line {0}. - /// - internal static string Found_COMPOSER_at_line_0 { - get { - return ResourceManager.GetString("Found_COMPOSER_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found compressed sector record at {0} for cylinder {1} head {2} sector {3}. - /// - internal static string Found_compressed_sector_record_at_0_for_cylinder_1_head_2_sector_3 { - get { - return ResourceManager.GetString("Found_compressed_sector_record_at_0_for_cylinder_1_head_2_sector_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Control at line {0}. - /// - internal static string Found_Control_at_line_0 { - get { - return ResourceManager.GetString("Found_Control_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CRC32 for {1} {2} at line {0}. - /// - internal static string Found_CRC32_for_1_2_at_line_0 { - get { - return ResourceManager.GetString("Found_CRC32_for_1_2_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found creator record at {0}. - /// - internal static string Found_creator_record_at_0 { - get { - return ResourceManager.GetString("Found_creator_record_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "CUES" chunk, parsing {0} bytes. - /// - internal static string Found_CUES_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_CUES_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "CUEX" chunk, parsing {0} bytes. - /// - internal static string Found_CUEX_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_CUEX_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "DAOI" chunk, parsing {0} bytes. - /// - internal static string Found_DAOI_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_DAOI_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "DAOX" chunk, parsing {0} bytes. - /// - internal static string Found_DAOX_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_DAOX_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found data block type {0} at position {1}. - /// - internal static string Found_data_block_type_0_at_position_1 { - get { - return ResourceManager.GetString("Found_data_block_type_0_at_position_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found DATAFILE "{1}" at line {0}. - /// - internal static string Found_DATAFILE_1_at_line_0 { - get { - return ResourceManager.GetString("Found_DATAFILE_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found DataTracksScrambled at line {0}. - /// - internal static string Found_DataTracksScrambled_at_line_0 { - get { - return ResourceManager.GetString("Found_DataTracksScrambled_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found deleted record at {0}. - /// - internal static string Found_deleted_record_at_0 { - get { - return ResourceManager.GetString("Found_deleted_record_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "DINF" chunk, parsing {0} bytes. - /// - internal static string Found_DINF_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_DINF_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found DISC_ID "{1}" at line {0}. - /// - internal static string Found_DISC_ID_1_at_line_0 { - get { - return ResourceManager.GetString("Found_DISC_ID_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found DISC_ID at line {0}. - /// - internal static string Found_DISC_ID_at_line_0 { - get { - return ResourceManager.GetString("Found_DISC_ID_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found dump hardware block at position {0}. - /// - internal static string Found_dump_hardware_block_at_position_0 { - get { - return ResourceManager.GetString("Found_dump_hardware_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "END!" chunk, finishing parse. - /// - internal static string Found_END_chunk_finishing_parse { - get { - return ResourceManager.GetString("Found_END_chunk_finishing_parse", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "ETN2" chunk, parsing {0} bytes. - /// - internal static string Found_ETN2_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_ETN2_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "ETNF" chunk, parsing {0} bytes. - /// - internal static string Found_ETNF_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_ETNF_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found FILE at line {0}. - /// - internal static string Found_FILE_at_line_0 { - get { - return ResourceManager.GetString("Found_FILE_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found FLAGS at line {0}. - /// - internal static string Found_FLAGS_at_line_0 { - get { - return ResourceManager.GetString("Found_FLAGS_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found FLAGS field in incorrect place at line {0}. - /// - internal static string Found_FLAGS_field_in_incorrect_place_at_line_0 { - get { - return ResourceManager.GetString("Found_FLAGS_field_in_incorrect_place_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found footer at {0}. - /// - internal static string Found_footer_at_0 { - get { - return ResourceManager.GetString("Found_footer_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found GENRE at line {0}. - /// - internal static string Found_GENRE_at_line_0 { - get { - return ResourceManager.GetString("Found_GENRE_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found INDEX {0} before INDEX 00 or INDEX 01. - /// - internal static string Found_INDEX_0_before_INDEX_00_or_INDEX_01 { - get { - return ResourceManager.GetString("Found_INDEX_0_before_INDEX_00_or_INDEX_01", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found INDEX "{1}" at line {0}. - /// - internal static string Found_INDEX_1_at_line_0 { - get { - return ResourceManager.GetString("Found_INDEX_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found INDEX at line {0}. - /// - internal static string Found_INDEX_at_line_0 { - get { - return ResourceManager.GetString("Found_INDEX_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found INDEX before a track at line {0}. - /// - internal static string Found_INDEX_before_a_track_0 { - get { - return ResourceManager.GetString("Found_INDEX_before_a_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ISRC "{1}" at line {0}. - /// - internal static string Found_ISRC_1_at_line_0 { - get { - return ResourceManager.GetString("Found_ISRC_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ISRC at line {0}. - /// - internal static string Found_ISRC_at_line_0 { - get { - return ResourceManager.GetString("Found_ISRC_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ISRC before a track at line {0}. - /// - internal static string Found_ISRC_before_a_track_0 { - get { - return ResourceManager.GetString("Found_ISRC_before_a_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found MD5 for {1} {2} at line {0}. - /// - internal static string Found_MD5_for_1_2_at_line_0 { - get { - return ResourceManager.GetString("Found_MD5_for_1_2_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found media tag {0}. - /// - internal static string Found_media_tag_0 { - get { - return ResourceManager.GetString("Found_media_tag_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found MESSAGE "{1}" at line {0}. - /// - internal static string Found_MESSAGE_1_at_line_0 { - get { - return ResourceManager.GetString("Found_MESSAGE_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found metadata "{0}". - /// - internal static string Found_metadata_0_ { - get { - return ResourceManager.GetString("Found_metadata_0_", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found metadata block at position {0}. - /// - internal static string Found_metadata_block_at_position_0 { - get { - return ResourceManager.GetString("Found_metadata_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "MTYP" chunk, parsing {0} bytes. - /// - internal static string Found_MTYP_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_MTYP_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found obsolete UDIF format.. - /// - internal static string Found_obsolete_UDIF_format { - get { - return ResourceManager.GetString("Found_obsolete_UDIF_format", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PERFORMER "{1}" at line {0}. - /// - internal static string Found_PERFORMER_1_at_line_0 { - get { - return ResourceManager.GetString("Found_PERFORMER_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PERFORMER at line {0}. - /// - internal static string Found_PERFORMER_at_line_0 { - get { - return ResourceManager.GetString("Found_PERFORMER_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PFrame at line {0}. - /// - internal static string Found_PFrame_at_line_0 { - get { - return ResourceManager.GetString("Found_PFrame_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PLBA at line {0}. - /// - internal static string Found_PLBA_at_line_0 { - get { - return ResourceManager.GetString("Found_PLBA_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PMin at line {0}. - /// - internal static string Found_PMin_at_line_0 { - get { - return ResourceManager.GetString("Found_PMin_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Point at line {0}. - /// - internal static string Found_Point_at_line_0 { - get { - return ResourceManager.GetString("Found_Point_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found POSTGAP at line {0}. - /// - internal static string Found_POSTGAP_at_line_0 { - get { - return ResourceManager.GetString("Found_POSTGAP_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found POSTGAP field before a track at line {0}. - /// - internal static string Found_POSTGAP_field_before_a_track_at_line_0 { - get { - return ResourceManager.GetString("Found_POSTGAP_field_before_a_track_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PREGAP "{1}" at line {0}. - /// - internal static string Found_PREGAP_1_at_line_0 { - get { - return ResourceManager.GetString("Found_PREGAP_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PREGAP at line {0}. - /// - internal static string Found_PREGAP_at_line_0 { - get { - return ResourceManager.GetString("Found_PREGAP_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PREGAP field before a track at line {0}. - /// - internal static string Found_PREGAP_field_before_a_track_at_line_0 { - get { - return ResourceManager.GetString("Found_PREGAP_field_before_a_track_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PreGapMode at line {0}. - /// - internal static string Found_PreGapMode_at_line_0 { - get { - return ResourceManager.GetString("Found_PreGapMode_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PreGapSubC at line {0}. - /// - internal static string Found_PreGapSubC_at_line_0 { - get { - return ResourceManager.GetString("Found_PreGapSubC_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found PSec at line {0}. - /// - internal static string Found_PSec_at_line_0 { - get { - return ResourceManager.GetString("Found_PSec_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "RELO" chunk, parsing {0} bytes. - /// - internal static string Found_RELO_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_RELO_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM at line {0}. - /// - internal static string Found_REM_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM CRC32 at line {0}. - /// - internal static string Found_REM_CRC32_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_CRC32_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM DISC HASHES at line {0}. - /// - internal static string Found_REM_DISC_HASHES_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_DISC_HASHES_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM Gap Append Method: {1} [{2}] HASHES at line {0}. - /// - internal static string Found_REM_Gap_Append_Method_1_2_HASHES_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_Gap_Append_Method_1_2_HASHES_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM HIGH-DENSITY AREA at line {0}. - /// - internal static string Found_REM_HIGH_DENSITY_AREA_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_HIGH_DENSITY_AREA_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM LEAD-OUT at line {0}. - /// - internal static string Found_REM_LEAD_OUT_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_LEAD_OUT_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM MD5 at line {0}. - /// - internal static string Found_REM_MD5_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_MD5_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM METADATA AARU MEDIA-TYPE at line {0}. - /// - internal static string Found_REM_METADATA_AARU_MEDIA_TYPE_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_METADATA_AARU_MEDIA_TYPE_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM METADATA DIC MEDIA-TYPE at line {0}. - /// - internal static string Found_REM_METADATA_DIC_MEDIA_TYPE_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_METADATA_DIC_MEDIA_TYPE_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM METADATA DUMP EXTENT at line {0}. - /// - internal static string Found_REM_METADATA_DUMP_EXTENT_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_METADATA_DUMP_EXTENT_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM MSF at line {0}. - /// - internal static string Found_REM_MSF_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_MSF_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM ORIGINAL MEDIA TYPE at line {0}. - /// - internal static string Found_REM_ORIGINAL_MEDIA_TYPE_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_ORIGINAL_MEDIA_TYPE_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM Ripping Tool at line {0}. - /// - internal static string Found_REM_Ripping_Tool_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_Ripping_Tool_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM Ripping Tool Version at line {0}. - /// - internal static string Found_REM_Ripping_Tool_Version_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_Ripping_Tool_Version_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM SESSION at line {0}. - /// - internal static string Found_REM_SESSION_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_SESSION_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM SHA1 at line {0}. - /// - internal static string Found_REM_SHA1_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_SHA1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found REM SINGLE-DENSITY AREA at line {0}. - /// - internal static string Found_REM_SINGLE_DENSITY_AREA_at_line_0 { - get { - return ResourceManager.GetString("Found_REM_SINGLE_DENSITY_AREA_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Session at line {0}. - /// - internal static string Found_Session_at_line_0 { - get { - return ResourceManager.GetString("Found_Session_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Sessions at line {0}. - /// - internal static string Found_Sessions_at_line_0 { - get { - return ResourceManager.GetString("Found_Sessions_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found SHA1 for {1} {2} at line {0}. - /// - internal static string Found_SHA1_for_1_2_at_line_0 { - get { - return ResourceManager.GetString("Found_SHA1_for_1_2_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found SILENCE "{1}" at line {0}. - /// - internal static string Found_SILENCE_1_at_line_0 { - get { - return ResourceManager.GetString("Found_SILENCE_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "SINF" chunk, parsing {0} bytes. - /// - internal static string Found_SINF_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_SINF_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found SONGWRITER "{1}" at line {0}. - /// - internal static string Found_SONGWRITER_1_at_line_0 { - get { - return ResourceManager.GetString("Found_SONGWRITER_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found SONGWRITER at line {0}. - /// - internal static string Found_SONGWRITER_at_line_0 { - get { - return ResourceManager.GetString("Found_SONGWRITER_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found START "{1}" at line {0}. - /// - internal static string Found_START_1_at_line_0 { - get { - return ResourceManager.GetString("Found_START_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found tape file block at position {0}. - /// - internal static string Found_tape_file_block_at_position_0 { - get { - return ResourceManager.GetString("Found_tape_file_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found tape partition block at position {0}. - /// - internal static string Found_tape_partition_block_at_position_0 { - get { - return ResourceManager.GetString("Found_tape_partition_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found timestamp: {0}. - /// - internal static string Found_timestamp_0 { - get { - return ResourceManager.GetString("Found_timestamp_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "TINF" chunk, parsing {0} bytes. - /// - internal static string Found_TINF_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_TINF_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TITLE "{1}" at line {0}. - /// - internal static string Found_TITLE_1_at_line_0 { - get { - return ResourceManager.GetString("Found_TITLE_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TITLE at line {0}. - /// - internal static string Found_TITLE_at_line_0 { - get { - return ResourceManager.GetString("Found_TITLE_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TocEntries at line {0}. - /// - internal static string Found_TocEntries_at_line_0 { - get { - return ResourceManager.GetString("Found_TocEntries_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found "TOCT" chunk, parsing {0} bytes. - /// - internal static string Found_TOCT_chunk_parsing_0_bytes { - get { - return ResourceManager.GetString("Found_TOCT_chunk_parsing_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found track {0} at {1}.. - /// - internal static string Found_track_0_at_1 { - get { - return ResourceManager.GetString("Found_track_0_at_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TRACK {0} out of order in line {1}. - /// - internal static string Found_TRACK_0_out_of_order_in_line_1 { - get { - return ResourceManager.GetString("Found_TRACK_0_out_of_order_in_line_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found track {0} starts at {1} flags {2} type {3} file {4} offset {5} at line {6}. - /// - internal static string Found_track_0_starts_at_1_flags_2_type_3_file_4_offset_5_at_line_6 { - get { - return ResourceManager.GetString("Found_track_0_starts_at_1_flags_2_type_3_file_4_offset_5_at_line_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TRACK at line {0}. - /// - internal static string Found_TRACK_at_line_0 { - get { - return ResourceManager.GetString("Found_TRACK_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TRACK field before a file is defined at line {0}. - /// - internal static string Found_TRACK_field_before_a_file_is_defined_at_line_0 { - get { - return ResourceManager.GetString("Found_TRACK_field_before_a_file_is_defined_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TRACK type "{1}" subchannel {2} at line {0}. - /// - internal static string Found_TRACK_type_1_subchannel_2_at_line_0 { - get { - return ResourceManager.GetString("Found_TRACK_type_1_subchannel_2_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TRACK type "{1}" with no subchannel at line {0}. - /// - internal static string Found_TRACK_type_1_with_no_subchannel_at_line_0 { - get { - return ResourceManager.GetString("Found_TRACK_type_1_with_no_subchannel_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found TrackNo at line {0}. - /// - internal static string Found_TrackNo_at_line_0 { - get { - return ResourceManager.GetString("Found_TrackNo_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found uncompressed sector record at {0} for cylinder {1} head {2} sector {3}. - /// - internal static string Found_uncompressed_sector_record_at_0_for_cylinder_1_head_2_sector_3 { - get { - return ResourceManager.GetString("Found_uncompressed_sector_record_at_0_for_cylinder_1_head_2_sector_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unhandled header, cannot open.. - /// - internal static string Found_unhandled_header_cannot_open { - get { - return ResourceManager.GetString("Found_unhandled_header_cannot_open", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown compression type {0}, continuing.... - /// - internal static string Found_unknown_compression_type_0_continuing { - get { - return ResourceManager.GetString("Found_unknown_compression_type_0_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown field defined at line {0}: "{1}". - /// - internal static string Found_unknown_field_defined_at_line_0_1 { - get { - return ResourceManager.GetString("Found_unknown_field_defined_at_line_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown hash for {1} {2} at line {0}. Please report this disc image.. - /// - internal static string Found_unknown_hash_for_1_2_at_line_0_Please_report_this_disc_image { - get { - return ResourceManager.GetString("Found_unknown_hash_for_1_2_at_line_0_Please_report_this_disc_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unsupported and required metadata Guid {0}, not proceeding with image.. - /// - internal static string Found_unsupported_and_required_metadata_Guid_0_not_proceeding_with_image { - get { - return ResourceManager.GetString("Found_unsupported_and_required_metadata_Guid_0_not_proceeding_with_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unsupported and required parent locator type {0}, not proceeding with image.. - /// - internal static string Found_unsupported_and_required_parent_locator_type_0_not_proceeding_with_image { - get { - return ResourceManager.GetString("Found_unsupported_and_required_parent_locator_type_0_not_proceeding_with_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unsupported and required region Guid {0}, not proceeding with image.. - /// - internal static string Found_unsupported_and_required_region_Guid_0_not_proceeding_with_image { - get { - return ResourceManager.GetString("Found_unsupported_and_required_region_Guid_0_not_proceeding_with_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unsupported compression algorithm {0}. - /// - internal static string Found_unsupported_compression_algorithm_0 { - get { - return ResourceManager.GetString("Found_unsupported_compression_algorithm_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unsupported hash {0}. - /// - internal static string Found_unsupported_hash_0 { - get { - return ResourceManager.GetString("Found_unsupported_hash_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found UPC_EAN "{1}" at line {0}. - /// - internal static string Found_UPC_EAN_1_at_line_0 { - get { - return ResourceManager.GetString("Found_UPC_EAN_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found UPC_EAN at line {0}. - /// - internal static string Found_UPC_EAN_at_line_0 { - get { - return ResourceManager.GetString("Found_UPC_EAN_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Version at line {0}. - /// - internal static string Found_Version_at_line_0 { - get { - return ResourceManager.GetString("Found_Version_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found ZERO "{1}" at line {0}. - /// - internal static string Found_ZERO_1_at_line_0 { - get { - return ResourceManager.GetString("Found_ZERO_1_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Zero at line {0}. - /// - internal static string Found_Zero_at_line_0 { - get { - return ResourceManager.GetString("Found_Zero_at_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to France. - /// - internal static string France { - get { - return ResourceManager.GetString("France", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Game code: {0}. - /// - internal static string Game_code_0 { - get { - return ResourceManager.GetString("Game_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Game Gear. - /// - internal static string Game_Gear { - get { - return ResourceManager.GetString("Game_Gear", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo Game Boy. - /// - internal static string GameBoy_Name { - get { - return ResourceManager.GetString("GameBoy_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo Game Boy Advance. - /// - internal static string GameBoyAdvance_Name { - get { - return ResourceManager.GetString("GameBoyAdvance_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to gap. - /// - internal static string gap { - get { - return ResourceManager.GetString("gap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway 64 (NTSC). - /// - internal static string Gateway_64_NTSC { - get { - return ResourceManager.GetString("Gateway_64_NTSC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway 64 (PAL). - /// - internal static string Gateway_64_PAL { - get { - return ResourceManager.GetString("Gateway_64_PAL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to '''GBC - see above'''. - /// - internal static string GBC_see_above { - get { - return ResourceManager.GetString("GBC_see_above", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GDI image describes a disc of type {0}. - /// - internal static string GDI_image_describes_a_disc_of_type_0 { - get { - return ResourceManager.GetString("GDI_image_describes_a_disc_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dreamcast GDI image. - /// - internal static string Gdi_Name { - get { - return ResourceManager.GetString("Gdi_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Genre: {0}. - /// - internal static string Genre_0 { - get { - return ResourceManager.GetString("Genre_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Genre is not set.. - /// - internal static string Genre_is_not_set { - get { - return ResourceManager.GetString("Genre_is_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Geometry set to {0} cylinders {1} heads {2} sectors per track. - /// - internal static string Geometry_set_to_0_cylinders_1_heads_2_sectors_per_track { - get { - return ResourceManager.GetString("Geometry_set_to_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Germany. - /// - internal static string Germany { - get { - return ResourceManager.GetString("Germany", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Germany, Austria, Switzerland. - /// - internal static string Germany_Austria_Switzerland { - get { - return ResourceManager.GetString("Germany_Austria_Switzerland", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got {0} sectors. - /// - internal static string Got_0_sectors { - get { - return ResourceManager.GetString("Got_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got {0} tracks. - /// - internal static string Got_0_tracks { - get { - return ResourceManager.GetString("Got_0_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Got a shift of {0} for {1} sectors per block. - /// - internal static string Got_a_shift_of_0_for_1_sectors_per_block { - get { - return ResourceManager.GetString("Got_a_shift_of_0_for_1_sectors_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Guessed disk type: {0}. - /// - internal static string Guessed_disk_type_0 { - get { - return ResourceManager.GetString("Guessed_disk_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hardware sector {0} of track {1} goes to logical sector {2}. - /// - internal static string Hardware_sector_0_of_track_1_goes_to_logical_sector_2 { - get { - return ResourceManager.GetString("Hardware_sector_0_of_track_1_goes_to_logical_sector_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has battery backed RAM. - /// - internal static string Has_battery_backed_RAM { - get { - return ResourceManager.GetString("Has_battery_backed_RAM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HD-Copy disk image. - /// - internal static string HdCopy_Name { - get { - return ResourceManager.GetString("HdCopy_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Header checksum: 0x{0:X2}. - /// - internal static string Header_checksum_0 { - get { - return ResourceManager.GetString("Header_checksum_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Header checksum: 0x{0:X4}. - /// - internal static string Header_checksum_0_X4 { - get { - return ResourceManager.GetString("Header_checksum_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Header checksum complement: 0x{0:X4}. - /// - internal static string Header_checksum_complement_0 { - get { - return ResourceManager.GetString("Header_checksum_complement_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Header checksum = 0x{0:X8}, calculated = 0x{1:X8}. - /// - internal static string Header_checksum_equals_0_X8_calculated_equals_1_X8 { - get { - return ResourceManager.GetString("Header_checksum_equals_0_X8_calculated_equals_1_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to How many sectors to store per block (will be rounded to next power of two). - /// internal static string How_many_sectors_to_store_per_block_will_be_rounded_to_next_power_of_two { get { return ResourceManager.GetString("How_many_sectors_to_store_per_block_will_be_rounded_to_next_power_of_two", resourceCulture); } } - /// - /// Looks up a localized string similar to Hunk type {0} is not supported. - /// - internal static string Hunk_type_0_is_not_supported { + internal static string Size_in_bytes_of_the_LZMA_dictionary { get { - return ResourceManager.GetString("Hunk_type_0_is_not_supported", resourceCulture); + return ResourceManager.GetString("Size_in_bytes_of_the_LZMA_dictionary", resourceCulture); } } - /// - /// Looks up a localized string similar to Identified image with C/H/S = {0}/{1}/{2}. - /// - internal static string Identified_image_with_CHS_equals_0_1_2 { - get { - return ResourceManager.GetString("Identified_image_with_CHS_equals_0_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ignored field type {0}. - /// - internal static string Ignored_field_type_0 { - get { - return ResourceManager.GetString("Ignored_field_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image application = {0} version {1}. - /// - internal static string Image_application_0_version_1 { - get { - return ResourceManager.GetString("Image_application_0_version_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image cannot be a CD-ROM and a GD-ROM at the same time, aborting.. - /// - internal static string Image_cannot_be_a_CD_ROM_and_a_GD_ROM_at_the_same_time_aborting { - get { - return ResourceManager.GetString("Image_cannot_be_a_CD_ROM_and_a_GD_ROM_at_the_same_time_aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image cannot be a GD-ROM and a CD-ROM at the same time, aborting.. - /// - internal static string Image_cannot_be_a_GD_ROM_and_a_CD_ROM_at_the_same_time_aborting { - get { - return ResourceManager.GetString("Image_cannot_be_a_GD_ROM_and_a_CD_ROM_at_the_same_time_aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image cannot be a hard disk and a CD-ROM at the same time, aborting.. - /// - internal static string Image_cannot_be_a_hard_disk_and_a_CD_ROM_at_the_same_time_aborting { - get { - return ResourceManager.GetString("Image_cannot_be_a_hard_disk_and_a_CD_ROM_at_the_same_time_aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image cannot be a hard disk and a C/GD-ROM at the same time, aborting.. - /// - internal static string Image_cannot_be_a_hard_disk_and_a_CGD_ROM_at_the_same_time_aborting { - get { - return ResourceManager.GetString("Image_cannot_be_a_hard_disk_and_a_CGD_ROM_at_the_same_time_aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image cannot be a hard disk and a GD-ROM at the same time, aborting.. - /// - internal static string Image_cannot_be_a_hard_disk_and_a_GD_ROM_at_the_same_time_aborting { - get { - return ResourceManager.GetString("Image_cannot_be_a_hard_disk_and_a_GD_ROM_at_the_same_time_aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image corrupted beyond recovery, cannot open.. - /// - internal static string Image_corrupted_beyond_recovery_cannot_open { - get { - return ResourceManager.GetString("Image_corrupted_beyond_recovery_cannot_open", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image created on {0}. - /// - internal static string Image_created_on_0 { - get { - return ResourceManager.GetString("Image_created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image does not represent a known media, aborting. - /// - internal static string Image_does_not_represent_a_known_media_aborting { - get { - return ResourceManager.GetString("Image_does_not_represent_a_known_media_aborting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image is differential but parent cannot be opened.. - /// - internal static string Image_is_differential_but_parent_cannot_be_opened { - get { - return ResourceManager.GetString("Image_is_differential_but_parent_cannot_be_opened", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image is not opened for writing. - /// - internal static string Image_is_not_opened_for_writing { - get { - return ResourceManager.GetString("Image_is_not_opened_for_writing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image is too large. - /// - internal static string Image_is_too_large { - get { - return ResourceManager.GetString("Image_is_too_large", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image last written on {0}. - /// - internal static string Image_last_written_on_0 { - get { - return ResourceManager.GetString("Image_last_written_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image modified on {0}. - /// - internal static string Image_modified_on_0 { - get { - return ResourceManager.GetString("Image_modified_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image resource fork doesn't contain UDIF block chunks. Please fill an issue and send it to us.. - /// - internal static string Image_resource_fork_doesnt_contain_UDIF_block_chunks { - get { - return ResourceManager.GetString("Image_resource_fork_doesnt_contain_UDIF_block_chunks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image says it's unformatted. - /// - internal static string Image_says_its_unformatted { - get { - return ResourceManager.GetString("Image_says_its_unformatted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image size is too small. - /// - internal static string Image_size_is_too_small { - get { - return ResourceManager.GetString("Image_size_is_too_small", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image uses unknown incompatible features {0:X}. - /// - internal static string Image_uses_unknown_incompatible_features_0 { - get { - return ResourceManager.GetString("Image_uses_unknown_incompatible_features_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image version {0} not recognized.. - /// - internal static string Image_version_0_not_recognized { - get { - return ResourceManager.GetString("Image_version_0_not_recognized", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to IMD comments: {0}. - /// - internal static string IMD_comments_0 { - get { - return ResourceManager.GetString("IMD_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to IMD image contains a disk of type {0}. - /// - internal static string IMD_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("IMD_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dunfield's IMD. - /// - internal static string Imd_Name { - get { - return ResourceManager.GetString("Imd_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to In memory DDT?: {0}. - /// - internal static string In_memory_DDT_0 { - get { - return ResourceManager.GetString("In_memory_DDT_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Inconsistent track mode and track sector size found. A best try to fix has been done. It is recommended this disc is dumped with another software.. - /// - internal static string Inconsistent_track_mode_and_track_sector_size_found { - get { - return ResourceManager.GetString("Inconsistent_track_mode_and_track_sector_size_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect Alcohol 120% image created by an old version of Aaru. Convert image to correct it.. - /// - internal static string Incorrect_Alcohol_120_image_created_by_an_old_version_of_Aaru_Convert_image_to_correct_it { - get { - return ResourceManager.GetString("Incorrect_Alcohol_120_image_created_by_an_old_version_of_Aaru_Convert_image_to_co" + - "rrect_it", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect CRC found: 0x{0:X16} found, expected 0x{1:X16}, continuing.... - /// - internal static string Incorrect_CRC_found_0_X16_found_expected_1_X16_continuing { - get { - return ResourceManager.GetString("Incorrect_CRC_found_0_X16_found_expected_1_X16_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size. - /// - internal static string Incorrect_data_size { - get { - return ResourceManager.GetString("Incorrect_data_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for CMI. - /// - internal static string Incorrect_data_size_for_CMI { - get { - return ResourceManager.GetString("Incorrect_data_size_for_CMI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for decrypted title key. - /// - internal static string Incorrect_data_size_for_decrypted_title_key { - get { - return ResourceManager.GetString("Incorrect_data_size_for_decrypted_title_key", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for DVD ID information. - /// - internal static string Incorrect_data_size_for_dvd_id_information { - get { - return ResourceManager.GetString("Incorrect_data_size_for_dvd_id_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for DVD ID number. - /// - internal static string Incorrect_data_size_for_dvd_id_number { - get { - return ResourceManager.GetString("Incorrect_data_size_for_dvd_id_number", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for EDC. - /// - internal static string Incorrect_data_size_for_edc { - get { - return ResourceManager.GetString("Incorrect_data_size_for_edc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for IED. - /// - internal static string Incorrect_data_size_for_ied { - get { - return ResourceManager.GetString("Incorrect_data_size_for_ied", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for subchannel. - /// - internal static string Incorrect_data_size_for_subchannel { - get { - return ResourceManager.GetString("Incorrect_data_size_for_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for title key. - /// - internal static string Incorrect_data_size_for_title_key { - get { - return ResourceManager.GetString("Incorrect_data_size_for_title_key", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect data size for track flags. - /// - internal static string Incorrect_data_size_for_track_flags { - get { - return ResourceManager.GetString("Incorrect_data_size_for_track_flags", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect disk type {0}. - /// - internal static string Incorrect_disk_type_0 { - get { - return ResourceManager.GetString("Incorrect_disk_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect identifier for compact disc indexes block at position {0}. - /// - internal static string Incorrect_identifier_for_compact_disc_indexes_block_at_position_0 { - get { - return ResourceManager.GetString("Incorrect_identifier_for_compact_disc_indexes_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect identifier for data block at position {0}. - /// - internal static string Incorrect_identifier_for_data_block_at_position_0 { - get { - return ResourceManager.GetString("Incorrect_identifier_for_data_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect identifier for tracks block at position {0}. - /// - internal static string Incorrect_identifier_for_tracks_block_at_position_0 { - get { - return ResourceManager.GetString("Incorrect_identifier_for_tracks_block_at_position_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect index identifier. - /// - internal static string Incorrect_index_identifier { - get { - return ResourceManager.GetString("Incorrect_index_identifier", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for Apple HD20 image. - /// - internal static string Incorrect_number_of_sectors_for_Apple_HD20_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_HD20_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for Apple MF1DD image. - /// - internal static string Incorrect_number_of_sectors_for_Apple_MF1DD_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_MF1DD_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for Apple MF2DD image. - /// - internal static string Incorrect_number_of_sectors_for_Apple_MF2DD_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_MF2DD_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for Apple Profile image. - /// - internal static string Incorrect_number_of_sectors_for_Apple_Profile_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_Profile_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for Apple Widget image. - /// - internal static string Incorrect_number_of_sectors_for_Apple_Widget_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_Widget_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for DMF image. - /// - internal static string Incorrect_number_of_sectors_for_DMF_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_DMF_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for media. - /// - internal static string Incorrect_number_of_sectors_for_media { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_media", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for MF2DD image. - /// - internal static string Incorrect_number_of_sectors_for_MF2DD_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_MF2DD_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect number of sectors for MF2HD image. - /// - internal static string Incorrect_number_of_sectors_for_MF2HD_image { - get { - return ResourceManager.GetString("Incorrect_number_of_sectors_for_MF2HD_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect tag for disk type. - /// - internal static string Incorrect_tag_for_disk_type { - get { - return ResourceManager.GetString("Incorrect_tag_for_disk_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Index {0} starts at sector {1}. - /// - internal static string Index_0_starts_at_sector_1 { - get { - return ResourceManager.GetString("Index_0_starts_at_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Index at {0} contains {1} entries. - /// - internal static string Index_at_0_contains_1_entries { - get { - return ResourceManager.GetString("Index_at_0_contains_1_entries", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Index not found!. - /// - internal static string Index_not_found { - get { - return ResourceManager.GetString("Index_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Index not found in existing image, cannot continue. - /// - internal static string Index_not_found_in_existing_image_cannot_continue { - get { - return ResourceManager.GetString("Index_not_found_in_existing_image_cannot_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Indexes:. - /// - internal static string Indexes { - get { - return ResourceManager.GetString("Indexes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Indonesia. - /// - internal static string Indonesia { - get { - return ResourceManager.GetString("Indonesia", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to INST-ROM size: {0} bytes. - /// - internal static string INST_ROM_size_0_bytes { - get { - return ResourceManager.GetString("INST_ROM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to International. - /// - internal static string International { - get { - return ResourceManager.GetString("International", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid adapter type {0}. - /// - internal static string Invalid_adapter_type_0 { - get { - return ResourceManager.GetString("Invalid_adapter_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid block size.. - /// - internal static string Invalid_block_size { - get { - return ResourceManager.GetString("Invalid_block_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid compression type {0} for block with data type {1}, continuing.... - /// - internal static string Invalid_compression_type_0_for_block_with_data_type_1_continuing { - get { - return ResourceManager.GetString("Invalid_compression_type_0_for_block_with_data_type_1_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid encryption method. - /// - internal static string Invalid_encryption_method { - get { - return ResourceManager.GetString("Invalid_encryption_method", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid hunk found.. - /// - internal static string Invalid_hunk_found { - get { - return ResourceManager.GetString("Invalid_hunk_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid read mode {0} for this track. - /// - internal static string Invalid_read_mode_0_for_this_track { - get { - return ResourceManager.GetString("Invalid_read_mode_0_for_this_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid sector type {0}. - /// - internal static string Invalid_sector_type_0 { - get { - return ResourceManager.GetString("Invalid_sector_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid sector type '{0}' encountered. - /// - internal static string Invalid_sector_type_0_encountered { - get { - return ResourceManager.GetString("Invalid_sector_type_0_encountered", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid subchannel mode for this sector. - /// - internal static string Invalid_subchannel_mode_for_this_sector { - get { - return ResourceManager.GetString("Invalid_subchannel_mode_for_this_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid track block found at {0}. - /// - internal static string Invalid_track_block_found_at_0 { - get { - return ResourceManager.GetString("Invalid_track_block_found_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid tracks sent. - /// - internal static string Invalid_tracks_sent { - get { - return ResourceManager.GetString("Invalid_tracks_sent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for compress option. - /// - internal static string Invalid_value_for_compress_option { - get { - return ResourceManager.GetString("Invalid_value_for_compress_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for deduplicate option. - /// - internal static string Invalid_value_for_deduplicate_option { - get { - return ResourceManager.GetString("Invalid_value_for_deduplicate_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for dictionary option. - /// - internal static string Invalid_value_for_dictionary_option { - get { - return ResourceManager.GetString("Invalid_value_for_dictionary_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for dynamic option.. - /// - internal static string Invalid_value_for_dynamic_option { - get { - return ResourceManager.GetString("Invalid_value_for_dynamic_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for hwversion option. - /// - internal static string Invalid_value_for_hwversion_option { - get { - return ResourceManager.GetString("Invalid_value_for_hwversion_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for max_ddt_size option. - /// - internal static string Invalid_value_for_max_ddt_size_option { - get { - return ResourceManager.GetString("Invalid_value_for_max_ddt_size_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for md5 option. - /// - internal static string Invalid_value_for_md5_option { - get { - return ResourceManager.GetString("Invalid_value_for_md5_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for sectors_per_block option. - /// - internal static string Invalid_value_for_sectors_per_block_option { - get { - return ResourceManager.GetString("Invalid_value_for_sectors_per_block_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for sha1 option. - /// - internal static string Invalid_value_for_sha1_option { - get { - return ResourceManager.GetString("Invalid_value_for_sha1_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for sha256 option. - /// - internal static string Invalid_value_for_sha256_option { - get { - return ResourceManager.GetString("Invalid_value_for_sha256_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for spamsum option. - /// - internal static string Invalid_value_for_spamsum_option { - get { - return ResourceManager.GetString("Invalid_value_for_spamsum_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for sparse option. - /// - internal static string Invalid_value_for_sparse_option { - get { - return ResourceManager.GetString("Invalid_value_for_sparse_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid value for split option. - /// - internal static string Invalid_value_for_split_option { - get { - return ResourceManager.GetString("Invalid_value_for_split_option", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Invalid write mode for this sector. - /// - internal static string Invalid_write_mode_for_this_sector { - get { - return ResourceManager.GetString("Invalid_write_mode_for_this_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ISOBuster disc type: {0}. - /// - internal static string ISOBuster_disc_type_0 { - get { - return ResourceManager.GetString("ISOBuster_disc_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ISOBuster disc type not set.. - /// - internal static string ISOBuster_disc_type_not_set { - get { - return ResourceManager.GetString("ISOBuster_disc_type_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ISRC: {0}. - /// - internal static string ISRC_0 { - get { - return ResourceManager.GetString("ISRC_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ISRC is not set.. - /// - internal static string ISRC_is_not_set { - get { - return ResourceManager.GetString("ISRC_is_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Italy. - /// - internal static string Italy { - get { - return ResourceManager.GetString("Italy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Japan. - /// - internal static string Japan { - get { - return ResourceManager.GetString("Japan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Korea. - /// - internal static string Korea { - get { - return ResourceManager.GetString("Korea", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to KryoFlux STREAM. - /// - internal static string KryoFlux_Name { - get { - return ResourceManager.GetString("KryoFlux_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to L2 size must be between 512 bytes and 64 Kbytes. - /// - internal static string L2_size_must_be_between_512_bytes_and_64_Kbytes { - get { - return ResourceManager.GetString("L2_size_must_be_between_512_bytes_and_64_Kbytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LBA: {0}. - /// - internal static string LBA_0 { - get { - return ResourceManager.GetString("LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Licensee: {0}. - /// - internal static string Licensee_0 { - get { - return ResourceManager.GetString("Licensee_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Lisa Twiggy detected, reversing second half of disk. - /// - internal static string Lisa_Twiggy_detected_reversing_second_half_of_disk { - get { - return ResourceManager.GetString("Lisa_Twiggy_detected_reversing_second_half_of_disk", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Logical sector size not found.. - /// - internal static string Logical_sector_size_not_found { - get { - return ResourceManager.GetString("Logical_sector_size_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LZH Compressed images not yet supported. - /// - internal static string LZH_Compressed_images_not_yet_supported { - get { - return ResourceManager.GetString("LZH_Compressed_images_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Macintosh Twiggy detected, reversing disk sides. - /// - internal static string Macintosh_Twiggy_detected_reversing_disk_sides { - get { - return ResourceManager.GetString("Macintosh_Twiggy_detected_reversing_disk_sides", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic = "{0}". - /// - internal static string magic_equals_0_quoted { - get { - return ResourceManager.GetString("magic_equals_0_quoted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maker code: {0}. - /// - internal static string Maker_code_0 { - get { - return ResourceManager.GetString("Maker_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Manufacturer: {0}. - /// - internal static string Manufacturer_0 { - get { - return ResourceManager.GetString("Manufacturer_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Mapper: {0}. - /// - internal static string Mapper_0 { - get { - return ResourceManager.GetString("Mapper_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Master System. - /// - internal static string Master_System { - get { - return ResourceManager.GetString("Master_System", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sega Game Gear / Master System. - /// - internal static string MasterSystem_Name { - get { - return ResourceManager.GetString("MasterSystem_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MAXI Disk image. - /// - internal static string MaxiDisk_Name { - get { - return ResourceManager.GetString("MaxiDisk_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maximum size, in mebibytes, for in-memory DDT. If image needs a bigger one, it will be on-disk. - /// internal static string Maximum_size_in_mebibytes_for_in_memory_DDT_If_image_needs_a_bigger_one_it_will_be_on_disk { get { return ResourceManager.GetString("Maximum_size_in_mebibytes_for_in_memory_DDT_If_image_needs_a_bigger_one_it_will_b" + @@ -5141,1701 +106,30 @@ namespace Aaru.Images { } } - /// - /// Looks up a localized string similar to MCN: {0}. - /// - internal static string MCN_0 { + internal static string Calculate_and_store_MD5_of_image_user_data { get { - return ResourceManager.GetString("MCN_0", resourceCulture); + return ResourceManager.GetString("Calculate_and_store_MD5_of_image_user_data", resourceCulture); } } - /// - /// Looks up a localized string similar to MCN not set.. - /// - internal static string MCN_not_set { + internal static string Calculate_and_store_SHA1_of_image_user_data { get { - return ResourceManager.GetString("MCN_not_set", resourceCulture); + return ResourceManager.GetString("Calculate_and_store_SHA1_of_image_user_data", resourceCulture); } } - /// - /// Looks up a localized string similar to Media tag type {0} duplicated, removing previous entry.... - /// - internal static string Media_tag_type_0_duplicated_removing_previous_entry { + internal static string Calculate_and_store_SHA256_of_image_user_data { get { - return ResourceManager.GetString("Media_tag_type_0_duplicated_removing_previous_entry", resourceCulture); + return ResourceManager.GetString("Calculate_and_store_SHA256_of_image_user_data", resourceCulture); } } - /// - /// Looks up a localized string similar to Media type is {0} ({1}). - /// - internal static string Media_type_is_0_1 { + internal static string Calculate_and_store_SpamSum_of_image_user_data { get { - return ResourceManager.GetString("Media_type_is_0_1", resourceCulture); + return ResourceManager.GetString("Calculate_and_store_SpamSum_of_image_user_data", resourceCulture); } } - /// - /// Looks up a localized string similar to MediaType: {0}. - /// - internal static string MediaType_0 { - get { - return ResourceManager.GetString("MediaType_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Memory snapshot: {0} bytes. - /// - internal static string Memory_snapshot_0_bytes { - get { - return ResourceManager.GetString("Memory_snapshot_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Metadata not found, cannot continue.. - /// - internal static string Metadata_not_found_cannot_continue { - get { - return ResourceManager.GetString("Metadata_not_found_cannot_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mode page 2A: {0}. - /// - internal static string mode_page_2A_0 { - get { - return ResourceManager.GetString("mode_page_2A_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Modem support: {0}. - /// - internal static string Modem_support_0 { - get { - return ResourceManager.GetString("Modem_support_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Name: {0}. - /// - internal static string Name_0 { - get { - return ResourceManager.GetString("Name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Name of adapter type. Possible values: ide, lsilogic, buslogic, legacyESX.. - /// - internal static string Name_of_adapter_type { - get { - return ResourceManager.GetString("Name_of_adapter_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple New Disk Image Format. - /// - internal static string Ndif_Name { - get { - return ResourceManager.GetString("Ndif_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nero image contains a disc of type {0}. - /// - internal static string Nero_image_contains_a_disc_of_type_0 { - get { - return ResourceManager.GetString("Nero_image_contains_a_disc_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nero Burning ROM image. - /// - internal static string Nero_Name { - get { - return ResourceManager.GetString("Nero_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nero version not recognized.. - /// - internal static string Nero_version_not_recognized { - get { - return ResourceManager.GetString("Nero_version_not_recognized", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to iNES. - /// - internal static string Nes_Name { - get { - return ResourceManager.GetString("Nes_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Netherlands. - /// - internal static string Netherlands { - get { - return ResourceManager.GetString("Netherlands", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to T98-Next NHD r0 Disk Image. - /// - internal static string Nhdr0_Name { - get { - return ResourceManager.GetString("Nhdr0_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo 64. - /// - internal static string Nintendo64_Name { - get { - return ResourceManager.GetString("Nintendo64_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No cylinders or heads found. - /// - internal static string No_cylinders_or_heads_found { - get { - return ResourceManager.GetString("No_cylinders_or_heads_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No image has been opened.. - /// - internal static string No_image_has_been_opened { - get { - return ResourceManager.GetString("No_image_has_been_opened", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No tracks found. - /// - internal static string No_tracks_found { - get { - return ResourceManager.GetString("No_tracks_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to None. - /// - internal static string None_coprocessor { - get { - return ResourceManager.GetString("None_coprocessor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to none. - /// - internal static string none_licensee { - get { - return ResourceManager.GetString("none_licensee", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to North America. - /// - internal static string North_America { - get { - return ResourceManager.GetString("North_America", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not a CDRDAO TOC or TOC type not in line {0}.. - /// - internal static string Not_a_CDRDAO_TOC_or_TOC_type_not_in_line_0 { - get { - return ResourceManager.GetString("Not_a_CDRDAO_TOC_or_TOC_type_not_in_line_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not a correct Dreamcast GDI image. - /// - internal static string Not_a_correct_Dreamcast_GDI_image { - get { - return ResourceManager.GetString("Not_a_correct_Dreamcast_GDI_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not a descriptor.. - /// - internal static string Not_a_descriptor { - get { - return ResourceManager.GetString("Not_a_descriptor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not the expected track info.. - /// - internal static string Not_the_expected_track_info { - get { - return ResourceManager.GetString("Not_the_expected_track_info", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Of {0} sectors written, {1} are unique ({2:P}). - /// - internal static string Of_0_sectors_written_1_are_unique_2 { - get { - return ResourceManager.GetString("Of_0_sectors_written_1_are_unique_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Optical disc track. - /// - internal static string Optical_disc_track { - get { - return ResourceManager.GetString("Optical_disc_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Other. - /// - internal static string Other_coprocessor { - get { - return ResourceManager.GetString("Other_coprocessor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Overseas title: {0}. - /// - internal static string Overseas_title_0 { - get { - return ResourceManager.GetString("Overseas_title_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Parallels disk image. - /// - internal static string Parallels_Name { - get { - return ResourceManager.GetString("Parallels_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Parent images are not supported. - /// - internal static string Parent_images_are_not_supported { - get { - return ResourceManager.GetString("Parent_images_are_not_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Parent locator not found.. - /// - internal static string Parent_locator_not_found { - get { - return ResourceManager.GetString("Parent_locator_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Parsing image. - /// - internal static string Parsing_image { - get { - return ResourceManager.GetString("Parsing_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Parsing property list.. - /// - internal static string Parsing_property_list { - get { - return ResourceManager.GetString("Parsing_property_list", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PartClone disk image. - /// - internal static string PartClone_Name { - get { - return ResourceManager.GetString("PartClone_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partimage disk image. - /// - internal static string Partimage_Name { - get { - return ResourceManager.GetString("Partimage_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition description: {0}. - /// - internal static string Partition_description_0 { - get { - return ResourceManager.GetString("Partition_description_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition ending sector: {0}. - /// - internal static string Partition_ending_sector_0 { - get { - return ResourceManager.GetString("Partition_ending_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition name: {0}. - /// - internal static string Partition_name_0 { - get { - return ResourceManager.GetString("Partition_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition sectors: {0}. - /// - internal static string Partition_sectors_0 { - get { - return ResourceManager.GetString("Partition_sectors_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition sequence: {0}. - /// - internal static string Partition_sequence_0 { - get { - return ResourceManager.GetString("Partition_sequence_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition size in bytes: {0}. - /// - internal static string Partition_size_in_bytes_0 { - get { - return ResourceManager.GetString("Partition_size_in_bytes_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition starting offset: {0}. - /// - internal static string Partition_starting_offset_0 { - get { - return ResourceManager.GetString("Partition_starting_offset_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition starting sector: {0}. - /// - internal static string Partition_starting_sector_0 { - get { - return ResourceManager.GetString("Partition_starting_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition type: {0}. - /// - internal static string Partition_type_0 { - get { - return ResourceManager.GetString("Partition_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Performer: {0}. - /// - internal static string Performer_0 { - get { - return ResourceManager.GetString("Performer_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Performer is not set.. - /// - internal static string Performer_is_not_set { - get { - return ResourceManager.GetString("Performer_is_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PFI: {0}. - /// - internal static string PFI_0 { - get { - return ResourceManager.GetString("PFI_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Physical sector size not found.. - /// - internal static string Physical_sector_size_not_found { - get { - return ResourceManager.GetString("Physical_sector_size_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PlayChoice-10 game. - /// - internal static string PlayChoice_10_game { - get { - return ResourceManager.GetString("PlayChoice_10_game", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please open VMDK descriptor.. - /// - internal static string Please_open_VMDK_descriptor { - get { - return ResourceManager.GetString("Please_open_VMDK_descriptor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PMA: {0}. - /// - internal static string PMA_0 { - get { - return ResourceManager.GetString("PMA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Pocket Camera. - /// - internal static string Pocket_Camera { - get { - return ResourceManager.GetString("Pocket_Camera", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Possible parent path: "{0}". - /// - internal static string Possible_parent_path_0 { - get { - return ResourceManager.GetString("Possible_parent_path_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Postgap: {0} sectors. - /// - internal static string Postgap_0_sectors { - get { - return ResourceManager.GetString("Postgap_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Pregap: {0} sectors. - /// - internal static string Pregap_0_sectors { - get { - return ResourceManager.GetString("Pregap_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PRG ROM size: {0} bytes. - /// - internal static string PRG_ROM_size_0_bytes { - get { - return ResourceManager.GetString("PRG_ROM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to printing partition map. - /// - internal static string printing_partition_map { - get { - return ResourceManager.GetString("printing_partition_map", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to printing track map. - /// - internal static string printing_track_map { - get { - return ResourceManager.GetString("printing_track_map", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Product code: {0}. - /// - internal static string Product_code_0 { - get { - return ResourceManager.GetString("Product_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Product code: AGB-{0}. - /// - internal static string Product_code_AGB_0 { - get { - return ResourceManager.GetString("Product_code_AGB_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PROM size: 0x{0} bytes. - /// - internal static string PROM_size_0_bytes { - get { - return ResourceManager.GetString("PROM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QEMU Copy-On-Write disk image. - /// - internal static string Qcow_Name { - get { - return ResourceManager.GetString("Qcow_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QEMU Copy-On-Write disk image v2. - /// - internal static string Qcow2_Name { - get { - return ResourceManager.GetString("Qcow2_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QEMU Enhanced Disk image. - /// - internal static string Qed_Name { - get { - return ResourceManager.GetString("Qed_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RAM size: {0} bytes. - /// - internal static string RAM_size_0_bytes { - get { - return ResourceManager.GetString("RAM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RAM starts at 0x{0:X8} and ends at 0x{1:X8} ({2} bytes). - /// - internal static string RAM_starts_at_0_and_ends_at_1_2_bytes { - get { - return ResourceManager.GetString("RAM_starts_at_0_and_ends_at_1_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Raw device image files are not supported, try accessing the device directly.. - /// - internal static string Raw_device_image_files_are_not_supported { - get { - return ResourceManager.GetString("Raw_device_image_files_are_not_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Raw disk image contains a disk of type {0}. - /// - internal static string Raw_disk_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("Raw_disk_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Read {0} sectors. - /// - internal static string Read_0_sectors { - get { - return ResourceManager.GetString("Read_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Read {0} tracks. - /// - internal static string Read_0_tracks { - get { - return ResourceManager.GetString("Read_0_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to reading bad sector {0} ({1},{2},{3}). - /// - internal static string reading_bad_sector_0_1_2_3 { - get { - return ResourceManager.GetString("reading_bad_sector_0_1_2_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading BAT. - /// - internal static string Reading_BAT { - get { - return ResourceManager.GetString("Reading_BAT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading bytemap {0} bytes. - /// - internal static string Reading_bytemap_0_bytes { - get { - return ResourceManager.GetString("Reading_bytemap_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading data. - /// - internal static string Reading_data { - get { - return ResourceManager.GetString("Reading_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading grain directory. - /// - internal static string Reading_grain_directory { - get { - return ResourceManager.GetString("Reading_grain_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading grain tables. - /// - internal static string Reading_grain_tables { - get { - return ResourceManager.GetString("Reading_grain_tables", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Hunk map.. - /// - internal static string Reading_Hunk_map { - get { - return ResourceManager.GetString("Reading_Hunk_map", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Image Block Map. - /// - internal static string Reading_Image_Block_Map { - get { - return ResourceManager.GetString("Reading_Image_Block_Map", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Image Block Map took {0} ms. - /// - internal static string Reading_Image_Block_Map_took_0_ms { - get { - return ResourceManager.GetString("Reading_Image_Block_Map_took_0_ms", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading L1 table. - /// - internal static string Reading_L1_table { - get { - return ResourceManager.GetString("Reading_L1_table", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading L2 table #{0}. - /// - internal static string Reading_L2_table_0 { - get { - return ResourceManager.GetString("Reading_L2_table_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading metadata.. - /// - internal static string Reading_metadata { - get { - return ResourceManager.GetString("Reading_metadata", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading property list.. - /// - internal static string Reading_property_list { - get { - return ResourceManager.GetString("Reading_property_list", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading resource fork.. - /// - internal static string Reading_resource_fork { - get { - return ResourceManager.GetString("Reading_resource_fork", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading Sector Bitmap. - /// - internal static string Reading_Sector_Bitmap { - get { - return ResourceManager.GetString("Reading_Sector_Bitmap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading tags. - /// - internal static string Reading_tags { - get { - return ResourceManager.GetString("Reading_tags", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rebuilding TOC. - /// - internal static string Rebuilding_TOC { - get { - return ResourceManager.GetString("Rebuilding_TOC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Region: {0}. - /// - internal static string Region_0 { - get { - return ResourceManager.GetString("Region_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Region support: {0}. - /// - internal static string Region_support_0 { - get { - return ResourceManager.GetString("Region_support_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Requires Game Boy Color. - /// - internal static string Requires_Game_Boy_Color { - get { - return ResourceManager.GetString("Requires_Game_Boy_Color", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Revision: {0}. - /// - internal static string Revision_0 { - get { - return ResourceManager.GetString("Revision_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (RLE decoder): Input data size: {0} bytes. - /// - internal static string RLE_decoder_Input_data_size_0_bytes { - get { - return ResourceManager.GetString("RLE_decoder_Input_data_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (RLE decoder): Output data size: {0} bytes. - /// - internal static string RLE_decoder_Output_data_size_0_bytes { - get { - return ResourceManager.GetString("RLE_decoder_Output_data_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (RLE decoder): Processed input: {0} bytes. - /// - internal static string RLE_decoder_Processed_input_0_bytes { - get { - return ResourceManager.GetString("RLE_decoder_Processed_input_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (RLE decoder): Processed Output: {0} bytes. - /// - internal static string RLE_decoder_Processed_Output_0_bytes { - get { - return ResourceManager.GetString("RLE_decoder_Processed_Output_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM. - /// - internal static string ROM { - get { - return ResourceManager.GetString("ROM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and coprocessor. - /// - internal static string ROM_and_coprocessor { - get { - return ResourceManager.GetString("ROM_and_coprocessor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and HuC-1. - /// - internal static string ROM_and_HuC_1 { - get { - return ResourceManager.GetString("ROM_and_HuC_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and HuC-3. - /// - internal static string ROM_and_HuC_3 { - get { - return ResourceManager.GetString("ROM_and_HuC_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and MBC1. - /// - internal static string ROM_and_MBC1 { - get { - return ResourceManager.GetString("ROM_and_MBC1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and MBC2. - /// - internal static string ROM_and_MBC2 { - get { - return ResourceManager.GetString("ROM_and_MBC2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and MBC3. - /// - internal static string ROM_and_MBC3 { - get { - return ResourceManager.GetString("ROM_and_MBC3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and MBC5. - /// - internal static string ROM_and_MBC5 { - get { - return ResourceManager.GetString("ROM_and_MBC5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and MBC6. - /// - internal static string ROM_and_MBC6 { - get { - return ResourceManager.GetString("ROM_and_MBC6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and MMM01. - /// - internal static string ROM_and_MMM01 { - get { - return ResourceManager.GetString("ROM_and_MMM01", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and RAM. - /// - internal static string ROM_and_RAM { - get { - return ResourceManager.GetString("ROM_and_RAM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM and TAMA5. - /// - internal static string ROM_and_TAMA5 { - get { - return ResourceManager.GetString("ROM_and_TAMA5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, battery and coprocessor. - /// - internal static string ROM_battery_and_coprocessor { - get { - return ResourceManager.GetString("ROM_battery_and_coprocessor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC1 and RAM. - /// - internal static string ROM_MBC1_and_RAM { - get { - return ResourceManager.GetString("ROM_MBC1_and_RAM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC1, RAM and battery. - /// - internal static string ROM_MBC1_RAM_and_battery { - get { - return ResourceManager.GetString("ROM_MBC1_RAM_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC2 and battery. - /// - internal static string ROM_MBC2_and_battery { - get { - return ResourceManager.GetString("ROM_MBC2_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC3 and RAM. - /// - internal static string ROM_MBC3_and_RAM { - get { - return ResourceManager.GetString("ROM_MBC3_and_RAM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC3, RAM and battery. - /// - internal static string ROM_MBC3_RAM_and_battery { - get { - return ResourceManager.GetString("ROM_MBC3_RAM_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC3, RAM, timer and battery. - /// - internal static string ROM_MBC3_RAM_timer_and_battery { - get { - return ResourceManager.GetString("ROM_MBC3_RAM_timer_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC3, timer and battery. - /// - internal static string ROM_MBC3_timer_and_battery { - get { - return ResourceManager.GetString("ROM_MBC3_timer_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC5 and RAM. - /// - internal static string ROM_MBC5_and_RAM { - get { - return ResourceManager.GetString("ROM_MBC5_and_RAM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC5 and vibration motor. - /// - internal static string ROM_MBC5_and_vibration_motor { - get { - return ResourceManager.GetString("ROM_MBC5_and_vibration_motor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC5, RAM and battery. - /// - internal static string ROM_MBC5_RAM_and_battery { - get { - return ResourceManager.GetString("ROM_MBC5_RAM_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC5, RAM and vibration motor. - /// - internal static string ROM_MBC5_RAM_and_vibration_motor { - get { - return ResourceManager.GetString("ROM_MBC5_RAM_and_vibration_motor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC5, RAM, battery and vibration motor. - /// - internal static string ROM_MBC5_RAM_battery_and_vibration_motor { - get { - return ResourceManager.GetString("ROM_MBC5_RAM_battery_and_vibration_motor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MBC7, RAM, battery, light sensor and vibration motor. - /// - internal static string ROM_MBC7_RAM_battery_light_sensor_and_vibration_motor { - get { - return ResourceManager.GetString("ROM_MBC7_RAM_battery_light_sensor_and_vibration_motor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MMM01 and RAM. - /// - internal static string ROM_MMM01_and_RAM { - get { - return ResourceManager.GetString("ROM_MMM01_and_RAM", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, MMM01, RAM and battery. - /// - internal static string ROM_MMM01_RAM_and_battery { - get { - return ResourceManager.GetString("ROM_MMM01_RAM_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM only. - /// - internal static string ROM_only { - get { - return ResourceManager.GetString("ROM_only", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, RAM and battery. - /// - internal static string ROM_RAM_and_battery { - get { - return ResourceManager.GetString("ROM_RAM_and_battery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, RAM and coprocessor. - /// - internal static string ROM_RAM_and_coprocessor { - get { - return ResourceManager.GetString("ROM_RAM_and_coprocessor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, RAM, battery and coprocessor. - /// - internal static string ROM_RAM_battery_and_coprocessor { - get { - return ResourceManager.GetString("ROM_RAM_battery_and_coprocessor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM, RAM, battery, coprocessor and RTC. - /// - internal static string ROM_RAM_battery_coprocessor_and_RTC { - get { - return ResourceManager.GetString("ROM_RAM_battery_coprocessor_and_RTC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM size: {0} bytes. - /// - internal static string ROM_size_0_bytes { - get { - return ResourceManager.GetString("ROM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM speed: {0}. - /// - internal static string ROM_speed_0 { - get { - return ResourceManager.GetString("ROM_speed_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ROM starts at 0x{0:X8} and ends at 0x{1:X8} ({2} bytes). - /// - internal static string ROM_starts_at_0_and_ends_at_1_2_bytes { - get { - return ResourceManager.GetString("ROM_starts_at_0_and_ends_at_1_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rotation: {0}. - /// - internal static string Rotation_0 { - get { - return ResourceManager.GetString("Rotation_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RS-IDE Hard Disk Image. - /// - internal static string RsIde_Name { - get { - return ResourceManager.GetString("RsIde_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Save RAM size: {0} bytes. - /// - internal static string Save_RAM_size_0_bytes { - get { - return ResourceManager.GetString("Save_RAM_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SaveDskF comments: {0}. - /// - internal static string SaveDskF_comments_0 { - get { - return ResourceManager.GetString("SaveDskF_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SaveDskF image contains a disk of type {0}. - /// - internal static string SaveDskF_image_contains_a_disk_of_type_0 { - get { - return ResourceManager.GetString("SaveDskF_image_contains_a_disk_of_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to IBM SaveDskF. - /// - internal static string SaveDskF_Name { - get { - return ResourceManager.GetString("SaveDskF_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Scandinavia. - /// - internal static string Scandinavia { - get { - return ResourceManager.GetString("Scandinavia", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector {0}:{3}:{4} calculated CRC 0x{1:X2} differs from stored CRC 0x{2:X2}. - /// - internal static string Sector_0_3_4_calculated_CRC_1_X2_differs_from_stored_CRC_2_X2 { - get { - return ResourceManager.GetString("Sector_0_3_4_calculated_CRC_1_X2_differs_from_stored_CRC_2_X2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector {0} on cylinder {1} head {2} is duplicate, and marked so. - /// - internal static string Sector_0_on_cylinder_1_head_2_is_duplicate_and_marked_so { - get { - return ResourceManager.GetString("Sector_0_on_cylinder_1_head_2_is_duplicate_and_marked_so", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector {0} on cylinder {1} head {2} is duplicate, but is not marked so. - /// - internal static string Sector_0_on_cylinder_1_head_2_is_duplicate_but_is_not_marked_so { - get { - return ResourceManager.GetString("Sector_0_on_cylinder_1_head_2_is_duplicate_but_is_not_marked_so", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector address not found. - /// - internal static string Sector_address_not_found { - get { - return ResourceManager.GetString("Sector_address_not_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector CRC (plus headers): 0x{0:X2}. - /// - internal static string Sector_CRC_plus_headers_0_X2 { - get { - return ResourceManager.GetString("Sector_CRC_plus_headers_0_X2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector flags: 0x{0:X2}. - /// - internal static string Sector_flags_0_X2 { - get { - return ResourceManager.GetString("Sector_flags_0_X2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector follows. - /// - internal static string Sector_follows { - get { - return ResourceManager.GetString("Sector_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector size: {0}. - /// - internal static string Sector_size_0 { - get { - return ResourceManager.GetString("Sector_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector size {0} is incorrect.. - /// - internal static string Sector_size_0_is_incorrect { - get { - return ResourceManager.GetString("Sector_size_0_is_incorrect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sectors in track: {0}. - /// - internal static string Sectors_in_track_0 { - get { - return ResourceManager.GetString("Sectors_in_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sega Mega Drive / 32X / Pico. - /// - internal static string SegaMegaDrive_Name { - get { - return ResourceManager.GetString("SegaMegaDrive_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Segmented images are not yet supported.. - /// - internal static string Segmented_images_are_not_yet_supported { - get { - return ResourceManager.GetString("Segmented_images_are_not_yet_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Separate tracks not yet implemented. - /// - internal static string Separate_tracks_not_yet_implemented { - get { - return ResourceManager.GetString("Separate_tracks_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Serial number: {0}. - /// - internal static string Serial_number_0 { - get { - return ResourceManager.GetString("Serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Session {0} has {1} tracks. - /// - internal static string Session_0_has_1_tracks { - get { - return ResourceManager.GetString("Session_0_has_1_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Session {0} information:. - /// - internal static string Session_0_information { - get { - return ResourceManager.GetString("Session_0_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Session information:. - /// - internal static string Session_information { - get { - return ResourceManager.GetString("Session_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sets currentFile.offset to {0}. - /// - internal static string Sets_currentFile_offset_to_0 { - get { - return ResourceManager.GetString("Sets_currentFile_offset_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting comments: {0}. - /// - internal static string Setting_comments_0 { - get { - return ResourceManager.GetString("Setting_comments_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting creator: {0}. - /// - internal static string Setting_creator_0 { - get { - return ResourceManager.GetString("Setting_creator_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting currentTrack.sequence to {0}. - /// - internal static string Setting_currentTrack_sequence_to_0 { - get { - return ResourceManager.GetString("Setting_currentTrack_sequence_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting drive firmware revision: {0}. - /// - internal static string Setting_drive_firmware_revision_0 { - get { - return ResourceManager.GetString("Setting_drive_firmware_revision_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting drive manufacturer: {0}. - /// - internal static string Setting_drive_manufacturer_0 { - get { - return ResourceManager.GetString("Setting_drive_manufacturer_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting drive model: {0}. - /// - internal static string Setting_drive_model_0 { - get { - return ResourceManager.GetString("Setting_drive_model_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting drive serial number: {0}. - /// - internal static string Setting_drive_serial_number_0 { - get { - return ResourceManager.GetString("Setting_drive_serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting media barcode: {0}. - /// - internal static string Setting_media_barcode_0 { - get { - return ResourceManager.GetString("Setting_media_barcode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting media manufacturer: {0}. - /// - internal static string Setting_media_manufacturer_0 { - get { - return ResourceManager.GetString("Setting_media_manufacturer_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting media model: {0}. - /// - internal static string Setting_media_model_0 { - get { - return ResourceManager.GetString("Setting_media_model_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting media part number: {0}. - /// - internal static string Setting_media_part_number_0 { - get { - return ResourceManager.GetString("Setting_media_part_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting media sequence as {0} of {1}. - /// - internal static string Setting_media_sequence_as_0_of_1 { - get { - return ResourceManager.GetString("Setting_media_sequence_as_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting media serial number: {0}. - /// - internal static string Setting_media_serial_number_0 { - get { - return ResourceManager.GetString("Setting_media_serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting media title: {0}. - /// - internal static string Setting_media_title_0 { - get { - return ResourceManager.GetString("Setting_media_title_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Size, in bytes, of the LZMA dictionary. - /// - internal static string Size_in_bytes_of_the_LZMA_dictionary { - get { - return ResourceManager.GetString("Size_in_bytes_of_the_LZMA_dictionary", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Some error occurred setting GD sizes. - /// - internal static string Some_error_occurred_setting_GD_sizes { - get { - return ResourceManager.GetString("Some_error_occurred_setting_GD_sizes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Songwriter: {0}. - /// - internal static string Songwriter_0 { - get { - return ResourceManager.GetString("Songwriter_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Songwriter is not set.. - /// - internal static string Songwriter_is_not_set { - get { - return ResourceManager.GetString("Songwriter_is_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to South Korea. - /// - internal static string South_Korea { - get { - return ResourceManager.GetString("South_Korea", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Spain. - /// - internal static string Spain { - get { - return ResourceManager.GetString("Spain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sparse images not yet implemented. - /// - internal static string Sparse_images_not_yet_implemented { - get { - return ResourceManager.GetString("Sparse_images_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Special revision: {0}. - /// - internal static string Special_revision_0 { - get { - return ResourceManager.GetString("Special_revision_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Split data file at 2GiB.. - /// - internal static string Split_data_file_at_2GiB { - get { - return ResourceManager.GetString("Split_data_file_at_2GiB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Splitted images not yet implemented. - /// - internal static string Splitted_images_not_yet_implemented { - get { - return ResourceManager.GetString("Splitted_images_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Stack trace: {0}. - /// - internal static string Stack_trace_0 { - get { - return ResourceManager.GetString("Stack_trace_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Starting sector: {0}. - /// - internal static string Starting_sector_0 { - get { - return ResourceManager.GetString("Starting_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Starting track: {0}. - /// - internal static string Starting_track_0 { - get { - return ResourceManager.GetString("Starting_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Store only unique sectors. This consumes more memory and is slower, but it's enabled by default. - /// internal static string Store_only_unique_sectors_This_consumes_more_memory_and_is_slower_but_its_enabled_by_default { get { return ResourceManager.GetString("Store_only_unique_sectors_This_consumes_more_memory_and_is_slower_but_its_enabled" + @@ -6843,229 +137,288 @@ namespace Aaru.Images { } } - /// - /// Looks up a localized string similar to Stored data checksum = 0x{0:X8}. - /// - internal static string Stored_data_checksum_equals_0_X8 { + internal static string Compress_user_data_blocks_Other_blocks_will_always_be_compressed { get { - return ResourceManager.GetString("Stored_data_checksum_equals_0_X8", resourceCulture); + return ResourceManager.GetString("Compress_user_data_blocks_Other_blocks_will_always_be_compressed", resourceCulture); } } - /// - /// Looks up a localized string similar to Stored tag checksum = 0x{0:X8}. - /// - internal static string Stored_tag_checksum_equals_0_X8 { + internal static string Memory_snapshot_0_bytes { get { - return ResourceManager.GetString("Stored_tag_checksum_equals_0_X8", resourceCulture); + return ResourceManager.GetString("Memory_snapshot_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to SuperCardPro. - /// - internal static string SuperCardPro_Name { + internal static string Image_version_0_not_recognized { get { - return ResourceManager.GetString("SuperCardPro_Name", resourceCulture); + return ResourceManager.GetString("Image_version_0_not_recognized", resourceCulture); } } - /// - /// Looks up a localized string similar to Super Nintendo. - /// - internal static string SuperNintendo_Name { + internal static string Index_not_found { get { - return ResourceManager.GetString("SuperNintendo_Name", resourceCulture); + return ResourceManager.GetString("Index_not_found", resourceCulture); } } - /// - /// Looks up a localized string similar to Support for image type {0} not yet implemented. - /// - internal static string Support_for_image_type_0_not_yet_implemented { + internal static string Index_at_0_contains_1_entries { get { - return ResourceManager.GetString("Support_for_image_type_0_not_yet_implemented", resourceCulture); + return ResourceManager.GetString("Index_at_0_contains_1_entries", resourceCulture); } } - /// - /// Looks up a localized string similar to Support for multiple volumes not supported. - /// - internal static string Support_for_multiple_volumes_not_supported { + internal static string Block_type_0_with_data_type_1_is_indexed_to_be_at_2 { get { - return ResourceManager.GetString("Support_for_multiple_volumes_not_supported", resourceCulture); + return ResourceManager.GetString("Block_type_0_with_data_type_1_is_indexed_to_be_at_2", resourceCulture); } } - /// - /// Looks up a localized string similar to Sweden/Scandinavia. - /// - internal static string Sweden_Scandinavia { + internal static string Incorrect_identifier_for_data_block_at_position_0 { get { - return ResourceManager.GetString("Sweden_Scandinavia", resourceCulture); + return ResourceManager.GetString("Incorrect_identifier_for_data_block_at_position_0", resourceCulture); } } - /// - /// Looks up a localized string similar to System type: {0}. - /// - internal static string System_type_0 { + internal static string Expected_block_with_data_type_0_at_position_1_but_found_data_type_2 { get { - return ResourceManager.GetString("System_type_0", resourceCulture); + return ResourceManager.GetString("Expected_block_with_data_type_0_at_position_1_but_found_data_type_2", resourceCulture); } } - /// - /// Looks up a localized string similar to T98 Hard Disk Image. - /// - internal static string T98_Name { + internal static string Found_data_block_type_0_at_position_1 { get { - return ResourceManager.GetString("T98_Name", resourceCulture); + return ResourceManager.GetString("Found_data_block_type_0_at_position_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Table size must be a power of 2. - /// - internal static string Table_size_must_be_a_power_of_2 { + internal static string Invalid_compression_type_0_for_block_with_data_type_1_continuing { get { - return ResourceManager.GetString("Table_size_must_be_a_power_of_2", resourceCulture); + return ResourceManager.GetString("Invalid_compression_type_0_for_block_with_data_type_1_continuing", resourceCulture); } } - /// - /// Looks up a localized string similar to Table size must be between 1 and 16 clusters. - /// - internal static string Table_size_must_be_between_1_and_16_clusters { + internal static string Error_decompressing_block_should_be_0_bytes_but_got_1_bytes { get { - return ResourceManager.GetString("Table_size_must_be_between_1_and_16_clusters", resourceCulture); + return ResourceManager.GetString("Error_decompressing_block_should_be_0_bytes_but_got_1_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to Tag type {0} is null, skipping.... - /// - internal static string Tag_type_0_is_null_skipping { + internal static string Took_0_seconds_to_decompress_block { get { - return ResourceManager.GetString("Tag_type_0_is_null_skipping", resourceCulture); + return ResourceManager.GetString("Took_0_seconds_to_decompress_block", resourceCulture); } } - /// - /// Looks up a localized string similar to TeleDisk comments: {0}. - /// - internal static string TeleDisk_comments_0 { + internal static string Found_unknown_compression_type_0_continuing { get { - return ResourceManager.GetString("TeleDisk_comments_0", resourceCulture); + return ResourceManager.GetString("Found_unknown_compression_type_0_continuing", resourceCulture); } } - /// - /// Looks up a localized string similar to TeleDisk image contains a disk of type {0}. - /// - internal static string TeleDisk_image_contains_a_disk_of_type_0 { + internal static string Incorrect_CRC_found_0_X16_found_expected_1_X16_continuing { get { - return ResourceManager.GetString("TeleDisk_image_contains_a_disk_of_type_0", resourceCulture); + return ResourceManager.GetString("Incorrect_CRC_found_0_X16_found_expected_1_X16_continuing", resourceCulture); } } - /// - /// Looks up a localized string similar to Sydex TeleDisk. - /// - internal static string TeleDisk_Name { + internal static string Media_tag_type_0_duplicated_removing_previous_entry { get { - return ResourceManager.GetString("TeleDisk_Name", resourceCulture); + return ResourceManager.GetString("Media_tag_type_0_duplicated_removing_previous_entry", resourceCulture); } } - /// - /// Looks up a localized string similar to The data files are missing a pregap or hidden track contents, will do best effort to make the rest of the image readable.. - /// - internal static string The_data_files_are_missing_a_pregap_or_hidden_track_contents_will_do_best_effort_to_make_the_rest_of_the_image_readable { + internal static string Decompressing_DDT { get { - return ResourceManager.GetString("The_data_files_are_missing_a_pregap_or_hidden_track_contents_will_do_best_effort_" + - "to_make_the_rest_of_the_image_readable", resourceCulture); + return ResourceManager.GetString("Decompressing_DDT", resourceCulture); } } - /// - /// Looks up a localized string similar to The data files are not correct according to the cuesheet file, cannot continue with this file.. - /// - internal static string The_data_files_are_not_correct_according_to_the_cuesheet_file_cannot_continue_with_this_file { + internal static string Error_decompressing_DDT_should_be_0_bytes_but_got_1_bytes { get { - return ResourceManager.GetString("The_data_files_are_not_correct_according_to_the_cuesheet_file_cannot_continue_wit" + - "h_this_file", resourceCulture); + return ResourceManager.GetString("Error_decompressing_DDT_should_be_0_bytes_but_got_1_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to The disc this image represents contained a hidden track in the first pregap, that this image format cannot store. This dump is therefore, incorrect.. - /// - internal static string The_disc_this_image_represents_contained_a_hidden_track_in_the_first_pregap_that_this_image_format_cannot_store_This_dump_is_therefore_incorrect { + internal static string Took_0_seconds_to_decompress_DDT { get { - return ResourceManager.GetString("The_disc_this_image_represents_contained_a_hidden_track_in_the_first_pregap_that_" + - "this_image_format_cannot_store_This_dump_is_therefore_incorrect", resourceCulture); + return ResourceManager.GetString("Took_0_seconds_to_decompress_DDT", resourceCulture); } } - /// - /// Looks up a localized string similar to The requested position is out of range.. - /// - internal static string The_requested_position_is_out_of_range { + internal static string Found_unsupported_compression_algorithm_0 { get { - return ResourceManager.GetString("The_requested_position_is_out_of_range", resourceCulture); + return ResourceManager.GetString("Found_unsupported_compression_algorithm_0", resourceCulture); } } - /// - /// Looks up a localized string similar to The specified sector size does not correspond with the requested image extension.. - /// - internal static string The_specified_sector_size_does_not_correspond_with_the_requested_image_extension { + internal static string Geometry_set_to_0_cylinders_1_heads_2_sectors_per_track { get { - return ResourceManager.GetString("The_specified_sector_size_does_not_correspond_with_the_requested_image_extension", resourceCulture); + return ResourceManager.GetString("Geometry_set_to_0_cylinders_1_heads_2_sectors_per_track", resourceCulture); } } - /// - /// Looks up a localized string similar to There are sparse extents but there is no header to find the grain tables, cannot proceed.. - /// - internal static string There_are_sparse_extents_but_there_is_no_header_to_find_the_grain_tables_cannot_proceed { + internal static string Found_metadata_block_at_position_0 { get { - return ResourceManager.GetString("There_are_sparse_extents_but_there_is_no_header_to_find_the_grain_tables_cannot_p" + - "roceed", resourceCulture); + return ResourceManager.GetString("Found_metadata_block_at_position_0", resourceCulture); } } - /// - /// Looks up a localized string similar to This format requires sectors to be raw. Generating ECC is not yet implemented. - /// - internal static string This_format_requires_sectors_to_be_raw_Generating_ECC_is_not_yet_implemented { + internal static string Setting_media_sequence_as_0_of_1 { get { - return ResourceManager.GetString("This_format_requires_sectors_to_be_raw_Generating_ECC_is_not_yet_implemented", resourceCulture); + return ResourceManager.GetString("Setting_media_sequence_as_0_of_1", resourceCulture); } } - /// - /// Looks up a localized string similar to This image contains a track that is set to start outside the file.. - /// - internal static string This_image_contains_a_track_that_is_set_to_start_outside_the_file { + internal static string Setting_creator_0 { get { - return ResourceManager.GetString("This_image_contains_a_track_that_is_set_to_start_outside_the_file", resourceCulture); + return ResourceManager.GetString("Setting_creator_0", resourceCulture); } } - /// - /// Looks up a localized string similar to This image from PowerISO is damaged beyond possible recovery. Will not open.. - /// - internal static string This_image_from_PowerISO_is_damaged_beyond_possible_recovery_Will_not_open { + internal static string Setting_comments_0 { get { - return ResourceManager.GetString("This_image_from_PowerISO_is_damaged_beyond_possible_recovery_Will_not_open", resourceCulture); + return ResourceManager.GetString("Setting_comments_0", resourceCulture); + } + } + + internal static string Setting_media_title_0 { + get { + return ResourceManager.GetString("Setting_media_title_0", resourceCulture); + } + } + + internal static string Setting_media_manufacturer_0 { + get { + return ResourceManager.GetString("Setting_media_manufacturer_0", resourceCulture); + } + } + + internal static string Setting_media_model_0 { + get { + return ResourceManager.GetString("Setting_media_model_0", resourceCulture); + } + } + + internal static string Setting_media_serial_number_0 { + get { + return ResourceManager.GetString("Setting_media_serial_number_0", resourceCulture); + } + } + + internal static string Setting_media_barcode_0 { + get { + return ResourceManager.GetString("Setting_media_barcode_0", resourceCulture); + } + } + + internal static string Setting_media_part_number_0 { + get { + return ResourceManager.GetString("Setting_media_part_number_0", resourceCulture); + } + } + + internal static string Setting_drive_manufacturer_0 { + get { + return ResourceManager.GetString("Setting_drive_manufacturer_0", resourceCulture); + } + } + + internal static string Setting_drive_model_0 { + get { + return ResourceManager.GetString("Setting_drive_model_0", resourceCulture); + } + } + + internal static string Setting_drive_serial_number_0 { + get { + return ResourceManager.GetString("Setting_drive_serial_number_0", resourceCulture); + } + } + + internal static string Setting_drive_firmware_revision_0 { + get { + return ResourceManager.GetString("Setting_drive_firmware_revision_0", resourceCulture); + } + } + + internal static string Incorrect_identifier_for_tracks_block_at_position_0 { + get { + return ResourceManager.GetString("Incorrect_identifier_for_tracks_block_at_position_0", resourceCulture); + } + } + + internal static string Found_0_tracks_at_position_1 { + get { + return ResourceManager.GetString("Found_0_tracks_at_position_1", resourceCulture); + } + } + + internal static string Found_CICM_XML_metadata_block_at_position_0 { + get { + return ResourceManager.GetString("Found_CICM_XML_metadata_block_at_position_0", resourceCulture); + } + } + + internal static string Exception_0_processing_CICM_XML_metadata_block { + get { + return ResourceManager.GetString("Exception_0_processing_CICM_XML_metadata_block", resourceCulture); + } + } + + internal static string Found_dump_hardware_block_at_position_0 { + get { + return ResourceManager.GetString("Found_dump_hardware_block_at_position_0", resourceCulture); + } + } + + internal static string Found_tape_partition_block_at_position_0 { + get { + return ResourceManager.GetString("Found_tape_partition_block_at_position_0", resourceCulture); + } + } + + internal static string Found_tape_file_block_at_position_0 { + get { + return ResourceManager.GetString("Found_tape_file_block_at_position_0", resourceCulture); + } + } + + internal static string Incorrect_identifier_for_compact_disc_indexes_block_at_position_0 { + get { + return ResourceManager.GetString("Incorrect_identifier_for_compact_disc_indexes_block_at_position_0", resourceCulture); + } + } + + internal static string Found_0_compact_disc_indexes_at_position_1 { + get { + return ResourceManager.GetString("Found_0_compact_disc_indexes_at_position_1", resourceCulture); + } + } + + internal static string Could_not_find_user_data_deduplication_table { + get { + return ResourceManager.GetString("Could_not_find_user_data_deduplication_table", resourceCulture); + } + } + + internal static string Image_created_on_0 { + get { + return ResourceManager.GetString("Image_created_on_0", resourceCulture); + } + } + + internal static string Image_last_written_on_0 { + get { + return ResourceManager.GetString("Image_last_written_on_0", resourceCulture); + } + } + + internal static string This_image_has_a_corrupted_track_list_convert_will_fix_it { + get { + return ResourceManager.GetString("This_image_has_a_corrupted_track_list_convert_will_fix_it", resourceCulture); } } - /// - /// Looks up a localized string similar to This image has a corrupted track list, a best effort has been tried but may require manual editing or redump.. - /// internal static string This_image_has_a_corrupted_track_list_a_best_effort_has_been_tried_but_may_require_manual_editing_or_redump { get { return ResourceManager.GetString("This_image_has_a_corrupted_track_list_a_best_effort_has_been_tried_but_may_requir" + @@ -7073,27 +426,2912 @@ namespace Aaru.Images { } } - /// - /// Looks up a localized string similar to This image has a corrupted track list, convert will fix it.. - /// - internal static string This_image_has_a_corrupted_track_list_convert_will_fix_it { + internal static string Optical_disc_track { get { - return ResourceManager.GetString("This_image_has_a_corrupted_track_list_convert_will_fix_it", resourceCulture); + return ResourceManager.GetString("Optical_disc_track", resourceCulture); } } - /// - /// Looks up a localized string similar to This image is missing vital multi-session data and cannot be read correctly.. - /// - internal static string This_image_is_missing_vital_multi_session_data_and_cannot_be_read_correctly { + internal static string Checking_index_integrity_at_0 { get { - return ResourceManager.GetString("This_image_is_missing_vital_multi_session_data_and_cannot_be_read_correctly", resourceCulture); + return ResourceManager.GetString("Checking_index_integrity_at_0", resourceCulture); + } + } + + internal static string Incorrect_index_identifier { + get { + return ResourceManager.GetString("Incorrect_index_identifier", resourceCulture); + } + } + + internal static string Expected_index_CRC_0_X16_but_got_1_X16 { + get { + return ResourceManager.GetString("Expected_index_CRC_0_X16_but_got_1_X16", resourceCulture); + } + } + + internal static string Verifying_data_block_type_0_at_position_1 { + get { + return ResourceManager.GetString("Verifying_data_block_type_0_at_position_1", resourceCulture); + } + } + + internal static string Expected_block_CRC_0_X16_but_got_1_X16 { + get { + return ResourceManager.GetString("Expected_block_CRC_0_X16_but_got_1_X16", resourceCulture); + } + } + + internal static string Verifying_deduplication_table_type_0_at_position_1 { + get { + return ResourceManager.GetString("Verifying_deduplication_table_type_0_at_position_1", resourceCulture); + } + } + + internal static string Expected_DDT_CRC_0_but_got_1 { + get { + return ResourceManager.GetString("Expected_DDT_CRC_0_but_got_1", resourceCulture); + } + } + + internal static string Track_block_at_0_contains_1_entries { + get { + return ResourceManager.GetString("Track_block_at_0_contains_1_entries", resourceCulture); + } + } + + internal static string Ignored_field_type_0 { + get { + return ResourceManager.GetString("Ignored_field_type_0", resourceCulture); + } + } + + internal static string Invalid_value_for_sectors_per_block_option { + get { + return ResourceManager.GetString("Invalid_value_for_sectors_per_block_option", resourceCulture); + } + } + + internal static string Invalid_value_for_dictionary_option { + get { + return ResourceManager.GetString("Invalid_value_for_dictionary_option", resourceCulture); + } + } + + internal static string Invalid_value_for_max_ddt_size_option { + get { + return ResourceManager.GetString("Invalid_value_for_max_ddt_size_option", resourceCulture); + } + } + + internal static string Invalid_value_for_md5_option { + get { + return ResourceManager.GetString("Invalid_value_for_md5_option", resourceCulture); + } + } + + internal static string Invalid_value_for_sha1_option { + get { + return ResourceManager.GetString("Invalid_value_for_sha1_option", resourceCulture); + } + } + + internal static string Invalid_value_for_sha256_option { + get { + return ResourceManager.GetString("Invalid_value_for_sha256_option", resourceCulture); + } + } + + internal static string Invalid_value_for_spamsum_option { + get { + return ResourceManager.GetString("Invalid_value_for_spamsum_option", resourceCulture); + } + } + + internal static string Invalid_value_for_deduplicate_option { + get { + return ResourceManager.GetString("Invalid_value_for_deduplicate_option", resourceCulture); + } + } + + internal static string Invalid_value_for_compress_option { + get { + return ResourceManager.GetString("Invalid_value_for_compress_option", resourceCulture); + } + } + + internal static string Unsupported_media_format_0 { + get { + return ResourceManager.GetString("Unsupported_media_format_0", resourceCulture); + } + } + + internal static string Got_a_shift_of_0_for_1_sectors_per_block { + get { + return ResourceManager.GetString("Got_a_shift_of_0_for_1_sectors_per_block", resourceCulture); + } + } + + internal static string Could_not_create_new_image_file_exception_0 { + get { + return ResourceManager.GetString("Could_not_create_new_image_file_exception_0", resourceCulture); + } + } + + internal static string Cannot_append_to_a_non_Aaru_Format_image { + get { + return ResourceManager.GetString("Cannot_append_to_a_non_Aaru_Format_image", resourceCulture); + } + } + + internal static string Cannot_append_to_an_unknown_image_version_0 { + get { + return ResourceManager.GetString("Cannot_append_to_an_unknown_image_version_0", resourceCulture); + } + } + + internal static string Cannot_write_a_media_with_type_0_to_an_image_with_type_1 { + get { + return ResourceManager.GetString("Cannot_write_a_media_with_type_0_to_an_image_with_type_1", resourceCulture); + } + } + + internal static string Index_not_found_in_existing_image_cannot_continue { + get { + return ResourceManager.GetString("Index_not_found_in_existing_image_cannot_continue", resourceCulture); + } + } + + internal static string Trying_to_write_a_media_with_0_sectors_to_an_image_with_1_sectors_not_continuing { + get { + return ResourceManager.GetString("Trying_to_write_a_media_with_0_sectors_to_an_image_with_1_sectors_not_continuing", resourceCulture); + } + } + + internal static string In_memory_DDT_0 { + get { + return ResourceManager.GetString("In_memory_DDT_0", resourceCulture); + } + } + + internal static string Tried_to_write_on_a_non_writable_image { + get { + return ResourceManager.GetString("Tried_to_write_on_a_non_writable_image", resourceCulture); + } + } + + internal static string Tried_to_write_past_image_size { + get { + return ResourceManager.GetString("Tried_to_write_past_image_size", resourceCulture); + } + } + + internal static string Track_not_found { + get { + return ResourceManager.GetString("Track_not_found", resourceCulture); + } + } + + internal static string Incorrect_data_size { + get { + return ResourceManager.GetString("Incorrect_data_size", resourceCulture); + } + } + + internal static string Unknown_long_sector_type_cannot_write { + get { + return ResourceManager.GetString("Unknown_long_sector_type_cannot_write", resourceCulture); + } + } + + internal static string Unsupported_feature { + get { + return ResourceManager.GetString("Unsupported_feature", resourceCulture); + } + } + + internal static string Image_is_not_opened_for_writing { + get { + return ResourceManager.GetString("Image_is_not_opened_for_writing", resourceCulture); + } + } + + internal static string Of_0_sectors_written_1_are_unique_2 { + get { + return ResourceManager.GetString("Of_0_sectors_written_1_are_unique_2", resourceCulture); + } + } + + internal static string Tag_type_0_is_null_skipping { + get { + return ResourceManager.GetString("Tag_type_0_is_null_skipping", resourceCulture); + } + } + + internal static string Writing_tag_type_0_to_position_1 { + get { + return ResourceManager.GetString("Writing_tag_type_0_to_position_1", resourceCulture); + } + } + + internal static string Writing_geometry_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_geometry_block_to_position_0", resourceCulture); + } + } + + internal static string Writing_dump_hardware_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_dump_hardware_block_to_position_0", resourceCulture); + } + } + + internal static string Writing_CICM_XML_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_CICM_XML_block_to_position_0", resourceCulture); + } + } + + internal static string Writing_checksum_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_checksum_block_to_position_0", resourceCulture); + } + } + + internal static string Writing_tape_partitions_to_position_0 { + get { + return ResourceManager.GetString("Writing_tape_partitions_to_position_0", resourceCulture); + } + } + + internal static string Writing_tape_files_to_position_0 { + get { + return ResourceManager.GetString("Writing_tape_files_to_position_0", resourceCulture); + } + } + + internal static string Writing_user_data_DDT_to_position_0 { + get { + return ResourceManager.GetString("Writing_user_data_DDT_to_position_0", resourceCulture); + } + } + + internal static string Writing_CD_sector_prefix_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_CD_sector_prefix_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_prefix { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_prefix", resourceCulture); + } + } + + internal static string Writing_CD_sector_suffix_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_CD_sector_suffix_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_suffix { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_suffix", resourceCulture); + } + } + + internal static string _0_1_prefixes_are_correct_2_3_prefixes_have_not_been_dumped_4_5_prefixes_have_been_written_to_image { + get { + return ResourceManager.GetString("_0_1_prefixes_are_correct_2_3_prefixes_have_not_been_dumped_4_5_prefixes_have_bee" + + "n_written_to_image", resourceCulture); + } + } + + internal static string _0_1_suffixes_are_correct_2_3_suffixes_have_not_been_dumped_4_5_suffixes_have_been_written_to_image { + get { + return ResourceManager.GetString("_0_1_suffixes_are_correct_2_3_suffixes_have_not_been_dumped_4_5_suffixes_have_bee" + + "n_written_to_image", resourceCulture); + } + } + + internal static string _0_1_MODE_2_Form_1_are_correct_2_3_MODE_2_Form_2_are_correct_4_5_MODE_2_Form_2_have_empty_CRC { + get { + return ResourceManager.GetString("_0_1_MODE_2_Form_1_are_correct_2_3_MODE_2_Form_2_are_correct_4_5_MODE_2_Form_2_ha" + + "ve_empty_CRC", resourceCulture); + } + } + + internal static string Writing_CompactDisc_sector_prefix_DDT_to_position_0 { + get { + return ResourceManager.GetString("Writing_CompactDisc_sector_prefix_DDT_to_position_0", resourceCulture); + } + } + + internal static string Writing_CompactDisc_sector_suffix_DDT_to_position_0 { + get { + return ResourceManager.GetString("Writing_CompactDisc_sector_suffix_DDT_to_position_0", resourceCulture); + } + } + + internal static string Writing_CD_sector_corrected_prefix_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_CD_sector_corrected_prefix_block_to_position_0", resourceCulture); + } + } + + internal static string Writing_CD_sector_corrected_suffix_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_CD_sector_corrected_suffix_block_to_position_0", resourceCulture); + } + } + + internal static string Writing_CD_MODE2_subheaders_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_CD_MODE2_subheaders_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_MODE2_subheaders { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_MODE2_subheaders", resourceCulture); + } + } + + internal static string Writing_CD_subchannel_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_CD_subchannel_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_subchannel { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_subchannel", resourceCulture); + } + } + + internal static string Writing_DVD_CPR_MAI_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_DVD_CPR_MAI_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_CPR_MAI { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_CPR_MAI", resourceCulture); + } + } + + internal static string Writing_DVD_ID_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_DVD_ID_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_ID { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_ID", resourceCulture); + } + } + + internal static string Writing_DVD_IED_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_DVD_IED_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_IED { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_IED", resourceCulture); + } + } + + internal static string Writing_DVD_EDC_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_DVD_EDC_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_EDC { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_EDC", resourceCulture); + } + } + + internal static string Writing_decrypted_DVD_title_key_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_decrypted_DVD_title_key_block_to_position_0", resourceCulture); + } + } + + internal static string Took_0_seconds_to_compress_decrypted_DVD_title_keys { + get { + return ResourceManager.GetString("Took_0_seconds_to_compress_decrypted_DVD_title_keys", resourceCulture); + } + } + + internal static string Writing_tracks_to_position_0 { + get { + return ResourceManager.GetString("Writing_tracks_to_position_0", resourceCulture); + } + } + + internal static string Writing_compact_disc_indexes_to_position_0 { + get { + return ResourceManager.GetString("Writing_compact_disc_indexes_to_position_0", resourceCulture); + } + } + + internal static string Writing_apple_sector_tag_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_apple_sector_tag_block_to_position_0", resourceCulture); + } + } + + internal static string Writing_metadata_to_position_0 { + get { + return ResourceManager.GetString("Writing_metadata_to_position_0", resourceCulture); + } + } + + internal static string Writing_index_to_position_0 { + get { + return ResourceManager.GetString("Writing_index_to_position_0", resourceCulture); + } + } + + internal static string Writing_header { + get { + return ResourceManager.GetString("Writing_header", resourceCulture); + } + } + + internal static string Tried_to_set_geometry_on_a_media_that_doesnt_support_it { + get { + return ResourceManager.GetString("Tried_to_set_geometry_on_a_media_that_doesnt_support_it", resourceCulture); + } + } + + internal static string Incorrect_tag_for_disk_type { + get { + return ResourceManager.GetString("Incorrect_tag_for_disk_type", resourceCulture); + } + } + + internal static string Cant_find_track_0 { + get { + return ResourceManager.GetString("Cant_find_track_0", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_track_flags { + get { + return ResourceManager.GetString("Incorrect_data_size_for_track_flags", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_subchannel { + get { + return ResourceManager.GetString("Incorrect_data_size_for_subchannel", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_CMI { + get { + return ResourceManager.GetString("Incorrect_data_size_for_CMI", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_title_key { + get { + return ResourceManager.GetString("Incorrect_data_size_for_title_key", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_dvd_id_information { + get { + return ResourceManager.GetString("Incorrect_data_size_for_dvd_id_information", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_dvd_id_number { + get { + return ResourceManager.GetString("Incorrect_data_size_for_dvd_id_number", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_ied { + get { + return ResourceManager.GetString("Incorrect_data_size_for_ied", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_edc { + get { + return ResourceManager.GetString("Incorrect_data_size_for_edc", resourceCulture); + } + } + + internal static string Incorrect_data_size_for_decrypted_title_key { + get { + return ResourceManager.GetString("Incorrect_data_size_for_decrypted_title_key", resourceCulture); + } + } + + internal static string Dont_know_how_to_write_sector_tag_type_0 { + get { + return ResourceManager.GetString("Dont_know_how_to_write_sector_tag_type_0", resourceCulture); + } + } + + internal static string Tried_to_write_more_data_than_possible { + get { + return ResourceManager.GetString("Tried_to_write_more_data_than_possible", resourceCulture); + } + } + + internal static string Alcohol120_Name { + get { + return ResourceManager.GetString("Alcohol120_Name", resourceCulture); + } + } + + internal static string The_disc_this_image_represents_contained_a_hidden_track_in_the_first_pregap_that_this_image_format_cannot_store_This_dump_is_therefore_incorrect { + get { + return ResourceManager.GetString("The_disc_this_image_represents_contained_a_hidden_track_in_the_first_pregap_that_" + + "this_image_format_cannot_store_This_dump_is_therefore_incorrect", resourceCulture); + } + } + + internal static string Track_0 { + get { + return ResourceManager.GetString("Track_0", resourceCulture); + } + } + + internal static string printing_partition_map { + get { + return ResourceManager.GetString("printing_partition_map", resourceCulture); + } + } + + internal static string Partition_sequence_0 { + get { + return ResourceManager.GetString("Partition_sequence_0", resourceCulture); + } + } + + internal static string Partition_name_0 { + get { + return ResourceManager.GetString("Partition_name_0", resourceCulture); + } + } + + internal static string Partition_description_0 { + get { + return ResourceManager.GetString("Partition_description_0", resourceCulture); + } + } + + internal static string Partition_type_0 { + get { + return ResourceManager.GetString("Partition_type_0", resourceCulture); + } + } + + internal static string Partition_starting_sector_0 { + get { + return ResourceManager.GetString("Partition_starting_sector_0", resourceCulture); + } + } + + internal static string Partition_sectors_0 { + get { + return ResourceManager.GetString("Partition_sectors_0", resourceCulture); + } + } + + internal static string Partition_starting_offset_0 { + get { + return ResourceManager.GetString("Partition_starting_offset_0", resourceCulture); + } + } + + internal static string Partition_size_in_bytes_0 { + get { + return ResourceManager.GetString("Partition_size_in_bytes_0", resourceCulture); + } + } + + internal static string Data_filename_0 { + get { + return ResourceManager.GetString("Data_filename_0", resourceCulture); + } + } + + internal static string Cannot_open_data_file { + get { + return ResourceManager.GetString("Cannot_open_data_file", resourceCulture); + } + } + + internal static string Rebuilding_TOC { + get { + return ResourceManager.GetString("Rebuilding_TOC", resourceCulture); + } + } + + internal static string Alcohol_120_image_describes_a_disc_of_type_0 { + get { + return ResourceManager.GetString("Alcohol_120_image_describes_a_disc_of_type_0", resourceCulture); + } + } + + internal static string Incorrect_Alcohol_120_image_created_by_an_old_version_of_Aaru_Convert_image_to_correct_it { + get { + return ResourceManager.GetString("Incorrect_Alcohol_120_image_created_by_an_old_version_of_Aaru_Convert_image_to_co" + + "rrect_it", resourceCulture); + } + } + + internal static string Unsupported_media_tag_0_for_medium_type_1 { + get { + return ResourceManager.GetString("Unsupported_media_tag_0_for_medium_type_1", resourceCulture); + } + } + + internal static string Cannot_write_non_long_sectors_to_CD_images { + get { + return ResourceManager.GetString("Cannot_write_non_long_sectors_to_CD_images", resourceCulture); + } + } + + internal static string Cant_find_track_containing_0 { + get { + return ResourceManager.GetString("Cant_find_track_containing_0", resourceCulture); + } + } + + internal static string Invalid_write_mode_for_this_sector { + get { + return ResourceManager.GetString("Invalid_write_mode_for_this_sector", resourceCulture); + } + } + + internal static string Cant_cross_tracks { + get { + return ResourceManager.GetString("Cant_cross_tracks", resourceCulture); + } + } + + internal static string Invalid_subchannel_mode_for_this_sector { + get { + return ResourceManager.GetString("Invalid_subchannel_mode_for_this_sector", resourceCulture); + } + } + + internal static string Unsupported_subchannel_type_0 { + get { + return ResourceManager.GetString("Unsupported_subchannel_type_0", resourceCulture); + } + } + + internal static string Trying_to_write_subchannel_to_track_0_that_does_not_have_subchannel { + get { + return ResourceManager.GetString("Trying_to_write_subchannel_to_track_0_that_does_not_have_subchannel", resourceCulture); + } + } + + internal static string Unsupported_tag_type_0 { + get { + return ResourceManager.GetString("Unsupported_tag_type_0", resourceCulture); + } + } + + internal static string Anex86_Name { + get { + return ResourceManager.GetString("Anex86_Name", resourceCulture); + } + } + + internal static string MediaType_0 { + get { + return ResourceManager.GetString("MediaType_0", resourceCulture); + } + } + + internal static string Unsupported_sector_size { + get { + return ResourceManager.GetString("Unsupported_sector_size", resourceCulture); + } + } + + internal static string Too_many_sectors { + get { + return ResourceManager.GetString("Too_many_sectors", resourceCulture); + } + } + + internal static string Writing_media_tags_is_not_supported { + get { + return ResourceManager.GetString("Writing_media_tags_is_not_supported", resourceCulture); + } + } + + internal static string Writing_sectors_with_tags_is_not_supported { + get { + return ResourceManager.GetString("Writing_sectors_with_tags_is_not_supported", resourceCulture); + } + } + + internal static string Too_many_cylinders { + get { + return ResourceManager.GetString("Too_many_cylinders", resourceCulture); + } + } + + internal static string Too_many_heads { + get { + return ResourceManager.GetString("Too_many_heads", resourceCulture); + } + } + + internal static string Too_many_sectors_per_track { + get { + return ResourceManager.GetString("Too_many_sectors_per_track", resourceCulture); + } + } + + internal static string Apple2Mg_Name { + get { + return ResourceManager.GetString("Apple2Mg_Name", resourceCulture); + } + } + + internal static string Detected_incorrect_endian_on_data_size_field_correcting { + get { + return ResourceManager.GetString("Detected_incorrect_endian_on_data_size_field_correcting", resourceCulture); + } + } + + internal static string Unknown_creator_code_0 { + get { + return ResourceManager.GetString("Unknown_creator_code_0", resourceCulture); + } + } + + internal static string _2MG_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("_2MG_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string _2MG_comments_0 { + get { + return ResourceManager.GetString("_2MG_comments_0", resourceCulture); + } + } + + internal static string AppleDos_Name { + get { + return ResourceManager.GetString("AppleDos_Name", resourceCulture); + } + } + + internal static string Incorrect_number_of_sectors_for_media { + get { + return ResourceManager.GetString("Incorrect_number_of_sectors_for_media", resourceCulture); + } + } + + internal static string AppleNib_Name { + get { + return ResourceManager.GetString("AppleNib_Name", resourceCulture); + } + } + + internal static string Decoding_whole_image { + get { + return ResourceManager.GetString("Decoding_whole_image", resourceCulture); + } + } + + internal static string Got_0_tracks { + get { + return ResourceManager.GetString("Got_0_tracks", resourceCulture); + } + } + + internal static string Using_DOS_skewing { + get { + return ResourceManager.GetString("Using_DOS_skewing", resourceCulture); + } + } + + internal static string Using_ProDOS_skewing { + get { + return ResourceManager.GetString("Using_ProDOS_skewing", resourceCulture); + } + } + + internal static string Hardware_sector_0_of_track_1_goes_to_logical_sector_2 { + get { + return ResourceManager.GetString("Hardware_sector_0_of_track_1_goes_to_logical_sector_2", resourceCulture); + } + } + + internal static string Got_0_sectors { + get { + return ResourceManager.GetString("Got_0_sectors", resourceCulture); + } + } + + internal static string Cooking_sectors { + get { + return ResourceManager.GetString("Cooking_sectors", resourceCulture); + } + } + + internal static string Apridisk_Name { + get { + return ResourceManager.GetString("Apridisk_Name", resourceCulture); + } + } + + internal static string Enable_Apridisk_compression { + get { + return ResourceManager.GetString("Enable_Apridisk_compression", resourceCulture); + } + } + + internal static string Found_deleted_record_at_0 { + get { + return ResourceManager.GetString("Found_deleted_record_at_0", resourceCulture); + } + } + + internal static string Found_comment_record_at_0 { + get { + return ResourceManager.GetString("Found_comment_record_at_0", resourceCulture); + } + } + + internal static string Comment_0 { + get { + return ResourceManager.GetString("Comment_0", resourceCulture); + } + } + + internal static string Found_creator_record_at_0 { + get { + return ResourceManager.GetString("Found_creator_record_at_0", resourceCulture); + } + } + + internal static string Creator_0 { + get { + return ResourceManager.GetString("Creator_0", resourceCulture); + } + } + + internal static string Found_compressed_sector_record_at_0_for_cylinder_1_head_2_sector_3 { + get { + return ResourceManager.GetString("Found_compressed_sector_record_at_0_for_cylinder_1_head_2_sector_3", resourceCulture); + } + } + + internal static string Found_uncompressed_sector_record_at_0_for_cylinder_1_head_2_sector_3 { + get { + return ResourceManager.GetString("Found_uncompressed_sector_record_at_0_for_cylinder_1_head_2_sector_3", resourceCulture); + } + } + + internal static string Found_0_cylinders_and_1_heads_with_a_maximum_sector_number_of_2 { + get { + return ResourceManager.GetString("Found_0_cylinders_and_1_heads_with_a_maximum_sector_number_of_2", resourceCulture); + } + } + + internal static string Found_a_minimum_of_0_bytes_per_sector { + get { + return ResourceManager.GetString("Found_a_minimum_of_0_bytes_per_sector", resourceCulture); + } + } + + internal static string Found_a_minimum_of_0_sectors_per_track { + get { + return ResourceManager.GetString("Found_a_minimum_of_0_sectors_per_track", resourceCulture); + } + } + + internal static string Sector_address_not_found { + get { + return ResourceManager.GetString("Sector_address_not_found", resourceCulture); + } + } + + internal static string BlindWrite4_Name { + get { + return ResourceManager.GetString("BlindWrite4_Name", resourceCulture); + } + } + + internal static string Data_file_0_not_found { + get { + return ResourceManager.GetString("Data_file_0_not_found", resourceCulture); + } + } + + internal static string Unable_to_find_data_file { + get { + return ResourceManager.GetString("Unable_to_find_data_file", resourceCulture); + } + } + + internal static string BlindWrite_image_describes_a_disc_of_type_0 { + get { + return ResourceManager.GetString("BlindWrite_image_describes_a_disc_of_type_0", resourceCulture); + } + } + + internal static string BlindWrite_comments_0 { + get { + return ResourceManager.GetString("BlindWrite_comments_0", resourceCulture); + } + } + + internal static string BlindWrite5_Name { + get { + return ResourceManager.GetString("BlindWrite5_Name", resourceCulture); + } + } + + internal static string mode_page_2A_0 { + get { + return ResourceManager.GetString("mode_page_2A_0", resourceCulture); + } + } + + internal static string PMA_0 { + get { + return ResourceManager.GetString("PMA_0", resourceCulture); + } + } + + internal static string PFI_0 { + get { + return ResourceManager.GetString("PFI_0", resourceCulture); + } + } + + internal static string Disc_information_0 { + get { + return ResourceManager.GetString("Disc_information_0", resourceCulture); + } + } + + internal static string Data_path_0 { + get { + return ResourceManager.GetString("Data_path_0", resourceCulture); + } + } + + internal static string Correctly_arrived_end_of_image { + get { + return ResourceManager.GetString("Correctly_arrived_end_of_image", resourceCulture); + } + } + + internal static string BlindWrite5_image_ends_after_expected_position_Probably_new_version_with_different_data_Errors_may_occur { + get { + return ResourceManager.GetString("BlindWrite5_image_ends_after_expected_position_Probably_new_version_with_differen" + + "t_data_Errors_may_occur", resourceCulture); + } + } + + internal static string Cannot_find_data_file_0 { + get { + return ResourceManager.GetString("Cannot_find_data_file_0", resourceCulture); + } + } + + internal static string BlindWrite5_found_unknown_subchannel_size_0 { + get { + return ResourceManager.GetString("BlindWrite5_found_unknown_subchannel_size_0", resourceCulture); + } + } + + internal static string Building_maps { + get { + return ResourceManager.GetString("Building_maps", resourceCulture); + } + } + + internal static string Could_not_find_image_for_track_0 { + get { + return ResourceManager.GetString("Could_not_find_image_for_track_0", resourceCulture); + } + } + + internal static string Partition_ending_sector_0 { + get { + return ResourceManager.GetString("Partition_ending_sector_0", resourceCulture); + } + } + + internal static string printing_track_map { + get { + return ResourceManager.GetString("printing_track_map", resourceCulture); + } + } + + internal static string Track_description_0 { + get { + return ResourceManager.GetString("Track_description_0", resourceCulture); + } + } + + internal static string Track_type_0 { + get { + return ResourceManager.GetString("Track_type_0", resourceCulture); + } + } + + internal static string Track_starting_sector_0 { + get { + return ResourceManager.GetString("Track_starting_sector_0", resourceCulture); + } + } + + internal static string Track_ending_sector_0 { + get { + return ResourceManager.GetString("Track_ending_sector_0", resourceCulture); + } + } + + internal static string TOC_len_0 { + get { + return ResourceManager.GetString("TOC_len_0", resourceCulture); + } + } + + internal static string Blu_Name { + get { + return ResourceManager.GetString("Blu_Name", resourceCulture); + } + } + + internal static string BLU_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("BLU_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string AtariLynx_Name { + get { + return ResourceManager.GetString("AtariLynx_Name", resourceCulture); + } + } + + internal static string Name_0 { + get { + return ResourceManager.GetString("Name_0", resourceCulture); + } + } + + internal static string Manufacturer_0 { + get { + return ResourceManager.GetString("Manufacturer_0", resourceCulture); + } + } + + internal static string Bank_zero_size_0_pages_1_bytes { + get { + return ResourceManager.GetString("Bank_zero_size_0_pages_1_bytes", resourceCulture); + } + } + + internal static string Bank_one_size_0_pages_1_bytes { + get { + return ResourceManager.GetString("Bank_one_size_0_pages_1_bytes", resourceCulture); + } + } + + internal static string Rotation_0 { + get { + return ResourceManager.GetString("Rotation_0", resourceCulture); + } + } + + internal static string No_image_has_been_opened { + get { + return ResourceManager.GetString("No_image_has_been_opened", resourceCulture); + } + } + + internal static string Cannot_create_an_opened_image { + get { + return ResourceManager.GetString("Cannot_create_an_opened_image", resourceCulture); + } + } + + internal static string The_requested_position_is_out_of_range { + get { + return ResourceManager.GetString("The_requested_position_is_out_of_range", resourceCulture); + } + } + + internal static string Buffer_must_not_be_null { + get { + return ResourceManager.GetString("Buffer_must_not_be_null", resourceCulture); + } + } + + internal static string GameBoy_Name { + get { + return ResourceManager.GetString("GameBoy_Name", resourceCulture); + } + } + + internal static string Requires_Game_Boy_Color { + get { + return ResourceManager.GetString("Requires_Game_Boy_Color", resourceCulture); + } + } + + internal static string Contains_features_for_Game_Boy_Color { + get { + return ResourceManager.GetString("Contains_features_for_Game_Boy_Color", resourceCulture); + } + } + + internal static string Contains_features_for_Super_Game_Boy { + get { + return ResourceManager.GetString("Contains_features_for_Super_Game_Boy", resourceCulture); + } + } + + internal static string Region_0 { + get { + return ResourceManager.GetString("Region_0", resourceCulture); + } + } + + internal static string Japan { + get { + return ResourceManager.GetString("Japan", resourceCulture); + } + } + + internal static string World { + get { + return ResourceManager.GetString("World", resourceCulture); + } + } + + internal static string Cartridge_type_0 { + get { + return ResourceManager.GetString("Cartridge_type_0", resourceCulture); + } + } + + internal static string ROM_size_0_bytes { + get { + return ResourceManager.GetString("ROM_size_0_bytes", resourceCulture); + } + } + + internal static string Save_RAM_size_0_bytes { + get { + return ResourceManager.GetString("Save_RAM_size_0_bytes", resourceCulture); + } + } + + internal static string Licensee_0 { + get { + return ResourceManager.GetString("Licensee_0", resourceCulture); + } + } + + internal static string Revision_0 { + get { + return ResourceManager.GetString("Revision_0", resourceCulture); + } + } + + internal static string Header_checksum_0 { + get { + return ResourceManager.GetString("Header_checksum_0", resourceCulture); + } + } + + internal static string Checksum_0_X4 { + get { + return ResourceManager.GetString("Checksum_0_X4", resourceCulture); + } + } + + internal static string none_licensee { + get { + return ResourceManager.GetString("none_licensee", resourceCulture); + } + } + + internal static string Unknown_licensee { + get { + return ResourceManager.GetString("Unknown_licensee", resourceCulture); + } + } + + internal static string GBC_see_above { + get { + return ResourceManager.GetString("GBC_see_above", resourceCulture); + } + } + + internal static string ROM_only { + get { + return ResourceManager.GetString("ROM_only", resourceCulture); + } + } + + internal static string ROM_and_MBC1 { + get { + return ResourceManager.GetString("ROM_and_MBC1", resourceCulture); + } + } + + internal static string ROM_MBC1_and_RAM { + get { + return ResourceManager.GetString("ROM_MBC1_and_RAM", resourceCulture); + } + } + + internal static string ROM_MBC1_RAM_and_battery { + get { + return ResourceManager.GetString("ROM_MBC1_RAM_and_battery", resourceCulture); + } + } + + internal static string ROM_and_MBC2 { + get { + return ResourceManager.GetString("ROM_and_MBC2", resourceCulture); + } + } + + internal static string ROM_MBC2_and_battery { + get { + return ResourceManager.GetString("ROM_MBC2_and_battery", resourceCulture); + } + } + + internal static string ROM_and_RAM { + get { + return ResourceManager.GetString("ROM_and_RAM", resourceCulture); + } + } + + internal static string ROM_RAM_and_battery { + get { + return ResourceManager.GetString("ROM_RAM_and_battery", resourceCulture); + } + } + + internal static string ROM_and_MMM01 { + get { + return ResourceManager.GetString("ROM_and_MMM01", resourceCulture); + } + } + + internal static string ROM_MMM01_and_RAM { + get { + return ResourceManager.GetString("ROM_MMM01_and_RAM", resourceCulture); + } + } + + internal static string ROM_MMM01_RAM_and_battery { + get { + return ResourceManager.GetString("ROM_MMM01_RAM_and_battery", resourceCulture); + } + } + + internal static string ROM_MBC3_timer_and_battery { + get { + return ResourceManager.GetString("ROM_MBC3_timer_and_battery", resourceCulture); + } + } + + internal static string ROM_MBC3_RAM_timer_and_battery { + get { + return ResourceManager.GetString("ROM_MBC3_RAM_timer_and_battery", resourceCulture); + } + } + + internal static string ROM_and_MBC3 { + get { + return ResourceManager.GetString("ROM_and_MBC3", resourceCulture); + } + } + + internal static string ROM_MBC3_and_RAM { + get { + return ResourceManager.GetString("ROM_MBC3_and_RAM", resourceCulture); + } + } + + internal static string ROM_MBC3_RAM_and_battery { + get { + return ResourceManager.GetString("ROM_MBC3_RAM_and_battery", resourceCulture); + } + } + + internal static string ROM_and_MBC5 { + get { + return ResourceManager.GetString("ROM_and_MBC5", resourceCulture); + } + } + + internal static string ROM_MBC5_and_RAM { + get { + return ResourceManager.GetString("ROM_MBC5_and_RAM", resourceCulture); + } + } + + internal static string ROM_MBC5_RAM_and_battery { + get { + return ResourceManager.GetString("ROM_MBC5_RAM_and_battery", resourceCulture); + } + } + + internal static string ROM_MBC5_and_vibration_motor { + get { + return ResourceManager.GetString("ROM_MBC5_and_vibration_motor", resourceCulture); + } + } + + internal static string ROM_MBC5_RAM_and_vibration_motor { + get { + return ResourceManager.GetString("ROM_MBC5_RAM_and_vibration_motor", resourceCulture); + } + } + + internal static string ROM_MBC5_RAM_battery_and_vibration_motor { + get { + return ResourceManager.GetString("ROM_MBC5_RAM_battery_and_vibration_motor", resourceCulture); + } + } + + internal static string ROM_and_MBC6 { + get { + return ResourceManager.GetString("ROM_and_MBC6", resourceCulture); + } + } + + internal static string ROM_MBC7_RAM_battery_light_sensor_and_vibration_motor { + get { + return ResourceManager.GetString("ROM_MBC7_RAM_battery_light_sensor_and_vibration_motor", resourceCulture); + } + } + + internal static string Pocket_Camera { + get { + return ResourceManager.GetString("Pocket_Camera", resourceCulture); + } + } + + internal static string ROM_and_TAMA5 { + get { + return ResourceManager.GetString("ROM_and_TAMA5", resourceCulture); + } + } + + internal static string ROM_and_HuC_3 { + get { + return ResourceManager.GetString("ROM_and_HuC_3", resourceCulture); + } + } + + internal static string ROM_and_HuC_1 { + get { + return ResourceManager.GetString("ROM_and_HuC_1", resourceCulture); + } + } + + internal static string Unknown_cartridge_type { + get { + return ResourceManager.GetString("Unknown_cartridge_type", resourceCulture); + } + } + + internal static string GameBoyAdvance_Name { + get { + return ResourceManager.GetString("GameBoyAdvance_Name", resourceCulture); + } + } + + internal static string Device_type_0 { + get { + return ResourceManager.GetString("Device_type_0", resourceCulture); + } + } + + internal static string Console_type_0 { + get { + return ResourceManager.GetString("Console_type_0", resourceCulture); + } + } + + internal static string Product_code_AGB_0 { + get { + return ResourceManager.GetString("Product_code_AGB_0", resourceCulture); + } + } + + internal static string Maker_code_0 { + get { + return ResourceManager.GetString("Maker_code_0", resourceCulture); + } + } + + internal static string MasterSystem_Name { + get { + return ResourceManager.GetString("MasterSystem_Name", resourceCulture); + } + } + + internal static string Product_code_0 { + get { + return ResourceManager.GetString("Product_code_0", resourceCulture); + } + } + + internal static string Master_System { + get { + return ResourceManager.GetString("Master_System", resourceCulture); + } + } + + internal static string Export { + get { + return ResourceManager.GetString("Export", resourceCulture); + } + } + + internal static string Game_Gear { + get { + return ResourceManager.GetString("Game_Gear", resourceCulture); + } + } + + internal static string International { + get { + return ResourceManager.GetString("International", resourceCulture); + } + } + + internal static string Unknown_region { + get { + return ResourceManager.GetString("Unknown_region", resourceCulture); + } + } + + internal static string Nes_Name { + get { + return ResourceManager.GetString("Nes_Name", resourceCulture); + } + } + + internal static string PRG_ROM_size_0_bytes { + get { + return ResourceManager.GetString("PRG_ROM_size_0_bytes", resourceCulture); + } + } + + internal static string CHR_ROM_size_0_bytes { + get { + return ResourceManager.GetString("CHR_ROM_size_0_bytes", resourceCulture); + } + } + + internal static string Trainer_size_0_bytes { + get { + return ResourceManager.GetString("Trainer_size_0_bytes", resourceCulture); + } + } + + internal static string Mapper_0 { + get { + return ResourceManager.GetString("Mapper_0", resourceCulture); + } + } + + internal static string Has_battery_backed_RAM { + get { + return ResourceManager.GetString("Has_battery_backed_RAM", resourceCulture); + } + } + + internal static string Uses_four_screen_VRAM { + get { + return ResourceManager.GetString("Uses_four_screen_VRAM", resourceCulture); + } + } + + internal static string Uses_vertical_mirroring { + get { + return ResourceManager.GetString("Uses_vertical_mirroring", resourceCulture); + } + } + + internal static string Uses_horizontal_mirroring { + get { + return ResourceManager.GetString("Uses_horizontal_mirroring", resourceCulture); + } + } + + internal static string VS_Unisystem_game { + get { + return ResourceManager.GetString("VS_Unisystem_game", resourceCulture); + } + } + + internal static string PlayChoice_10_game { + get { + return ResourceManager.GetString("PlayChoice_10_game", resourceCulture); + } + } + + internal static string INST_ROM_size_0_bytes { + get { + return ResourceManager.GetString("INST_ROM_size_0_bytes", resourceCulture); + } + } + + internal static string PROM_size_0_bytes { + get { + return ResourceManager.GetString("PROM_size_0_bytes", resourceCulture); + } + } + + internal static string VR_Technology_VT01 { + get { + return ResourceManager.GetString("VR_Technology_VT01", resourceCulture); + } + } + + internal static string VR_Technology_VT02 { + get { + return ResourceManager.GetString("VR_Technology_VT02", resourceCulture); + } + } + + internal static string VR_Technology_VT03 { + get { + return ResourceManager.GetString("VR_Technology_VT03", resourceCulture); + } + } + + internal static string VR_Technology_VT09 { + get { + return ResourceManager.GetString("VR_Technology_VT09", resourceCulture); + } + } + + internal static string VR_Technology_VT32 { + get { + return ResourceManager.GetString("VR_Technology_VT32", resourceCulture); + } + } + + internal static string VR_Technology_VT369 { + get { + return ResourceManager.GetString("VR_Technology_VT369", resourceCulture); + } + } + + internal static string Nintendo64_Name { + get { + return ResourceManager.GetString("Nintendo64_Name", resourceCulture); + } + } + + internal static string Cartridge_ID_0 { + get { + return ResourceManager.GetString("Cartridge_ID_0", resourceCulture); + } + } + + internal static string Version_0_1 { + get { + return ResourceManager.GetString("Version_0_1", resourceCulture); + } + } + + internal static string CRC1_0 { + get { + return ResourceManager.GetString("CRC1_0", resourceCulture); + } + } + + internal static string CRC2_0 { + get { + return ResourceManager.GetString("CRC2_0", resourceCulture); + } + } + + internal static string Beta { + get { + return ResourceManager.GetString("Beta", resourceCulture); + } + } + + internal static string Asia_NTSC { + get { + return ResourceManager.GetString("Asia_NTSC", resourceCulture); + } + } + + internal static string Brazil { + get { + return ResourceManager.GetString("Brazil", resourceCulture); + } + } + + internal static string China { + get { + return ResourceManager.GetString("China", resourceCulture); + } + } + + internal static string Germany { + get { + return ResourceManager.GetString("Germany", resourceCulture); + } + } + + internal static string North_America { + get { + return ResourceManager.GetString("North_America", resourceCulture); + } + } + + internal static string France { + get { + return ResourceManager.GetString("France", resourceCulture); + } + } + + internal static string Gateway_64_NTSC { + get { + return ResourceManager.GetString("Gateway_64_NTSC", resourceCulture); + } + } + + internal static string Netherlands { + get { + return ResourceManager.GetString("Netherlands", resourceCulture); + } + } + + internal static string Italy { + get { + return ResourceManager.GetString("Italy", resourceCulture); + } + } + + internal static string Korea { + get { + return ResourceManager.GetString("Korea", resourceCulture); + } + } + + internal static string Gateway_64_PAL { + get { + return ResourceManager.GetString("Gateway_64_PAL", resourceCulture); + } + } + + internal static string Canada { + get { + return ResourceManager.GetString("Canada", resourceCulture); + } + } + + internal static string Europe { + get { + return ResourceManager.GetString("Europe", resourceCulture); + } + } + + internal static string Spain { + get { + return ResourceManager.GetString("Spain", resourceCulture); + } + } + + internal static string Australia { + get { + return ResourceManager.GetString("Australia", resourceCulture); + } + } + + internal static string Scandinavia { + get { + return ResourceManager.GetString("Scandinavia", resourceCulture); + } + } + + internal static string Unknown_country { + get { + return ResourceManager.GetString("Unknown_country", resourceCulture); + } + } + + internal static string SegaMegaDrive_Name { + get { + return ResourceManager.GetString("SegaMegaDrive_Name", resourceCulture); + } + } + + internal static string System_type_0 { + get { + return ResourceManager.GetString("System_type_0", resourceCulture); + } + } + + internal static string Copyright_string_0 { + get { + return ResourceManager.GetString("Copyright_string_0", resourceCulture); + } + } + + internal static string Domestic_title_0 { + get { + return ResourceManager.GetString("Domestic_title_0", resourceCulture); + } + } + + internal static string Overseas_title_0 { + get { + return ResourceManager.GetString("Overseas_title_0", resourceCulture); + } + } + + internal static string Serial_number_0 { + get { + return ResourceManager.GetString("Serial_number_0", resourceCulture); + } + } + + internal static string Devices_supported_0 { + get { + return ResourceManager.GetString("Devices_supported_0", resourceCulture); + } + } + + internal static string ROM_starts_at_0_and_ends_at_1_2_bytes { + get { + return ResourceManager.GetString("ROM_starts_at_0_and_ends_at_1_2_bytes", resourceCulture); + } + } + + internal static string RAM_starts_at_0_and_ends_at_1_2_bytes { + get { + return ResourceManager.GetString("RAM_starts_at_0_and_ends_at_1_2_bytes", resourceCulture); + } + } + + internal static string Extra_RAM_present { + get { + return ResourceManager.GetString("Extra_RAM_present", resourceCulture); + } + } + + internal static string Extra_RAM_uses_16_bit_access { + get { + return ResourceManager.GetString("Extra_RAM_uses_16_bit_access", resourceCulture); + } + } + + internal static string Extra_RAM_uses_8_bit_access_even_addresses { + get { + return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_even_addresses", resourceCulture); + } + } + + internal static string Extra_RAM_uses_8_bit_access_odd_addresses { + get { + return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_odd_addresses", resourceCulture); + } + } + + internal static string Extra_RAM_uses_16_bit_access_and_persists_when_powered_off { + get { + return ResourceManager.GetString("Extra_RAM_uses_16_bit_access_and_persists_when_powered_off", resourceCulture); + } + } + + internal static string Extra_RAM_uses_8_bit_access_even_addresses_and_persists_when_powered_off { + get { + return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_even_addresses_and_persists_when_powered_off", resourceCulture); + } + } + + internal static string Extra_RAM_uses_8_bit_access_odd_addresses_and_persists_when_powered_off { + get { + return ResourceManager.GetString("Extra_RAM_uses_8_bit_access_odd_addresses_and_persists_when_powered_off", resourceCulture); + } + } + + internal static string Extra_RAM_is_of_unknown_type_0 { + get { + return ResourceManager.GetString("Extra_RAM_is_of_unknown_type_0", resourceCulture); + } + } + + internal static string Extra_RAM_starts_at_0_and_ends_at_1_2_bytes { + get { + return ResourceManager.GetString("Extra_RAM_starts_at_0_and_ends_at_1_2_bytes", resourceCulture); + } + } + + internal static string Extra_RAM_not_present { + get { + return ResourceManager.GetString("Extra_RAM_not_present", resourceCulture); + } + } + + internal static string Modem_support_0 { + get { + return ResourceManager.GetString("Modem_support_0", resourceCulture); + } + } + + internal static string Region_support_0 { + get { + return ResourceManager.GetString("Region_support_0", resourceCulture); + } + } + + internal static string SuperNintendo_Name { + get { + return ResourceManager.GetString("SuperNintendo_Name", resourceCulture); + } + } + + internal static string Game_code_0 { + get { + return ResourceManager.GetString("Game_code_0", resourceCulture); + } + } + + internal static string Special_revision_0 { + get { + return ResourceManager.GetString("Special_revision_0", resourceCulture); + } + } + + internal static string Header_checksum_0_X4 { + get { + return ResourceManager.GetString("Header_checksum_0_X4", resourceCulture); + } + } + + internal static string Header_checksum_complement_0 { + get { + return ResourceManager.GetString("Header_checksum_complement_0", resourceCulture); + } + } + + internal static string RAM_size_0_bytes { + get { + return ResourceManager.GetString("RAM_size_0_bytes", resourceCulture); + } + } + + internal static string Flash_size_0_bytes { + get { + return ResourceManager.GetString("Flash_size_0_bytes", resourceCulture); + } + } + + internal static string Expansion_RAM_size_0_bytes { + get { + return ResourceManager.GetString("Expansion_RAM_size_0_bytes", resourceCulture); + } + } + + internal static string ROM_speed_0 { + get { + return ResourceManager.GetString("ROM_speed_0", resourceCulture); + } + } + + internal static string Bank_size_0_bytes { + get { + return ResourceManager.GetString("Bank_size_0_bytes", resourceCulture); + } + } + + internal static string Cartridge_chip_set_0 { + get { + return ResourceManager.GetString("Cartridge_chip_set_0", resourceCulture); + } + } + + internal static string Coprocessor_0 { + get { + return ResourceManager.GetString("Coprocessor_0", resourceCulture); + } + } + + internal static string None_coprocessor { + get { + return ResourceManager.GetString("None_coprocessor", resourceCulture); + } + } + + internal static string Unknown_coprocessor { + get { + return ResourceManager.GetString("Unknown_coprocessor", resourceCulture); + } + } + + internal static string Other_coprocessor { + get { + return ResourceManager.GetString("Other_coprocessor", resourceCulture); + } + } + + internal static string ROM { + get { + return ResourceManager.GetString("ROM", resourceCulture); + } + } + + internal static string ROM_and_coprocessor { + get { + return ResourceManager.GetString("ROM_and_coprocessor", resourceCulture); + } + } + + internal static string ROM_RAM_and_coprocessor { + get { + return ResourceManager.GetString("ROM_RAM_and_coprocessor", resourceCulture); + } + } + + internal static string ROM_RAM_battery_and_coprocessor { + get { + return ResourceManager.GetString("ROM_RAM_battery_and_coprocessor", resourceCulture); + } + } + + internal static string ROM_battery_and_coprocessor { + get { + return ResourceManager.GetString("ROM_battery_and_coprocessor", resourceCulture); + } + } + + internal static string ROM_RAM_battery_coprocessor_and_RTC { + get { + return ResourceManager.GetString("ROM_RAM_battery_coprocessor_and_RTC", resourceCulture); + } + } + + internal static string Unknown_chipset { + get { + return ResourceManager.GetString("Unknown_chipset", resourceCulture); + } + } + + internal static string USA_and_Canada { + get { + return ResourceManager.GetString("USA_and_Canada", resourceCulture); + } + } + + internal static string Europe_Oceania_Asia { + get { + return ResourceManager.GetString("Europe_Oceania_Asia", resourceCulture); + } + } + + internal static string Sweden_Scandinavia { + get { + return ResourceManager.GetString("Sweden_Scandinavia", resourceCulture); + } + } + + internal static string Finland { + get { + return ResourceManager.GetString("Finland", resourceCulture); + } + } + + internal static string Denmark { + get { + return ResourceManager.GetString("Denmark", resourceCulture); + } + } + + internal static string Germany_Austria_Switzerland { + get { + return ResourceManager.GetString("Germany_Austria_Switzerland", resourceCulture); + } + } + + internal static string China_Hong_Kong { + get { + return ResourceManager.GetString("China_Hong_Kong", resourceCulture); + } + } + + internal static string Indonesia { + get { + return ResourceManager.GetString("Indonesia", resourceCulture); + } + } + + internal static string South_Korea { + get { + return ResourceManager.GetString("South_Korea", resourceCulture); + } + } + + internal static string Unknown_manufacturer { + get { + return ResourceManager.GetString("Unknown_manufacturer", resourceCulture); + } + } + + internal static string Cdrdao_Name { + get { + return ResourceManager.GetString("Cdrdao_Name", resourceCulture); + } + } + + internal static string Exception_trying_to_identify_image_file_0 { + get { + return ResourceManager.GetString("Exception_trying_to_identify_image_file_0", resourceCulture); + } + } + + internal static string Exception_0 { + get { + return ResourceManager.GetString("Exception_0", resourceCulture); + } + } + + internal static string Stack_trace_0 { + get { + return ResourceManager.GetString("Stack_trace_0", resourceCulture); + } + } + + internal static string Not_a_CDRDAO_TOC_or_TOC_type_not_in_line_0 { + get { + return ResourceManager.GetString("Not_a_CDRDAO_TOC_or_TOC_type_not_in_line_0", resourceCulture); + } + } + + internal static string Found_comment_1_at_line_0 { + get { + return ResourceManager.GetString("Found_comment_1_at_line_0", resourceCulture); + } + } + + internal static string Found_1_at_line_0 { + get { + return ResourceManager.GetString("Found_1_at_line_0", resourceCulture); + } + } + + internal static string Found_CATALOG_1_at_line_0 { + get { + return ResourceManager.GetString("Found_CATALOG_1_at_line_0", resourceCulture); + } + } + + internal static string Found_TRACK_type_1_with_no_subchannel_at_line_0 { + get { + return ResourceManager.GetString("Found_TRACK_type_1_with_no_subchannel_at_line_0", resourceCulture); + } + } + + internal static string Found_TRACK_type_1_subchannel_2_at_line_0 { + get { + return ResourceManager.GetString("Found_TRACK_type_1_subchannel_2_at_line_0", resourceCulture); + } + } + + internal static string Track_mode_0_is_unsupported { + get { + return ResourceManager.GetString("Track_mode_0_is_unsupported", resourceCulture); + } + } + + internal static string Track_subchannel_mode_0_is_unsupported { + get { + return ResourceManager.GetString("Track_subchannel_mode_0_is_unsupported", resourceCulture); + } + } + + internal static string Found_1_COPY_at_line_0 { + get { + return ResourceManager.GetString("Found_1_COPY_at_line_0", resourceCulture); + } + } + + internal static string Found_1_PRE_EMPHASIS_at_line_0 { + get { + return ResourceManager.GetString("Found_1_PRE_EMPHASIS_at_line_0", resourceCulture); + } + } + + internal static string Found_1_CHANNEL_AUDIO_at_line_0 { + get { + return ResourceManager.GetString("Found_1_CHANNEL_AUDIO_at_line_0", resourceCulture); + } + } + + internal static string Found_ISRC_1_at_line_0 { + get { + return ResourceManager.GetString("Found_ISRC_1_at_line_0", resourceCulture); + } + } + + internal static string Found_INDEX_1_at_line_0 { + get { + return ResourceManager.GetString("Found_INDEX_1_at_line_0", resourceCulture); + } + } + + internal static string Found_START_1_at_line_0 { + get { + return ResourceManager.GetString("Found_START_1_at_line_0", resourceCulture); + } + } + + internal static string Found_PREGAP_1_at_line_0 { + get { + return ResourceManager.GetString("Found_PREGAP_1_at_line_0", resourceCulture); + } + } + + internal static string Found_ZERO_1_at_line_0 { + get { + return ResourceManager.GetString("Found_ZERO_1_at_line_0", resourceCulture); + } + } + + internal static string Found_SILENCE_1_at_line_0 { + get { + return ResourceManager.GetString("Found_SILENCE_1_at_line_0", resourceCulture); + } + } + + internal static string Found_AUDIOFILE_1_at_line_0 { + get { + return ResourceManager.GetString("Found_AUDIOFILE_1_at_line_0", resourceCulture); + } + } + + internal static string Found_DATAFILE_1_at_line_0 { + get { + return ResourceManager.GetString("Found_DATAFILE_1_at_line_0", resourceCulture); + } + } + + internal static string Found_TITLE_1_at_line_0 { + get { + return ResourceManager.GetString("Found_TITLE_1_at_line_0", resourceCulture); + } + } + + internal static string Found_PERFORMER_1_at_line_0 { + get { + return ResourceManager.GetString("Found_PERFORMER_1_at_line_0", resourceCulture); + } + } + + internal static string Found_SONGWRITER_1_at_line_0 { + get { + return ResourceManager.GetString("Found_SONGWRITER_1_at_line_0", resourceCulture); + } + } + + internal static string Found_COMPOSER_1_at_line_0 { + get { + return ResourceManager.GetString("Found_COMPOSER_1_at_line_0", resourceCulture); + } + } + + internal static string Found_ARRANGER_1_at_line_0 { + get { + return ResourceManager.GetString("Found_ARRANGER_1_at_line_0", resourceCulture); + } + } + + internal static string Found_MESSAGE_1_at_line_0 { + get { + return ResourceManager.GetString("Found_MESSAGE_1_at_line_0", resourceCulture); + } + } + + internal static string Found_DISC_ID_1_at_line_0 { + get { + return ResourceManager.GetString("Found_DISC_ID_1_at_line_0", resourceCulture); + } + } + + internal static string Found_UPC_EAN_1_at_line_0 { + get { + return ResourceManager.GetString("Found_UPC_EAN_1_at_line_0", resourceCulture); + } + } + + internal static string Disc_image_parsing_results { + get { + return ResourceManager.GetString("Disc_image_parsing_results", resourceCulture); + } + } + + internal static string Disc_CD_TEXT { + get { + return ResourceManager.GetString("Disc_CD_TEXT", resourceCulture); + } + } + + internal static string Arranger_is_not_set { + get { + return ResourceManager.GetString("Arranger_is_not_set", resourceCulture); + } + } + + internal static string Arranger_0 { + get { + return ResourceManager.GetString("Arranger_0", resourceCulture); + } + } + + internal static string Composer_is_not_set { + get { + return ResourceManager.GetString("Composer_is_not_set", resourceCulture); + } + } + + internal static string Composer_0 { + get { + return ResourceManager.GetString("Composer_0", resourceCulture); + } + } + + internal static string Performer_is_not_set { + get { + return ResourceManager.GetString("Performer_is_not_set", resourceCulture); + } + } + + internal static string Performer_0 { + get { + return ResourceManager.GetString("Performer_0", resourceCulture); + } + } + + internal static string Songwriter_is_not_set { + get { + return ResourceManager.GetString("Songwriter_is_not_set", resourceCulture); + } + } + + internal static string Songwriter_0 { + get { + return ResourceManager.GetString("Songwriter_0", resourceCulture); + } + } + + internal static string Title_is_not_set { + get { + return ResourceManager.GetString("Title_is_not_set", resourceCulture); + } + } + + internal static string Title_0 { + get { + return ResourceManager.GetString("Title_0", resourceCulture); + } + } + + internal static string Disc_information { + get { + return ResourceManager.GetString("Disc_information", resourceCulture); + } + } + + internal static string Guessed_disk_type_0 { + get { + return ResourceManager.GetString("Guessed_disk_type_0", resourceCulture); + } + } + + internal static string Barcode_not_set { + get { + return ResourceManager.GetString("Barcode_not_set", resourceCulture); + } + } + + internal static string Barcode_0 { + get { + return ResourceManager.GetString("Barcode_0", resourceCulture); + } + } + + internal static string Disc_ID_not_set { + get { + return ResourceManager.GetString("Disc_ID_not_set", resourceCulture); + } + } + + internal static string Disc_ID_0 { + get { + return ResourceManager.GetString("Disc_ID_0", resourceCulture); + } + } + + internal static string MCN_not_set { + get { + return ResourceManager.GetString("MCN_not_set", resourceCulture); + } + } + + internal static string MCN_0 { + get { + return ResourceManager.GetString("MCN_0", resourceCulture); + } + } + + internal static string Comment_not_set { + get { + return ResourceManager.GetString("Comment_not_set", resourceCulture); + } + } + + internal static string Track_information { + get { + return ResourceManager.GetString("Track_information", resourceCulture); + } + } + + internal static string Disc_contains_0_tracks { + get { + return ResourceManager.GetString("Disc_contains_0_tracks", resourceCulture); + } + } + + internal static string Track_0_information { + get { + return ResourceManager.GetString("Track_0_information", resourceCulture); + } + } + + internal static string _0_bytes_per_sector { + get { + return ResourceManager.GetString("_0_bytes_per_sector", resourceCulture); + } + } + + internal static string Pregap_0_sectors { + get { + return ResourceManager.GetString("Pregap_0_sectors", resourceCulture); + } + } + + internal static string Data_0_sectors_starting_at_sector_1 { + get { + return ResourceManager.GetString("Data_0_sectors_starting_at_sector_1", resourceCulture); + } + } + + internal static string Postgap_0_sectors { + get { + return ResourceManager.GetString("Postgap_0_sectors", resourceCulture); + } + } + + internal static string Track_is_flagged_as_quadraphonic { + get { + return ResourceManager.GetString("Track_is_flagged_as_quadraphonic", resourceCulture); + } + } + + internal static string Track_allows_digital_copy { + get { + return ResourceManager.GetString("Track_allows_digital_copy", resourceCulture); + } + } + + internal static string Track_has_pre_emphasis_applied { + get { + return ResourceManager.GetString("Track_has_pre_emphasis_applied", resourceCulture); + } + } + + internal static string Track_resides_in_file_0_type_defined_as_1_starting_at_byte_2 { + get { + return ResourceManager.GetString("Track_resides_in_file_0_type_defined_as_1_starting_at_byte_2", resourceCulture); + } + } + + internal static string Indexes { + get { + return ResourceManager.GetString("Indexes", resourceCulture); + } + } + + internal static string Index_0_starts_at_sector_1 { + get { + return ResourceManager.GetString("Index_0_starts_at_sector_1", resourceCulture); + } + } + + internal static string ISRC_is_not_set { + get { + return ResourceManager.GetString("ISRC_is_not_set", resourceCulture); + } + } + + internal static string ISRC_0 { + get { + return ResourceManager.GetString("ISRC_0", resourceCulture); + } + } + + internal static string Building_offset_map { + get { + return ResourceManager.GetString("Building_offset_map", resourceCulture); + } + } + + internal static string Unordered_tracks { + get { + return ResourceManager.GetString("Unordered_tracks", resourceCulture); + } + } + + internal static string CDRDAO_image_describes_a_disc_of_type_0 { + get { + return ResourceManager.GetString("CDRDAO_image_describes_a_disc_of_type_0", resourceCulture); + } + } + + internal static string CDRDAO_comments_0 { + get { + return ResourceManager.GetString("CDRDAO_comments_0", resourceCulture); + } + } + + internal static string Invalid_value_for_split_option { + get { + return ResourceManager.GetString("Invalid_value_for_split_option", resourceCulture); + } + } + + internal static string Separate_tracks_not_yet_implemented { + get { + return ResourceManager.GetString("Separate_tracks_not_yet_implemented", resourceCulture); + } + } + + internal static string Cant_find_file_containing_0 { + get { + return ResourceManager.GetString("Cant_find_file_containing_0", resourceCulture); + } + } + + internal static string Invalid_tracks_sent { + get { + return ResourceManager.GetString("Invalid_tracks_sent", resourceCulture); + } + } + + internal static string Unsupported_subchannel_type_0_for_track_1 { + get { + return ResourceManager.GetString("Unsupported_subchannel_type_0_for_track_1", resourceCulture); + } + } + + internal static string CdrWin_Name { + get { + return ResourceManager.GetString("CdrWin_Name", resourceCulture); + } + } + + internal static string Write_each_track_to_a_separate_file { + get { + return ResourceManager.GetString("Write_each_track_to_a_separate_file", resourceCulture); + } + } + + internal static string Found_TRACK_0_out_of_order_in_line_1 { + get { + return ResourceManager.GetString("Found_TRACK_0_out_of_order_in_line_1", resourceCulture); + } + } + + internal static string No_tracks_found { + get { + return ResourceManager.GetString("No_tracks_found", resourceCulture); + } + } + + internal static string Found_REM_CRC32_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_CRC32_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_MD5_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_MD5_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_SHA1_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_SHA1_at_line_0", resourceCulture); + } + } + + internal static string Found_CRC32_for_1_2_at_line_0 { + get { + return ResourceManager.GetString("Found_CRC32_for_1_2_at_line_0", resourceCulture); + } + } + + internal static string track { + get { + return ResourceManager.GetString("track", resourceCulture); + } + } + + internal static string Found_MD5_for_1_2_at_line_0 { + get { + return ResourceManager.GetString("Found_MD5_for_1_2_at_line_0", resourceCulture); + } + } + + internal static string gap { + get { + return ResourceManager.GetString("gap", resourceCulture); + } + } + + internal static string Found_SHA1_for_1_2_at_line_0 { + get { + return ResourceManager.GetString("Found_SHA1_for_1_2_at_line_0", resourceCulture); + } + } + + internal static string Found_unknown_hash_for_1_2_at_line_0_Please_report_this_disc_image { + get { + return ResourceManager.GetString("Found_unknown_hash_for_1_2_at_line_0_Please_report_this_disc_image", resourceCulture); + } + } + + internal static string Found_REM_METADATA_DUMP_EXTENT_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_METADATA_DUMP_EXTENT_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_METADATA_DIC_MEDIA_TYPE_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_METADATA_DIC_MEDIA_TYPE_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_METADATA_AARU_MEDIA_TYPE_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_METADATA_AARU_MEDIA_TYPE_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_ORIGINAL_MEDIA_TYPE_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_ORIGINAL_MEDIA_TYPE_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_SESSION_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_SESSION_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_SINGLE_DENSITY_AREA_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_SINGLE_DENSITY_AREA_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_HIGH_DENSITY_AREA_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_HIGH_DENSITY_AREA_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_MSF_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_MSF_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_LEAD_OUT_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_LEAD_OUT_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_Ripping_Tool_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_Ripping_Tool_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_Ripping_Tool_Version_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_Ripping_Tool_Version_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_DISC_HASHES_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_DISC_HASHES_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_Gap_Append_Method_1_2_HASHES_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_Gap_Append_Method_1_2_HASHES_at_line_0", resourceCulture); + } + } + + internal static string Found_REM_at_line_0 { + get { + return ResourceManager.GetString("Found_REM_at_line_0", resourceCulture); + } + } + + internal static string Found_ARRANGER_at_line_0 { + get { + return ResourceManager.GetString("Found_ARRANGER_at_line_0", resourceCulture); + } + } + + internal static string Found_UPC_EAN_at_line_0 { + get { + return ResourceManager.GetString("Found_UPC_EAN_at_line_0", resourceCulture); + } + } + + internal static string Found_barcode_field_in_incorrect_place_at_line_0 { + get { + return ResourceManager.GetString("Found_barcode_field_in_incorrect_place_at_line_0", resourceCulture); + } + } + + internal static string Found_CDTEXTFILE_at_line_0 { + get { + return ResourceManager.GetString("Found_CDTEXTFILE_at_line_0", resourceCulture); + } + } + + internal static string Found_CD_Text_file_field_in_incorrect_place_at_line_0 { + get { + return ResourceManager.GetString("Found_CD_Text_file_field_in_incorrect_place_at_line_0", resourceCulture); + } + } + + internal static string Found_COMPOSER_at_line_0 { + get { + return ResourceManager.GetString("Found_COMPOSER_at_line_0", resourceCulture); + } + } + + internal static string Found_DISC_ID_at_line_0 { + get { + return ResourceManager.GetString("Found_DISC_ID_at_line_0", resourceCulture); + } + } + + internal static string Found_CDDB_ID_field_in_incorrect_place_at_line_0 { + get { + return ResourceManager.GetString("Found_CDDB_ID_field_in_incorrect_place_at_line_0", resourceCulture); + } + } + + internal static string Found_FILE_at_line_0 { + get { + return ResourceManager.GetString("Found_FILE_at_line_0", resourceCulture); + } + } + + internal static string File_0_not_found { + get { + return ResourceManager.GetString("File_0_not_found", resourceCulture); + } + } + + internal static string File_0_found { + get { + return ResourceManager.GetString("File_0_found", resourceCulture); + } + } + + internal static string Unsupported_file_type_0 { + get { + return ResourceManager.GetString("Unsupported_file_type_0", resourceCulture); + } + } + + internal static string Unknown_file_type_0 { + get { + return ResourceManager.GetString("Unknown_file_type_0", resourceCulture); + } + } + + internal static string Found_FLAGS_at_line_0 { + get { + return ResourceManager.GetString("Found_FLAGS_at_line_0", resourceCulture); + } + } + + internal static string Found_FLAGS_field_in_incorrect_place_at_line_0 { + get { + return ResourceManager.GetString("Found_FLAGS_field_in_incorrect_place_at_line_0", resourceCulture); + } + } + + internal static string Found_GENRE_at_line_0 { + get { + return ResourceManager.GetString("Found_GENRE_at_line_0", resourceCulture); + } + } + + internal static string Found_INDEX_at_line_0 { + get { + return ResourceManager.GetString("Found_INDEX_at_line_0", resourceCulture); + } + } + + internal static string Found_INDEX_before_a_track_0 { + get { + return ResourceManager.GetString("Found_INDEX_before_a_track_0", resourceCulture); + } + } + + internal static string Found_INDEX_0_before_INDEX_00_or_INDEX_01 { + get { + return ResourceManager.GetString("Found_INDEX_0_before_INDEX_00_or_INDEX_01", resourceCulture); + } + } + + internal static string Sets_currentFile_offset_to_0 { + get { + return ResourceManager.GetString("Sets_currentFile_offset_to_0", resourceCulture); + } + } + + internal static string Found_ISRC_at_line_0 { + get { + return ResourceManager.GetString("Found_ISRC_at_line_0", resourceCulture); + } + } + + internal static string Found_ISRC_before_a_track_0 { + get { + return ResourceManager.GetString("Found_ISRC_before_a_track_0", resourceCulture); + } + } + + internal static string Found_CATALOG_at_line_0 { + get { + return ResourceManager.GetString("Found_CATALOG_at_line_0", resourceCulture); + } + } + + internal static string Found_CATALOG_field_in_incorrect_place_at_line_0 { + get { + return ResourceManager.GetString("Found_CATALOG_field_in_incorrect_place_at_line_0", resourceCulture); + } + } + + internal static string Found_PERFORMER_at_line_0 { + get { + return ResourceManager.GetString("Found_PERFORMER_at_line_0", resourceCulture); + } + } + + internal static string Found_POSTGAP_at_line_0 { + get { + return ResourceManager.GetString("Found_POSTGAP_at_line_0", resourceCulture); + } + } + + internal static string Found_POSTGAP_field_before_a_track_at_line_0 { + get { + return ResourceManager.GetString("Found_POSTGAP_field_before_a_track_at_line_0", resourceCulture); + } + } + + internal static string Found_PREGAP_at_line_0 { + get { + return ResourceManager.GetString("Found_PREGAP_at_line_0", resourceCulture); + } + } + + internal static string Found_SONGWRITER_at_line_0 { + get { + return ResourceManager.GetString("Found_SONGWRITER_at_line_0", resourceCulture); + } + } + + internal static string Found_PREGAP_field_before_a_track_at_line_0 { + get { + return ResourceManager.GetString("Found_PREGAP_field_before_a_track_at_line_0", resourceCulture); + } + } + + internal static string Found_TITLE_at_line_0 { + get { + return ResourceManager.GetString("Found_TITLE_at_line_0", resourceCulture); + } + } + + internal static string Found_TRACK_at_line_0 { + get { + return ResourceManager.GetString("Found_TRACK_at_line_0", resourceCulture); + } + } + + internal static string Found_TRACK_field_before_a_file_is_defined_at_line_0 { + get { + return ResourceManager.GetString("Found_TRACK_field_before_a_file_is_defined_at_line_0", resourceCulture); + } + } + + internal static string Setting_currentTrack_sequence_to_0 { + get { + return ResourceManager.GetString("Setting_currentTrack_sequence_to_0", resourceCulture); + } + } + + internal static string This_image_from_PowerISO_is_damaged_beyond_possible_recovery_Will_not_open { + get { + return ResourceManager.GetString("This_image_from_PowerISO_is_damaged_beyond_possible_recovery_Will_not_open", resourceCulture); + } + } + + internal static string Found_unknown_field_defined_at_line_0_1 { + get { + return ResourceManager.GetString("Found_unknown_field_defined_at_line_0_1", resourceCulture); + } + } + + internal static string The_data_files_are_not_correct_according_to_the_cuesheet_file_cannot_continue_with_this_file { + get { + return ResourceManager.GetString("The_data_files_are_not_correct_according_to_the_cuesheet_file_cannot_continue_wit" + + "h_this_file", resourceCulture); + } + } + + internal static string The_data_files_are_missing_a_pregap_or_hidden_track_contents_will_do_best_effort_to_make_the_rest_of_the_image_readable { + get { + return ResourceManager.GetString("The_data_files_are_missing_a_pregap_or_hidden_track_contents_will_do_best_effort_" + + "to_make_the_rest_of_the_image_readable", resourceCulture); } } - /// - /// Looks up a localized string similar to This image is most probably corrupted beyond repair. It is highly recommended to dump it with another software.. - /// internal static string This_image_is_most_probably_corrupted_beyond_repair_It_is_highly_recommended_to_dump_it_with_another_software { get { return ResourceManager.GetString("This_image_is_most_probably_corrupted_beyond_repair_It_is_highly_recommended_to_d" + @@ -7101,1732 +3339,2573 @@ namespace Aaru.Images { } } - /// - /// Looks up a localized string similar to This image needs the resource fork to work.. - /// - internal static string This_image_needs_the_resource_fork_to_work { + internal static string Genre_is_not_set { get { - return ResourceManager.GetString("This_image_needs_the_resource_fork_to_work", resourceCulture); + return ResourceManager.GetString("Genre_is_not_set", resourceCulture); } } - /// - /// Looks up a localized string similar to Title: {0}. - /// - internal static string Title_0 { + internal static string Genre_0 { get { - return ResourceManager.GetString("Title_0", resourceCulture); + return ResourceManager.GetString("Genre_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Title is not set.. - /// - internal static string Title_is_not_set { + internal static string CD_TEXT_binary_file_not_set { get { - return ResourceManager.GetString("Title_is_not_set", resourceCulture); + return ResourceManager.GetString("CD_TEXT_binary_file_not_set", resourceCulture); } } - /// - /// Looks up a localized string similar to TOC len {0}. - /// - internal static string TOC_len_0 { + internal static string CD_TEXT_binary_file_0 { get { - return ResourceManager.GetString("TOC_len_0", resourceCulture); + return ResourceManager.GetString("CD_TEXT_binary_file_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Too many cylinders.. - /// - internal static string Too_many_cylinders { + internal static string ISOBuster_disc_type_not_set { get { - return ResourceManager.GetString("Too_many_cylinders", resourceCulture); + return ResourceManager.GetString("ISOBuster_disc_type_not_set", resourceCulture); } } - /// - /// Looks up a localized string similar to Too many heads.. - /// - internal static string Too_many_heads { + internal static string ISOBuster_disc_type_0 { get { - return ResourceManager.GetString("Too_many_heads", resourceCulture); + return ResourceManager.GetString("ISOBuster_disc_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Too many sectors. - /// - internal static string Too_many_sectors { + internal static string Data_0_sectors { get { - return ResourceManager.GetString("Too_many_sectors", resourceCulture); + return ResourceManager.GetString("Data_0_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to Too many sectors for selected cluster size. - /// - internal static string Too_many_sectors_for_selected_cluster_size { - get { - return ResourceManager.GetString("Too_many_sectors_for_selected_cluster_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Too many sectors per track.. - /// - internal static string Too_many_sectors_per_track { - get { - return ResourceManager.GetString("Too_many_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0}ms to deinterleave subchannel.. - /// - internal static string Took_0_ms_to_deinterleave_subchannel { - get { - return ResourceManager.GetString("Took_0_ms_to_deinterleave_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0}ms to de-sequentialize subchannel.. - /// - internal static string Took_0_ms_to_desequentialize_subchannel { - get { - return ResourceManager.GetString("Took_0_ms_to_desequentialize_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0}ms to interleave subchannel.. - /// - internal static string Took_0_ms_to_interleave_subchannel { - get { - return ResourceManager.GetString("Took_0_ms_to_interleave_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0}ms to sequentialize subchannel.. - /// - internal static string Took_0_ms_to_sequentialize_subchannel { - get { - return ResourceManager.GetString("Took_0_ms_to_sequentialize_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0}ms to transform subchannel.. - /// - internal static string Took_0_ms_to_transform_subchannel { - get { - return ResourceManager.GetString("Took_0_ms_to_transform_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0}ms to untransform subchannel.. - /// - internal static string Took_0_ms_to_untransform_subchannel { - get { - return ResourceManager.GetString("Took_0_ms_to_untransform_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds. - /// - internal static string Took_0_seconds { - get { - return ResourceManager.GetString("Took_0_seconds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress CPR_MAI. - /// - internal static string Took_0_seconds_to_compress_CPR_MAI { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_CPR_MAI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress decrypted DVD title keys. - /// - internal static string Took_0_seconds_to_compress_decrypted_DVD_title_keys { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_decrypted_DVD_title_keys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress EDC. - /// - internal static string Took_0_seconds_to_compress_EDC { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_EDC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress ID. - /// - internal static string Took_0_seconds_to_compress_ID { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_ID", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress IED. - /// - internal static string Took_0_seconds_to_compress_IED { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_IED", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress MODE2 subheaders. - /// - internal static string Took_0_seconds_to_compress_MODE2_subheaders { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_MODE2_subheaders", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress prefix. - /// - internal static string Took_0_seconds_to_compress_prefix { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_prefix", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress subchannel. - /// - internal static string Took_0_seconds_to_compress_subchannel { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to compress suffix. - /// - internal static string Took_0_seconds_to_compress_suffix { - get { - return ResourceManager.GetString("Took_0_seconds_to_compress_suffix", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to decompress block. - /// - internal static string Took_0_seconds_to_decompress_block { - get { - return ResourceManager.GetString("Took_0_seconds_to_decompress_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to decompress DDT. - /// - internal static string Took_0_seconds_to_decompress_DDT { - get { - return ResourceManager.GetString("Took_0_seconds_to_decompress_DDT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Took {0} seconds to fill extents. - /// - internal static string Took_0_seconds_to_fill_extents { - get { - return ResourceManager.GetString("Took_0_seconds_to_fill_extents", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Total of {0} data sectors, for {1} bytes. - /// - internal static string Total_of_0_data_sectors_for_1_bytes { - get { - return ResourceManager.GetString("Total_of_0_data_sectors_for_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to track. - /// - internal static string track { - get { - return ResourceManager.GetString("track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track {0}.. - /// - internal static string Track_0 { - get { - return ResourceManager.GetString("Track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track {0} information:. - /// - internal static string Track_0_information { - get { - return ResourceManager.GetString("Track_0_information", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track {0} lacks index 01. - /// - internal static string Track_0_lacks_index_01 { - get { - return ResourceManager.GetString("Track_0_lacks_index_01", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track {0} offset 0x{1:x8}, size={2:x4}. - /// - internal static string Track_0_offset_1_size_equals_2 { - get { - return ResourceManager.GetString("Track_0_offset_1_size_equals_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track {0} Side {1} size = {2}. - /// - internal static string Track_0_Side_1_size_equals_2 { - get { - return ResourceManager.GetString("Track_0_Side_1_size_equals_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track allows digital copy. - /// - internal static string Track_allows_digital_copy { - get { - return ResourceManager.GetString("Track_allows_digital_copy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track-at-Once entry {0}. - /// - internal static string Track_at_Once_entry_0 { - get { - return ResourceManager.GetString("Track_at_Once_entry_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track block at {0} contains {1} entries. - /// - internal static string Track_block_at_0_contains_1_entries { - get { - return ResourceManager.GetString("Track_block_at_0_contains_1_entries", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track cylinder: {0}. - /// - internal static string Track_cylinder_0 { - get { - return ResourceManager.GetString("Track_cylinder_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track decompression yielded incomplete data. - /// - internal static string Track_decompression_yielded_incomplete_data { - get { - return ResourceManager.GetString("Track_decompression_yielded_incomplete_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track description: {0}. - /// - internal static string Track_description_0 { - get { - return ResourceManager.GetString("Track_description_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track ending sector: {0}. - /// - internal static string Track_ending_sector_0 { - get { - return ResourceManager.GetString("Track_ending_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track follows. - /// - internal static string Track_follows { - get { - return ResourceManager.GetString("Track_follows", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track has pre-emphasis applied. - /// - internal static string Track_has_pre_emphasis_applied { - get { - return ResourceManager.GetString("Track_has_pre_emphasis_applied", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Track has SCMS. - /// internal static string Track_has_SCMS { get { return ResourceManager.GetString("Track_has_SCMS", resourceCulture); } } - /// - /// Looks up a localized string similar to Track head: {0}. - /// - internal static string Track_head_0 { + internal static string Session_information { get { - return ResourceManager.GetString("Track_head_0", resourceCulture); + return ResourceManager.GetString("Session_information", resourceCulture); } } - /// - /// Looks up a localized string similar to Track header at {0} contains incorrect signature.. - /// - internal static string Track_header_at_0_contains_incorrect_signature { + internal static string Disc_contains_0_sessions { get { - return ResourceManager.GetString("Track_header_at_0_contains_incorrect_signature", resourceCulture); + return ResourceManager.GetString("Disc_contains_0_sessions", resourceCulture); } } - /// - /// Looks up a localized string similar to Track header CRC: 0x{0:X2} (calculated 0x{1:X2}). - /// - internal static string Track_header_CRC_0_X2_calculated_1_X2 { + internal static string Session_0_information { get { - return ResourceManager.GetString("Track_header_CRC_0_X2_calculated_1_X2", resourceCulture); + return ResourceManager.GetString("Session_0_information", resourceCulture); } } - /// - /// Looks up a localized string similar to Track information:. - /// - internal static string Track_information { + internal static string Starting_track_0 { get { - return ResourceManager.GetString("Track_information", resourceCulture); + return ResourceManager.GetString("Starting_track_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track is data. - /// - internal static string Track_is_data { + internal static string Starting_sector_0 { get { - return ResourceManager.GetString("Track_is_data", resourceCulture); + return ResourceManager.GetString("Starting_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track is flagged as quadraphonic. - /// - internal static string Track_is_flagged_as_quadraphonic { + internal static string Ending_track_0 { get { - return ResourceManager.GetString("Track_is_flagged_as_quadraphonic", resourceCulture); + return ResourceManager.GetString("Ending_track_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track mode {0} is unsupported. - /// - internal static string Track_mode_0_is_unsupported { + internal static string Ending_sector_0 { get { - return ResourceManager.GetString("Track_mode_0_is_unsupported", resourceCulture); + return ResourceManager.GetString("Ending_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track not found. - /// - internal static string Track_not_found { + internal static string Track_0_lacks_index_01 { get { - return ResourceManager.GetString("Track_not_found", resourceCulture); + return ResourceManager.GetString("Track_0_lacks_index_01", resourceCulture); } } - /// - /// Looks up a localized string similar to Track number at {0} should be {1} but is {2}.. - /// - internal static string Track_number_at_0_should_be_1_but_is_2 { + internal static string CDRWIN_image_describes_a_disc_of_type_0 { get { - return ResourceManager.GetString("Track_number_at_0_should_be_1_but_is_2", resourceCulture); + return ResourceManager.GetString("CDRWIN_image_describes_a_disc_of_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track resides in file {0}, type defined as {1}, starting at byte {2}. - /// - internal static string Track_resides_in_file_0_type_defined_as_1_starting_at_byte_2 { + internal static string CDRWIN_comments_0 { get { - return ResourceManager.GetString("Track_resides_in_file_0_type_defined_as_1_starting_at_byte_2", resourceCulture); + return ResourceManager.GetString("CDRWIN_comments_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track size not a multiple of sector size. - /// - internal static string Track_size_not_a_multiple_of_sector_size { + internal static string This_image_is_missing_vital_multi_session_data_and_cannot_be_read_correctly { get { - return ResourceManager.GetString("Track_size_not_a_multiple_of_sector_size", resourceCulture); + return ResourceManager.GetString("This_image_is_missing_vital_multi_session_data_and_cannot_be_read_correctly", resourceCulture); } } - /// - /// Looks up a localized string similar to Track starting sector: {0}. - /// - internal static string Track_starting_sector_0 { + internal static string Calculated_SHA1_0 { get { - return ResourceManager.GetString("Track_starting_sector_0", resourceCulture); + return ResourceManager.GetString("Calculated_SHA1_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track subchannel mode {0} is unsupported. - /// - internal static string Track_subchannel_mode_0_is_unsupported { + internal static string Expected_SHA1_0 { get { - return ResourceManager.GetString("Track_subchannel_mode_0_is_unsupported", resourceCulture); + return ResourceManager.GetString("Expected_SHA1_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track title = {0}. - /// - internal static string Track_title_0 { + internal static string Calculated_MD5_0 { get { - return ResourceManager.GetString("Track_title_0", resourceCulture); + return ResourceManager.GetString("Calculated_MD5_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Track type: {0}. - /// - internal static string Track_type_0 { + internal static string Expected_MD5_0 { get { - return ResourceManager.GetString("Track_type_0", resourceCulture); + return ResourceManager.GetString("Expected_MD5_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Trainer size: {0} bytes. - /// - internal static string Trainer_size_0_bytes { + internal static string Calculated_CRC32_0 { get { - return ResourceManager.GetString("Trainer_size_0_bytes", resourceCulture); + return ResourceManager.GetString("Calculated_CRC32_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Tried reading a track that is not present in image. - /// - internal static string Tried_reading_a_track_that_is_not_present_in_image { + internal static string Expected_CRC32_0 { get { - return ResourceManager.GetString("Tried_reading_a_track_that_is_not_present_in_image", resourceCulture); + return ResourceManager.GetString("Expected_CRC32_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Tried to rewind on writing, not supported by this format. - /// - internal static string Tried_to_rewind_this_format_not_supported { + internal static string Found_unsupported_hash_0 { get { - return ResourceManager.GetString("Tried_to_rewind_this_format_not_supported", resourceCulture); + return ResourceManager.GetString("Found_unsupported_hash_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Tried to set geometry on a media that doesn't support it. - /// - internal static string Tried_to_set_geometry_on_a_media_that_doesnt_support_it { - get { - return ResourceManager.GetString("Tried_to_set_geometry_on_a_media_that_doesnt_support_it", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Tried to write more data than possible. - /// - internal static string Tried_to_write_more_data_than_possible { - get { - return ResourceManager.GetString("Tried_to_write_more_data_than_possible", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Tried to write on a non-writable image. - /// - internal static string Tried_to_write_on_a_non_writable_image { - get { - return ResourceManager.GetString("Tried_to_write_on_a_non_writable_image", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Tried to write past image size. - /// - internal static string Tried_to_write_past_image_size { - get { - return ResourceManager.GetString("Tried_to_write_past_image_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to read past L1 table, position {0} of a max {1}. - /// - internal static string Trying_to_read_past_L1_table_position_0_of_a_max_1 { - get { - return ResourceManager.GetString("Trying_to_read_past_L1_table_position_0_of_a_max_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to write a media with {0} sectors to an image with {1} sectors, not continuing.... - /// - internal static string Trying_to_write_a_media_with_0_sectors_to_an_image_with_1_sectors_not_continuing { - get { - return ResourceManager.GetString("Trying_to_write_a_media_with_0_sectors_to_an_image_with_1_sectors_not_continuing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to write past L1 table, position {0} of a max {1}. - /// - internal static string Trying_to_write_past_L1_table_position_0_of_a_max_1 { - get { - return ResourceManager.GetString("Trying_to_write_past_L1_table_position_0_of_a_max_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Trying to write subchannel to track {0}, that does not have subchannel. - /// - internal static string Trying_to_write_subchannel_to_track_0_that_does_not_have_subchannel { - get { - return ResourceManager.GetString("Trying_to_write_subchannel_to_track_0_that_does_not_have_subchannel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Twiggy write support not yet implemented. - /// - internal static string Twiggy_write_support_not_yet_implemented { - get { - return ResourceManager.GetString("Twiggy_write_support_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple Universal Disk Image Format. - /// - internal static string Udif_Name { - get { - return ResourceManager.GetString("Udif_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Spectrum Floppy Disk Image. - /// - internal static string UkvFdi_Name { - get { - return ResourceManager.GetString("UkvFdi_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to decompress hunk correctly, got {0} bytes, expected {1}. - /// - internal static string Unable_to_decompress_hunk_correctly_got_0_bytes_expected_1 { - get { - return ResourceManager.GetString("Unable_to_decompress_hunk_correctly_got_0_bytes_expected_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to find data file. - /// - internal static string Unable_to_find_data_file { - get { - return ResourceManager.GetString("Unable_to_find_data_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to find UDIF signature.. - /// - internal static string Unable_to_find_UDIF_signature { - get { - return ResourceManager.GetString("Unable_to_find_UDIF_signature", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unexpected first session track type {0}. - /// - internal static string Unexpected_first_session_track_type_0 { - get { - return ResourceManager.GetString("Unexpected_first_session_track_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unexpected sector encountered. Found CHS {0},{1},{2} but expected {3},{4},{5}. - /// - internal static string Unexpected_sector_encountered_Found_CHS_0_1_2_but_expected_3_4_5 { - get { - return ResourceManager.GetString("Unexpected_sector_encountered_Found_CHS_0_1_2_but_expected_3_4_5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown application "{0}". - /// - internal static string Unknown_application_0 { - get { - return ResourceManager.GetString("Unknown_application_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_cartridge_type { - get { - return ResourceManager.GetString("Unknown_cartridge_type", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_chipset { - get { - return ResourceManager.GetString("Unknown_chipset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown chunk ID "{0}", skipping.... - /// - internal static string Unknown_chunk_ID_0_skipping { - get { - return ResourceManager.GetString("Unknown_chunk_ID_0_skipping", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_coprocessor { - get { - return ResourceManager.GetString("Unknown_coprocessor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_country { - get { - return ResourceManager.GetString("Unknown_country", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown creator code "{0}". - /// - internal static string Unknown_creator_code_0 { - get { - return ResourceManager.GetString("Unknown_creator_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown file type {0}. - /// - internal static string Unknown_file_type_0 { - get { - return ResourceManager.GetString("Unknown_file_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown header.format = 0x{0:X2} value. - /// - internal static string Unknown_header_format_equals_0_value { - get { - return ResourceManager.GetString("Unknown_header_format_equals_0_value", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown incompatible features {0:X} enabled, not proceeding.. - /// - internal static string Unknown_incompatible_features_0_enabled_not_proceeding { - get { - return ResourceManager.GetString("Unknown_incompatible_features_0_enabled_not_proceeding", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_licensee { - get { - return ResourceManager.GetString("Unknown_licensee", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown line "{0}" at line {1}. - /// - internal static string Unknown_line_0_at_line_1 { - get { - return ResourceManager.GetString("Unknown_line_0_at_line_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown long sector type, cannot write.. - /// - internal static string Unknown_long_sector_type_cannot_write { - get { - return ResourceManager.GetString("Unknown_long_sector_type_cannot_write", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_manufacturer { - get { - return ResourceManager.GetString("Unknown_manufacturer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown read mode {0}. - /// - internal static string Unknown_read_mode_0 { - get { - return ResourceManager.GetString("Unknown_read_mode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_region { - get { - return ResourceManager.GetString("Unknown_region", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown tag size. - /// - internal static string Unknown_tag_size { - get { - return ResourceManager.GetString("Unknown_tag_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown tmp_header.fmtByte = 0x{0:X2} value. - /// - internal static string Unknown_tmp_header_fmtByte_equals_0_value { - get { - return ResourceManager.GetString("Unknown_tmp_header_fmtByte_equals_0_value", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown tmp_header.format = 0x{0:X2} value. - /// - internal static string Unknown_tmp_header_format_equals_0_value { - get { - return ResourceManager.GetString("Unknown_tmp_header_format_equals_0_value", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown track mode {0}. - /// - internal static string Unknown_track_mode_0 { - get { - return ResourceManager.GetString("Unknown_track_mode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown version 0x{0:X8}. - /// - internal static string Unknown_version_0_X8 { - get { - return ResourceManager.GetString("Unknown_version_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unordered tracks. - /// - internal static string Unordered_tracks { - get { - return ResourceManager.GetString("Unordered_tracks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unsorted tracks, cannot proceed.. - /// - internal static string Unsorted_tracks_cannot_proceed { - get { - return ResourceManager.GetString("Unsorted_tracks_cannot_proceed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unsupported CHD version {0}. - /// - internal static string Unsupported_CHD_version_0 { - get { - return ResourceManager.GetString("Unsupported_CHD_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unsupported chunk type 0x{0:X8} found. - /// - internal static string Unsupported_chunk_type_0_found { - get { - return ResourceManager.GetString("Unsupported_chunk_type_0_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unsupported compression {0}. - /// internal static string Unsupported_compression_0 { get { return ResourceManager.GetString("Unsupported_compression_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported feature. - /// - internal static string Unsupported_feature { + internal static string Unable_to_decompress_hunk_correctly_got_0_bytes_expected_1 { get { - return ResourceManager.GetString("Unsupported_feature", resourceCulture); + return ResourceManager.GetString("Unable_to_decompress_hunk_correctly_got_0_bytes_expected_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported file type {0}. - /// - internal static string Unsupported_file_type_0 { + internal static string Invalid_hunk_found { get { - return ResourceManager.GetString("Unsupported_file_type_0", resourceCulture); + return ResourceManager.GetString("Invalid_hunk_found", resourceCulture); + } + } + + internal static string Compressed_CD_GD_ROM_hunks_are_not_yet_supported { + get { + return ResourceManager.GetString("Compressed_CD_GD_ROM_hunks_are_not_yet_supported", resourceCulture); + } + } + + internal static string Parent_images_are_not_supported { + get { + return ResourceManager.GetString("Parent_images_are_not_supported", resourceCulture); + } + } + + internal static string FLAC_is_not_supported { + get { + return ResourceManager.GetString("FLAC_is_not_supported", resourceCulture); + } + } + + internal static string Hunk_type_0_is_not_supported { + get { + return ResourceManager.GetString("Hunk_type_0_is_not_supported", resourceCulture); + } + } + + internal static string Compressed_v5_hunks_not_yet_supported { + get { + return ResourceManager.GetString("Compressed_v5_hunks_not_yet_supported", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported hunk map version {0}. - /// internal static string Unsupported_hunk_map_version_0 { get { return ResourceManager.GetString("Unsupported_hunk_map_version_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported media format {0}. - /// - internal static string Unsupported_media_format_0 { + internal static string Chd_Name { get { - return ResourceManager.GetString("Unsupported_media_format_0", resourceCulture); + return ResourceManager.GetString("Chd_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported media tag {0}.. - /// - internal static string Unsupported_media_tag_0 { + internal static string Reading_Hunk_map { get { - return ResourceManager.GetString("Unsupported_media_tag_0", resourceCulture); + return ResourceManager.GetString("Reading_Hunk_map", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported media tag {0} for medium type {1}. - /// - internal static string Unsupported_media_tag_0_for_medium_type_1 { + internal static string Took_0_seconds { get { - return ResourceManager.GetString("Unsupported_media_tag_0_for_medium_type_1", resourceCulture); + return ResourceManager.GetString("Took_0_seconds", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported protocol classified found in URI parent path: "{0}". - /// - internal static string Unsupported_protocol_classified_found_in_URI_parent_path_0 { + internal static string CHD_version_5_is_not_yet_supported { get { - return ResourceManager.GetString("Unsupported_protocol_classified_found_in_URI_parent_path_0", resourceCulture); + return ResourceManager.GetString("CHD_version_5_is_not_yet_supported", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported sector bitmap block flags (0x{0:X16}) found, not proceeding.. - /// - internal static string Unsupported_sector_bitmap_block_flags_0_found_not_proceeding { + internal static string Cannot_read_compressed_CHD_version_5 { get { - return ResourceManager.GetString("Unsupported_sector_bitmap_block_flags_0_found_not_proceeding", resourceCulture); + return ResourceManager.GetString("Cannot_read_compressed_CHD_version_5", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported sector size. - /// - internal static string Unsupported_sector_size { + internal static string Unsupported_CHD_version_0 { get { - return ResourceManager.GetString("Unsupported_sector_size", resourceCulture); + return ResourceManager.GetString("Unsupported_CHD_version_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported subchannel type {0}. - /// - internal static string Unsupported_subchannel_type_0 { + internal static string Reading_metadata { get { - return ResourceManager.GetString("Unsupported_subchannel_type_0", resourceCulture); + return ResourceManager.GetString("Reading_metadata", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported subchannel type {0} for track {1}. - /// - internal static string Unsupported_subchannel_type_0_for_track_1 { + internal static string Found_metadata_0_ { get { - return ResourceManager.GetString("Unsupported_subchannel_type_0_for_track_1", resourceCulture); + return ResourceManager.GetString("Found_metadata_0_", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported tag type {0}. - /// - internal static string Unsupported_tag_type_0 { + internal static string Image_cannot_be_a_hard_disk_and_a_CGD_ROM_at_the_same_time_aborting { get { - return ResourceManager.GetString("Unsupported_tag_type_0", resourceCulture); + return ResourceManager.GetString("Image_cannot_be_a_hard_disk_and_a_CGD_ROM_at_the_same_time_aborting", resourceCulture); + } + } + + internal static string Image_cannot_be_a_hard_disk_and_a_CD_ROM_at_the_same_time_aborting { + get { + return ResourceManager.GetString("Image_cannot_be_a_hard_disk_and_a_CD_ROM_at_the_same_time_aborting", resourceCulture); + } + } + + internal static string Image_cannot_be_a_GD_ROM_and_a_CD_ROM_at_the_same_time_aborting { + get { + return ResourceManager.GetString("Image_cannot_be_a_GD_ROM_and_a_CD_ROM_at_the_same_time_aborting", resourceCulture); } } - /// - /// Looks up a localized string similar to Unsupported track type {0}. - /// internal static string Unsupported_track_type_0 { get { return ResourceManager.GetString("Unsupported_track_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to USA and Canada. - /// - internal static string USA_and_Canada { + internal static string Unsorted_tracks_cannot_proceed { get { - return ResourceManager.GetString("USA_and_Canada", resourceCulture); + return ResourceManager.GetString("Unsorted_tracks_cannot_proceed", resourceCulture); + } + } + + internal static string Image_cannot_be_a_hard_disk_and_a_GD_ROM_at_the_same_time_aborting { + get { + return ResourceManager.GetString("Image_cannot_be_a_hard_disk_and_a_GD_ROM_at_the_same_time_aborting", resourceCulture); + } + } + + internal static string Image_cannot_be_a_CD_ROM_and_a_GD_ROM_at_the_same_time_aborting { + get { + return ResourceManager.GetString("Image_cannot_be_a_CD_ROM_and_a_GD_ROM_at_the_same_time_aborting", resourceCulture); + } + } + + internal static string Image_does_not_represent_a_known_media_aborting { + get { + return ResourceManager.GetString("Image_does_not_represent_a_known_media_aborting", resourceCulture); + } + } + + internal static string CisCopy_Name { + get { + return ResourceManager.GetString("CisCopy_Name", resourceCulture); + } + } + + internal static string Incorrect_disk_type_0 { + get { + return ResourceManager.GetString("Incorrect_disk_type_0", resourceCulture); + } + } + + internal static string Compressed_images_are_not_supported { + get { + return ResourceManager.GetString("Compressed_images_are_not_supported", resourceCulture); + } + } + + internal static string CisCopy_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("CisCopy_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string CloneCd_Name { + get { + return ResourceManager.GetString("CloneCd_Name", resourceCulture); + } + } + + internal static string Found_CloneCD_out_of_order_in_line_0 { + get { + return ResourceManager.GetString("Found_CloneCD_out_of_order_in_line_0", resourceCulture); + } + } + + internal static string Found_Version_at_line_0 { + get { + return ResourceManager.GetString("Found_Version_at_line_0", resourceCulture); + } + } + + internal static string CloneCD_plugin_Warning_Unknown_CCD_image_version_0_may_not_work { + get { + return ResourceManager.GetString("CloneCD_plugin_Warning_Unknown_CCD_image_version_0_may_not_work", resourceCulture); + } + } + + internal static string Found_TocEntries_at_line_0 { + get { + return ResourceManager.GetString("Found_TocEntries_at_line_0", resourceCulture); + } + } + + internal static string Found_Sessions_at_line_0 { + get { + return ResourceManager.GetString("Found_Sessions_at_line_0", resourceCulture); + } + } + + internal static string Found_DataTracksScrambled_at_line_0 { + get { + return ResourceManager.GetString("Found_DataTracksScrambled_at_line_0", resourceCulture); + } + } + + internal static string Found_CDTextLength_at_line_0 { + get { + return ResourceManager.GetString("Found_CDTextLength_at_line_0", resourceCulture); + } + } + + internal static string Found_Catalog_at_line_0_smallcase { + get { + return ResourceManager.GetString("Found_Catalog_at_line_0_smallcase", resourceCulture); + } + } + + internal static string Found_CD_Text_Entries_at_line_0 { + get { + return ResourceManager.GetString("Found_CD_Text_Entries_at_line_0", resourceCulture); + } + } + + internal static string Found_CD_Text_Entry_at_line_0 { + get { + return ResourceManager.GetString("Found_CD_Text_Entry_at_line_0", resourceCulture); + } + } + + internal static string Found_PreGapMode_at_line_0 { + get { + return ResourceManager.GetString("Found_PreGapMode_at_line_0", resourceCulture); + } + } + + internal static string Found_PreGapSubC_at_line_0 { + get { + return ResourceManager.GetString("Found_PreGapSubC_at_line_0", resourceCulture); + } + } + + internal static string Found_Session_at_line_0 { + get { + return ResourceManager.GetString("Found_Session_at_line_0", resourceCulture); + } + } + + internal static string Found_Point_at_line_0 { + get { + return ResourceManager.GetString("Found_Point_at_line_0", resourceCulture); + } + } + + internal static string Found_ADR_at_line_0 { + get { + return ResourceManager.GetString("Found_ADR_at_line_0", resourceCulture); + } + } + + internal static string Found_Control_at_line_0 { + get { + return ResourceManager.GetString("Found_Control_at_line_0", resourceCulture); + } + } + + internal static string Found_TrackNo_at_line_0 { + get { + return ResourceManager.GetString("Found_TrackNo_at_line_0", resourceCulture); + } + } + + internal static string Found_AMin_at_line_0 { + get { + return ResourceManager.GetString("Found_AMin_at_line_0", resourceCulture); + } + } + + internal static string Found_ASec_at_line_0 { + get { + return ResourceManager.GetString("Found_ASec_at_line_0", resourceCulture); + } + } + + internal static string Found_AFrame_at_line_0 { + get { + return ResourceManager.GetString("Found_AFrame_at_line_0", resourceCulture); + } + } + + internal static string Found_ALBA_at_line_0 { + get { + return ResourceManager.GetString("Found_ALBA_at_line_0", resourceCulture); + } + } + + internal static string Found_Zero_at_line_0 { + get { + return ResourceManager.GetString("Found_Zero_at_line_0", resourceCulture); + } + } + + internal static string Found_PMin_at_line_0 { + get { + return ResourceManager.GetString("Found_PMin_at_line_0", resourceCulture); + } + } + + internal static string Found_PSec_at_line_0 { + get { + return ResourceManager.GetString("Found_PSec_at_line_0", resourceCulture); + } + } + + internal static string Found_PFrame_at_line_0 { + get { + return ResourceManager.GetString("Found_PFrame_at_line_0", resourceCulture); + } + } + + internal static string Found_PLBA_at_line_0 { + get { + return ResourceManager.GetString("Found_PLBA_at_line_0", resourceCulture); + } + } + + internal static string Did_not_find_any_track { + get { + return ResourceManager.GetString("Did_not_find_any_track", resourceCulture); + } + } + + internal static string Disc_Type_0 { + get { + return ResourceManager.GetString("Disc_Type_0", resourceCulture); + } + } + + internal static string Disc_manufactured_by_0 { + get { + return ResourceManager.GetString("Disc_manufactured_by_0", resourceCulture); + } + } + + internal static string Disc_ID_0_X6 { + get { + return ResourceManager.GetString("Disc_ID_0_X6", resourceCulture); + } + } + + internal static string This_format_requires_sectors_to_be_raw_Generating_ECC_is_not_yet_implemented { + get { + return ResourceManager.GetString("This_format_requires_sectors_to_be_raw_Generating_ECC_is_not_yet_implemented", resourceCulture); + } + } + + internal static string Unexpected_first_session_track_type_0 { + get { + return ResourceManager.GetString("Unexpected_first_session_track_type_0", resourceCulture); + } + } + + internal static string Could_not_create_subchannel_file_exception_0 { + get { + return ResourceManager.GetString("Could_not_create_subchannel_file_exception_0", resourceCulture); + } + } + + internal static string CopyQm_Name { + get { + return ResourceManager.GetString("CopyQm_Name", resourceCulture); + } + } + + internal static string Calculated_header_checksum_equals_0_X2_1 { + get { + return ResourceManager.GetString("Calculated_header_checksum_equals_0_X2_1", resourceCulture); + } + } + + internal static string Calculated_data_CRC_equals_0_X8_1 { + get { + return ResourceManager.GetString("Calculated_data_CRC_equals_0_X8_1", resourceCulture); + } + } + + internal static string CopyQM_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("CopyQM_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string CopyQM_comments_0 { + get { + return ResourceManager.GetString("CopyQM_comments_0", resourceCulture); + } + } + + internal static string CopyTape_Name { + get { + return ResourceManager.GetString("CopyTape_Name", resourceCulture); + } + } + + internal static string Found_unhandled_header_cannot_open { + get { + return ResourceManager.GetString("Found_unhandled_header_cannot_open", resourceCulture); + } + } + + internal static string Cannot_decode_block_header_cannot_open { + get { + return ResourceManager.GetString("Cannot_decode_block_header_cannot_open", resourceCulture); + } + } + + internal static string Cannot_write_unwritten_blocks { + get { + return ResourceManager.GetString("Cannot_write_unwritten_blocks", resourceCulture); + } + } + + internal static string Cannot_skip_blocks { + get { + return ResourceManager.GetString("Cannot_skip_blocks", resourceCulture); + } + } + + internal static string magic_equals_0_quoted { + get { + return ResourceManager.GetString("magic_equals_0_quoted", resourceCulture); + } + } + + internal static string Cpcdsk_Name { + get { + return ResourceManager.GetString("Cpcdsk_Name", resourceCulture); + } + } + + internal static string Extended_equals_0 { + get { + return ResourceManager.GetString("Extended_equals_0", resourceCulture); + } + } + + internal static string Track_0_Side_1_size_equals_2 { + get { + return ResourceManager.GetString("Track_0_Side_1_size_equals_2", resourceCulture); + } + } + + internal static string Not_the_expected_track_info { + get { + return ResourceManager.GetString("Not_the_expected_track_info", resourceCulture); + } + } + + internal static string Read_0_sectors { + get { + return ResourceManager.GetString("Read_0_sectors", resourceCulture); + } + } + + internal static string Read_0_tracks { + get { + return ResourceManager.GetString("Read_0_tracks", resourceCulture); + } + } + + internal static string All_tracks_are_same_size_0 { + get { + return ResourceManager.GetString("All_tracks_are_same_size_0", resourceCulture); + } + } + + internal static string _0_tracks { + get { + return ResourceManager.GetString("_0_tracks", resourceCulture); + } + } + + internal static string D88_Name { + get { + return ResourceManager.GetString("D88_Name", resourceCulture); + } + } + + internal static string Disk_tracks_are_not_same_size { + get { + return ResourceManager.GetString("Disk_tracks_are_not_same_size", resourceCulture); + } + } + + internal static string _0_sectors { + get { + return ResourceManager.GetString("_0_sectors", resourceCulture); + } + } + + internal static string Dart_Name { + get { + return ResourceManager.GetString("Dart_Name", resourceCulture); + } + } + + internal static string LZH_Compressed_images_not_yet_supported { + get { + return ResourceManager.GetString("LZH_Compressed_images_not_yet_supported", resourceCulture); + } + } + + internal static string Image_application_0_version_1 { + get { + return ResourceManager.GetString("Image_application_0_version_1", resourceCulture); + } + } + + internal static string Dim_Name { + get { + return ResourceManager.GetString("Dim_Name", resourceCulture); + } + } + + internal static string DIM_shows_unknown_image_with_0_tracks { + get { + return ResourceManager.GetString("DIM_shows_unknown_image_with_0_tracks", resourceCulture); + } + } + + internal static string DIM_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("DIM_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string DIM_comments_0 { + get { + return ResourceManager.GetString("DIM_comments_0", resourceCulture); + } + } + + internal static string DiscFerret_Name { + get { + return ResourceManager.GetString("DiscFerret_Name", resourceCulture); + } + } + + internal static string Invalid_track_block_found_at_0 { + get { + return ResourceManager.GetString("Invalid_track_block_found_at_0", resourceCulture); + } + } + + internal static string Flux_decoding_is_not_yet_implemented { + get { + return ResourceManager.GetString("Flux_decoding_is_not_yet_implemented", resourceCulture); + } + } + + internal static string DiscJuggler_Name { + get { + return ResourceManager.GetString("DiscJuggler_Name", resourceCulture); + } + } + + internal static string Track_title_0 { + get { + return ResourceManager.GetString("Track_title_0", resourceCulture); + } + } + + internal static string Unknown_read_mode_0 { + get { + return ResourceManager.GetString("Unknown_read_mode_0", resourceCulture); + } + } + + internal static string Invalid_read_mode_0_for_this_track { + get { + return ResourceManager.GetString("Invalid_read_mode_0_for_this_track", resourceCulture); + } + } + + internal static string Unknown_track_mode_0 { + get { + return ResourceManager.GetString("Unknown_track_mode_0", resourceCulture); + } + } + + internal static string Current_position_equals_0 { + get { + return ResourceManager.GetString("Current_position_equals_0", resourceCulture); + } + } + + internal static string End_position_equals_0 { + get { + return ResourceManager.GetString("End_position_equals_0", resourceCulture); + } + } + + internal static string Unknown_tmp_header_format_equals_0_value { + get { + return ResourceManager.GetString("Unknown_tmp_header_format_equals_0_value", resourceCulture); + } + } + + internal static string Unknown_tmp_header_fmtByte_equals_0_value { + get { + return ResourceManager.GetString("Unknown_tmp_header_fmtByte_equals_0_value", resourceCulture); + } + } + + internal static string Image_says_its_unformatted { + get { + return ResourceManager.GetString("Image_says_its_unformatted", resourceCulture); + } + } + + internal static string DiskCopy42_Name { + get { + return ResourceManager.GetString("DiskCopy42_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Use Mac OS X format byte. - /// internal static string Use_Mac_OS_X_format_byte { get { return ResourceManager.GetString("Use_Mac_OS_X_format_byte", resourceCulture); } } - /// - /// Looks up a localized string similar to Uses four-screen VRAM. - /// - internal static string Uses_four_screen_VRAM { + internal static string Unknown_header_format_equals_0_value { get { - return ResourceManager.GetString("Uses_four_screen_VRAM", resourceCulture); + return ResourceManager.GetString("Unknown_header_format_equals_0_value", resourceCulture); } } - /// - /// Looks up a localized string similar to Uses horizontal mirroring. - /// - internal static string Uses_horizontal_mirroring { + internal static string Unknown_tag_size { get { - return ResourceManager.GetString("Uses_horizontal_mirroring", resourceCulture); + return ResourceManager.GetString("Unknown_tag_size", resourceCulture); } } - /// - /// Looks up a localized string similar to Uses vertical mirroring. - /// - internal static string Uses_vertical_mirroring { + internal static string Macintosh_Twiggy_detected_reversing_disk_sides { get { - return ResourceManager.GetString("Uses_vertical_mirroring", resourceCulture); + return ResourceManager.GetString("Macintosh_Twiggy_detected_reversing_disk_sides", resourceCulture); } } - /// - /// Looks up a localized string similar to Using DOS skewing. - /// - internal static string Using_DOS_skewing { + internal static string Lisa_Twiggy_detected_reversing_second_half_of_disk { get { - return ResourceManager.GetString("Using_DOS_skewing", resourceCulture); + return ResourceManager.GetString("Lisa_Twiggy_detected_reversing_second_half_of_disk", resourceCulture); } } - /// - /// Looks up a localized string similar to Using ProDOS skewing. - /// - internal static string Using_ProDOS_skewing { + internal static string DiskCopy_4_2_image_contains_a_disk_of_type_0 { get { - return ResourceManager.GetString("Using_ProDOS_skewing", resourceCulture); + return ResourceManager.GetString("DiskCopy_4_2_image_contains_a_disk_of_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to VirtualBox Disk Image. - /// - internal static string Vdi_Name { + internal static string Reading_data { get { - return ResourceManager.GetString("Vdi_Name", resourceCulture); + return ResourceManager.GetString("Reading_data", resourceCulture); } } - /// - /// Looks up a localized string similar to VDMK hardware version.. - /// - internal static string VDMK_hardware_version { + internal static string Calculating_data_checksum { get { - return ResourceManager.GetString("VDMK_hardware_version", resourceCulture); + return ResourceManager.GetString("Calculating_data_checksum", resourceCulture); } } - /// - /// Looks up a localized string similar to Verifying data block type {0} at position {1}. - /// - internal static string Verifying_data_block_type_0_at_position_1 { + internal static string Calculated_data_checksum_equals_0_X8 { get { - return ResourceManager.GetString("Verifying_data_block_type_0_at_position_1", resourceCulture); + return ResourceManager.GetString("Calculated_data_checksum_equals_0_X8", resourceCulture); } } - /// - /// Looks up a localized string similar to Verifying deduplication table type {0} at position {1}. - /// - internal static string Verifying_deduplication_table_type_0_at_position_1 { + internal static string Stored_data_checksum_equals_0_X8 { get { - return ResourceManager.GetString("Verifying_deduplication_table_type_0_at_position_1", resourceCulture); + return ResourceManager.GetString("Stored_data_checksum_equals_0_X8", resourceCulture); } } - /// - /// Looks up a localized string similar to Version: {0}.{1}. - /// - internal static string Version_0_1 { + internal static string Reading_tags { get { - return ResourceManager.GetString("Version_0_1", resourceCulture); + return ResourceManager.GetString("Reading_tags", resourceCulture); } } - /// - /// Looks up a localized string similar to Block size. Must be a power of 2. Only 2MiB and 512KiB are supported by VirtualPC. - /// - internal static string Vhd_Block_size_Must_be_a_power_of_2 { + internal static string Calculating_tag_checksum { get { - return ResourceManager.GetString("Vhd_Block_size_Must_be_a_power_of_2", resourceCulture); + return ResourceManager.GetString("Calculating_tag_checksum", resourceCulture); } } - /// - /// Looks up a localized string similar to Virtual PC. - /// - internal static string Vhd_Name { + internal static string Calculated_tag_checksum_equals_0_X8 { get { - return ResourceManager.GetString("Vhd_Name", resourceCulture); + return ResourceManager.GetString("Calculated_tag_checksum_equals_0_X8", resourceCulture); } } - /// - /// Looks up a localized string similar to VHDX header not found. - /// - internal static string VHDX_header_not_found { + internal static string Stored_tag_checksum_equals_0_X8 { get { - return ResourceManager.GetString("VHDX_header_not_found", resourceCulture); + return ResourceManager.GetString("Stored_tag_checksum_equals_0_X8", resourceCulture); } } - /// - /// Looks up a localized string similar to Microsoft VHDX. - /// - internal static string Vhdx_Name { + internal static string Twiggy_write_support_not_yet_implemented { get { - return ResourceManager.GetString("Vhdx_Name", resourceCulture); + return ResourceManager.GetString("Twiggy_write_support_not_yet_implemented", resourceCulture); } } - /// - /// Looks up a localized string similar to VHDX region table not found. - /// - internal static string VHDX_region_table_not_found { + internal static string Incorrect_number_of_sectors_for_Apple_HD20_image { get { - return ResourceManager.GetString("VHDX_region_table_not_found", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_HD20_image", resourceCulture); } } - /// - /// Looks up a localized string similar to Virtual disk size not found.. - /// - internal static string Virtual_disk_size_not_found { + internal static string Incorrect_number_of_sectors_for_Apple_Profile_image { get { - return ResourceManager.GetString("Virtual_disk_size_not_found", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_Profile_image", resourceCulture); } } - /// - /// Looks up a localized string similar to Virtual PC for unknown OS "{0}". - /// - internal static string Virtual_PC_for_unknown_OS_0 { + internal static string Incorrect_number_of_sectors_for_Apple_MF2DD_image { get { - return ResourceManager.GetString("Virtual_PC_for_unknown_OS_0", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_MF2DD_image", resourceCulture); } } - /// - /// Looks up a localized string similar to Virtual98 Disk Image. - /// - internal static string Virtual98_Name { + internal static string Incorrect_number_of_sectors_for_Apple_MF1DD_image { get { - return ResourceManager.GetString("Virtual98_Name", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_MF1DD_image", resourceCulture); } } - /// - /// Looks up a localized string similar to VirtualBox for unknown OS "{0}". - /// - internal static string VirtualBox_for_unknown_OS_0 { + internal static string Incorrect_number_of_sectors_for_Apple_Widget_image { get { - return ResourceManager.GetString("VirtualBox_for_unknown_OS_0", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_Apple_Widget_image", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Both header and footer are corrupt, image cannot be opened.. - /// - internal static string VirtualPC_plugin_Both_header_and_footer_are_corrupt_image_cannot_be_opened { + internal static string Incorrect_number_of_sectors_for_MF2DD_image { get { - return ResourceManager.GetString("VirtualPC_plugin_Both_header_and_footer_are_corrupt_image_cannot_be_opened", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_MF2DD_image", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Cannot find parent file for differencing disk image. - /// - internal static string VirtualPC_plugin_Cannot_find_parent_file_for_differencing_disk_image { + internal static string Incorrect_number_of_sectors_for_MF2HD_image { get { - return ResourceManager.GetString("VirtualPC_plugin_Cannot_find_parent_file_for_differencing_disk_image", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_MF2HD_image", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Cannot find parent image filter. - /// - internal static string VirtualPC_plugin_Cannot_find_parent_image_filter { + internal static string Incorrect_number_of_sectors_for_DMF_image { get { - return ResourceManager.GetString("VirtualPC_plugin_Cannot_find_parent_image_filter", resourceCulture); + return ResourceManager.GetString("Incorrect_number_of_sectors_for_DMF_image", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Deprecated image type found. Please submit a bug with an example image.. - /// - internal static string VirtualPC_plugin_Deprecated_image_type_found { + internal static string Identified_image_with_CHS_equals_0_1_2 { get { - return ResourceManager.GetString("VirtualPC_plugin_Deprecated_image_type_found", resourceCulture); + return ResourceManager.GetString("Identified_image_with_CHS_equals_0_1_2", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Error {0} opening parent disk image. - /// - internal static string VirtualPC_plugin_Error_0_opening_parent_disk_image { + internal static string DiskDupe_Name { get { - return ResourceManager.GetString("VirtualPC_plugin_Error_0_opening_parent_disk_image", resourceCulture); + return ResourceManager.GetString("DiskDupe_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Parent image is not a Virtual PC disk image. - /// - internal static string VirtualPC_plugin_Parent_image_is_not_a_Virtual_PC_disk_image { + internal static string Detected_DiskDupe_DDI_image_with_0_tracks_and_1_sectors_per_track { get { - return ResourceManager.GetString("VirtualPC_plugin_Parent_image_is_not_a_Virtual_PC_disk_image", resourceCulture); + return ResourceManager.GetString("Detected_DiskDupe_DDI_image_with_0_tracks_and_1_sectors_per_track", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Parent image is of different size. - /// - internal static string VirtualPC_plugin_Parent_image_is_of_different_size { + internal static string DriDiskCopy_Name { get { - return ResourceManager.GetString("VirtualPC_plugin_Parent_image_is_of_different_size", resourceCulture); + return ResourceManager.GetString("DriDiskCopy_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to (Virtual PC plugin): Unknown image type {0} found. Please submit a bug with an example image.. - /// - internal static string VirtualPC_plugin_Unknown_image_type_0_found { + internal static string Digital_Research_DiskCopy_image_contains_a_disk_of_type_0 { get { - return ResourceManager.GetString("VirtualPC_plugin_Unknown_image_type_0_found", resourceCulture); + return ResourceManager.GetString("Digital_Research_DiskCopy_image_contains_a_disk_of_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to VMware disk image. - /// - internal static string VMware_Name { + internal static string Gdi_Name { get { - return ResourceManager.GetString("VMware_Name", resourceCulture); + return ResourceManager.GetString("Gdi_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Use sparse extents.. - /// - internal static string VMware_SupportedOptions_Use_sparse_extents { + internal static string Not_a_correct_Dreamcast_GDI_image { get { - return ResourceManager.GetString("VMware_SupportedOptions_Use_sparse_extents", resourceCulture); + return ResourceManager.GetString("Not_a_correct_Dreamcast_GDI_image", resourceCulture); } } - /// - /// Looks up a localized string similar to V.R. Technology VT01. - /// - internal static string VR_Technology_VT01 { + internal static string Unknown_line_0_at_line_1 { get { - return ResourceManager.GetString("VR_Technology_VT01", resourceCulture); + return ResourceManager.GetString("Unknown_line_0_at_line_1", resourceCulture); } } - /// - /// Looks up a localized string similar to V.R. Technology VT02. - /// - internal static string VR_Technology_VT02 { + internal static string Found_track_0_starts_at_1_flags_2_type_3_file_4_offset_5_at_line_6 { get { - return ResourceManager.GetString("VR_Technology_VT02", resourceCulture); + return ResourceManager.GetString("Found_track_0_starts_at_1_flags_2_type_3_file_4_offset_5_at_line_6", resourceCulture); } } - /// - /// Looks up a localized string similar to V.R. Technology VT03. - /// - internal static string VR_Technology_VT03 { + internal static string Track_size_not_a_multiple_of_sector_size { get { - return ResourceManager.GetString("VR_Technology_VT03", resourceCulture); + return ResourceManager.GetString("Track_size_not_a_multiple_of_sector_size", resourceCulture); } } - /// - /// Looks up a localized string similar to V.R. Technology VT09. - /// - internal static string VR_Technology_VT09 { + internal static string Track_is_data { get { - return ResourceManager.GetString("VR_Technology_VT09", resourceCulture); + return ResourceManager.GetString("Track_is_data", resourceCulture); } } - /// - /// Looks up a localized string similar to V.R. Technology VT32. - /// - internal static string VR_Technology_VT32 { + internal static string GDI_image_describes_a_disc_of_type_0 { get { - return ResourceManager.GetString("VR_Technology_VT32", resourceCulture); + return ResourceManager.GetString("GDI_image_describes_a_disc_of_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to V.R. Technology VT369. - /// - internal static string VR_Technology_VT369 { + internal static string Tried_reading_a_track_that_is_not_present_in_image { get { - return ResourceManager.GetString("VR_Technology_VT369", resourceCulture); + return ResourceManager.GetString("Tried_reading_a_track_that_is_not_present_in_image", resourceCulture); } } - /// - /// Looks up a localized string similar to VS Unisystem game. - /// - internal static string VS_Unisystem_game { + internal static string Track_decompression_yielded_incomplete_data { get { - return ResourceManager.GetString("VS_Unisystem_game", resourceCulture); + return ResourceManager.GetString("Track_decompression_yielded_incomplete_data", resourceCulture); + } + } + + internal static string HdCopy_Name { + get { + return ResourceManager.GetString("HdCopy_Name", resourceCulture); + } + } + + internal static string Detected_HD_Copy_image_with_0_tracks_and_1_sectors_per_track { + get { + return ResourceManager.GetString("Detected_HD_Copy_image_with_0_tracks_and_1_sectors_per_track", resourceCulture); + } + } + + internal static string Track_0_offset_1_size_equals_2 { + get { + return ResourceManager.GetString("Track_0_offset_1_size_equals_2", resourceCulture); + } + } + + internal static string Imd_Name { + get { + return ResourceManager.GetString("Imd_Name", resourceCulture); + } + } + + internal static string Invalid_sector_type_0 { + get { + return ResourceManager.GetString("Invalid_sector_type_0", resourceCulture); + } + } + + internal static string IMD_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("IMD_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string IMD_comments_0 { + get { + return ResourceManager.GetString("IMD_comments_0", resourceCulture); + } + } + + internal static string KryoFlux_Name { + get { + return ResourceManager.GetString("KryoFlux_Name", resourceCulture); + } + } + + internal static string Cannot_find_cyl_0_hd_0_supposing_only_top_head_was_dumped { + get { + return ResourceManager.GetString("Cannot_find_cyl_0_hd_0_supposing_only_top_head_was_dumped", resourceCulture); + } + } + + internal static string Cannot_find_cyl_0_hd_1_supposing_only_bottom_head_was_dumped { + get { + return ResourceManager.GetString("Cannot_find_cyl_0_hd_1_supposing_only_bottom_head_was_dumped", resourceCulture); + } + } + + internal static string Cannot_find_cyl_1_supposing_double_stepping { + get { + return ResourceManager.GetString("Cannot_find_cyl_1_supposing_double_stepping", resourceCulture); + } + } + + internal static string Arrived_end_of_disk_at_cylinder_0 { + get { + return ResourceManager.GetString("Arrived_end_of_disk_at_cylinder_0", resourceCulture); + } + } + + internal static string Found_timestamp_0 { + get { + return ResourceManager.GetString("Found_timestamp_0", resourceCulture); + } + } + + internal static string MaxiDisk_Name { + get { + return ResourceManager.GetString("MaxiDisk_Name", resourceCulture); + } + } + + internal static string Ndif_Name { + get { + return ResourceManager.GetString("Ndif_Name", resourceCulture); + } + } + + internal static string Exception_trying_to_open_image_file_0 { + get { + return ResourceManager.GetString("Exception_trying_to_open_image_file_0", resourceCulture); + } + } + + internal static string Chunks_compressed_with_KenCode_are_not_yet_supported { + get { + return ResourceManager.GetString("Chunks_compressed_with_KenCode_are_not_yet_supported", resourceCulture); + } + } + + internal static string Chunks_compressed_with_LZH_are_not_yet_supported { + get { + return ResourceManager.GetString("Chunks_compressed_with_LZH_are_not_yet_supported", resourceCulture); + } + } + + internal static string Chunks_compressed_with_StuffIt_are_not_yet_supported { + get { + return ResourceManager.GetString("Chunks_compressed_with_StuffIt_are_not_yet_supported", resourceCulture); + } + } + + internal static string Unsupported_chunk_type_0_found { + get { + return ResourceManager.GetString("Unsupported_chunk_type_0_found", resourceCulture); + } + } + + internal static string Segmented_images_are_not_yet_supported { + get { + return ResourceManager.GetString("Segmented_images_are_not_yet_supported", resourceCulture); + } + } + + internal static string Encrypted_images_are_not_yet_supported { + get { + return ResourceManager.GetString("Encrypted_images_are_not_yet_supported", resourceCulture); + } + } + + internal static string Nero_Name { + get { + return ResourceManager.GetString("Nero_Name", resourceCulture); + } + } + + internal static string Nero_version_not_recognized { + get { + return ResourceManager.GetString("Nero_version_not_recognized", resourceCulture); + } + } + + internal static string Found_CUES_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_CUES_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Cuesheet_entry_0 { + get { + return ResourceManager.GetString("Cuesheet_entry_0", resourceCulture); + } + } + + internal static string Found_CUEX_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_CUEX_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Found_DAOI_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_DAOI_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Disc_At_Once_entry_0 { + get { + return ResourceManager.GetString("Disc_At_Once_entry_0", resourceCulture); + } + } + + internal static string Found_DAOX_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_DAOX_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Found_CDTX_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_CDTX_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string CD_TEXT_entry_0 { + get { + return ResourceManager.GetString("CD_TEXT_entry_0", resourceCulture); + } + } + + internal static string Found_TINF_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_TINF_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Track_at_Once_entry_0 { + get { + return ResourceManager.GetString("Track_at_Once_entry_0", resourceCulture); + } + } + + internal static string Found_ETNF_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_ETNF_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Found_ETN2_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_ETN2_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Found_SINF_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_SINF_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Session_0_has_1_tracks { + get { + return ResourceManager.GetString("Session_0_has_1_tracks", resourceCulture); + } + } + + internal static string Found_MTYP_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_MTYP_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Media_type_is_0_1 { + get { + return ResourceManager.GetString("Media_type_is_0_1", resourceCulture); + } + } + + internal static string Found_DINF_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_DINF_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Found_RELO_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_RELO_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Found_TOCT_chunk_parsing_0_bytes { + get { + return ResourceManager.GetString("Found_TOCT_chunk_parsing_0_bytes", resourceCulture); + } + } + + internal static string Found_END_chunk_finishing_parse { + get { + return ResourceManager.GetString("Found_END_chunk_finishing_parse", resourceCulture); + } + } + + internal static string Unknown_chunk_ID_0_skipping { + get { + return ResourceManager.GetString("Unknown_chunk_ID_0_skipping", resourceCulture); + } + } + + internal static string Inconsistent_track_mode_and_track_sector_size_found { + get { + return ResourceManager.GetString("Inconsistent_track_mode_and_track_sector_size_found", resourceCulture); + } + } + + internal static string Building_offset_track_and_session_maps { + get { + return ResourceManager.GetString("Building_offset_track_and_session_maps", resourceCulture); + } + } + + internal static string This_image_contains_a_track_that_is_set_to_start_outside_the_file { + get { + return ResourceManager.GetString("This_image_contains_a_track_that_is_set_to_start_outside_the_file", resourceCulture); + } + } + + internal static string Breaking_track_processing_and_trying_recovery_of_information { + get { + return ResourceManager.GetString("Breaking_track_processing_and_trying_recovery_of_information", resourceCulture); + } + } + + internal static string Image_corrupted_beyond_recovery_cannot_open { + get { + return ResourceManager.GetString("Image_corrupted_beyond_recovery_cannot_open", resourceCulture); } } - /// - /// Looks up a localized string similar to Warning! This image is missing the last 150 sectors.. - /// internal static string Warning_This_image_is_missing_the_last_150_sectors { get { return ResourceManager.GetString("Warning_This_image_is_missing_the_last_150_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to d2f disk image. - /// - internal static string WCDiskImage_Name { + internal static string Nero_image_contains_a_disc_of_type_0 { get { - return ResourceManager.GetString("WCDiskImage_Name", resourceCulture); + return ResourceManager.GetString("Nero_image_contains_a_disc_of_type_0", resourceCulture); } } - /// - /// Looks up a localized string similar to World. - /// - internal static string World { + internal static string Exception_occurred_opening_file { get { - return ResourceManager.GetString("World", resourceCulture); + return ResourceManager.GetString("Exception_occurred_opening_file", resourceCulture); } } - /// - /// Looks up a localized string similar to Write each track to a separate file.. - /// - internal static string Write_each_track_to_a_separate_file { + internal static string Nhdr0_Name { get { - return ResourceManager.GetString("Write_each_track_to_a_separate_file", resourceCulture); + return ResourceManager.GetString("Nhdr0_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing Aaru Metadata block to position {0}. - /// - internal static string Writing_Aaru_Metadata_block_to_position_0 { + internal static string Parallels_Name { get { - return ResourceManager.GetString("Writing_Aaru_Metadata_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Parallels_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing Apple sector tag block to position {0}. - /// - internal static string Writing_apple_sector_tag_block_to_position_0 { + internal static string Reading_BAT { get { - return ResourceManager.GetString("Writing_apple_sector_tag_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Reading_BAT", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CD MODE2 subheaders block to position {0}. - /// - internal static string Writing_CD_MODE2_subheaders_block_to_position_0 { + internal static string Too_many_sectors_for_selected_cluster_size { get { - return ResourceManager.GetString("Writing_CD_MODE2_subheaders_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Too_many_sectors_for_selected_cluster_size", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CD sector corrected prefix block to position {0}. - /// - internal static string Writing_CD_sector_corrected_prefix_block_to_position_0 { + internal static string PartClone_Name { get { - return ResourceManager.GetString("Writing_CD_sector_corrected_prefix_block_to_position_0", resourceCulture); + return ResourceManager.GetString("PartClone_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CD sector corrected suffix block to position {0}. - /// - internal static string Writing_CD_sector_corrected_suffix_block_to_position_0 { + internal static string Reading_bytemap_0_bytes { get { - return ResourceManager.GetString("Writing_CD_sector_corrected_suffix_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Reading_bytemap_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CD sector prefix block to position {0}. - /// - internal static string Writing_CD_sector_prefix_block_to_position_0 { + internal static string Could_not_find_partclone_BiTmAgIc_not_continuing { get { - return ResourceManager.GetString("Writing_CD_sector_prefix_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Could_not_find_partclone_BiTmAgIc_not_continuing", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CD sector suffix block to position {0}. - /// - internal static string Writing_CD_sector_suffix_block_to_position_0 { + internal static string Filling_extents { get { - return ResourceManager.GetString("Writing_CD_sector_suffix_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Filling_extents", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CD subchannel block to position {0}. - /// - internal static string Writing_CD_subchannel_block_to_position_0 { + internal static string Took_0_seconds_to_fill_extents { get { - return ResourceManager.GetString("Writing_CD_subchannel_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Took_0_seconds_to_fill_extents", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing checksum block to position {0}. - /// - internal static string Writing_checksum_block_to_position_0 { + internal static string Partimage_Name { get { - return ResourceManager.GetString("Writing_checksum_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Partimage_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CICM XML block to position {0}. - /// - internal static string Writing_CICM_XML_block_to_position_0 { + internal static string Support_for_multiple_volumes_not_supported { get { - return ResourceManager.GetString("Writing_CICM_XML_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Support_for_multiple_volumes_not_supported", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing compact disc indexes to position {0}. - /// - internal static string Writing_compact_disc_indexes_to_position_0 { + internal static string Cannot_find_MBRs { get { - return ResourceManager.GetString("Writing_compact_disc_indexes_to_position_0", resourceCulture); + return ResourceManager.GetString("Cannot_find_MBRs", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CompactDisc sector prefix DDT to position {0}. - /// - internal static string Writing_CompactDisc_sector_prefix_DDT_to_position_0 { + internal static string Cannot_find_local_header { get { - return ResourceManager.GetString("Writing_CompactDisc_sector_prefix_DDT_to_position_0", resourceCulture); + return ResourceManager.GetString("Cannot_find_local_header", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing CompactDisc sector suffix DDT to position {0}. - /// - internal static string Writing_CompactDisc_sector_suffix_DDT_to_position_0 { + internal static string Cannot_find_bitmap { get { - return ResourceManager.GetString("Writing_CompactDisc_sector_suffix_DDT_to_position_0", resourceCulture); + return ResourceManager.GetString("Cannot_find_bitmap", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing decrypted DVD title key block to position {0}. - /// - internal static string Writing_decrypted_DVD_title_key_block_to_position_0 { + internal static string Cannot_find_info_block { get { - return ResourceManager.GetString("Writing_decrypted_DVD_title_key_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Cannot_find_info_block", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing dump hardware block to position {0}. - /// - internal static string Writing_dump_hardware_block_to_position_0 { + internal static string Cannot_find_data_blocks { get { - return ResourceManager.GetString("Writing_dump_hardware_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Cannot_find_data_blocks", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing DVD CPR_MAI block to position {0}. - /// - internal static string Writing_DVD_CPR_MAI_block_to_position_0 { + internal static string Cannot_find_tail_Multiple_volumes_are_not_supported_or_image_is_corrupt { get { - return ResourceManager.GetString("Writing_DVD_CPR_MAI_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Cannot_find_tail_Multiple_volumes_are_not_supported_or_image_is_corrupt", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing DVD EDC block to position {0}. - /// - internal static string Writing_DVD_EDC_block_to_position_0 { + internal static string Qcow_Name { get { - return ResourceManager.GetString("Writing_DVD_EDC_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Qcow_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing DVD ID block to position {0}. - /// - internal static string Writing_DVD_ID_block_to_position_0 { + internal static string Image_size_is_too_small { get { - return ResourceManager.GetString("Writing_DVD_ID_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Image_size_is_too_small", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing DVD IED block to position {0}. - /// - internal static string Writing_DVD_IED_block_to_position_0 { + internal static string Cluster_size_must_be_between_512_bytes_and_64_Kbytes { get { - return ResourceManager.GetString("Writing_DVD_IED_block_to_position_0", resourceCulture); + return ResourceManager.GetString("Cluster_size_must_be_between_512_bytes_and_64_Kbytes", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing geometry block to position {0}. - /// - internal static string Writing_geometry_block_to_position_0 { + internal static string L2_size_must_be_between_512_bytes_and_64_Kbytes { get { - return ResourceManager.GetString("Writing_geometry_block_to_position_0", resourceCulture); + return ResourceManager.GetString("L2_size_must_be_between_512_bytes_and_64_Kbytes", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing header. - /// - internal static string Writing_header { + internal static string Invalid_encryption_method { get { - return ResourceManager.GetString("Writing_header", resourceCulture); + return ResourceManager.GetString("Invalid_encryption_method", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing index to position {0}. - /// - internal static string Writing_index_to_position_0 { + internal static string AES_encrypted_images_not_yet_supported { get { - return ResourceManager.GetString("Writing_index_to_position_0", resourceCulture); + return ResourceManager.GetString("AES_encrypted_images_not_yet_supported", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing media tags is not supported.. - /// - internal static string Writing_media_tags_is_not_supported { + internal static string Differencing_images_not_yet_supported { get { - return ResourceManager.GetString("Writing_media_tags_is_not_supported", resourceCulture); + return ResourceManager.GetString("Differencing_images_not_yet_supported", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing metadata to position {0}. - /// - internal static string Writing_metadata_to_position_0 { + internal static string Image_is_too_large { get { - return ResourceManager.GetString("Writing_metadata_to_position_0", resourceCulture); + return ResourceManager.GetString("Image_is_too_large", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing sectors with tags is not supported.. - /// - internal static string Writing_sectors_with_tags_is_not_supported { + internal static string Reading_L1_table { get { - return ResourceManager.GetString("Writing_sectors_with_tags_is_not_supported", resourceCulture); + return ResourceManager.GetString("Reading_L1_table", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing tag type {0} to position {1}. - /// - internal static string Writing_tag_type_0_to_position_1 { + internal static string Trying_to_read_past_L1_table_position_0_of_a_max_1 { get { - return ResourceManager.GetString("Writing_tag_type_0_to_position_1", resourceCulture); + return ResourceManager.GetString("Trying_to_read_past_L1_table_position_0_of_a_max_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing tape files to position {0}. - /// - internal static string Writing_tape_files_to_position_0 { + internal static string Reading_L2_table_0 { get { - return ResourceManager.GetString("Writing_tape_files_to_position_0", resourceCulture); + return ResourceManager.GetString("Reading_L2_table_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing tape partitions to position {0}. - /// - internal static string Writing_tape_partitions_to_position_0 { + internal static string Trying_to_write_past_L1_table_position_0_of_a_max_1 { get { - return ResourceManager.GetString("Writing_tape_partitions_to_position_0", resourceCulture); + return ResourceManager.GetString("Trying_to_write_past_L1_table_position_0_of_a_max_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing tracks to position {0}. - /// - internal static string Writing_tracks_to_position_0 { + internal static string Qcow2_Name { get { - return ResourceManager.GetString("Writing_tracks_to_position_0", resourceCulture); + return ResourceManager.GetString("Qcow2_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Writing user data DDT to position {0}. - /// - internal static string Writing_user_data_DDT_to_position_0 { + internal static string Unknown_incompatible_features_0_enabled_not_proceeding { get { - return ResourceManager.GetString("Writing_user_data_DDT_to_position_0", resourceCulture); + return ResourceManager.GetString("Unknown_incompatible_features_0_enabled_not_proceeding", resourceCulture); + } + } + + internal static string Qed_Name { + get { + return ResourceManager.GetString("Qed_Name", resourceCulture); + } + } + + internal static string Cluster_size_must_be_a_power_of_2 { + get { + return ResourceManager.GetString("Cluster_size_must_be_a_power_of_2", resourceCulture); + } + } + + internal static string Cluster_size_must_be_between_4_Kbytes_and_64_Mbytes { + get { + return ResourceManager.GetString("Cluster_size_must_be_between_4_Kbytes_and_64_Mbytes", resourceCulture); + } + } + + internal static string Table_size_must_be_a_power_of_2 { + get { + return ResourceManager.GetString("Table_size_must_be_a_power_of_2", resourceCulture); + } + } + + internal static string Table_size_must_be_between_1_and_16_clusters { + get { + return ResourceManager.GetString("Table_size_must_be_between_1_and_16_clusters", resourceCulture); + } + } + + internal static string Image_uses_unknown_incompatible_features_0 { + get { + return ResourceManager.GetString("Image_uses_unknown_incompatible_features_0", resourceCulture); + } + } + + internal static string RsIde_Name { + get { + return ResourceManager.GetString("RsIde_Name", resourceCulture); + } + } + + internal static string Unsupported_media_tag_0 { + get { + return ResourceManager.GetString("Unsupported_media_tag_0", resourceCulture); + } + } + + internal static string SaveDskF_Name { + get { + return ResourceManager.GetString("SaveDskF_Name", resourceCulture); + } + } + + internal static string Calculated_checksum_equals_0_X8_1 { + get { + return ResourceManager.GetString("Calculated_checksum_equals_0_X8_1", resourceCulture); + } + } + + internal static string SaveDskF_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("SaveDskF_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string SaveDskF_comments_0 { + get { + return ResourceManager.GetString("SaveDskF_comments_0", resourceCulture); + } + } + + internal static string Compressed_SaveDskF_images_are_not_supported { + get { + return ResourceManager.GetString("Compressed_SaveDskF_images_are_not_supported", resourceCulture); + } + } + + internal static string SuperCardPro_Name { + get { + return ResourceManager.GetString("SuperCardPro_Name", resourceCulture); + } + } + + internal static string Track_header_at_0_contains_incorrect_signature { + get { + return ResourceManager.GetString("Track_header_at_0_contains_incorrect_signature", resourceCulture); + } + } + + internal static string Track_number_at_0_should_be_1_but_is_2 { + get { + return ResourceManager.GetString("Track_number_at_0_should_be_1_but_is_2", resourceCulture); + } + } + + internal static string Found_track_0_at_1 { + get { + return ResourceManager.GetString("Found_track_0_at_1", resourceCulture); + } + } + + internal static string Found_footer_at_0 { + get { + return ResourceManager.GetString("Found_footer_at_0", resourceCulture); + } + } + + internal static string cylinders_equal_0 { + get { + return ResourceManager.GetString("cylinders_equal_0", resourceCulture); + } + } + + internal static string T98_Name { + get { + return ResourceManager.GetString("T98_Name", resourceCulture); + } + } + + internal static string Sector_size_0_is_incorrect { + get { + return ResourceManager.GetString("Sector_size_0_is_incorrect", resourceCulture); + } + } + + internal static string Block_pattern_decoder_Input_data_size_0_bytes { + get { + return ResourceManager.GetString("Block_pattern_decoder_Input_data_size_0_bytes", resourceCulture); + } + } + + internal static string Block_pattern_decoder_Processed_input_0_bytes { + get { + return ResourceManager.GetString("Block_pattern_decoder_Processed_input_0_bytes", resourceCulture); + } + } + + internal static string Block_pattern_decoder_Output_data_size_0_bytes { + get { + return ResourceManager.GetString("Block_pattern_decoder_Output_data_size_0_bytes", resourceCulture); + } + } + + internal static string Block_pattern_decoder_Processed_Output_0_bytes { + get { + return ResourceManager.GetString("Block_pattern_decoder_Processed_Output_0_bytes", resourceCulture); + } + } + + internal static string RLE_decoder_Input_data_size_0_bytes { + get { + return ResourceManager.GetString("RLE_decoder_Input_data_size_0_bytes", resourceCulture); + } + } + + internal static string RLE_decoder_Processed_input_0_bytes { + get { + return ResourceManager.GetString("RLE_decoder_Processed_input_0_bytes", resourceCulture); + } + } + + internal static string RLE_decoder_Output_data_size_0_bytes { + get { + return ResourceManager.GetString("RLE_decoder_Output_data_size_0_bytes", resourceCulture); + } + } + + internal static string RLE_decoder_Processed_Output_0_bytes { + get { + return ResourceManager.GetString("RLE_decoder_Processed_Output_0_bytes", resourceCulture); + } + } + + internal static string Data_encoding_0_is_incorrect { + get { + return ResourceManager.GetString("Data_encoding_0_is_incorrect", resourceCulture); + } + } + + internal static string calculated_header_crc_equals_0_X4 { + get { + return ResourceManager.GetString("calculated_header_crc_equals_0_X4", resourceCulture); + } + } + + internal static string TeleDisk_Name { + get { + return ResourceManager.GetString("TeleDisk_Name", resourceCulture); + } + } + + internal static string Calculated_CRC_does_not_coincide_with_stored_one { + get { + return ResourceManager.GetString("Calculated_CRC_does_not_coincide_with_stored_one", resourceCulture); + } + } + + internal static string Comment_header { + get { + return ResourceManager.GetString("Comment_header", resourceCulture); + } + } + + internal static string Calculated_CRC_equals_0_X4 { + get { + return ResourceManager.GetString("Calculated_CRC_equals_0_X4", resourceCulture); + } + } + + internal static string Comment { + get { + return ResourceManager.GetString("Comment", resourceCulture); + } + } + + internal static string Image_modified_on_0 { + get { + return ResourceManager.GetString("Image_modified_on_0", resourceCulture); + } + } + + internal static string Parsing_image { + get { + return ResourceManager.GetString("Parsing_image", resourceCulture); + } + } + + internal static string No_cylinders_or_heads_found { + get { + return ResourceManager.GetString("No_cylinders_or_heads_found", resourceCulture); + } + } + + internal static string Track_follows { + get { + return ResourceManager.GetString("Track_follows", resourceCulture); + } + } + + internal static string Track_cylinder_0 { + get { + return ResourceManager.GetString("Track_cylinder_0", resourceCulture); + } + } + + internal static string Track_head_0 { + get { + return ResourceManager.GetString("Track_head_0", resourceCulture); + } + } + + internal static string Sectors_in_track_0 { + get { + return ResourceManager.GetString("Sectors_in_track_0", resourceCulture); + } + } + + internal static string Track_header_CRC_0_X2_calculated_1_X2 { + get { + return ResourceManager.GetString("Track_header_CRC_0_X2_calculated_1_X2", resourceCulture); + } + } + + internal static string End_of_disk_image_arrived { + get { + return ResourceManager.GetString("End_of_disk_image_arrived", resourceCulture); + } + } + + internal static string Total_of_0_data_sectors_for_1_bytes { + get { + return ResourceManager.GetString("Total_of_0_data_sectors_for_1_bytes", resourceCulture); + } + } + + internal static string Sector_follows { + get { + return ResourceManager.GetString("Sector_follows", resourceCulture); + } + } + + internal static string AddressMark_cylinder_0 { + get { + return ResourceManager.GetString("AddressMark_cylinder_0", resourceCulture); + } + } + + internal static string AddressMark_head_0 { + get { + return ResourceManager.GetString("AddressMark_head_0", resourceCulture); + } + } + + internal static string AddressMark_sector_number_0 { + get { + return ResourceManager.GetString("AddressMark_sector_number_0", resourceCulture); + } + } + + internal static string Sector_size_0 { + get { + return ResourceManager.GetString("Sector_size_0", resourceCulture); + } + } + + internal static string Sector_flags_0_X2 { + get { + return ResourceManager.GetString("Sector_flags_0_X2", resourceCulture); + } + } + + internal static string Sector_CRC_plus_headers_0_X2 { + get { + return ResourceManager.GetString("Sector_CRC_plus_headers_0_X2", resourceCulture); + } + } + + internal static string Data_size_in_image_0 { + get { + return ResourceManager.GetString("Data_size_in_image_0", resourceCulture); + } + } + + internal static string Data_encoding_0_X2 { + get { + return ResourceManager.GetString("Data_encoding_0_X2", resourceCulture); + } + } + + internal static string Sector_0_3_4_calculated_CRC_1_X2_differs_from_stored_CRC_2_X2 { + get { + return ResourceManager.GetString("Sector_0_3_4_calculated_CRC_1_X2_differs_from_stored_CRC_2_X2", resourceCulture); + } + } + + internal static string LBA_0 { + get { + return ResourceManager.GetString("LBA_0", resourceCulture); + } + } + + internal static string Sector_0_on_cylinder_1_head_2_is_duplicate_and_marked_so { + get { + return ResourceManager.GetString("Sector_0_on_cylinder_1_head_2_is_duplicate_and_marked_so", resourceCulture); + } + } + + internal static string Sector_0_on_cylinder_1_head_2_is_duplicate_but_is_not_marked_so { + get { + return ResourceManager.GetString("Sector_0_on_cylinder_1_head_2_is_duplicate_but_is_not_marked_so", resourceCulture); + } + } + + internal static string TeleDisk_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("TeleDisk_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string TeleDisk_comments_0 { + get { + return ResourceManager.GetString("TeleDisk_comments_0", resourceCulture); + } + } + + internal static string Udif_Name { + get { + return ResourceManager.GetString("Udif_Name", resourceCulture); + } + } + + internal static string Unable_to_find_UDIF_signature { + get { + return ResourceManager.GetString("Unable_to_find_UDIF_signature", resourceCulture); + } + } + + internal static string Found_obsolete_UDIF_format { + get { + return ResourceManager.GetString("Found_obsolete_UDIF_format", resourceCulture); + } + } + + internal static string Reading_resource_fork { + get { + return ResourceManager.GetString("Reading_resource_fork", resourceCulture); + } + } + + internal static string Image_resource_fork_doesnt_contain_UDIF_block_chunks { + get { + return ResourceManager.GetString("Image_resource_fork_doesnt_contain_UDIF_block_chunks", resourceCulture); + } + } + + internal static string Reading_property_list { + get { + return ResourceManager.GetString("Reading_property_list", resourceCulture); + } + } + + internal static string Could_not_parse_property_list { + get { + return ResourceManager.GetString("Could_not_parse_property_list", resourceCulture); + } + } + + internal static string Parsing_property_list { + get { + return ResourceManager.GetString("Parsing_property_list", resourceCulture); + } + } + + internal static string Could_not_retrieve_resource_fork { + get { + return ResourceManager.GetString("Could_not_retrieve_resource_fork", resourceCulture); + } + } + + internal static string Could_not_retrieve_block_chunks_array { + get { + return ResourceManager.GetString("Could_not_retrieve_block_chunks_array", resourceCulture); + } + } + + internal static string Could_not_retrieve_Name { + get { + return ResourceManager.GetString("Could_not_retrieve_Name", resourceCulture); + } + } + + internal static string Could_not_retrieve_Data { + get { + return ResourceManager.GetString("Could_not_retrieve_Data", resourceCulture); + } + } + + internal static string This_image_needs_the_resource_fork_to_work { + get { + return ResourceManager.GetString("This_image_needs_the_resource_fork_to_work", resourceCulture); + } + } + + internal static string Could_not_retrieve_block_chunks { + get { + return ResourceManager.GetString("Could_not_retrieve_block_chunks", resourceCulture); + } + } + + internal static string Chunks_compressed_with_lzfse_are_not_yet_supported { + get { + return ResourceManager.GetString("Chunks_compressed_with_lzfse_are_not_yet_supported", resourceCulture); } } - /// - /// Looks up a localized string similar to zlib exception on chunk starting at sector {0}. - /// internal static string zlib_exception_on_chunk_starting_at_sector_0 { get { return ResourceManager.GetString("zlib_exception_on_chunk_starting_at_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw Disk Image. - /// + internal static string Tried_to_rewind_this_format_not_supported { + get { + return ResourceManager.GetString("Tried_to_rewind_this_format_not_supported", resourceCulture); + } + } + + internal static string UkvFdi_Name { + get { + return ResourceManager.GetString("UkvFdi_Name", resourceCulture); + } + } + + internal static string Vdi_Name { + get { + return ResourceManager.GetString("Vdi_Name", resourceCulture); + } + } + + internal static string Support_for_image_type_0_not_yet_implemented { + get { + return ResourceManager.GetString("Support_for_image_type_0_not_yet_implemented", resourceCulture); + } + } + + internal static string Reading_Image_Block_Map { + get { + return ResourceManager.GetString("Reading_Image_Block_Map", resourceCulture); + } + } + + internal static string Reading_Image_Block_Map_took_0_ms { + get { + return ResourceManager.GetString("Reading_Image_Block_Map_took_0_ms", resourceCulture); + } + } + + internal static string Vhd_Name { + get { + return ResourceManager.GetString("Vhd_Name", resourceCulture); + } + } + + internal static string Header_checksum_equals_0_X8_calculated_equals_1_X8 { + get { + return ResourceManager.GetString("Header_checksum_equals_0_X8_calculated_equals_1_X8", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Both_header_and_footer_are_corrupt_image_cannot_be_opened { + get { + return ResourceManager.GetString("VirtualPC_plugin_Both_header_and_footer_are_corrupt_image_cannot_be_opened", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Unknown_image_type_0_found { + get { + return ResourceManager.GetString("VirtualPC_plugin_Unknown_image_type_0_found", resourceCulture); + } + } + + internal static string VirtualBox_for_unknown_OS_0 { + get { + return ResourceManager.GetString("VirtualBox_for_unknown_OS_0", resourceCulture); + } + } + + internal static string Unknown_version_0_X8 { + get { + return ResourceManager.GetString("Unknown_version_0_X8", resourceCulture); + } + } + + internal static string _5_6_or_7 { + get { + return ResourceManager.GetString("_5_6_or_7", resourceCulture); + } + } + + internal static string Virtual_PC_for_unknown_OS_0 { + get { + return ResourceManager.GetString("Virtual_PC_for_unknown_OS_0", resourceCulture); + } + } + + internal static string Unknown_application_0 { + get { + return ResourceManager.GetString("Unknown_application_0", resourceCulture); + } + } + + internal static string Dynamic_header_checksum_equals_0_X8_calculated_1_X8 { + get { + return ResourceManager.GetString("Dynamic_header_checksum_equals_0_X8_calculated_1_X8", resourceCulture); + } + } + + internal static string Filling_the_BAT_took_0_seconds { + get { + return ResourceManager.GetString("Filling_the_BAT_took_0_seconds", resourceCulture); + } + } + + internal static string Bitmap_is_0_sectors { + get { + return ResourceManager.GetString("Bitmap_is_0_sectors", resourceCulture); + } + } + + internal static string Unsupported_protocol_classified_found_in_URI_parent_path_0 { + get { + return ResourceManager.GetString("Unsupported_protocol_classified_found_in_URI_parent_path_0", resourceCulture); + } + } + + internal static string Possible_parent_path_0 { + get { + return ResourceManager.GetString("Possible_parent_path_0", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Cannot_find_parent_file_for_differencing_disk_image { + get { + return ResourceManager.GetString("VirtualPC_plugin_Cannot_find_parent_file_for_differencing_disk_image", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Cannot_find_parent_image_filter { + get { + return ResourceManager.GetString("VirtualPC_plugin_Cannot_find_parent_image_filter", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Parent_image_is_not_a_Virtual_PC_disk_image { + get { + return ResourceManager.GetString("VirtualPC_plugin_Parent_image_is_not_a_Virtual_PC_disk_image", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Error_0_opening_parent_disk_image { + get { + return ResourceManager.GetString("VirtualPC_plugin_Error_0_opening_parent_disk_image", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Parent_image_is_of_different_size { + get { + return ResourceManager.GetString("VirtualPC_plugin_Parent_image_is_of_different_size", resourceCulture); + } + } + + internal static string VirtualPC_plugin_Deprecated_image_type_found { + get { + return ResourceManager.GetString("VirtualPC_plugin_Deprecated_image_type_found", resourceCulture); + } + } + + internal static string Vhdx_Name { + get { + return ResourceManager.GetString("Vhdx_Name", resourceCulture); + } + } + + internal static string VHDX_header_not_found { + get { + return ResourceManager.GetString("VHDX_header_not_found", resourceCulture); + } + } + + internal static string VHDX_region_table_not_found { + get { + return ResourceManager.GetString("VHDX_region_table_not_found", resourceCulture); + } + } + + internal static string Found_unsupported_and_required_region_Guid_0_not_proceeding_with_image { + get { + return ResourceManager.GetString("Found_unsupported_and_required_region_Guid_0_not_proceeding_with_image", resourceCulture); + } + } + + internal static string BAT_not_found_cannot_continue { + get { + return ResourceManager.GetString("BAT_not_found_cannot_continue", resourceCulture); + } + } + + internal static string Metadata_not_found_cannot_continue { + get { + return ResourceManager.GetString("Metadata_not_found_cannot_continue", resourceCulture); + } + } + + internal static string Found_unsupported_and_required_metadata_Guid_0_not_proceeding_with_image { + get { + return ResourceManager.GetString("Found_unsupported_and_required_metadata_Guid_0_not_proceeding_with_image", resourceCulture); + } + } + + internal static string File_parameters_not_found { + get { + return ResourceManager.GetString("File_parameters_not_found", resourceCulture); + } + } + + internal static string Virtual_disk_size_not_found { + get { + return ResourceManager.GetString("Virtual_disk_size_not_found", resourceCulture); + } + } + + internal static string Logical_sector_size_not_found { + get { + return ResourceManager.GetString("Logical_sector_size_not_found", resourceCulture); + } + } + + internal static string Physical_sector_size_not_found { + get { + return ResourceManager.GetString("Physical_sector_size_not_found", resourceCulture); + } + } + + internal static string Found_unsupported_and_required_parent_locator_type_0_not_proceeding_with_image { + get { + return ResourceManager.GetString("Found_unsupported_and_required_parent_locator_type_0_not_proceeding_with_image", resourceCulture); + } + } + + internal static string Parent_locator_not_found { + get { + return ResourceManager.GetString("Parent_locator_not_found", resourceCulture); + } + } + + internal static string Image_is_differential_but_parent_cannot_be_opened { + get { + return ResourceManager.GetString("Image_is_differential_but_parent_cannot_be_opened", resourceCulture); + } + } + + internal static string Reading_Sector_Bitmap { + get { + return ResourceManager.GetString("Reading_Sector_Bitmap", resourceCulture); + } + } + + internal static string Unsupported_sector_bitmap_block_flags_0_found_not_proceeding { + get { + return ResourceManager.GetString("Unsupported_sector_bitmap_block_flags_0_found_not_proceeding", resourceCulture); + } + } + + internal static string Virtual98_Name { + get { + return ResourceManager.GetString("Virtual98_Name", resourceCulture); + } + } + + internal static string VMware_Name { + get { + return ResourceManager.GetString("VMware_Name", resourceCulture); + } + } + + internal static string Name_of_adapter_type { + get { + return ResourceManager.GetString("Name_of_adapter_type", resourceCulture); + } + } + + internal static string VDMK_hardware_version { + get { + return ResourceManager.GetString("VDMK_hardware_version", resourceCulture); + } + } + + internal static string VMware_SupportedOptions_Use_sparse_extents { + get { + return ResourceManager.GetString("VMware_SupportedOptions_Use_sparse_extents", resourceCulture); + } + } + + internal static string Split_data_file_at_2GiB { + get { + return ResourceManager.GetString("Split_data_file_at_2GiB", resourceCulture); + } + } + + internal static string Please_open_VMDK_descriptor { + get { + return ResourceManager.GetString("Please_open_VMDK_descriptor", resourceCulture); + } + } + + internal static string Not_a_descriptor { + get { + return ResourceManager.GetString("Not_a_descriptor", resourceCulture); + } + } + + internal static string Did_not_find_any_extent { + get { + return ResourceManager.GetString("Did_not_find_any_extent", resourceCulture); + } + } + + internal static string Raw_device_image_files_are_not_supported { + get { + return ResourceManager.GetString("Raw_device_image_files_are_not_supported", resourceCulture); + } + } + + internal static string Dunno_how_to_handle_0_extents { + get { + return ResourceManager.GetString("Dunno_how_to_handle_0_extents", resourceCulture); + } + } + + internal static string Extent_file_0_not_found { + get { + return ResourceManager.GetString("Extent_file_0_not_found", resourceCulture); + } + } + + internal static string Cannot_access_NOACCESS_extents { + get { + return ResourceManager.GetString("Cannot_access_NOACCESS_extents", resourceCulture); + } + } + + internal static string Extent_0_is_too_small { + get { + return ResourceManager.GetString("Extent_0_is_too_small", resourceCulture); + } + } + + internal static string _0_is_not_an_VMware_extent { + get { + return ResourceManager.GetString("_0_is_not_an_VMware_extent", resourceCulture); + } + } + + internal static string Extent_contains_incorrect_number_of_sectors_0_1_were_expected { + get { + return ResourceManager.GetString("Extent_contains_incorrect_number_of_sectors_0_1_were_expected", resourceCulture); + } + } + + internal static string Compressed_extents_are_not_yet_supported { + get { + return ResourceManager.GetString("Compressed_extents_are_not_yet_supported", resourceCulture); + } + } + + internal static string There_are_sparse_extents_but_there_is_no_header_to_find_the_grain_tables_cannot_proceed { + get { + return ResourceManager.GetString("There_are_sparse_extents_but_there_is_no_header_to_find_the_grain_tables_cannot_p" + + "roceed", resourceCulture); + } + } + + internal static string Some_error_occurred_setting_GD_sizes { + get { + return ResourceManager.GetString("Some_error_occurred_setting_GD_sizes", resourceCulture); + } + } + + internal static string _0_sectors_in_1_grains_in_2_tables { + get { + return ResourceManager.GetString("_0_sectors_in_1_grains_in_2_tables", resourceCulture); + } + } + + internal static string Reading_grain_directory { + get { + return ResourceManager.GetString("Reading_grain_directory", resourceCulture); + } + } + + internal static string Reading_grain_tables { + get { + return ResourceManager.GetString("Reading_grain_tables", resourceCulture); + } + } + + internal static string Cannot_find_parent_0 { + get { + return ResourceManager.GetString("Cannot_find_parent_0", resourceCulture); + } + } + + internal static string Error_0_opening_parent_1 { + get { + return ResourceManager.GetString("Error_0_opening_parent_1", resourceCulture); + } + } + + internal static string Invalid_adapter_type_0 { + get { + return ResourceManager.GetString("Invalid_adapter_type_0", resourceCulture); + } + } + + internal static string Invalid_value_for_hwversion_option { + get { + return ResourceManager.GetString("Invalid_value_for_hwversion_option", resourceCulture); + } + } + + internal static string Splitted_images_not_yet_implemented { + get { + return ResourceManager.GetString("Splitted_images_not_yet_implemented", resourceCulture); + } + } + + internal static string Invalid_value_for_sparse_option { + get { + return ResourceManager.GetString("Invalid_value_for_sparse_option", resourceCulture); + } + } + + internal static string Sparse_images_not_yet_implemented { + get { + return ResourceManager.GetString("Sparse_images_not_yet_implemented", resourceCulture); + } + } + + internal static string WCDiskImage_Name { + get { + return ResourceManager.GetString("WCDiskImage_Name", resourceCulture); + } + } + + internal static string Detected_WC_DISK_IMAGE_with_0_heads_1_tracks_and_2_sectors_per_track { + get { + return ResourceManager.GetString("Detected_WC_DISK_IMAGE_with_0_heads_1_tracks_and_2_sectors_per_track", resourceCulture); + } + } + + internal static string Extra_track_1_head_0_present_reading { + get { + return ResourceManager.GetString("Extra_track_1_head_0_present_reading", resourceCulture); + } + } + + internal static string Extra_track_1_head_1_present_reading { + get { + return ResourceManager.GetString("Extra_track_1_head_1_present_reading", resourceCulture); + } + } + + internal static string Extra_track_2_head_0_present_reading { + get { + return ResourceManager.GetString("Extra_track_2_head_0_present_reading", resourceCulture); + } + } + + internal static string Extra_track_2_head_1_present_reading { + get { + return ResourceManager.GetString("Extra_track_2_head_1_present_reading", resourceCulture); + } + } + + internal static string Comment_present_reading { + get { + return ResourceManager.GetString("Comment_present_reading", resourceCulture); + } + } + + internal static string Invalid_sector_type_0_encountered { + get { + return ResourceManager.GetString("Invalid_sector_type_0_encountered", resourceCulture); + } + } + + internal static string Directory_listing_present_reading { + get { + return ResourceManager.GetString("Directory_listing_present_reading", resourceCulture); + } + } + + internal static string reading_bad_sector_0_1_2_3 { + get { + return ResourceManager.GetString("reading_bad_sector_0_1_2_3", resourceCulture); + } + } + + internal static string Unexpected_sector_encountered_Found_CHS_0_1_2_but_expected_3_4_5 { + get { + return ResourceManager.GetString("Unexpected_sector_encountered_Found_CHS_0_1_2_but_expected_3_4_5", resourceCulture); + } + } + + internal static string CHS_0_1_2_CRC_mismatch_stored_CRC_3_X4_calculated_CRC_4_X4 { + get { + return ResourceManager.GetString("CHS_0_1_2_CRC_mismatch_stored_CRC_3_X4_calculated_CRC_4_X4", resourceCulture); + } + } + internal static string ZZZRawImage_Name { get { return ResourceManager.GetString("ZZZRawImage_Name", resourceCulture); } } + + internal static string Found_media_tag_0 { + get { + return ResourceManager.GetString("Found_media_tag_0", resourceCulture); + } + } + + internal static string Raw_disk_image_contains_a_disk_of_type_0 { + get { + return ResourceManager.GetString("Raw_disk_image_contains_a_disk_of_type_0", resourceCulture); + } + } + + internal static string The_specified_sector_size_does_not_correspond_with_the_requested_image_extension { + get { + return ResourceManager.GetString("The_specified_sector_size_does_not_correspond_with_the_requested_image_extension", resourceCulture); + } + } + + internal static string Found_Aaru_Metadata_block_at_position_0 { + get { + return ResourceManager.GetString("Found_Aaru_Metadata_block_at_position_0", resourceCulture); + } + } + + internal static string Exception_0_processing_Aaru_Metadata_block { + get { + return ResourceManager.GetString("Exception_0_processing_Aaru_Metadata_block", resourceCulture); + } + } + + internal static string Writing_Aaru_Metadata_block_to_position_0 { + get { + return ResourceManager.GetString("Writing_Aaru_Metadata_block_to_position_0", resourceCulture); + } + } + + internal static string A2R_Name { + get { + return ResourceManager.GetString("A2R_Name", resourceCulture); + } + } + + internal static string Invalid_block_size { + get { + return ResourceManager.GetString("Invalid_block_size", resourceCulture); + } + } + + internal static string Invalid_value_for_dynamic_option { + get { + return ResourceManager.GetString("Invalid_value_for_dynamic_option", resourceCulture); + } + } + + internal static string Block_size_too_small_for_number_of_sectors { + get { + return ResourceManager.GetString("Block_size_too_small_for_number_of_sectors", resourceCulture); + } + } + + internal static string Create_a_dynamic_image { + get { + return ResourceManager.GetString("Create_a_dynamic_image", resourceCulture); + } + } + + internal static string Vhd_Block_size_Must_be_a_power_of_2 { + get { + return ResourceManager.GetString("Vhd_Block_size_Must_be_a_power_of_2", resourceCulture); + } + } + + internal static string Negative_sectors_are_not_supported { + get { + return ResourceManager.GetString("Negative_sectors_are_not_supported", resourceCulture); + } + } + + internal static string Overflow_sectors_are_not_supported { + get { + return ResourceManager.GetString("Overflow_sectors_are_not_supported", resourceCulture); + } + } } } diff --git a/Aaru.Images/Localization/Localization.es.resx b/Aaru.Images/Localization/Localization.es.resx index 56ef84e1b..3aca3745a 100644 --- a/Aaru.Images/Localization/Localization.es.resx +++ b/Aaru.Images/Localization/Localization.es.resx @@ -2952,4 +2952,10 @@ A2R + + Los sectores negativos no están soportados. + + + Los sectores de sobrecarga no están soportados. + \ No newline at end of file diff --git a/Aaru.Images/Localization/Localization.resx b/Aaru.Images/Localization/Localization.resx index 9df8aa6d3..bbf07e24f 100644 --- a/Aaru.Images/Localization/Localization.resx +++ b/Aaru.Images/Localization/Localization.resx @@ -2959,4 +2959,10 @@ Block size. Must be a power of 2. Only 2MiB and 512KiB are supported by VirtualPC + + Negative sectors are not supported. + + + Overflow sectors are not supported. + \ No newline at end of file diff --git a/Aaru.Images/MaxiDisk/Write.cs b/Aaru.Images/MaxiDisk/Write.cs index e443bf944..e9da06e2f 100644 --- a/Aaru.Images/MaxiDisk/Write.cs +++ b/Aaru.Images/MaxiDisk/Write.cs @@ -57,6 +57,20 @@ public sealed partial class MaxiDisk return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors > 90 * 2 * 255) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/NHDr0/Write.cs b/Aaru.Images/NHDr0/Write.cs index 87dc3fbe2..5719e02a9 100644 --- a/Aaru.Images/NHDr0/Write.cs +++ b/Aaru.Images/NHDr0/Write.cs @@ -59,6 +59,20 @@ public sealed partial class Nhdr0 return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/Parallels/Write.cs b/Aaru.Images/Parallels/Write.cs index d242cbfbf..95ee75dd0 100644 --- a/Aaru.Images/Parallels/Write.cs +++ b/Aaru.Images/Parallels/Write.cs @@ -59,6 +59,20 @@ public sealed partial class Parallels return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/QCOW/Write.cs b/Aaru.Images/QCOW/Write.cs index bbc53cb90..5c538500f 100644 --- a/Aaru.Images/QCOW/Write.cs +++ b/Aaru.Images/QCOW/Write.cs @@ -60,6 +60,20 @@ public sealed partial class Qcow return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/QCOW2/Write.cs b/Aaru.Images/QCOW2/Write.cs index be9f1e1a5..bb37107ab 100644 --- a/Aaru.Images/QCOW2/Write.cs +++ b/Aaru.Images/QCOW2/Write.cs @@ -60,6 +60,20 @@ public sealed partial class Qcow2 return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/QED/Write.cs b/Aaru.Images/QED/Write.cs index 762f3010a..3b2c3971f 100644 --- a/Aaru.Images/QED/Write.cs +++ b/Aaru.Images/QED/Write.cs @@ -60,6 +60,20 @@ public sealed partial class Qed return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/RayDIM/Write.cs b/Aaru.Images/RayDIM/Write.cs index 9bfc4690d..d5bb0f804 100644 --- a/Aaru.Images/RayDIM/Write.cs +++ b/Aaru.Images/RayDIM/Write.cs @@ -59,6 +59,20 @@ public sealed partial class RayDim return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors > 255 * 255 * 255) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/RsIde/Write.cs b/Aaru.Images/RsIde/Write.cs index f8ebf7283..6844509f0 100644 --- a/Aaru.Images/RsIde/Write.cs +++ b/Aaru.Images/RsIde/Write.cs @@ -60,6 +60,20 @@ public sealed partial class RsIde return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors > 63 * 16 * 1024) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/SaveDskF/Write.cs b/Aaru.Images/SaveDskF/Write.cs index 8c22aacbb..f4e2eb8b9 100644 --- a/Aaru.Images/SaveDskF/Write.cs +++ b/Aaru.Images/SaveDskF/Write.cs @@ -231,6 +231,20 @@ public sealed partial class SaveDskF return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors > ushort.MaxValue) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/T98/Write.cs b/Aaru.Images/T98/Write.cs index 323b1aec6..7e90fe79f 100644 --- a/Aaru.Images/T98/Write.cs +++ b/Aaru.Images/T98/Write.cs @@ -59,6 +59,20 @@ public sealed partial class T98 return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/UDIF/Write.cs b/Aaru.Images/UDIF/Write.cs index 89a0ff095..f9520e76d 100644 --- a/Aaru.Images/UDIF/Write.cs +++ b/Aaru.Images/UDIF/Write.cs @@ -61,6 +61,20 @@ public sealed partial class Udif return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/VDI/Write.cs b/Aaru.Images/VDI/Write.cs index ba895030f..96cc8a159 100644 --- a/Aaru.Images/VDI/Write.cs +++ b/Aaru.Images/VDI/Write.cs @@ -60,6 +60,20 @@ public sealed partial class Vdi return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/VHD/Write.cs b/Aaru.Images/VHD/Write.cs index 5c6ee364b..683be7e61 100644 --- a/Aaru.Images/VHD/Write.cs +++ b/Aaru.Images/VHD/Write.cs @@ -215,6 +215,20 @@ public sealed partial class Vhd return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/VMware/Write.cs b/Aaru.Images/VMware/Write.cs index 510fb807c..4c893e4b0 100644 --- a/Aaru.Images/VMware/Write.cs +++ b/Aaru.Images/VMware/Write.cs @@ -135,6 +135,20 @@ public sealed partial class VMware return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(!SupportedMediaTypes.Contains(mediaType)) { ErrorMessage = string.Format(Localization.Unsupported_media_format_0, mediaType); diff --git a/Aaru.Images/Virtual98/Write.cs b/Aaru.Images/Virtual98/Write.cs index 750e4e429..87865e5b3 100644 --- a/Aaru.Images/Virtual98/Write.cs +++ b/Aaru.Images/Virtual98/Write.cs @@ -59,6 +59,20 @@ public sealed partial class Virtual98 return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + if(sectors > uint.MaxValue) { ErrorMessage = Localization.Too_many_sectors; diff --git a/Aaru.Images/ZZZRawImage/Write.cs b/Aaru.Images/ZZZRawImage/Write.cs index 51c957f2d..049c725ec 100644 --- a/Aaru.Images/ZZZRawImage/Write.cs +++ b/Aaru.Images/ZZZRawImage/Write.cs @@ -57,6 +57,20 @@ public sealed partial class ZZZRawImage return false; } + if(negativeSectors != 0) + { + ErrorMessage = Localization.Negative_sectors_are_not_supported; + + return false; + } + + if(overflowSectors != 0) + { + ErrorMessage = Localization.Overflow_sectors_are_not_supported; + + return false; + } + _extension = Path.GetExtension(path)?.ToLower(); switch(_extension)