diff --git a/Aaru.Core/Entropy.cs b/Aaru.Core/Entropy.cs index 70a4320e4..b7bcc1409 100644 --- a/Aaru.Core/Entropy.cs +++ b/Aaru.Core/Entropy.cs @@ -171,7 +171,7 @@ public sealed class Entropy if(_debug) { AaruLogging.Debug(Localization.Core.Could_not_get_tracks_because_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Could_not_get_tracks_because_0, ex.Message); } else { diff --git a/Aaru.Core/Filesystems.cs b/Aaru.Core/Filesystems.cs index 09e43e0d1..e056e0e2d 100644 --- a/Aaru.Core/Filesystems.cs +++ b/Aaru.Core/Filesystems.cs @@ -67,10 +67,11 @@ public static class Filesystems catch(Exception ex) { AaruLogging - .Error("Error identifying filesystem {0}. Please open a report with the following line in a Github issue.", + .Error(Localization.Core.Filesystems_Identify_Error, plugin.Name); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Filesystems_Identify_Error, + plugin.Name); } } } diff --git a/Aaru.Core/Remote.cs b/Aaru.Core/Remote.cs index c4267b6a8..aa782ead8 100644 --- a/Aaru.Core/Remote.cs +++ b/Aaru.Core/Remote.cs @@ -585,7 +585,7 @@ public static class Remote catch(Exception ex) { AaruLogging.Error(Localization.Core.Exception_0_when_updating_database, ex); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_0_when_updating_database, ex.Message); } finally { diff --git a/Aaru.Core/Statistics.cs b/Aaru.Core/Statistics.cs index c2b3591d6..32e94816f 100644 --- a/Aaru.Core/Statistics.cs +++ b/Aaru.Core/Statistics.cs @@ -89,7 +89,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -105,7 +105,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } if(Settings.Settings.Current.Stats is { ShareStats: true }) await SubmitStatsAsync(); @@ -432,7 +432,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -460,7 +460,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -488,7 +488,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -516,7 +516,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -544,7 +544,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -587,7 +587,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -615,7 +615,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } @@ -657,7 +657,7 @@ public static class Statistics catch(SqliteException ex) { AaruLogging.Debug(MODULE_NAME, Localization.Core.Exception_while_trying_to_save_statistics); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Exception_while_trying_to_save_statistics); } } } \ No newline at end of file diff --git a/Aaru.Filesystems/ISO9660/File.cs b/Aaru.Filesystems/ISO9660/File.cs index 0dae6ceea..f363ff7b8 100644 --- a/Aaru.Filesystems/ISO9660/File.cs +++ b/Aaru.Filesystems/ISO9660/File.cs @@ -171,7 +171,7 @@ public sealed partial class ISO9660 catch(Exception ex) { AaruLogging.Debug(MODULE_NAME, Localization.Exception_reading_CD_i_audio_file); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_reading_CD_i_audio_file); read = 0; diff --git a/Aaru.Filesystems/LisaFS/Super.cs b/Aaru.Filesystems/LisaFS/Super.cs index a698a9370..d6809ac7a 100644 --- a/Aaru.Filesystems/LisaFS/Super.cs +++ b/Aaru.Filesystems/LisaFS/Super.cs @@ -342,7 +342,7 @@ public sealed partial class LisaFS } catch(Exception ex) { - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Unhandled_exception_mounting_Lisa_filesystem); return ErrorNumber.InOutError; } diff --git a/Aaru.Filesystems/Localization/Localization.Designer.cs b/Aaru.Filesystems/Localization/Localization.Designer.cs index 50998d04c..f6d13ca99 100644 --- a/Aaru.Filesystems/Localization/Localization.Designer.cs +++ b/Aaru.Filesystems/Localization/Localization.Designer.cs @@ -11,46 +11,32 @@ namespace Aaru.Filesystems { 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.Filesystems.Localization.Localization", typeof(Localization).Assembly); + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aaru.Filesystems.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,8195 +45,1782 @@ namespace Aaru.Filesystems { } } - /// - /// Looks up a localized string similar to {0}[{1}] = Unknown data type {2}. - /// - internal static string _0_1_equals_unknown_data_type_2 { - get { - return ResourceManager.GetString("_0_1_equals_unknown_data_type_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} allocation blocks.. - /// - internal static string _0_allocation_blocks { - get { - return ResourceManager.GetString("_0_allocation_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} allocation groups in volume. - /// - internal static string _0_allocation_groups_in_volume { - get { - return ResourceManager.GetString("_0_allocation_groups_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks ({1} bytes). - /// - internal static string _0_blocks_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks ({1} bytes) free of {2} ({3} bytes). - /// - internal static string _0_blocks_1_bytes_free_of_2_3_bytes { - get { - return ResourceManager.GetString("_0_blocks_1_bytes_free_of_2_3_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks, {1} flags and {2} inodes per group. - /// - internal static string _0_blocks_1_flags_and_2_inodes_per_group { - get { - return ResourceManager.GetString("_0_blocks_1_flags_and_2_inodes_per_group", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks for bootloader ({1} bytes). - /// - internal static string _0_blocks_for_bootloader_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_for_bootloader_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks free. - /// - internal static string _0_blocks_free { - get { - return ResourceManager.GetString("_0_blocks_free", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks free ({1} bytes). - /// - internal static string _0_blocks_free_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_free_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks in cylinder 0. - /// - internal static string _0_blocks_in_cylinder_zero { - get { - return ResourceManager.GetString("_0_blocks_in_cylinder_zero", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks in filesystem. - /// - internal static string _0_blocks_in_filesystem { - get { - return ResourceManager.GetString("_0_blocks_in_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks in volume. - /// - internal static string _0_blocks_in_volume { - get { - return ResourceManager.GetString("_0_blocks_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks in volume ({1} bytes). - /// - internal static string _0_blocks_in_volume_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_in_volume_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks in volume bitmap cache. - /// - internal static string _0_blocks_in_volume_bitmap_cache { - get { - return ResourceManager.GetString("_0_blocks_in_volume_bitmap_cache", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks in volume cache. - /// - internal static string _0_blocks_in_volume_cache { - get { - return ResourceManager.GetString("_0_blocks_in_volume_cache", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks in volume common cache. - /// - internal static string _0_blocks_in_volume_common_cache { - get { - return ResourceManager.GetString("_0_blocks_in_volume_common_cache", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks minus one. - /// - internal static string _0_blocks_minus_one { - get { - return ResourceManager.GetString("_0_blocks_minus_one", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks minus one minus MDDF offset. - /// - internal static string _0_blocks_minus_one_minus_MDDF_offset { - get { - return ResourceManager.GetString("_0_blocks_minus_one_minus_MDDF_offset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks of {1} bytes. - /// - internal static string _0_blocks_of_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_of_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks on all data disks. - /// - internal static string _0_blocks_on_all_data_disks { - get { - return ResourceManager.GetString("_0_blocks_on_all_data_disks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks on cluster summary array. - /// - internal static string _0_blocks_on_cluster_summary_array { - get { - return ResourceManager.GetString("_0_blocks_on_cluster_summary_array", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks on inode map ({1} bytes). - /// - internal static string _0_blocks_on_inode_map_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_on_inode_map_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks on zone map ({1} bytes). - /// - internal static string _0_blocks_on_zone_map_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_on_zone_map_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks pending of being freed. - /// - internal static string _0_blocks_pending_of_being_freed { - get { - return ResourceManager.GetString("_0_blocks_pending_of_being_freed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per allocation group. - /// - internal static string _0_blocks_per_allocation_group { - get { - return ResourceManager.GetString("_0_blocks_per_allocation_group", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per allocation group ({1} bytes). - /// - internal static string _0_blocks_per_allocation_group_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_per_allocation_group_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per cluster. - /// - internal static string _0_blocks_per_cluster { - get { - return ResourceManager.GetString("_0_blocks_per_cluster", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per cylinder. - /// - internal static string _0_blocks_per_cylinder { - get { - return ResourceManager.GetString("_0_blocks_per_cylinder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per cylinder ({1} bytes). - /// - internal static string _0_blocks_per_cylinder_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_per_cylinder_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per cylinder group at maximum. - /// - internal static string _0_blocks_per_cylinder_group_at_maximum { - get { - return ResourceManager.GetString("_0_blocks_per_cylinder_group_at_maximum", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per gap ({1} bytes). - /// - internal static string _0_blocks_per_gap_1_bytes { - get { - return ResourceManager.GetString("_0_blocks_per_gap_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per group. - /// - internal static string _0_blocks_per_group { - get { - return ResourceManager.GetString("_0_blocks_per_group", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per rotation. - /// - internal static string _0_blocks_per_rotation { - get { - return ResourceManager.GetString("_0_blocks_per_rotation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} blocks per segment. - /// - internal static string _0_blocks_per_segment { - get { - return ResourceManager.GetString("_0_blocks_per_segment", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes/block. - /// - internal static string _0_bytes_block { - get { - return ResourceManager.GetString("_0_bytes_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in a basic block. - /// - internal static string _0_bytes_in_a_basic_block { - get { - return ResourceManager.GetString("_0_bytes_in_a_basic_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in a frag block. - /// - internal static string _0_bytes_in_a_frag_block { - get { - return ResourceManager.GetString("_0_bytes_in_a_frag_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in allocation bitmap. - /// - internal static string _0_bytes_in_allocation_bitmap { - get { - return ResourceManager.GetString("_0_bytes_in_allocation_bitmap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in cylinder group. - /// - internal static string _0_bytes_in_cylinder_group { - get { - return ResourceManager.GetString("_0_bytes_in_cylinder_group", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in cylinder group summary. - /// - internal static string _0_bytes_in_cylinder_group_summary { - get { - return ResourceManager.GetString("_0_bytes_in_cylinder_group_summary", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in erase block. - /// - internal static string _0_bytes_in_erase_block { - get { - return ResourceManager.GetString("_0_bytes_in_erase_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in LisaInfo. - /// - internal static string _0_bytes_in_LisaInfo { - get { - return ResourceManager.GetString("_0_bytes_in_LisaInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in the Catalog B-Tree. - /// - internal static string _0_bytes_in_the_Catalog_B_Tree { - get { - return ResourceManager.GetString("_0_bytes_in_the_Catalog_B_Tree", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in the Extents B-Tree. - /// - internal static string _0_bytes_in_the_Extents_B_Tree { - get { - return ResourceManager.GetString("_0_bytes_in_the_Extents_B_Tree", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes in volume. - /// - internal static string _0_bytes_in_volume { - get { - return ResourceManager.GetString("_0_bytes_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes/leaf. - /// - internal static string _0_bytes_leaf { - get { - return ResourceManager.GetString("_0_bytes_leaf", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes maximum per file. - /// - internal static string _0_bytes_maximum_per_file { - get { - return ResourceManager.GetString("_0_bytes_maximum_per_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes/node. - /// - internal static string _0_bytes_node { - get { - return ResourceManager.GetString("_0_bytes_node", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes on bitmap. - /// - internal static string _0_bytes_on_bitmap { - get { - return ResourceManager.GetString("_0_bytes_on_bitmap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per allocation block.. - /// - internal static string _0_bytes_per_allocation_block { - get { - return ResourceManager.GetString("_0_bytes_per_allocation_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per block. - /// - internal static string _0_bytes_per_block { - get { - return ResourceManager.GetString("_0_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per directory entry. - /// - internal static string _0_bytes_per_directory_entry { - get { - return ResourceManager.GetString("_0_bytes_per_directory_entry", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per fragment. - /// - internal static string _0_bytes_per_fragment { - get { - return ResourceManager.GetString("_0_bytes_per_fragment", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per i-node. - /// - internal static string _0_bytes_per_i_node { - get { - return ResourceManager.GetString("_0_bytes_per_i_node", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per Index block. - /// - internal static string _0_bytes_per_Index_block { - get { - return ResourceManager.GetString("_0_bytes_per_Index_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per inode. - /// - internal static string _0_bytes_per_inode { - get { - return ResourceManager.GetString("_0_bytes_per_inode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per MFT record. - /// - internal static string _0_bytes_per_MFT_record { - get { - return ResourceManager.GetString("_0_bytes_per_MFT_record", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per page. - /// - internal static string _0_bytes_per_page { - get { - return ResourceManager.GetString("_0_bytes_per_page", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per sector.. - /// - internal static string _0_bytes_per_sector { - get { - return ResourceManager.GetString("_0_bytes_per_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per sector (uncooked). - /// - internal static string _0_bytes_per_sector_uncooked { - get { - return ResourceManager.GetString("_0_bytes_per_sector_uncooked", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes per zone. - /// - internal static string _0_bytes_per_zone { - get { - return ResourceManager.GetString("_0_bytes_per_zone", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes/sector. - /// - internal static string _0_bytes_sector { - get { - return ResourceManager.GetString("_0_bytes_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes/stripe. - /// - internal static string _0_bytes_stripe { - get { - return ResourceManager.GetString("_0_bytes_stripe", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes to allocate.. - /// - internal static string _0_bytes_to_allocate { - get { - return ResourceManager.GetString("_0_bytes_to_allocate", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes to allocate when extending a Catalog B-Tree.. - /// - internal static string _0_bytes_to_allocate_when_extending_a_Catalog_B_Tree { - get { - return ResourceManager.GetString("_0_bytes_to_allocate_when_extending_a_Catalog_B_Tree", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes to allocate when extending a Extents B-Tree.. - /// - internal static string _0_bytes_to_allocate_when_extending_a_Extents_B_Tree { - get { - return ResourceManager.GetString("_0_bytes_to_allocate_when_extending_a_Extents_B_Tree", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} bytes to allocate when extending a file.. - /// - internal static string _0_bytes_to_allocate_when_extending_a_file { - get { - return ResourceManager.GetString("_0_bytes_to_allocate_when_extending_a_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} chars in filename. - /// - internal static string _0_chars_in_filename { - get { - return ResourceManager.GetString("_0_chars_in_filename", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} clusters on volume.. - /// - internal static string _0_clusters_on_volume { - get { - return ResourceManager.GetString("_0_clusters_on_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} clusters per Index block ({1} bytes). - /// - internal static string _0_clusters_per_Index_block_1_bytes { - get { - return ResourceManager.GetString("_0_clusters_per_Index_block_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} clusters per MFT record ({1} bytes). - /// - internal static string _0_clusters_per_MFT_record_1_bytes { - get { - return ResourceManager.GetString("_0_clusters_per_MFT_record_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} codepages used in the volume. - /// - internal static string _0_codepages_used_in_the_volume { - get { - return ResourceManager.GetString("_0_codepages_used_in_the_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} contiguous blocks at maximum. - /// - internal static string _0_contiguous_blocks_at_maximum { - get { - return ResourceManager.GetString("_0_contiguous_blocks_at_maximum", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} contiguously allocated directories. - /// - internal static string _0_contiguously_allocated_directories { - get { - return ResourceManager.GetString("_0_contiguously_allocated_directories", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} cylinder groups. - /// - internal static string _0_cylinder_groups { - get { - return ResourceManager.GetString("_0_cylinder_groups", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} cylinder groups in volume. - /// - internal static string _0_cylinder_groups_in_volume { - get { - return ResourceManager.GetString("_0_cylinder_groups_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} cylinders. - /// - internal static string _0_cylinders { - get { - return ResourceManager.GetString("_0_cylinders", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} cylinders/group. - /// - internal static string _0_cylinders_group { - get { - return ResourceManager.GetString("_0_cylinders_group", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} cylinders in volume. - /// - internal static string _0_cylinders_in_volume { - get { - return ResourceManager.GetString("_0_cylinders_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} data blocks ({1} bytes). - /// - internal static string _0_data_blocks_1_bytes { - get { - return ResourceManager.GetString("_0_data_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} data blocks in volume. - /// - internal static string _0_data_blocks_in_volume { - get { - return ResourceManager.GetString("_0_data_blocks_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} data blocks in volume ({1} bytes). - /// - internal static string _0_data_blocks_in_volume_1_bytes { - get { - return ResourceManager.GetString("_0_data_blocks_in_volume_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} data blocks in volume, {1} free. - /// - internal static string _0_data_blocks_in_volume_1_free { - get { - return ResourceManager.GetString("_0_data_blocks_in_volume_1_free", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} data zones ({1} bytes). - /// - internal static string _0_data_zones_1_bytes { - get { - return ResourceManager.GetString("_0_data_zones_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} directories. - /// - internal static string _0_directories { - get { - return ResourceManager.GetString("_0_directories", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} directories in root directory. - /// - internal static string _0_directories_in_root_directory { - get { - return ResourceManager.GetString("_0_directories_in_root_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} directories in volume. - /// - internal static string _0_directories_in_volume { - get { - return ResourceManager.GetString("_0_directories_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} entries in root directory.. - /// - internal static string _0_entries_in_root_directory { - get { - return ResourceManager.GetString("_0_entries_in_root_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} entries per directory block. - /// - internal static string _0_entries_per_directory_block { - get { - return ResourceManager.GetString("_0_entries_per_directory_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} = {1} elements nvlist[], unable to print. - /// - internal static string _0_equals_1_elements_nvlist_array_unable_to_print { - get { - return ResourceManager.GetString("_0_equals_1_elements_nvlist_array_unable_to_print", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} = Unknown data type {1}. - /// - internal static string _0_equals_unknown_data_type_1 { - get { - return ResourceManager.GetString("_0_equals_unknown_data_type_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} errors registered. - /// - internal static string _0_errors_registered { - get { - return ResourceManager.GetString("_0_errors_registered", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} FATs.. - /// - internal static string _0_FATs { - get { - return ResourceManager.GetString("_0_FATs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} files in root directory. - /// - internal static string _0_files_in_root_directory { - get { - return ResourceManager.GetString("_0_files_in_root_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} files in volume. - /// - internal static string _0_files_in_volume { - get { - return ResourceManager.GetString("_0_files_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} size of FLEX_BG group. - /// - internal static string _0_Flexible_block_group_size { - get { - return ResourceManager.GetString("_0_Flexible_block_group_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} frags in a block. - /// - internal static string _0_frags_in_a_block { - get { - return ResourceManager.GetString("_0_frags_in_a_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free blocks.. - /// - internal static string _0_free_blocks { - get { - return ResourceManager.GetString("_0_free_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free blocks ({1} bytes). - /// - internal static string _0_free_blocks_1_bytes { - get { - return ResourceManager.GetString("_0_free_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free blocks on list ({1} bytes). - /// - internal static string _0_free_blocks_on_list_1_bytes { - get { - return ResourceManager.GetString("_0_free_blocks_on_list_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free clusters. - /// - internal static string _0_free_clusters { - get { - return ResourceManager.GetString("_0_free_clusters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free frags. - /// - internal static string _0_free_frags { - get { - return ResourceManager.GetString("_0_free_frags", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free inodes. - /// - internal static string _0_free_inodes { - get { - return ResourceManager.GetString("_0_free_inodes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free inodes on list. - /// - internal static string _0_free_inodes_on_list { - get { - return ResourceManager.GetString("_0_free_inodes_on_list", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free inodes on volume. - /// - internal static string _0_free_inodes_on_volume { - get { - return ResourceManager.GetString("_0_free_inodes_on_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free spare DNodes. - /// - internal static string _0_free_spare_DNodes { - get { - return ResourceManager.GetString("_0_free_spare_DNodes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} free zones on volume ({1} bytes). - /// - internal static string _0_free_zones_on_volume_1_bytes { - get { - return ResourceManager.GetString("_0_free_zones_on_volume_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} heads.. - /// - internal static string _0_heads { - get { - return ResourceManager.GetString("_0_heads", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} heads per cylinder. - /// - internal static string _0_heads_per_cylinder { - get { - return ResourceManager.GetString("_0_heads_per_cylinder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} hidden sectors before BPB.. - /// - internal static string _0_hidden_sectors_before_BPB { - get { - return ResourceManager.GetString("_0_hidden_sectors_before_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} hidden sectors before filesystem. - /// - internal static string _0_hidden_sectors_before_filesystem { - get { - return ResourceManager.GetString("_0_hidden_sectors_before_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} imap zones ({1} bytes). - /// - internal static string _0_imap_zones_1_bytes { - get { - return ResourceManager.GetString("_0_imap_zones_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes. - /// - internal static string _0_inodes { - get { - return ResourceManager.GetString("_0_inodes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes free of {1}. - /// - internal static string _0_inodes_free_of_1 { - get { - return ResourceManager.GetString("_0_inodes_free_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes in volume. - /// - internal static string _0_inodes_in_volume { - get { - return ResourceManager.GetString("_0_inodes_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes in volume, {1} free. - /// - internal static string _0_inodes_in_volume_1_free { - get { - return ResourceManager.GetString("_0_inodes_in_volume_1_free", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes in volume, {1} free ({2}%). - /// - internal static string _0_inodes_in_volume_1_free_2 { - get { - return ResourceManager.GetString("_0_inodes_in_volume_1_free_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes pending of being freed. - /// - internal static string _0_inodes_pending_of_being_freed { - get { - return ResourceManager.GetString("_0_inodes_pending_of_being_freed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes per cylinder group. - /// - internal static string _0_inodes_per_cylinder_group { - get { - return ResourceManager.GetString("_0_inodes_per_cylinder_group", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} inodes with {1} free inodes ({2}%). - /// - internal static string _0_inodes_with_1_free_inodes_2 { - get { - return ResourceManager.GetString("_0_inodes_with_1_free_inodes_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} is first data block. - /// - internal static string _0_is_first_data_block { - get { - return ResourceManager.GetString("_0_is_first_data_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} is not set. - /// - internal static string _0_is_not_set { - get { - return ResourceManager.GetString("_0_is_not_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} KiB has been written on volume. - /// - internal static string _0_KiB_has_been_written_on_volume { - get { - return ResourceManager.GetString("_0_KiB_has_been_written_on_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} logical sectors ({1} bytes) per physical sector. - /// - internal static string _0_logical_sectors_1_bytes_per_physical_sector { - get { - return ResourceManager.GetString("_0_logical_sectors_1_bytes_per_physical_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} maximum files on the volume. - /// - internal static string _0_maximum_files_on_the_volume { - get { - return ResourceManager.GetString("_0_maximum_files_on_the_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0}ms for optimal next block. - /// - internal static string _0_ms_for_optimal_next_block { - get { - return ResourceManager.GetString("_0_ms_for_optimal_next_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} nanoseconds program time. - /// - internal static string _0_nanoseconds_program_time { - get { - return ResourceManager.GetString("_0_nanoseconds_program_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} nanoseconds random access time. - /// - internal static string _0_nanoseconds_random_access_time { - get { - return ResourceManager.GetString("_0_nanoseconds_random_access_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} nanoseconds read cycle time. - /// - internal static string _0_nanoseconds_read_cycle_time { - get { - return ResourceManager.GetString("_0_nanoseconds_read_cycle_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} nanoseconds write cycle time. - /// - internal static string _0_nanoseconds_write_cycle_time { - get { - return ResourceManager.GetString("_0_nanoseconds_write_cycle_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0}% of blocks must be free. - /// - internal static string _0_of_blocks_must_be_free { - get { - return ResourceManager.GetString("_0_of_blocks_must_be_free", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} reserved and {1} free blocks. - /// - internal static string _0_reserved_and_1_free_blocks { - get { - return ResourceManager.GetString("_0_reserved_and_1_free_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} reserved files. - /// - internal static string _0_reserved_files { - get { - return ResourceManager.GetString("_0_reserved_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} rotational positions. - /// - internal static string _0_rotational_positions { - get { - return ResourceManager.GetString("_0_rotational_positions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} seconds for multi-mount protection wait, on block {1}. - /// - internal static string _0_seconds_for_multi_mount_protection_wait_on_block_1 { - get { - return ResourceManager.GetString("_0_seconds_for_multi_mount_protection_wait_on_block_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sections. - /// - internal static string _0_sections { - get { - return ResourceManager.GetString("_0_sections", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sections per zone. - /// - internal static string _0_sections_per_zone { - get { - return ResourceManager.GetString("_0_sections_per_zone", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors. - /// - internal static string _0_sectors { - get { - return ResourceManager.GetString("_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors ({1} bytes) per block. - /// - internal static string _0_sectors_1_bytes_per_block { - get { - return ResourceManager.GetString("_0_sectors_1_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors ({1} bytes) per cluster. - /// - internal static string _0_sectors_1_bytes_per_cluster { - get { - return ResourceManager.GetString("_0_sectors_1_bytes_per_cluster", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors are marked bad. - /// - internal static string _0_sectors_are_marked_bad { - get { - return ResourceManager.GetString("_0_sectors_are_marked_bad", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors/cylinder. - /// - internal static string _0_sectors_cylinder { - get { - return ResourceManager.GetString("_0_sectors_cylinder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors hidden before BPB. - /// - internal static string _0_sectors_hidden_before_BPB { - get { - return ResourceManager.GetString("_0_sectors_hidden_before_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors in directory.. - /// - internal static string _0_sectors_in_directory { - get { - return ResourceManager.GetString("_0_sectors_in_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors on volume ({1} bytes).. - /// - internal static string _0_sectors_on_volume_1_bytes { - get { - return ResourceManager.GetString("_0_sectors_on_volume_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors per cluster.. - /// - internal static string _0_sectors_per_cluster { - get { - return ResourceManager.GetString("_0_sectors_per_cluster", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors per cluster ({1} bytes). - /// - internal static string _0_sectors_per_cluster_1_bytes { - get { - return ResourceManager.GetString("_0_sectors_per_cluster_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors per FAT.. - /// - internal static string _0_sectors_per_FAT { - get { - return ResourceManager.GetString("_0_sectors_per_FAT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors per track.. - /// - internal static string _0_sectors_per_track { - get { - return ResourceManager.GetString("_0_sectors_per_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors reserved between BPB and FAT.. - /// - internal static string _0_sectors_reserved_between_BPB_and_FAT { - get { - return ResourceManager.GetString("_0_sectors_reserved_between_BPB_and_FAT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} sectors/track. - /// - internal static string _0_sectors_track { - get { - return ResourceManager.GetString("_0_sectors_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} segments. - /// - internal static string _0_segments { - get { - return ResourceManager.GetString("_0_segments", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} segments per section. - /// - internal static string _0_segments_per_section { - get { - return ResourceManager.GetString("_0_segments_per_section", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} spare blocks. - /// - internal static string _0_spare_blocks { - get { - return ResourceManager.GetString("_0_spare_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} total Hotfix entries. - /// - internal static string _0_total_Hotfix_entries { - get { - return ResourceManager.GetString("_0_total_Hotfix_entries", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} total spare DNodes. - /// - internal static string _0_total_spare_DNodes { - get { - return ResourceManager.GetString("_0_total_spare_DNodes", 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 {0} tracks/cylinder. - /// - internal static string _0_tracks_cylinder { - get { - return ResourceManager.GetString("_0_tracks_cylinder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} tracks in volume. - /// - internal static string _0_tracks_in_volume { - get { - return ResourceManager.GetString("_0_tracks_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} unused allocation blocks.. - /// - internal static string _0_unused_allocation_blocks { - get { - return ResourceManager.GetString("_0_unused_allocation_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} used blocks ({1} bytes). - /// - internal static string _0_used_blocks_1_bytes { - get { - return ResourceManager.GetString("_0_used_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} used Hotfix entries. - /// - internal static string _0_used_Hotfix_entries { - get { - return ResourceManager.GetString("_0_used_Hotfix_entries", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} used sectors on volume. - /// - internal static string _0_used_sectors_on_volume { - get { - return ResourceManager.GetString("_0_used_sectors_on_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} volume allocation blocks.. - /// - internal static string _0_volume_allocation_blocks { - get { - return ResourceManager.GetString("_0_volume_allocation_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} zmap zones ({1} bytes). - /// - internal static string _0_zmap_zones_1_bytes { - get { - return ResourceManager.GetString("_0_zmap_zones_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} zones in volume. - /// - internal static string _0_zones_in_volume { - get { - return ResourceManager.GetString("_0_zones_in_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} zones in volume ({1} bytes). - /// - internal static string _0_zones_in_volume_1_bytes { - get { - return ResourceManager.GetString("_0_zones_in_volume_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} zones reserved for kernel images ({1} bytes). - /// - internal static string _0_zones_reserved_for_kernel_images_1_bytes { - get { - return ResourceManager.GetString("_0_zones_reserved_for_kernel_images_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} µsec for head switch. - /// - internal static string _0_µsec_for_head_switch { - get { - return ResourceManager.GetString("_0_µsec_for_head_switch", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} µsec for track-to-track seek. - /// - internal static string _0_µsec_for_track_to_track_seek { - get { - return ResourceManager.GetString("_0_µsec_for_track_to_track_seek", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 1024 bytes per block. - /// - internal static string _1024_bytes_per_block { - get { - return ResourceManager.GetString("_1024_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 2048 bytes per block. - /// - internal static string _2048_bytes_per_block { - get { - return ResourceManager.GetString("_2048_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 4096 bytes per block. - /// - internal static string _4096_bytes_per_block { - get { - return ResourceManager.GetString("_4096_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 512 bytes per block. - /// - internal static string _512_bytes_per_block { - get { - return ResourceManager.GetString("_512_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to A file can be {0} bytes at max. - /// - internal static string A_file_can_be_0_bytes_at_max { - get { - return ResourceManager.GetString("A_file_can_be_0_bytes_at_max", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (acl): Enable POSIX ACLs. - /// - internal static string acl_Enable_POSIX_ACLs { - get { - return ResourceManager.GetString("acl_Enable_POSIX_ACLs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Acorn Advanced Disc Filing System. - /// - internal static string Acorn_Advanced_Disc_Filing_System { - get { - return ResourceManager.GetString("Acorn_Advanced_Disc_Filing_System", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Acorn Advanced Disc Filing System. - /// - internal static string AcornADFS_Name { - get { - return ResourceManager.GetString("AcornADFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Active root block {0}. - /// - internal static string Active_root_block_0 { - get { - return ResourceManager.GetString("Active_root_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Active snapshot has ID {0}, on inode {1}, with {2} blocks reserved, list starting on block {3}. - /// - internal static string Active_snapshot_has_ID_0_on_inode_1_with_2_blocks_reserved_list_starting_on_block_3 { - get { - return ResourceManager.GetString("Active_snapshot_has_ID_0_on_inode_1_with_2_blocks_reserved_list_starting_on_block" + - "_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Admin space container starts in block {0}. - /// - internal static string Admin_space_container_starts_in_block_0 { - get { - return ResourceManager.GetString("Admin_space_container_starts_in_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Alexander Osipov DOS file system. - /// - internal static string Alexander_Osipov_DOS_file_system { - get { - return ResourceManager.GetString("Alexander_Osipov_DOS_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All copies of FAT are the same.. - /// - internal static string All_copies_of_FAT_are_the_same { - get { - return ResourceManager.GetString("All_copies_of_FAT_are_the_same", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All of the following information may be incorrect. - /// - internal static string All_of_the_following_information_may_be_incorrect { - get { - return ResourceManager.GetString("All_of_the_following_information_may_be_incorrect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allocate secondary sound and video buffers at boot.. - /// - internal static string Allocate_secondary_sound_and_video_buffers_at_boot { - get { - return ResourceManager.GetString("Allocate_secondary_sound_and_video_buffers_at_boot", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allocate secondary sound buffer at boot.. - /// - internal static string Allocate_secondary_sound_buffer_at_boot { - get { - return ResourceManager.GetString("Allocate_secondary_sound_buffer_at_boot", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allocation bitmap descriptor starts at block {0}. - /// - internal static string Allocation_bitmap_descriptor_starts_at_block_0 { - get { - return ResourceManager.GetString("Allocation_bitmap_descriptor_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allocation File is {0} bytes.. - /// - internal static string Allocation_File_is_0_bytes { - get { - return ResourceManager.GetString("Allocation_File_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allocations blocks of the HFS+ volume: {0}. - /// - internal static string Allocations_blocks_of_the_HFS_Plus_volume_0 { - get { - return ResourceManager.GetString("Allocations_blocks_of_the_HFS_Plus_volume_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga extensions present.. - /// - internal static string Amiga_extensions_present { - get { - return ResourceManager.GetString("Amiga_extensions_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Fast File System. - /// - internal static string Amiga_Fast_File_System { - get { - return ResourceManager.GetString("Amiga_Fast_File_System", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Fast File System with directory cache. - /// - internal static string Amiga_Fast_File_System_with_directory_cache { - get { - return ResourceManager.GetString("Amiga_Fast_File_System_with_directory_cache", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Fast File System with international characters. - /// - internal static string Amiga_Fast_File_System_with_international_characters { - get { - return ResourceManager.GetString("Amiga_Fast_File_System_with_international_characters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Fast File System with long filenames. - /// - internal static string Amiga_Fast_File_System_with_long_filenames { - get { - return ResourceManager.GetString("Amiga_Fast_File_System_with_long_filenames", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Original File System. - /// - internal static string Amiga_Original_File_System { - get { - return ResourceManager.GetString("Amiga_Original_File_System", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Original File System with directory cache. - /// - internal static string Amiga_Original_File_System_with_directory_cache { - get { - return ResourceManager.GetString("Amiga_Original_File_System_with_directory_cache", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Original File System with international characters. - /// - internal static string Amiga_Original_File_System_with_international_characters { - get { - return ResourceManager.GetString("Amiga_Original_File_System_with_international_characters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga Original File System with long filenames. - /// - internal static string Amiga_Original_File_System_with_long_filenames { - get { - return ResourceManager.GetString("Amiga_Original_File_System_with_long_filenames", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Amiga DOS filesystem. - /// - internal static string AmigaDOSPlugin_Name { - get { - return ResourceManager.GetString("AmigaDOSPlugin_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Alexander Osipov DOS file system. - /// - internal static string AODOS_Name { - get { - return ResourceManager.GetString("AODOS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple File System. - /// - internal static string APFS_Name { - get { - return ResourceManager.GetString("APFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple extensions present.. - /// - internal static string Apple_extensions_present { - get { - return ResourceManager.GetString("Apple_extensions_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple File System. - /// - internal static string Apple_File_System { - get { - return ResourceManager.GetString("Apple_File_System", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple DOS File System. - /// - internal static string AppleDOS_Name { - get { - return ResourceManager.GetString("AppleDOS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple HFS+ filesystem. - /// - internal static string AppleHFSPlus_Name { - get { - return ResourceManager.GetString("AppleHFSPlus_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple Macintosh File System. - /// - internal static string AppleMFS_Name { - get { - return ResourceManager.GetString("AppleMFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Application identifier: {0}. - /// - internal static string Application_identifier_0 { - get { - return ResourceManager.GetString("Application_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apricot FAT12. - /// - internal static string Apricot_FAT12 { - get { - return ResourceManager.GetString("Apricot_FAT12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Arbitrary Attribute Interchange Protocol present.. - /// - internal static string Arbitrary_Attribute_Interchange_Protocol_present { - get { - return ResourceManager.GetString("Arbitrary_Attribute_Interchange_Protocol_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ASCII. - /// - internal static string ASCII { - get { - return ResourceManager.GetString("ASCII", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Atari FAT12. - /// - internal static string Atari_FAT12 { - get { - return ResourceManager.GetString("Atari_FAT12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Atari FAT16. - /// - internal static string Atari_FAT16 { - get { - return ResourceManager.GetString("Atari_FAT16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AtheOS filesystem. - /// - internal static string Atheos_filesystem { - get { - return ResourceManager.GetString("Atheos_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AtheOS Filesystem. - /// - internal static string AtheOS_Name { - get { - return ResourceManager.GetString("AtheOS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Attributes File is {0} bytes.. - /// - internal static string Attributes_File_is_0_bytes { - get { - return ResourceManager.GetString("Attributes_File_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Audio streaming buffer size is {0} bytes. - /// - internal static string Audio_streaming_buffer_size_is_0_bytes { - get { - return ResourceManager.GetString("Audio_streaming_buffer_size_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Australia age rating is {0}. - /// - internal static string Australia_age_rating_is_0 { - get { - return ResourceManager.GetString("Australia_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to B-tree filesystem. - /// - internal static string B_tree_filesystem { - get { - return ResourceManager.GetString("B_tree_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backbone volume. - /// - internal static string Backbone_volume { - get { - return ResourceManager.GetString("Backbone_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup INDEXF.SYS;1 is in sector {0} (VBN {1}). - /// - internal static string Backup_INDEXF_SYS_is_in_sector_0_VBN_1 { - get { - return ResourceManager.GetString("Backup_INDEXF_SYS_is_in_sector_0_VBN_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup sequence number: {0}. - /// - internal static string Backup_sequence_number_0 { - get { - return ResourceManager.GetString("Backup_sequence_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Backup volume ID: 0x{0:X16}. - /// - internal static string Backup_volume_ID_0 { - get { - return ResourceManager.GetString("Backup_volume_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Be Filesystem. - /// - internal static string BeFS_Name { - get { - return ResourceManager.GetString("BeFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BEWARE!!! Following information may be completely wrong!. - /// - internal static string BEWARE_Following_information_may_be_completely_wrong { - get { - return ResourceManager.GetString("BEWARE_Following_information_may_be_completely_wrong", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UNIX Boot filesystem. - /// - internal static string BFS_Name { - get { - return ResourceManager.GetString("BFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Big-endian. - /// - internal static string Big_endian { - get { - return ResourceManager.GetString("Big_endian", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Big-endian BeFS. - /// - internal static string Big_endian_BeFS { - get { - return ResourceManager.GetString("Big_endian_BeFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Big-endian BorderWare UFS filesystem. - /// - internal static string Big_endian_BorderWare_UFS_filesystem { - get { - return ResourceManager.GetString("Big_endian_BorderWare_UFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Big-endian UFS filesystem. - /// - internal static string Big_endian_UFS_filesystem { - get { - return ResourceManager.GetString("Big_endian_UFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Big-endian UFS2 filesystem. - /// - internal static string Big_endian_UFS2_filesystem { - get { - return ResourceManager.GetString("Big_endian_UFS2_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BIOS drive is {0:X2}h. - /// - internal static string BIOS_drive_is_0 { - get { - return ResourceManager.GetString("BIOS_drive_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BIOS drive number: 0x{0:X2}. - /// - internal static string BIOS_drive_number_0 { - get { - return ResourceManager.GetString("BIOS_drive_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bitmap extension at block {0}. - /// - internal static string Bitmap_extension_at_block_0 { - get { - return ResourceManager.GetString("Bitmap_extension_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bitmap resides at block {0}. - /// - internal static string Bitmap_resides_at_block_0 { - get { - return ResourceManager.GetString("Bitmap_resides_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bitmap starts at block {0}. - /// - internal static string Bitmap_starts_at_block_0 { - get { - return ResourceManager.GetString("Bitmap_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Block group number is {0}. - /// - internal static string Block_group_number_is_0 { - get { - return ResourceManager.GetString("Block_group_number_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Block size: {0} bytes. - /// - internal static string Block_size_0_bytes { - get { - return ResourceManager.GetString("Block_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 1 << block_shift == block_size => 1 << {0} == {1} (Should be {2}). - /// - internal static string blockshift_0_1_should_be_2 { - get { - return ResourceManager.GetString("blockshift_0_1_should_be_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot area starts at {0}. - /// - internal static string Boot_area_starts_at_0 { - get { - return ResourceManager.GetString("Boot_area_starts_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot Block:. - /// internal static string Boot_Block { get { return ResourceManager.GetString("Boot_Block", resourceCulture); } } - /// - /// Looks up a localized string similar to Boot block is in new format.. - /// internal static string Boot_block_is_in_new_format { get { return ResourceManager.GetString("Boot_block_is_in_new_format", resourceCulture); } } - /// - /// Looks up a localized string similar to Boot block should be executed.. - /// internal static string Boot_block_should_be_executed { get { return ResourceManager.GetString("Boot_block_should_be_executed", resourceCulture); } } - /// - /// Looks up a localized string similar to Boot code: 0x{0:X8}. - /// - internal static string Boot_code_0 { - get { - return ResourceManager.GetString("Boot_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot code corresponds to {0}. - /// - internal static string Boot_code_corresponds_to_0 { - get { - return ResourceManager.GetString("Boot_code_corresponds_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot code's SHA1: {0}. - /// - internal static string Boot_code_SHA1_0 { - get { - return ResourceManager.GetString("Boot_code_SHA1_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot environment: 0x{0:X8}. - /// - internal static string Boot_environment_0 { - get { - return ResourceManager.GetString("Boot_environment_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot file descriptor starts at block {0}. - /// - internal static string Boot_file_descriptor_starts_at_block_0 { - get { - return ResourceManager.GetString("Boot_file_descriptor_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot file starts at block {0} and has {1} bytes. - /// - internal static string Boot_file_starts_at_block_0_and_has_1_bytes { - get { - return ResourceManager.GetString("Boot_file_starts_at_block_0_and_has_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot option: {0}. - /// - internal static string Boot_option_0 { - get { - return ResourceManager.GetString("Boot_option_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot program resides in file "{0}". - /// - internal static string Boot_program_resides_in_file_0 { - get { - return ResourceManager.GetString("Boot_program_resides_in_file_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot program starts in sector {0} and is {1} sectors long ({2} bytes). - /// - internal static string Boot_program_starts_in_sector_0_and_is_1_sectors_long_2_bytes { - get { - return ResourceManager.GetString("Boot_program_starts_in_sector_0_and_is_1_sectors_long_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot program will be loaded at address {0:X4}h. - /// - internal static string Boot_program_will_be_loaded_at_address_0 { - get { - return ResourceManager.GetString("Boot_program_will_be_loaded_at_address_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot section {0}:. - /// - internal static string Boot_section_0 { - get { - return ResourceManager.GetString("Boot_section_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Boot volume is inconsistent.. - /// - internal static string Boot_volume_is_inconsistent { - get { - return ResourceManager.GetString("Boot_volume_is_inconsistent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bootable image's SHA1: {0}. - /// - internal static string Bootable_image_SHA1_0 { - get { - return ResourceManager.GetString("Bootable_image_SHA1_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bootable image starts at sector {0} and runs for {1} sectors. - /// - internal static string Bootable_image_starts_at_sector_0_and_runs_for_1_sectors { - get { - return ResourceManager.GetString("Bootable_image_starts_at_sector_0_and_runs_for_1_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bootable image will be loaded at 0x{0:X8}. - /// - internal static string Bootable_image_will_be_loaded_at_0 { - get { - return ResourceManager.GetString("Bootable_image_will_be_loaded_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bootable image will be loaded at segment {0:X4}h. - /// - internal static string Bootable_image_will_be_loaded_at_segment_0 { - get { - return ResourceManager.GetString("Bootable_image_will_be_loaded_at_segment_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bootable on {0}. - /// - internal static string Bootable_on_0 { - get { - return ResourceManager.GetString("Bootable_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bootblock points to {0} as Rootblock. - /// - internal static string Bootblock_points_to_0_as_Rootblock { - get { - return ResourceManager.GetString("Bootblock_points_to_0_as_Rootblock", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BorderWare UFS filesystem. - /// - internal static string BorderWare_UFS_filesystem { - get { - return ResourceManager.GetString("BorderWare_UFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (bsdgroups): Emulate BSD behaviour when creating new files. - /// - internal static string bsdgroups_Emulate_BSD_behaviour_when_creating_new_files { - get { - return ResourceManager.GetString("bsdgroups_Emulate_BSD_behaviour_when_creating_new_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to B-tree file system. - /// - internal static string BTRFS_Name { - get { - return ResourceManager.GetString("BTRFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cached directories: {0}. - /// - internal static string Cached_directories_0 { - get { - return ResourceManager.GetString("Cached_directories_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can have files bigger than 2GiB. - /// - internal static string Can_have_files_bigger_than_2GiB { - get { - return ResourceManager.GetString("Can_have_files_bigger_than_2GiB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can have files bigger than 2TiB (ext4). - /// - internal static string Can_have_files_bigger_than_2TiB_ext4 { - get { - return ResourceManager.GetString("Can_have_files_bigger_than_2TiB_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Can use hashed indexes on directories. - /// - internal static string Can_use_hashed_indexes_on_directories { - get { - return ResourceManager.GetString("Can_use_hashed_indexes_on_directories", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot find root directory.... - /// - internal static string Cannot_find_root_directory { - get { - return ResourceManager.GetString("Cannot_find_root_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot mount LisaFS version {0}. - /// - internal static string Cannot_mount_LisaFS_version_0 { - get { - return ResourceManager.GetString("Cannot_mount_LisaFS_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot read Catalog File, error {0}. - /// - internal static string Cannot_read_Catalog_File_error_0 { - get { - return ResourceManager.GetString("Cannot_read_Catalog_File_error_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Casting FAT. - /// - internal static string Casting_FAT { - get { - return ResourceManager.GetString("Casting_FAT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Catalog File is {0} bytes.. - /// - internal static string Catalog_File_is_0_bytes { - get { - return ResourceManager.GetString("Catalog_File_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Catalog starts at sector {0} of track {1}. - /// - internal static string Catalog_starts_at_sector_0_of_track_1 { - get { - return ResourceManager.GetString("Catalog_starts_at_sector_0_of_track_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This disk contains a relative file. These have not been fully tested, please open a bug report and include this disk image.. - /// - internal static string CBM_Mount_REL_file_warning { - get { - return ResourceManager.GetString("CBM_Mount_REL_file_warning", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Commodore file system. - /// - internal static string CBM_Name { - get { - return ResourceManager.GetString("CBM_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD-i file system. - /// - internal static string CD_i_file_system { - get { - return ResourceManager.GetString("CD_i_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CD-ROM XA extensions present.. - /// - internal static string CD_ROM_XA_extensions_present { - get { - return ResourceManager.GetString("CD_ROM_XA_extensions_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to channel. - /// - internal static string channel { - get { - return ResourceManager.GetString("channel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checksum: 0x{0:X4} (calculated 0x{1:X4}). - /// - internal static string Checksum_0_calculated_1 { - get { - return ResourceManager.GetString("Checksum_0_calculated_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checksum: 0x{0:X8}. - /// - internal static string Checksum_0_X8 { - get { - return ResourceManager.GetString("Checksum_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checksums: 0x{0:X4} and 0x{1:X4}. - /// - internal static string Checksums_0_and_1 { - get { - return ResourceManager.GetString("Checksums_0_and_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Chunk tree starts at LBA {0}. - /// - internal static string Chunk_tree_starts_at_LBA_0 { - get { - return ResourceManager.GetString("Chunk_tree_starts_at_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Classification checks are enabled. - /// - internal static string Classification_checks_are_enabled { - get { - return ResourceManager.GetString("Classification_checks_are_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Clean volume. - /// - internal static string Clean_volume { - get { - return ResourceManager.GetString("Clean_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Clipboard filename: {0}. - /// - internal static string Clipboard_filename_0 { - get { - return ResourceManager.GetString("Clipboard_filename_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cluster heap starts at sector {0}, contains {1} clusters and is {2}% used. - /// - internal static string Cluster_heap_starts_at_sector_0_contains_1_clusters_and_is_2_used { - get { - return ResourceManager.GetString("Cluster_heap_starts_at_sector_0_contains_1_clusters_and_is_2_used", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cluster of root directory: {0}. - /// - internal static string Cluster_of_root_directory_0 { - get { - return ResourceManager.GetString("Cluster_of_root_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cluster where $MFT starts: {0}. - /// - internal static string Cluster_where_MFT_starts_0 { - get { - return ResourceManager.GetString("Cluster_where_MFT_starts_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cluster where $MFTMirr starts: {0}. - /// - internal static string Cluster_where_MFTMirr_starts_0 { - get { - return ResourceManager.GetString("Cluster_where_MFTMirr_starts_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to cmdload will be loaded with value {0:X4}h. - /// - internal static string cmdload_will_be_loaded_with_value_0 { - get { - return ResourceManager.GetString("cmdload_will_be_loaded_with_value_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CNID of bootable Mac OS 8 or 9 directory: {0}. - /// - internal static string CNID_of_bootable_Mac_OS_8_or_9_directory_0 { - get { - return ResourceManager.GetString("CNID_of_bootable_Mac_OS_8_or_9_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CNID of bootable Mac OS X directory: {0}. - /// - internal static string CNID_of_bootable_Mac_OS_X_directory_0 { - get { - return ResourceManager.GetString("CNID_of_bootable_Mac_OS_X_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CNID of bootable system's directory: {0}. - /// - internal static string CNID_of_bootable_system_directory_0 { - get { - return ResourceManager.GetString("CNID_of_bootable_system_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CNID of first-run application's directory: {0}. - /// - internal static string CNID_of_first_run_application_directory_0 { - get { - return ResourceManager.GetString("CNID_of_first_run_application_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CNID of previously opened directory: {0}. - /// - internal static string CNID_of_previously_opened_directory_0 { - get { - return ResourceManager.GetString("CNID_of_previously_opened_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Coherent UNIX filesystem. - /// - internal static string Coherent_UNIX_filesystem { - get { - return ResourceManager.GetString("Coherent_UNIX_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Commodore 64 Virtual Console. - /// - internal static string Commodore_64_Virtual_Console { - get { - return ResourceManager.GetString("Commodore_64_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Commodore file system. - /// - internal static string Commodore_file_system { - get { - return ResourceManager.GetString("Commodore_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compatible features…:. - /// - internal static string Compatible_features { - get { - return ResourceManager.GetString("Compatible_features", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compatible features if read-only…:. - /// - internal static string Compatible_features_if_read_only { - get { - return ResourceManager.GetString("Compatible_features_if_read_only", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compatible flags: 0x{0:X}. - /// - internal static string Compatible_flags_0 { - get { - return ResourceManager.GetString("Compatible_flags_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Container has {0} bytes in {1} blocks. - /// - internal static string Container_has_0_bytes_in_1_blocks { - get { - return ResourceManager.GetString("Container_has_0_bytes_in_1_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Contains Enhanced Volume Descriptor.. - /// - internal static string Contains_Enhanced_Volume_Descriptor { - get { - return ResourceManager.GetString("Contains_Enhanced_Volume_Descriptor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Contains Volume Partition Descriptor.. - /// - internal static string Contains_Volume_Partition_Descriptor { - get { - return ResourceManager.GetString("Contains_Volume_Partition_Descriptor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Copyright: {0}. - /// - internal static string Copyright_0 { - get { - return ResourceManager.GetString("Copyright_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not read dump(8) header block. - /// - internal static string Could_not_read_dump_8_header_block { - get { - return ResourceManager.GetString("Could_not_read_dump_8_header_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Country code: {0}. - /// - internal static string Country_code_0 { - get { - return ResourceManager.GetString("Country_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CP/M filesystem. - /// - internal static string CPM_filesystem { - get { - return ResourceManager.GetString("CPM_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CP/M File System. - /// - internal static string CPM_Name { - get { - return ResourceManager.GetString("CPM_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cram file system. - /// - internal static string Cram_file_system { - get { - return ResourceManager.GetString("Cram_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cram filesystem. - /// - internal static string Cram_Name { - get { - return ResourceManager.GetString("Cram_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Created on {0}. - /// - internal static string Created_on_0 { - get { - return ResourceManager.GetString("Created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creating allocation blocks.. - /// - internal static string Creating_allocation_blocks { - get { - return ResourceManager.GetString("Creating_allocation_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creation date: {0}. - /// - internal static string Creation_date_0 { - get { - return ResourceManager.GetString("Creation_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creator OS code: {0}. - /// - internal static string Creator_OS_code_0 { - get { - return ResourceManager.GetString("Creator_OS_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Current root block {0}. - /// - internal static string Current_root_block_0 { - get { - return ResourceManager.GetString("Current_root_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Current sector = {0}. - /// - internal static string Current_sector_0 { - get { - return ResourceManager.GetString("Current_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cylinder-block LBA: {0}. - /// - internal static string Cylinder_block_LBA_0 { - get { - return ResourceManager.GetString("Cylinder_block_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cylinder group offset in cylinder: {0}. - /// - internal static string Cylinder_group_offset_in_cylinder_0 { - get { - return ResourceManager.GetString("Cylinder_group_offset_in_cylinder_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cylinder group size: {0} basic blocks. - /// - internal static string Cylinder_group_size_0_basic_blocks { - get { - return ResourceManager.GetString("Cylinder_group_size_0_basic_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cylinder group summary area LBA: {0}. - /// - internal static string Cylinder_group_summary_area_LBA_0 { - get { - return ResourceManager.GetString("Cylinder_group_summary_area_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cylinder group summary LBA: {0}. - /// - internal static string Cylinder_group_summary_LBA_0 { - get { - return ResourceManager.GetString("Cylinder_group_summary_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CYLINDERS ordering not yet implemented.. - /// - internal static string CYLINDERS_ordering_not_yet_implemented { - get { - return ResourceManager.GetString("CYLINDERS_ordering_not_yet_implemented", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DASD limits are dirty. - /// - internal static string DASD_limits_are_dirty { - get { - return ResourceManager.GetString("DASD_limits_are_dirty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DASD limits are operational. - /// - internal static string DASD_limits_are_operational { - get { - return ResourceManager.GetString("DASD_limits_are_operational", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to data. - /// - internal static string data { - get { - return ResourceManager.GetString("data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data can reside in directory entry (ext4). - /// - internal static string Data_can_reside_in_directory_entry_ext4 { - get { - return ResourceManager.GetString("Data_can_reside_in_directory_entry_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data fork clump size: {0} bytes.. - /// - internal static string Data_fork_clump_size_0_bytes { - get { - return ResourceManager.GetString("Data_fork_clump_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data preparer identifier: {0}. - /// - internal static string Data_preparer_identifier_0 { - get { - return ResourceManager.GetString("Data_preparer_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data starts at block {0}. - /// - internal static string Data_starts_at_block_0 { - get { - return ResourceManager.GetString("Data_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Date of last integrity check: {0}. - /// - internal static string Date_of_last_integrity_check_0 { - get { - return ResourceManager.GetString("Date_of_last_integrity_check_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Date of last optimization {0}. - /// - internal static string Date_of_last_optimization_0 { - get { - return ResourceManager.GetString("Date_of_last_optimization_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dated {0}. - /// - internal static string Dated_0 { - get { - return ResourceManager.GetString("Dated_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Datetime field year {0}, month {1}, day {2}, hour {3}, minute {4}.. - /// - internal static string Datetime_field_year_0_month_1_day_2_hour_3_minute_4 { - get { - return ResourceManager.GetString("Datetime_field_year_0_month_1_day_2_hour_3_minute_4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DCE ACLs are active. - /// - internal static string DCE_ACLs_are_active { - get { - return ResourceManager.GetString("DCE_ACLs_are_active", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (debug): Enable debugging code. - /// - internal static string debug_Enable_debugging_code { - get { - return ResourceManager.GetString("debug_Enable_debugging_code", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Debugger descriptor starts at block {0}. - /// - internal static string Debugger_descriptor_starts_at_block_0 { - get { - return ResourceManager.GetString("Debugger_descriptor_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Debugger filename: {0}. - /// - internal static string Debugger_filename_0 { - get { - return ResourceManager.GetString("Debugger_filename_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default allocation: {0} blocks. - /// - internal static string Default_allocation_0_blocks { - get { - return ResourceManager.GetString("Default_allocation_0_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default mount options…:. - /// - internal static string Default_mount_options { - get { - return ResourceManager.GetString("Default_mount_options", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default UID: {0}, GID: {1}. - /// - internal static string Default_UID_0_GID_1 { - get { - return ResourceManager.GetString("Default_UID_0_GID_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Definition "{0}" has a correct directory. - /// - internal static string Definition_0_has_a_correct_directory { - get { - return ResourceManager.GetString("Definition_0_has_a_correct_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Definition contains EVEN-ODD field, with unknown meaning, detection may be wrong.. - /// - internal static string Definition_contains_EVEN_ODD_field_with_unknown_meaning_detection_may_be_wrong { - get { - return ResourceManager.GetString("Definition_contains_EVEN_ODD_field_with_unknown_meaning_detection_may_be_wrong", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Deinterleaving whole volume.. - /// - internal static string Deinterleaving_whole_volume { - get { - return ResourceManager.GetString("Deinterleaving_whole_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Demo. - /// - internal static string Demo { - get { - return ResourceManager.GetString("Demo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Density code: {0}. - /// - internal static string Density_code_0 { - get { - return ResourceManager.GetString("Density_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Description: {0}. - /// - internal static string Description_0 { - get { - return ResourceManager.GetString("Description_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Developer ID: {0}. - /// - internal static string Developer_ID_0 { - get { - return ResourceManager.GetString("Developer_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device is too small. - /// - internal static string Device_is_too_small { - get { - return ResourceManager.GetString("Device_is_too_small", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device uses {0}:1 hardware interleaving. - /// - internal static string Device_uses_0_one_hardware_interleaving { - get { - return ResourceManager.GetString("Device_uses_0_one_hardware_interleaving", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Device's UUID: {0}. - /// - internal static string Device_UUID_0 { - get { - return ResourceManager.GetString("Device_UUID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Diagnostic. - /// - internal static string Diagnostic { - get { - return ResourceManager.GetString("Diagnostic", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory band ends at sector {0}. - /// - internal static string Directory_band_ends_at_sector_0 { - get { - return ResourceManager.GetString("Directory_band_ends_at_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory band has {0} sectors. - /// - internal static string Directory_band_has_0_sectors { - get { - return ResourceManager.GetString("Directory_band_has_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory band starts at sector {0}. - /// - internal static string Directory_band_starts_at_sector_0 { - get { - return ResourceManager.GetString("Directory_band_starts_at_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory cache starts at block {0}. - /// - internal static string Directory_cache_starts_at_block_0 { - get { - return ResourceManager.GetString("Directory_cache_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory containing files scheduled for deletion's i-node resides in block {0} of allocation group {1} and runs for {2} blocks ({3} bytes). - /// - internal static string Directory_containing_files_scheduled_for_deletion_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { - get { - return ResourceManager.GetString("Directory_containing_files_scheduled_for_deletion_i_node_resides_in_block_0_of_al" + - "location_group_1_and_runs_for_2_blocks_3_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory size: {0} clusters. - /// - internal static string Directory_size_0_clusters { - get { - return ResourceManager.GetString("Directory_size_0_clusters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory starts at cluster {0}. - /// - internal static string Directory_starts_at_cluster_0 { - get { - return ResourceManager.GetString("Directory_starts_at_cluster_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Directory starts at track {0} sector {1}. - /// - internal static string Directory_starts_at_track_0_sector_1 { - get { - return ResourceManager.GetString("Directory_starts_at_track_0_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dirty volume. - /// - internal static string Dirty_volume { - get { - return ResourceManager.GetString("Dirty_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disassembler filename: {0}. - /// - internal static string Disassembler_filename_0 { - get { - return ResourceManager.GetString("Disassembler_filename_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc bootable following {0} specifications.. - /// - internal static string Disc_bootable_following_0_specifications { - get { - return ResourceManager.GetString("Disc_bootable_following_0_specifications", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc ID is {0}. - /// - internal static string Disc_ID_is_0 { - get { - return ResourceManager.GetString("Disc_ID_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc is a {0} disc. - /// - internal static string Disc_is_a_0_disc { - get { - return ResourceManager.GetString("Disc_is_a_0_disc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc is prepared for audio streaming. - /// - internal static string Disc_is_prepared_for_audio_streaming { - get { - return ResourceManager.GetString("Disc_is_prepared_for_audio_streaming", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc number {0} of a multi-disc set. - /// - internal static string Disc_number_0_of_a_multi_disc_set { - get { - return ResourceManager.GetString("Disc_number_0_of_a_multi_disc_set", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disc region is {0}. - /// - internal static string Disc_region_is_0 { - get { - return ResourceManager.GetString("Disc_region_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk contains bad sectors. - /// - internal static string Disk_contains_bad_sectors { - get { - return ResourceManager.GetString("Disk_contains_bad_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk DOS type: {0}. - /// - internal static string Disk_DOS_type_0 { - get { - return ResourceManager.GetString("Disk_DOS_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk DOS Version: {0}. - /// - internal static string Disk_DOS_Version_0 { - get { - return ResourceManager.GetString("Disk_DOS_Version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk has a bad bitmap. - /// - internal static string Disk_has_a_bad_bitmap { - get { - return ResourceManager.GetString("Disk_has_a_bad_bitmap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk ID: {0}. - /// - internal static string Disk_ID_0 { - get { - return ResourceManager.GetString("Disk_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is 192 TPI. - /// - internal static string Disk_is_192_TPI { - get { - return ResourceManager.GetString("Disk_is_192_TPI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is 384 TPI. - /// - internal static string Disk_is_384_TPI { - get { - return ResourceManager.GetString("Disk_is_384_TPI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is 48 TPI. - /// - internal static string Disk_is_48_TPI { - get { - return ResourceManager.GetString("Disk_is_48_TPI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is 96 TPI or 135 TPI. - /// - internal static string Disk_is_96_TPI_or_135_TPI { - get { - return ResourceManager.GetString("Disk_is_96_TPI_or_135_TPI", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is double density. - /// - internal static string Disk_is_double_density { - get { - return ResourceManager.GetString("Disk_is_double_density", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is double sided. - /// - internal static string Disk_is_double_sided { - get { - return ResourceManager.GetString("Disk_is_double_sided", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is owned by group {0} user {1}. - /// - internal static string Disk_is_owned_by_group_0_user_1 { - get { - return ResourceManager.GetString("Disk_is_owned_by_group_0_user_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is owned by user {0}. - /// - internal static string Disk_is_owned_by_user_0 { - get { - return ResourceManager.GetString("Disk_is_owned_by_user_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is single density. - /// - internal static string Disk_is_single_density { - get { - return ResourceManager.GetString("Disk_is_single_density", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk is single sided. - /// - internal static string Disk_is_single_sided { - get { - return ResourceManager.GetString("Disk_is_single_sided", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk name: {0}. - /// - internal static string Disk_name_0 { - get { - return ResourceManager.GetString("Disk_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk rotates {0} times per second ({1}rpm). - /// - internal static string Disk_rotates_0_times_per_second_1_rpm { - get { - return ResourceManager.GetString("Disk_rotates_0_times_per_second_1_rpm", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk surface should be checked on next mount.. - /// - internal static string Disk_surface_should_be_checked_on_next_mount { - get { - return ResourceManager.GetString("Disk_surface_should_be_checked_on_next_mount", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk Version: {0}. - /// - internal static string Disk_Version_0 { - get { - return ResourceManager.GetString("Disk_Version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk volume number {0}. - /// - internal static string Disk_volume_number_0 { - get { - return ResourceManager.GetString("Disk_volume_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Don't know how to handle EAGLE ordering, not proceeding with this definition.. - /// - internal static string Don_know_how_to_handle_EAGLE_ordering_not_proceeding_with_this_definition { - get { - return ResourceManager.GetString("Don_know_how_to_handle_EAGLE_ordering_not_proceeding_with_this_definition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Don't know how to handle COLUMBIA ordering, not proceeding with this definition.. - /// - internal static string Dont_know_how_to_handle_COLUMBIA_ordering_not_proceeding_with_this_definition { - get { - return ResourceManager.GetString("Dont_know_how_to_handle_COLUMBIA_ordering_not_proceeding_with_this_definition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DOS (8.3 all uppercase). - /// - internal static string DOS_8_3_all_uppercase { - get { - return ResourceManager.GetString("DOS_8_3_all_uppercase", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DOS Version: {0}. - /// - internal static string DOS_Version_0 { - get { - return ResourceManager.GetString("DOS_Version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DR-DOS will boot this FAT32 using CHS.. - /// - internal static string DR_DOS_will_boot_this_FAT32_using_CHS { - get { - return ResourceManager.GetString("DR_DOS_will_boot_this_FAT32_using_CHS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DR-DOS will boot this FAT32 using LBA.. - /// - internal static string DR_DOS_will_boot_this_FAT32_using_LBA { - get { - return ResourceManager.GetString("DR_DOS_will_boot_this_FAT32_using_LBA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive number: 0x{0:X2}. - /// - internal static string Drive_number_0 { - get { - return ResourceManager.GetString("Drive_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Drive serial number: 0x{0:X8}. - /// - internal static string Drive_serial_number_0 { - get { - return ResourceManager.GetString("Drive_serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dump created on {0}. - /// - internal static string Dump_created_on_0 { - get { - return ResourceManager.GetString("Dump_created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dump hostname: {0}. - /// - internal static string Dump_hostname_0 { - get { - return ResourceManager.GetString("Dump_hostname_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dump label: {0}. - /// - internal static string Dump_label_0 { - get { - return ResourceManager.GetString("Dump_label_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dump level: {0}. - /// - internal static string Dump_level_0 { - get { - return ResourceManager.GetString("Dump_level_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to dump(8) Plugin. - /// - internal static string dump_Name { - get { - return ResourceManager.GetString("dump_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dump volume number: {0}. - /// - internal static string Dump_volume_number_0 { - get { - return ResourceManager.GetString("Dump_volume_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dumped device: {0}. - /// - internal static string Dumped_device_0 { - get { - return ResourceManager.GetString("Dumped_device_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dumped filesystem name: {0}. - /// - internal static string Dumped_filesystem_name_0 { - get { - return ResourceManager.GetString("Dumped_filesystem_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to EBCDIC. - /// - internal static string EBCDIC { - get { - return ResourceManager.GetString("EBCDIC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ECMA-67. - /// - internal static string ECMA_67 { - get { - return ResourceManager.GetString("ECMA_67", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ECMA-67. - /// - internal static string ECMA67_Name { - get { - return ResourceManager.GetString("ECMA67_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extent File System Plugin. - /// - internal static string EFS_Name { - get { - return ResourceManager.GetString("EFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to EL TORITO INFORMATION:. - /// - internal static string EL_TORITO_INFORMATION { - get { - return ResourceManager.GetString("EL_TORITO_INFORMATION", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ----------------------. - /// - internal static string EL_TORITO_INFORMATION_border { - get { - return ResourceManager.GetString("EL_TORITO_INFORMATION_border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Entry {0}:. - /// - internal static string Entry_0 { - get { - return ResourceManager.GetString("Entry_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Epoch high {0}. - /// - internal static string Epoch_high_0 { - get { - return ResourceManager.GetString("Epoch_high_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Epoch low {0}. - /// - internal static string Epoch_low_0 { - get { - return ResourceManager.GetString("Epoch_low_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error {0} reading S-Records file.. - /// - internal static string Error_0_reading_S_Records_file { - get { - return ResourceManager.GetString("Error_0_reading_S_Records_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ERROR: Could not find primary volume descriptor. - /// - internal static string ERROR_Could_not_find_primary_volume_descriptor { - get { - return ResourceManager.GetString("ERROR_Could_not_find_primary_volume_descriptor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ESRB age rating is {0}. - /// - internal static string ESRB_age_rating_is_0 { - get { - return ResourceManager.GetString("ESRB_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Event queue size: {0}. - /// - internal static string Event_queue_size_0 { - get { - return ResourceManager.GetString("Event_queue_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception {0}, {1}, {2}. - /// - internal static string Exception_0_1_2 { - get { - return ResourceManager.GetString("Exception_0_1_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exception reading CD-i audio file. - /// - internal static string Exception_reading_CD_i_audio_file { - get { - return ResourceManager.GetString("Exception_reading_CD_i_audio_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft Extended File Allocation Table. - /// - internal static string exFAT_Name { - get { - return ResourceManager.GetString("exFAT_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ext filesystem. - /// - internal static string ext_filesystem { - get { - return ResourceManager.GetString("ext_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ext2 filesystem. - /// - internal static string ext2_filesystem { - get { - return ResourceManager.GetString("ext2_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ext2 (old) filesystem. - /// - internal static string ext2_old_filesystem { - get { - return ResourceManager.GetString("ext2_old_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Linux extended Filesystem 2, 3 and 4. - /// - internal static string ext2FS_Name_Linux_extended_Filesystem_2_3_and_4 { - get { - return ResourceManager.GetString("ext2FS_Name_Linux_extended_Filesystem_2_3_and_4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ext3 filesystem. - /// - internal static string ext3_filesystem { - get { - return ResourceManager.GetString("ext3_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ext4 filesystem. - /// - internal static string ext4_filesystem { - get { - return ResourceManager.GetString("ext4_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extended attributes can reside in inode (ext4). - /// - internal static string Extended_attributes_can_reside_in_inode_ext4 { - get { - return ResourceManager.GetString("Extended_attributes_can_reside_in_inode_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extension: {0}. - /// - internal static string Extension_0 { - get { - return ResourceManager.GetString("Extension_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Extents File is {0} bytes.. - /// - internal static string Extents_File_is_0_bytes { - get { - return ResourceManager.GetString("Extents_File_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Linux extended Filesystem. - /// - internal static string extFS_Name { - get { - return ResourceManager.GetString("extFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to F2FS filesystem. - /// - internal static string F2FS_filesystem { - get { - return ResourceManager.GetString("F2FS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to F2FS Plugin. - /// - internal static string F2FS_Name { - get { - return ResourceManager.GetString("F2FS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FAT and directory will be cached at address {0:X4}h. - /// - internal static string FAT_and_directory_will_be_cached_at_address_0 { - get { - return ResourceManager.GetString("FAT_and_directory_will_be_cached_at_address_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FAT is {0} sectors. - /// - internal static string FAT_is_0_sectors { - get { - return ResourceManager.GetString("FAT_is_0_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft File Allocation Table. - /// - internal static string FAT_Name { - get { - return ResourceManager.GetString("FAT_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FAT+. - /// - internal static string FAT_Plus { - get { - return ResourceManager.GetString("FAT_Plus", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FATs are out of sync. FAT #{0} is in use.. - /// - internal static string FATs_are_out_of_sync_FAT_0_is_in_use { - get { - return ResourceManager.GetString("FATs_are_out_of_sync_FAT_0_is_in_use", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FATX filesystem. - /// - internal static string FATX_filesystem { - get { - return ResourceManager.GetString("FATX_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to BSD Fast File System (aka UNIX File System, UFS). - /// - internal static string FFSPlugin_Name { - get { - return ResourceManager.GetString("FFSPlugin_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File {0} gets truncated.. - /// - internal static string File_0_gets_truncated { - get { - return ResourceManager.GetString("File_0_gets_truncated", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File protection: 0x{0:X4}. - /// - internal static string File_protection_0 { - get { - return ResourceManager.GetString("File_protection_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FILE STRUCTURE VOLUME DESCRIPTOR INFORMATION:. - /// - internal static string FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION { - get { - return ResourceManager.GetString("FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ---------------------------------------------. - /// - internal static string FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION_border { - get { - return ResourceManager.GetString("FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File system initialized by DOS release {0}. - /// - internal static string File_system_initialized_by_DOS_release_0 { - get { - return ResourceManager.GetString("File_system_initialized_by_DOS_release_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File system type: "{0}" (Should be "HPFS "). - /// - internal static string File_system_type_0_Should_be_HPFS { - get { - return ResourceManager.GetString("File_system_type_0_Should_be_HPFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File truncated at block {0}. - /// - internal static string File_truncated_at_block_0 { - get { - return ResourceManager.GetString("File_truncated_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Files should be erased or overwritten when deleted. - /// - internal static string Files_should_be_erased_or_overwritten_when_deleted { - get { - return ResourceManager.GetString("Files_should_be_erased_or_overwritten_when_deleted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem contains {0} "big-blocks" ({1} bytes). - /// - internal static string Filesystem_contains_0_big_blocks_1_bytes { - get { - return ResourceManager.GetString("Filesystem_contains_0_big_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem created on Linux. - /// - internal static string Filesystem_created_on_Linux { - get { - return ResourceManager.GetString("Filesystem_created_on_Linux", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem endianness: 0x{0:X8} (Should be 0x42494745). - /// - internal static string Filesystem_endianness_0_Should_be_0x42494745 { - get { - return ResourceManager.GetString("Filesystem_endianness_0_Should_be_0x42494745", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem has {0} "big-blocks" free ({1} bytes). - /// - internal static string Filesystem_has_0_big_blocks_free_1_bytes { - get { - return ResourceManager.GetString("Filesystem_has_0_big_blocks_free_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem has {0} inodes used. - /// - internal static string Filesystem_has_0_inodes_used { - get { - return ResourceManager.GetString("Filesystem_has_0_inodes_used", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem has been mounted by an old IFS. - /// - internal static string Filesystem_has_been_mounted_by_an_old_IFS { - get { - return ResourceManager.GetString("Filesystem_has_been_mounted_by_an_old_IFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem has never been optimized. - /// - internal static string Filesystem_has_never_been_optimized { - get { - return ResourceManager.GetString("Filesystem_has_never_been_optimized", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem integrity has never been checked. - /// - internal static string Filesystem_integrity_has_never_been_checked { - get { - return ResourceManager.GetString("Filesystem_integrity_has_never_been_checked", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem is big endian. - /// - internal static string Filesystem_is_big_endian { - get { - return ResourceManager.GetString("Filesystem_is_big_endian", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem is clean.. - /// - internal static string Filesystem_is_clean { - get { - return ResourceManager.GetString("Filesystem_is_clean", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem is dirty.. - /// - internal static string Filesystem_is_dirty { - get { - return ResourceManager.GetString("Filesystem_is_dirty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem is little endian. - /// - internal static string Filesystem_is_little_endian { - get { - return ResourceManager.GetString("Filesystem_is_little_endian", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem is read-only. - /// - internal static string Filesystem_is_read_only { - get { - return ResourceManager.GetString("Filesystem_is_read_only", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem name: {0}. - /// - internal static string Filesystem_name_0 { - get { - return ResourceManager.GetString("Filesystem_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem overhead: {0}. - /// - internal static string Filesystem_overhead_0 { - get { - return ResourceManager.GetString("Filesystem_overhead_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem revision: {0}.{1}. - /// - internal static string Filesystem_revision_0_1 { - get { - return ResourceManager.GetString("Filesystem_revision_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem revision is {0}.{1:D2}. - /// - internal static string Filesystem_revision_is_0_1 { - get { - return ResourceManager.GetString("Filesystem_revision_is_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem size: {0} basic blocks. - /// - internal static string Filesystem_size_0_basic_blocks { - get { - return ResourceManager.GetString("Filesystem_size_0_basic_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem state: {0:X4}. - /// - internal static string Filesystem_state_0 { - get { - return ResourceManager.GetString("Filesystem_state_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem type: {0}. - /// - internal static string Filesystem_type_0 { - get { - return ResourceManager.GetString("Filesystem_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem version {0}. - /// - internal static string Filesystem_version_0 { - get { - return ResourceManager.GetString("Filesystem_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem version: {0}.{1}. - /// - internal static string Filesystem_version_0_1 { - get { - return ResourceManager.GetString("Filesystem_version_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem version is {0}.. - /// - internal static string Filesystem_version_is_0 { - get { - return ResourceManager.GetString("Filesystem_version_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem was formatted fast. - /// - internal static string Filesystem_was_formatted_fast { - get { - return ResourceManager.GetString("Filesystem_was_formatted_fast", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem will minimize allocation time. - /// - internal static string Filesystem_will_minimize_allocation_time { - get { - return ResourceManager.GetString("Filesystem_will_minimize_allocation_time", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filesystem will minimize volume fragmentation. - /// - internal static string Filesystem_will_minimize_volume_fragmentation { - get { - return ResourceManager.GetString("Filesystem_will_minimize_volume_fragmentation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filetype in directory entries. - /// - internal static string Filetype_in_directory_entries { - get { - return ResourceManager.GetString("Filetype_in_directory_entries", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Finder filename: {0}. - /// - internal static string Finder_filename_0 { - get { - return ResourceManager.GetString("Finder_filename_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Finder info:. - /// - internal static string Finder_info { - get { - return ResourceManager.GetString("Finder_info", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Finland age rating is {0}. - /// - internal static string Finland_age_rating_is_0 { - get { - return ResourceManager.GetString("Finland_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First {0} partition starts at sector {1}. - /// - internal static string First_0_partition_starts_at_sector_1 { - get { - return ResourceManager.GetString("First_0_partition_starts_at_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First allocation block (#2) starts in sector {0}.. - /// - internal static string First_allocation_block_number_two_starts_in_sector_0 { - get { - return ResourceManager.GetString("First_allocation_block_number_two_starts_in_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First cylinder group starts at block {0}. - /// - internal static string First_cylinder_group_starts_at_block_0 { - get { - return ResourceManager.GetString("First_cylinder_group_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First data block LBA: {0}. - /// - internal static string First_data_block_LBA_0 { - get { - return ResourceManager.GetString("First_data_block_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First data zone: {0}. - /// - internal static string First_data_zone_0 { - get { - return ResourceManager.GetString("First_data_zone_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First data zone is {0}. - /// - internal static string First_data_zone_is_0 { - get { - return ResourceManager.GetString("First_data_zone_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First directory block seems correct.. - /// - internal static string First_directory_block_seems_correct { - get { - return ResourceManager.GetString("First_directory_block_seems_correct", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First directory sector: {0}. - /// - internal static string First_directory_sector_0 { - get { - return ResourceManager.GetString("First_directory_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First directory segment starts at block {0}. - /// - internal static string First_directory_segment_starts_at_block_0 { - get { - return ResourceManager.GetString("First_directory_segment_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First error block is {0}, last is {1}. - /// - internal static string First_error_block_is_0_last_is_1 { - get { - return ResourceManager.GetString("First_error_block_is_0_last_is_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First error function is "{0}", last is "{1}". - /// - internal static string First_error_function_is_0_last_is_1 { - get { - return ResourceManager.GetString("First_error_function_is_0_last_is_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First error inode is {0}, last is {1}. - /// - internal static string First_error_inode_is_0_last_is_1 { - get { - return ResourceManager.GetString("First_error_inode_is_0_last_is_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First error occurred on {0}, last on {1}. - /// - internal static string First_error_occurred_on_0_last_on_1 { - get { - return ResourceManager.GetString("First_error_occurred_on_0_last_on_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First FAT starts at sector {0} and runs for {1} sectors. - /// - internal static string First_FAT_starts_at_sector_0_and_runs_for_1_sectors { - get { - return ResourceManager.GetString("First_FAT_starts_at_sector_0_and_runs_for_1_sectors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First free block is {0}. - /// - internal static string First_free_block_is_0 { - get { - return ResourceManager.GetString("First_free_block_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First free inode is {0}. - /// - internal static string First_free_inode_is_0 { - get { - return ResourceManager.GetString("First_free_inode_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First inode is {0}. - /// - internal static string First_inode_is_0 { - get { - return ResourceManager.GetString("First_inode_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First kernel zone: {0}. - /// - internal static string First_kernel_zone_0 { - get { - return ResourceManager.GetString("First_kernel_zone_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First metablock group is {0}. - /// - internal static string First_metablock_group_is_0 { - get { - return ResourceManager.GetString("First_metablock_group_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First program to execute at boot: {0}. - /// - internal static string First_program_to_execute_at_boot_0 { - get { - return ResourceManager.GetString("First_program_to_execute_at_boot_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First used block is {0}. - /// - internal static string First_used_block_is_0 { - get { - return ResourceManager.GetString("First_used_block_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to First volume buffer starts at {0}. - /// - internal static string First_volume_buffer_starts_at_0 { - get { - return ResourceManager.GetString("First_volume_buffer_starts_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Flags:. - /// - internal static string Flags { - get { - return ResourceManager.GetString("Flags", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Flags: 0x{0:X}. - /// - internal static string Flags_0 { - get { - return ResourceManager.GetString("Flags_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Flags: 0x{0:X8}. - /// - internal static string Flags_0_X8 { - get { - return ResourceManager.GetString("Flags_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Flags…:. - /// - internal static string Flags_ellipsis { - get { - return ResourceManager.GetString("Flags_ellipsis", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Flexible block group metadata location (ext4). - /// - internal static string Flexible_block_group_metadata_location_ext4 { - get { - return ResourceManager.GetString("Flexible_block_group_metadata_location_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Fossil filesystem. - /// - internal static string Fossil_filesystem { - get { - return ResourceManager.GetString("Fossil_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Fossil Filesystem Plugin. - /// - internal static string Fossil_Name { - get { - return ResourceManager.GetString("Fossil_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found Amstrad superblock.. - /// - internal static string Found_Amstrad_superblock { - get { - return ResourceManager.GetString("Found_Amstrad_superblock", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CP/M-86 floppy identifier.. - /// - internal static string Found_CPM_86_floppy_identifier { - get { - return ResourceManager.GetString("Found_CPM_86_floppy_identifier", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found CP/M-86 hard disk superblock.. - /// - internal static string Found_CPM_86_hard_disk_superblock { - get { - return ResourceManager.GetString("Found_CPM_86_hard_disk_superblock", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found empty filename in {0}. - /// - internal static string Found_empty_filename_in_0 { - get { - return ResourceManager.GetString("Found_empty_filename_in_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found empty filename in root directory. - /// - internal static string Found_empty_filename_in_root_directory { - get { - return ResourceManager.GetString("Found_empty_filename_in_root_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown parameter type {0}. - /// - internal static string Found_unknown_parameter_type_0 { - get { - return ResourceManager.GetString("Found_unknown_parameter_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Found unknown supplementary volume descriptor. - /// - internal static string Found_unknown_supplementary_volume_descriptor { - get { - return ResourceManager.GetString("Found_unknown_supplementary_volume_descriptor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Fourth {0} partition starts at sector {1}. - /// - internal static string Fourth_0_partition_starts_at_sector_1 { - get { - return ResourceManager.GetString("Fourth_0_partition_starts_at_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Free block list is locked. - /// - internal static string Free_block_list_is_locked { - get { - return ResourceManager.GetString("Free_block_list_is_locked", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to fsck in progress. - /// - internal static string fsck_in_progress { - get { - return ResourceManager.GetString("fsck_in_progress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to FST starts at {0} and has {1} bytes. - /// - internal static string FST_starts_at_0_and_has_1_bytes { - get { - return ResourceManager.GetString("FST_starts_at_0_and_has_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Functional version: {0}. - /// - internal static string Functional_version_0 { - get { - return ResourceManager.GetString("Functional_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gamecube. - /// - internal static string Gamecube { - get { - return ResourceManager.GetString("Gamecube", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to German age rating is {0}. - /// - internal static string German_age_rating_is_0 { - get { - return ResourceManager.GetString("German_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Global File System number: {0}. - /// - internal static string Global_File_System_number_0 { - get { - return ResourceManager.GetString("Global_File_System_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Global File System pack number {0}. - /// - internal static string Global_File_System_pack_number_0 { - get { - return ResourceManager.GetString("Global_File_System_pack_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Group descriptor checksums and sparse inode table (ext4). - /// - internal static string Group_descriptor_checksums_and_sparse_inode_table_ext4 { - get { - return ResourceManager.GetString("Group_descriptor_checksums_and_sparse_inode_table_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Group descriptor size is {0} bytes. - /// - internal static string Group_descriptor_size_is_0_bytes { - get { - return ResourceManager.GetString("Group_descriptor_size_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Guessed as 42BSD FFS. - /// - internal static string Guessed_as_42BSD_FFS { - get { - return ResourceManager.GetString("Guessed_as_42BSD_FFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Guessed as 43BSD FFS. - /// - internal static string Guessed_as_43BSD_FFS { - get { - return ResourceManager.GetString("Guessed_as_43BSD_FFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Guessed as 44BSD FFS. - /// - internal static string Guessed_as_44BSD_FFS { - get { - return ResourceManager.GetString("Guessed_as_44BSD_FFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Guessed as SunOS FFS. - /// - internal static string Guessed_as_SunOS_FFS { - get { - return ResourceManager.GetString("Guessed_as_SunOS_FFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Guessed as SunOS/x86 FFS. - /// - internal static string Guessed_as_SunOS_x86_FFS { - get { - return ResourceManager.GetString("Guessed_as_SunOS_x86_FFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Guessed as UFS. - /// - internal static string Guessed_as_UFS { - get { - return ResourceManager.GetString("Guessed_as_UFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HAMMER filesystem. - /// - internal static string HAMMER_filesystem { - get { - return ResourceManager.GetString("HAMMER_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HAMMER Filesystem. - /// - internal static string HAMMER_Name { - get { - return ResourceManager.GetString("HAMMER_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hardware sector interleave: {0}. - /// - internal static string Hardware_sector_interleave_0 { - get { - return ResourceManager.GetString("Hardware_sector_interleave_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has extended attribute blocks. - /// - internal static string Has_extended_attribute_blocks { - get { - return ResourceManager.GetString("Has_extended_attribute_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has journal (ext3). - /// - internal static string Has_journal_ext3 { - get { - return ResourceManager.GetString("Has_journal_ext3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has journal on another device (ext3). - /// - internal static string Has_journal_on_another_device_ext3 { - get { - return ResourceManager.GetString("Has_journal_on_another_device_ext3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has online filesystem resize reservations. - /// - internal static string Has_online_filesystem_resize_reservations { - get { - return ResourceManager.GetString("Has_online_filesystem_resize_reservations", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hash seed: {0:X8}{1:X8}{2:X8}{3:X8}, version {4}. - /// - internal static string Hash_seed_0_1_2_3_version_4 { - get { - return ResourceManager.GetString("Hash_seed_0_1_2_3_version_4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Head changes after each whole track. - /// - internal static string Head_changes_after_each_whole_track { - get { - return ResourceManager.GetString("Head_changes_after_each_whole_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Head changes after whole side. - /// - internal static string Head_changes_after_whole_side { - get { - return ResourceManager.GetString("Head_changes_after_whole_side", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Heap size with 128KiB of RAM: {0} bytes. - /// - internal static string Heap_size_with_128KiB_of_RAM_0_bytes { - get { - return ResourceManager.GetString("Heap_size_with_128KiB_of_RAM_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Heap size with 256KiB of RAM: {0} bytes. - /// - internal static string Heap_size_with_256KiB_of_RAM_0_bytes { - get { - return ResourceManager.GetString("Heap_size_with_256KiB_of_RAM_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Heap size with 512KiB of RAM or more: {0} bytes. - /// - internal static string Heap_size_with_512KiB_of_RAM_or_more_0_bytes { - get { - return ResourceManager.GetString("Heap_size_with_512KiB_of_RAM_or_more_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HFS+ filesystem.. - /// - internal static string HFS_filesystem { - get { - return ResourceManager.GetString("HFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HFS uses 512 bytes/sector while device uses 2048 bytes/sector.. - /// - internal static string HFS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector { - get { - return ResourceManager.GetString("HFS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HFSX filesystem.. - /// - internal static string HFSX_filesystem { - get { - return ResourceManager.GetString("HFSX_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to High Sierra Format file system. - /// - internal static string High_Sierra_Format_file_system { - get { - return ResourceManager.GetString("High_Sierra_Format_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Highest structure in the volume is Level {0}, revision {1}. - /// - internal static string Highest_structure_in_the_volume_is_Level_0_revision_1 { - get { - return ResourceManager.GetString("Highest_structure_in_the_volume_is_Level_0_revision_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Highwater mark is to be disabled. - /// - internal static string Highwater_mark_is_to_be_disabled { - get { - return ResourceManager.GetString("Highwater_mark_is_to_be_disabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hotfixes are in use. - /// - internal static string Hotfixes_are_in_use { - get { - return ResourceManager.GetString("Hotfixes_are_in_use", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HP Logical Interchange Format. - /// - internal static string HP_Logical_Interchange_Format { - get { - return ResourceManager.GetString("HP_Logical_Interchange_Format", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to OS/2 High Performance File System. - /// - internal static string HPFS_Name { - get { - return ResourceManager.GetString("HPFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HPFS version: {0}. - /// - internal static string HPFS_version_0 { - get { - return ResourceManager.GetString("HPFS_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to High Performance Optical File System. - /// - internal static string HPOFS_Name { - get { - return ResourceManager.GetString("HPOFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Human68k FAT12. - /// - internal static string Human68k_FAT12 { - get { - return ResourceManager.GetString("Human68k_FAT12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Human68k FAT16. - /// - internal static string Human68k_FAT16 { - get { - return ResourceManager.GetString("Human68k_FAT16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to I will try to guess which one it is, but unless it's UFS2, I may be surely wrong. - /// - internal static string I_will_try_to_guess_which_one_it_is_but_unless_its_UFS2_I_may_be_surely_wrong { - get { - return ResourceManager.GetString("I_will_try_to_guess_which_one_it_is_but_unless_its_UFS2_I_may_be_surely_wrong", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ID: {0}, version {1}. - /// - internal static string ID_0_version_1 { - get { - return ResourceManager.GetString("ID_0_version_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Identified as {0}. - /// - internal static string Identified_as_0 { - get { - return ResourceManager.GetString("Identified_as_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Identifier: {0}. - /// - internal static string Identifier_0 { - get { - return ResourceManager.GetString("Identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image contains ATAPI drivers. - /// - internal static string Image_contains_ATAPI_drivers { - get { - return ResourceManager.GetString("Image_contains_ATAPI_drivers", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image contains SCSI drivers. - /// - internal static string Image_contains_SCSI_drivers { - get { - return ResourceManager.GetString("Image_contains_SCSI_drivers", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image emulates a 3.5" extra-density (MF2ED, 2.88Mb) floppy. - /// - internal static string Image_emulates_a_extra_density_MF2ED_floppy { - get { - return ResourceManager.GetString("Image_emulates_a_extra_density_MF2ED_floppy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image emulates a 5.25" high-density (MD2HD, 1.2Mb) floppy. - /// - internal static string Image_emulates_a_high_density_MD2HD_floppy { - get { - return ResourceManager.GetString("Image_emulates_a_high_density_MD2HD_floppy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image emulates a 3.5" high-density (MF2HD, 1.44Mb) floppy. - /// - internal static string Image_emulates_a_high_density_MF2HD_floppy { - get { - return ResourceManager.GetString("Image_emulates_a_high_density_MF2HD_floppy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image uses no emulation. - /// - internal static string Image_uses_no_emulation { - get { - return ResourceManager.GetString("Image_uses_no_emulation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Image uses unknown emulation type {0}. - /// - internal static string Image_uses_unknown_emulation_type_0 { - get { - return ResourceManager.GetString("Image_uses_unknown_emulation_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Has mapping between inodes and AFS (imagic inodes table). - /// - internal static string imagic_inodes__ { - get { - return ResourceManager.GetString("imagic_inodes__", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Implementation that last mounted the volume: "{0}".. - /// - internal static string Implementation_that_last_mounted_the_volume_0 { - get { - return ResourceManager.GetString("Implementation_that_last_mounted_the_volume_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incompatible features…:. - /// - internal static string Incompatible_features { - get { - return ResourceManager.GetString("Incompatible_features", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incompatible flags: 0x{0:X}. - /// - internal static string Incompatible_flags_0 { - get { - return ResourceManager.GetString("Incompatible_flags_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incompletely initialized big-endian UFS filesystem. - /// - internal static string Incompletely_initialized_big_endian_UFS_filesystem { - get { - return ResourceManager.GetString("Incompletely_initialized_big_endian_UFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incompletely initialized UFS filesystem. - /// - internal static string Incompletely_initialized_UFS_filesystem { - get { - return ResourceManager.GetString("Incompletely_initialized_UFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect device size.. - /// - internal static string Incorrect_device_size { - get { - return ResourceManager.GetString("Incorrect_device_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect MDDF found. - /// - internal static string Incorrect_MDDF_found { - get { - return ResourceManager.GetString("Incorrect_MDDF_found", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect sector size.. - /// - internal static string Incorrect_sector_size { - get { - return ResourceManager.GetString("Incorrect_sector_size", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Indices' i-node resides in block {0} of allocation group {1} and runs for {2} blocks ({3} bytes). - /// - internal static string Indices_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { - get { - return ResourceManager.GetString("Indices_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_b" + - "ytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Indices' i-node size: {0} blocks (Should be 1). - /// - internal static string Indices_i_node_size_0_blocks_Should_be_one { - get { - return ResourceManager.GetString("Indices_i_node_size_0_blocks_Should_be_one", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Initial entry:. - /// - internal static string Initial_entry { - get { - return ResourceManager.GetString("Initial_entry", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to inode-block LBA: {0}. - /// - internal static string inode_block_LBA_0 { - get { - return ResourceManager.GetString("inode_block_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to inode cache is locked. - /// - internal static string inode_cache_is_locked { - get { - return ResourceManager.GetString("inode_cache_is_locked", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to I-node list uses {0} blocks. - /// - internal static string Inode_list_uses_0_blocks { - get { - return ResourceManager.GetString("Inode_list_uses_0_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to INOPB: 0x{0:X8}. - /// - internal static string INOPB_0 { - get { - return ResourceManager.GetString("INOPB_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Install DASD limits. - /// - internal static string Install_DASD_limits { - get { - return ResourceManager.GetString("Install_DASD_limits", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ISO9660 file system. - /// - internal static string ISO9660_file_system { - get { - return ResourceManager.GetString("ISO9660_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Japan age rating is {0}. - /// - internal static string Japan_age_rating_is_0 { - get { - return ResourceManager.GetString("Japan_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to JFS filesystem. - /// - internal static string JFS_filesystem { - get { - return ResourceManager.GetString("JFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to JFS Plugin. - /// - internal static string JFS_Name { - get { - return ResourceManager.GetString("JFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Joliet extensions present.. - /// - internal static string Joliet_extensions_present { - get { - return ResourceManager.GetString("Joliet_extensions_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to JOLIET VOLUME DESCRIPTOR INFORMATION:. - /// - internal static string JOLIET_VOLUME_DESCRIPTOR_INFORMATION { - get { - return ResourceManager.GetString("JOLIET_VOLUME_DESCRIPTOR_INFORMATION", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to -------------------------------------. - /// - internal static string JOLIET_VOLUME_DESCRIPTOR_INFORMATION_border { - get { - return ResourceManager.GetString("JOLIET_VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal backup type: {0}. - /// - internal static string Journal_backup_type_0 { - get { - return ResourceManager.GetString("Journal_backup_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (journal_data): Journal data and metadata. - /// - internal static string journal_data_Journal_data_and_metadata { - get { - return ResourceManager.GetString("journal_data_Journal_data_and_metadata", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (journal_data_ordered): Write data before journaling metadata. - /// - internal static string journal_data_ordered_Write_data_before_journaling_metadata { - get { - return ResourceManager.GetString("journal_data_ordered_Write_data_before_journaling_metadata", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (journal_data_writeback): Write journal before data. - /// - internal static string journal_data_writeback_Write_journal_before_data { - get { - return ResourceManager.GetString("journal_data_writeback_Write_journal_before_data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal has inode {0}. - /// - internal static string Journal_has_inode_0 { - get { - return ResourceManager.GetString("Journal_has_inode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal is on device {0}. - /// - internal static string Journal_is_on_device_0 { - get { - return ResourceManager.GetString("Journal_is_on_device_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal needs recovery (ext3). - /// - internal static string Journal_needs_recovery_ext3 { - get { - return ResourceManager.GetString("Journal_needs_recovery_ext3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal resides in block {0} of allocation group {1} and runs for {2} blocks ({3} bytes). - /// - internal static string Journal_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { - get { - return ResourceManager.GetString("Journal_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal starts at allocation block {0}.. - /// - internal static string Journal_starts_at_allocation_block_0 { - get { - return ResourceManager.GetString("Journal_starts_at_allocation_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal starts in byte {0} and ends in byte {1}. - /// - internal static string Journal_starts_in_byte_0_and_ends_in_byte_1 { - get { - return ResourceManager.GetString("Journal_starts_in_byte_0_and_ends_in_byte_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal starts in byte {0} and has {1} bytes in {2} blocks. - /// - internal static string Journal_starts_in_byte_0_and_has_1_bytes_in_2_blocks { - get { - return ResourceManager.GetString("Journal_starts_in_byte_0_and_has_1_bytes_in_2_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Journal UUID: {0}. - /// - internal static string Journal_UUID_0 { - get { - return ResourceManager.GetString("Journal_UUID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Korea age rating is {0}. - /// - internal static string Korea_age_rating_is_0 { - get { - return ResourceManager.GetString("Korea_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Labels resides in block {0}. - /// - internal static string Labels_resides_in_block_0 { - get { - return ResourceManager.GetString("Labels_resides_in_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last allocated cluster {0}. - /// - internal static string Last_allocated_cluster_0 { - get { - return ResourceManager.GetString("Last_allocated_cluster_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last backup date: {0}. - /// - internal static string Last_backup_date_0 { - get { - return ResourceManager.GetString("Last_backup_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last check date: {0}. - /// - internal static string Last_check_date_0 { - get { - return ResourceManager.GetString("Last_check_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last checked on {0}. - /// - internal static string Last_checked_on_0 { - get { - return ResourceManager.GetString("Last_checked_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last checked on {0} (should check every {1} seconds). - /// - internal static string Last_checked_on_0_should_check_every_1_seconds { - get { - return ResourceManager.GetString("Last_checked_on_0_should_check_every_1_seconds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last inode allocated: {0}. - /// - internal static string Last_inode_allocated_0 { - get { - return ResourceManager.GetString("Last_inode_allocated_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last modification date: {0}. - /// - internal static string Last_modification_date_0 { - get { - return ResourceManager.GetString("Last_modification_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last mounted at: "{0}". - /// - internal static string Last_mounted_at_0 { - get { - return ResourceManager.GetString("Last_mounted_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last mounted on {0}. - /// - internal static string Last_mounted_on_0 { - get { - return ResourceManager.GetString("Last_mounted_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last orphaned inode is {0}. - /// - internal static string Last_orphaned_inode_is_0 { - get { - return ResourceManager.GetString("Last_orphaned_inode_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last root directory copy: {0}. - /// - internal static string Last_root_directory_copy_0 { - get { - return ResourceManager.GetString("Last_root_directory_copy_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last searched cylinder group: {0}. - /// - internal static string Last_searched_cylinder_group_0 { - get { - return ResourceManager.GetString("Last_searched_cylinder_group_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last used mount options were: {0}. - /// - internal static string Last_used_mount_options_were_0 { - get { - return ResourceManager.GetString("Last_used_mount_options_were_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Last written on {0}. - /// - internal static string Last_written_on_0 { - get { - return ResourceManager.GetString("Last_written_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LIF identifier: {0}. - /// - internal static string LIF_identifier_0 { - get { - return ResourceManager.GetString("LIF_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HP Logical Interchange Format Plugin. - /// - internal static string LIF_Name { - get { - return ResourceManager.GetString("LIF_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to LIF version: {0}. - /// - internal static string LIF_version_0 { - get { - return ResourceManager.GetString("LIF_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Linked list of filesystems: 0x{0:X8}. - /// - internal static string Linked_list_of_filesystems_0 { - get { - return ResourceManager.GetString("Linked_list_of_filesystems_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Little-endian. - /// - internal static string Little_endian { - get { - return ResourceManager.GetString("Little_endian", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Little-endian BeFS. - /// - internal static string Little_endian_BeFS { - get { - return ResourceManager.GetString("Little_endian_BeFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Load {0} sectors from sector {1}. - /// - internal static string Load_0_sectors_from_sector_1 { - get { - return ResourceManager.GetString("Load_0_sectors_from_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Load at 0x{0:X8} and jump to 0x{1:X8}. - /// - internal static string Load_at_0_and_jump_to_1 { - get { - return ResourceManager.GetString("Load_at_0_and_jump_to_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Locus filesystem. - /// - internal static string Locus_filesystem { - get { - return ResourceManager.GetString("Locus_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Locus filesystem (old). - /// - internal static string Locus_filesystem_old { - get { - return ResourceManager.GetString("Locus_filesystem_old", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Locus Filesystem Plugin. - /// - internal static string Locus_Name { - get { - return ResourceManager.GetString("Locus_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Log tree starts at LBA {0}. - /// - internal static string Log_tree_starts_at_LBA_0 { - get { - return ResourceManager.GetString("Log_tree_starts_at_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Log zone size: {0}. - /// - internal static string Log_zone_size_0 { - get { - return ResourceManager.GetString("Log_zone_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Long file names. - /// - internal static string Long_file_names { - get { - return ResourceManager.GetString("Long_file_names", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Lowest structure in the volume is Level {0}, revision {1}. - /// - internal static string Lowest_structure_in_the_volume_is_Level_0_revision_1 { - get { - return ResourceManager.GetString("Lowest_structure_in_the_volume_is_Level_0_revision_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Mac OS X Volume ID: {0:X8}{1:X8}. - /// - internal static string Mac_OS_X_Volume_ID_0_1 { - get { - return ResourceManager.GetString("Mac_OS_X_Volume_ID_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic: "{0}". - /// - internal static string magic_0 { - get { - return ResourceManager.GetString("magic_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic 0x{0:X8} (expected 0x{1:X8}). - /// - internal static string magic_0_expected_1 { - get { - return ResourceManager.GetString("magic_0_expected_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic at {0} = 0x{1:X8} (expected 0x{2:X8}). - /// - internal static string magic_at_0_equals_1_expected_2 { - get { - return ResourceManager.GetString("magic_at_0_equals_1_expected_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic at {0} = 0x{1:X8} (expected 0x{2:X8} or 0x{3:X8}). - /// - internal static string magic_at_0_equals_1_expected_2_or_3 { - get { - return ResourceManager.GetString("magic_at_0_equals_1_expected_2_or_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic at {0} = 0x{1:X8} or 0x{2:X8} (expected 0x{3:X8} or 0x{4:X8}). - /// - internal static string magic_at_0_equals_1_or_2_expected_3_or_4 { - get { - return ResourceManager.GetString("magic_at_0_equals_1_or_2_expected_3_or_4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic at 0x{0:X8} (expected 0x{1:X8}). - /// - internal static string magic_at_0_expected_1 { - get { - return ResourceManager.GetString("magic_at_0_expected_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic at 0x{0:X3} = 0x{1:X8} (expected 0x{2:X8}). - /// - internal static string magic_at_0_X3_equals_1_expected_2 { - get { - return ResourceManager.GetString("magic_at_0_X3_equals_1_expected_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic at 0x{0:X3} = 0x{1:X8} (expected 0x{2:X8} or 0x{3:X8}). - /// - internal static string magic_at_0_X3_equals_1_expected_2_or_3 { - get { - return ResourceManager.GetString("magic_at_0_X3_equals_1_expected_2_or_3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic at {1} = 0x{0:X8}. - /// - internal static string magic_at_1_equals_0 { - get { - return ResourceManager.GetString("magic_at_1_equals_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to magic = 0x{0:X16} (expected 0x{1:X16}). - /// - internal static string magic_equals_0_expected_1 { - get { - return ResourceManager.GetString("magic_equals_0_expected_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Magic 1: 0x{0:X8} (Should be 0x42465331). - /// - internal static string Magic_one_0_Should_be_0x42465331 { - get { - return ResourceManager.GetString("Magic_one_0_Should_be_0x42465331", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Magic 3: 0x{0:X8} (Should be 0x15B6830E). - /// - internal static string Magic_three_0_Should_be_0x15B6830E { - get { - return ResourceManager.GetString("Magic_three_0_Should_be_0x15B6830E", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Magic 2: 0x{0:X8} (Should be 0xDD121031). - /// - internal static string Magic_two_0_Should_be_0xDD121031 { - get { - return ResourceManager.GetString("Magic_two_0_Should_be_0xDD121031", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maker ID: {0}. - /// - internal static string Maker_ID_0 { - get { - return ResourceManager.GetString("Maker_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maker name: {0}. - /// - internal static string Maker_name_0 { - get { - return ResourceManager.GetString("Maker_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Master copy ID: 0x{0:X8}. - /// - internal static string Master_copy_ID_0 { - get { - return ResourceManager.GetString("Master_copy_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Master Directory Block:. - /// - internal static string Master_Directory_Block { - get { - return ResourceManager.GetString("Master_Directory_Block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Master System Virtual Console. - /// - internal static string Master_System_Virtual_Console { - get { - return ResourceManager.GetString("Master_System_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Max zone size: {0}. - /// - internal static string Max_zone_size_0 { - get { - return ResourceManager.GetString("Max_zone_size_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maximum filesize is {0} bytes ({1} MiB). - /// - internal static string Maximum_filesize_is_0_bytes_1_MiB { - get { - return ResourceManager.GetString("Maximum_filesize_is_0_bytes_1_MiB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maximum length of a symbolic link: {0}. - /// - internal static string Maximum_length_of_a_symbolic_link_0 { - get { - return ResourceManager.GetString("Maximum_length_of_a_symbolic_link_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maximum opened files: {0}. - /// - internal static string Maximum_opened_files_0 { - get { - return ResourceManager.GetString("Maximum_opened_files_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MDDF is in block {0}. - /// - internal static string MDDF_is_in_block_0 { - get { - return ResourceManager.GetString("MDDF_is_in_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Media descriptor: 0x{0:X2}. - /// - internal static string Media_descriptor_0 { - get { - return ResourceManager.GetString("Media_descriptor_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Mega Drive Virtual Console. - /// - internal static string Megadrive_Virtual_Console { - get { - return ResourceManager.GetString("Megadrive_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Memory log starts at {0}. - /// - internal static string Memory_log_starts_at_0 { - get { - return ResourceManager.GetString("Memory_log_starts_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MicroDOS filesystem. - /// - internal static string MicroDOS_filesystem { - get { - return ResourceManager.GetString("MicroDOS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MicroDOS file system. - /// - internal static string MicroDOS_Name { - get { - return ResourceManager.GetString("MicroDOS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft exFAT. - /// - internal static string Microsoft_exFAT { - get { - return ResourceManager.GetString("Microsoft_exFAT", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft FAT12. - /// - internal static string Microsoft_FAT12 { - get { - return ResourceManager.GetString("Microsoft_FAT12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft FAT16. - /// - internal static string Microsoft_FAT16 { - get { - return ResourceManager.GetString("Microsoft_FAT16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft FAT32. - /// - internal static string Microsoft_FAT32 { - get { - return ResourceManager.GetString("Microsoft_FAT32", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Microsoft Resilient File System. - /// - internal static string Microsoft_Resilient_File_System { - get { - return ResourceManager.GetString("Microsoft_Resilient_File_System", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minix 3 v1 filesystem. - /// - internal static string Minix_3_v1_filesystem { - get { - return ResourceManager.GetString("Minix_3_v1_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minix 3 v2 filesystem. - /// - internal static string Minix_3_v2_filesystem { - get { - return ResourceManager.GetString("Minix_3_v2_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minix v1 filesystem. - /// - internal static string Minix_v1_filesystem { - get { - return ResourceManager.GetString("Minix_v1_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minix v2 filesystem. - /// - internal static string Minix_v2_filesystem { - get { - return ResourceManager.GetString("Minix_v2_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minix v3 filesystem. - /// - internal static string Minix_v3_filesystem { - get { - return ResourceManager.GetString("Minix_v3_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minix Filesystem. - /// - internal static string MinixFS_Name { - get { - return ResourceManager.GetString("MinixFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to More than 32000 directory entries (ext4). - /// - internal static string More_than_32000_directory_entries_ext4 { - get { - return ResourceManager.GetString("More_than_32000_directory_entries_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Mounting LisaFS v1. - /// - internal static string Mounting_LisaFS_v1 { - get { - return ResourceManager.GetString("Mounting_LisaFS_v1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Mounting LisaFS v2. - /// - internal static string Mounting_LisaFS_v2 { - get { - return ResourceManager.GetString("Mounting_LisaFS_v2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Mounting LisaFS v3. - /// - internal static string Mounting_LisaFS_v3 { - get { - return ResourceManager.GetString("Mounting_LisaFS_v3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MSX Virtual Console or WiiWare demo. - /// - internal static string MSX_Virtual_Console_or_WiiWare_demo { - get { - return ResourceManager.GetString("MSX_Virtual_Console_or_WiiWare_demo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Multi-mount protection (ext4). - /// - internal static string Multi_mount_protection_ext4 { - get { - return ResourceManager.GetString("Multi_mount_protection_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Multimedia is active. - /// - internal static string Multimedia_is_active { - get { - return ResourceManager.GetString("Multimedia_is_active", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple Hierarchical File System. - /// - internal static string Name_Apple_Hierarchical_File_System { - get { - return ResourceManager.GetString("Name_Apple_Hierarchical_File_System", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Neo-Geo Virtual Console. - /// - internal static string Neo_Geo_Virtual_Console { - get { - return ResourceManager.GetString("Neo_Geo_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NES Virtual Console. - /// - internal static string NES_Virtual_Console { - get { - return ResourceManager.GetString("NES_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New version. - /// - internal static string New_version { - get { - return ResourceManager.GetString("New_version", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Next allocation block: {0}.. - /// - internal static string Next_allocation_block_0 { - get { - return ResourceManager.GetString("Next_allocation_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Next free inode search will start at inode {0}. - /// - internal static string Next_free_inode_search_will_start_at_inode_0 { - get { - return ResourceManager.GetString("Next_free_inode_search_will_start_at_inode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Next QID {0}. - /// - internal static string Next_QID_0 { - get { - return ResourceManager.GetString("Next_QID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Next root block {0}. - /// - internal static string Next_root_block_0 { - get { - return ResourceManager.GetString("Next_root_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Next unused CNID: {0}. - /// - internal static string Next_unused_CNID_0 { - get { - return ResourceManager.GetString("Next_unused_CNID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Next unused file number: {0}. - /// - internal static string Next_unused_file_number_0 { - get { - return ResourceManager.GetString("Next_unused_file_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NFS volume. - /// - internal static string NFS_volume { - get { - return ResourceManager.GetString("NFS_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NILFS2 filesystem. - /// - internal static string NILFS2_filesystem { - get { - return ResourceManager.GetString("NILFS2_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NILFS2 Plugin. - /// - internal static string NILFS2_Name { - get { - return ResourceManager.GetString("NILFS2_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NINDIR: 0x{0:X8}. - /// - internal static string NINDIR_0 { - get { - return ResourceManager.GetString("NINDIR_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo 64 Virtual Console. - /// - internal static string Nintendo_64_Virtual_Console { - get { - return ResourceManager.GetString("Nintendo_64_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo GameCube Optical Disc. - /// - internal static string Nintendo_GameCube_Optical_Disc { - get { - return ResourceManager.GetString("Nintendo_GameCube_Optical_Disc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo optical filesystem. - /// - internal static string Nintendo_optical_filesystem { - get { - return ResourceManager.GetString("Nintendo_optical_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo Wii Optical Disc. - /// - internal static string Nintendo_Wii_Optical_Disc { - get { - return ResourceManager.GetString("Nintendo_Wii_Optical_Disc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Nintendo optical filesystems. - /// - internal static string NintendoPlugin_Name { - get { - return ResourceManager.GetString("NintendoPlugin_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to any region. - /// - internal static string NintendoPlugin_RegionCodeToString_any_region { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_any_region", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Australia. - /// - internal static string NintendoPlugin_RegionCodeToString_Australia { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Australia", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to France. - /// - internal static string NintendoPlugin_RegionCodeToString_France { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_France", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Germany. - /// - internal static string NintendoPlugin_RegionCodeToString_Germany { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Germany", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Italy. - /// - internal static string NintendoPlugin_RegionCodeToString_Italy { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Italy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Japan. - /// - internal static string NintendoPlugin_RegionCodeToString_Japan { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Japan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Korea. - /// - internal static string NintendoPlugin_RegionCodeToString_Korea { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Korea", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PAL. - /// - internal static string NintendoPlugin_RegionCodeToString_PAL { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_PAL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Russia. - /// - internal static string NintendoPlugin_RegionCodeToString_Russia { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Russia", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Spain. - /// - internal static string NintendoPlugin_RegionCodeToString_Spain { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Spain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Taiwan. - /// - internal static string NintendoPlugin_RegionCodeToString_Taiwan { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Taiwan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to unknown region code '{0}'. - /// - internal static string NintendoPlugin_RegionCodeToString_unknown_region_code_0 { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_unknown_region_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to USA. - /// - internal static string NintendoPlugin_RegionCodeToString_USA { - get { - return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_USA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not a Lisa filesystem. - /// - internal static string Not_a_Lisa_filesystem { - get { - return ResourceManager.GetString("Not_a_Lisa_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not a UFS filesystem, I shouldn't have arrived here!. - /// - internal static string Not_a_UFS_filesystem_I_shouldnt_have_arrived_here { - get { - return ResourceManager.GetString("Not_a_UFS_filesystem_I_shouldnt_have_arrived_here", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not an ext2/3/4 filesystem. - /// - internal static string Not_an_ext2_3_4_filesystem { - get { - return ResourceManager.GetString("Not_an_ext2_3_4_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Not bootable. - /// - internal static string Not_bootable { - get { - return ResourceManager.GetString("Not_bootable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NSPF: 0x{0:X8}. - /// - internal static string NSPF_0 { - get { - return ResourceManager.GetString("NSPF_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to NT Flags: 0x{0:X2}. - /// - internal static string NT_Flags_0 { - get { - return ResourceManager.GetString("NT_Flags_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Technology File System (NTFS). - /// - internal static string NTFS_Name { - get { - return ResourceManager.GetString("NTFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Files-11 On-Disk Structure. - /// - internal static string ODS_Name { - get { - return ResourceManager.GetString("ODS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to OEM name: {0}. - /// - internal static string OEM_name_0 { - get { - return ResourceManager.GetString("OEM_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to OEM Parameters: {0}. - /// - internal static string OEM_Parameters_0 { - get { - return ResourceManager.GetString("OEM_Parameters_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Old 16-bit dump(8). - /// - internal static string Old_16_bit_dump_8 { - get { - return ResourceManager.GetString("Old_16_bit_dump_8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to On-disk filesystem version: {0}. - /// - internal static string On_disk_filesystem_version_0 { - get { - return ResourceManager.GetString("On_disk_filesystem_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to On errors, filesystem should continue. - /// - internal static string On_errors_filesystem_should_continue { - get { - return ResourceManager.GetString("On_errors_filesystem_should_continue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to On errors, filesystem should panic. - /// - internal static string On_errors_filesystem_should_panic { - get { - return ResourceManager.GetString("On_errors_filesystem_should_panic", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to On errors, filesystem should remount read-only. - /// - internal static string On_errors_filesystem_should_remount_read_only { - get { - return ResourceManager.GetString("On_errors_filesystem_should_remount_read_only", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to On errors filesystem will do an unknown thing ({0}). - /// - internal static string On_errors_filesystem_will_do_an_unknown_thing_0 { - get { - return ResourceManager.GetString("On_errors_filesystem_will_do_an_unknown_thing_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Opera filesystem disc.. - /// - internal static string Opera_filesystem_disc { - get { - return ResourceManager.GetString("Opera_filesystem_disc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Opera Filesystem Plugin. - /// - internal static string OperaFS_Name { - get { - return ResourceManager.GetString("OperaFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to OS-9 Random Block File. - /// - internal static string OS_9_Random_Block_File { - get { - return ResourceManager.GetString("OS_9_Random_Block_File", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to OS/2 .LONGNAME extended attribute. - /// - internal static string OS2_LONGNAME_extended_attribute { - get { - return ResourceManager.GetString("OS2_LONGNAME_extended_attribute", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Overmount stamp: 0x{0:X16}. - /// - internal static string Overmount_stamp_0 { - get { - return ResourceManager.GetString("Overmount_stamp_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Pack name: {0}. - /// - internal static string Pack_name_0 { - get { - return ResourceManager.GetString("Pack_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partition offset: {0}. - /// - internal static string Partition_offset_0 { - get { - return ResourceManager.GetString("Partition_offset_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Partitions are not supported.. - /// - internal static string Partitions_are_not_supported { - get { - return ResourceManager.GetString("Partitions_are_not_supported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to U.C.S.D. Pascal filesystem. - /// - internal static string PascalPlugin_Name { - get { - return ResourceManager.GetString("PascalPlugin_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Path descriptor options: {0}. - /// - internal static string Path_descriptor_options_0 { - get { - return ResourceManager.GetString("Path_descriptor_options_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Path table and PVD do not point to the same location for the root directory!. - /// - internal static string Path_table_and_PVD_do_not_point_to_the_same_location_for_the_root_directory { - get { - return ResourceManager.GetString("Path_table_and_PVD_do_not_point_to_the_same_location_for_the_root_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PC-FX executable:. - /// - internal static string PC_FX_executable { - get { - return ResourceManager.GetString("PC_FX_executable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PC Engine CD Plugin. - /// - internal static string PCEnginePlugin_Name { - get { - return ResourceManager.GetString("PCEnginePlugin_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PC-FX Plugin. - /// - internal static string PCFX_Name { - get { - return ResourceManager.GetString("PCFX_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PEGI age rating is {0}. - /// - internal static string PEGI_age_rating_is_0 { - get { - return ResourceManager.GetString("PEGI_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Professional File System. - /// - internal static string PFS_Name { - get { - return ResourceManager.GetString("PFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Physical volume name: {0}. - /// - internal static string Physical_volume_name_0 { - get { - return ResourceManager.GetString("Physical_volume_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Portugal age rating is {0}. - /// - internal static string Portugal_age_rating_is_0 { - get { - return ResourceManager.GetString("Portugal_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Pre-allocate directories. - /// - internal static string Pre_allocate_directories { - get { - return ResourceManager.GetString("Pre_allocate_directories", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Previous dump created on {0}. - /// - internal static string Previous_dump_created_on_0 { - get { - return ResourceManager.GetString("Previous_dump_created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Processing VD loop no. {0}. - /// - internal static string Processing_VD_loop_no_0 { - get { - return ResourceManager.GetString("Processing_VD_loop_no_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ProDOS uses 512 bytes/sector while device uses 2048 bytes/sector.. - /// - internal static string ProDOS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector { - get { - return ResourceManager.GetString("ProDOS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ProDOS version 1 at least required for reading this volume.. - /// - internal static string ProDOS_version_one_at_least_required_for_reading_this_volume { - get { - return ResourceManager.GetString("ProDOS_version_one_at_least_required_for_reading_this_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ProDOS version 1 used to create this volume.. - /// - internal static string ProDOS_version_one_used_to_create_this_volume { - get { - return ResourceManager.GetString("ProDOS_version_one_used_to_create_this_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Apple ProDOS filesystem. - /// - internal static string ProDOSPlugin_Name { - get { - return ResourceManager.GetString("ProDOSPlugin_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Professional File System v1. - /// - internal static string Professional_File_System_v1 { - get { - return ResourceManager.GetString("Professional_File_System_v1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Professional File System v2. - /// - internal static string Professional_File_System_v2 { - get { - return ResourceManager.GetString("Professional_File_System_v2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Professional File System v3. - /// - internal static string Professional_File_System_v3 { - get { - return ResourceManager.GetString("Professional_File_System_v3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Promotional or TurboGrafx Virtual Console. - /// - internal static string Promotional_or_TurboGrafx_Virtual_Console { - get { - return ResourceManager.GetString("Promotional_or_TurboGrafx_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Published by {0}. - /// - internal static string Published_by_0 { - get { - return ResourceManager.GetString("Published_by_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Publisher identifier: {0}. - /// - internal static string Publisher_identifier_0 { - get { - return ResourceManager.GetString("Publisher_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PVD does not point to correct root directory, checking path table.... - /// - internal static string PVD_does_not_point_to_correct_root_directory_checking_path_table { - get { - return ResourceManager.GetString("PVD_does_not_point_to_correct_root_directory_checking_path_table", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QNX4 filesystem. - /// - internal static string QNX4_filesystem { - get { - return ResourceManager.GetString("QNX4_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QNX4 Plugin. - /// - internal static string QNX4_Name { - get { - return ResourceManager.GetString("QNX4_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QNX6 (Audi) filesystem. - /// - internal static string QNX6_Audi_filesystem { - get { - return ResourceManager.GetString("QNX6_Audi_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QNX6 filesystem. - /// - internal static string QNX6_filesystem { - get { - return ResourceManager.GetString("QNX6_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to QNX6 Plugin. - /// - internal static string QNX6_Name { - get { - return ResourceManager.GetString("QNX6_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RAID stride: {0}. - /// - internal static string RAID_stride_0 { - get { - return ResourceManager.GetString("RAID_stride_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to OS-9 Random Block File Plugin. - /// - internal static string RBF_Name { - get { - return ResourceManager.GetString("RBF_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Read-only compatible flags: 0x{0:X}. - /// - internal static string Read_only_compatible_flags_0 { - get { - return ResourceManager.GetString("Read_only_compatible_flags_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Read-only volume. - /// - internal static string Read_only_volume { - get { - return ResourceManager.GetString("Read_only_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading BPB. - /// - internal static string Reading_BPB { - get { - return ResourceManager.GetString("Reading_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading directory.. - /// - internal static string Reading_directory { - get { - return ResourceManager.GetString("Reading_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading FAT12. - /// - internal static string Reading_FAT12 { - get { - return ResourceManager.GetString("Reading_FAT12", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading FAT16. - /// - internal static string Reading_FAT16 { - get { - return ResourceManager.GetString("Reading_FAT16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading FAT32. - /// - internal static string Reading_FAT32 { - get { - return ResourceManager.GetString("Reading_FAT32", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading root directory. - /// - internal static string Reading_root_directory { - get { - return ResourceManager.GetString("Reading_root_directory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading sector {0}. - /// - internal static string Reading_sector_0 { - get { - return ResourceManager.GetString("Reading_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reading superblock. - /// - internal static string Reading_superblock { - get { - return ResourceManager.GetString("Reading_superblock", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Readings should be verified. - /// - internal static string Readings_should_be_verified { - get { - return ResourceManager.GetString("Readings_should_be_verified", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Record protection: 0x{0:X4}. - /// - internal static string Record_protection_0 { - get { - return ResourceManager.GetString("Record_protection_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reduced block group backups. - /// - internal static string Reduced_block_group_backups { - get { - return ResourceManager.GetString("Reduced_block_group_backups", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reduced number of superblocks. - /// - internal static string Reduced_number_of_superblocks { - get { - return ResourceManager.GetString("Reduced_number_of_superblocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resilient File System plugin. - /// - internal static string ReFS_Name { - get { - return ResourceManager.GetString("ReFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reiser 3.5 filesystem. - /// - internal static string Reiser_3_5_filesystem { - get { - return ResourceManager.GetString("Reiser_3_5_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reiser 3.6 filesystem. - /// - internal static string Reiser_3_6_filesystem { - get { - return ResourceManager.GetString("Reiser_3_6_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reiser 4 filesystem. - /// - internal static string Reiser_4_filesystem { - get { - return ResourceManager.GetString("Reiser_4_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reiser Jr. filesystem. - /// - internal static string Reiser_Jr_filesystem { - get { - return ResourceManager.GetString("Reiser_Jr_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reiser Filesystem Plugin. - /// - internal static string Reiser_Name { - get { - return ResourceManager.GetString("Reiser_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reiser4 Filesystem Plugin. - /// - internal static string Reiser4_Name { - get { - return ResourceManager.GetString("Reiser4_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Removable volume. - /// - internal static string Removable_volume { - get { - return ResourceManager.GetString("Removable_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Replacement superblock resides at block {0}. - /// - internal static string Replacement_superblock_resides_at_block_0 { - get { - return ResourceManager.GetString("Replacement_superblock_resides_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Replicated volume. - /// - internal static string Replicated_volume { - get { - return ResourceManager.GetString("Replicated_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reserved attributes are set: {0:X2}. - /// - internal static string Reserved_attributes_are_set_0 { - get { - return ResourceManager.GetString("Reserved_attributes_are_set_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resource fork clump size: {0} bytes.. - /// - internal static string Resource_fork_clump_size_0_bytes { - get { - return ResourceManager.GetString("Resource_fork_clump_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resync DASD limits. - /// - internal static string Resync_DASD_limits { - get { - return ResourceManager.GetString("Resync_DASD_limits", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rock Ridge Interchange Protocol present.. - /// - internal static string Rock_Ridge_Interchange_Protocol_present { - get { - return ResourceManager.GetString("Rock_Ridge_Interchange_Protocol_present", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root block checksum is 0x{0:X8}. - /// - internal static string Root_block_checksum_is_0 { - get { - return ResourceManager.GetString("Root_block_checksum_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root block extension resides at block {0}. - /// - internal static string Root_block_extension_resides_at_block_0 { - get { - return ResourceManager.GetString("Root_block_extension_resides_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root directory block size: {0} bytes. - /// - internal static string Root_directory_block_size_0_bytes { - get { - return ResourceManager.GetString("Root_directory_block_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root directory descriptor starts at block {0}. - /// - internal static string Root_directory_descriptor_starts_at_block_0 { - get { - return ResourceManager.GetString("Root_directory_descriptor_starts_at_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root directory identifier: 0x{0:X8}. - /// - internal static string Root_directory_identifier_0 { - get { - return ResourceManager.GetString("Root_directory_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root directory resides on block {0}. - /// - internal static string Root_directory_resides_on_block_0 { - get { - return ResourceManager.GetString("Root_directory_resides_on_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root directory resides on inode {0}. - /// - internal static string Root_directory_resides_on_inode_0 { - get { - return ResourceManager.GetString("Root_directory_resides_on_inode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root directory size: {0} blocks, {1} bytes. - /// - internal static string Root_directory_size_0_blocks_1_bytes { - get { - return ResourceManager.GetString("Root_directory_size_0_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root directory starts at cluster {0}. - /// - internal static string Root_directory_starts_at_cluster_0 { - get { - return ResourceManager.GetString("Root_directory_starts_at_cluster_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root folder's i-node size: {0} blocks (Should be 1). - /// - internal static string Root_folder_i_node_size_0_blocks_Should_be_one { - get { - return ResourceManager.GetString("Root_folder_i_node_size_0_blocks_Should_be_one", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root folder's i-node resides in block {0} of allocation group {1} and runs for {2} blocks ({3} bytes). - /// - internal static string Root_folder_s_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { - get { - return ResourceManager.GetString("Root_folder_s_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_bloc" + - "ks_3_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root node of the extent B-tree resides in block {0}. - /// - internal static string Root_node_of_the_extent_B_tree_resides_in_block_0 { - get { - return ResourceManager.GetString("Root_node_of_the_extent_B_tree_resides_in_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root node of the object B-tree resides in block {0}. - /// - internal static string Root_node_of_the_object_B_tree_resides_in_block_0 { - get { - return ResourceManager.GetString("Root_node_of_the_object_B_tree_resides_in_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root object container starts in block {0}. - /// - internal static string Root_object_container_starts_in_block_0 { - get { - return ResourceManager.GetString("Root_object_container_starts_in_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root resides on inode {0}. - /// - internal static string Root_resides_on_inode_0 { - get { - return ResourceManager.GetString("Root_resides_on_inode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root starts at frag {0}. - /// - internal static string Root_starts_at_frag_0 { - get { - return ResourceManager.GetString("Root_starts_at_frag_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Root tree starts at LBA {0}. - /// - internal static string Root_tree_starts_at_LBA_0 { - get { - return ResourceManager.GetString("Root_tree_starts_at_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RPS level: {0}. - /// - internal static string RPS_level_0 { - get { - return ResourceManager.GetString("RPS_level_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RT-11 file system. - /// - internal static string RT11_Name { - get { - return ResourceManager.GetString("RT11_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to S-Records start at {0} and spans for {1} blocks. - /// - internal static string S_Records_start_at_0_and_spans_for_1_blocks { - get { - return ResourceManager.GetString("S_Records_start_at_0_and_spans_for_1_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Scavenger result code: 0x{0:X8}. - /// - internal static string Scavenger_result_code_0 { - get { - return ResourceManager.GetString("Scavenger_result_code_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Searching for Rootblock in sector {0}. - /// - internal static string Searching_for_Rootblock_in_sector_0 { - get { - return ResourceManager.GetString("Searching_for_Rootblock_in_sector_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Second {0} partition starts at sector {1}. - /// - internal static string Second_0_partition_starts_at_sector_1 { - get { - return ResourceManager.GetString("Second_0_partition_starts_at_sector_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 2nd FAT is in use. - /// - internal static string Second_FAT_is_in_use { - get { - return ResourceManager.GetString("Second_FAT_is_in_use", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 2nd fat starts at = {0}. - /// - internal static string Second_fat_starts_at_0 { - get { - return ResourceManager.GetString("Second_fat_starts_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Secondary home block is on sector {0} (VBN {1}). - /// - internal static string Secondary_home_block_is_on_sector_0_VBN_1 { - get { - return ResourceManager.GetString("Secondary_home_block_is_on_sector_0_VBN_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Section ID: {0}. - /// - internal static string Section_ID_0 { - get { - return ResourceManager.GetString("Section_ID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector {0}, file ID 0x{1:X4}. - /// - internal static string Sector_0_file_ID_1 { - get { - return ResourceManager.GetString("Sector_0_file_ID_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of ACL directory: {0}. - /// - internal static string Sector_of_ACL_directory_0 { - get { - return ResourceManager.GetString("Sector_of_ACL_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of backup FAT32 parameter block: {0}. - /// - internal static string Sector_of_backup_FAT32_parameter_block_0 { - get { - return ResourceManager.GetString("Sector_of_backup_FAT32_parameter_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of bad blocks list: {0}. - /// - internal static string Sector_of_bad_blocks_list_0 { - get { - return ResourceManager.GetString("Sector_of_bad_blocks_list_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of codepage directory: {0}. - /// - internal static string Sector_of_codepage_directory_0 { - get { - return ResourceManager.GetString("Sector_of_codepage_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of directory band bitmap: {0}. - /// - internal static string Sector_of_directory_band_bitmap_0 { - get { - return ResourceManager.GetString("Sector_of_directory_band_bitmap_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of first allocation block: {0}. - /// - internal static string Sector_of_first_allocation_block_0 { - get { - return ResourceManager.GetString("Sector_of_first_allocation_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of free space bitmaps: {0}. - /// - internal static string Sector_of_free_space_bitmaps_0 { - get { - return ResourceManager.GetString("Sector_of_free_space_bitmaps_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of FSINFO structure: {0}. - /// - internal static string Sector_of_FSINFO_structure_0 { - get { - return ResourceManager.GetString("Sector_of_FSINFO_structure_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of Hotfix directory: {0}. - /// - internal static string Sector_of_Hotfix_directory_0 { - get { - return ResourceManager.GetString("Sector_of_Hotfix_directory_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector of root directory FNode: {0}. - /// - internal static string Sector_of_root_directory_FNode_0 { - get { - return ResourceManager.GetString("Sector_of_root_directory_FNode_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector 0 skew: {0}/track. - /// - internal static string Sector_zero_skew_0_track { - get { - return ResourceManager.GetString("Sector_zero_skew_0_track", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sectors allocated at most in track {0}. - /// - internal static string Sectors_allocated_at_most_in_track_0 { - get { - return ResourceManager.GetString("Sectors_allocated_at_most_in_track_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Security mask: 0x{0:X8}. - /// - internal static string Security_mask_0 { - get { - return ResourceManager.GetString("Security_mask_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Selection criteria type: {0}. - /// - internal static string Selection_criteria_type_0 { - get { - return ResourceManager.GetString("Selection_criteria_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Serial: 0x{0:X16}. - /// - internal static string Serial_0_X16 { - get { - return ResourceManager.GetString("Serial_0_X16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Serial number: 0x{0:X8}. - /// - internal static string Serial_number_0 { - get { - return ResourceManager.GetString("Serial_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Serial number of Lisa computer that can use this volume's software {0}. - /// - internal static string Serial_number_of_Lisa_computer_that_can_use_this_volume_software_0 { - get { - return ResourceManager.GetString("Serial_number_of_Lisa_computer_that_can_use_this_volume_software_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Serial number of Lisa computer that created this volume: {0}. - /// - internal static string Serial_number_of_Lisa_computer_that_created_this_volume_0 { - get { - return ResourceManager.GetString("Serial_number_of_Lisa_computer_that_created_this_volume_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Set-uid/set-gid is disabled. - /// - internal static string Set_uid_set_gid_is_disabled { - get { - return ResourceManager.GetString("Set_uid_set_gid_is_disabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SmartFileSystem. - /// - internal static string SFS_Name { - get { - return ResourceManager.GetString("SFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SGI extent filesystem. - /// - internal static string SGI_extent_filesystem { - get { - return ResourceManager.GetString("SGI_extent_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Side 1 uses {0}:1 software interleaving. - /// - internal static string Side_one_uses_0_one_software_interleaving { - get { - return ResourceManager.GetString("Side_one_uses_0_one_software_interleaving", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Side 0 uses {0}:1 software interleaving. - /// - internal static string Side_zero_uses_0_one_software_interleaving { - get { - return ResourceManager.GetString("Side_zero_uses_0_one_software_interleaving", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Signature: 0x{0:X2}. - /// - internal static string Signature_0 { - get { - return ResourceManager.GetString("Signature_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Signed directory hash is in use. - /// - internal static string Signed_directory_hash_is_in_use { - get { - return ResourceManager.GetString("Signed_directory_hash_is_in_use", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Size of allocation blocks: {0} bytes. - /// - internal static string Size_of_allocation_blocks_0_bytes { - get { - return ResourceManager.GetString("Size_of_allocation_blocks_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Skew: {0}. - /// - internal static string Skew_0 { - get { - return ResourceManager.GetString("Skew_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SmartFileSystem. - /// - internal static string SmartFileSystem { - get { - return ResourceManager.GetString("SmartFileSystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Solar_OS filesystem. - /// - internal static string Solar_OS_filesystem { - get { - return ResourceManager.GetString("Solar_OS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Solar_OS filesystem. - /// - internal static string SolarFS_Name { - get { - return ResourceManager.GetString("SolarFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Source: {0}. - /// - internal static string Source_0 { - get { - return ResourceManager.GetString("Source_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Spare directory blocks are in use. - /// - internal static string Spare_directory_blocks_are_in_use { - get { - return ResourceManager.GetString("Spare_directory_blocks_are_in_use", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SpareBlock CRC32: {0:X8}. - /// - internal static string SpareBlock_CRC32_0 { - get { - return ResourceManager.GetString("SpareBlock_CRC32_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Spareblock magic1: 0x{0:X8} (Should be 0xF9911849). - /// - internal static string Spareblock_magic1_0_Should_be_0xF9911849 { - get { - return ResourceManager.GetString("Spareblock_magic1_0_Should_be_0xF9911849", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Spareblock magic2: 0x{0:X8} (Should be 0xFA5229C5). - /// - internal static string Spareblock_magic2_0_Should_be_0xFA5229C5 { - get { - return ResourceManager.GetString("Spareblock_magic2_0_Should_be_0xFA5229C5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Squash file system. - /// - internal static string Squash_file_system { - get { - return ResourceManager.GetString("Squash_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Squash filesystem. - /// - internal static string Squash_Name { - get { - return ResourceManager.GetString("Squash_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Standard superblock LBA: {0}. - /// - internal static string Standard_superblock_LBA_0 { - get { - return ResourceManager.GetString("Standard_superblock_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Starting block of the HFS+ volume: {0}. - /// - internal static string Starting_block_of_the_HFS_Plus_volume_0 { - get { - return ResourceManager.GetString("Starting_block_of_the_HFS_Plus_volume_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Startup File is {0} bytes.. - /// - internal static string Startup_File_is_0_bytes { - get { - return ResourceManager.GetString("Startup_File_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Startup screen filename: {0}. - /// - internal static string Startup_screen_filename_0 { - get { - return ResourceManager.GetString("Startup_screen_filename_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Super Nintendo Virtual Console. - /// - internal static string Super_Nintendo_Virtual_Console { - get { - return ResourceManager.GetString("Super_Nintendo_Virtual_Console", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SuperBlock CRC32: {0:X8}. - /// - internal static string SuperBlock_CRC32_0 { - get { - return ResourceManager.GetString("SuperBlock_CRC32_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock is {0} bytes. - /// - internal static string Superblock_is_0_bytes { - get { - return ResourceManager.GetString("Superblock_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock is being modified. - /// - internal static string Superblock_is_being_modified { - get { - return ResourceManager.GetString("Superblock_is_being_modified", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock last modified on {0}. - /// - internal static string Superblock_last_modified_on_0 { - get { - return ResourceManager.GetString("Superblock_last_modified_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock last updated on {0}. - /// - internal static string Superblock_last_updated_on_0 { - get { - return ResourceManager.GetString("Superblock_last_updated_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock LBA: {0}. - /// - internal static string Superblock_LBA_0 { - get { - return ResourceManager.GetString("Superblock_LBA_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock magic1: 0x{0:X8} (Should be 0xF995E849). - /// - internal static string Superblock_magic1_0_Should_be_0xF995E849 { - get { - return ResourceManager.GetString("Superblock_magic1_0_Should_be_0xF995E849", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock magic2: 0x{0:X8} (Should be 0xFA53E9C5). - /// - internal static string Superblock_magic2_0_Should_be_0xFA53E9C5 { - get { - return ResourceManager.GetString("Superblock_magic2_0_Should_be_0xFA53E9C5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock resides in block {0}. - /// - internal static string Superblock_resides_in_block_0 { - get { - return ResourceManager.GetString("Superblock_resides_in_block_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Superblock seems corrupt, following information may be incorrect. - /// - internal static string Superblock_seems_corrupt_following_information_may_be_incorrect { - get { - return ResourceManager.GetString("Superblock_seems_corrupt_following_information_may_be_incorrect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Supports nanosecond timestamps and creation time (ext4). - /// - internal static string Supports_nanosecond_timestamps_and_creation_time_ext4 { - get { - return ResourceManager.GetString("Supports_nanosecond_timestamps_and_creation_time_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Supports volumes bigger than 2^32 blocks (ext4). - /// - internal static string Supports_volumes_bigger_than_2_32_blocks_ext4 { - get { - return ResourceManager.GetString("Supports_volumes_bigger_than_2_32_blocks_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to System filename: {0}. - /// - internal static string System_filename_0 { - get { - return ResourceManager.GetString("System_filename_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to System heap will be extended by {0} bytes and a {1} fraction of the available RAM. - /// internal static string System_heap_will_be_extended_by_0_bytes_and_a_1_fraction_of_the_available_RAM { get { return ResourceManager.GetString("System_heap_will_be_extended_by_0_bytes_and_a_1_fraction_of_the_available_RAM", resourceCulture); } } - /// - /// Looks up a localized string similar to System identifier: {0}. - /// - internal static string System_identifier_0 { + internal static string Allocate_secondary_sound_buffer_at_boot { get { - return ResourceManager.GetString("System_identifier_0", resourceCulture); + return ResourceManager.GetString("Allocate_secondary_sound_buffer_at_boot", resourceCulture); } } - /// - /// Looks up a localized string similar to System, owner, group, world. - /// - internal static string System_owner_group_world { + internal static string Allocate_secondary_sound_and_video_buffers_at_boot { get { - return ResourceManager.GetString("System_owner_group_world", resourceCulture); + return ResourceManager.GetString("Allocate_secondary_sound_and_video_buffers_at_boot", resourceCulture); } } - /// - /// Looks up a localized string similar to System type: 0x{0:X2}. - /// - internal static string System_type_0 { + internal static string System_filename_0 { get { - return ResourceManager.GetString("System_type_0", resourceCulture); + return ResourceManager.GetString("System_filename_0", resourceCulture); } } - /// - /// Looks up a localized string similar to SYSTEM USE SHARING PROTOCOL INFORMATION:. - /// - internal static string SYSTEM_USE_SHARING_PROTOCOL_INFORMATION { + internal static string Finder_filename_0 { get { - return ResourceManager.GetString("SYSTEM_USE_SHARING_PROTOCOL_INFORMATION", resourceCulture); + return ResourceManager.GetString("Finder_filename_0", resourceCulture); } } - /// - /// Looks up a localized string similar to ----------------------------------------. - /// - internal static string SYSTEM_USE_SHARING_PROTOCOL_INFORMATION_border { + internal static string Debugger_filename_0 { get { - return ResourceManager.GetString("SYSTEM_USE_SHARING_PROTOCOL_INFORMATION_border", resourceCulture); + return ResourceManager.GetString("Debugger_filename_0", resourceCulture); } } - /// - /// Looks up a localized string similar to System Use Sharing Protocol present.. - /// - internal static string System_Use_Sharing_Protocol_present { + internal static string Disassembler_filename_0 { get { - return ResourceManager.GetString("System_Use_Sharing_Protocol_present", resourceCulture); + return ResourceManager.GetString("Disassembler_filename_0", resourceCulture); } } - /// - /// Looks up a localized string similar to System V Release 2 filesystem. - /// - internal static string System_V_Release_2_filesystem { + internal static string Startup_screen_filename_0 { get { - return ResourceManager.GetString("System_V_Release_2_filesystem", resourceCulture); + return ResourceManager.GetString("Startup_screen_filename_0", resourceCulture); } } - /// - /// Looks up a localized string similar to System V Release 4 filesystem. - /// - internal static string System_V_Release_4_filesystem { + internal static string First_program_to_execute_at_boot_0 { get { - return ResourceManager.GetString("System_V_Release_4_filesystem", resourceCulture); + return ResourceManager.GetString("First_program_to_execute_at_boot_0", resourceCulture); } } - /// - /// Looks up a localized string similar to UNIX System V filesystem. - /// - internal static string SysVfs_Name { + internal static string Clipboard_filename_0 { get { - return ResourceManager.GetString("SysVfs_Name", resourceCulture); + return ResourceManager.GetString("Clipboard_filename_0", resourceCulture); } } - /// - /// Looks up a localized string similar to The following information may be incorrect for this volume.. - /// - internal static string The_following_information_may_be_incorrect_for_this_volume { + internal static string Maximum_opened_files_0 { get { - return ResourceManager.GetString("The_following_information_may_be_incorrect_for_this_volume", resourceCulture); + return ResourceManager.GetString("Maximum_opened_files_0", resourceCulture); } } - /// - /// Looks up a localized string similar to There are {0} reserved blocks before volume. - /// - internal static string There_are_0_reserved_blocks_before_volume { + internal static string Event_queue_size_0 { get { - return ResourceManager.GetString("There_are_0_reserved_blocks_before_volume", resourceCulture); + return ResourceManager.GetString("Event_queue_size_0", resourceCulture); } } - /// - /// Looks up a localized string similar to There are a lot of variants of UFS using overlapped values on same fields. - /// - internal static string There_are_a_lot_of_variants_of_UFS_using_overlapped_values_on_same_fields { + internal static string Heap_size_with_128KiB_of_RAM_0_bytes { get { - return ResourceManager.GetString("There_are_a_lot_of_variants_of_UFS_using_overlapped_values_on_same_fields", resourceCulture); + return ResourceManager.GetString("Heap_size_with_128KiB_of_RAM_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to There are an estimate of {0} free inodes before next search start. - /// - internal static string There_are_an_estimate_of_0_free_inodes_before_next_search_start { + internal static string Heap_size_with_256KiB_of_RAM_0_bytes { get { - return ResourceManager.GetString("There_are_an_estimate_of_0_free_inodes_before_next_search_start", resourceCulture); + return ResourceManager.GetString("Heap_size_with_256KiB_of_RAM_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to There are bad blocks in the extents file.. - /// - internal static string There_are_bad_blocks_in_the_extents_file { + internal static string Heap_size_with_512KiB_of_RAM_or_more_0_bytes { get { - return ResourceManager.GetString("There_are_bad_blocks_in_the_extents_file", resourceCulture); + return ResourceManager.GetString("Heap_size_with_512KiB_of_RAM_or_more_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to There are no orphaned inodes. - /// - internal static string There_are_no_orphaned_inodes { + internal static string AppleDOS_Name { get { - return ResourceManager.GetString("There_are_no_orphaned_inodes", resourceCulture); + return ResourceManager.GetString("AppleDOS_Name", resourceCulture); + } + } + + internal static string Catalog_starts_at_sector_0_of_track_1 { + get { + return ResourceManager.GetString("Catalog_starts_at_sector_0_of_track_1", resourceCulture); + } + } + + internal static string File_system_initialized_by_DOS_release_0 { + get { + return ResourceManager.GetString("File_system_initialized_by_DOS_release_0", resourceCulture); + } + } + + internal static string Disk_volume_number_0 { + get { + return ResourceManager.GetString("Disk_volume_number_0", resourceCulture); + } + } + + internal static string Sectors_allocated_at_most_in_track_0 { + get { + return ResourceManager.GetString("Sectors_allocated_at_most_in_track_0", resourceCulture); + } + } + + internal static string _0_tracks_in_volume { + get { + return ResourceManager.GetString("_0_tracks_in_volume", resourceCulture); + } + } + + internal static string _0_sectors_per_track { + get { + return ResourceManager.GetString("_0_sectors_per_track", resourceCulture); + } + } + + internal static string _0_bytes_per_sector { + get { + return ResourceManager.GetString("_0_bytes_per_sector", resourceCulture); + } + } + + internal static string Track_allocation_is_forward { + get { + return ResourceManager.GetString("Track_allocation_is_forward", resourceCulture); + } + } + + internal static string Track_allocation_is_reverse { + get { + return ResourceManager.GetString("Track_allocation_is_reverse", resourceCulture); + } + } + + internal static string Incorrect_device_size { + get { + return ResourceManager.GetString("Incorrect_device_size", resourceCulture); + } + } + + internal static string Partitions_are_not_supported { + get { + return ResourceManager.GetString("Partitions_are_not_supported", resourceCulture); + } + } + + internal static string Incorrect_sector_size { + get { + return ResourceManager.GetString("Incorrect_sector_size", resourceCulture); + } + } + + internal static string Unable_to_read_catalog { + get { + return ResourceManager.GetString("Unable_to_read_catalog", resourceCulture); + } + } + + internal static string Unable_cache_all_files { + get { + return ResourceManager.GetString("Unable_cache_all_files", resourceCulture); + } + } + + internal static string Name_Apple_Hierarchical_File_System { + get { + return ResourceManager.GetString("Name_Apple_Hierarchical_File_System", resourceCulture); + } + } + + internal static string HFS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector { + get { + return ResourceManager.GetString("HFS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector", resourceCulture); + } + } + + internal static string Master_Directory_Block { + get { + return ResourceManager.GetString("Master_Directory_Block", resourceCulture); + } + } + + internal static string Creation_date_0 { + get { + return ResourceManager.GetString("Creation_date_0", resourceCulture); + } + } + + internal static string Last_modification_date_0 { + get { + return ResourceManager.GetString("Last_modification_date_0", resourceCulture); + } + } + + internal static string Last_backup_date_0 { + get { + return ResourceManager.GetString("Last_backup_date_0", resourceCulture); + } + } + + internal static string Backup_sequence_number_0 { + get { + return ResourceManager.GetString("Backup_sequence_number_0", resourceCulture); + } + } + + internal static string Volume_has_never_been_backed_up { + get { + return ResourceManager.GetString("Volume_has_never_been_backed_up", resourceCulture); + } + } + + internal static string Volume_is_locked_by_hardware { + get { + return ResourceManager.GetString("Volume_is_locked_by_hardware", resourceCulture); + } + } + + internal static string Volume_was_unmonted { + get { + return ResourceManager.GetString("Volume_was_unmonted", resourceCulture); + } + } + + internal static string Volume_is_mounted { + get { + return ResourceManager.GetString("Volume_is_mounted", resourceCulture); + } + } + + internal static string Volume_has_spared_bad_blocks { + get { + return ResourceManager.GetString("Volume_has_spared_bad_blocks", resourceCulture); + } + } + + internal static string Volume_does_not_need_cache { + get { + return ResourceManager.GetString("Volume_does_not_need_cache", resourceCulture); + } + } + + internal static string Boot_volume_is_inconsistent { + get { + return ResourceManager.GetString("Boot_volume_is_inconsistent", resourceCulture); } } - /// - /// Looks up a localized string similar to There are reused CNIDs.. - /// internal static string There_are_reused_CNIDs { get { return ResourceManager.GetString("There_are_reused_CNIDs", resourceCulture); } } - /// - /// Looks up a localized string similar to Third {0} partition starts at sector {1}. - /// - internal static string Third_0_partition_starts_at_sector_1 { + internal static string Volume_is_journaled { get { - return ResourceManager.GetString("Third_0_partition_starts_at_sector_1", resourceCulture); + return ResourceManager.GetString("Volume_is_journaled", resourceCulture); } } - /// - /// Looks up a localized string similar to This home block is on sector {0} (VBN {1}). - /// - internal static string This_home_block_is_on_sector_0_VBN_1 { + internal static string Volume_is_seriously_inconsistent { get { - return ResourceManager.GetString("This_home_block_is_on_sector_0_VBN_1", resourceCulture); + return ResourceManager.GetString("Volume_is_seriously_inconsistent", resourceCulture); } } - /// - /// Looks up a localized string similar to This is a Sega Dreamcast disc.. - /// - internal static string This_is_a_Sega_Dreamcast_disc { + internal static string Volume_is_locked_by_software { get { - return ResourceManager.GetString("This_is_a_Sega_Dreamcast_disc", resourceCulture); + return ResourceManager.GetString("Volume_is_locked_by_software", resourceCulture); } } - /// - /// Looks up a localized string similar to This is a Sega Saturn disc.. - /// - internal static string This_is_a_Sega_Saturn_disc { + internal static string _0_directories_in_root_directory { get { - return ResourceManager.GetString("This_is_a_Sega_Saturn_disc", resourceCulture); + return ResourceManager.GetString("_0_directories_in_root_directory", resourceCulture); + } + } + + internal static string _0_directories_in_volume { + get { + return ResourceManager.GetString("_0_directories_in_volume", resourceCulture); + } + } + + internal static string Volume_write_count_0 { + get { + return ResourceManager.GetString("Volume_write_count_0", resourceCulture); + } + } + + internal static string Volume_bitmap_starting_sector_in_512_bytes_0 { + get { + return ResourceManager.GetString("Volume_bitmap_starting_sector_in_512_bytes_0", resourceCulture); + } + } + + internal static string Next_allocation_block_0 { + get { + return ResourceManager.GetString("Next_allocation_block_0", resourceCulture); + } + } + + internal static string _0_volume_allocation_blocks { + get { + return ResourceManager.GetString("_0_volume_allocation_blocks", resourceCulture); + } + } + + internal static string _0_bytes_per_allocation_block { + get { + return ResourceManager.GetString("_0_bytes_per_allocation_block", resourceCulture); + } + } + + internal static string _0_bytes_to_allocate_when_extending_a_file { + get { + return ResourceManager.GetString("_0_bytes_to_allocate_when_extending_a_file", resourceCulture); + } + } + + internal static string _0_bytes_to_allocate_when_extending_a_Extents_B_Tree { + get { + return ResourceManager.GetString("_0_bytes_to_allocate_when_extending_a_Extents_B_Tree", resourceCulture); + } + } + + internal static string _0_bytes_to_allocate_when_extending_a_Catalog_B_Tree { + get { + return ResourceManager.GetString("_0_bytes_to_allocate_when_extending_a_Catalog_B_Tree", resourceCulture); + } + } + + internal static string Sector_of_first_allocation_block_0 { + get { + return ResourceManager.GetString("Sector_of_first_allocation_block_0", resourceCulture); + } + } + + internal static string Next_unused_CNID_0 { + get { + return ResourceManager.GetString("Next_unused_CNID_0", resourceCulture); + } + } + + internal static string _0_unused_allocation_blocks { + get { + return ResourceManager.GetString("_0_unused_allocation_blocks", resourceCulture); + } + } + + internal static string _0_bytes_in_the_Extents_B_Tree { + get { + return ResourceManager.GetString("_0_bytes_in_the_Extents_B_Tree", resourceCulture); + } + } + + internal static string _0_bytes_in_the_Catalog_B_Tree { + get { + return ResourceManager.GetString("_0_bytes_in_the_Catalog_B_Tree", resourceCulture); + } + } + + internal static string Volume_name_0 { + get { + return ResourceManager.GetString("Volume_name_0", resourceCulture); + } + } + + internal static string Finder_info { + get { + return ResourceManager.GetString("Finder_info", resourceCulture); + } + } + + internal static string CNID_of_bootable_system_directory_0 { + get { + return ResourceManager.GetString("CNID_of_bootable_system_directory_0", resourceCulture); + } + } + + internal static string CNID_of_first_run_application_directory_0 { + get { + return ResourceManager.GetString("CNID_of_first_run_application_directory_0", resourceCulture); + } + } + + internal static string CNID_of_previously_opened_directory_0 { + get { + return ResourceManager.GetString("CNID_of_previously_opened_directory_0", resourceCulture); + } + } + + internal static string CNID_of_bootable_Mac_OS_8_or_9_directory_0 { + get { + return ResourceManager.GetString("CNID_of_bootable_Mac_OS_8_or_9_directory_0", resourceCulture); + } + } + + internal static string CNID_of_bootable_Mac_OS_X_directory_0 { + get { + return ResourceManager.GetString("CNID_of_bootable_Mac_OS_X_directory_0", resourceCulture); + } + } + + internal static string Mac_OS_X_Volume_ID_0_1 { + get { + return ResourceManager.GetString("Mac_OS_X_Volume_ID_0_1", resourceCulture); + } + } + + internal static string Volume_wraps_a_HFS_Plus_volume { + get { + return ResourceManager.GetString("Volume_wraps_a_HFS_Plus_volume", resourceCulture); + } + } + + internal static string Starting_block_of_the_HFS_Plus_volume_0 { + get { + return ResourceManager.GetString("Starting_block_of_the_HFS_Plus_volume_0", resourceCulture); + } + } + + internal static string Allocations_blocks_of_the_HFS_Plus_volume_0 { + get { + return ResourceManager.GetString("Allocations_blocks_of_the_HFS_Plus_volume_0", resourceCulture); + } + } + + internal static string _0_blocks_in_volume_cache { + get { + return ResourceManager.GetString("_0_blocks_in_volume_cache", resourceCulture); + } + } + + internal static string _0_blocks_in_volume_bitmap_cache { + get { + return ResourceManager.GetString("_0_blocks_in_volume_bitmap_cache", resourceCulture); + } + } + + internal static string _0_blocks_in_volume_common_cache { + get { + return ResourceManager.GetString("_0_blocks_in_volume_common_cache", resourceCulture); + } + } + + internal static string Volume_is_bootable { + get { + return ResourceManager.GetString("Volume_is_bootable", resourceCulture); + } + } + + internal static string Volume_is_not_bootable { + get { + return ResourceManager.GetString("Volume_is_not_bootable", resourceCulture); + } + } + + internal static string File_truncated_at_block_0 { + get { + return ResourceManager.GetString("File_truncated_at_block_0", resourceCulture); + } + } + + internal static string AppleMFS_Name { + get { + return ResourceManager.GetString("AppleMFS_Name", resourceCulture); + } + } + + internal static string First_directory_sector_0 { + get { + return ResourceManager.GetString("First_directory_sector_0", resourceCulture); + } + } + + internal static string _0_sectors_in_directory { + get { + return ResourceManager.GetString("_0_sectors_in_directory", resourceCulture); + } + } + + internal static string Size_of_allocation_blocks_0_bytes { + get { + return ResourceManager.GetString("Size_of_allocation_blocks_0_bytes", resourceCulture); + } + } + + internal static string _0_bytes_to_allocate { + get { + return ResourceManager.GetString("_0_bytes_to_allocate", resourceCulture); + } + } + + internal static string First_allocation_block_number_two_starts_in_sector_0 { + get { + return ResourceManager.GetString("First_allocation_block_number_two_starts_in_sector_0", resourceCulture); + } + } + + internal static string Next_unused_file_number_0 { + get { + return ResourceManager.GetString("Next_unused_file_number_0", resourceCulture); + } + } + + internal static string CPM_Name { + get { + return ResourceManager.GetString("CPM_Name", resourceCulture); + } + } + + internal static string Found_Amstrad_superblock { + get { + return ResourceManager.GetString("Found_Amstrad_superblock", resourceCulture); + } + } + + internal static string Found_CPM_86_hard_disk_superblock { + get { + return ResourceManager.GetString("Found_CPM_86_hard_disk_superblock", resourceCulture); + } + } + + internal static string Found_CPM_86_floppy_identifier { + get { + return ResourceManager.GetString("Found_CPM_86_floppy_identifier", resourceCulture); + } + } + + internal static string First_directory_block_seems_correct { + get { + return ResourceManager.GetString("First_directory_block_seems_correct", resourceCulture); + } + } + + internal static string Trying_to_load_definitions { + get { + return ResourceManager.GetString("Trying_to_load_definitions", resourceCulture); + } + } + + internal static string Trying_all_known_definitions { + get { + return ResourceManager.GetString("Trying_all_known_definitions", resourceCulture); + } + } + + internal static string Trying_definition_0 { + get { + return ResourceManager.GetString("Trying_definition_0", resourceCulture); + } + } + + internal static string Dont_know_how_to_handle_COLUMBIA_ordering_not_proceeding_with_this_definition { + get { + return ResourceManager.GetString("Dont_know_how_to_handle_COLUMBIA_ordering_not_proceeding_with_this_definition", resourceCulture); + } + } + + internal static string Don_know_how_to_handle_EAGLE_ordering_not_proceeding_with_this_definition { + get { + return ResourceManager.GetString("Don_know_how_to_handle_EAGLE_ordering_not_proceeding_with_this_definition", resourceCulture); + } + } + + internal static string Unknown_order_type_0_not_proceeding_with_this_definition { + get { + return ResourceManager.GetString("Unknown_order_type_0_not_proceeding_with_this_definition", resourceCulture); + } + } + + internal static string Definition_contains_EVEN_ODD_field_with_unknown_meaning_detection_may_be_wrong { + get { + return ResourceManager.GetString("Definition_contains_EVEN_ODD_field_with_unknown_meaning_detection_may_be_wrong", resourceCulture); + } + } + + internal static string Definition_0_has_a_correct_directory { + get { + return ResourceManager.GetString("Definition_0_has_a_correct_directory", resourceCulture); + } + } + + internal static string Identified_as_0 { + get { + return ResourceManager.GetString("Identified_as_0", resourceCulture); + } + } + + internal static string Volume_block_is_0_bytes { + get { + return ResourceManager.GetString("Volume_block_is_0_bytes", resourceCulture); + } + } + + internal static string Volume_contains_0_blocks_1_bytes { + get { + return ResourceManager.GetString("Volume_contains_0_blocks_1_bytes", resourceCulture); + } + } + + internal static string CPM_filesystem { + get { + return ResourceManager.GetString("CPM_filesystem", resourceCulture); + } + } + + internal static string Volume_contains_0_directory_entries { + get { + return ResourceManager.GetString("Volume_contains_0_directory_entries", resourceCulture); + } + } + + internal static string Volume_reserves_0_sectors_for_system { + get { + return ResourceManager.GetString("Volume_reserves_0_sectors_for_system", resourceCulture); + } + } + + internal static string Volume_reserves_1_tracks_0_sectors_for_system { + get { + return ResourceManager.GetString("Volume_reserves_1_tracks_0_sectors_for_system", resourceCulture); + } + } + + internal static string Side_zero_uses_0_one_software_interleaving { + get { + return ResourceManager.GetString("Side_zero_uses_0_one_software_interleaving", resourceCulture); + } + } + + internal static string Side_one_uses_0_one_software_interleaving { + get { + return ResourceManager.GetString("Side_one_uses_0_one_software_interleaving", resourceCulture); + } + } + + internal static string Head_changes_after_each_whole_track { + get { + return ResourceManager.GetString("Head_changes_after_each_whole_track", resourceCulture); + } + } + + internal static string Head_changes_after_whole_side { + get { + return ResourceManager.GetString("Head_changes_after_whole_side", resourceCulture); + } + } + + internal static string Unknown_how_0_side_ordering_works { + get { + return ResourceManager.GetString("Unknown_how_0_side_ordering_works", resourceCulture); + } + } + + internal static string Device_uses_0_one_hardware_interleaving { + get { + return ResourceManager.GetString("Device_uses_0_one_hardware_interleaving", resourceCulture); + } + } + + internal static string Volume_label_0 { + get { + return ResourceManager.GetString("Volume_label_0", resourceCulture); + } + } + + internal static string Volume_uses_standard_CPM_timestamps { + get { + return ResourceManager.GetString("Volume_uses_standard_CPM_timestamps", resourceCulture); + } + } + + internal static string Volume_uses_third_party_timestamps { + get { + return ResourceManager.GetString("Volume_uses_third_party_timestamps", resourceCulture); + } + } + + internal static string Volume_created_on_0 { + get { + return ResourceManager.GetString("Volume_created_on_0", resourceCulture); + } + } + + internal static string Volume_updated_on_0 { + get { + return ResourceManager.GetString("Volume_updated_on_0", resourceCulture); + } + } + + internal static string CYLINDERS_ordering_not_yet_implemented { + get { + return ResourceManager.GetString("CYLINDERS_ordering_not_yet_implemented", resourceCulture); + } + } + + internal static string Deinterleaving_whole_volume { + get { + return ResourceManager.GetString("Deinterleaving_whole_volume", resourceCulture); + } + } + + internal static string Creating_allocation_blocks { + get { + return ResourceManager.GetString("Creating_allocation_blocks", resourceCulture); + } + } + + internal static string Reading_directory { + get { + return ResourceManager.GetString("Reading_directory", resourceCulture); + } + } + + internal static string Traversing_directory { + get { + return ResourceManager.GetString("Traversing_directory", resourceCulture); + } + } + + internal static string Using_Human68k_BPB { + get { + return ResourceManager.GetString("Using_Human68k_BPB", resourceCulture); + } + } + + internal static string Using_FAT32_BPB { + get { + return ResourceManager.GetString("Using_FAT32_BPB", resourceCulture); + } + } + + internal static string Using_short_FAT32_BPB { + get { + return ResourceManager.GetString("Using_short_FAT32_BPB", resourceCulture); + } + } + + internal static string Using_MSX_BPB { + get { + return ResourceManager.GetString("Using_MSX_BPB", resourceCulture); + } + } + + internal static string Using_Apricot_BPB { + get { + return ResourceManager.GetString("Using_Apricot_BPB", resourceCulture); + } + } + + internal static string Using_DOS_4_0_BPB { + get { + return ResourceManager.GetString("Using_DOS_4_0_BPB", resourceCulture); + } + } + + internal static string Using_DOS_3_4_BPB { + get { + return ResourceManager.GetString("Using_DOS_3_4_BPB", resourceCulture); + } + } + + internal static string Using_DOS_3_3_BPB { + get { + return ResourceManager.GetString("Using_DOS_3_3_BPB", resourceCulture); + } + } + + internal static string Using_Atari_BPB { + get { + return ResourceManager.GetString("Using_Atari_BPB", resourceCulture); + } + } + + internal static string Using_DOS_3_2_BPB { + get { + return ResourceManager.GetString("Using_DOS_3_2_BPB", resourceCulture); + } + } + + internal static string Using_DOS_3_0_BPB { + get { + return ResourceManager.GetString("Using_DOS_3_0_BPB", resourceCulture); + } + } + + internal static string Using_DOS_2_0_BPB { + get { + return ResourceManager.GetString("Using_DOS_2_0_BPB", resourceCulture); + } + } + + internal static string Using_DEC_Rainbow_hardcoded_BPB { + get { + return ResourceManager.GetString("Using_DEC_Rainbow_hardcoded_BPB", resourceCulture); + } + } + + internal static string Using_hardcoded_BPB { + get { + return ResourceManager.GetString("Using_hardcoded_BPB", resourceCulture); + } + } + + internal static string Using_hardcoded_BPB_for_5_25_SSDD { + get { + return ResourceManager.GetString("Using_hardcoded_BPB_for_5_25_SSDD", resourceCulture); + } + } + + internal static string Using_hardcoded_BPB_for_5_25_DSDD { + get { + return ResourceManager.GetString("Using_hardcoded_BPB_for_5_25_DSDD", resourceCulture); + } + } + + internal static string Found_empty_filename_in_0 { + get { + return ResourceManager.GetString("Found_empty_filename_in_0", resourceCulture); + } + } + + internal static string FAT_Name { + get { + return ResourceManager.GetString("FAT_Name", resourceCulture); + } + } + + internal static string DOS_8_3_all_uppercase { + get { + return ResourceManager.GetString("DOS_8_3_all_uppercase", resourceCulture); + } + } + + internal static string Windows_NT_8_3_mixed_case { + get { + return ResourceManager.GetString("Windows_NT_8_3_mixed_case", resourceCulture); + } + } + + internal static string OS2_LONGNAME_extended_attribute { + get { + return ResourceManager.GetString("OS2_LONGNAME_extended_attribute", resourceCulture); + } + } + + internal static string Use_LFN_when_available_with_fallback_to_LONGNAME_default { + get { + return ResourceManager.GetString("Use_LFN_when_available_with_fallback_to_LONGNAME_default", resourceCulture); + } + } + + internal static string Long_file_names { + get { + return ResourceManager.GetString("Long_file_names", resourceCulture); + } + } + + internal static string Second_fat_starts_at_0 { + get { + return ResourceManager.GetString("Second_fat_starts_at_0", resourceCulture); + } + } + + internal static string FAT_Plus { + get { + return ResourceManager.GetString("FAT_Plus", resourceCulture); + } + } + + internal static string Microsoft_FAT32 { + get { + return ResourceManager.GetString("Microsoft_FAT32", resourceCulture); + } + } + + internal static string Volume_has_been_modified_by_Windows_9x_Me_Volume_Tracker { + get { + return ResourceManager.GetString("Volume_has_been_modified_by_Windows_9x_Me_Volume_Tracker", resourceCulture); + } + } + + internal static string _0_sectors_per_cluster { + get { + return ResourceManager.GetString("_0_sectors_per_cluster", resourceCulture); + } + } + + internal static string _0_sectors_reserved_between_BPB_and_FAT { + get { + return ResourceManager.GetString("_0_sectors_reserved_between_BPB_and_FAT", resourceCulture); + } + } + + internal static string _0_sectors_on_volume_1_bytes { + get { + return ResourceManager.GetString("_0_sectors_on_volume_1_bytes", resourceCulture); + } + } + + internal static string _0_clusters_on_volume { + get { + return ResourceManager.GetString("_0_clusters_on_volume", resourceCulture); + } + } + + internal static string Media_descriptor_0 { + get { + return ResourceManager.GetString("Media_descriptor_0", resourceCulture); + } + } + + internal static string _0_sectors_per_FAT { + get { + return ResourceManager.GetString("_0_sectors_per_FAT", resourceCulture); + } + } + + internal static string _0_heads { + get { + return ResourceManager.GetString("_0_heads", resourceCulture); + } + } + + internal static string _0_hidden_sectors_before_BPB { + get { + return ResourceManager.GetString("_0_hidden_sectors_before_BPB", resourceCulture); + } + } + + internal static string Cluster_of_root_directory_0 { + get { + return ResourceManager.GetString("Cluster_of_root_directory_0", resourceCulture); + } + } + + internal static string Sector_of_FSINFO_structure_0 { + get { + return ResourceManager.GetString("Sector_of_FSINFO_structure_0", resourceCulture); + } + } + + internal static string Sector_of_backup_FAT32_parameter_block_0 { + get { + return ResourceManager.GetString("Sector_of_backup_FAT32_parameter_block_0", resourceCulture); + } + } + + internal static string Drive_number_0 { + get { + return ResourceManager.GetString("Drive_number_0", resourceCulture); + } + } + + internal static string Volume_should_be_checked_on_next_mount { + get { + return ResourceManager.GetString("Volume_should_be_checked_on_next_mount", resourceCulture); + } + } + + internal static string Disk_surface_should_be_checked_on_next_mount { + get { + return ResourceManager.GetString("Disk_surface_should_be_checked_on_next_mount", resourceCulture); + } + } + + internal static string FATs_are_out_of_sync_FAT_0_is_in_use { + get { + return ResourceManager.GetString("FATs_are_out_of_sync_FAT_0_is_in_use", resourceCulture); + } + } + + internal static string All_copies_of_FAT_are_the_same { + get { + return ResourceManager.GetString("All_copies_of_FAT_are_the_same", resourceCulture); + } + } + + internal static string DR_DOS_will_boot_this_FAT32_using_CHS { + get { + return ResourceManager.GetString("DR_DOS_will_boot_this_FAT32_using_CHS", resourceCulture); + } + } + + internal static string DR_DOS_will_boot_this_FAT32_using_LBA { + get { + return ResourceManager.GetString("DR_DOS_will_boot_this_FAT32_using_LBA", resourceCulture); + } + } + + internal static string Filesystem_type_0 { + get { + return ResourceManager.GetString("Filesystem_type_0", resourceCulture); + } + } + + internal static string _0_free_clusters { + get { + return ResourceManager.GetString("_0_free_clusters", resourceCulture); + } + } + + internal static string Last_allocated_cluster_0 { + get { + return ResourceManager.GetString("Last_allocated_cluster_0", resourceCulture); + } + } + + internal static string cmdload_will_be_loaded_with_value_0 { + get { + return ResourceManager.GetString("cmdload_will_be_loaded_with_value_0", resourceCulture); + } + } + + internal static string Boot_program_will_be_loaded_at_address_0 { + get { + return ResourceManager.GetString("Boot_program_will_be_loaded_at_address_0", resourceCulture); + } + } + + internal static string FAT_and_directory_will_be_cached_at_address_0 { + get { + return ResourceManager.GetString("FAT_and_directory_will_be_cached_at_address_0", resourceCulture); + } + } + + internal static string Boot_program_resides_in_file_0 { + get { + return ResourceManager.GetString("Boot_program_resides_in_file_0", resourceCulture); + } + } + + internal static string Boot_program_starts_in_sector_0_and_is_1_sectors_long_2_bytes { + get { + return ResourceManager.GetString("Boot_program_starts_in_sector_0_and_is_1_sectors_long_2_bytes", resourceCulture); + } + } + + internal static string Atari_FAT12 { + get { + return ResourceManager.GetString("Atari_FAT12", resourceCulture); + } + } + + internal static string Apricot_FAT12 { + get { + return ResourceManager.GetString("Apricot_FAT12", resourceCulture); + } + } + + internal static string Human68k_FAT12 { + get { + return ResourceManager.GetString("Human68k_FAT12", resourceCulture); + } + } + + internal static string Microsoft_FAT12 { + get { + return ResourceManager.GetString("Microsoft_FAT12", resourceCulture); + } + } + + internal static string Atari_FAT16 { + get { + return ResourceManager.GetString("Atari_FAT16", resourceCulture); + } + } + + internal static string Human68k_FAT16 { + get { + return ResourceManager.GetString("Human68k_FAT16", resourceCulture); + } + } + + internal static string Microsoft_FAT16 { + get { + return ResourceManager.GetString("Microsoft_FAT16", resourceCulture); + } + } + + internal static string _0_FATs { + get { + return ResourceManager.GetString("_0_FATs", resourceCulture); + } + } + + internal static string _0_entries_in_root_directory { + get { + return ResourceManager.GetString("_0_entries_in_root_directory", resourceCulture); + } + } + + internal static string Volume_Serial_Number_0 { + get { + return ResourceManager.GetString("Volume_Serial_Number_0", resourceCulture); + } + } + + internal static string Volume_last_modified_on_0 { + get { + return ResourceManager.GetString("Volume_last_modified_on_0", resourceCulture); + } + } + + internal static string Volume_last_accessed_on_0_d { + get { + return ResourceManager.GetString("Volume_last_accessed_on_0_d", resourceCulture); + } + } + + internal static string Boot_code_SHA1_0 { + get { + return ResourceManager.GetString("Boot_code_SHA1_0", resourceCulture); + } + } + + internal static string Unknown_boot_code { + get { + return ResourceManager.GetString("Unknown_boot_code", resourceCulture); + } + } + + internal static string Boot_code_corresponds_to_0 { + get { + return ResourceManager.GetString("Boot_code_corresponds_to_0", resourceCulture); + } + } + + internal static string Reading_BPB { + get { + return ResourceManager.GetString("Reading_BPB", resourceCulture); + } + } + + internal static string Found_empty_filename_in_root_directory { + get { + return ResourceManager.GetString("Found_empty_filename_in_root_directory", resourceCulture); + } + } + + internal static string Reading_FAT12 { + get { + return ResourceManager.GetString("Reading_FAT12", resourceCulture); + } + } + + internal static string Reading_FAT16 { + get { + return ResourceManager.GetString("Reading_FAT16", resourceCulture); + } + } + + internal static string Casting_FAT { + get { + return ResourceManager.GetString("Casting_FAT", resourceCulture); + } + } + + internal static string XboxFatPlugin_Name { + get { + return ResourceManager.GetString("XboxFatPlugin_Name", resourceCulture); + } + } + + internal static string FATX_filesystem { + get { + return ResourceManager.GetString("FATX_filesystem", resourceCulture); + } + } + + internal static string _0_logical_sectors_1_bytes_per_physical_sector { + get { + return ResourceManager.GetString("_0_logical_sectors_1_bytes_per_physical_sector", resourceCulture); + } + } + + internal static string _0_sectors_1_bytes_per_cluster { + get { + return ResourceManager.GetString("_0_sectors_1_bytes_per_cluster", resourceCulture); + } + } + + internal static string Volume_serial_0_X8 { + get { + return ResourceManager.GetString("Volume_serial_0_X8", resourceCulture); + } + } + + internal static string Reading_superblock { + get { + return ResourceManager.GetString("Reading_superblock", resourceCulture); + } + } + + internal static string Filesystem_is_little_endian { + get { + return ResourceManager.GetString("Filesystem_is_little_endian", resourceCulture); + } + } + + internal static string Filesystem_is_big_endian { + get { + return ResourceManager.GetString("Filesystem_is_big_endian", resourceCulture); + } + } + + internal static string Reading_FAT32 { + get { + return ResourceManager.GetString("Reading_FAT32", resourceCulture); + } + } + + internal static string FAT_is_0_sectors { + get { + return ResourceManager.GetString("FAT_is_0_sectors", resourceCulture); + } + } + + internal static string Reading_root_directory { + get { + return ResourceManager.GetString("Reading_root_directory", resourceCulture); + } + } + + internal static string HPOFS_Name { + get { + return ResourceManager.GetString("HPOFS_Name", resourceCulture); + } + } + + internal static string OEM_name_0 { + get { + return ResourceManager.GetString("OEM_name_0", resourceCulture); + } + } + + internal static string _0_sectors_hidden_before_BPB { + get { + return ResourceManager.GetString("_0_sectors_hidden_before_BPB", resourceCulture); + } + } + + internal static string Serial_number_0 { + get { + return ResourceManager.GetString("Serial_number_0", resourceCulture); + } + } + + internal static string Volume_comment_0 { + get { + return ResourceManager.GetString("Volume_comment_0", resourceCulture); + } + } + + internal static string Volume_owner_0 { + get { + return ResourceManager.GetString("Volume_owner_0", resourceCulture); + } + } + + internal static string Volume_uses_0_codepage_1 { + get { + return ResourceManager.GetString("Volume_uses_0_codepage_1", resourceCulture); + } + } + + internal static string EBCDIC { + get { + return ResourceManager.GetString("EBCDIC", resourceCulture); + } + } + + internal static string ASCII { + get { + return ResourceManager.GetString("ASCII", resourceCulture); + } + } + + internal static string Unknown_codepage { + get { + return ResourceManager.GetString("Unknown_codepage", resourceCulture); + } + } + + internal static string RPS_level_0 { + get { + return ResourceManager.GetString("RPS_level_0", resourceCulture); + } + } + + internal static string Filesystem_version_0_1 { + get { + return ResourceManager.GetString("Filesystem_version_0_1", resourceCulture); + } + } + + internal static string Volume_can_be_filled_up_to_0 { + get { + return ResourceManager.GetString("Volume_can_be_filled_up_to_0", resourceCulture); + } + } + + internal static string Exception_reading_CD_i_audio_file { + get { + return ResourceManager.GetString("Exception_reading_CD_i_audio_file", resourceCulture); + } + } + + internal static string Processing_VD_loop_no_0 { + get { + return ResourceManager.GetString("Processing_VD_loop_no_0", resourceCulture); + } + } + + internal static string Reading_sector_0 { + get { + return ResourceManager.GetString("Reading_sector_0", resourceCulture); + } + } + + internal static string Unknown_specification { + get { + return ResourceManager.GetString("Unknown_specification", resourceCulture); + } + } + + internal static string Found_unknown_supplementary_volume_descriptor { + get { + return ResourceManager.GetString("Found_unknown_supplementary_volume_descriptor", resourceCulture); + } + } + + internal static string ERROR_Could_not_find_primary_volume_descriptor { + get { + return ResourceManager.GetString("ERROR_Could_not_find_primary_volume_descriptor", resourceCulture); + } + } + + internal static string SYSTEM_USE_SHARING_PROTOCOL_INFORMATION { + get { + return ResourceManager.GetString("SYSTEM_USE_SHARING_PROTOCOL_INFORMATION", resourceCulture); + } + } + + internal static string SYSTEM_USE_SHARING_PROTOCOL_INFORMATION_border { + get { + return ResourceManager.GetString("SYSTEM_USE_SHARING_PROTOCOL_INFORMATION_border", resourceCulture); + } + } + + internal static string Extension_0 { + get { + return ResourceManager.GetString("Extension_0", resourceCulture); + } + } + + internal static string ID_0_version_1 { + get { + return ResourceManager.GetString("ID_0_version_1", resourceCulture); + } + } + + internal static string Description_0 { + get { + return ResourceManager.GetString("Description_0", resourceCulture); + } + } + + internal static string Source_0 { + get { + return ResourceManager.GetString("Source_0", resourceCulture); + } + } + + internal static string High_Sierra_Format_file_system { + get { + return ResourceManager.GetString("High_Sierra_Format_file_system", resourceCulture); + } + } + + internal static string CD_i_file_system { + get { + return ResourceManager.GetString("CD_i_file_system", resourceCulture); + } + } + + internal static string ISO9660_file_system { + get { + return ResourceManager.GetString("ISO9660_file_system", resourceCulture); + } + } + + internal static string CD_ROM_XA_extensions_present { + get { + return ResourceManager.GetString("CD_ROM_XA_extensions_present", resourceCulture); + } + } + + internal static string Amiga_extensions_present { + get { + return ResourceManager.GetString("Amiga_extensions_present", resourceCulture); + } + } + + internal static string Apple_extensions_present { + get { + return ResourceManager.GetString("Apple_extensions_present", resourceCulture); + } + } + + internal static string Joliet_extensions_present { + get { + return ResourceManager.GetString("Joliet_extensions_present", resourceCulture); + } + } + + internal static string System_Use_Sharing_Protocol_present { + get { + return ResourceManager.GetString("System_Use_Sharing_Protocol_present", resourceCulture); + } + } + + internal static string Rock_Ridge_Interchange_Protocol_present { + get { + return ResourceManager.GetString("Rock_Ridge_Interchange_Protocol_present", resourceCulture); + } + } + + internal static string Arbitrary_Attribute_Interchange_Protocol_present { + get { + return ResourceManager.GetString("Arbitrary_Attribute_Interchange_Protocol_present", resourceCulture); + } + } + + internal static string zisofs_compression_present { + get { + return ResourceManager.GetString("zisofs_compression_present", resourceCulture); + } + } + + internal static string Contains_Enhanced_Volume_Descriptor { + get { + return ResourceManager.GetString("Contains_Enhanced_Volume_Descriptor", resourceCulture); + } + } + + internal static string Contains_Volume_Partition_Descriptor { + get { + return ResourceManager.GetString("Contains_Volume_Partition_Descriptor", resourceCulture); + } + } + + internal static string Disc_bootable_following_0_specifications { + get { + return ResourceManager.GetString("Disc_bootable_following_0_specifications", resourceCulture); } } - /// - /// Looks up a localized string similar to This is a SegaCD / MegaCD disc.. - /// internal static string This_is_a_SegaCD_MegaCD_disc { get { return ResourceManager.GetString("This_is_a_SegaCD_MegaCD_disc", resourceCulture); } } - /// - /// Looks up a localized string similar to This is the primary pack. - /// - internal static string This_is_the_primary_pack { + internal static string This_is_a_Sega_Saturn_disc { get { - return ResourceManager.GetString("This_is_the_primary_pack", resourceCulture); + return ResourceManager.GetString("This_is_a_Sega_Saturn_disc", resourceCulture); } } - /// - /// Looks up a localized string similar to This may not be HPFS, following information may be not correct.. - /// - internal static string This_may_not_be_HPFS_following_information_may_be_not_correct { + internal static string This_is_a_Sega_Dreamcast_disc { get { - return ResourceManager.GetString("This_may_not_be_HPFS_following_information_may_be_not_correct", resourceCulture); + return ResourceManager.GetString("This_is_a_Sega_Dreamcast_disc", resourceCulture); } } - /// - /// Looks up a localized string similar to This superblock resides on physical block {0}. - /// - internal static string This_superblock_resides_on_physical_block_0 { + internal static string FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION { get { - return ResourceManager.GetString("This_superblock_resides_on_physical_block_0", resourceCulture); + return ResourceManager.GetString("FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION", resourceCulture); } } - /// - /// Looks up a localized string similar to This version is not supported yet.. - /// - internal static string This_version_is_not_supported_yet { + internal static string FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION_border { get { - return ResourceManager.GetString("This_version_is_not_supported_yet", resourceCulture); + return ResourceManager.GetString("FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture); } } - /// - /// Looks up a localized string similar to This volume may be corrupted.. - /// - internal static string This_volume_may_be_corrupted { + internal static string VOLUME_DESCRIPTOR_INFORMATION { get { - return ResourceManager.GetString("This_volume_may_be_corrupted", resourceCulture); + return ResourceManager.GetString("VOLUME_DESCRIPTOR_INFORMATION", resourceCulture); } } - /// - /// Looks up a localized string similar to Title: {0}. - /// - internal static string Title_0 { + internal static string VOLUME_DESCRIPTOR_INFORMATION_border { get { - return ResourceManager.GetString("Title_0", resourceCulture); + return ResourceManager.GetString("VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture); } } - /// - /// Looks up a localized string similar to Sector {0} ({1:X2}:{2:X2}:{3:X2}), Raw, Mode {4}. - /// - internal static string tor_Sector_0_1_2_3_Raw_Mode_4 { + internal static string System_identifier_0 { get { - return ResourceManager.GetString("tor_Sector_0_1_2_3_Raw_Mode_4", resourceCulture); + return ResourceManager.GetString("System_identifier_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Sector {0} ({1:X2}:{2:X2}:{3:X2}), Raw, Mode 2 Form {4}, File Number {5}, Channel Number {6}, Submode {7}, Coding Information {8}. - /// - internal static string tor_Sector_0_1_2_3_Raw_Mode_two_Form_4_File_Number_5_Channel_Number_6_Submode_7_Coding_Information_8 { + internal static string Volume_identifier_0 { get { - return ResourceManager.GetString("tor_Sector_0_1_2_3_Raw_Mode_two_Form_4_File_Number_5_Channel_Number_6_Submode_7_C" + - "oding_Information_8", resourceCulture); + return ResourceManager.GetString("Volume_identifier_0", resourceCulture); + } + } + + internal static string Volume_set_identifier_0 { + get { + return ResourceManager.GetString("Volume_set_identifier_0", resourceCulture); + } + } + + internal static string Publisher_identifier_0 { + get { + return ResourceManager.GetString("Publisher_identifier_0", resourceCulture); + } + } + + internal static string Data_preparer_identifier_0 { + get { + return ResourceManager.GetString("Data_preparer_identifier_0", resourceCulture); + } + } + + internal static string Application_identifier_0 { + get { + return ResourceManager.GetString("Application_identifier_0", resourceCulture); + } + } + + internal static string Volume_creation_date_0 { + get { + return ResourceManager.GetString("Volume_creation_date_0", resourceCulture); + } + } + + internal static string Volume_modification_date_0 { + get { + return ResourceManager.GetString("Volume_modification_date_0", resourceCulture); + } + } + + internal static string Volume_has_not_been_modified { + get { + return ResourceManager.GetString("Volume_has_not_been_modified", resourceCulture); + } + } + + internal static string Volume_expiration_date_0 { + get { + return ResourceManager.GetString("Volume_expiration_date_0", resourceCulture); + } + } + + internal static string Volume_does_not_expire { + get { + return ResourceManager.GetString("Volume_does_not_expire", resourceCulture); + } + } + + internal static string Volume_effective_date_0 { + get { + return ResourceManager.GetString("Volume_effective_date_0", resourceCulture); + } + } + + internal static string Volume_has_always_been_effective { + get { + return ResourceManager.GetString("Volume_has_always_been_effective", resourceCulture); + } + } + + internal static string Volume_has_0_blocks_of_1_bytes_each { + get { + return ResourceManager.GetString("Volume_has_0_blocks_of_1_bytes_each", resourceCulture); + } + } + + internal static string JOLIET_VOLUME_DESCRIPTOR_INFORMATION { + get { + return ResourceManager.GetString("JOLIET_VOLUME_DESCRIPTOR_INFORMATION", resourceCulture); + } + } + + internal static string JOLIET_VOLUME_DESCRIPTOR_INFORMATION_border { + get { + return ResourceManager.GetString("JOLIET_VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture); + } + } + + internal static string EL_TORITO_INFORMATION { + get { + return ResourceManager.GetString("EL_TORITO_INFORMATION", resourceCulture); + } + } + + internal static string EL_TORITO_INFORMATION_border { + get { + return ResourceManager.GetString("EL_TORITO_INFORMATION_border", resourceCulture); + } + } + + internal static string Initial_entry { + get { + return ResourceManager.GetString("Initial_entry", resourceCulture); + } + } + + internal static string Developer_ID_0 { + get { + return ResourceManager.GetString("Developer_ID_0", resourceCulture); + } + } + + internal static string Bootable_on_0 { + get { + return ResourceManager.GetString("Bootable_on_0", resourceCulture); + } + } + + internal static string Bootable_image_starts_at_sector_0_and_runs_for_1_sectors { + get { + return ResourceManager.GetString("Bootable_image_starts_at_sector_0_and_runs_for_1_sectors", resourceCulture); + } + } + + internal static string Bootable_image_will_be_loaded_at_segment_0 { + get { + return ResourceManager.GetString("Bootable_image_will_be_loaded_at_segment_0", resourceCulture); + } + } + + internal static string Bootable_image_will_be_loaded_at_0 { + get { + return ResourceManager.GetString("Bootable_image_will_be_loaded_at_0", resourceCulture); + } + } + + internal static string Image_uses_no_emulation { + get { + return ResourceManager.GetString("Image_uses_no_emulation", resourceCulture); + } + } + + internal static string Image_emulates_a_high_density_MD2HD_floppy { + get { + return ResourceManager.GetString("Image_emulates_a_high_density_MD2HD_floppy", resourceCulture); + } + } + + internal static string Image_emulates_a_high_density_MF2HD_floppy { + get { + return ResourceManager.GetString("Image_emulates_a_high_density_MF2HD_floppy", resourceCulture); + } + } + + internal static string Image_emulates_a_extra_density_MF2ED_floppy { + get { + return ResourceManager.GetString("Image_emulates_a_extra_density_MF2ED_floppy", resourceCulture); + } + } + + internal static string Image_uses_unknown_emulation_type_0 { + get { + return ResourceManager.GetString("Image_uses_unknown_emulation_type_0", resourceCulture); + } + } + + internal static string System_type_0 { + get { + return ResourceManager.GetString("System_type_0", resourceCulture); + } + } + + internal static string Bootable_image_SHA1_0 { + get { + return ResourceManager.GetString("Bootable_image_SHA1_0", resourceCulture); + } + } + + internal static string Not_bootable { + get { + return ResourceManager.GetString("Not_bootable", resourceCulture); + } + } + + internal static string Boot_section_0 { + get { + return ResourceManager.GetString("Boot_section_0", resourceCulture); + } + } + + internal static string Section_ID_0 { + get { + return ResourceManager.GetString("Section_ID_0", resourceCulture); + } + } + + internal static string Entry_0 { + get { + return ResourceManager.GetString("Entry_0", resourceCulture); + } + } + + internal static string Selection_criteria_type_0 { + get { + return ResourceManager.GetString("Selection_criteria_type_0", resourceCulture); + } + } + + internal static string Image_contains_ATAPI_drivers { + get { + return ResourceManager.GetString("Image_contains_ATAPI_drivers", resourceCulture); + } + } + + internal static string Image_contains_SCSI_drivers { + get { + return ResourceManager.GetString("Image_contains_SCSI_drivers", resourceCulture); + } + } + + internal static string tor_Sector_0_Cooked_Mode_zero_one_Mode_two_Form_one { + get { + return ResourceManager.GetString("tor_Sector_0_Cooked_Mode_zero_one_Mode_two_Form_one", resourceCulture); + } + } + + internal static string tor_Sector_0_Cooked_Mode_two_Form_two { + get { + return ResourceManager.GetString("tor_Sector_0_Cooked_Mode_two_Form_two", resourceCulture); } } - /// - /// Looks up a localized string similar to Sector {0}, Cooked, Mode 2 Form {1}, File Number {2}, Channel Number {3}, Submode {4}, Coding Information {5}. - /// internal static string tor_Sector_0_Cooked_Mode_two_Form_1_File_Number_2_Channel_Number_3_Submode_4_Coding_Information_5 { get { return ResourceManager.GetString("tor_Sector_0_Cooked_Mode_two_Form_1_File_Number_2_Channel_Number_3_Submode_4_Codi" + @@ -8255,2610 +1828,4997 @@ namespace Aaru.Filesystems { } } - /// - /// Looks up a localized string similar to Sector {0}, Cooked, Mode 2 Form 2. - /// - internal static string tor_Sector_0_Cooked_Mode_two_Form_two { - get { - return ResourceManager.GetString("tor_Sector_0_Cooked_Mode_two_Form_two", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector {0}, Cooked, Mode 0/1 / Mode 2 Form 1. - /// - internal static string tor_Sector_0_Cooked_Mode_zero_one_Mode_two_Form_one { - get { - return ResourceManager.GetString("tor_Sector_0_Cooked_Mode_zero_one_Mode_two_Form_one", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sector {0}, Raw, Audio. - /// internal static string tor_Sector_0_Raw_Audio { get { return ResourceManager.GetString("tor_Sector_0_Raw_Audio", resourceCulture); } } - /// - /// Looks up a localized string similar to Track allocation is forward. - /// - internal static string Track_allocation_is_forward { + internal static string tor_Sector_0_1_2_3_Raw_Mode_4 { get { - return ResourceManager.GetString("Track_allocation_is_forward", resourceCulture); + return ResourceManager.GetString("tor_Sector_0_1_2_3_Raw_Mode_4", resourceCulture); } } - /// - /// Looks up a localized string similar to Track allocation is reverse. - /// - internal static string Track_allocation_is_reverse { + internal static string tor_Sector_0_1_2_3_Raw_Mode_two_Form_4_File_Number_5_Channel_Number_6_Submode_7_Coding_Information_8 { get { - return ResourceManager.GetString("Track_allocation_is_reverse", resourceCulture); + return ResourceManager.GetString("tor_Sector_0_1_2_3_Raw_Mode_two_Form_4_File_Number_5_Channel_Number_6_Submode_7_C" + + "oding_Information_8", resourceCulture); } } - /// - /// Looks up a localized string similar to Traversing directory.. - /// - internal static string Traversing_directory { + internal static string Path_table_and_PVD_do_not_point_to_the_same_location_for_the_root_directory { get { - return ResourceManager.GetString("Traversing_directory", resourceCulture); + return ResourceManager.GetString("Path_table_and_PVD_do_not_point_to_the_same_location_for_the_root_directory", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying all known definitions.. - /// - internal static string Trying_all_known_definitions { + internal static string PVD_does_not_point_to_correct_root_directory_checking_path_table { get { - return ResourceManager.GetString("Trying_all_known_definitions", resourceCulture); + return ResourceManager.GetString("PVD_does_not_point_to_correct_root_directory_checking_path_table", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying definition "{0}". - /// - internal static string Trying_definition_0 { + internal static string Cannot_find_root_directory { get { - return ResourceManager.GetString("Trying_definition_0", resourceCulture); + return ResourceManager.GetString("Cannot_find_root_directory", resourceCulture); } } - /// - /// Looks up a localized string similar to Trying to load definitions.. - /// - internal static string Trying_to_load_definitions { + internal static string File_0_gets_truncated { get { - return ResourceManager.GetString("Trying_to_load_definitions", resourceCulture); + return ResourceManager.GetString("File_0_gets_truncated", resourceCulture); } } - /// - /// Looks up a localized string similar to TurboGrafx CD Virtual Console. - /// - internal static string TurboGrafx_CD_Virtual_Console { + internal static string Sector_0_file_ID_1 { get { - return ResourceManager.GetString("TurboGrafx_CD_Virtual_Console", resourceCulture); + return ResourceManager.GetString("Sector_0_file_ID_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Universal Disk Format. - /// - internal static string UDF_Name { + internal static string Current_sector_0 { get { - return ResourceManager.GetString("UDF_Name", resourceCulture); + return ResourceManager.GetString("Current_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to UFS filesystem. - /// - internal static string UFS_filesystem { - get { - return ResourceManager.GetString("UFS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UFS2 filesystem. - /// - internal static string UFS2_filesystem { - get { - return ResourceManager.GetString("UFS2_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (uid16): Disable 32bit UIDs and GIDs. - /// - internal static string uid16_Disable_32bit_UIDs_and_GIDs { - get { - return ResourceManager.GetString("uid16_Disable_32bit_UIDs_and_GIDs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UK age rating is {0}. - /// - internal static string UK_age_rating_is_0 { - get { - return ResourceManager.GetString("UK_age_rating_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable cache all files.. - /// - internal static string Unable_cache_all_files { - get { - return ResourceManager.GetString("Unable_cache_all_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to read boot blocks. - /// - internal static string Unable_to_read_boot_blocks { - get { - return ResourceManager.GetString("Unable_to_read_boot_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to read boot loader. - /// - internal static string Unable_to_read_boot_loader { - get { - return ResourceManager.GetString("Unable_to_read_boot_loader", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to read catalog.. - /// - internal static string Unable_to_read_catalog { - get { - return ResourceManager.GetString("Unable_to_read_catalog", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to read MDDF. - /// - internal static string Unable_to_read_MDDF { - get { - return ResourceManager.GetString("Unable_to_read_MDDF", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to read S-Records file. - /// - internal static string Unable_to_read_S_Records_file { - get { - return ResourceManager.GetString("Unable_to_read_S_Records_file", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unable to read volume bitmap. - /// - internal static string Unable_to_read_volume_bitmap { - get { - return ResourceManager.GetString("Unable_to_read_volume_bitmap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to unaligned magic: "{0}". - /// - internal static string unaligned_magic_0 { - get { - return ResourceManager.GetString("unaligned_magic_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Underlying device does not support Lisa tags. - /// - internal static string Underlying_device_does_not_support_Lisa_tags { - get { - return ResourceManager.GetString("Underlying_device_does_not_support_Lisa_tags", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Underlying media presented errors. - /// - internal static string Underlying_media_presented_errors { - get { - return ResourceManager.GetString("Underlying_media_presented_errors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UNICOS filesystem. - /// - internal static string UNICOS_filesystem { - get { - return ResourceManager.GetString("UNICOS_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UNICOS Filesystem Plugin. - /// - internal static string UNICOS_Name { - get { - return ResourceManager.GetString("UNICOS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Universal Disk Format. - /// - internal static string Universal_Disk_Format { - get { - return ResourceManager.GetString("Universal_Disk_Format", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UNIX 7th Edition filesystem. - /// - internal static string UNIX_7th_Edition_filesystem { - get { - return ResourceManager.GetString("UNIX_7th_Edition_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UNIX Boot Filesystem. - /// - internal static string UNIX_Boot_Filesystem { - get { - return ResourceManager.GetString("UNIX_Boot_Filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown boot code.. - /// - internal static string Unknown_boot_code { - get { - return ResourceManager.GetString("Unknown_boot_code", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_codepage { - get { - return ResourceManager.GetString("Unknown_codepage", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown compatible features: {0:X8}. - /// - internal static string Unknown_compatible_features_0 { - get { - return ResourceManager.GetString("Unknown_compatible_features_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown flag 0x40 on flags1 is active. - /// - internal static string Unknown_flag_0x40_on_flags1_is_active { - get { - return ResourceManager.GetString("Unknown_flag_0x40_on_flags1_is_active", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown flag 0x40 on flags2 is active. - /// - internal static string Unknown_flag_0x40_on_flags2_is_active { - get { - return ResourceManager.GetString("Unknown_flag_0x40_on_flags2_is_active", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown flag 0x80 on flags2 is active. - /// - internal static string Unknown_flag_0x80_on_flags2_is_active { - get { - return ResourceManager.GetString("Unknown_flag_0x80_on_flags2_is_active", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown flags: {0:X8}. - /// - internal static string Unknown_flags_0_X8 { - get { - return ResourceManager.GetString("Unknown_flags_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown how {0} side ordering works. - /// - internal static string Unknown_how_0_side_ordering_works { - get { - return ResourceManager.GetString("Unknown_how_0_side_ordering_works", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown incompatible features: {0:X8}. - /// - internal static string Unknown_incompatible_features_0 { - get { - return ResourceManager.GetString("Unknown_incompatible_features_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown LisaFS version {0}. - /// internal static string Unknown_LisaFS_version_0 { get { return ResourceManager.GetString("Unknown_LisaFS_version_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown optimization value: 0x{0:X8}. - /// - internal static string Unknown_optimization_value_0 { - get { - return ResourceManager.GetString("Unknown_optimization_value_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown order type "{0}", not proceeding with this definition.. - /// - internal static string Unknown_order_type_0_not_proceeding_with_this_definition { - get { - return ResourceManager.GetString("Unknown_order_type_0_not_proceeding_with_this_definition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown OS ({0}). - /// - internal static string Unknown_OS_0 { - get { - return ResourceManager.GetString("Unknown_OS_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to unknown partition type {0}. - /// - internal static string unknown_partition_type_0 { - get { - return ResourceManager.GetString("unknown_partition_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown ProDOS version with field {0} is at least required for reading this volume.. - /// - internal static string Unknown_ProDOS_version_with_field_0_is_at_least_required_for_reading_this_volume { - get { - return ResourceManager.GetString("Unknown_ProDOS_version_with_field_0_is_at_least_required_for_reading_this_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown ProDOS version with field {0} used to create this volume.. - /// - internal static string Unknown_ProDOS_version_with_field_0_used_to_create_this_volume { - get { - return ResourceManager.GetString("Unknown_ProDOS_version_with_field_0_used_to_create_this_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown publisher '{0}'. - /// - internal static string Unknown_publisher_0 { - get { - return ResourceManager.GetString("Unknown_publisher_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown read-only compatible features: {0:X8}. - /// - internal static string Unknown_read_only_compatible_features_0 { - get { - return ResourceManager.GetString("Unknown_read_only_compatible_features_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown s_type value: 0x{0:X8}. - /// - internal static string Unknown_s_type_value_0 { - get { - return ResourceManager.GetString("Unknown_s_type_value_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown set default mount options: {0:X8}. - /// - internal static string Unknown_set_default_mount_options_0 { - get { - return ResourceManager.GetString("Unknown_set_default_mount_options_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown set flags: {0:X8}. - /// - internal static string Unknown_set_flags_0 { - get { - return ResourceManager.GetString("Unknown_set_flags_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_specification { - get { - return ResourceManager.GetString("Unknown_specification", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unknown structures:. - /// - internal static string Unknown_structures { - get { - return ResourceManager.GetString("Unknown_structures", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to unknown type '{0}'. - /// - internal static string unknown_type_0 { - get { - return ResourceManager.GetString("unknown_type_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unsigned directory hash is in use. - /// - internal static string Unsigned_directory_hash_is_in_use { - get { - return ResourceManager.GetString("Unsigned_directory_hash_is_in_use", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to update. - /// - internal static string update { - get { - return ResourceManager.GetString("update", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use LFN when available with fallback to .LONGNAME (default). - /// - internal static string Use_LFN_when_available_with_fallback_to_LONGNAME_default { - get { - return ResourceManager.GetString("Use_LFN_when_available_with_fallback_to_LONGNAME_default", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User replicated volume. - /// - internal static string User_replicated_volume { - get { - return ResourceManager.GetString("User_replicated_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (user_xattr): Enable user-specified extended attributes. - /// - internal static string user_xattr_Enable_user_specified_extended_attributes { - get { - return ResourceManager.GetString("user_xattr_Enable_user_specified_extended_attributes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Uses B-Tree for directories. - /// - internal static string Uses_B_Tree_for_directories { - get { - return ResourceManager.GetString("Uses_B_Tree_for_directories", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Uses compression. - /// - internal static string Uses_compression { - get { - return ResourceManager.GetString("Uses_compression", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using Apricot BPB. - /// - internal static string Using_Apricot_BPB { - get { - return ResourceManager.GetString("Using_Apricot_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using Atari BPB. - /// - internal static string Using_Atari_BPB { - get { - return ResourceManager.GetString("Using_Atari_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using DEC Rainbow hardcoded BPB.. - /// - internal static string Using_DEC_Rainbow_hardcoded_BPB { - get { - return ResourceManager.GetString("Using_DEC_Rainbow_hardcoded_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using DOS 2.0 BPB. - /// - internal static string Using_DOS_2_0_BPB { - get { - return ResourceManager.GetString("Using_DOS_2_0_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using DOS 3.0 BPB. - /// - internal static string Using_DOS_3_0_BPB { - get { - return ResourceManager.GetString("Using_DOS_3_0_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using DOS 3.2 BPB. - /// - internal static string Using_DOS_3_2_BPB { - get { - return ResourceManager.GetString("Using_DOS_3_2_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using DOS 3.3 BPB. - /// - internal static string Using_DOS_3_3_BPB { - get { - return ResourceManager.GetString("Using_DOS_3_3_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using DOS 3.4 BPB. - /// - internal static string Using_DOS_3_4_BPB { - get { - return ResourceManager.GetString("Using_DOS_3_4_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using DOS 4.0 BPB. - /// - internal static string Using_DOS_4_0_BPB { - get { - return ResourceManager.GetString("Using_DOS_4_0_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using FAT32 BPB. - /// - internal static string Using_FAT32_BPB { - get { - return ResourceManager.GetString("Using_FAT32_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using hardcoded BPB.. - /// - internal static string Using_hardcoded_BPB { - get { - return ResourceManager.GetString("Using_hardcoded_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using hardcoded BPB for 5.25" DSDD.. - /// - internal static string Using_hardcoded_BPB_for_5_25_DSDD { - get { - return ResourceManager.GetString("Using_hardcoded_BPB_for_5_25_DSDD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using hardcoded BPB for 5.25" SSDD.. - /// - internal static string Using_hardcoded_BPB_for_5_25_SSDD { - get { - return ResourceManager.GetString("Using_hardcoded_BPB_for_5_25_SSDD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using Human68k BPB. - /// - internal static string Using_Human68k_BPB { - get { - return ResourceManager.GetString("Using_Human68k_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using MSX BPB. - /// - internal static string Using_MSX_BPB { - get { - return ResourceManager.GetString("Using_MSX_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Using short FAT32 BPB. - /// - internal static string Using_short_FAT32_BPB { - get { - return ResourceManager.GetString("Using_short_FAT32_BPB", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Utility. - /// - internal static string Utility { - get { - return ResourceManager.GetString("Utility", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UUID: {0}. - /// - internal static string UUID_0 { - get { - return ResourceManager.GetString("UUID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Veritas file system. - /// - internal static string Veritas_file_system { - get { - return ResourceManager.GetString("Veritas_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version {0}. - /// - internal static string Version_0 { - get { - return ResourceManager.GetString("Version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version {0}.{1}. - /// - internal static string Version_0_1 { - get { - return ResourceManager.GetString("Version_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version1: 0x{0:X4}. - /// - internal static string Version1_0_X4 { - get { - return ResourceManager.GetString("Version1_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version2: 0x{0:X4}. - /// - internal static string Version2_0_X4 { - get { - return ResourceManager.GetString("Version2_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VMware filesystem. - /// - internal static string VMfs_Name { - get { - return ResourceManager.GetString("VMfs_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VMware file system. - /// - internal static string VMware_file_system { - get { - return ResourceManager.GetString("VMware_file_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume {0} of {1} on this filesystem. - /// - internal static string Volume_0_of_1_on_this_filesystem { - get { - return ResourceManager.GetString("Volume_0_of_1_on_this_filesystem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume attributes: {0:X2}. - /// - internal static string Volume_attributes_0 { - get { - return ResourceManager.GetString("Volume_attributes_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume backed up on {0}. - /// - internal static string Volume_backed_up_on_0 { - get { - return ResourceManager.GetString("Volume_backed_up_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume bitmap is valid. - /// - internal static string Volume_bitmap_is_valid { - get { - return ResourceManager.GetString("Volume_bitmap_is_valid", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume bitmap runs for {0} sectors ({1} bytes). - /// - internal static string Volume_bitmap_runs_for_0_sectors_1_bytes { - get { - return ResourceManager.GetString("Volume_bitmap_runs_for_0_sectors_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume bitmap starting sector (in 512-bytes): {0}. - /// - internal static string Volume_bitmap_starting_sector_in_512_bytes_0 { - get { - return ResourceManager.GetString("Volume_bitmap_starting_sector_in_512_bytes_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume bitmap starts in sector {0} (VBN {1}). - /// - internal static string Volume_bitmap_starts_in_sector_0_VBN_1 { - get { - return ResourceManager.GetString("Volume_bitmap_starts_in_sector_0_VBN_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume block is {0} bytes. - /// - internal static string Volume_block_is_0_bytes { - get { - return ResourceManager.GetString("Volume_block_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume block size is {0} bytes. - /// - internal static string Volume_block_size_is_0_bytes { - get { - return ResourceManager.GetString("Volume_block_size_is_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume can be destroyed. - /// - internal static string Volume_can_be_destroyed { - get { - return ResourceManager.GetString("Volume_can_be_destroyed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume can be filled up to {0}%. - /// - internal static string Volume_can_be_filled_up_to_0 { - get { - return ResourceManager.GetString("Volume_can_be_filled_up_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume can be mounted {0} times before checking. - /// - internal static string Volume_can_be_mounted_0_times_before_checking { - get { - return ResourceManager.GetString("Volume_can_be_mounted_0_times_before_checking", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume can be read. - /// - internal static string Volume_can_be_read { - get { - return ResourceManager.GetString("Volume_can_be_read", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume can be renamed. - /// - internal static string Volume_can_be_renamed { - get { - return ResourceManager.GetString("Volume_can_be_renamed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume can be written. - /// - internal static string Volume_can_be_written { - get { - return ResourceManager.GetString("Volume_can_be_written", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume cannot be written by any UDF version higher than {0}.{1:X2}. - /// - internal static string Volume_cannot_be_written_by_any_UDF_version_higher_than_0_1 { - get { - return ResourceManager.GetString("Volume_cannot_be_written_by_any_UDF_version_higher_than_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume's catalog created on {0}. - /// - internal static string Volume_catalog_created_on_0 { - get { - return ResourceManager.GetString("Volume_catalog_created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume comment: {0}. - /// - internal static string Volume_comment_0 { - get { - return ResourceManager.GetString("Volume_comment_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume commits in groups of 1. - /// - internal static string Volume_commits_in_groups_of_1 { - get { - return ResourceManager.GetString("Volume_commits_in_groups_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume commits lazy. - /// - internal static string Volume_commits_lazy { - get { - return ResourceManager.GetString("Volume_commits_lazy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume conforms to {0}. - /// - internal static string Volume_conforms_to_0 { - get { - return ResourceManager.GetString("Volume_conforms_to_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume contains {0} blocks ({1} bytes). - /// - internal static string Volume_contains_0_blocks_1_bytes { - get { - return ResourceManager.GetString("Volume_contains_0_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume contains {0} directory entries. - /// - internal static string Volume_contains_0_directory_entries { - get { - return ResourceManager.GetString("Volume_contains_0_directory_entries", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume contains {0} files. - /// - internal static string Volume_contains_0_files { - get { - return ResourceManager.GetString("Volume_contains_0_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume contains {0} files and {1} directories. - /// - internal static string Volume_contains_0_files_and_1_directories { - get { - return ResourceManager.GetString("Volume_contains_0_files_and_1_directories", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume contains {0} partitions. - /// - internal static string Volume_contains_0_partitions { - get { - return ResourceManager.GetString("Volume_contains_0_partitions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume continues on error. - /// - internal static string Volume_continues_on_error { - get { - return ResourceManager.GetString("Volume_continues_on_error", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume copied on {0}. - /// - internal static string Volume_copied_on_0 { - get { - return ResourceManager.GetString("Volume_copied_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume created on {0}. - /// - internal static string Volume_created_on_0 { - get { - return ResourceManager.GetString("Volume_created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume created on kernel version: {0}. - /// - internal static string Volume_created_on_kernel_version_0 { - get { - return ResourceManager.GetString("Volume_created_on_kernel_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume creation date: {0}. - /// - internal static string Volume_creation_date_0 { - get { - return ResourceManager.GetString("Volume_creation_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VOLUME DESCRIPTOR INFORMATION:. - /// - internal static string VOLUME_DESCRIPTOR_INFORMATION { - get { - return ResourceManager.GetString("VOLUME_DESCRIPTOR_INFORMATION", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ------------------------------. - /// - internal static string VOLUME_DESCRIPTOR_INFORMATION_border { - get { - return ResourceManager.GetString("VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume disk format: {0}. - /// - internal static string Volume_disk_format_0 { - get { - return ResourceManager.GetString("Volume_disk_format_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume does not commit to log. - /// - internal static string Volume_does_not_commit_to_log { - get { - return ResourceManager.GetString("Volume_does_not_commit_to_log", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume does not expire.. - /// - internal static string Volume_does_not_expire { - get { - return ResourceManager.GetString("Volume_does_not_expire", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume does not need cache.. - /// - internal static string Volume_does_not_need_cache { - get { - return ResourceManager.GetString("Volume_does_not_need_cache", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume edition {0}. - /// - internal static string Volume_edition_0 { - get { - return ResourceManager.GetString("Volume_edition_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume effective date: {0}. - /// - internal static string Volume_effective_date_0 { - get { - return ResourceManager.GetString("Volume_effective_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume ends at {0}. - /// - internal static string Volume_ends_at_0 { - get { - return ResourceManager.GetString("Volume_ends_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume expiration date: {0}. - /// - internal static string Volume_expiration_date_0 { - get { - return ResourceManager.GetString("Volume_expiration_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume flags: 0x{0:X2}. - /// - internal static string Volume_flags_0_X2 { - get { - return ResourceManager.GetString("Volume_flags_0_X2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume flags: 0x{0:X4}. - /// - internal static string Volume_flags_0_X4 { - get { - return ResourceManager.GetString("Volume_flags_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume format is {0}. - /// - internal static string Volume_format_is_0 { - get { - return ResourceManager.GetString("Volume_format_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume goes from byte {0} to byte {1}, for {2} bytes. - /// - internal static string Volume_goes_from_byte_0_to_byte_1_for_2_bytes { - get { - return ResourceManager.GetString("Volume_goes_from_byte_0_to_byte_1_for_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} blocks. - /// - internal static string Volume_has_0_blocks { - get { - return ResourceManager.GetString("Volume_has_0_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} blocks ({1} bytes). - /// - internal static string Volume_has_0_blocks_1_bytes { - get { - return ResourceManager.GetString("Volume_has_0_blocks_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} blocks of {1} bytes each. - /// - internal static string Volume_has_0_blocks_of_1_bytes_each { - get { - return ResourceManager.GetString("Volume_has_0_blocks_of_1_bytes_each", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} blocks of {1} bytes each (total {2} bytes). - /// - internal static string Volume_has_0_blocks_of_1_bytes_each_total_2_bytes { - get { - return ResourceManager.GetString("Volume_has_0_blocks_of_1_bytes_each_total_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} blocks of {1} bytes, for a total of {2} bytes. - /// - internal static string Volume_has_0_blocks_of_1_bytes_for_a_total_of_2_bytes { - get { - return ResourceManager.GetString("Volume_has_0_blocks_of_1_bytes_for_a_total_of_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} blocks used ({1} bytes). - /// - internal static string Volume_has_0_blocks_used_1_bytes { - get { - return ResourceManager.GetString("Volume_has_0_blocks_used_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} blocks with {1} blocks free. - /// - internal static string Volume_has_0_blocks_with_1_blocks_free { - get { - return ResourceManager.GetString("Volume_has_0_blocks_with_1_blocks_free", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} bytes. - /// - internal static string Volume_has_0_bytes { - get { - return ResourceManager.GetString("Volume_has_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} bytes in {1} zones. - /// - internal static string Volume_has_0_bytes_in_1_zones { - get { - return ResourceManager.GetString("Volume_has_0_bytes_in_1_zones", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} bytes per block. - /// - internal static string Volume_has_0_bytes_per_block { - get { - return ResourceManager.GetString("Volume_has_0_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} bytes spanned in {1} devices. - /// - internal static string Volume_has_0_bytes_spanned_in_1_devices { - get { - return ResourceManager.GetString("Volume_has_0_bytes_spanned_in_1_devices", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} bytes used. - /// - internal static string Volume_has_0_bytes_used { - get { - return ResourceManager.GetString("Volume_has_0_bytes_used", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} files. - /// - internal static string Volume_has_0_files { - get { - return ResourceManager.GetString("Volume_has_0_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} free blocks. - /// - internal static string Volume_has_0_free_blocks { - get { - return ResourceManager.GetString("Volume_has_0_free_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} free inodes. - /// - internal static string Volume_has_0_free_inodes { - get { - return ResourceManager.GetString("Volume_has_0_free_inodes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} free sectors of {1}. - /// - internal static string Volume_has_0_free_sectors_of_1 { - get { - return ResourceManager.GetString("Volume_has_0_free_sectors_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} inodes. - /// - internal static string Volume_has_0_inodes { - get { - return ResourceManager.GetString("Volume_has_0_inodes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} inodes per block. - /// - internal static string Volume_has_0_inodes_per_block { - get { - return ResourceManager.GetString("Volume_has_0_inodes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} sectors ({1} bytes). - /// - internal static string Volume_has_0_sectors_1_bytes { - get { - return ResourceManager.GetString("Volume_has_0_sectors_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has {0} sectors of {1} bytes each for a total of {2} bytes. - /// - internal static string Volume_has_0_sectors_of_1_bytes_each_for_a_total_of_2_bytes { - get { - return ResourceManager.GetString("Volume_has_0_sectors_of_1_bytes_each_for_a_total_of_2_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has always been effective.. - /// - internal static string Volume_has_always_been_effective { - get { - return ResourceManager.GetString("Volume_has_always_been_effective", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has bad current secondary ait. - /// - internal static string Volume_has_bad_current_secondary_ait { - get { - return ResourceManager.GetString("Volume_has_bad_current_secondary_ait", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has been modified by Windows 9x/Me Volume Tracker.. - /// - internal static string Volume_has_been_modified_by_Windows_9x_Me_Volume_Tracker { - get { - return ResourceManager.GetString("Volume_has_been_modified_by_Windows_9x_Me_Volume_Tracker", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has been mounted {0} times of a maximum of {1} mounts before checking. - /// - internal static string Volume_has_been_mounted_0_times_of_a_maximum_of_1_mounts_before_checking { - get { - return ResourceManager.GetString("Volume_has_been_mounted_0_times_of_a_maximum_of_1_mounts_before_checking", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has been mounted {0} times with no maximum no. of mounts before checking. - /// - internal static string Volume_has_been_mounted_0_times_with_no_maximum_no_of_mounts_before_checking { - get { - return ResourceManager.GetString("Volume_has_been_mounted_0_times_with_no_maximum_no_of_mounts_before_checking", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has been mounted writable {0} times.. - /// - internal static string Volume_has_been_mounted_writable_0_times { - get { - return ResourceManager.GetString("Volume_has_been_mounted_writable_0_times", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has DASD limits enabled. - /// - internal static string Volume_has_DASD_limits_enabled { - get { - return ResourceManager.GetString("Volume_has_DASD_limits_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has group quotas enabled. - /// - internal static string Volume_has_group_quotas_enabled { - get { - return ResourceManager.GetString("Volume_has_group_quotas_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has log within itself. - /// - internal static string Volume_has_log_within_itself { - get { - return ResourceManager.GetString("Volume_has_log_within_itself", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has log within itself and is moving it out. - /// - internal static string Volume_has_log_within_itself_and_is_moving_it_out { - get { - return ResourceManager.GetString("Volume_has_log_within_itself_and_is_moving_it_out", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has never been backed up. - /// - internal static string Volume_has_never_been_backed_up { - get { - return ResourceManager.GetString("Volume_has_never_been_backed_up", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has never been checked. - /// - internal static string Volume_has_never_been_checked { - get { - return ResourceManager.GetString("Volume_has_never_been_checked", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has never been checked (should check every {0}). - /// - internal static string Volume_has_never_been_checked_should_check_every_0_ { - get { - return ResourceManager.GetString("Volume_has_never_been_checked_should_check_every_0_", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has never been checked up. - /// - internal static string Volume_has_never_been_checked_up { - get { - return ResourceManager.GetString("Volume_has_never_been_checked_up", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has never been mounted. - /// - internal static string Volume_has_never_been_mounted { - get { - return ResourceManager.GetString("Volume_has_never_been_mounted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has no maximum no. of mounts before checking. - /// - internal static string Volume_has_no_maximum_no_of_mounts_before_checking { - get { - return ResourceManager.GetString("Volume_has_no_maximum_no_of_mounts_before_checking", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has not been cleanly umounted. - /// - internal static string Volume_has_not_been_cleanly_umounted { - get { - return ResourceManager.GetString("Volume_has_not_been_cleanly_umounted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has not been modified.. - /// - internal static string Volume_has_not_been_modified { - get { - return ResourceManager.GetString("Volume_has_not_been_modified", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has persistent indexes. - /// - internal static string Volume_has_persistent_indexes { - get { - return ResourceManager.GetString("Volume_has_persistent_indexes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has spared bad blocks.. - /// - internal static string Volume_has_spared_bad_blocks { - get { - return ResourceManager.GetString("Volume_has_spared_bad_blocks", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume has user quotas enabled. - /// - internal static string Volume_has_user_quotas_enabled { - get { - return ResourceManager.GetString("Volume_has_user_quotas_enabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume ID: 0x{0:X16}. - /// - internal static string Volume_ID_0_X16 { - get { - return ResourceManager.GetString("Volume_ID_0_X16", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume ID: {0:X4}. - /// - internal static string Volume_ID_0_X4 { - get { - return ResourceManager.GetString("Volume_ID_0_X4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume ID: {0:X8}. - /// - internal static string Volume_ID_0_X8 { - get { - return ResourceManager.GetString("Volume_ID_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume ID: 0x{0:X8}{1:X8}. - /// - internal static string Volume_ID_0_X8_1_X8 { - get { - return ResourceManager.GetString("Volume_ID_0_X8_1_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume's identification block was last written on {0}. - /// - internal static string Volume_identification_block_was_last_written_on_0 { - get { - return ResourceManager.GetString("Volume_identification_block_was_last_written_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume identifier: {0}. - /// - internal static string Volume_identifier_0 { - get { - return ResourceManager.GetString("Volume_identifier_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume identifier: 0x{0:X8}. - /// - internal static string Volume_identifier_0_X8 { - get { - return ResourceManager.GetString("Volume_identifier_0_X8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume inhibits automatic fsck. - /// - internal static string Volume_inhibits_automatic_fsck { - get { - return ResourceManager.GetString("Volume_inhibits_automatic_fsck", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is {0} of {1} in set "{2}".. - /// - internal static string Volume_is_0_of_1_in_set_2 { - get { - return ResourceManager.GetString("Volume_is_0_of_1_in_set_2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is bootable.. - /// - internal static string Volume_is_bootable { - get { - return ResourceManager.GetString("Volume_is_bootable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is case sensitive. - /// - internal static string Volume_is_case_sensitive { - get { - return ResourceManager.GetString("Volume_is_case_sensitive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is clean. - /// - internal static string Volume_is_clean { - get { - return ResourceManager.GetString("Volume_is_clean", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is compressed using GZIP. - /// - internal static string Volume_is_compressed_using_GZIP { - get { - return ResourceManager.GetString("Volume_is_compressed_using_GZIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is compressed using LZ4. - /// - internal static string Volume_is_compressed_using_LZ4 { - get { - return ResourceManager.GetString("Volume_is_compressed_using_LZ4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is compressed using LZMA. - /// - internal static string Volume_is_compressed_using_LZMA { - get { - return ResourceManager.GetString("Volume_is_compressed_using_LZMA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is compressed using LZO. - /// - internal static string Volume_is_compressed_using_LZO { - get { - return ResourceManager.GetString("Volume_is_compressed_using_LZO", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is compressed using unknown algorithm {0}. - /// - internal static string Volume_is_compressed_using_unknown_algorithm_0 { - get { - return ResourceManager.GetString("Volume_is_compressed_using_unknown_algorithm_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is compressed using XZ. - /// - internal static string Volume_is_compressed_using_XZ { - get { - return ResourceManager.GetString("Volume_is_compressed_using_XZ", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is compressed using Zstandard. - /// - internal static string Volume_is_compressed_using_Zstandard { - get { - return ResourceManager.GetString("Volume_is_compressed_using_Zstandard", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is dirty. - /// - internal static string Volume_is_dirty { - get { - return ResourceManager.GetString("Volume_is_dirty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is dirty, error code = 0x{0:X16}. - /// - internal static string Volume_is_dirty_error_code_equals_0 { - get { - return ResourceManager.GetString("Volume_is_dirty_error_code_equals_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is in a big-endian system. - /// - internal static string Volume_is_in_a_big_endian_system { - get { - return ResourceManager.GetString("Volume_is_in_a_big_endian_system", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is in an unknown state ({0}). - /// - internal static string Volume_is_in_an_unknown_state_0 { - get { - return ResourceManager.GetString("Volume_is_in_an_unknown_state_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is journaled.. - /// - internal static string Volume_is_journaled { - get { - return ResourceManager.GetString("Volume_is_journaled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is Level {0} revision {1}. - /// - internal static string Volume_is_Level_0_revision_1 { - get { - return ResourceManager.GetString("Volume_is_Level_0_revision_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is locked by hardware.. - /// - internal static string Volume_is_locked_by_hardware { - get { - return ResourceManager.GetString("Volume_is_locked_by_hardware", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is locked by software.. - /// - internal static string Volume_is_locked_by_software { - get { - return ResourceManager.GetString("Volume_is_locked_by_software", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is mounted.. - /// - internal static string Volume_is_mounted { - get { - return ResourceManager.GetString("Volume_is_mounted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is mounted read-only. - /// - internal static string Volume_is_mounted_read_only { - get { - return ResourceManager.GetString("Volume_is_mounted_read_only", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is not bootable.. - /// - internal static string Volume_is_not_bootable { - get { - return ResourceManager.GetString("Volume_is_not_bootable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is not using any journal. - /// - internal static string Volume_is_not_using_any_journal { - get { - return ResourceManager.GetString("Volume_is_not_using_any_journal", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is number {0} of {1}. - /// - internal static string Volume_is_number_0_of_1 { - get { - return ResourceManager.GetString("Volume_is_number_0_of_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is read-only. - /// - internal static string Volume_is_read_only { - get { - return ResourceManager.GetString("Volume_is_read_only", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is recovering orphan files. - /// - internal static string Volume_is_recovering_orphan_files { - get { - return ResourceManager.GetString("Volume_is_recovering_orphan_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is secure. - /// - internal static string Volume_is_secure { - get { - return ResourceManager.GetString("Volume_is_secure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is seriously inconsistent.. - /// - internal static string Volume_is_seriously_inconsistent { - get { - return ResourceManager.GetString("Volume_is_seriously_inconsistent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is testing development code. - /// - internal static string Volume_is_testing_development_code { - get { - return ResourceManager.GetString("Volume_is_testing_development_code", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is unmounted.. - /// - internal static string Volume_is_unmounted { - get { - return ResourceManager.GetString("Volume_is_unmounted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume is wrapped inside an HFS volume.. - /// - internal static string Volume_is_wrapped_inside_an_HFS_volume { - get { - return ResourceManager.GetString("Volume_is_wrapped_inside_an_HFS_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume label: {0}. - /// - internal static string Volume_label_0 { - get { - return ResourceManager.GetString("Volume_label_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last accessed on {0:d}. - /// - internal static string Volume_last_accessed_on_0_d { - get { - return ResourceManager.GetString("Volume_last_accessed_on_0_d", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last booted on {0}. - /// - internal static string Volume_last_booted_on_0 { - get { - return ResourceManager.GetString("Volume_last_booted_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last checked on {0}. - /// - internal static string Volume_last_checked_on_0 { - get { - return ResourceManager.GetString("Volume_last_checked_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last modified on {0}. - /// - internal static string Volume_last_modified_on_0 { - get { - return ResourceManager.GetString("Volume_last_modified_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last mounted at "{0}". - /// - internal static string Volume_last_mounted_at_0 { - get { - return ResourceManager.GetString("Volume_last_mounted_at_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last mounted on {0}. - /// - internal static string Volume_last_mounted_on_0 { - get { - return ResourceManager.GetString("Volume_last_mounted_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last mounted on kernel version: {0}. - /// - internal static string Volume_last_mounted_on_kernel_version_0 { - get { - return ResourceManager.GetString("Volume_last_mounted_on_kernel_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last updated on {0}. - /// - internal static string Volume_last_updated_on_0 { - get { - return ResourceManager.GetString("Volume_last_updated_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume last written on {0}. - /// - internal static string Volume_last_written_on_0 { - get { - return ResourceManager.GetString("Volume_last_written_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume modification date: {0}. - /// - internal static string Volume_modification_date_0 { - get { - return ResourceManager.GetString("Volume_modification_date_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume moves deleted files to a recycled folder. - /// - internal static string Volume_moves_deleted_files_to_a_recycled_folder { - get { - return ResourceManager.GetString("Volume_moves_deleted_files_to_a_recycled_folder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume must be backed up. - /// - internal static string Volume_must_be_backed_up { - get { - return ResourceManager.GetString("Volume_must_be_backed_up", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume name: {0}. - /// - internal static string Volume_name_0 { - get { - return ResourceManager.GetString("Volume_name_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume name is {0}. - /// - internal static string Volume_name_is_0 { - get { - return ResourceManager.GetString("Volume_name_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume number: {0}. - /// - internal static string Volume_number_0 { - get { - return ResourceManager.GetString("Volume_number_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume owner: {0}. - /// - internal static string Volume_owner_0 { - get { - return ResourceManager.GetString("Volume_owner_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume owner is "{0}". - /// - internal static string Volume_owner_is_0 { - get { - return ResourceManager.GetString("Volume_owner_is_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume owner is "{0}" (ID 0x{1:X8}). - /// - internal static string Volume_owner_is_0_ID_1 { - get { - return ResourceManager.GetString("Volume_owner_is_0_ID_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume pack: {0}. - /// - internal static string Volume_pack_0 { - get { - return ResourceManager.GetString("Volume_pack_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume panics on error. - /// - internal static string Volume_panics_on_error { - get { - return ResourceManager.GetString("Volume_panics_on_error", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume password: "{0}". - /// internal static string Volume_password_0 { get { return ResourceManager.GetString("Volume_password_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume permissions (r = read, w = write, c = create, d = delete). - /// - internal static string Volume_permissions_r_read_w_write_c_create_d_delete { + internal static string Volume_ID_0_X16 { get { - return ResourceManager.GetString("Volume_permissions_r_read_w_write_c_create_d_delete", resourceCulture); + return ResourceManager.GetString("Volume_ID_0_X16", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume primes DASD on boot. - /// - internal static string Volume_primes_DASD_on_boot { + internal static string Backup_volume_ID_0 { get { - return ResourceManager.GetString("Volume_primes_DASD_on_boot", resourceCulture); + return ResourceManager.GetString("Backup_volume_ID_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume record spans from block {0} to block {1}. - /// - internal static string Volume_record_spans_from_block_0_to_block_1 { + internal static string Master_copy_ID_0 { get { - return ResourceManager.GetString("Volume_record_spans_from_block_0_to_block_1", resourceCulture); + return ResourceManager.GetString("Master_copy_ID_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume remounts read-only on error. - /// - internal static string Volume_remounts_read_only_on_error { + internal static string Volume_is_number_0_of_1 { get { - return ResourceManager.GetString("Volume_remounts_read_only_on_error", resourceCulture); + return ResourceManager.GetString("Volume_is_number_0_of_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume requires UDF version {0}.{1:X2} to be read. - /// - internal static string Volume_requires_UDF_version_0_1_to_be_read { + internal static string Serial_number_of_Lisa_computer_that_created_this_volume_0 { get { - return ResourceManager.GetString("Volume_requires_UDF_version_0_1_to_be_read", resourceCulture); + return ResourceManager.GetString("Serial_number_of_Lisa_computer_that_created_this_volume_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume requires UDF version {0}.{1:X2} to be written to. - /// - internal static string Volume_requires_UDF_version_0_1_to_be_written_to { + internal static string Serial_number_of_Lisa_computer_that_can_use_this_volume_software_0 { get { - return ResourceManager.GetString("Volume_requires_UDF_version_0_1_to_be_written_to", resourceCulture); + return ResourceManager.GetString("Serial_number_of_Lisa_computer_that_can_use_this_volume_software_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume reserves {0} sectors for system. - /// - internal static string Volume_reserves_0_sectors_for_system { + internal static string Volume_catalog_created_on_0 { get { - return ResourceManager.GetString("Volume_reserves_0_sectors_for_system", resourceCulture); + return ResourceManager.GetString("Volume_catalog_created_on_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume reserves {1} tracks ({0} sectors) for system. - /// - internal static string Volume_reserves_1_tracks_0_sectors_for_system { + internal static string Volume_backed_up_on_0 { get { - return ResourceManager.GetString("Volume_reserves_1_tracks_0_sectors_for_system", resourceCulture); + return ResourceManager.GetString("Volume_backed_up_on_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume root directory last modified on {0}. - /// - internal static string Volume_root_directory_last_modified_on_0 { - get { - return ResourceManager.GetString("Volume_root_directory_last_modified_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume scavenged on {0}. - /// internal static string Volume_scavenged_on_0 { get { return ResourceManager.GetString("Volume_scavenged_on_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume sends TRIM/UNMAP commands to underlying device. - /// - internal static string Volume_sends_TRIM_UNMAP_commands_to_underlying_device { + internal static string MDDF_is_in_block_0 { get { - return ResourceManager.GetString("Volume_sends_TRIM_UNMAP_commands_to_underlying_device", resourceCulture); + return ResourceManager.GetString("MDDF_is_in_block_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume serial: {0}. - /// - internal static string Volume_serial_0 { + internal static string There_are_0_reserved_blocks_before_volume { get { - return ResourceManager.GetString("Volume_serial_0", resourceCulture); + return ResourceManager.GetString("There_are_0_reserved_blocks_before_volume", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume serial: {0:X8}. - /// - internal static string Volume_serial_0_X8 { + internal static string _0_blocks_minus_one { get { - return ResourceManager.GetString("Volume_serial_0_X8", resourceCulture); + return ResourceManager.GetString("_0_blocks_minus_one", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume Serial Number: {0}. - /// - internal static string Volume_Serial_Number_0 { + internal static string _0_blocks_minus_one_minus_MDDF_offset { get { - return ResourceManager.GetString("Volume_Serial_Number_0", resourceCulture); + return ResourceManager.GetString("_0_blocks_minus_one_minus_MDDF_offset", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume serial number: {0:X16}. - /// - internal static string Volume_serial_number_0_X16 { + internal static string _0_blocks_in_volume { get { - return ResourceManager.GetString("Volume_serial_number_0_X16", resourceCulture); + return ResourceManager.GetString("_0_blocks_in_volume", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume serial number: {0:X8}. - /// - internal static string Volume_serial_number_0_X8 { + internal static string _0_bytes_per_sector_uncooked { get { - return ResourceManager.GetString("Volume_serial_number_0_X8", resourceCulture); + return ResourceManager.GetString("_0_bytes_per_sector_uncooked", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume set identifier: {0}. - /// - internal static string Volume_set_identifier_0 { + internal static string _0_blocks_per_cluster { get { - return ResourceManager.GetString("Volume_set_identifier_0", resourceCulture); + return ResourceManager.GetString("_0_blocks_per_cluster", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume should be checked on next mount.. - /// - internal static string Volume_should_be_checked_on_next_mount { + internal static string _0_blocks_in_filesystem { get { - return ResourceManager.GetString("Volume_should_be_checked_on_next_mount", resourceCulture); + return ResourceManager.GetString("_0_blocks_in_filesystem", resourceCulture); + } + } + + internal static string _0_files_in_volume { + get { + return ResourceManager.GetString("_0_files_in_volume", resourceCulture); + } + } + + internal static string _0_blocks_free { + get { + return ResourceManager.GetString("_0_blocks_free", resourceCulture); + } + } + + internal static string _0_bytes_in_LisaInfo { + get { + return ResourceManager.GetString("_0_bytes_in_LisaInfo", resourceCulture); + } + } + + internal static string Filesystem_overhead_0 { + get { + return ResourceManager.GetString("Filesystem_overhead_0", resourceCulture); + } + } + + internal static string Scavenger_result_code_0 { + get { + return ResourceManager.GetString("Scavenger_result_code_0", resourceCulture); + } + } + + internal static string Boot_code_0 { + get { + return ResourceManager.GetString("Boot_code_0", resourceCulture); + } + } + + internal static string Boot_environment_0 { + get { + return ResourceManager.GetString("Boot_environment_0", resourceCulture); + } + } + + internal static string Overmount_stamp_0 { + get { + return ResourceManager.GetString("Overmount_stamp_0", resourceCulture); + } + } + + internal static string S_Records_start_at_0_and_spans_for_1_blocks { + get { + return ResourceManager.GetString("S_Records_start_at_0_and_spans_for_1_blocks", resourceCulture); + } + } + + internal static string Volume_is_clean { + get { + return ResourceManager.GetString("Volume_is_clean", resourceCulture); + } + } + + internal static string Volume_is_dirty { + get { + return ResourceManager.GetString("Volume_is_dirty", resourceCulture); + } + } + + internal static string Underlying_device_does_not_support_Lisa_tags { + get { + return ResourceManager.GetString("Underlying_device_does_not_support_Lisa_tags", resourceCulture); + } + } + + internal static string Device_is_too_small { + get { + return ResourceManager.GetString("Device_is_too_small", resourceCulture); + } + } + + internal static string Incorrect_MDDF_found { + get { + return ResourceManager.GetString("Incorrect_MDDF_found", resourceCulture); + } + } + + internal static string Mounting_LisaFS_v1 { + get { + return ResourceManager.GetString("Mounting_LisaFS_v1", resourceCulture); + } + } + + internal static string Mounting_LisaFS_v2 { + get { + return ResourceManager.GetString("Mounting_LisaFS_v2", resourceCulture); + } + } + + internal static string Mounting_LisaFS_v3 { + get { + return ResourceManager.GetString("Mounting_LisaFS_v3", resourceCulture); + } + } + + internal static string Cannot_mount_LisaFS_version_0 { + get { + return ResourceManager.GetString("Cannot_mount_LisaFS_version_0", resourceCulture); + } + } + + internal static string Error_0_reading_S_Records_file { + get { + return ResourceManager.GetString("Error_0_reading_S_Records_file", resourceCulture); + } + } + + internal static string Cannot_read_Catalog_File_error_0 { + get { + return ResourceManager.GetString("Cannot_read_Catalog_File_error_0", resourceCulture); + } + } + + internal static string Unable_to_read_boot_blocks { + get { + return ResourceManager.GetString("Unable_to_read_boot_blocks", resourceCulture); + } + } + + internal static string Unable_to_read_boot_loader { + get { + return ResourceManager.GetString("Unable_to_read_boot_loader", resourceCulture); + } + } + + internal static string Unable_to_read_MDDF { + get { + return ResourceManager.GetString("Unable_to_read_MDDF", resourceCulture); + } + } + + internal static string Unable_to_read_volume_bitmap { + get { + return ResourceManager.GetString("Unable_to_read_volume_bitmap", resourceCulture); + } + } + + internal static string Unable_to_read_S_Records_file { + get { + return ResourceManager.GetString("Unable_to_read_S_Records_file", resourceCulture); + } + } + + internal static string Not_a_Lisa_filesystem { + get { + return ResourceManager.GetString("Not_a_Lisa_filesystem", resourceCulture); + } + } + + internal static string Exception_0_1_2 { + get { + return ResourceManager.GetString("Exception_0_1_2", resourceCulture); + } + } + + internal static string OperaFS_Name { + get { + return ResourceManager.GetString("OperaFS_Name", resourceCulture); + } + } + + internal static string Opera_filesystem_disc { + get { + return ResourceManager.GetString("Opera_filesystem_disc", resourceCulture); + } + } + + internal static string Volume_identifier_0_X8 { + get { + return ResourceManager.GetString("Volume_identifier_0_X8", resourceCulture); + } + } + + internal static string Block_size_0_bytes { + get { + return ResourceManager.GetString("Block_size_0_bytes", resourceCulture); + } + } + + internal static string WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block { + get { + return ResourceManager.GetString("WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume size: {0} blocks, {1} bytes. - /// internal static string Volume_size_0_blocks_1_bytes { get { return ResourceManager.GetString("Volume_size_0_blocks_1_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to Volume size {0} bytes. - /// - internal static string Volume_size_0_bytes { - get { - return ResourceManager.GetString("Volume_size_0_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume starts on device byte {0} and ends on byte {1}. - /// - internal static string Volume_starts_on_device_byte_0_and_ends_on_byte_1 { - get { - return ResourceManager.GetString("Volume_starts_on_device_byte_0_and_ends_on_byte_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume state is inconsistent.. - /// - internal static string Volume_state_is_inconsistent { - get { - return ResourceManager.GetString("Volume_state_is_inconsistent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume state on {0}. - /// - internal static string Volume_state_on_0 { - get { - return ResourceManager.GetString("Volume_state_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume supports AIX. - /// - internal static string Volume_supports_AIX { - get { - return ResourceManager.GetString("Volume_supports_AIX", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume supports DCE DFS LFS. - /// - internal static string Volume_supports_DCE_DFS_LFS { - get { - return ResourceManager.GetString("Volume_supports_DCE_DFS_LFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume supports Linux. - /// - internal static string Volume_supports_Linux { - get { - return ResourceManager.GetString("Volume_supports_Linux", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume supports OS/2, and is case insensitive. - /// - internal static string Volume_supports_OS2_and_is_case_insensitive { - get { - return ResourceManager.GetString("Volume_supports_OS2_and_is_case_insensitive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume supports sparse files. - /// - internal static string Volume_supports_sparse_files { - get { - return ResourceManager.GetString("Volume_supports_sparse_files", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume updated on {0}. - /// - internal static string Volume_updated_on_0 { - get { - return ResourceManager.GetString("Volume_updated_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume use extents (ext4). - /// - internal static string Volume_use_extents_ext4 { - get { - return ResourceManager.GetString("Volume_use_extents_ext4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses {0} bytes per block. - /// - internal static string Volume_uses_0_bytes_per_block { - get { - return ResourceManager.GetString("Volume_uses_0_bytes_per_block", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses {0} bytes per sector. - /// - internal static string Volume_uses_0_bytes_per_sector { - get { - return ResourceManager.GetString("Volume_uses_0_bytes_per_sector", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses {0} codepage {1}. - /// - internal static string Volume_uses_0_codepage_1 { - get { - return ResourceManager.GetString("Volume_uses_0_codepage_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses {0} FATs. - /// - internal static string Volume_uses_0_FATs { - get { - return ResourceManager.GetString("Volume_uses_0_FATs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses {0} sectors per cluster ({1} bytes). - /// - internal static string Volume_uses_0_sectors_per_cluster_1_bytes { - get { - return ResourceManager.GetString("Volume_uses_0_sectors_per_cluster_1_bytes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses clusters of {0} sectors ({1} bytes) each. - /// - internal static string Volume_uses_clusters_of_0_sectors_1_bytes_each { - get { - return ResourceManager.GetString("Volume_uses_clusters_of_0_sectors_1_bytes_each", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses standard CP/M timestamps. - /// - internal static string Volume_uses_standard_CPM_timestamps { - get { - return ResourceManager.GetString("Volume_uses_standard_CPM_timestamps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses synchronous writes. - /// - internal static string Volume_uses_synchronous_writes { - get { - return ResourceManager.GetString("Volume_uses_synchronous_writes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses third party timestamps. - /// - internal static string Volume_uses_third_party_timestamps { - get { - return ResourceManager.GetString("Volume_uses_third_party_timestamps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume uses Unicode for directory entries. - /// - internal static string Volume_uses_Unicode_for_directory_entries { - get { - return ResourceManager.GetString("Volume_uses_Unicode_for_directory_entries", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume UUID: {0}. - /// - internal static string Volume_UUID_0 { - get { - return ResourceManager.GetString("Volume_UUID_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume version {0}. - /// - internal static string Volume_version_0 { - get { - return ResourceManager.GetString("Volume_version_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume version {0}.{1}. - /// - internal static string Volume_version_0_1 { - get { - return ResourceManager.GetString("Volume_version_0_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was created for {0}. - /// - internal static string Volume_was_created_for_0 { - get { - return ResourceManager.GetString("Volume_was_created_for_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was created on {0}. - /// - internal static string Volume_was_created_on_0 { - get { - return ResourceManager.GetString("Volume_was_created_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was created on {0} for {1}. - /// - internal static string Volume_was_created_on_0_for_1 { - get { - return ResourceManager.GetString("Volume_was_created_on_0_for_1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was last modified on {0}. - /// - internal static string Volume_was_last_modified_on_0 { - get { - return ResourceManager.GetString("Volume_was_last_modified_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was last updated on {0}. - /// - internal static string Volume_was_last_updated_on_0_ { - get { - return ResourceManager.GetString("Volume_was_last_updated_on_0_", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was last written by: {0}. - /// - internal static string Volume_was_last_written_by_0 { - get { - return ResourceManager.GetString("Volume_was_last_written_by_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was last written on {0}. - /// - internal static string Volume_was_last_written_on_0 { - get { - return ResourceManager.GetString("Volume_was_last_written_on_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume was unmonted.. - /// - internal static string Volume_was_unmonted { - get { - return ResourceManager.GetString("Volume_was_unmonted", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume wraps a HFS+ volume.. - /// - internal static string Volume_wraps_a_HFS_Plus_volume { - get { - return ResourceManager.GetString("Volume_wraps_a_HFS_Plus_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Volume write count: {0}. - /// - internal static string Volume_write_count_0 { - get { - return ResourceManager.GetString("Volume_write_count_0", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Veritas filesystem. - /// - internal static string VxFS_Name { - get { - return ResourceManager.GetString("VxFS_Name", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to WARNING: Filesystem indicates {0} blocks while device indicates {1} blocks. - /// internal static string WARNING__Filesystem_indicates_0_blocks_while_device_indicates_1_blocks { get { return ResourceManager.GetString("WARNING__Filesystem_indicates_0_blocks_while_device_indicates_1_blocks", resourceCulture); } } - /// - /// Looks up a localized string similar to Warning! Detected unknown ProDOS version ProDOS filesystem.. - /// + internal static string Root_directory_identifier_0 { + get { + return ResourceManager.GetString("Root_directory_identifier_0", resourceCulture); + } + } + + internal static string Root_directory_block_size_0_bytes { + get { + return ResourceManager.GetString("Root_directory_block_size_0_bytes", resourceCulture); + } + } + + internal static string Root_directory_size_0_blocks_1_bytes { + get { + return ResourceManager.GetString("Root_directory_size_0_blocks_1_bytes", resourceCulture); + } + } + + internal static string Last_root_directory_copy_0 { + get { + return ResourceManager.GetString("Last_root_directory_copy_0", resourceCulture); + } + } + + internal static string PascalPlugin_Name { + get { + return ResourceManager.GetString("PascalPlugin_Name", resourceCulture); + } + } + + internal static string Volume_record_spans_from_block_0_to_block_1 { + get { + return ResourceManager.GetString("Volume_record_spans_from_block_0_to_block_1", resourceCulture); + } + } + + internal static string Volume_has_0_blocks { + get { + return ResourceManager.GetString("Volume_has_0_blocks", resourceCulture); + } + } + + internal static string Volume_has_0_files { + get { + return ResourceManager.GetString("Volume_has_0_files", resourceCulture); + } + } + + internal static string Volume_last_booted_on_0 { + get { + return ResourceManager.GetString("Volume_last_booted_on_0", resourceCulture); + } + } + + internal static string AcornADFS_Name { + get { + return ResourceManager.GetString("AcornADFS_Name", resourceCulture); + } + } + + internal static string Acorn_Advanced_Disc_Filing_System { + get { + return ResourceManager.GetString("Acorn_Advanced_Disc_Filing_System", resourceCulture); + } + } + + internal static string Volume_has_0_bytes { + get { + return ResourceManager.GetString("Volume_has_0_bytes", resourceCulture); + } + } + + internal static string Volume_ID_0_X4 { + get { + return ResourceManager.GetString("Volume_ID_0_X4", resourceCulture); + } + } + + internal static string Version_0 { + get { + return ResourceManager.GetString("Version_0", resourceCulture); + } + } + + internal static string Density_code_0 { + get { + return ResourceManager.GetString("Density_code_0", resourceCulture); + } + } + + internal static string Skew_0 { + get { + return ResourceManager.GetString("Skew_0", resourceCulture); + } + } + + internal static string Boot_option_0 { + get { + return ResourceManager.GetString("Boot_option_0", resourceCulture); + } + } + + internal static string Root_starts_at_frag_0 { + get { + return ResourceManager.GetString("Root_starts_at_frag_0", resourceCulture); + } + } + + internal static string Volume_has_0_bytes_in_1_zones { + get { + return ResourceManager.GetString("Volume_has_0_bytes_in_1_zones", resourceCulture); + } + } + + internal static string Volume_flags_0_X4 { + get { + return ResourceManager.GetString("Volume_flags_0_X4", resourceCulture); + } + } + + internal static string AmigaDOSPlugin_Name { + get { + return ResourceManager.GetString("AmigaDOSPlugin_Name", resourceCulture); + } + } + + internal static string Bootblock_points_to_0_as_Rootblock { + get { + return ResourceManager.GetString("Bootblock_points_to_0_as_Rootblock", resourceCulture); + } + } + + internal static string Searching_for_Rootblock_in_sector_0 { + get { + return ResourceManager.GetString("Searching_for_Rootblock_in_sector_0", resourceCulture); + } + } + + internal static string Amiga_Original_File_System { + get { + return ResourceManager.GetString("Amiga_Original_File_System", resourceCulture); + } + } + + internal static string Amiga_Fast_File_System { + get { + return ResourceManager.GetString("Amiga_Fast_File_System", resourceCulture); + } + } + + internal static string Amiga_Original_File_System_with_international_characters { + get { + return ResourceManager.GetString("Amiga_Original_File_System_with_international_characters", resourceCulture); + } + } + + internal static string Amiga_Fast_File_System_with_international_characters { + get { + return ResourceManager.GetString("Amiga_Fast_File_System_with_international_characters", resourceCulture); + } + } + + internal static string Amiga_Original_File_System_with_directory_cache { + get { + return ResourceManager.GetString("Amiga_Original_File_System_with_directory_cache", resourceCulture); + } + } + + internal static string Amiga_Fast_File_System_with_directory_cache { + get { + return ResourceManager.GetString("Amiga_Fast_File_System_with_directory_cache", resourceCulture); + } + } + + internal static string Amiga_Original_File_System_with_long_filenames { + get { + return ResourceManager.GetString("Amiga_Original_File_System_with_long_filenames", resourceCulture); + } + } + + internal static string Amiga_Fast_File_System_with_long_filenames { + get { + return ResourceManager.GetString("Amiga_Fast_File_System_with_long_filenames", resourceCulture); + } + } + + internal static string with_multi_user_patches { + get { + return ResourceManager.GetString("with_multi_user_patches", resourceCulture); + } + } + + internal static string Volume_bitmap_is_valid { + get { + return ResourceManager.GetString("Volume_bitmap_is_valid", resourceCulture); + } + } + + internal static string Bitmap_extension_at_block_0 { + get { + return ResourceManager.GetString("Bitmap_extension_at_block_0", resourceCulture); + } + } + + internal static string Directory_cache_starts_at_block_0 { + get { + return ResourceManager.GetString("Directory_cache_starts_at_block_0", resourceCulture); + } + } + + internal static string Volume_block_size_is_0_bytes { + get { + return ResourceManager.GetString("Volume_block_size_is_0_bytes", resourceCulture); + } + } + + internal static string Volume_root_directory_last_modified_on_0 { + get { + return ResourceManager.GetString("Volume_root_directory_last_modified_on_0", resourceCulture); + } + } + + internal static string Root_block_checksum_is_0 { + get { + return ResourceManager.GetString("Root_block_checksum_is_0", resourceCulture); + } + } + + internal static string AODOS_Name { + get { + return ResourceManager.GetString("AODOS_Name", resourceCulture); + } + } + + internal static string Alexander_Osipov_DOS_file_system { + get { + return ResourceManager.GetString("Alexander_Osipov_DOS_file_system", resourceCulture); + } + } + + internal static string _0_used_sectors_on_volume { + get { + return ResourceManager.GetString("_0_used_sectors_on_volume", resourceCulture); + } + } + + internal static string Disk_name_0 { + get { + return ResourceManager.GetString("Disk_name_0", resourceCulture); + } + } + + internal static string APFS_Name { + get { + return ResourceManager.GetString("APFS_Name", resourceCulture); + } + } + + internal static string Apple_File_System { + get { + return ResourceManager.GetString("Apple_File_System", resourceCulture); + } + } + + internal static string _0_bytes_per_block { + get { + return ResourceManager.GetString("_0_bytes_per_block", resourceCulture); + } + } + + internal static string Container_has_0_bytes_in_1_blocks { + get { + return ResourceManager.GetString("Container_has_0_bytes_in_1_blocks", resourceCulture); + } + } + + internal static string AppleHFSPlus_Name { + get { + return ResourceManager.GetString("AppleHFSPlus_Name", resourceCulture); + } + } + + internal static string HFS_filesystem { + get { + return ResourceManager.GetString("HFS_filesystem", resourceCulture); + } + } + + internal static string HFSX_filesystem { + get { + return ResourceManager.GetString("HFSX_filesystem", resourceCulture); + } + } + + internal static string Volume_is_wrapped_inside_an_HFS_volume { + get { + return ResourceManager.GetString("Volume_is_wrapped_inside_an_HFS_volume", resourceCulture); + } + } + + internal static string Filesystem_version_is_0 { + get { + return ResourceManager.GetString("Filesystem_version_is_0", resourceCulture); + } + } + + internal static string Volume_is_unmounted { + get { + return ResourceManager.GetString("Volume_is_unmounted", resourceCulture); + } + } + + internal static string There_are_bad_blocks_in_the_extents_file { + get { + return ResourceManager.GetString("There_are_bad_blocks_in_the_extents_file", resourceCulture); + } + } + + internal static string Volume_state_is_inconsistent { + get { + return ResourceManager.GetString("Volume_state_is_inconsistent", resourceCulture); + } + } + + internal static string Implementation_that_last_mounted_the_volume_0 { + get { + return ResourceManager.GetString("Implementation_that_last_mounted_the_volume_0", resourceCulture); + } + } + + internal static string Journal_starts_at_allocation_block_0 { + get { + return ResourceManager.GetString("Journal_starts_at_allocation_block_0", resourceCulture); + } + } + + internal static string Last_check_date_0 { + get { + return ResourceManager.GetString("Last_check_date_0", resourceCulture); + } + } + + internal static string Volume_has_never_been_checked_up { + get { + return ResourceManager.GetString("Volume_has_never_been_checked_up", resourceCulture); + } + } + + internal static string _0_allocation_blocks { + get { + return ResourceManager.GetString("_0_allocation_blocks", resourceCulture); + } + } + + internal static string _0_free_blocks { + get { + return ResourceManager.GetString("_0_free_blocks", resourceCulture); + } + } + + internal static string Resource_fork_clump_size_0_bytes { + get { + return ResourceManager.GetString("Resource_fork_clump_size_0_bytes", resourceCulture); + } + } + + internal static string Data_fork_clump_size_0_bytes { + get { + return ResourceManager.GetString("Data_fork_clump_size_0_bytes", resourceCulture); + } + } + + internal static string Volume_has_been_mounted_writable_0_times { + get { + return ResourceManager.GetString("Volume_has_been_mounted_writable_0_times", resourceCulture); + } + } + + internal static string Allocation_File_is_0_bytes { + get { + return ResourceManager.GetString("Allocation_File_is_0_bytes", resourceCulture); + } + } + + internal static string Extents_File_is_0_bytes { + get { + return ResourceManager.GetString("Extents_File_is_0_bytes", resourceCulture); + } + } + + internal static string Catalog_File_is_0_bytes { + get { + return ResourceManager.GetString("Catalog_File_is_0_bytes", resourceCulture); + } + } + + internal static string Attributes_File_is_0_bytes { + get { + return ResourceManager.GetString("Attributes_File_is_0_bytes", resourceCulture); + } + } + + internal static string Startup_File_is_0_bytes { + get { + return ResourceManager.GetString("Startup_File_is_0_bytes", resourceCulture); + } + } + + internal static string This_version_is_not_supported_yet { + get { + return ResourceManager.GetString("This_version_is_not_supported_yet", resourceCulture); + } + } + + internal static string AtheOS_Name { + get { + return ResourceManager.GetString("AtheOS_Name", resourceCulture); + } + } + + internal static string Atheos_filesystem { + get { + return ResourceManager.GetString("Atheos_filesystem", resourceCulture); + } + } + + internal static string Filesystem_is_read_only { + get { + return ResourceManager.GetString("Filesystem_is_read_only", resourceCulture); + } + } + + internal static string _0_blocks_in_volume_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_in_volume_1_bytes", resourceCulture); + } + } + + internal static string _0_used_blocks_1_bytes { + get { + return ResourceManager.GetString("_0_used_blocks_1_bytes", resourceCulture); + } + } + + internal static string _0_bytes_per_i_node { + get { + return ResourceManager.GetString("_0_bytes_per_i_node", resourceCulture); + } + } + + internal static string _0_blocks_per_allocation_group_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_per_allocation_group_1_bytes", resourceCulture); + } + } + + internal static string _0_allocation_groups_in_volume { + get { + return ResourceManager.GetString("_0_allocation_groups_in_volume", resourceCulture); + } + } + + internal static string Journal_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { + get { + return ResourceManager.GetString("Journal_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes", resourceCulture); + } + } + + internal static string Journal_starts_in_byte_0_and_has_1_bytes_in_2_blocks { + get { + return ResourceManager.GetString("Journal_starts_in_byte_0_and_has_1_bytes_in_2_blocks", resourceCulture); + } + } + + internal static string Root_folder_s_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { + get { + return ResourceManager.GetString("Root_folder_s_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_bloc" + + "ks_3_bytes", resourceCulture); + } + } + + internal static string Directory_containing_files_scheduled_for_deletion_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { + get { + return ResourceManager.GetString("Directory_containing_files_scheduled_for_deletion_i_node_resides_in_block_0_of_al" + + "location_group_1_and_runs_for_2_blocks_3_bytes", resourceCulture); + } + } + + internal static string Indices_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes { + get { + return ResourceManager.GetString("Indices_i_node_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_b" + + "ytes", resourceCulture); + } + } + + internal static string _0_blocks_for_bootloader_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_for_bootloader_1_bytes", resourceCulture); + } + } + + internal static string BeFS_Name { + get { + return ResourceManager.GetString("BeFS_Name", resourceCulture); + } + } + + internal static string Little_endian_BeFS { + get { + return ResourceManager.GetString("Little_endian_BeFS", resourceCulture); + } + } + + internal static string Big_endian_BeFS { + get { + return ResourceManager.GetString("Big_endian_BeFS", resourceCulture); + } + } + + internal static string Superblock_seems_corrupt_following_information_may_be_incorrect { + get { + return ResourceManager.GetString("Superblock_seems_corrupt_following_information_may_be_incorrect", resourceCulture); + } + } + + internal static string Magic_one_0_Should_be_0x42465331 { + get { + return ResourceManager.GetString("Magic_one_0_Should_be_0x42465331", resourceCulture); + } + } + + internal static string Magic_two_0_Should_be_0xDD121031 { + get { + return ResourceManager.GetString("Magic_two_0_Should_be_0xDD121031", resourceCulture); + } + } + + internal static string Magic_three_0_Should_be_0x15B6830E { + get { + return ResourceManager.GetString("Magic_three_0_Should_be_0x15B6830E", resourceCulture); + } + } + + internal static string Filesystem_endianness_0_Should_be_0x42494745 { + get { + return ResourceManager.GetString("Filesystem_endianness_0_Should_be_0x42494745", resourceCulture); + } + } + + internal static string Root_folder_i_node_size_0_blocks_Should_be_one { + get { + return ResourceManager.GetString("Root_folder_i_node_size_0_blocks_Should_be_one", resourceCulture); + } + } + + internal static string Indices_i_node_size_0_blocks_Should_be_one { + get { + return ResourceManager.GetString("Indices_i_node_size_0_blocks_Should_be_one", resourceCulture); + } + } + + internal static string blockshift_0_1_should_be_2 { + get { + return ResourceManager.GetString("blockshift_0_1_should_be_2", resourceCulture); + } + } + + internal static string Unknown_flags_0_X8 { + get { + return ResourceManager.GetString("Unknown_flags_0_X8", resourceCulture); + } + } + + internal static string Journal_starts_in_byte_0_and_ends_in_byte_1 { + get { + return ResourceManager.GetString("Journal_starts_in_byte_0_and_ends_in_byte_1", resourceCulture); + } + } + + internal static string BTRFS_Name { + get { + return ResourceManager.GetString("BTRFS_Name", resourceCulture); + } + } + + internal static string B_tree_filesystem { + get { + return ResourceManager.GetString("B_tree_filesystem", resourceCulture); + } + } + + internal static string UUID_0 { + get { + return ResourceManager.GetString("UUID_0", resourceCulture); + } + } + + internal static string This_superblock_resides_on_physical_block_0 { + get { + return ResourceManager.GetString("This_superblock_resides_on_physical_block_0", resourceCulture); + } + } + + internal static string Root_tree_starts_at_LBA_0 { + get { + return ResourceManager.GetString("Root_tree_starts_at_LBA_0", resourceCulture); + } + } + + internal static string Chunk_tree_starts_at_LBA_0 { + get { + return ResourceManager.GetString("Chunk_tree_starts_at_LBA_0", resourceCulture); + } + } + + internal static string Log_tree_starts_at_LBA_0 { + get { + return ResourceManager.GetString("Log_tree_starts_at_LBA_0", resourceCulture); + } + } + + internal static string Volume_has_0_bytes_spanned_in_1_devices { + get { + return ResourceManager.GetString("Volume_has_0_bytes_spanned_in_1_devices", resourceCulture); + } + } + + internal static string Volume_has_0_bytes_used { + get { + return ResourceManager.GetString("Volume_has_0_bytes_used", resourceCulture); + } + } + + internal static string _0_bytes_sector { + get { + return ResourceManager.GetString("_0_bytes_sector", resourceCulture); + } + } + + internal static string _0_bytes_node { + get { + return ResourceManager.GetString("_0_bytes_node", resourceCulture); + } + } + + internal static string _0_bytes_leaf { + get { + return ResourceManager.GetString("_0_bytes_leaf", resourceCulture); + } + } + + internal static string _0_bytes_stripe { + get { + return ResourceManager.GetString("_0_bytes_stripe", resourceCulture); + } + } + + internal static string Flags_0 { + get { + return ResourceManager.GetString("Flags_0", resourceCulture); + } + } + + internal static string Compatible_flags_0 { + get { + return ResourceManager.GetString("Compatible_flags_0", resourceCulture); + } + } + + internal static string Read_only_compatible_flags_0 { + get { + return ResourceManager.GetString("Read_only_compatible_flags_0", resourceCulture); + } + } + + internal static string Incompatible_flags_0 { + get { + return ResourceManager.GetString("Incompatible_flags_0", resourceCulture); + } + } + + internal static string Device_UUID_0 { + get { + return ResourceManager.GetString("Device_UUID_0", resourceCulture); + } + } + + internal static string CBM_Name { + get { + return ResourceManager.GetString("CBM_Name", resourceCulture); + } + } + + internal static string Commodore_file_system { + get { + return ResourceManager.GetString("Commodore_file_system", resourceCulture); + } + } + + internal static string Directory_starts_at_track_0_sector_1 { + get { + return ResourceManager.GetString("Directory_starts_at_track_0_sector_1", resourceCulture); + } + } + + internal static string Disk_DOS_Version_0 { + get { + return ResourceManager.GetString("Disk_DOS_Version_0", resourceCulture); + } + } + + internal static string DOS_Version_0 { + get { + return ResourceManager.GetString("DOS_Version_0", resourceCulture); + } + } + + internal static string Disk_Version_0 { + get { + return ResourceManager.GetString("Disk_Version_0", resourceCulture); + } + } + + internal static string Disk_ID_0 { + get { + return ResourceManager.GetString("Disk_ID_0", resourceCulture); + } + } + + internal static string Disk_DOS_type_0 { + get { + return ResourceManager.GetString("Disk_DOS_type_0", resourceCulture); + } + } + + internal static string Cram_Name { + get { + return ResourceManager.GetString("Cram_Name", resourceCulture); + } + } + + internal static string Cram_file_system { + get { + return ResourceManager.GetString("Cram_file_system", resourceCulture); + } + } + + internal static string Little_endian { + get { + return ResourceManager.GetString("Little_endian", resourceCulture); + } + } + + internal static string Big_endian { + get { + return ResourceManager.GetString("Big_endian", resourceCulture); + } + } + + internal static string Volume_edition_0 { + get { + return ResourceManager.GetString("Volume_edition_0", resourceCulture); + } + } + + internal static string dump_Name { + get { + return ResourceManager.GetString("dump_Name", resourceCulture); + } + } + + internal static string Could_not_read_dump_8_header_block { + get { + return ResourceManager.GetString("Could_not_read_dump_8_header_block", resourceCulture); + } + } + + internal static string Old_16_bit_dump_8 { + get { + return ResourceManager.GetString("Old_16_bit_dump_8", resourceCulture); + } + } + + internal static string Dump_created_on_0 { + get { + return ResourceManager.GetString("Dump_created_on_0", resourceCulture); + } + } + + internal static string Previous_dump_created_on_0 { + get { + return ResourceManager.GetString("Previous_dump_created_on_0", resourceCulture); + } + } + + internal static string Dump_volume_number_0 { + get { + return ResourceManager.GetString("Dump_volume_number_0", resourceCulture); + } + } + + internal static string Dump_level_0 { + get { + return ResourceManager.GetString("Dump_level_0", resourceCulture); + } + } + + internal static string Dump_label_0 { + get { + return ResourceManager.GetString("Dump_label_0", resourceCulture); + } + } + + internal static string Dumped_filesystem_name_0 { + get { + return ResourceManager.GetString("Dumped_filesystem_name_0", resourceCulture); + } + } + + internal static string Dumped_device_0 { + get { + return ResourceManager.GetString("Dumped_device_0", resourceCulture); + } + } + + internal static string Dump_hostname_0 { + get { + return ResourceManager.GetString("Dump_hostname_0", resourceCulture); + } + } + + internal static string ECMA67_Name { + get { + return ResourceManager.GetString("ECMA67_Name", resourceCulture); + } + } + + internal static string ECMA_67 { + get { + return ResourceManager.GetString("ECMA_67", resourceCulture); + } + } + + internal static string EFS_Name { + get { + return ResourceManager.GetString("EFS_Name", resourceCulture); + } + } + + internal static string magic_at_0_X3_equals_1_expected_2_or_3 { + get { + return ResourceManager.GetString("magic_at_0_X3_equals_1_expected_2_or_3", resourceCulture); + } + } + + internal static string magic_at_0_equals_1_expected_2_or_3 { + get { + return ResourceManager.GetString("magic_at_0_equals_1_expected_2_or_3", resourceCulture); + } + } + + internal static string SGI_extent_filesystem { + get { + return ResourceManager.GetString("SGI_extent_filesystem", resourceCulture); + } + } + + internal static string New_version { + get { + return ResourceManager.GetString("New_version", resourceCulture); + } + } + + internal static string Filesystem_size_0_basic_blocks { + get { + return ResourceManager.GetString("Filesystem_size_0_basic_blocks", resourceCulture); + } + } + + internal static string First_cylinder_group_starts_at_block_0 { + get { + return ResourceManager.GetString("First_cylinder_group_starts_at_block_0", resourceCulture); + } + } + + internal static string Cylinder_group_size_0_basic_blocks { + get { + return ResourceManager.GetString("Cylinder_group_size_0_basic_blocks", resourceCulture); + } + } + + internal static string _0_inodes_per_cylinder_group { + get { + return ResourceManager.GetString("_0_inodes_per_cylinder_group", resourceCulture); + } + } + + internal static string _0_heads_per_cylinder { + get { + return ResourceManager.GetString("_0_heads_per_cylinder", resourceCulture); + } + } + + internal static string _0_cylinder_groups { + get { + return ResourceManager.GetString("_0_cylinder_groups", resourceCulture); + } + } + + internal static string _0_bytes_on_bitmap { + get { + return ResourceManager.GetString("_0_bytes_on_bitmap", resourceCulture); + } + } + + internal static string _0_free_inodes { + get { + return ResourceManager.GetString("_0_free_inodes", resourceCulture); + } + } + + internal static string Bitmap_resides_at_block_0 { + get { + return ResourceManager.GetString("Bitmap_resides_at_block_0", resourceCulture); + } + } + + internal static string Replacement_superblock_resides_at_block_0 { + get { + return ResourceManager.GetString("Replacement_superblock_resides_at_block_0", resourceCulture); + } + } + + internal static string Last_inode_allocated_0 { + get { + return ResourceManager.GetString("Last_inode_allocated_0", resourceCulture); + } + } + + internal static string Checksum_0_X8 { + get { + return ResourceManager.GetString("Checksum_0_X8", resourceCulture); + } + } + + internal static string Volume_pack_0 { + get { + return ResourceManager.GetString("Volume_pack_0", resourceCulture); + } + } + + internal static string exFAT_Name { + get { + return ResourceManager.GetString("exFAT_Name", resourceCulture); + } + } + + internal static string Microsoft_exFAT { + get { + return ResourceManager.GetString("Microsoft_exFAT", resourceCulture); + } + } + + internal static string Partition_offset_0 { + get { + return ResourceManager.GetString("Partition_offset_0", resourceCulture); + } + } + + internal static string Volume_has_0_sectors_of_1_bytes_each_for_a_total_of_2_bytes { + get { + return ResourceManager.GetString("Volume_has_0_sectors_of_1_bytes_each_for_a_total_of_2_bytes", resourceCulture); + } + } + + internal static string Volume_uses_clusters_of_0_sectors_1_bytes_each { + get { + return ResourceManager.GetString("Volume_uses_clusters_of_0_sectors_1_bytes_each", resourceCulture); + } + } + + internal static string First_FAT_starts_at_sector_0_and_runs_for_1_sectors { + get { + return ResourceManager.GetString("First_FAT_starts_at_sector_0_and_runs_for_1_sectors", resourceCulture); + } + } + + internal static string Volume_uses_0_FATs { + get { + return ResourceManager.GetString("Volume_uses_0_FATs", resourceCulture); + } + } + + internal static string Cluster_heap_starts_at_sector_0_contains_1_clusters_and_is_2_used { + get { + return ResourceManager.GetString("Cluster_heap_starts_at_sector_0_contains_1_clusters_and_is_2_used", resourceCulture); + } + } + + internal static string Root_directory_starts_at_cluster_0 { + get { + return ResourceManager.GetString("Root_directory_starts_at_cluster_0", resourceCulture); + } + } + + internal static string Filesystem_revision_is_0_1 { + get { + return ResourceManager.GetString("Filesystem_revision_is_0_1", resourceCulture); + } + } + + internal static string Volume_serial_number_0_X8 { + get { + return ResourceManager.GetString("Volume_serial_number_0_X8", resourceCulture); + } + } + + internal static string BIOS_drive_is_0 { + get { + return ResourceManager.GetString("BIOS_drive_is_0", resourceCulture); + } + } + + internal static string Second_FAT_is_in_use { + get { + return ResourceManager.GetString("Second_FAT_is_in_use", resourceCulture); + } + } + + internal static string Underlying_media_presented_errors { + get { + return ResourceManager.GetString("Underlying_media_presented_errors", resourceCulture); + } + } + + internal static string OEM_Parameters_0 { + get { + return ResourceManager.GetString("OEM_Parameters_0", resourceCulture); + } + } + + internal static string _0_bytes_in_erase_block { + get { + return ResourceManager.GetString("_0_bytes_in_erase_block", resourceCulture); + } + } + + internal static string _0_bytes_per_page { + get { + return ResourceManager.GetString("_0_bytes_per_page", resourceCulture); + } + } + + internal static string _0_spare_blocks { + get { + return ResourceManager.GetString("_0_spare_blocks", resourceCulture); + } + } + + internal static string _0_nanoseconds_random_access_time { + get { + return ResourceManager.GetString("_0_nanoseconds_random_access_time", resourceCulture); + } + } + + internal static string _0_nanoseconds_program_time { + get { + return ResourceManager.GetString("_0_nanoseconds_program_time", resourceCulture); + } + } + + internal static string _0_nanoseconds_read_cycle_time { + get { + return ResourceManager.GetString("_0_nanoseconds_read_cycle_time", resourceCulture); + } + } + + internal static string _0_nanoseconds_write_cycle_time { + get { + return ResourceManager.GetString("_0_nanoseconds_write_cycle_time", resourceCulture); + } + } + + internal static string Found_unknown_parameter_type_0 { + get { + return ResourceManager.GetString("Found_unknown_parameter_type_0", resourceCulture); + } + } + + internal static string ext2FS_Name_Linux_extended_Filesystem_2_3_and_4 { + get { + return ResourceManager.GetString("ext2FS_Name_Linux_extended_Filesystem_2_3_and_4", resourceCulture); + } + } + + internal static string ext2_old_filesystem { + get { + return ResourceManager.GetString("ext2_old_filesystem", resourceCulture); + } + } + + internal static string ext2_filesystem { + get { + return ResourceManager.GetString("ext2_filesystem", resourceCulture); + } + } + + internal static string ext3_filesystem { + get { + return ResourceManager.GetString("ext3_filesystem", resourceCulture); + } + } + + internal static string ext4_filesystem { + get { + return ResourceManager.GetString("ext4_filesystem", resourceCulture); + } + } + + internal static string Not_an_ext2_3_4_filesystem { + get { + return ResourceManager.GetString("Not_an_ext2_3_4_filesystem", resourceCulture); + } + } + + internal static string Unknown_OS_0 { + get { + return ResourceManager.GetString("Unknown_OS_0", resourceCulture); + } + } + + internal static string Volume_was_created_on_0_for_1 { + get { + return ResourceManager.GetString("Volume_was_created_on_0_for_1", resourceCulture); + } + } + + internal static string Volume_was_created_for_0 { + get { + return ResourceManager.GetString("Volume_was_created_for_0", resourceCulture); + } + } + + internal static string Volume_has_0_blocks_of_1_bytes_for_a_total_of_2_bytes { + get { + return ResourceManager.GetString("Volume_has_0_blocks_of_1_bytes_for_a_total_of_2_bytes", resourceCulture); + } + } + + internal static string Last_mounted_on_0 { + get { + return ResourceManager.GetString("Last_mounted_on_0", resourceCulture); + } + } + + internal static string Volume_has_been_mounted_0_times_of_a_maximum_of_1_mounts_before_checking { + get { + return ResourceManager.GetString("Volume_has_been_mounted_0_times_of_a_maximum_of_1_mounts_before_checking", resourceCulture); + } + } + + internal static string Volume_has_been_mounted_0_times_with_no_maximum_no_of_mounts_before_checking { + get { + return ResourceManager.GetString("Volume_has_been_mounted_0_times_with_no_maximum_no_of_mounts_before_checking", resourceCulture); + } + } + + internal static string Last_mounted_at_0 { + get { + return ResourceManager.GetString("Last_mounted_at_0", resourceCulture); + } + } + + internal static string Last_used_mount_options_were_0 { + get { + return ResourceManager.GetString("Last_used_mount_options_were_0", resourceCulture); + } + } + + internal static string Volume_has_never_been_mounted { + get { + return ResourceManager.GetString("Volume_has_never_been_mounted", resourceCulture); + } + } + + internal static string Volume_can_be_mounted_0_times_before_checking { + get { + return ResourceManager.GetString("Volume_can_be_mounted_0_times_before_checking", resourceCulture); + } + } + + internal static string Volume_has_no_maximum_no_of_mounts_before_checking { + get { + return ResourceManager.GetString("Volume_has_no_maximum_no_of_mounts_before_checking", resourceCulture); + } + } + + internal static string Last_checked_on_0_should_check_every_1_seconds { + get { + return ResourceManager.GetString("Last_checked_on_0_should_check_every_1_seconds", resourceCulture); + } + } + + internal static string Last_checked_on_0 { + get { + return ResourceManager.GetString("Last_checked_on_0", resourceCulture); + } + } + + internal static string Volume_has_never_been_checked_should_check_every_0_ { + get { + return ResourceManager.GetString("Volume_has_never_been_checked_should_check_every_0_", resourceCulture); + } + } + + internal static string Volume_has_never_been_checked { + get { + return ResourceManager.GetString("Volume_has_never_been_checked", resourceCulture); + } + } + + internal static string Last_written_on_0 { + get { + return ResourceManager.GetString("Last_written_on_0", resourceCulture); + } + } + + internal static string Volume_is_recovering_orphan_files { + get { + return ResourceManager.GetString("Volume_is_recovering_orphan_files", resourceCulture); + } + } + + internal static string Volume_is_in_an_unknown_state_0 { + get { + return ResourceManager.GetString("Volume_is_in_an_unknown_state_0", resourceCulture); + } + } + + internal static string On_errors_filesystem_should_continue { + get { + return ResourceManager.GetString("On_errors_filesystem_should_continue", resourceCulture); + } + } + + internal static string On_errors_filesystem_should_remount_read_only { + get { + return ResourceManager.GetString("On_errors_filesystem_should_remount_read_only", resourceCulture); + } + } + + internal static string On_errors_filesystem_should_panic { + get { + return ResourceManager.GetString("On_errors_filesystem_should_panic", resourceCulture); + } + } + + internal static string On_errors_filesystem_will_do_an_unknown_thing_0 { + get { + return ResourceManager.GetString("On_errors_filesystem_will_do_an_unknown_thing_0", resourceCulture); + } + } + + internal static string Filesystem_revision_0_1 { + get { + return ResourceManager.GetString("Filesystem_revision_0_1", resourceCulture); + } + } + + internal static string Volume_UUID_0 { + get { + return ResourceManager.GetString("Volume_UUID_0", resourceCulture); + } + } + + internal static string _0_KiB_has_been_written_on_volume { + get { + return ResourceManager.GetString("_0_KiB_has_been_written_on_volume", resourceCulture); + } + } + + internal static string _0_reserved_and_1_free_blocks { + get { + return ResourceManager.GetString("_0_reserved_and_1_free_blocks", resourceCulture); + } + } + + internal static string _0_inodes_with_1_free_inodes_2 { + get { + return ResourceManager.GetString("_0_inodes_with_1_free_inodes_2", resourceCulture); + } + } + + internal static string First_inode_is_0 { + get { + return ResourceManager.GetString("First_inode_is_0", resourceCulture); + } + } + + internal static string _0_bytes_per_fragment { + get { + return ResourceManager.GetString("_0_bytes_per_fragment", resourceCulture); + } + } + + internal static string _0_blocks_1_flags_and_2_inodes_per_group { + get { + return ResourceManager.GetString("_0_blocks_1_flags_and_2_inodes_per_group", resourceCulture); + } + } + + internal static string _0_is_first_data_block { + get { + return ResourceManager.GetString("_0_is_first_data_block", resourceCulture); + } + } + + internal static string Default_UID_0_GID_1 { + get { + return ResourceManager.GetString("Default_UID_0_GID_1", resourceCulture); + } + } + + internal static string Block_group_number_is_0 { + get { + return ResourceManager.GetString("Block_group_number_is_0", resourceCulture); + } + } + + internal static string Group_descriptor_size_is_0_bytes { + get { + return ResourceManager.GetString("Group_descriptor_size_is_0_bytes", resourceCulture); + } + } + + internal static string First_metablock_group_is_0 { + get { + return ResourceManager.GetString("First_metablock_group_is_0", resourceCulture); + } + } + + internal static string RAID_stride_0 { + get { + return ResourceManager.GetString("RAID_stride_0", resourceCulture); + } + } + + internal static string _0_blocks_on_all_data_disks { + get { + return ResourceManager.GetString("_0_blocks_on_all_data_disks", resourceCulture); + } + } + + internal static string _0_seconds_for_multi_mount_protection_wait_on_block_1 { + get { + return ResourceManager.GetString("_0_seconds_for_multi_mount_protection_wait_on_block_1", resourceCulture); + } + } + + internal static string _0_Flexible_block_group_size { + get { + return ResourceManager.GetString("_0_Flexible_block_group_size", resourceCulture); + } + } + + internal static string Hash_seed_0_1_2_3_version_4 { + get { + return ResourceManager.GetString("Hash_seed_0_1_2_3_version_4", resourceCulture); + } + } + + internal static string Journal_UUID_0 { + get { + return ResourceManager.GetString("Journal_UUID_0", resourceCulture); + } + } + + internal static string Journal_has_inode_0 { + get { + return ResourceManager.GetString("Journal_has_inode_0", resourceCulture); + } + } + + internal static string Journal_is_on_device_0 { + get { + return ResourceManager.GetString("Journal_is_on_device_0", resourceCulture); + } + } + + internal static string Journal_backup_type_0 { + get { + return ResourceManager.GetString("Journal_backup_type_0", resourceCulture); + } + } + + internal static string Last_orphaned_inode_is_0 { + get { + return ResourceManager.GetString("Last_orphaned_inode_is_0", resourceCulture); + } + } + + internal static string There_are_no_orphaned_inodes { + get { + return ResourceManager.GetString("There_are_no_orphaned_inodes", resourceCulture); + } + } + + internal static string Active_snapshot_has_ID_0_on_inode_1_with_2_blocks_reserved_list_starting_on_block_3 { + get { + return ResourceManager.GetString("Active_snapshot_has_ID_0_on_inode_1_with_2_blocks_reserved_list_starting_on_block" + + "_3", resourceCulture); + } + } + + internal static string _0_errors_registered { + get { + return ResourceManager.GetString("_0_errors_registered", resourceCulture); + } + } + + internal static string First_error_occurred_on_0_last_on_1 { + get { + return ResourceManager.GetString("First_error_occurred_on_0_last_on_1", resourceCulture); + } + } + + internal static string First_error_inode_is_0_last_is_1 { + get { + return ResourceManager.GetString("First_error_inode_is_0_last_is_1", resourceCulture); + } + } + + internal static string First_error_block_is_0_last_is_1 { + get { + return ResourceManager.GetString("First_error_block_is_0_last_is_1", resourceCulture); + } + } + + internal static string First_error_function_is_0_last_is_1 { + get { + return ResourceManager.GetString("First_error_function_is_0_last_is_1", resourceCulture); + } + } + + internal static string Flags_ellipsis { + get { + return ResourceManager.GetString("Flags_ellipsis", resourceCulture); + } + } + + internal static string Signed_directory_hash_is_in_use { + get { + return ResourceManager.GetString("Signed_directory_hash_is_in_use", resourceCulture); + } + } + + internal static string Unsigned_directory_hash_is_in_use { + get { + return ResourceManager.GetString("Unsigned_directory_hash_is_in_use", resourceCulture); + } + } + + internal static string Volume_is_testing_development_code { + get { + return ResourceManager.GetString("Volume_is_testing_development_code", resourceCulture); + } + } + + internal static string Unknown_set_flags_0 { + get { + return ResourceManager.GetString("Unknown_set_flags_0", resourceCulture); + } + } + + internal static string Default_mount_options { + get { + return ResourceManager.GetString("Default_mount_options", resourceCulture); + } + } + + internal static string debug_Enable_debugging_code { + get { + return ResourceManager.GetString("debug_Enable_debugging_code", resourceCulture); + } + } + + internal static string bsdgroups_Emulate_BSD_behaviour_when_creating_new_files { + get { + return ResourceManager.GetString("bsdgroups_Emulate_BSD_behaviour_when_creating_new_files", resourceCulture); + } + } + + internal static string user_xattr_Enable_user_specified_extended_attributes { + get { + return ResourceManager.GetString("user_xattr_Enable_user_specified_extended_attributes", resourceCulture); + } + } + + internal static string acl_Enable_POSIX_ACLs { + get { + return ResourceManager.GetString("acl_Enable_POSIX_ACLs", resourceCulture); + } + } + + internal static string uid16_Disable_32bit_UIDs_and_GIDs { + get { + return ResourceManager.GetString("uid16_Disable_32bit_UIDs_and_GIDs", resourceCulture); + } + } + + internal static string journal_data_Journal_data_and_metadata { + get { + return ResourceManager.GetString("journal_data_Journal_data_and_metadata", resourceCulture); + } + } + + internal static string journal_data_ordered_Write_data_before_journaling_metadata { + get { + return ResourceManager.GetString("journal_data_ordered_Write_data_before_journaling_metadata", resourceCulture); + } + } + + internal static string journal_data_writeback_Write_journal_before_data { + get { + return ResourceManager.GetString("journal_data_writeback_Write_journal_before_data", resourceCulture); + } + } + + internal static string Unknown_set_default_mount_options_0 { + get { + return ResourceManager.GetString("Unknown_set_default_mount_options_0", resourceCulture); + } + } + + internal static string Compatible_features { + get { + return ResourceManager.GetString("Compatible_features", resourceCulture); + } + } + + internal static string Pre_allocate_directories { + get { + return ResourceManager.GetString("Pre_allocate_directories", resourceCulture); + } + } + + internal static string imagic_inodes__ { + get { + return ResourceManager.GetString("imagic_inodes__", resourceCulture); + } + } + + internal static string Has_journal_ext3 { + get { + return ResourceManager.GetString("Has_journal_ext3", resourceCulture); + } + } + + internal static string Has_extended_attribute_blocks { + get { + return ResourceManager.GetString("Has_extended_attribute_blocks", resourceCulture); + } + } + + internal static string Has_online_filesystem_resize_reservations { + get { + return ResourceManager.GetString("Has_online_filesystem_resize_reservations", resourceCulture); + } + } + + internal static string Can_use_hashed_indexes_on_directories { + get { + return ResourceManager.GetString("Can_use_hashed_indexes_on_directories", resourceCulture); + } + } + + internal static string Unknown_compatible_features_0 { + get { + return ResourceManager.GetString("Unknown_compatible_features_0", resourceCulture); + } + } + + internal static string Compatible_features_if_read_only { + get { + return ResourceManager.GetString("Compatible_features_if_read_only", resourceCulture); + } + } + + internal static string Reduced_number_of_superblocks { + get { + return ResourceManager.GetString("Reduced_number_of_superblocks", resourceCulture); + } + } + + internal static string Can_have_files_bigger_than_2GiB { + get { + return ResourceManager.GetString("Can_have_files_bigger_than_2GiB", resourceCulture); + } + } + + internal static string Uses_B_Tree_for_directories { + get { + return ResourceManager.GetString("Uses_B_Tree_for_directories", resourceCulture); + } + } + + internal static string Can_have_files_bigger_than_2TiB_ext4 { + get { + return ResourceManager.GetString("Can_have_files_bigger_than_2TiB_ext4", resourceCulture); + } + } + + internal static string Group_descriptor_checksums_and_sparse_inode_table_ext4 { + get { + return ResourceManager.GetString("Group_descriptor_checksums_and_sparse_inode_table_ext4", resourceCulture); + } + } + + internal static string More_than_32000_directory_entries_ext4 { + get { + return ResourceManager.GetString("More_than_32000_directory_entries_ext4", resourceCulture); + } + } + + internal static string Supports_nanosecond_timestamps_and_creation_time_ext4 { + get { + return ResourceManager.GetString("Supports_nanosecond_timestamps_and_creation_time_ext4", resourceCulture); + } + } + + internal static string Unknown_read_only_compatible_features_0 { + get { + return ResourceManager.GetString("Unknown_read_only_compatible_features_0", resourceCulture); + } + } + + internal static string Incompatible_features { + get { + return ResourceManager.GetString("Incompatible_features", resourceCulture); + } + } + + internal static string Uses_compression { + get { + return ResourceManager.GetString("Uses_compression", resourceCulture); + } + } + + internal static string Filetype_in_directory_entries { + get { + return ResourceManager.GetString("Filetype_in_directory_entries", resourceCulture); + } + } + + internal static string Journal_needs_recovery_ext3 { + get { + return ResourceManager.GetString("Journal_needs_recovery_ext3", resourceCulture); + } + } + + internal static string Has_journal_on_another_device_ext3 { + get { + return ResourceManager.GetString("Has_journal_on_another_device_ext3", resourceCulture); + } + } + + internal static string Reduced_block_group_backups { + get { + return ResourceManager.GetString("Reduced_block_group_backups", resourceCulture); + } + } + + internal static string Volume_use_extents_ext4 { + get { + return ResourceManager.GetString("Volume_use_extents_ext4", resourceCulture); + } + } + + internal static string Supports_volumes_bigger_than_2_32_blocks_ext4 { + get { + return ResourceManager.GetString("Supports_volumes_bigger_than_2_32_blocks_ext4", resourceCulture); + } + } + + internal static string Multi_mount_protection_ext4 { + get { + return ResourceManager.GetString("Multi_mount_protection_ext4", resourceCulture); + } + } + + internal static string Flexible_block_group_metadata_location_ext4 { + get { + return ResourceManager.GetString("Flexible_block_group_metadata_location_ext4", resourceCulture); + } + } + + internal static string Extended_attributes_can_reside_in_inode_ext4 { + get { + return ResourceManager.GetString("Extended_attributes_can_reside_in_inode_ext4", resourceCulture); + } + } + + internal static string Data_can_reside_in_directory_entry_ext4 { + get { + return ResourceManager.GetString("Data_can_reside_in_directory_entry_ext4", resourceCulture); + } + } + + internal static string Unknown_incompatible_features_0 { + get { + return ResourceManager.GetString("Unknown_incompatible_features_0", resourceCulture); + } + } + + internal static string extFS_Name { + get { + return ResourceManager.GetString("extFS_Name", resourceCulture); + } + } + + internal static string ext_filesystem { + get { + return ResourceManager.GetString("ext_filesystem", resourceCulture); + } + } + + internal static string _0_zones_in_volume { + get { + return ResourceManager.GetString("_0_zones_in_volume", resourceCulture); + } + } + + internal static string _0_free_blocks_1_bytes { + get { + return ResourceManager.GetString("_0_free_blocks_1_bytes", resourceCulture); + } + } + + internal static string _0_inodes_in_volume_1_free_2 { + get { + return ResourceManager.GetString("_0_inodes_in_volume_1_free_2", resourceCulture); + } + } + + internal static string First_free_inode_is_0 { + get { + return ResourceManager.GetString("First_free_inode_is_0", resourceCulture); + } + } + + internal static string First_free_block_is_0 { + get { + return ResourceManager.GetString("First_free_block_is_0", resourceCulture); + } + } + + internal static string First_data_zone_is_0 { + get { + return ResourceManager.GetString("First_data_zone_is_0", resourceCulture); + } + } + + internal static string Log_zone_size_0 { + get { + return ResourceManager.GetString("Log_zone_size_0", resourceCulture); + } + } + + internal static string Max_zone_size_0 { + get { + return ResourceManager.GetString("Max_zone_size_0", resourceCulture); + } + } + + internal static string F2FS_Name { + get { + return ResourceManager.GetString("F2FS_Name", resourceCulture); + } + } + + internal static string F2FS_filesystem { + get { + return ResourceManager.GetString("F2FS_filesystem", resourceCulture); + } + } + + internal static string Version_0_1 { + get { + return ResourceManager.GetString("Version_0_1", resourceCulture); + } + } + + internal static string _0_sectors_1_bytes_per_block { + get { + return ResourceManager.GetString("_0_sectors_1_bytes_per_block", resourceCulture); + } + } + + internal static string _0_blocks_per_segment { + get { + return ResourceManager.GetString("_0_blocks_per_segment", resourceCulture); + } + } + + internal static string _0_segments_per_section { + get { + return ResourceManager.GetString("_0_segments_per_section", resourceCulture); + } + } + + internal static string _0_sections_per_zone { + get { + return ResourceManager.GetString("_0_sections_per_zone", resourceCulture); + } + } + + internal static string _0_sections { + get { + return ResourceManager.GetString("_0_sections", resourceCulture); + } + } + + internal static string _0_segments { + get { + return ResourceManager.GetString("_0_segments", resourceCulture); + } + } + + internal static string Root_directory_resides_on_inode_0 { + get { + return ResourceManager.GetString("Root_directory_resides_on_inode_0", resourceCulture); + } + } + + internal static string Volume_last_mounted_on_kernel_version_0 { + get { + return ResourceManager.GetString("Volume_last_mounted_on_kernel_version_0", resourceCulture); + } + } + + internal static string Volume_created_on_kernel_version_0 { + get { + return ResourceManager.GetString("Volume_created_on_kernel_version_0", resourceCulture); + } + } + + internal static string FFSPlugin_Name { + get { + return ResourceManager.GetString("FFSPlugin_Name", resourceCulture); + } + } + + internal static string Not_a_UFS_filesystem_I_shouldnt_have_arrived_here { + get { + return ResourceManager.GetString("Not_a_UFS_filesystem_I_shouldnt_have_arrived_here", resourceCulture); + } + } + + internal static string UFS_filesystem { + get { + return ResourceManager.GetString("UFS_filesystem", resourceCulture); + } + } + + internal static string Big_endian_UFS_filesystem { + get { + return ResourceManager.GetString("Big_endian_UFS_filesystem", resourceCulture); + } + } + + internal static string BorderWare_UFS_filesystem { + get { + return ResourceManager.GetString("BorderWare_UFS_filesystem", resourceCulture); + } + } + + internal static string Big_endian_BorderWare_UFS_filesystem { + get { + return ResourceManager.GetString("Big_endian_BorderWare_UFS_filesystem", resourceCulture); + } + } + + internal static string UFS2_filesystem { + get { + return ResourceManager.GetString("UFS2_filesystem", resourceCulture); + } + } + + internal static string Big_endian_UFS2_filesystem { + get { + return ResourceManager.GetString("Big_endian_UFS2_filesystem", resourceCulture); + } + } + + internal static string Incompletely_initialized_UFS_filesystem { + get { + return ResourceManager.GetString("Incompletely_initialized_UFS_filesystem", resourceCulture); + } + } + + internal static string BEWARE_Following_information_may_be_completely_wrong { + get { + return ResourceManager.GetString("BEWARE_Following_information_may_be_completely_wrong", resourceCulture); + } + } + + internal static string Incompletely_initialized_big_endian_UFS_filesystem { + get { + return ResourceManager.GetString("Incompletely_initialized_big_endian_UFS_filesystem", resourceCulture); + } + } + + internal static string There_are_a_lot_of_variants_of_UFS_using_overlapped_values_on_same_fields { + get { + return ResourceManager.GetString("There_are_a_lot_of_variants_of_UFS_using_overlapped_values_on_same_fields", resourceCulture); + } + } + + internal static string I_will_try_to_guess_which_one_it_is_but_unless_its_UFS2_I_may_be_surely_wrong { + get { + return ResourceManager.GetString("I_will_try_to_guess_which_one_it_is_but_unless_its_UFS2_I_may_be_surely_wrong", resourceCulture); + } + } + + internal static string Guessed_as_42BSD_FFS { + get { + return ResourceManager.GetString("Guessed_as_42BSD_FFS", resourceCulture); + } + } + + internal static string Guessed_as_43BSD_FFS { + get { + return ResourceManager.GetString("Guessed_as_43BSD_FFS", resourceCulture); + } + } + + internal static string Guessed_as_44BSD_FFS { + get { + return ResourceManager.GetString("Guessed_as_44BSD_FFS", resourceCulture); + } + } + + internal static string Guessed_as_SunOS_FFS { + get { + return ResourceManager.GetString("Guessed_as_SunOS_FFS", resourceCulture); + } + } + + internal static string Guessed_as_SunOS_x86_FFS { + get { + return ResourceManager.GetString("Guessed_as_SunOS_x86_FFS", resourceCulture); + } + } + + internal static string Guessed_as_UFS { + get { + return ResourceManager.GetString("Guessed_as_UFS", resourceCulture); + } + } + + internal static string Linked_list_of_filesystems_0 { + get { + return ResourceManager.GetString("Linked_list_of_filesystems_0", resourceCulture); + } + } + + internal static string Superblock_LBA_0 { + get { + return ResourceManager.GetString("Superblock_LBA_0", resourceCulture); + } + } + + internal static string Cylinder_block_LBA_0 { + get { + return ResourceManager.GetString("Cylinder_block_LBA_0", resourceCulture); + } + } + + internal static string inode_block_LBA_0 { + get { + return ResourceManager.GetString("inode_block_LBA_0", resourceCulture); + } + } + + internal static string First_data_block_LBA_0 { + get { + return ResourceManager.GetString("First_data_block_LBA_0", resourceCulture); + } + } + + internal static string Cylinder_group_offset_in_cylinder_0 { + get { + return ResourceManager.GetString("Cylinder_group_offset_in_cylinder_0", resourceCulture); + } + } + + internal static string Volume_last_written_on_0 { + get { + return ResourceManager.GetString("Volume_last_written_on_0", resourceCulture); + } + } + + internal static string _0_data_blocks_in_volume_1_bytes { + get { + return ResourceManager.GetString("_0_data_blocks_in_volume_1_bytes", resourceCulture); + } + } + + internal static string _0_cylinder_groups_in_volume { + get { + return ResourceManager.GetString("_0_cylinder_groups_in_volume", resourceCulture); + } + } + + internal static string _0_bytes_in_a_basic_block { + get { + return ResourceManager.GetString("_0_bytes_in_a_basic_block", resourceCulture); + } + } + + internal static string _0_bytes_in_a_frag_block { + get { + return ResourceManager.GetString("_0_bytes_in_a_frag_block", resourceCulture); + } + } + + internal static string _0_frags_in_a_block { + get { + return ResourceManager.GetString("_0_frags_in_a_block", resourceCulture); + } + } + + internal static string _0_of_blocks_must_be_free { + get { + return ResourceManager.GetString("_0_of_blocks_must_be_free", resourceCulture); + } + } + + internal static string _0_ms_for_optimal_next_block { + get { + return ResourceManager.GetString("_0_ms_for_optimal_next_block", resourceCulture); + } + } + + internal static string Disk_rotates_0_times_per_second_1_rpm { + get { + return ResourceManager.GetString("Disk_rotates_0_times_per_second_1_rpm", resourceCulture); + } + } + + internal static string _0_contiguous_blocks_at_maximum { + get { + return ResourceManager.GetString("_0_contiguous_blocks_at_maximum", resourceCulture); + } + } + + internal static string _0_blocks_per_cylinder_group_at_maximum { + get { + return ResourceManager.GetString("_0_blocks_per_cylinder_group_at_maximum", resourceCulture); + } + } + + internal static string Superblock_is_0_bytes { + get { + return ResourceManager.GetString("Superblock_is_0_bytes", resourceCulture); + } + } + + internal static string NINDIR_0 { + get { + return ResourceManager.GetString("NINDIR_0", resourceCulture); + } + } + + internal static string INOPB_0 { + get { + return ResourceManager.GetString("INOPB_0", resourceCulture); + } + } + + internal static string NSPF_0 { + get { + return ResourceManager.GetString("NSPF_0", resourceCulture); + } + } + + internal static string Filesystem_will_minimize_allocation_time { + get { + return ResourceManager.GetString("Filesystem_will_minimize_allocation_time", resourceCulture); + } + } + + internal static string Filesystem_will_minimize_volume_fragmentation { + get { + return ResourceManager.GetString("Filesystem_will_minimize_volume_fragmentation", resourceCulture); + } + } + + internal static string Unknown_optimization_value_0 { + get { + return ResourceManager.GetString("Unknown_optimization_value_0", resourceCulture); + } + } + + internal static string _0_sectors_track { + get { + return ResourceManager.GetString("_0_sectors_track", resourceCulture); + } + } + + internal static string Volume_state_on_0 { + get { + return ResourceManager.GetString("Volume_state_on_0", resourceCulture); + } + } + + internal static string Hardware_sector_interleave_0 { + get { + return ResourceManager.GetString("Hardware_sector_interleave_0", resourceCulture); + } + } + + internal static string Sector_zero_skew_0_track { + get { + return ResourceManager.GetString("Sector_zero_skew_0_track", resourceCulture); + } + } + + internal static string Volume_ID_0_X8_1_X8 { + get { + return ResourceManager.GetString("Volume_ID_0_X8_1_X8", resourceCulture); + } + } + + internal static string _0_µsec_for_head_switch { + get { + return ResourceManager.GetString("_0_µsec_for_head_switch", resourceCulture); + } + } + + internal static string _0_µsec_for_track_to_track_seek { + get { + return ResourceManager.GetString("_0_µsec_for_track_to_track_seek", resourceCulture); + } + } + + internal static string Cylinder_group_summary_LBA_0 { + get { + return ResourceManager.GetString("Cylinder_group_summary_LBA_0", resourceCulture); + } + } + + internal static string _0_bytes_in_cylinder_group_summary { + get { + return ResourceManager.GetString("_0_bytes_in_cylinder_group_summary", resourceCulture); + } + } + + internal static string _0_bytes_in_cylinder_group { + get { + return ResourceManager.GetString("_0_bytes_in_cylinder_group", resourceCulture); + } + } + + internal static string _0_tracks_cylinder { + get { + return ResourceManager.GetString("_0_tracks_cylinder", resourceCulture); + } + } + + internal static string _0_sectors_cylinder { + get { + return ResourceManager.GetString("_0_sectors_cylinder", resourceCulture); + } + } + + internal static string _0_cylinders_in_volume { + get { + return ResourceManager.GetString("_0_cylinders_in_volume", resourceCulture); + } + } + + internal static string _0_cylinders_group { + get { + return ResourceManager.GetString("_0_cylinders_group", resourceCulture); + } + } + + internal static string _0_blocks_per_group { + get { + return ResourceManager.GetString("_0_blocks_per_group", resourceCulture); + } + } + + internal static string _0_directories { + get { + return ResourceManager.GetString("_0_directories", resourceCulture); + } + } + + internal static string _0_free_frags { + get { + return ResourceManager.GetString("_0_free_frags", resourceCulture); + } + } + + internal static string Volume_is_read_only { + get { + return ResourceManager.GetString("Volume_is_read_only", resourceCulture); + } + } + + internal static string Volume_flags_0_X2 { + get { + return ResourceManager.GetString("Volume_flags_0_X2", resourceCulture); + } + } + + internal static string Volume_last_mounted_at_0 { + get { + return ResourceManager.GetString("Volume_last_mounted_at_0", resourceCulture); + } + } + + internal static string Last_searched_cylinder_group_0 { + get { + return ResourceManager.GetString("Last_searched_cylinder_group_0", resourceCulture); + } + } + + internal static string _0_contiguously_allocated_directories { + get { + return ResourceManager.GetString("_0_contiguously_allocated_directories", resourceCulture); + } + } + + internal static string Standard_superblock_LBA_0 { + get { + return ResourceManager.GetString("Standard_superblock_LBA_0", resourceCulture); + } + } + + internal static string _0_blocks_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_1_bytes", resourceCulture); + } + } + + internal static string _0_data_blocks_1_bytes { + get { + return ResourceManager.GetString("_0_data_blocks_1_bytes", resourceCulture); + } + } + + internal static string Cylinder_group_summary_area_LBA_0 { + get { + return ResourceManager.GetString("Cylinder_group_summary_area_LBA_0", resourceCulture); + } + } + + internal static string _0_blocks_pending_of_being_freed { + get { + return ResourceManager.GetString("_0_blocks_pending_of_being_freed", resourceCulture); + } + } + + internal static string _0_inodes_pending_of_being_freed { + get { + return ResourceManager.GetString("_0_inodes_pending_of_being_freed", resourceCulture); + } + } + + internal static string _0_blocks_on_cluster_summary_array { + get { + return ResourceManager.GetString("_0_blocks_on_cluster_summary_array", resourceCulture); + } + } + + internal static string Maximum_length_of_a_symbolic_link_0 { + get { + return ResourceManager.GetString("Maximum_length_of_a_symbolic_link_0", resourceCulture); + } + } + + internal static string A_file_can_be_0_bytes_at_max { + get { + return ResourceManager.GetString("A_file_can_be_0_bytes_at_max", resourceCulture); + } + } + + internal static string _0_rotational_positions { + get { + return ResourceManager.GetString("_0_rotational_positions", resourceCulture); + } + } + + internal static string _0_blocks_per_rotation { + get { + return ResourceManager.GetString("_0_blocks_per_rotation", resourceCulture); + } + } + + internal static string Fossil_Name { + get { + return ResourceManager.GetString("Fossil_Name", resourceCulture); + } + } + + internal static string magic_at_0_expected_1 { + get { + return ResourceManager.GetString("magic_at_0_expected_1", resourceCulture); + } + } + + internal static string Fossil_filesystem { + get { + return ResourceManager.GetString("Fossil_filesystem", resourceCulture); + } + } + + internal static string Filesystem_version_0 { + get { + return ResourceManager.GetString("Filesystem_version_0", resourceCulture); + } + } + + internal static string Superblock_resides_in_block_0 { + get { + return ResourceManager.GetString("Superblock_resides_in_block_0", resourceCulture); + } + } + + internal static string Labels_resides_in_block_0 { + get { + return ResourceManager.GetString("Labels_resides_in_block_0", resourceCulture); + } + } + + internal static string Data_starts_at_block_0 { + get { + return ResourceManager.GetString("Data_starts_at_block_0", resourceCulture); + } + } + + internal static string magic_0_expected_1 { + get { + return ResourceManager.GetString("magic_0_expected_1", resourceCulture); + } + } + + internal static string Epoch_low_0 { + get { + return ResourceManager.GetString("Epoch_low_0", resourceCulture); + } + } + + internal static string Epoch_high_0 { + get { + return ResourceManager.GetString("Epoch_high_0", resourceCulture); + } + } + + internal static string Next_QID_0 { + get { + return ResourceManager.GetString("Next_QID_0", resourceCulture); + } + } + + internal static string Active_root_block_0 { + get { + return ResourceManager.GetString("Active_root_block_0", resourceCulture); + } + } + + internal static string Next_root_block_0 { + get { + return ResourceManager.GetString("Next_root_block_0", resourceCulture); + } + } + + internal static string Current_root_block_0 { + get { + return ResourceManager.GetString("Current_root_block_0", resourceCulture); + } + } + + internal static string HAMMER_Name { + get { + return ResourceManager.GetString("HAMMER_Name", resourceCulture); + } + } + + internal static string HAMMER_filesystem { + get { + return ResourceManager.GetString("HAMMER_filesystem", resourceCulture); + } + } + + internal static string Volume_0_of_1_on_this_filesystem { + get { + return ResourceManager.GetString("Volume_0_of_1_on_this_filesystem", resourceCulture); + } + } + + internal static string Volume_serial_0 { + get { + return ResourceManager.GetString("Volume_serial_0", resourceCulture); + } + } + + internal static string Boot_area_starts_at_0 { + get { + return ResourceManager.GetString("Boot_area_starts_at_0", resourceCulture); + } + } + + internal static string Memory_log_starts_at_0 { + get { + return ResourceManager.GetString("Memory_log_starts_at_0", resourceCulture); + } + } + + internal static string First_volume_buffer_starts_at_0 { + get { + return ResourceManager.GetString("First_volume_buffer_starts_at_0", resourceCulture); + } + } + + internal static string Volume_ends_at_0 { + get { + return ResourceManager.GetString("Volume_ends_at_0", resourceCulture); + } + } + + internal static string Filesystem_contains_0_big_blocks_1_bytes { + get { + return ResourceManager.GetString("Filesystem_contains_0_big_blocks_1_bytes", resourceCulture); + } + } + + internal static string Filesystem_has_0_big_blocks_free_1_bytes { + get { + return ResourceManager.GetString("Filesystem_has_0_big_blocks_free_1_bytes", resourceCulture); + } + } + + internal static string Filesystem_has_0_inodes_used { + get { + return ResourceManager.GetString("Filesystem_has_0_inodes_used", resourceCulture); + } + } + + internal static string HPFS_Name { + get { + return ResourceManager.GetString("HPFS_Name", resourceCulture); + } + } + + internal static string This_may_not_be_HPFS_following_information_may_be_not_correct { + get { + return ResourceManager.GetString("This_may_not_be_HPFS_following_information_may_be_not_correct", resourceCulture); + } + } + + internal static string File_system_type_0_Should_be_HPFS { + get { + return ResourceManager.GetString("File_system_type_0_Should_be_HPFS", resourceCulture); + } + } + + internal static string Superblock_magic1_0_Should_be_0xF995E849 { + get { + return ResourceManager.GetString("Superblock_magic1_0_Should_be_0xF995E849", resourceCulture); + } + } + + internal static string Superblock_magic2_0_Should_be_0xFA53E9C5 { + get { + return ResourceManager.GetString("Superblock_magic2_0_Should_be_0xFA53E9C5", resourceCulture); + } + } + + internal static string Spareblock_magic1_0_Should_be_0xF9911849 { + get { + return ResourceManager.GetString("Spareblock_magic1_0_Should_be_0xF9911849", resourceCulture); + } + } + + internal static string Spareblock_magic2_0_Should_be_0xFA5229C5 { + get { + return ResourceManager.GetString("Spareblock_magic2_0_Should_be_0xFA5229C5", resourceCulture); + } + } + + internal static string NT_Flags_0 { + get { + return ResourceManager.GetString("NT_Flags_0", resourceCulture); + } + } + + internal static string Signature_0 { + get { + return ResourceManager.GetString("Signature_0", resourceCulture); + } + } + + internal static string HPFS_version_0 { + get { + return ResourceManager.GetString("HPFS_version_0", resourceCulture); + } + } + + internal static string Functional_version_0 { + get { + return ResourceManager.GetString("Functional_version_0", resourceCulture); + } + } + + internal static string Sector_of_root_directory_FNode_0 { + get { + return ResourceManager.GetString("Sector_of_root_directory_FNode_0", resourceCulture); + } + } + + internal static string _0_sectors_are_marked_bad { + get { + return ResourceManager.GetString("_0_sectors_are_marked_bad", resourceCulture); + } + } + + internal static string Sector_of_free_space_bitmaps_0 { + get { + return ResourceManager.GetString("Sector_of_free_space_bitmaps_0", resourceCulture); + } + } + + internal static string Sector_of_bad_blocks_list_0 { + get { + return ResourceManager.GetString("Sector_of_bad_blocks_list_0", resourceCulture); + } + } + + internal static string Date_of_last_integrity_check_0 { + get { + return ResourceManager.GetString("Date_of_last_integrity_check_0", resourceCulture); + } + } + + internal static string Filesystem_integrity_has_never_been_checked { + get { + return ResourceManager.GetString("Filesystem_integrity_has_never_been_checked", resourceCulture); + } + } + + internal static string Date_of_last_optimization_0 { + get { + return ResourceManager.GetString("Date_of_last_optimization_0", resourceCulture); + } + } + + internal static string Filesystem_has_never_been_optimized { + get { + return ResourceManager.GetString("Filesystem_has_never_been_optimized", resourceCulture); + } + } + + internal static string Directory_band_has_0_sectors { + get { + return ResourceManager.GetString("Directory_band_has_0_sectors", resourceCulture); + } + } + + internal static string Directory_band_starts_at_sector_0 { + get { + return ResourceManager.GetString("Directory_band_starts_at_sector_0", resourceCulture); + } + } + + internal static string Directory_band_ends_at_sector_0 { + get { + return ResourceManager.GetString("Directory_band_ends_at_sector_0", resourceCulture); + } + } + + internal static string Sector_of_directory_band_bitmap_0 { + get { + return ResourceManager.GetString("Sector_of_directory_band_bitmap_0", resourceCulture); + } + } + + internal static string Sector_of_ACL_directory_0 { + get { + return ResourceManager.GetString("Sector_of_ACL_directory_0", resourceCulture); + } + } + + internal static string Sector_of_Hotfix_directory_0 { + get { + return ResourceManager.GetString("Sector_of_Hotfix_directory_0", resourceCulture); + } + } + + internal static string _0_used_Hotfix_entries { + get { + return ResourceManager.GetString("_0_used_Hotfix_entries", resourceCulture); + } + } + + internal static string _0_total_Hotfix_entries { + get { + return ResourceManager.GetString("_0_total_Hotfix_entries", resourceCulture); + } + } + + internal static string _0_free_spare_DNodes { + get { + return ResourceManager.GetString("_0_free_spare_DNodes", resourceCulture); + } + } + + internal static string _0_total_spare_DNodes { + get { + return ResourceManager.GetString("_0_total_spare_DNodes", resourceCulture); + } + } + + internal static string Sector_of_codepage_directory_0 { + get { + return ResourceManager.GetString("Sector_of_codepage_directory_0", resourceCulture); + } + } + + internal static string _0_codepages_used_in_the_volume { + get { + return ResourceManager.GetString("_0_codepages_used_in_the_volume", resourceCulture); + } + } + + internal static string SuperBlock_CRC32_0 { + get { + return ResourceManager.GetString("SuperBlock_CRC32_0", resourceCulture); + } + } + + internal static string SpareBlock_CRC32_0 { + get { + return ResourceManager.GetString("SpareBlock_CRC32_0", resourceCulture); + } + } + + internal static string Flags { + get { + return ResourceManager.GetString("Flags", resourceCulture); + } + } + + internal static string Filesystem_is_dirty { + get { + return ResourceManager.GetString("Filesystem_is_dirty", resourceCulture); + } + } + + internal static string Filesystem_is_clean { + get { + return ResourceManager.GetString("Filesystem_is_clean", resourceCulture); + } + } + + internal static string Spare_directory_blocks_are_in_use { + get { + return ResourceManager.GetString("Spare_directory_blocks_are_in_use", resourceCulture); + } + } + + internal static string Hotfixes_are_in_use { + get { + return ResourceManager.GetString("Hotfixes_are_in_use", resourceCulture); + } + } + + internal static string Disk_contains_bad_sectors { + get { + return ResourceManager.GetString("Disk_contains_bad_sectors", resourceCulture); + } + } + + internal static string Disk_has_a_bad_bitmap { + get { + return ResourceManager.GetString("Disk_has_a_bad_bitmap", resourceCulture); + } + } + + internal static string Filesystem_was_formatted_fast { + get { + return ResourceManager.GetString("Filesystem_was_formatted_fast", resourceCulture); + } + } + + internal static string Unknown_flag_0x40_on_flags1_is_active { + get { + return ResourceManager.GetString("Unknown_flag_0x40_on_flags1_is_active", resourceCulture); + } + } + + internal static string Filesystem_has_been_mounted_by_an_old_IFS { + get { + return ResourceManager.GetString("Filesystem_has_been_mounted_by_an_old_IFS", resourceCulture); + } + } + + internal static string Install_DASD_limits { + get { + return ResourceManager.GetString("Install_DASD_limits", resourceCulture); + } + } + + internal static string Resync_DASD_limits { + get { + return ResourceManager.GetString("Resync_DASD_limits", resourceCulture); + } + } + + internal static string DASD_limits_are_operational { + get { + return ResourceManager.GetString("DASD_limits_are_operational", resourceCulture); + } + } + + internal static string Multimedia_is_active { + get { + return ResourceManager.GetString("Multimedia_is_active", resourceCulture); + } + } + + internal static string DCE_ACLs_are_active { + get { + return ResourceManager.GetString("DCE_ACLs_are_active", resourceCulture); + } + } + + internal static string DASD_limits_are_dirty { + get { + return ResourceManager.GetString("DASD_limits_are_dirty", resourceCulture); + } + } + + internal static string Unknown_flag_0x40_on_flags2_is_active { + get { + return ResourceManager.GetString("Unknown_flag_0x40_on_flags2_is_active", resourceCulture); + } + } + + internal static string Unknown_flag_0x80_on_flags2_is_active { + get { + return ResourceManager.GetString("Unknown_flag_0x80_on_flags2_is_active", resourceCulture); + } + } + + internal static string JFS_Name { + get { + return ResourceManager.GetString("JFS_Name", resourceCulture); + } + } + + internal static string JFS_filesystem { + get { + return ResourceManager.GetString("JFS_filesystem", resourceCulture); + } + } + + internal static string _0_blocks_of_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_of_1_bytes", resourceCulture); + } + } + + internal static string _0_blocks_per_allocation_group { + get { + return ResourceManager.GetString("_0_blocks_per_allocation_group", resourceCulture); + } + } + + internal static string Volume_uses_Unicode_for_directory_entries { + get { + return ResourceManager.GetString("Volume_uses_Unicode_for_directory_entries", resourceCulture); + } + } + + internal static string Volume_remounts_read_only_on_error { + get { + return ResourceManager.GetString("Volume_remounts_read_only_on_error", resourceCulture); + } + } + + internal static string Volume_continues_on_error { + get { + return ResourceManager.GetString("Volume_continues_on_error", resourceCulture); + } + } + + internal static string Volume_panics_on_error { + get { + return ResourceManager.GetString("Volume_panics_on_error", resourceCulture); + } + } + + internal static string Volume_has_user_quotas_enabled { + get { + return ResourceManager.GetString("Volume_has_user_quotas_enabled", resourceCulture); + } + } + + internal static string Volume_has_group_quotas_enabled { + get { + return ResourceManager.GetString("Volume_has_group_quotas_enabled", resourceCulture); + } + } + + internal static string Volume_is_not_using_any_journal { + get { + return ResourceManager.GetString("Volume_is_not_using_any_journal", resourceCulture); + } + } + + internal static string Volume_sends_TRIM_UNMAP_commands_to_underlying_device { + get { + return ResourceManager.GetString("Volume_sends_TRIM_UNMAP_commands_to_underlying_device", resourceCulture); + } + } + + internal static string Volume_commits_in_groups_of_1 { + get { + return ResourceManager.GetString("Volume_commits_in_groups_of_1", resourceCulture); + } + } + + internal static string Volume_commits_lazy { + get { + return ResourceManager.GetString("Volume_commits_lazy", resourceCulture); + } + } + + internal static string Volume_does_not_commit_to_log { + get { + return ResourceManager.GetString("Volume_does_not_commit_to_log", resourceCulture); + } + } + + internal static string Volume_has_log_within_itself { + get { + return ResourceManager.GetString("Volume_has_log_within_itself", resourceCulture); + } + } + + internal static string Volume_has_log_within_itself_and_is_moving_it_out { + get { + return ResourceManager.GetString("Volume_has_log_within_itself_and_is_moving_it_out", resourceCulture); + } + } + + internal static string Volume_supports_sparse_files { + get { + return ResourceManager.GetString("Volume_supports_sparse_files", resourceCulture); + } + } + + internal static string Volume_has_bad_current_secondary_ait { + get { + return ResourceManager.GetString("Volume_has_bad_current_secondary_ait", resourceCulture); + } + } + + internal static string Volume_has_DASD_limits_enabled { + get { + return ResourceManager.GetString("Volume_has_DASD_limits_enabled", resourceCulture); + } + } + + internal static string Volume_primes_DASD_on_boot { + get { + return ResourceManager.GetString("Volume_primes_DASD_on_boot", resourceCulture); + } + } + + internal static string Volume_is_in_a_big_endian_system { + get { + return ResourceManager.GetString("Volume_is_in_a_big_endian_system", resourceCulture); + } + } + + internal static string Volume_has_persistent_indexes { + get { + return ResourceManager.GetString("Volume_has_persistent_indexes", resourceCulture); + } + } + + internal static string Volume_supports_Linux { + get { + return ResourceManager.GetString("Volume_supports_Linux", resourceCulture); + } + } + + internal static string Volume_supports_DCE_DFS_LFS { + get { + return ResourceManager.GetString("Volume_supports_DCE_DFS_LFS", resourceCulture); + } + } + + internal static string Volume_supports_OS2_and_is_case_insensitive { + get { + return ResourceManager.GetString("Volume_supports_OS2_and_is_case_insensitive", resourceCulture); + } + } + + internal static string Volume_supports_AIX { + get { + return ResourceManager.GetString("Volume_supports_AIX", resourceCulture); + } + } + + internal static string Volume_was_last_updated_on_0_ { + get { + return ResourceManager.GetString("Volume_was_last_updated_on_0_", resourceCulture); + } + } + + internal static string LIF_Name { + get { + return ResourceManager.GetString("LIF_Name", resourceCulture); + } + } + + internal static string HP_Logical_Interchange_Format { + get { + return ResourceManager.GetString("HP_Logical_Interchange_Format", resourceCulture); + } + } + + internal static string Directory_starts_at_cluster_0 { + get { + return ResourceManager.GetString("Directory_starts_at_cluster_0", resourceCulture); + } + } + + internal static string LIF_identifier_0 { + get { + return ResourceManager.GetString("LIF_identifier_0", resourceCulture); + } + } + + internal static string Directory_size_0_clusters { + get { + return ResourceManager.GetString("Directory_size_0_clusters", resourceCulture); + } + } + + internal static string LIF_version_0 { + get { + return ResourceManager.GetString("LIF_version_0", resourceCulture); + } + } + + internal static string _0_tracks { + get { + return ResourceManager.GetString("_0_tracks", resourceCulture); + } + } + + internal static string _0_sectors { + get { + return ResourceManager.GetString("_0_sectors", resourceCulture); + } + } + + internal static string Locus_Name { + get { + return ResourceManager.GetString("Locus_Name", resourceCulture); + } + } + + internal static string magic_at_1_equals_0 { + get { + return ResourceManager.GetString("magic_at_1_equals_0", resourceCulture); + } + } + + internal static string Locus_filesystem_old { + get { + return ResourceManager.GetString("Locus_filesystem_old", resourceCulture); + } + } + + internal static string Locus_filesystem { + get { + return ResourceManager.GetString("Locus_filesystem", resourceCulture); + } + } + + internal static string Superblock_last_modified_on_0 { + get { + return ResourceManager.GetString("Superblock_last_modified_on_0", resourceCulture); + } + } + + internal static string Volume_has_0_blocks_of_1_bytes_each_total_2_bytes { + get { + return ResourceManager.GetString("Volume_has_0_blocks_of_1_bytes_each_total_2_bytes", resourceCulture); + } + } + + internal static string _0_blocks_free_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_free_1_bytes", resourceCulture); + } + } + + internal static string Inode_list_uses_0_blocks { + get { + return ResourceManager.GetString("Inode_list_uses_0_blocks", resourceCulture); + } + } + + internal static string Next_free_inode_search_will_start_at_inode_0 { + get { + return ResourceManager.GetString("Next_free_inode_search_will_start_at_inode_0", resourceCulture); + } + } + + internal static string There_are_an_estimate_of_0_free_inodes_before_next_search_start { + get { + return ResourceManager.GetString("There_are_an_estimate_of_0_free_inodes_before_next_search_start", resourceCulture); + } + } + + internal static string Read_only_volume { + get { + return ResourceManager.GetString("Read_only_volume", resourceCulture); + } + } + + internal static string Clean_volume { + get { + return ResourceManager.GetString("Clean_volume", resourceCulture); + } + } + + internal static string Dirty_volume { + get { + return ResourceManager.GetString("Dirty_volume", resourceCulture); + } + } + + internal static string Removable_volume { + get { + return ResourceManager.GetString("Removable_volume", resourceCulture); + } + } + + internal static string This_is_the_primary_pack { + get { + return ResourceManager.GetString("This_is_the_primary_pack", resourceCulture); + } + } + + internal static string Replicated_volume { + get { + return ResourceManager.GetString("Replicated_volume", resourceCulture); + } + } + + internal static string User_replicated_volume { + get { + return ResourceManager.GetString("User_replicated_volume", resourceCulture); + } + } + + internal static string Backbone_volume { + get { + return ResourceManager.GetString("Backbone_volume", resourceCulture); + } + } + + internal static string NFS_volume { + get { + return ResourceManager.GetString("NFS_volume", resourceCulture); + } + } + + internal static string Volume_inhibits_automatic_fsck { + get { + return ResourceManager.GetString("Volume_inhibits_automatic_fsck", resourceCulture); + } + } + + internal static string Set_uid_set_gid_is_disabled { + get { + return ResourceManager.GetString("Set_uid_set_gid_is_disabled", resourceCulture); + } + } + + internal static string Volume_uses_synchronous_writes { + get { + return ResourceManager.GetString("Volume_uses_synchronous_writes", resourceCulture); + } + } + + internal static string Physical_volume_name_0 { + get { + return ResourceManager.GetString("Physical_volume_name_0", resourceCulture); + } + } + + internal static string Global_File_System_number_0 { + get { + return ResourceManager.GetString("Global_File_System_number_0", resourceCulture); + } + } + + internal static string Global_File_System_pack_number_0 { + get { + return ResourceManager.GetString("Global_File_System_pack_number_0", resourceCulture); + } + } + + internal static string MicroDOS_Name { + get { + return ResourceManager.GetString("MicroDOS_Name", resourceCulture); + } + } + + internal static string MicroDOS_filesystem { + get { + return ResourceManager.GetString("MicroDOS_filesystem", resourceCulture); + } + } + + internal static string Volume_has_0_blocks_1_bytes { + get { + return ResourceManager.GetString("Volume_has_0_blocks_1_bytes", resourceCulture); + } + } + + internal static string Volume_has_0_blocks_used_1_bytes { + get { + return ResourceManager.GetString("Volume_has_0_blocks_used_1_bytes", resourceCulture); + } + } + + internal static string Volume_contains_0_files { + get { + return ResourceManager.GetString("Volume_contains_0_files", resourceCulture); + } + } + + internal static string First_used_block_is_0 { + get { + return ResourceManager.GetString("First_used_block_is_0", resourceCulture); + } + } + + internal static string MinixFS_Name { + get { + return ResourceManager.GetString("MinixFS_Name", resourceCulture); + } + } + + internal static string Minix_v3_filesystem { + get { + return ResourceManager.GetString("Minix_v3_filesystem", resourceCulture); + } + } + + internal static string Minix_3_v2_filesystem { + get { + return ResourceManager.GetString("Minix_3_v2_filesystem", resourceCulture); + } + } + + internal static string Minix_3_v1_filesystem { + get { + return ResourceManager.GetString("Minix_3_v1_filesystem", resourceCulture); + } + } + + internal static string Minix_v1_filesystem { + get { + return ResourceManager.GetString("Minix_v1_filesystem", resourceCulture); + } + } + + internal static string Minix_v2_filesystem { + get { + return ResourceManager.GetString("Minix_v2_filesystem", resourceCulture); + } + } + + internal static string _0_chars_in_filename { + get { + return ResourceManager.GetString("_0_chars_in_filename", resourceCulture); + } + } + + internal static string _0_zones_in_volume_1_bytes { + get { + return ResourceManager.GetString("_0_zones_in_volume_1_bytes", resourceCulture); + } + } + + internal static string _0_bytes_block { + get { + return ResourceManager.GetString("_0_bytes_block", resourceCulture); + } + } + + internal static string _0_blocks_on_inode_map_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_on_inode_map_1_bytes", resourceCulture); + } + } + + internal static string _0_blocks_on_zone_map_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_on_zone_map_1_bytes", resourceCulture); + } + } + + internal static string First_data_zone_0 { + get { + return ResourceManager.GetString("First_data_zone_0", resourceCulture); + } + } + + internal static string _0_bytes_maximum_per_file { + get { + return ResourceManager.GetString("_0_bytes_maximum_per_file", resourceCulture); + } + } + + internal static string On_disk_filesystem_version_0 { + get { + return ResourceManager.GetString("On_disk_filesystem_version_0", resourceCulture); + } + } + + internal static string Filesystem_state_0 { + get { + return ResourceManager.GetString("Filesystem_state_0", resourceCulture); + } + } + + internal static string NILFS2_Name { + get { + return ResourceManager.GetString("NILFS2_Name", resourceCulture); + } + } + + internal static string NILFS2_filesystem { + get { + return ResourceManager.GetString("NILFS2_filesystem", resourceCulture); + } + } + + internal static string _0_bytes_in_volume { + get { + return ResourceManager.GetString("_0_bytes_in_volume", resourceCulture); + } + } + + internal static string Filesystem_created_on_Linux { + get { + return ResourceManager.GetString("Filesystem_created_on_Linux", resourceCulture); + } + } + + internal static string Creator_OS_code_0 { + get { + return ResourceManager.GetString("Creator_OS_code_0", resourceCulture); + } + } + + internal static string _0_bytes_per_inode { + get { + return ResourceManager.GetString("_0_bytes_per_inode", resourceCulture); + } + } + + internal static string Volume_last_mounted_on_0 { + get { + return ResourceManager.GetString("Volume_last_mounted_on_0", resourceCulture); + } + } + + internal static string NintendoPlugin_Name { + get { + return ResourceManager.GetString("NintendoPlugin_Name", resourceCulture); + } + } + + internal static string Nintendo_optical_filesystem { + get { + return ResourceManager.GetString("Nintendo_optical_filesystem", resourceCulture); + } + } + + internal static string Nintendo_Wii_Optical_Disc { + get { + return ResourceManager.GetString("Nintendo_Wii_Optical_Disc", resourceCulture); + } + } + + internal static string Nintendo_GameCube_Optical_Disc { + get { + return ResourceManager.GetString("Nintendo_GameCube_Optical_Disc", resourceCulture); + } + } + + internal static string Disc_ID_is_0 { + get { + return ResourceManager.GetString("Disc_ID_is_0", resourceCulture); + } + } + + internal static string Disc_is_a_0_disc { + get { + return ResourceManager.GetString("Disc_is_a_0_disc", resourceCulture); + } + } + + internal static string Disc_region_is_0 { + get { + return ResourceManager.GetString("Disc_region_is_0", resourceCulture); + } + } + + internal static string Published_by_0 { + get { + return ResourceManager.GetString("Published_by_0", resourceCulture); + } + } + + internal static string Disc_number_0_of_a_multi_disc_set { + get { + return ResourceManager.GetString("Disc_number_0_of_a_multi_disc_set", resourceCulture); + } + } + + internal static string Disc_is_prepared_for_audio_streaming { + get { + return ResourceManager.GetString("Disc_is_prepared_for_audio_streaming", resourceCulture); + } + } + + internal static string Audio_streaming_buffer_size_is_0_bytes { + get { + return ResourceManager.GetString("Audio_streaming_buffer_size_is_0_bytes", resourceCulture); + } + } + + internal static string Title_0 { + get { + return ResourceManager.GetString("Title_0", resourceCulture); + } + } + + internal static string First_0_partition_starts_at_sector_1 { + get { + return ResourceManager.GetString("First_0_partition_starts_at_sector_1", resourceCulture); + } + } + + internal static string Second_0_partition_starts_at_sector_1 { + get { + return ResourceManager.GetString("Second_0_partition_starts_at_sector_1", resourceCulture); + } + } + + internal static string Third_0_partition_starts_at_sector_1 { + get { + return ResourceManager.GetString("Third_0_partition_starts_at_sector_1", resourceCulture); + } + } + + internal static string Fourth_0_partition_starts_at_sector_1 { + get { + return ResourceManager.GetString("Fourth_0_partition_starts_at_sector_1", resourceCulture); + } + } + + internal static string Japan_age_rating_is_0 { + get { + return ResourceManager.GetString("Japan_age_rating_is_0", resourceCulture); + } + } + + internal static string ESRB_age_rating_is_0 { + get { + return ResourceManager.GetString("ESRB_age_rating_is_0", resourceCulture); + } + } + + internal static string German_age_rating_is_0 { + get { + return ResourceManager.GetString("German_age_rating_is_0", resourceCulture); + } + } + + internal static string PEGI_age_rating_is_0 { + get { + return ResourceManager.GetString("PEGI_age_rating_is_0", resourceCulture); + } + } + + internal static string Finland_age_rating_is_0 { + get { + return ResourceManager.GetString("Finland_age_rating_is_0", resourceCulture); + } + } + + internal static string Portugal_age_rating_is_0 { + get { + return ResourceManager.GetString("Portugal_age_rating_is_0", resourceCulture); + } + } + + internal static string UK_age_rating_is_0 { + get { + return ResourceManager.GetString("UK_age_rating_is_0", resourceCulture); + } + } + + internal static string Australia_age_rating_is_0 { + get { + return ResourceManager.GetString("Australia_age_rating_is_0", resourceCulture); + } + } + + internal static string Korea_age_rating_is_0 { + get { + return ResourceManager.GetString("Korea_age_rating_is_0", resourceCulture); + } + } + + internal static string FST_starts_at_0_and_has_1_bytes { + get { + return ResourceManager.GetString("FST_starts_at_0_and_has_1_bytes", resourceCulture); + } + } + + internal static string Commodore_64_Virtual_Console { + get { + return ResourceManager.GetString("Commodore_64_Virtual_Console", resourceCulture); + } + } + + internal static string Demo { + get { + return ResourceManager.GetString("Demo", resourceCulture); + } + } + + internal static string Neo_Geo_Virtual_Console { + get { + return ResourceManager.GetString("Neo_Geo_Virtual_Console", resourceCulture); + } + } + + internal static string NES_Virtual_Console { + get { + return ResourceManager.GetString("NES_Virtual_Console", resourceCulture); + } + } + + internal static string Gamecube { + get { + return ResourceManager.GetString("Gamecube", resourceCulture); + } + } + + internal static string Wii_channel { + get { + return ResourceManager.GetString("Wii_channel", resourceCulture); + } + } + + internal static string Super_Nintendo_Virtual_Console { + get { + return ResourceManager.GetString("Super_Nintendo_Virtual_Console", resourceCulture); + } + } + + internal static string Master_System_Virtual_Console { + get { + return ResourceManager.GetString("Master_System_Virtual_Console", resourceCulture); + } + } + + internal static string Megadrive_Virtual_Console { + get { + return ResourceManager.GetString("Megadrive_Virtual_Console", resourceCulture); + } + } + + internal static string Nintendo_64_Virtual_Console { + get { + return ResourceManager.GetString("Nintendo_64_Virtual_Console", resourceCulture); + } + } + + internal static string Promotional_or_TurboGrafx_Virtual_Console { + get { + return ResourceManager.GetString("Promotional_or_TurboGrafx_Virtual_Console", resourceCulture); + } + } + + internal static string TurboGrafx_CD_Virtual_Console { + get { + return ResourceManager.GetString("TurboGrafx_CD_Virtual_Console", resourceCulture); + } + } + + internal static string Wii { + get { + return ResourceManager.GetString("Wii", resourceCulture); + } + } + + internal static string Utility { + get { + return ResourceManager.GetString("Utility", resourceCulture); + } + } + + internal static string WiiWare { + get { + return ResourceManager.GetString("WiiWare", resourceCulture); + } + } + + internal static string MSX_Virtual_Console_or_WiiWare_demo { + get { + return ResourceManager.GetString("MSX_Virtual_Console_or_WiiWare_demo", resourceCulture); + } + } + + internal static string Diagnostic { + get { + return ResourceManager.GetString("Diagnostic", resourceCulture); + } + } + + internal static string Wii_Backup { + get { + return ResourceManager.GetString("Wii_Backup", resourceCulture); + } + } + + internal static string WiiFit { + get { + return ResourceManager.GetString("WiiFit", resourceCulture); + } + } + + internal static string unknown_type_0 { + get { + return ResourceManager.GetString("unknown_type_0", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_any_region { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_any_region", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Germany { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Germany", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_USA { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_USA", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_France { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_France", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Italy { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Italy", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Japan { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Japan", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Korea { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Korea", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_PAL { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_PAL", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Russia { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Russia", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Spain { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Spain", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Taiwan { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Taiwan", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_Australia { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_Australia", resourceCulture); + } + } + + internal static string NintendoPlugin_RegionCodeToString_unknown_region_code_0 { + get { + return ResourceManager.GetString("NintendoPlugin_RegionCodeToString_unknown_region_code_0", resourceCulture); + } + } + + internal static string Unknown_publisher_0 { + get { + return ResourceManager.GetString("Unknown_publisher_0", resourceCulture); + } + } + + internal static string data { + get { + return ResourceManager.GetString("data", resourceCulture); + } + } + + internal static string update { + get { + return ResourceManager.GetString("update", resourceCulture); + } + } + + internal static string channel { + get { + return ResourceManager.GetString("channel", resourceCulture); + } + } + + internal static string unknown_partition_type_0 { + get { + return ResourceManager.GetString("unknown_partition_type_0", resourceCulture); + } + } + + internal static string NTFS_Name { + get { + return ResourceManager.GetString("NTFS_Name", resourceCulture); + } + } + + internal static string _0_sectors_per_cluster_1_bytes { + get { + return ResourceManager.GetString("_0_sectors_per_cluster_1_bytes", resourceCulture); + } + } + + internal static string _0_hidden_sectors_before_filesystem { + get { + return ResourceManager.GetString("_0_hidden_sectors_before_filesystem", resourceCulture); + } + } + + internal static string BIOS_drive_number_0 { + get { + return ResourceManager.GetString("BIOS_drive_number_0", resourceCulture); + } + } + + internal static string Cluster_where_MFT_starts_0 { + get { + return ResourceManager.GetString("Cluster_where_MFT_starts_0", resourceCulture); + } + } + + internal static string Cluster_where_MFTMirr_starts_0 { + get { + return ResourceManager.GetString("Cluster_where_MFTMirr_starts_0", resourceCulture); + } + } + + internal static string _0_clusters_per_MFT_record_1_bytes { + get { + return ResourceManager.GetString("_0_clusters_per_MFT_record_1_bytes", resourceCulture); + } + } + + internal static string _0_bytes_per_MFT_record { + get { + return ResourceManager.GetString("_0_bytes_per_MFT_record", resourceCulture); + } + } + + internal static string _0_clusters_per_Index_block_1_bytes { + get { + return ResourceManager.GetString("_0_clusters_per_Index_block_1_bytes", resourceCulture); + } + } + + internal static string _0_bytes_per_Index_block { + get { + return ResourceManager.GetString("_0_bytes_per_Index_block", resourceCulture); + } + } + + internal static string Volume_serial_number_0_X16 { + get { + return ResourceManager.GetString("Volume_serial_number_0_X16", resourceCulture); + } + } + + internal static string ODS_Name { + get { + return ResourceManager.GetString("ODS_Name", resourceCulture); + } + } + + internal static string magic_0 { + get { + return ResourceManager.GetString("magic_0", resourceCulture); + } + } + + internal static string unaligned_magic_0 { + get { + return ResourceManager.GetString("unaligned_magic_0", resourceCulture); + } + } + + internal static string The_following_information_may_be_incorrect_for_this_volume { + get { + return ResourceManager.GetString("The_following_information_may_be_incorrect_for_this_volume", resourceCulture); + } + } + + internal static string This_volume_may_be_corrupted { + get { + return ResourceManager.GetString("This_volume_may_be_corrupted", resourceCulture); + } + } + + internal static string Volume_format_is_0 { + get { + return ResourceManager.GetString("Volume_format_is_0", resourceCulture); + } + } + + internal static string Volume_is_Level_0_revision_1 { + get { + return ResourceManager.GetString("Volume_is_Level_0_revision_1", resourceCulture); + } + } + + internal static string Lowest_structure_in_the_volume_is_Level_0_revision_1 { + get { + return ResourceManager.GetString("Lowest_structure_in_the_volume_is_Level_0_revision_1", resourceCulture); + } + } + + internal static string Highest_structure_in_the_volume_is_Level_0_revision_1 { + get { + return ResourceManager.GetString("Highest_structure_in_the_volume_is_Level_0_revision_1", resourceCulture); + } + } + + internal static string This_home_block_is_on_sector_0_VBN_1 { + get { + return ResourceManager.GetString("This_home_block_is_on_sector_0_VBN_1", resourceCulture); + } + } + + internal static string Secondary_home_block_is_on_sector_0_VBN_1 { + get { + return ResourceManager.GetString("Secondary_home_block_is_on_sector_0_VBN_1", resourceCulture); + } + } + + internal static string Volume_bitmap_starts_in_sector_0_VBN_1 { + get { + return ResourceManager.GetString("Volume_bitmap_starts_in_sector_0_VBN_1", resourceCulture); + } + } + + internal static string Volume_bitmap_runs_for_0_sectors_1_bytes { + get { + return ResourceManager.GetString("Volume_bitmap_runs_for_0_sectors_1_bytes", resourceCulture); + } + } + + internal static string Backup_INDEXF_SYS_is_in_sector_0_VBN_1 { + get { + return ResourceManager.GetString("Backup_INDEXF_SYS_is_in_sector_0_VBN_1", resourceCulture); + } + } + + internal static string _0_maximum_files_on_the_volume { + get { + return ResourceManager.GetString("_0_maximum_files_on_the_volume", resourceCulture); + } + } + + internal static string _0_reserved_files { + get { + return ResourceManager.GetString("_0_reserved_files", resourceCulture); + } + } + + internal static string Volume_is_0_of_1_in_set_2 { + get { + return ResourceManager.GetString("Volume_is_0_of_1_in_set_2", resourceCulture); + } + } + + internal static string Volume_owner_is_0_ID_1 { + get { + return ResourceManager.GetString("Volume_owner_is_0_ID_1", resourceCulture); + } + } + + internal static string Drive_serial_number_0 { + get { + return ResourceManager.GetString("Drive_serial_number_0", resourceCulture); + } + } + + internal static string Volume_was_created_on_0 { + get { + return ResourceManager.GetString("Volume_was_created_on_0", resourceCulture); + } + } + + internal static string Volume_was_last_modified_on_0 { + get { + return ResourceManager.GetString("Volume_was_last_modified_on_0", resourceCulture); + } + } + + internal static string Volume_copied_on_0 { + get { + return ResourceManager.GetString("Volume_copied_on_0", resourceCulture); + } + } + + internal static string Checksums_0_and_1 { + get { + return ResourceManager.GetString("Checksums_0_and_1", resourceCulture); + } + } + + internal static string Window_0 { + get { + return ResourceManager.GetString("Window_0", resourceCulture); + } + } + + internal static string Cached_directories_0 { + get { + return ResourceManager.GetString("Cached_directories_0", resourceCulture); + } + } + + internal static string Default_allocation_0_blocks { + get { + return ResourceManager.GetString("Default_allocation_0_blocks", resourceCulture); + } + } + + internal static string Readings_should_be_verified { + get { + return ResourceManager.GetString("Readings_should_be_verified", resourceCulture); + } + } + + internal static string Writings_should_be_verified { + get { + return ResourceManager.GetString("Writings_should_be_verified", resourceCulture); + } + } + + internal static string Files_should_be_erased_or_overwritten_when_deleted { + get { + return ResourceManager.GetString("Files_should_be_erased_or_overwritten_when_deleted", resourceCulture); + } + } + + internal static string Highwater_mark_is_to_be_disabled { + get { + return ResourceManager.GetString("Highwater_mark_is_to_be_disabled", resourceCulture); + } + } + + internal static string Classification_checks_are_enabled { + get { + return ResourceManager.GetString("Classification_checks_are_enabled", resourceCulture); + } + } + + internal static string Volume_permissions_r_read_w_write_c_create_d_delete { + get { + return ResourceManager.GetString("Volume_permissions_r_read_w_write_c_create_d_delete", resourceCulture); + } + } + + internal static string System_owner_group_world { + get { + return ResourceManager.GetString("System_owner_group_world", resourceCulture); + } + } + + internal static string Unknown_structures { + get { + return ResourceManager.GetString("Unknown_structures", resourceCulture); + } + } + + internal static string Security_mask_0 { + get { + return ResourceManager.GetString("Security_mask_0", resourceCulture); + } + } + + internal static string File_protection_0 { + get { + return ResourceManager.GetString("File_protection_0", resourceCulture); + } + } + + internal static string Record_protection_0 { + get { + return ResourceManager.GetString("Record_protection_0", resourceCulture); + } + } + + internal static string PCEnginePlugin_Name { + get { + return ResourceManager.GetString("PCEnginePlugin_Name", resourceCulture); + } + } + + internal static string PCFX_Name { + get { + return ResourceManager.GetString("PCFX_Name", resourceCulture); + } + } + + internal static string PC_FX_executable { + get { + return ResourceManager.GetString("PC_FX_executable", resourceCulture); + } + } + + internal static string Identifier_0 { + get { + return ResourceManager.GetString("Identifier_0", resourceCulture); + } + } + + internal static string Copyright_0 { + get { + return ResourceManager.GetString("Copyright_0", resourceCulture); + } + } + + internal static string Maker_ID_0 { + get { + return ResourceManager.GetString("Maker_ID_0", resourceCulture); + } + } + + internal static string Maker_name_0 { + get { + return ResourceManager.GetString("Maker_name_0", resourceCulture); + } + } + + internal static string Volume_number_0 { + get { + return ResourceManager.GetString("Volume_number_0", resourceCulture); + } + } + + internal static string Country_code_0 { + get { + return ResourceManager.GetString("Country_code_0", resourceCulture); + } + } + + internal static string Dated_0 { + get { + return ResourceManager.GetString("Dated_0", resourceCulture); + } + } + + internal static string Load_0_sectors_from_sector_1 { + get { + return ResourceManager.GetString("Load_0_sectors_from_sector_1", resourceCulture); + } + } + + internal static string Load_at_0_and_jump_to_1 { + get { + return ResourceManager.GetString("Load_at_0_and_jump_to_1", resourceCulture); + } + } + + internal static string PFS_Name { + get { + return ResourceManager.GetString("PFS_Name", resourceCulture); + } + } + + internal static string Professional_File_System_v1 { + get { + return ResourceManager.GetString("Professional_File_System_v1", resourceCulture); + } + } + + internal static string Professional_File_System_v2 { + get { + return ResourceManager.GetString("Professional_File_System_v2", resourceCulture); + } + } + + internal static string Professional_File_System_v3 { + get { + return ResourceManager.GetString("Professional_File_System_v3", resourceCulture); + } + } + + internal static string with_multi_user_support { + get { + return ResourceManager.GetString("with_multi_user_support", resourceCulture); + } + } + + internal static string Volume_has_0_free_sectors_of_1 { + get { + return ResourceManager.GetString("Volume_has_0_free_sectors_of_1", resourceCulture); + } + } + + internal static string Root_block_extension_resides_at_block_0 { + get { + return ResourceManager.GetString("Root_block_extension_resides_at_block_0", resourceCulture); + } + } + + internal static string ProDOSPlugin_Name { + get { + return ResourceManager.GetString("ProDOSPlugin_Name", resourceCulture); + } + } + + internal static string Datetime_field_year_0_month_1_day_2_hour_3_minute_4 { + get { + return ResourceManager.GetString("Datetime_field_year_0_month_1_day_2_hour_3_minute_4", resourceCulture); + } + } + + internal static string ProDOS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector { + get { + return ResourceManager.GetString("ProDOS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector", resourceCulture); + } + } + internal static string Warning_Detected_unknown_ProDOS_version_ProDOS_filesystem { get { return ResourceManager.GetString("Warning_Detected_unknown_ProDOS_version_ProDOS_filesystem", resourceCulture); } } - /// - /// Looks up a localized string similar to WARNING: Filesystem describes a {0} bytes/sector, while device describes a {1} bytes/sector. - /// + internal static string All_of_the_following_information_may_be_incorrect { + get { + return ResourceManager.GetString("All_of_the_following_information_may_be_incorrect", resourceCulture); + } + } + + internal static string ProDOS_version_one_used_to_create_this_volume { + get { + return ResourceManager.GetString("ProDOS_version_one_used_to_create_this_volume", resourceCulture); + } + } + + internal static string Unknown_ProDOS_version_with_field_0_used_to_create_this_volume { + get { + return ResourceManager.GetString("Unknown_ProDOS_version_with_field_0_used_to_create_this_volume", resourceCulture); + } + } + + internal static string ProDOS_version_one_at_least_required_for_reading_this_volume { + get { + return ResourceManager.GetString("ProDOS_version_one_at_least_required_for_reading_this_volume", resourceCulture); + } + } + + internal static string Unknown_ProDOS_version_with_field_0_is_at_least_required_for_reading_this_volume { + get { + return ResourceManager.GetString("Unknown_ProDOS_version_with_field_0_is_at_least_required_for_reading_this_volume", resourceCulture); + } + } + + internal static string Volume_name_is_0 { + get { + return ResourceManager.GetString("Volume_name_is_0", resourceCulture); + } + } + + internal static string _0_bytes_per_directory_entry { + get { + return ResourceManager.GetString("_0_bytes_per_directory_entry", resourceCulture); + } + } + + internal static string _0_entries_per_directory_block { + get { + return ResourceManager.GetString("_0_entries_per_directory_block", resourceCulture); + } + } + + internal static string _0_files_in_root_directory { + get { + return ResourceManager.GetString("_0_files_in_root_directory", resourceCulture); + } + } + + internal static string Bitmap_starts_at_block_0 { + get { + return ResourceManager.GetString("Bitmap_starts_at_block_0", resourceCulture); + } + } + + internal static string Volume_can_be_read { + get { + return ResourceManager.GetString("Volume_can_be_read", resourceCulture); + } + } + + internal static string Volume_can_be_written { + get { + return ResourceManager.GetString("Volume_can_be_written", resourceCulture); + } + } + + internal static string Volume_can_be_renamed { + get { + return ResourceManager.GetString("Volume_can_be_renamed", resourceCulture); + } + } + + internal static string Volume_can_be_destroyed { + get { + return ResourceManager.GetString("Volume_can_be_destroyed", resourceCulture); + } + } + + internal static string Volume_must_be_backed_up { + get { + return ResourceManager.GetString("Volume_must_be_backed_up", resourceCulture); + } + } + + internal static string Reserved_attributes_are_set_0 { + get { + return ResourceManager.GetString("Reserved_attributes_are_set_0", resourceCulture); + } + } + + internal static string QNX4_Name { + get { + return ResourceManager.GetString("QNX4_Name", resourceCulture); + } + } + + internal static string QNX4_filesystem { + get { + return ResourceManager.GetString("QNX4_filesystem", resourceCulture); + } + } + + internal static string Created_on_0 { + get { + return ResourceManager.GetString("Created_on_0", resourceCulture); + } + } + + internal static string QNX6_Name { + get { + return ResourceManager.GetString("QNX6_Name", resourceCulture); + } + } + + internal static string QNX6_Audi_filesystem { + get { + return ResourceManager.GetString("QNX6_Audi_filesystem", resourceCulture); + } + } + + internal static string Serial_0_X16 { + get { + return ResourceManager.GetString("Serial_0_X16", resourceCulture); + } + } + + internal static string _0_inodes_free_of_1 { + get { + return ResourceManager.GetString("_0_inodes_free_of_1", resourceCulture); + } + } + + internal static string _0_blocks_1_bytes_free_of_2_3_bytes { + get { + return ResourceManager.GetString("_0_blocks_1_bytes_free_of_2_3_bytes", resourceCulture); + } + } + + internal static string QNX6_filesystem { + get { + return ResourceManager.GetString("QNX6_filesystem", resourceCulture); + } + } + + internal static string Flags_0_X8 { + get { + return ResourceManager.GetString("Flags_0_X8", resourceCulture); + } + } + + internal static string Version1_0_X4 { + get { + return ResourceManager.GetString("Version1_0_X4", resourceCulture); + } + } + + internal static string Version2_0_X4 { + get { + return ResourceManager.GetString("Version2_0_X4", resourceCulture); + } + } + + internal static string RBF_Name { + get { + return ResourceManager.GetString("RBF_Name", resourceCulture); + } + } + + internal static string magic_at_0_equals_1_or_2_expected_3_or_4 { + get { + return ResourceManager.GetString("magic_at_0_equals_1_or_2_expected_3_or_4", resourceCulture); + } + } + + internal static string OS_9_Random_Block_File { + get { + return ResourceManager.GetString("OS_9_Random_Block_File", resourceCulture); + } + } + + internal static string Volume_ID_0_X8 { + get { + return ResourceManager.GetString("Volume_ID_0_X8", resourceCulture); + } + } + + internal static string _0_cylinders { + get { + return ResourceManager.GetString("_0_cylinders", resourceCulture); + } + } + + internal static string _0_blocks_in_cylinder_zero { + get { + return ResourceManager.GetString("_0_blocks_in_cylinder_zero", resourceCulture); + } + } + + internal static string _0_blocks_per_cylinder { + get { + return ResourceManager.GetString("_0_blocks_per_cylinder", resourceCulture); + } + } + + internal static string Disk_is_double_sided { + get { + return ResourceManager.GetString("Disk_is_double_sided", resourceCulture); + } + } + + internal static string Disk_is_single_sided { + get { + return ResourceManager.GetString("Disk_is_single_sided", resourceCulture); + } + } + + internal static string Disk_is_double_density { + get { + return ResourceManager.GetString("Disk_is_double_density", resourceCulture); + } + } + + internal static string Disk_is_single_density { + get { + return ResourceManager.GetString("Disk_is_single_density", resourceCulture); + } + } + + internal static string Disk_is_384_TPI { + get { + return ResourceManager.GetString("Disk_is_384_TPI", resourceCulture); + } + } + + internal static string Disk_is_192_TPI { + get { + return ResourceManager.GetString("Disk_is_192_TPI", resourceCulture); + } + } + + internal static string Disk_is_96_TPI_or_135_TPI { + get { + return ResourceManager.GetString("Disk_is_96_TPI_or_135_TPI", resourceCulture); + } + } + + internal static string Disk_is_48_TPI { + get { + return ResourceManager.GetString("Disk_is_48_TPI", resourceCulture); + } + } + + internal static string Allocation_bitmap_descriptor_starts_at_block_0 { + get { + return ResourceManager.GetString("Allocation_bitmap_descriptor_starts_at_block_0", resourceCulture); + } + } + + internal static string Debugger_descriptor_starts_at_block_0 { + get { + return ResourceManager.GetString("Debugger_descriptor_starts_at_block_0", resourceCulture); + } + } + + internal static string Boot_file_descriptor_starts_at_block_0 { + get { + return ResourceManager.GetString("Boot_file_descriptor_starts_at_block_0", resourceCulture); + } + } + + internal static string Root_directory_descriptor_starts_at_block_0 { + get { + return ResourceManager.GetString("Root_directory_descriptor_starts_at_block_0", resourceCulture); + } + } + + internal static string Disk_is_owned_by_group_0_user_1 { + get { + return ResourceManager.GetString("Disk_is_owned_by_group_0_user_1", resourceCulture); + } + } + + internal static string Volume_identification_block_was_last_written_on_0 { + get { + return ResourceManager.GetString("Volume_identification_block_was_last_written_on_0", resourceCulture); + } + } + + internal static string _0_bytes_in_allocation_bitmap { + get { + return ResourceManager.GetString("_0_bytes_in_allocation_bitmap", resourceCulture); + } + } + + internal static string Boot_file_starts_at_block_0_and_has_1_bytes { + get { + return ResourceManager.GetString("Boot_file_starts_at_block_0_and_has_1_bytes", resourceCulture); + } + } + + internal static string Disk_is_owned_by_user_0 { + get { + return ResourceManager.GetString("Disk_is_owned_by_user_0", resourceCulture); + } + } + + internal static string Volume_attributes_0 { + get { + return ResourceManager.GetString("Volume_attributes_0", resourceCulture); + } + } + + internal static string Path_descriptor_options_0 { + get { + return ResourceManager.GetString("Path_descriptor_options_0", resourceCulture); + } + } + + internal static string ReFS_Name { + get { + return ResourceManager.GetString("ReFS_Name", resourceCulture); + } + } + + internal static string Microsoft_Resilient_File_System { + get { + return ResourceManager.GetString("Microsoft_Resilient_File_System", resourceCulture); + } + } + + internal static string Volume_uses_0_bytes_per_sector { + get { + return ResourceManager.GetString("Volume_uses_0_bytes_per_sector", resourceCulture); + } + } + + internal static string Volume_uses_0_sectors_per_cluster_1_bytes { + get { + return ResourceManager.GetString("Volume_uses_0_sectors_per_cluster_1_bytes", resourceCulture); + } + } + + internal static string Volume_has_0_sectors_1_bytes { + get { + return ResourceManager.GetString("Volume_has_0_sectors_1_bytes", resourceCulture); + } + } + + internal static string Reiser_Name { + get { + return ResourceManager.GetString("Reiser_Name", resourceCulture); + } + } + + internal static string Reiser_3_5_filesystem { + get { + return ResourceManager.GetString("Reiser_3_5_filesystem", resourceCulture); + } + } + + internal static string Reiser_3_6_filesystem { + get { + return ResourceManager.GetString("Reiser_3_6_filesystem", resourceCulture); + } + } + + internal static string Reiser_Jr_filesystem { + get { + return ResourceManager.GetString("Reiser_Jr_filesystem", resourceCulture); + } + } + + internal static string Volume_has_0_blocks_with_1_blocks_free { + get { + return ResourceManager.GetString("Volume_has_0_blocks_with_1_blocks_free", resourceCulture); + } + } + + internal static string Root_directory_resides_on_block_0 { + get { + return ResourceManager.GetString("Root_directory_resides_on_block_0", resourceCulture); + } + } + + internal static string Volume_has_not_been_cleanly_umounted { + get { + return ResourceManager.GetString("Volume_has_not_been_cleanly_umounted", resourceCulture); + } + } + + internal static string Volume_last_checked_on_0 { + get { + return ResourceManager.GetString("Volume_last_checked_on_0", resourceCulture); + } + } + + internal static string Reiser4_Name { + get { + return ResourceManager.GetString("Reiser4_Name", resourceCulture); + } + } + + internal static string Reiser_4_filesystem { + get { + return ResourceManager.GetString("Reiser_4_filesystem", resourceCulture); + } + } + + internal static string Volume_disk_format_0 { + get { + return ResourceManager.GetString("Volume_disk_format_0", resourceCulture); + } + } + + internal static string RT11_Name { + get { + return ResourceManager.GetString("RT11_Name", resourceCulture); + } + } + + internal static string First_directory_segment_starts_at_block_0 { + get { + return ResourceManager.GetString("First_directory_segment_starts_at_block_0", resourceCulture); + } + } + + internal static string Volume_owner_is_0 { + get { + return ResourceManager.GetString("Volume_owner_is_0", resourceCulture); + } + } + + internal static string Checksum_0_calculated_1 { + get { + return ResourceManager.GetString("Checksum_0_calculated_1", resourceCulture); + } + } + + internal static string SFS_Name { + get { + return ResourceManager.GetString("SFS_Name", resourceCulture); + } + } + + internal static string SmartFileSystem { + get { + return ResourceManager.GetString("SmartFileSystem", resourceCulture); + } + } + + internal static string Volume_version_0 { + get { + return ResourceManager.GetString("Volume_version_0", resourceCulture); + } + } + + internal static string Volume_starts_on_device_byte_0_and_ends_on_byte_1 { + get { + return ResourceManager.GetString("Volume_starts_on_device_byte_0_and_ends_on_byte_1", resourceCulture); + } + } + + internal static string Admin_space_container_starts_in_block_0 { + get { + return ResourceManager.GetString("Admin_space_container_starts_in_block_0", resourceCulture); + } + } + + internal static string Root_object_container_starts_in_block_0 { + get { + return ResourceManager.GetString("Root_object_container_starts_in_block_0", resourceCulture); + } + } + + internal static string Root_node_of_the_extent_B_tree_resides_in_block_0 { + get { + return ResourceManager.GetString("Root_node_of_the_extent_B_tree_resides_in_block_0", resourceCulture); + } + } + + internal static string Root_node_of_the_object_B_tree_resides_in_block_0 { + get { + return ResourceManager.GetString("Root_node_of_the_object_B_tree_resides_in_block_0", resourceCulture); + } + } + + internal static string Volume_is_case_sensitive { + get { + return ResourceManager.GetString("Volume_is_case_sensitive", resourceCulture); + } + } + + internal static string Volume_moves_deleted_files_to_a_recycled_folder { + get { + return ResourceManager.GetString("Volume_moves_deleted_files_to_a_recycled_folder", resourceCulture); + } + } + + internal static string SolarFS_Name { + get { + return ResourceManager.GetString("SolarFS_Name", resourceCulture); + } + } + + internal static string Solar_OS_filesystem { + get { + return ResourceManager.GetString("Solar_OS_filesystem", resourceCulture); + } + } + internal static string WARNING_Filesystem_describes_a_0_bytes_sector_while_device_describes_a_1_bytes_sector { get { return ResourceManager.GetString("WARNING_Filesystem_describes_a_0_bytes_sector_while_device_describes_a_1_bytes_se" + @@ -10866,183 +6826,555 @@ namespace Aaru.Filesystems { } } - /// - /// Looks up a localized string similar to WARNING: Filesystem describes a {0} sectors volume, bigger than device ({1} sectors). - /// internal static string WARNING_Filesystem_describes_a_0_sectors_volume_bigger_than_device_1_sectors { get { return ResourceManager.GetString("WARNING_Filesystem_describes_a_0_sectors_volume_bigger_than_device_1_sectors", resourceCulture); } } - /// - /// Looks up a localized string similar to WARNING: Filesystem indicates {0} bytes/block while device indicates {1} bytes/block. - /// - internal static string WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block { + internal static string Squash_Name { get { - return ResourceManager.GetString("WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block", resourceCulture); + return ResourceManager.GetString("Squash_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Wii. - /// - internal static string Wii { + internal static string Squash_file_system { get { - return ResourceManager.GetString("Wii", resourceCulture); + return ResourceManager.GetString("Squash_file_system", resourceCulture); } } - /// - /// Looks up a localized string similar to Wii Backup. - /// - internal static string Wii_Backup { + internal static string Volume_version_0_1 { get { - return ResourceManager.GetString("Wii_Backup", resourceCulture); + return ResourceManager.GetString("Volume_version_0_1", resourceCulture); } } - /// - /// Looks up a localized string similar to Wii channel. - /// - internal static string Wii_channel { + internal static string Volume_has_0_bytes_per_block { get { - return ResourceManager.GetString("Wii_channel", resourceCulture); + return ResourceManager.GetString("Volume_has_0_bytes_per_block", resourceCulture); } } - /// - /// Looks up a localized string similar to WiiFit. - /// - internal static string WiiFit { + internal static string Volume_has_0_inodes { get { - return ResourceManager.GetString("WiiFit", resourceCulture); + return ResourceManager.GetString("Volume_has_0_inodes", resourceCulture); } } - /// - /// Looks up a localized string similar to WiiWare. - /// - internal static string WiiWare { + internal static string Volume_is_compressed_using_LZ4 { get { - return ResourceManager.GetString("WiiWare", resourceCulture); + return ResourceManager.GetString("Volume_is_compressed_using_LZ4", resourceCulture); } } - /// - /// Looks up a localized string similar to Window: {0}. - /// - internal static string Window_0 { + internal static string Volume_is_compressed_using_LZO { get { - return ResourceManager.GetString("Window_0", resourceCulture); + return ResourceManager.GetString("Volume_is_compressed_using_LZO", resourceCulture); } } - /// - /// Looks up a localized string similar to Windows NT (8.3 mixed case). - /// - internal static string Windows_NT_8_3_mixed_case { + internal static string Volume_is_compressed_using_LZMA { get { - return ResourceManager.GetString("Windows_NT_8_3_mixed_case", resourceCulture); + return ResourceManager.GetString("Volume_is_compressed_using_LZMA", resourceCulture); } } - /// - /// Looks up a localized string similar to , with multi-user patches. - /// - internal static string with_multi_user_patches { + internal static string Volume_is_compressed_using_XZ { get { - return ResourceManager.GetString("with_multi_user_patches", resourceCulture); + return ResourceManager.GetString("Volume_is_compressed_using_XZ", resourceCulture); } } - /// - /// Looks up a localized string similar to , with multi-user support. - /// - internal static string with_multi_user_support { + internal static string Volume_is_compressed_using_GZIP { get { - return ResourceManager.GetString("with_multi_user_support", resourceCulture); + return ResourceManager.GetString("Volume_is_compressed_using_GZIP", resourceCulture); } } - /// - /// Looks up a localized string similar to Writings should be verified. - /// - internal static string Writings_should_be_verified { + internal static string Volume_is_compressed_using_Zstandard { get { - return ResourceManager.GetString("Writings_should_be_verified", resourceCulture); + return ResourceManager.GetString("Volume_is_compressed_using_Zstandard", resourceCulture); } } - /// - /// Looks up a localized string similar to FATX Filesystem Plugin. - /// - internal static string XboxFatPlugin_Name { + internal static string Volume_is_compressed_using_unknown_algorithm_0 { get { - return ResourceManager.GetString("XboxFatPlugin_Name", resourceCulture); + return ResourceManager.GetString("Volume_is_compressed_using_unknown_algorithm_0", resourceCulture); + } + } + + internal static string SysVfs_Name { + get { + return ResourceManager.GetString("SysVfs_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to XENIX filesystem. - /// internal static string XENIX_filesystem { get { return ResourceManager.GetString("XENIX_filesystem", resourceCulture); } } - /// - /// Looks up a localized string similar to XFS filesystem. - /// - internal static string XFS_filesystem { + internal static string _512_bytes_per_block { get { - return ResourceManager.GetString("XFS_filesystem", resourceCulture); + return ResourceManager.GetString("_512_bytes_per_block", resourceCulture); + } + } + + internal static string _1024_bytes_per_block { + get { + return ResourceManager.GetString("_1024_bytes_per_block", resourceCulture); + } + } + + internal static string _2048_bytes_per_block { + get { + return ResourceManager.GetString("_2048_bytes_per_block", resourceCulture); + } + } + + internal static string Unknown_s_type_value_0 { + get { + return ResourceManager.GetString("Unknown_s_type_value_0", resourceCulture); + } + } + + internal static string _0_free_zones_on_volume_1_bytes { + get { + return ResourceManager.GetString("_0_free_zones_on_volume_1_bytes", resourceCulture); + } + } + + internal static string _0_free_blocks_on_list_1_bytes { + get { + return ResourceManager.GetString("_0_free_blocks_on_list_1_bytes", resourceCulture); + } + } + + internal static string _0_blocks_per_cylinder_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_per_cylinder_1_bytes", resourceCulture); + } + } + + internal static string _0_blocks_per_gap_1_bytes { + get { + return ResourceManager.GetString("_0_blocks_per_gap_1_bytes", resourceCulture); + } + } + + internal static string _0_free_inodes_on_volume { + get { + return ResourceManager.GetString("_0_free_inodes_on_volume", resourceCulture); + } + } + + internal static string _0_free_inodes_on_list { + get { + return ResourceManager.GetString("_0_free_inodes_on_list", resourceCulture); + } + } + + internal static string Free_block_list_is_locked { + get { + return ResourceManager.GetString("Free_block_list_is_locked", resourceCulture); + } + } + + internal static string inode_cache_is_locked { + get { + return ResourceManager.GetString("inode_cache_is_locked", resourceCulture); + } + } + + internal static string Superblock_is_being_modified { + get { + return ResourceManager.GetString("Superblock_is_being_modified", resourceCulture); + } + } + + internal static string Volume_is_mounted_read_only { + get { + return ResourceManager.GetString("Volume_is_mounted_read_only", resourceCulture); + } + } + + internal static string Superblock_last_updated_on_0 { + get { + return ResourceManager.GetString("Superblock_last_updated_on_0", resourceCulture); + } + } + + internal static string Pack_name_0 { + get { + return ResourceManager.GetString("Pack_name_0", resourceCulture); + } + } + + internal static string System_V_Release_4_filesystem { + get { + return ResourceManager.GetString("System_V_Release_4_filesystem", resourceCulture); + } + } + + internal static string System_V_Release_2_filesystem { + get { + return ResourceManager.GetString("System_V_Release_2_filesystem", resourceCulture); + } + } + + internal static string Coherent_UNIX_filesystem { + get { + return ResourceManager.GetString("Coherent_UNIX_filesystem", resourceCulture); + } + } + + internal static string UNIX_7th_Edition_filesystem { + get { + return ResourceManager.GetString("UNIX_7th_Edition_filesystem", resourceCulture); + } + } + + internal static string UDF_Name { + get { + return ResourceManager.GetString("UDF_Name", resourceCulture); + } + } + + internal static string Universal_Disk_Format { + get { + return ResourceManager.GetString("Universal_Disk_Format", resourceCulture); + } + } + + internal static string Volume_uses_0_bytes_per_block { + get { + return ResourceManager.GetString("Volume_uses_0_bytes_per_block", resourceCulture); + } + } + + internal static string Volume_was_last_written_on_0 { + get { + return ResourceManager.GetString("Volume_was_last_written_on_0", resourceCulture); + } + } + + internal static string Volume_contains_0_partitions { + get { + return ResourceManager.GetString("Volume_contains_0_partitions", resourceCulture); + } + } + + internal static string Volume_contains_0_files_and_1_directories { + get { + return ResourceManager.GetString("Volume_contains_0_files_and_1_directories", resourceCulture); + } + } + + internal static string Volume_conforms_to_0 { + get { + return ResourceManager.GetString("Volume_conforms_to_0", resourceCulture); + } + } + + internal static string Volume_was_last_written_by_0 { + get { + return ResourceManager.GetString("Volume_was_last_written_by_0", resourceCulture); + } + } + + internal static string Volume_requires_UDF_version_0_1_to_be_read { + get { + return ResourceManager.GetString("Volume_requires_UDF_version_0_1_to_be_read", resourceCulture); + } + } + + internal static string Volume_requires_UDF_version_0_1_to_be_written_to { + get { + return ResourceManager.GetString("Volume_requires_UDF_version_0_1_to_be_written_to", resourceCulture); + } + } + + internal static string Volume_cannot_be_written_by_any_UDF_version_higher_than_0_1 { + get { + return ResourceManager.GetString("Volume_cannot_be_written_by_any_UDF_version_higher_than_0_1", resourceCulture); + } + } + + internal static string UNICOS_Name { + get { + return ResourceManager.GetString("UNICOS_Name", resourceCulture); + } + } + + internal static string magic_equals_0_expected_1 { + get { + return ResourceManager.GetString("magic_equals_0_expected_1", resourceCulture); + } + } + + internal static string UNICOS_filesystem { + get { + return ResourceManager.GetString("UNICOS_filesystem", resourceCulture); + } + } + + internal static string Volume_is_secure { + get { + return ResourceManager.GetString("Volume_is_secure", resourceCulture); + } + } + + internal static string _4096_bytes_per_block { + get { + return ResourceManager.GetString("_4096_bytes_per_block", resourceCulture); + } + } + + internal static string _0_data_blocks_in_volume { + get { + return ResourceManager.GetString("_0_data_blocks_in_volume", resourceCulture); + } + } + + internal static string Root_resides_on_inode_0 { + get { + return ResourceManager.GetString("Root_resides_on_inode_0", resourceCulture); + } + } + + internal static string _0_inodes_in_volume { + get { + return ResourceManager.GetString("_0_inodes_in_volume", resourceCulture); + } + } + + internal static string Volume_last_updated_on_0 { + get { + return ResourceManager.GetString("Volume_last_updated_on_0", resourceCulture); + } + } + + internal static string Volume_is_dirty_error_code_equals_0 { + get { + return ResourceManager.GetString("Volume_is_dirty_error_code_equals_0", resourceCulture); + } + } + + internal static string BFS_Name { + get { + return ResourceManager.GetString("BFS_Name", resourceCulture); + } + } + + internal static string Volume_goes_from_byte_0_to_byte_1_for_2_bytes { + get { + return ResourceManager.GetString("Volume_goes_from_byte_0_to_byte_1_for_2_bytes", resourceCulture); + } + } + + internal static string Filesystem_name_0 { + get { + return ResourceManager.GetString("Filesystem_name_0", resourceCulture); + } + } + + internal static string UNIX_Boot_Filesystem { + get { + return ResourceManager.GetString("UNIX_Boot_Filesystem", resourceCulture); + } + } + + internal static string VMfs_Name { + get { + return ResourceManager.GetString("VMfs_Name", resourceCulture); + } + } + + internal static string VMware_file_system { + get { + return ResourceManager.GetString("VMware_file_system", resourceCulture); + } + } + + internal static string Volume_size_0_bytes { + get { + return ResourceManager.GetString("Volume_size_0_bytes", resourceCulture); + } + } + + internal static string VxFS_Name { + get { + return ResourceManager.GetString("VxFS_Name", resourceCulture); + } + } + + internal static string Veritas_file_system { + get { + return ResourceManager.GetString("Veritas_file_system", resourceCulture); + } + } + + internal static string Volume_has_0_inodes_per_block { + get { + return ResourceManager.GetString("Volume_has_0_inodes_per_block", resourceCulture); + } + } + + internal static string Volume_has_0_free_inodes { + get { + return ResourceManager.GetString("Volume_has_0_free_inodes", resourceCulture); + } + } + + internal static string Volume_has_0_free_blocks { + get { + return ResourceManager.GetString("Volume_has_0_free_blocks", resourceCulture); } } - /// - /// Looks up a localized string similar to XFS Filesystem Plugin. - /// internal static string XFS_Name { get { return ResourceManager.GetString("XFS_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Xia filesystem. - /// + internal static string magic_at_0_X3_equals_1_expected_2 { + get { + return ResourceManager.GetString("magic_at_0_X3_equals_1_expected_2", resourceCulture); + } + } + + internal static string magic_at_0_equals_1_expected_2 { + get { + return ResourceManager.GetString("magic_at_0_equals_1_expected_2", resourceCulture); + } + } + + internal static string XFS_filesystem { + get { + return ResourceManager.GetString("XFS_filesystem", resourceCulture); + } + } + + internal static string _0_data_blocks_in_volume_1_free { + get { + return ResourceManager.GetString("_0_data_blocks_in_volume_1_free", resourceCulture); + } + } + + internal static string _0_inodes_in_volume_1_free { + get { + return ResourceManager.GetString("_0_inodes_in_volume_1_free", resourceCulture); + } + } + + internal static string fsck_in_progress { + get { + return ResourceManager.GetString("fsck_in_progress", resourceCulture); + } + } + internal static string Xia_Name { get { return ResourceManager.GetString("Xia_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to ZFS filesystem. - /// - internal static string ZFS_filesystem { + internal static string _0_bytes_per_zone { get { - return ResourceManager.GetString("ZFS_filesystem", resourceCulture); + return ResourceManager.GetString("_0_bytes_per_zone", resourceCulture); + } + } + + internal static string _0_inodes { + get { + return ResourceManager.GetString("_0_inodes", resourceCulture); + } + } + + internal static string _0_data_zones_1_bytes { + get { + return ResourceManager.GetString("_0_data_zones_1_bytes", resourceCulture); + } + } + + internal static string _0_imap_zones_1_bytes { + get { + return ResourceManager.GetString("_0_imap_zones_1_bytes", resourceCulture); + } + } + + internal static string _0_zmap_zones_1_bytes { + get { + return ResourceManager.GetString("_0_zmap_zones_1_bytes", resourceCulture); + } + } + + internal static string Maximum_filesize_is_0_bytes_1_MiB { + get { + return ResourceManager.GetString("Maximum_filesize_is_0_bytes_1_MiB", resourceCulture); + } + } + + internal static string _0_zones_reserved_for_kernel_images_1_bytes { + get { + return ResourceManager.GetString("_0_zones_reserved_for_kernel_images_1_bytes", resourceCulture); + } + } + + internal static string First_kernel_zone_0 { + get { + return ResourceManager.GetString("First_kernel_zone_0", resourceCulture); } } - /// - /// Looks up a localized string similar to ZFS Filesystem Plugin. - /// internal static string ZFS_Name { get { return ResourceManager.GetString("ZFS_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to zisofs compression present.. - /// - internal static string zisofs_compression_present { + internal static string ZFS_filesystem { get { - return ResourceManager.GetString("zisofs_compression_present", resourceCulture); + return ResourceManager.GetString("ZFS_filesystem", resourceCulture); + } + } + + internal static string _0_is_not_set { + get { + return ResourceManager.GetString("_0_is_not_set", resourceCulture); + } + } + + internal static string _0_equals_1_elements_nvlist_array_unable_to_print { + get { + return ResourceManager.GetString("_0_equals_1_elements_nvlist_array_unable_to_print", resourceCulture); + } + } + + internal static string _0_1_equals_unknown_data_type_2 { + get { + return ResourceManager.GetString("_0_1_equals_unknown_data_type_2", resourceCulture); + } + } + + internal static string _0_equals_unknown_data_type_1 { + get { + return ResourceManager.GetString("_0_equals_unknown_data_type_1", resourceCulture); + } + } + + internal static string CBM_Mount_REL_file_warning { + get { + return ResourceManager.GetString("CBM_Mount_REL_file_warning", resourceCulture); + } + } + + internal static string Unhandled_exception_mounting_Lisa_filesystem { + get { + return ResourceManager.GetString("Unhandled_exception_mounting_Lisa_filesystem", resourceCulture); } } } diff --git a/Aaru.Filesystems/Localization/Localization.resx b/Aaru.Filesystems/Localization/Localization.resx index a8b4a9784..5bb3f09fc 100644 --- a/Aaru.Filesystems/Localization/Localization.resx +++ b/Aaru.Filesystems/Localization/Localization.resx @@ -3692,4 +3692,7 @@ This disk contains a relative file. These have not been fully tested, please open a bug report and include this disk image. + + Unhandled exception mounting Lisa filesystem + \ No newline at end of file diff --git a/Aaru.Gui/ConsoleHandler.cs b/Aaru.Gui/ConsoleHandler.cs index 9db993797..bea1493e4 100644 --- a/Aaru.Gui/ConsoleHandler.cs +++ b/Aaru.Gui/ConsoleHandler.cs @@ -67,9 +67,9 @@ static class ConsoleHandler public static ObservableCollection Entries { get; } = []; - static void OnWriteExceptionEvent([NotNull] Exception ex) => Entries.Add(new LogEntry + static void OnWriteExceptionEvent([NotNull] Exception ex, string message, params object[] objects) => Entries.Add(new LogEntry { - Message = ex.ToString(), + Message = string.Format(message, objects), Module = null, Timestamp = DateTime.Now, Type = UI.LogEntry_Type_Exception diff --git a/Aaru.Gui/ViewModels/Dialogs/ConsoleViewModel.cs b/Aaru.Gui/ViewModels/Dialogs/ConsoleViewModel.cs index 4455ddcf3..f41e89a76 100644 --- a/Aaru.Gui/ViewModels/Dialogs/ConsoleViewModel.cs +++ b/Aaru.Gui/ViewModels/Dialogs/ConsoleViewModel.cs @@ -165,7 +165,9 @@ public sealed class ConsoleViewModel : ViewModelBase Icon.Error) .ShowWindowDialogAsync(_view); - AaruLogging.Exception(exception); + AaruLogging.Exception(exception, UI + .Exception_0_trying_to_save_logfile_details_has_been_sent_to_console, + exception.Message); } } diff --git a/Aaru.Gui/ViewModels/Windows/ImageChecksumViewModel.cs b/Aaru.Gui/ViewModels/Windows/ImageChecksumViewModel.cs index 29e361431..3ff47940b 100644 --- a/Aaru.Gui/ViewModels/Windows/ImageChecksumViewModel.cs +++ b/Aaru.Gui/ViewModels/Windows/ImageChecksumViewModel.cs @@ -668,7 +668,7 @@ public sealed class ImageChecksumViewModel : ViewModelBase { AaruLogging.Debug(Localization.Core.Could_not_get_tracks_because_0, ex.Message); AaruLogging.WriteLine("Unable to get separate tracks, not checksumming them"); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Could_not_get_tracks_because_0, ex.Message); } } else diff --git a/Aaru.Gui/ViewModels/Windows/MainWindowViewModel.cs b/Aaru.Gui/ViewModels/Windows/MainWindowViewModel.cs index 6957b8294..322dd7f63 100644 --- a/Aaru.Gui/ViewModels/Windows/MainWindowViewModel.cs +++ b/Aaru.Gui/ViewModels/Windows/MainWindowViewModel.cs @@ -799,7 +799,7 @@ public sealed class MainWindowViewModel : ViewModelBase AaruLogging.Error(UI.Unable_to_open_image_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Error_0, ex.Message); } } catch(Exception ex) @@ -810,7 +810,7 @@ public sealed class MainWindowViewModel : ViewModelBase Icon.Error); AaruLogging.Error(string.Format(UI.Error_reading_file_0, ex.Message)); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); } Statistics.AddCommand("image-info"); @@ -890,7 +890,7 @@ public sealed class MainWindowViewModel : ViewModelBase } catch(InvalidOperationException ex) { - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, "Unhandled exception refreshing devices"); } } } \ No newline at end of file diff --git a/Aaru.Images/A2R/Write.cs b/Aaru.Images/A2R/Write.cs index 9ea23986e..73641a9e3 100644 --- a/Aaru.Images/A2R/Write.cs +++ b/Aaru.Images/A2R/Write.cs @@ -135,7 +135,7 @@ public sealed partial class A2R catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/AaruFormat/Read.cs b/Aaru.Images/AaruFormat/Read.cs index 8a38b9c6a..2574806fe 100644 --- a/Aaru.Images/AaruFormat/Read.cs +++ b/Aaru.Images/AaruFormat/Read.cs @@ -994,7 +994,9 @@ public sealed partial class AaruFormat Localization.Exception_0_processing_CICM_XML_metadata_block, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, + Localization.Exception_0_processing_CICM_XML_metadata_block, + ex.Message); AaruMetadata = null; } @@ -1038,7 +1040,9 @@ public sealed partial class AaruFormat Localization.Exception_0_processing_Aaru_Metadata_block, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, + Localization.Exception_0_processing_Aaru_Metadata_block, + ex.Message); AaruMetadata = null; } diff --git a/Aaru.Images/AaruFormat/Write.cs b/Aaru.Images/AaruFormat/Write.cs index f9ae7c4b5..cefeac0e5 100644 --- a/Aaru.Images/AaruFormat/Write.cs +++ b/Aaru.Images/AaruFormat/Write.cs @@ -241,7 +241,7 @@ public sealed partial class AaruFormat catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } @@ -1181,7 +1181,9 @@ public sealed partial class AaruFormat Localization.Exception_0_processing_CICM_XML_metadata_block, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, + Localization.Exception_0_processing_CICM_XML_metadata_block, + ex.Message); AaruMetadata = null; } diff --git a/Aaru.Images/Alcohol120/Write.cs b/Aaru.Images/Alcohol120/Write.cs index 28d901b28..f911b7135 100644 --- a/Aaru.Images/Alcohol120/Write.cs +++ b/Aaru.Images/Alcohol120/Write.cs @@ -82,7 +82,7 @@ public sealed partial class Alcohol120 catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/Anex86/Write.cs b/Aaru.Images/Anex86/Write.cs index 17066adaf..98971b785 100644 --- a/Aaru.Images/Anex86/Write.cs +++ b/Aaru.Images/Anex86/Write.cs @@ -86,7 +86,7 @@ public sealed partial class Anex86 catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/Apple2MG/Write.cs b/Aaru.Images/Apple2MG/Write.cs index 43a3f83b5..0df61b0bd 100644 --- a/Aaru.Images/Apple2MG/Write.cs +++ b/Aaru.Images/Apple2MG/Write.cs @@ -89,7 +89,7 @@ public sealed partial class Apple2Mg catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/AppleDOS/Write.cs b/Aaru.Images/AppleDOS/Write.cs index c1d8258cf..94e7f3ddd 100644 --- a/Aaru.Images/AppleDOS/Write.cs +++ b/Aaru.Images/AppleDOS/Write.cs @@ -84,7 +84,7 @@ public sealed partial class AppleDos catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/Apridisk/Write.cs b/Aaru.Images/Apridisk/Write.cs index cd4a88add..6038630b5 100644 --- a/Aaru.Images/Apridisk/Write.cs +++ b/Aaru.Images/Apridisk/Write.cs @@ -73,7 +73,7 @@ public sealed partial class Apridisk catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/BLU/Write.cs b/Aaru.Images/BLU/Write.cs index 42b9cf4d5..4422bd0d2 100644 --- a/Aaru.Images/BLU/Write.cs +++ b/Aaru.Images/BLU/Write.cs @@ -91,7 +91,7 @@ public sealed partial class Blu catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/ByteAddressable/AtariLynx.cs b/Aaru.Images/ByteAddressable/AtariLynx.cs index 84556c349..d75818c49 100644 --- a/Aaru.Images/ByteAddressable/AtariLynx.cs +++ b/Aaru.Images/ByteAddressable/AtariLynx.cs @@ -271,7 +271,7 @@ public class AtariLynx : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/ByteAddressable/GameBoy.cs b/Aaru.Images/ByteAddressable/GameBoy.cs index 9378c3931..c165706c3 100644 --- a/Aaru.Images/ByteAddressable/GameBoy.cs +++ b/Aaru.Images/ByteAddressable/GameBoy.cs @@ -239,7 +239,7 @@ public class GameBoy : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/ByteAddressable/GameBoyAdvance.cs b/Aaru.Images/ByteAddressable/GameBoyAdvance.cs index 536e46b2e..ad0c3a46f 100644 --- a/Aaru.Images/ByteAddressable/GameBoyAdvance.cs +++ b/Aaru.Images/ByteAddressable/GameBoyAdvance.cs @@ -219,7 +219,7 @@ public class GameBoyAdvance : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/ByteAddressable/MasterSystem.cs b/Aaru.Images/ByteAddressable/MasterSystem.cs index 3ef33a0de..f475132d8 100644 --- a/Aaru.Images/ByteAddressable/MasterSystem.cs +++ b/Aaru.Images/ByteAddressable/MasterSystem.cs @@ -322,7 +322,7 @@ public class MasterSystem : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/ByteAddressable/NES.cs b/Aaru.Images/ByteAddressable/NES.cs index 4478ea63a..878449b45 100644 --- a/Aaru.Images/ByteAddressable/NES.cs +++ b/Aaru.Images/ByteAddressable/NES.cs @@ -436,7 +436,7 @@ public class Nes : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/ByteAddressable/Nintendo64.cs b/Aaru.Images/ByteAddressable/Nintendo64.cs index 1182e96ea..1a6bc10da 100644 --- a/Aaru.Images/ByteAddressable/Nintendo64.cs +++ b/Aaru.Images/ByteAddressable/Nintendo64.cs @@ -273,7 +273,7 @@ public class Nintendo64 : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/ByteAddressable/SegaMegaDrive.cs b/Aaru.Images/ByteAddressable/SegaMegaDrive.cs index 7e761df66..67d30f28c 100644 --- a/Aaru.Images/ByteAddressable/SegaMegaDrive.cs +++ b/Aaru.Images/ByteAddressable/SegaMegaDrive.cs @@ -511,7 +511,7 @@ public class SegaMegaDrive : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/ByteAddressable/SuperNintendo.cs b/Aaru.Images/ByteAddressable/SuperNintendo.cs index 168ecaae1..691d970bb 100644 --- a/Aaru.Images/ByteAddressable/SuperNintendo.cs +++ b/Aaru.Images/ByteAddressable/SuperNintendo.cs @@ -341,7 +341,7 @@ public class SuperNintendo : IByteAddressableImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return ErrorNumber.InOutError; } diff --git a/Aaru.Images/CDRDAO/Identify.cs b/Aaru.Images/CDRDAO/Identify.cs index 38e00bf4d..8784f489b 100644 --- a/Aaru.Images/CDRDAO/Identify.cs +++ b/Aaru.Images/CDRDAO/Identify.cs @@ -96,7 +96,7 @@ public sealed partial class Cdrdao catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, _cdrdaoFilter.Filename); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_identify_image_file_0, _cdrdaoFilter.Filename); return false; } diff --git a/Aaru.Images/CDRDAO/Read.cs b/Aaru.Images/CDRDAO/Read.cs index f0ad18731..9cba52aa0 100644 --- a/Aaru.Images/CDRDAO/Read.cs +++ b/Aaru.Images/CDRDAO/Read.cs @@ -970,7 +970,7 @@ public sealed partial class Cdrdao catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, imageFilter); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_identify_image_file_0, imageFilter.Filename); return ErrorNumber.UnexpectedException; } diff --git a/Aaru.Images/CDRDAO/Write.cs b/Aaru.Images/CDRDAO/Write.cs index 39aee4d4a..4337a1b5d 100644 --- a/Aaru.Images/CDRDAO/Write.cs +++ b/Aaru.Images/CDRDAO/Write.cs @@ -99,7 +99,7 @@ public sealed partial class Cdrdao catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/CDRWin/Identify.cs b/Aaru.Images/CDRWin/Identify.cs index c53f85fd5..bffd31e73 100644 --- a/Aaru.Images/CDRWin/Identify.cs +++ b/Aaru.Images/CDRWin/Identify.cs @@ -103,7 +103,7 @@ public sealed partial class CdrWin catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, _cdrwinFilter); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_identify_image_file_0, _cdrwinFilter); return false; } diff --git a/Aaru.Images/CDRWin/Read.cs b/Aaru.Images/CDRWin/Read.cs index 3a48b362e..6c10ed64c 100644 --- a/Aaru.Images/CDRWin/Read.cs +++ b/Aaru.Images/CDRWin/Read.cs @@ -1695,7 +1695,7 @@ public sealed partial class CdrWin catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, imageFilter.Filename); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex,Localization.Exception_trying_to_identify_image_file_0, imageFilter.Filename); return ErrorNumber.UnexpectedException; } diff --git a/Aaru.Images/CDRWin/Write.cs b/Aaru.Images/CDRWin/Write.cs index f0d282ebf..28239a038 100644 --- a/Aaru.Images/CDRWin/Write.cs +++ b/Aaru.Images/CDRWin/Write.cs @@ -98,7 +98,7 @@ public sealed partial class CdrWin catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/CisCopy/Write.cs b/Aaru.Images/CisCopy/Write.cs index 9b7b59160..01569f444 100644 --- a/Aaru.Images/CisCopy/Write.cs +++ b/Aaru.Images/CisCopy/Write.cs @@ -77,7 +77,7 @@ public sealed partial class CisCopy catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/CloneCD/Identify.cs b/Aaru.Images/CloneCD/Identify.cs index 4f2bd3891..0d8fa668b 100644 --- a/Aaru.Images/CloneCD/Identify.cs +++ b/Aaru.Images/CloneCD/Identify.cs @@ -88,7 +88,7 @@ public sealed partial class CloneCd catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, _ccdFilter); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_identify_image_file_0, _ccdFilter); return false; } diff --git a/Aaru.Images/CloneCD/Read.cs b/Aaru.Images/CloneCD/Read.cs index 2bf9c498f..d6dfda2ac 100644 --- a/Aaru.Images/CloneCD/Read.cs +++ b/Aaru.Images/CloneCD/Read.cs @@ -897,7 +897,7 @@ public sealed partial class CloneCd catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, imageFilter.Filename); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_identify_image_file_0, imageFilter.Filename); return ErrorNumber.UnexpectedException; } diff --git a/Aaru.Images/CloneCD/Write.cs b/Aaru.Images/CloneCD/Write.cs index 825a18631..f23f51b8d 100644 --- a/Aaru.Images/CloneCD/Write.cs +++ b/Aaru.Images/CloneCD/Write.cs @@ -83,7 +83,7 @@ public sealed partial class CloneCd catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } @@ -484,7 +484,8 @@ public sealed partial class CloneCd ErrorMessage = string.Format(Localization.Could_not_create_subchannel_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex,Localization.Could_not_create_subchannel_file_exception_0, + ex.Message); return false; } @@ -560,7 +561,8 @@ public sealed partial class CloneCd ErrorMessage = string.Format(Localization.Could_not_create_subchannel_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex,Localization.Could_not_create_subchannel_file_exception_0, + ex.Message); return false; } diff --git a/Aaru.Images/CopyTape/Write.cs b/Aaru.Images/CopyTape/Write.cs index b35bb8bb8..dbb973d17 100644 --- a/Aaru.Images/CopyTape/Write.cs +++ b/Aaru.Images/CopyTape/Write.cs @@ -77,7 +77,7 @@ public sealed partial class CopyTape catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/DiskCopy42/Write.cs b/Aaru.Images/DiskCopy42/Write.cs index 544f0119c..b45f3bf34 100644 --- a/Aaru.Images/DiskCopy42/Write.cs +++ b/Aaru.Images/DiskCopy42/Write.cs @@ -203,7 +203,7 @@ public sealed partial class DiskCopy42 catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/DriDiskCopy/Write.cs b/Aaru.Images/DriDiskCopy/Write.cs index 8f719ab65..39e0dec10 100644 --- a/Aaru.Images/DriDiskCopy/Write.cs +++ b/Aaru.Images/DriDiskCopy/Write.cs @@ -86,7 +86,7 @@ public sealed partial class DriDiskCopy catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/GDI/Identify.cs b/Aaru.Images/GDI/Identify.cs index c127990b1..dd4660360 100644 --- a/Aaru.Images/GDI/Identify.cs +++ b/Aaru.Images/GDI/Identify.cs @@ -109,7 +109,7 @@ public sealed partial class Gdi catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, imageFilter.BasePath); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_identify_image_file_0, imageFilter.BasePath); return false; } diff --git a/Aaru.Images/GDI/Read.cs b/Aaru.Images/GDI/Read.cs index 9e0c362c2..241c1683d 100644 --- a/Aaru.Images/GDI/Read.cs +++ b/Aaru.Images/GDI/Read.cs @@ -351,7 +351,7 @@ public sealed partial class Gdi catch(Exception ex) { AaruLogging.Error(Localization.Exception_trying_to_identify_image_file_0, imageFilter.BasePath); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_identify_image_file_0, imageFilter.BasePath); return ErrorNumber.UnexpectedException; } diff --git a/Aaru.Images/MaxiDisk/Write.cs b/Aaru.Images/MaxiDisk/Write.cs index 708d5a6b1..d1bf3c829 100644 --- a/Aaru.Images/MaxiDisk/Write.cs +++ b/Aaru.Images/MaxiDisk/Write.cs @@ -105,7 +105,7 @@ public sealed partial class MaxiDisk catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/NDIF/Read.cs b/Aaru.Images/NDIF/Read.cs index 12400c18f..a8b016bd0 100644 --- a/Aaru.Images/NDIF/Read.cs +++ b/Aaru.Images/NDIF/Read.cs @@ -74,7 +74,7 @@ public sealed partial class Ndif catch(InvalidCastException ex) { AaruLogging.Error(Localization.Exception_trying_to_open_image_file_0, imageFilter.BasePath); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Exception_trying_to_open_image_file_0, imageFilter.BasePath); return ErrorNumber.UnexpectedException; } diff --git a/Aaru.Images/NHDr0/Write.cs b/Aaru.Images/NHDr0/Write.cs index c5e3e99ea..a912adfa5 100644 --- a/Aaru.Images/NHDr0/Write.cs +++ b/Aaru.Images/NHDr0/Write.cs @@ -80,7 +80,7 @@ public sealed partial class Nhdr0 catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/Parallels/Write.cs b/Aaru.Images/Parallels/Write.cs index b2793365e..014c70edc 100644 --- a/Aaru.Images/Parallels/Write.cs +++ b/Aaru.Images/Parallels/Write.cs @@ -87,7 +87,7 @@ public sealed partial class Parallels catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/QCOW/Write.cs b/Aaru.Images/QCOW/Write.cs index 71f1105aa..61633a1c2 100644 --- a/Aaru.Images/QCOW/Write.cs +++ b/Aaru.Images/QCOW/Write.cs @@ -89,7 +89,7 @@ public sealed partial class Qcow catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/QCOW2/Write.cs b/Aaru.Images/QCOW2/Write.cs index 963d40f42..09c807431 100644 --- a/Aaru.Images/QCOW2/Write.cs +++ b/Aaru.Images/QCOW2/Write.cs @@ -89,7 +89,7 @@ public sealed partial class Qcow2 catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/QED/Write.cs b/Aaru.Images/QED/Write.cs index 9c5554553..85e8b72b6 100644 --- a/Aaru.Images/QED/Write.cs +++ b/Aaru.Images/QED/Write.cs @@ -89,7 +89,7 @@ public sealed partial class Qed catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/RayDIM/Write.cs b/Aaru.Images/RayDIM/Write.cs index dbbe90f93..e7bd37776 100644 --- a/Aaru.Images/RayDIM/Write.cs +++ b/Aaru.Images/RayDIM/Write.cs @@ -93,7 +93,7 @@ public sealed partial class RayDim catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/RsIde/Write.cs b/Aaru.Images/RsIde/Write.cs index a93492664..d2f1057ea 100644 --- a/Aaru.Images/RsIde/Write.cs +++ b/Aaru.Images/RsIde/Write.cs @@ -88,7 +88,7 @@ public sealed partial class RsIde catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/SaveDskF/Write.cs b/Aaru.Images/SaveDskF/Write.cs index 8808d9add..c5982fccc 100644 --- a/Aaru.Images/SaveDskF/Write.cs +++ b/Aaru.Images/SaveDskF/Write.cs @@ -244,7 +244,7 @@ public sealed partial class SaveDskF catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/SuperCardPro/Write.cs b/Aaru.Images/SuperCardPro/Write.cs index 6a1b01fd7..204ce1002 100644 --- a/Aaru.Images/SuperCardPro/Write.cs +++ b/Aaru.Images/SuperCardPro/Write.cs @@ -134,7 +134,7 @@ public sealed partial class SuperCardPro catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/T98/Write.cs b/Aaru.Images/T98/Write.cs index 74d48d457..d6bfeb245 100644 --- a/Aaru.Images/T98/Write.cs +++ b/Aaru.Images/T98/Write.cs @@ -80,7 +80,7 @@ public sealed partial class T98 catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/UDIF/Write.cs b/Aaru.Images/UDIF/Write.cs index baeba3987..21e9a14a1 100644 --- a/Aaru.Images/UDIF/Write.cs +++ b/Aaru.Images/UDIF/Write.cs @@ -82,7 +82,7 @@ public sealed partial class Udif catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/VDI/Write.cs b/Aaru.Images/VDI/Write.cs index 1bf577ecf..15484b8ce 100644 --- a/Aaru.Images/VDI/Write.cs +++ b/Aaru.Images/VDI/Write.cs @@ -88,7 +88,7 @@ public sealed partial class Vdi catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/VHD/Write.cs b/Aaru.Images/VHD/Write.cs index bbb7e9375..28631fa0b 100644 --- a/Aaru.Images/VHD/Write.cs +++ b/Aaru.Images/VHD/Write.cs @@ -116,7 +116,7 @@ public sealed partial class Vhd catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/VMware/Write.cs b/Aaru.Images/VMware/Write.cs index 44dfbb41b..f17d5b7d3 100644 --- a/Aaru.Images/VMware/Write.cs +++ b/Aaru.Images/VMware/Write.cs @@ -164,7 +164,7 @@ public sealed partial class VMware catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/Virtual98/Write.cs b/Aaru.Images/Virtual98/Write.cs index ec17e55c4..57ca43972 100644 --- a/Aaru.Images/Virtual98/Write.cs +++ b/Aaru.Images/Virtual98/Write.cs @@ -87,7 +87,7 @@ public sealed partial class Virtual98 catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Images/ZZZRawImage/Write.cs b/Aaru.Images/ZZZRawImage/Write.cs index 03254dbb6..56b17cb7b 100644 --- a/Aaru.Images/ZZZRawImage/Write.cs +++ b/Aaru.Images/ZZZRawImage/Write.cs @@ -100,7 +100,7 @@ public sealed partial class ZZZRawImage catch(IOException ex) { ErrorMessage = string.Format(Localization.Could_not_create_new_image_file_exception_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Could_not_create_new_image_file_exception_0, ex.Message); return false; } diff --git a/Aaru.Localization/Core.Designer.cs b/Aaru.Localization/Core.Designer.cs index 1699231e8..55245adf6 100644 --- a/Aaru.Localization/Core.Designer.cs +++ b/Aaru.Localization/Core.Designer.cs @@ -6862,5 +6862,11 @@ namespace Aaru.Localization { return ResourceManager.GetString("Using_Lite-On_raw_DVD_reading", resourceCulture); } } + + public static string Filesystems_Identify_Error { + get { + return ResourceManager.GetString("Filesystems_Identify_Error", resourceCulture); + } + } } } diff --git a/Aaru.Localization/Core.resx b/Aaru.Localization/Core.resx index 29e600a21..95f9d595c 100644 --- a/Aaru.Localization/Core.resx +++ b/Aaru.Localization/Core.resx @@ -3502,4 +3502,7 @@ It has no sense to do it, and it will put too much strain on the tape. Using Lite-On raw DVD reading. + + Error identifying filesystem {0}. Please open a report with the following line in a Github issue. + \ No newline at end of file diff --git a/Aaru.Logging/AaruLogging.cs b/Aaru.Logging/AaruLogging.cs index aaafe0f0b..46021540d 100644 --- a/Aaru.Logging/AaruLogging.cs +++ b/Aaru.Logging/AaruLogging.cs @@ -109,5 +109,5 @@ public static class AaruLogging /// Writes the exception to the debug output console. /// /// Exception. - public static void Exception(Exception ex) => WriteExceptionEvent?.Invoke(ex); + public static void Exception(Exception ex, string message, params object[] arg) => WriteExceptionEvent?.Invoke(ex, message, arg); } \ No newline at end of file diff --git a/Aaru.Logging/Delegates.cs b/Aaru.Logging/Delegates.cs index 72ae2d5e4..e8b7d8f1c 100644 --- a/Aaru.Logging/Delegates.cs +++ b/Aaru.Logging/Delegates.cs @@ -55,4 +55,4 @@ public delegate void DebugDelegate(string module, string format, params object[] /// Writes the exception to the debug output console. /// /// Exception. -public delegate void ExceptionDelegate(Exception ex); \ No newline at end of file +public delegate void ExceptionDelegate(Exception ex, string message, params object[] arg); \ No newline at end of file diff --git a/Aaru.Tests.Devices/Main.cs b/Aaru.Tests.Devices/Main.cs index 7f9e9ac57..0b82daa09 100644 --- a/Aaru.Tests.Devices/Main.cs +++ b/Aaru.Tests.Devices/Main.cs @@ -42,7 +42,6 @@ static partial class MainClass AaruLogging.ErrorEvent += Console.Error.WriteLine; AaruLogging.DebugEvent += Console.Error.WriteLine; AaruLogging.VerboseEvent += Console.WriteLine; - AaruLogging.WriteExceptionEvent += Console.Error.WriteLine; DeviceInfo[] devices = Aaru.Devices.Device.ListDevices(); diff --git a/Aaru/Commands/Archive/Extract.cs b/Aaru/Commands/Archive/Extract.cs index 7ad9e91ae..23b4ad1a0 100644 --- a/Aaru/Commands/Archive/Extract.cs +++ b/Aaru/Commands/Archive/Extract.cs @@ -150,7 +150,7 @@ sealed class ArchiveExtractCommand : Command { AaruLogging.Error(UI.Unable_to_open_archive_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -407,7 +407,7 @@ sealed class ArchiveExtractCommand : Command catch(Exception ex) { AaruLogging.Error(string.Format(UI.Error_reading_file_0, Markup.Escape(ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Commands/Archive/Info.cs b/Aaru/Commands/Archive/Info.cs index e31888661..a15866add 100644 --- a/Aaru/Commands/Archive/Info.cs +++ b/Aaru/Commands/Archive/Info.cs @@ -129,7 +129,7 @@ sealed class ArchiveInfoCommand : Command { AaruLogging.Error(UI.Unable_to_get_information_about_archive); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -137,7 +137,7 @@ sealed class ArchiveInfoCommand : Command catch(Exception ex) { AaruLogging.Error(string.Format(UI.Error_reading_file_0, Markup.Escape(ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Commands/Archive/List.cs b/Aaru/Commands/Archive/List.cs index 3b6c0f18c..fab8a85d5 100644 --- a/Aaru/Commands/Archive/List.cs +++ b/Aaru/Commands/Archive/List.cs @@ -145,7 +145,7 @@ sealed class ArchiveListCommand : Command { AaruLogging.Error(UI.Unable_to_open_archive_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -368,7 +368,7 @@ sealed class ArchiveListCommand : Command catch(Exception ex) { AaruLogging.Error(string.Format(UI.Error_reading_file_0, Markup.Escape(ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Commands/Filesystem/ExtractFiles.cs b/Aaru/Commands/Filesystem/ExtractFiles.cs index a8f0f2db5..7b878e50e 100644 --- a/Aaru/Commands/Filesystem/ExtractFiles.cs +++ b/Aaru/Commands/Filesystem/ExtractFiles.cs @@ -197,7 +197,7 @@ sealed class ExtractFilesCommand : Command { AaruLogging.Error(UI.Unable_to_open_image_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -326,7 +326,7 @@ sealed class ExtractFilesCommand : Command catch(Exception ex) { AaruLogging.Error(string.Format(UI.Error_reading_file_0, Markup.Escape(ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Commands/Filesystem/Info.cs b/Aaru/Commands/Filesystem/Info.cs index 4fd6873c0..7358575a8 100644 --- a/Aaru/Commands/Filesystem/Info.cs +++ b/Aaru/Commands/Filesystem/Info.cs @@ -166,7 +166,7 @@ sealed class FilesystemInfoCommand : Command { AaruLogging.Error(UI.Unable_to_open_image_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -368,7 +368,7 @@ sealed class FilesystemInfoCommand : Command catch(Exception ex) { AaruLogging.Error(Markup.Escape(string.Format(UI.Error_reading_file_0, ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Commands/Filesystem/Ls.cs b/Aaru/Commands/Filesystem/Ls.cs index c3d64f45b..7f97746ee 100644 --- a/Aaru/Commands/Filesystem/Ls.cs +++ b/Aaru/Commands/Filesystem/Ls.cs @@ -175,7 +175,7 @@ sealed class LsCommand : Command { AaruLogging.Error(UI.Unable_to_open_image_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -295,7 +295,7 @@ sealed class LsCommand : Command catch(Exception ex) { AaruLogging.Error(string.Format(UI.Error_reading_file_0, Markup.Escape(ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Commands/Image/Convert.cs b/Aaru/Commands/Image/Convert.cs index b33b492e6..c8cb9a80f 100644 --- a/Aaru/Commands/Image/Convert.cs +++ b/Aaru/Commands/Image/Convert.cs @@ -203,7 +203,7 @@ sealed class ConvertImageCommand : Command catch(Exception ex) { AaruLogging.Error(UI.Incorrect_metadata_sidecar_file_not_continuing); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Incorrect_metadata_sidecar_file_not_continuing); return (int)ErrorNumber.InvalidSidecar; } @@ -239,7 +239,7 @@ sealed class ConvertImageCommand : Command catch(Exception ex) { AaruLogging.Error(UI.Incorrect_metadata_sidecar_file_not_continuing); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Incorrect_metadata_sidecar_file_not_continuing); return (int)ErrorNumber.InvalidSidecar; } @@ -289,7 +289,7 @@ sealed class ConvertImageCommand : Command catch(Exception ex) { AaruLogging.Error(UI.Incorrect_resume_file_not_continuing); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Incorrect_resume_file_not_continuing); return (int)ErrorNumber.InvalidResume; } @@ -402,7 +402,7 @@ sealed class ConvertImageCommand : Command { AaruLogging.Error(UI.Unable_to_open_image_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Error_0, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } diff --git a/Aaru/Commands/Image/CreateSidecar.cs b/Aaru/Commands/Image/CreateSidecar.cs index 54f270b41..db7ffa618 100644 --- a/Aaru/Commands/Image/CreateSidecar.cs +++ b/Aaru/Commands/Image/CreateSidecar.cs @@ -157,7 +157,7 @@ sealed class CreateSidecarCommand : Command { AaruLogging.Error(UI.Unable_to_open_image_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, Localization.Core.Error_0, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -245,7 +245,7 @@ sealed class CreateSidecarCommand : Command catch(Exception ex) { AaruLogging.Error(string.Format(UI.Error_reading_file_0, Markup.Escape(ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Commands/Image/Info.cs b/Aaru/Commands/Image/Info.cs index 9ed991a14..898a19db2 100644 --- a/Aaru/Commands/Image/Info.cs +++ b/Aaru/Commands/Image/Info.cs @@ -120,7 +120,7 @@ sealed class ImageInfoCommand : Command { AaruLogging.Error(UI.Unable_to_open_image_format); AaruLogging.Error(Localization.Core.Error_0, ex.Message); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, ex.Message); return (int)ErrorNumber.CannotOpenFormat; } @@ -128,7 +128,7 @@ sealed class ImageInfoCommand : Command catch(Exception ex) { AaruLogging.Error(string.Format(UI.Error_reading_file_0, Markup.Escape(ex.Message))); - AaruLogging.Exception(ex); + AaruLogging.Exception(ex, UI.Error_reading_file_0, ex.Message); return (int)ErrorNumber.UnexpectedException; } diff --git a/Aaru/Main.cs b/Aaru/Main.cs index 68dabdbe0..f4221d10d 100644 --- a/Aaru/Main.cs +++ b/Aaru/Main.cs @@ -116,7 +116,7 @@ class MainClass AaruLogging.DebugEvent += (module, format, objects) => Log.Debug($"[blue]{module}[/] {format}", objects); - AaruLogging.WriteExceptionEvent += ex => Log.Error(ex, "Unhandled exception"); + AaruLogging.WriteExceptionEvent += Log.Error; Settings.Settings.LoadSettings();