diff --git a/Aaru.Filesystems/AODOS/Info.cs b/Aaru.Filesystems/AODOS/Info.cs
index a75d9fba0..48c264adc 100644
--- a/Aaru.Filesystems/AODOS/Info.cs
+++ b/Aaru.Filesystems/AODOS/Info.cs
@@ -101,7 +101,7 @@ public sealed partial class AODOS
Bootable = true
};
- sbInformation.AppendFormat(Localization._0_files_on_volume, bb.files).AppendLine();
+ sbInformation.AppendFormat(Localization._0_files_in_volume, bb.files).AppendLine();
sbInformation.AppendFormat(Localization._0_used_sectors_on_volume, bb.usedSectors).AppendLine();
sbInformation.AppendFormat(Localization.Disk_name_0, StringHandlers.CToString(bb.volumeLabel, encoding)).
diff --git a/Aaru.Filesystems/AppleHFS/Info.cs b/Aaru.Filesystems/AppleHFS/Info.cs
index 8508d978f..fc8c9da94 100644
--- a/Aaru.Filesystems/AppleHFS/Info.cs
+++ b/Aaru.Filesystems/AppleHFS/Info.cs
@@ -212,10 +212,10 @@ public sealed partial class AppleHFS
if(mdb.drAtrb.HasFlag(AppleCommon.VolumeAttributes.SoftwareLock))
sb.AppendLine(Localization.Volume_is_locked_by_software);
- sb.AppendFormat(Localization._0_files_on_root_directory, mdb.drNmFls).AppendLine();
- sb.AppendFormat(Localization._0_directories_on_root_directory, mdb.drNmRtDirs).AppendLine();
- sb.AppendFormat(Localization._0_files_on_volume, mdb.drFilCnt).AppendLine();
- sb.AppendFormat(Localization._0_directories_on_volume, mdb.drDirCnt).AppendLine();
+ sb.AppendFormat(Localization._0_files_in_root_directory, mdb.drNmFls).AppendLine();
+ sb.AppendFormat(Localization._0_directories_in_root_directory, mdb.drNmRtDirs).AppendLine();
+ sb.AppendFormat(Localization._0_files_in_volume, mdb.drFilCnt).AppendLine();
+ sb.AppendFormat(Localization._0_directories_in_volume, mdb.drDirCnt).AppendLine();
sb.AppendFormat(Localization.Volume_write_count_0, mdb.drWrCnt).AppendLine();
sb.AppendFormat(Localization.Volume_bitmap_starting_sector_in_512_bytes_0, mdb.drVBMSt).AppendLine();
diff --git a/Aaru.Filesystems/AppleHFSPlus/Info.cs b/Aaru.Filesystems/AppleHFSPlus/Info.cs
index b815d4550..f7b9a5fa4 100644
--- a/Aaru.Filesystems/AppleHFSPlus/Info.cs
+++ b/Aaru.Filesystems/AppleHFSPlus/Info.cs
@@ -188,7 +188,7 @@ public sealed partial class AppleHFSPlus
sb.AppendFormat(Localization.Filesystem_version_is_0, vh.version).AppendLine();
if((vh.attributes & 0x80) == 0x80)
- sb.AppendLine(Localization.Volume_is_locked_on_hardware);
+ sb.AppendLine(Localization.Volume_is_locked_by_hardware);
if((vh.attributes & 0x100) == 0x100)
sb.AppendLine(Localization.Volume_is_unmounted);
@@ -197,7 +197,7 @@ public sealed partial class AppleHFSPlus
sb.AppendLine(Localization.There_are_bad_blocks_in_the_extents_file);
if((vh.attributes & 0x400) == 0x400)
- sb.AppendLine(Localization.Volume_does_not_require_cache);
+ sb.AppendLine(Localization.Volume_does_not_need_cache);
if((vh.attributes & 0x800) == 0x800)
sb.AppendLine(Localization.Volume_state_is_inconsistent);
@@ -209,7 +209,7 @@ public sealed partial class AppleHFSPlus
sb.AppendLine(Localization.Volume_is_journaled);
if((vh.attributes & 0x8000) == 0x8000)
- sb.AppendLine(Localization.Volume_is_locked_on_software);
+ sb.AppendLine(Localization.Volume_is_locked_by_software);
sb.AppendFormat(Localization.Implementation_that_last_mounted_the_volume_0,
Encoding.ASCII.GetString(vh.lastMountedVersion)).AppendLine();
@@ -234,8 +234,8 @@ public sealed partial class AppleHFSPlus
else
sb.AppendLine(Localization.Volume_has_never_been_checked_up);
- sb.AppendFormat(Localization._0_files_on_volume, vh.fileCount).AppendLine();
- sb.AppendFormat(Localization._0_folders_on_volume, vh.folderCount).AppendLine();
+ sb.AppendFormat(Localization._0_files_in_volume, vh.fileCount).AppendLine();
+ sb.AppendFormat(Localization._0_directories_in_volume, vh.folderCount).AppendLine();
sb.AppendFormat(Localization._0_bytes_per_allocation_block, vh.blockSize).AppendLine();
sb.AppendFormat(Localization._0_allocation_blocks, vh.totalBlocks).AppendLine();
sb.AppendFormat(Localization._0_free_blocks, vh.freeBlocks).AppendLine();
diff --git a/Aaru.Filesystems/AppleMFS/Info.cs b/Aaru.Filesystems/AppleMFS/Info.cs
index 391a3bdc9..2b2732467 100644
--- a/Aaru.Filesystems/AppleMFS/Info.cs
+++ b/Aaru.Filesystems/AppleMFS/Info.cs
@@ -131,7 +131,7 @@ public sealed partial class AppleMFS
if(mdb.drAtrb.HasFlag(AppleCommon.VolumeAttributes.SoftwareLock))
sb.AppendLine(Localization.Volume_is_locked_by_software);
- sb.AppendFormat(Localization._0_files_on_volume, mdb.drNmFls).AppendLine();
+ sb.AppendFormat(Localization._0_files_in_volume, mdb.drNmFls).AppendLine();
sb.AppendFormat(Localization.First_directory_sector_0, mdb.drDirSt).AppendLine();
sb.AppendFormat(Localization._0_sectors_in_directory, mdb.drBlLen).AppendLine();
sb.AppendFormat(Localization._0_volume_allocation_blocks, mdb.drNmAlBlks + 1).AppendLine();
diff --git a/Aaru.Filesystems/FAT/Info.cs b/Aaru.Filesystems/FAT/Info.cs
index 70292e682..d1f070121 100644
--- a/Aaru.Filesystems/FAT/Info.cs
+++ b/Aaru.Filesystems/FAT/Info.cs
@@ -558,7 +558,7 @@ public sealed partial class FAT
}
if((fat32Bpb.flags & 0x02) == 0x02)
- sb.AppendLine(Localization.Disk_surface_should_be_on_next_mount);
+ sb.AppendLine(Localization.Disk_surface_should_be_checked_on_next_mount);
}
if((fat32Bpb.mirror_flags & 0x80) == 0x80)
@@ -891,7 +891,7 @@ public sealed partial class FAT
metadata.ClusterSize = (uint)(fakeBpb.bps * fakeBpb.spc);
sb.AppendFormat(Localization._0_sectors_reserved_between_BPB_and_FAT, fakeBpb.rsectors).AppendLine();
sb.AppendFormat(Localization._0_FATs, fakeBpb.fats_no).AppendLine();
- sb.AppendFormat(Localization._0_entries_on_root_directory, fakeBpb.root_ent).AppendLine();
+ sb.AppendFormat(Localization._0_entries_in_root_directory, fakeBpb.root_ent).AppendLine();
if(fakeBpb.media > 0)
sb.AppendFormat(Localization.Media_descriptor_0, fakeBpb.media).AppendLine();
@@ -924,7 +924,7 @@ public sealed partial class FAT
}
if((fakeBpb.flags & 0x02) == 0x02)
- sb.AppendLine(Localization.Disk_surface_should_be_on_next_mount);
+ sb.AppendLine(Localization.Disk_surface_should_be_checked_on_next_mount);
}
if(fakeBpb.signature == 0x29 || andosOemCorrect)
diff --git a/Aaru.Filesystems/FATX/Info.cs b/Aaru.Filesystems/FATX/Info.cs
index 7a8d344d9..dada9c6ad 100644
--- a/Aaru.Filesystems/FATX/Info.cs
+++ b/Aaru.Filesystems/FATX/Info.cs
@@ -94,7 +94,7 @@ public sealed partial class XboxFatPlugin
fatxSb.sectorsPerCluster * logicalSectorsPerPhysicalSectors * imagePlugin.Info.SectorSize).
AppendLine();
- sb.AppendFormat(Localization.Root_directory_starts_on_cluster_0, fatxSb.rootDirectoryCluster).AppendLine();
+ sb.AppendFormat(Localization.Root_directory_starts_at_cluster_0, fatxSb.rootDirectoryCluster).AppendLine();
string volumeLabel = StringHandlers.CToString(fatxSb.volumeLabel,
bigEndian ? Encoding.BigEndianUnicode : Encoding.Unicode, true);
diff --git a/Aaru.Filesystems/FFS/Info.cs b/Aaru.Filesystems/FFS/Info.cs
index bf768491f..8b630594f 100644
--- a/Aaru.Filesystems/FFS/Info.cs
+++ b/Aaru.Filesystems/FFS/Info.cs
@@ -452,7 +452,7 @@ public sealed partial class FFSPlugin
if(sb.fs_fmod == 1)
{
- sbInformation.AppendLine(Localization.Superblock_is_under_modification);
+ sbInformation.AppendLine(Localization.Superblock_is_being_modified);
metadata.Dirty = true;
}
diff --git a/Aaru.Filesystems/JFS/Info.cs b/Aaru.Filesystems/JFS/Info.cs
index 26763b1dc..7de1c99e3 100644
--- a/Aaru.Filesystems/JFS/Info.cs
+++ b/Aaru.Filesystems/JFS/Info.cs
@@ -120,10 +120,10 @@ public sealed partial class JFS
sb.AppendLine(Localization.Volume_does_not_commit_to_log);
if(jfsSb.s_flags.HasFlag(Flags.InlineLog))
- sb.AppendLine(Localization.Volume_has_log_withing_itself);
+ sb.AppendLine(Localization.Volume_has_log_within_itself);
if(jfsSb.s_flags.HasFlag(Flags.InlineMoving))
- sb.AppendLine(Localization.Volume_has_log_withing_itself_and_is_moving_it_out);
+ sb.AppendLine(Localization.Volume_has_log_within_itself_and_is_moving_it_out);
if(jfsSb.s_flags.HasFlag(Flags.BadSAIT))
sb.AppendLine(Localization.Volume_has_bad_current_secondary_ait);
diff --git a/Aaru.Filesystems/Localization/Localization.Designer.cs b/Aaru.Filesystems/Localization/Localization.Designer.cs
index aa0a7ec68..de09465bc 100644
--- a/Aaru.Filesystems/Localization/Localization.Designer.cs
+++ b/Aaru.Filesystems/Localization/Localization.Designer.cs
@@ -11,32 +11,46 @@ namespace Aaru.Filesystems {
using System;
- [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Localization {
- private static System.Resources.ResourceManager resourceMan;
+ private static global::System.Resources.ResourceManager resourceMan;
- private static System.Globalization.CultureInfo resourceCulture;
+ private static global::System.Globalization.CultureInfo resourceCulture;
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Localization() {
}
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static System.Resources.ResourceManager ResourceManager {
+ ///
+ /// 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 {
get {
- if (object.Equals(null, resourceMan)) {
- System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aaru.Filesystems.Localization.Localization", typeof(Localization).Assembly);
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aaru.Filesystems.Localization.Localization", typeof(Localization).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static System.Globalization.CultureInfo Culture {
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
@@ -45,3611 +59,1620 @@ namespace Aaru.Filesystems {
}
}
- internal static string Boot_Block {
+ ///
+ /// 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("Boot_Block", resourceCulture);
- }
- }
-
- internal static string Boot_block_is_in_new_format {
- get {
- return ResourceManager.GetString("Boot_block_is_in_new_format", resourceCulture);
- }
- }
-
- internal static string Boot_block_should_be_executed {
- get {
- return ResourceManager.GetString("Boot_block_should_be_executed", resourceCulture);
- }
- }
-
- 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);
- }
- }
-
- internal static string Allocate_secondary_sound_buffer_at_boot {
- get {
- return ResourceManager.GetString("Allocate_secondary_sound_buffer_at_boot", resourceCulture);
- }
- }
-
- internal static string Allocate_secondary_sound_and_video_buffers_at_boot {
- get {
- return ResourceManager.GetString("Allocate_secondary_sound_and_video_buffers_at_boot", resourceCulture);
- }
- }
-
- internal static string System_filename_0 {
- get {
- return ResourceManager.GetString("System_filename_0", resourceCulture);
- }
- }
-
- internal static string Finder_filename_0 {
- get {
- return ResourceManager.GetString("Finder_filename_0", resourceCulture);
- }
- }
-
- internal static string Debugger_filename_0 {
- get {
- return ResourceManager.GetString("Debugger_filename_0", resourceCulture);
- }
- }
-
- internal static string Disassembler_filename_0 {
- get {
- return ResourceManager.GetString("Disassembler_filename_0", resourceCulture);
- }
- }
-
- internal static string Startup_screen_filename_0 {
- get {
- return ResourceManager.GetString("Startup_screen_filename_0", resourceCulture);
- }
- }
-
- internal static string First_program_to_execute_at_boot_0 {
- get {
- return ResourceManager.GetString("First_program_to_execute_at_boot_0", resourceCulture);
- }
- }
-
- internal static string Clipboard_filename_0 {
- get {
- return ResourceManager.GetString("Clipboard_filename_0", resourceCulture);
- }
- }
-
- internal static string Maximum_opened_files_0 {
- get {
- return ResourceManager.GetString("Maximum_opened_files_0", resourceCulture);
- }
- }
-
- internal static string Event_queue_size_0 {
- get {
- return ResourceManager.GetString("Event_queue_size_0", resourceCulture);
- }
- }
-
- internal static string Heap_size_with_128KiB_of_RAM_0_bytes {
- get {
- return ResourceManager.GetString("Heap_size_with_128KiB_of_RAM_0_bytes", resourceCulture);
- }
- }
-
- internal static string Heap_size_with_256KiB_of_RAM_0_bytes {
- get {
- return ResourceManager.GetString("Heap_size_with_256KiB_of_RAM_0_bytes", resourceCulture);
- }
- }
-
- 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);
- }
- }
-
- internal static string AppleDOS_Name {
- get {
- 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);
- }
- }
-
- internal static string There_are_reused_CNIDs {
- get {
- return ResourceManager.GetString("There_are_reused_CNIDs", resourceCulture);
- }
- }
-
- internal static string Volume_is_journaled {
- get {
- return ResourceManager.GetString("Volume_is_journaled", resourceCulture);
- }
- }
-
- internal static string Volume_is_seriously_inconsistent {
- get {
- return ResourceManager.GetString("Volume_is_seriously_inconsistent", resourceCulture);
- }
- }
-
- internal static string Volume_is_locked_by_software {
- get {
- return ResourceManager.GetString("Volume_is_locked_by_software", resourceCulture);
- }
- }
-
- internal static string _0_files_on_root_directory {
- get {
- return ResourceManager.GetString("_0_files_on_root_directory", resourceCulture);
- }
- }
-
- internal static string _0_directories_on_root_directory {
- get {
- return ResourceManager.GetString("_0_directories_on_root_directory", resourceCulture);
- }
- }
-
- internal static string _0_directories_on_volume {
- get {
- return ResourceManager.GetString("_0_directories_on_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_on_next_mount {
- get {
- return ResourceManager.GetString("Disk_surface_should_be_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_on_root_directory {
- get {
- return ResourceManager.GetString("_0_entries_on_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 Root_directory_starts_on_cluster_0 {
- get {
- return ResourceManager.GetString("Root_directory_starts_on_cluster_0", 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);
- }
- }
-
- internal static string This_is_a_SegaCD_MegaCD_disc {
- get {
- return ResourceManager.GetString("This_is_a_SegaCD_MegaCD_disc", resourceCulture);
- }
- }
-
- internal static string This_is_a_Sega_Saturn_disc {
- get {
- return ResourceManager.GetString("This_is_a_Sega_Saturn_disc", resourceCulture);
- }
- }
-
- internal static string This_is_a_Sega_Dreamcast_disc {
- get {
- return ResourceManager.GetString("This_is_a_Sega_Dreamcast_disc", resourceCulture);
- }
- }
-
- internal static string FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION {
- get {
- return ResourceManager.GetString("FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION", resourceCulture);
- }
- }
-
- internal static string FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION_border {
- get {
- return ResourceManager.GetString("FILE_STRUCTURE_VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture);
- }
- }
-
- internal static string VOLUME_DESCRIPTOR_INFORMATION {
- get {
- return ResourceManager.GetString("VOLUME_DESCRIPTOR_INFORMATION", resourceCulture);
- }
- }
-
- internal static string VOLUME_DESCRIPTOR_INFORMATION_border {
- get {
- return ResourceManager.GetString("VOLUME_DESCRIPTOR_INFORMATION_border", resourceCulture);
- }
- }
-
- internal static string System_identifier_0 {
- get {
- return ResourceManager.GetString("System_identifier_0", resourceCulture);
- }
- }
-
- internal static string Volume_identifier_0 {
- get {
- 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);
- }
- }
-
- 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" +
- "ng_Information_5", resourceCulture);
- }
- }
-
- internal static string tor_Sector_0_Raw_Audio {
- get {
- return ResourceManager.GetString("tor_Sector_0_Raw_Audio", resourceCulture);
- }
- }
-
- internal static string tor_Sector_0_1_2_3_Raw_Mode_4 {
- get {
- return ResourceManager.GetString("tor_Sector_0_1_2_3_Raw_Mode_4", resourceCulture);
- }
- }
-
- 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("tor_Sector_0_1_2_3_Raw_Mode_two_Form_4_File_Number_5_Channel_Number_6_Submode_7_C" +
- "oding_Information_8", resourceCulture);
- }
- }
-
- 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);
- }
- }
-
- 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);
- }
- }
-
- internal static string Cannot_find_root_directory {
- get {
- return ResourceManager.GetString("Cannot_find_root_directory", resourceCulture);
- }
- }
-
- internal static string File_0_gets_truncated {
- get {
- return ResourceManager.GetString("File_0_gets_truncated", resourceCulture);
- }
- }
-
- internal static string Sector_0_file_ID_1 {
- get {
- return ResourceManager.GetString("Sector_0_file_ID_1", resourceCulture);
- }
- }
-
- internal static string Current_sector_0 {
- get {
- return ResourceManager.GetString("Current_sector_0", resourceCulture);
- }
- }
-
- internal static string Unknown_LisaFS_version_0 {
- get {
- return ResourceManager.GetString("Unknown_LisaFS_version_0", resourceCulture);
- }
- }
-
- internal static string Volume_password_0 {
- get {
- return ResourceManager.GetString("Volume_password_0", resourceCulture);
- }
- }
-
- internal static string Volume_ID_0_X16 {
- get {
- return ResourceManager.GetString("Volume_ID_0_X16", resourceCulture);
- }
- }
-
- internal static string Backup_volume_ID_0 {
- get {
- return ResourceManager.GetString("Backup_volume_ID_0", resourceCulture);
- }
- }
-
- internal static string Master_copy_ID_0 {
- get {
- return ResourceManager.GetString("Master_copy_ID_0", resourceCulture);
- }
- }
-
- internal static string Volume_is_number_0_of_1 {
- get {
- return ResourceManager.GetString("Volume_is_number_0_of_1", resourceCulture);
- }
- }
-
- 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);
- }
- }
-
- 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);
- }
- }
-
- internal static string Volume_catalog_created_on_0 {
- get {
- return ResourceManager.GetString("Volume_catalog_created_on_0", resourceCulture);
- }
- }
-
- internal static string Volume_backed_up_on_0 {
- get {
- return ResourceManager.GetString("Volume_backed_up_on_0", resourceCulture);
- }
- }
-
- internal static string Volume_scavenged_on_0 {
- get {
- return ResourceManager.GetString("Volume_scavenged_on_0", resourceCulture);
- }
- }
-
- internal static string MDDF_is_in_block_0 {
- get {
- return ResourceManager.GetString("MDDF_is_in_block_0", resourceCulture);
- }
- }
-
- internal static string There_are_0_reserved_blocks_before_volume {
- get {
- return ResourceManager.GetString("There_are_0_reserved_blocks_before_volume", resourceCulture);
- }
- }
-
- internal static string _0_blocks_minus_one {
- get {
- return ResourceManager.GetString("_0_blocks_minus_one", resourceCulture);
- }
- }
-
- internal static string _0_blocks_minus_one_minus_MDDF_offset {
- get {
- return ResourceManager.GetString("_0_blocks_minus_one_minus_MDDF_offset", resourceCulture);
- }
- }
-
- internal static string _0_blocks_in_volume {
- get {
- return ResourceManager.GetString("_0_blocks_in_volume", resourceCulture);
- }
- }
-
- internal static string _0_bytes_per_sector_uncooked {
- get {
- return ResourceManager.GetString("_0_bytes_per_sector_uncooked", resourceCulture);
- }
- }
-
- internal static string _0_blocks_per_cluster {
- get {
- return ResourceManager.GetString("_0_blocks_per_cluster", resourceCulture);
- }
- }
-
- internal static string _0_blocks_in_filesystem {
- get {
- 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);
- }
- }
-
- internal static string Volume_size_0_blocks_1_bytes {
- get {
- return ResourceManager.GetString("Volume_size_0_blocks_1_bytes", resourceCulture);
- }
- }
-
- 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);
- }
- }
-
- 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_at_0 {
- get {
- return ResourceManager.GetString("Volume_last_booted_at_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_locked_on_hardware {
- get {
- return ResourceManager.GetString("Volume_is_locked_on_hardware", 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_does_not_require_cache {
- get {
- return ResourceManager.GetString("Volume_does_not_require_cache", resourceCulture);
- }
- }
-
- internal static string Volume_state_is_inconsistent {
- get {
- return ResourceManager.GetString("Volume_state_is_inconsistent", resourceCulture);
- }
- }
-
- internal static string Volume_is_locked_on_software {
- get {
- return ResourceManager.GetString("Volume_is_locked_on_software", 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_files_on_volume {
- get {
- return ResourceManager.GetString("_0_files_on_volume", resourceCulture);
- }
- }
-
- internal static string _0_folders_on_volume {
- get {
- return ResourceManager.GetString("_0_folders_on_volume", resourceCulture);
+ 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);
}
}
- 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);
- }
- }
-
+ ///
+ /// 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);
}
}
- internal static string Journal_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes {
+ ///
+ /// Looks up a localized string similar to {0} blocks ({1} bytes).
+ ///
+ internal static string _0_blocks_1_bytes {
get {
- return ResourceManager.GetString("Journal_resides_in_block_0_of_allocation_group_1_and_runs_for_2_blocks_3_bytes", resourceCulture);
+ return ResourceManager.GetString("_0_blocks_1_bytes", resourceCulture);
}
}
- internal static string Journal_starts_in_byte_0_and_has_1_bytes_in_2_blocks {
+ ///
+ /// 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("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);
+ 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);
}
}
- internal static string _0_is_first_data_block {
+ ///
+ /// 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_is_first_data_block", resourceCulture);
+ return ResourceManager.GetString("_0_blocks_for_bootloader_1_bytes", resourceCulture);
}
}
- internal static string Default_UID_0_GID_1 {
+ ///
+ /// Looks up a localized string similar to {0} blocks free.
+ ///
+ internal static string _0_blocks_free {
get {
- return ResourceManager.GetString("Default_UID_0_GID_1", resourceCulture);
+ return ResourceManager.GetString("_0_blocks_free", resourceCulture);
}
}
- internal static string Block_group_number_is_0 {
+ ///
+ /// Looks up a localized string similar to {0} blocks free ({1} bytes).
+ ///
+ internal static string _0_blocks_free_1_bytes {
get {
- return ResourceManager.GetString("Block_group_number_is_0", resourceCulture);
+ return ResourceManager.GetString("_0_blocks_free_1_bytes", resourceCulture);
}
}
- internal static string Group_descriptor_size_is_0_bytes {
+ ///
+ /// Looks up a localized string similar to {0} blocks in cylinder 0.
+ ///
+ internal static string _0_blocks_in_cylinder_zero {
get {
- return ResourceManager.GetString("Group_descriptor_size_is_0_bytes", resourceCulture);
+ return ResourceManager.GetString("_0_blocks_in_cylinder_zero", resourceCulture);
}
}
- internal static string First_metablock_group_is_0 {
+ ///
+ /// Looks up a localized string similar to {0} blocks in filesystem.
+ ///
+ internal static string _0_blocks_in_filesystem {
get {
- return ResourceManager.GetString("First_metablock_group_is_0", resourceCulture);
+ return ResourceManager.GetString("_0_blocks_in_filesystem", resourceCulture);
}
}
- internal static string RAID_stride_0 {
+ ///
+ /// Looks up a localized string similar to {0} blocks in volume.
+ ///
+ internal static string _0_blocks_in_volume {
get {
- return ResourceManager.GetString("RAID_stride_0", resourceCulture);
+ 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);
}
}
- internal static string _0_seconds_for_multi_mount_protection_wait_on_block_1 {
+ ///
+ /// 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_seconds_for_multi_mount_protection_wait_on_block_1", resourceCulture);
+ 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);
}
}
- internal static string Hash_seed_0_1_2_3_version_4 {
+ ///
+ /// Looks up a localized string similar to {0} frags in a block.
+ ///
+ internal static string _0_frags_in_a_block {
get {
- return ResourceManager.GetString("Hash_seed_0_1_2_3_version_4", resourceCulture);
+ return ResourceManager.GetString("_0_frags_in_a_block", resourceCulture);
}
}
- internal static string Journal_UUID_0 {
+ ///
+ /// Looks up a localized string similar to {0} free blocks..
+ ///
+ internal static string _0_free_blocks {
get {
- return ResourceManager.GetString("Journal_UUID_0", resourceCulture);
+ return ResourceManager.GetString("_0_free_blocks", resourceCulture);
}
}
- internal static string Journal_has_inode_0 {
+ ///
+ /// Looks up a localized string similar to {0} free blocks ({1} bytes).
+ ///
+ internal static string _0_free_blocks_1_bytes {
get {
- return ResourceManager.GetString("Journal_has_inode_0", resourceCulture);
+ return ResourceManager.GetString("_0_free_blocks_1_bytes", resourceCulture);
}
}
- internal static string Journal_is_on_device_0 {
+ ///
+ /// 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("Journal_is_on_device_0", resourceCulture);
+ return ResourceManager.GetString("_0_free_blocks_on_list_1_bytes", resourceCulture);
}
}
- internal static string Journal_backup_type_0 {
+ ///
+ /// Looks up a localized string similar to {0} free clusters.
+ ///
+ internal static string _0_free_clusters {
get {
- return ResourceManager.GetString("Journal_backup_type_0", resourceCulture);
+ return ResourceManager.GetString("_0_free_clusters", resourceCulture);
}
}
- internal static string Last_orphaned_inode_is_0 {
+ ///
+ /// Looks up a localized string similar to {0} free frags.
+ ///
+ internal static string _0_free_frags {
get {
- return ResourceManager.GetString("Last_orphaned_inode_is_0", resourceCulture);
+ return ResourceManager.GetString("_0_free_frags", resourceCulture);
}
}
- internal static string There_are_no_orphaned_inodes {
+ ///
+ /// Looks up a localized string similar to {0} free inodes.
+ ///
+ internal static string _0_free_inodes {
get {
- return ResourceManager.GetString("There_are_no_orphaned_inodes", resourceCulture);
+ 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" +
@@ -3657,3228 +1680,9176 @@ namespace Aaru.Filesystems {
}
}
- 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_on_volume {
- get {
- return ResourceManager.GetString("_0_zones_on_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_on_volume_1_free_2 {
- get {
- return ResourceManager.GetString("_0_inodes_on_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 Superblock_is_under_modification {
- get {
- return ResourceManager.GetString("Superblock_is_under_modification", 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_withing_itself {
- get {
- return ResourceManager.GetString("Volume_has_log_withing_itself", resourceCulture);
- }
- }
-
- internal static string Volume_has_log_withing_itself_and_is_moving_it_out {
- get {
- return ResourceManager.GetString("Volume_has_log_withing_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_on_volume_1_bytes {
- get {
- return ResourceManager.GetString("_0_zones_on_volume_1_bytes", resourceCulture);
- }
- }
-
- internal static string _0_bytes_block {
- get {
- return ResourceManager.GetString("_0_bytes_block", resourceCulture);
- }
- }
-
- internal static string _0_inodes_on_volume {
- get {
- return ResourceManager.GetString("_0_inodes_on_volume", 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_devices_uses_2048_bytes_sector {
- get {
- return ResourceManager.GetString("ProDOS_uses_512_bytes_sector_while_devices_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);
- }
- }
-
- 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 Bitmap_starts_in_block_0 {
- get {
- return ResourceManager.GetString("Bitmap_starts_in_block_0", 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);
}
}
- internal static string Root_object_container_starts_in_block_0 {
+ ///
+ /// Looks up a localized string similar to Alexander Osipov DOS file system.
+ ///
+ internal static string Alexander_Osipov_DOS_file_system {
get {
- return ResourceManager.GetString("Root_object_container_starts_in_block_0", resourceCulture);
+ 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 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);
}
}
- internal static string Volume_is_case_sensitive {
+ ///
+ /// 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("Volume_is_case_sensitive", resourceCulture);
+ return ResourceManager.GetString("Root_object_container_starts_in_block_0", resourceCulture);
}
}
- internal static string Volume_moves_deleted_files_to_a_recycled_folder {
+ ///
+ /// Looks up a localized string similar to Root resides on inode {0}.
+ ///
+ internal static string Root_resides_on_inode_0 {
get {
- return ResourceManager.GetString("Volume_moves_deleted_files_to_a_recycled_folder", resourceCulture);
+ return ResourceManager.GetString("Root_resides_on_inode_0", resourceCulture);
}
}
- internal static string SolarFS_Name {
+ ///
+ /// Looks up a localized string similar to Root starts at frag {0}.
+ ///
+ internal static string Root_starts_at_frag_0 {
get {
- return ResourceManager.GetString("SolarFS_Name", resourceCulture);
+ 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 {
+ get {
+ return ResourceManager.GetString("System_identifier_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to System, owner, group, world.
+ ///
+ internal static string System_owner_group_world {
+ get {
+ return ResourceManager.GetString("System_owner_group_world", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to System type: 0x{0:X2}.
+ ///
+ internal static string System_type_0 {
+ get {
+ return ResourceManager.GetString("System_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SYSTEM USE SHARING PROTOCOL INFORMATION:.
+ ///
+ internal static string SYSTEM_USE_SHARING_PROTOCOL_INFORMATION {
+ get {
+ return ResourceManager.GetString("SYSTEM_USE_SHARING_PROTOCOL_INFORMATION", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ----------------------------------------.
+ ///
+ internal static string SYSTEM_USE_SHARING_PROTOCOL_INFORMATION_border {
+ get {
+ return ResourceManager.GetString("SYSTEM_USE_SHARING_PROTOCOL_INFORMATION_border", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to System Use Sharing Protocol present..
+ ///
+ internal static string System_Use_Sharing_Protocol_present {
+ get {
+ return ResourceManager.GetString("System_Use_Sharing_Protocol_present", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to System V Release 2 filesystem.
+ ///
+ internal static string System_V_Release_2_filesystem {
+ get {
+ return ResourceManager.GetString("System_V_Release_2_filesystem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to System V Release 4 filesystem.
+ ///
+ internal static string System_V_Release_4_filesystem {
+ get {
+ return ResourceManager.GetString("System_V_Release_4_filesystem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX System V filesystem.
+ ///
+ internal static string SysVfs_Name {
+ get {
+ return ResourceManager.GetString("SysVfs_Name", 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 {
+ get {
+ return ResourceManager.GetString("The_following_information_may_be_incorrect_for_this_volume", 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 {
+ get {
+ return ResourceManager.GetString("There_are_0_reserved_blocks_before_volume", 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 {
+ get {
+ return ResourceManager.GetString("There_are_a_lot_of_variants_of_UFS_using_overlapped_values_on_same_fields", 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 {
+ get {
+ return ResourceManager.GetString("There_are_an_estimate_of_0_free_inodes_before_next_search_start", 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 {
+ get {
+ return ResourceManager.GetString("There_are_bad_blocks_in_the_extents_file", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to There are no orphaned inodes.
+ ///
+ internal static string There_are_no_orphaned_inodes {
+ get {
+ return ResourceManager.GetString("There_are_no_orphaned_inodes", 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 {
+ get {
+ return ResourceManager.GetString("Third_0_partition_starts_at_sector_1", 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 {
+ get {
+ return ResourceManager.GetString("This_home_block_is_on_sector_0_VBN_1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This is a Sega Dreamcast disc..
+ ///
+ internal static string This_is_a_Sega_Dreamcast_disc {
+ get {
+ return ResourceManager.GetString("This_is_a_Sega_Dreamcast_disc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This is a Sega Saturn disc..
+ ///
+ internal static string This_is_a_Sega_Saturn_disc {
+ get {
+ return ResourceManager.GetString("This_is_a_Sega_Saturn_disc", 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 {
+ get {
+ return ResourceManager.GetString("This_is_the_primary_pack", 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 {
+ get {
+ return ResourceManager.GetString("This_may_not_be_HPFS_following_information_may_be_not_correct", 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 {
+ get {
+ return ResourceManager.GetString("This_superblock_resides_on_physical_block_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This version is not supported yet..
+ ///
+ internal static string This_version_is_not_supported_yet {
+ get {
+ return ResourceManager.GetString("This_version_is_not_supported_yet", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This volume may be corrupted..
+ ///
+ internal static string This_volume_may_be_corrupted {
+ get {
+ return ResourceManager.GetString("This_volume_may_be_corrupted", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Title: {0}.
+ ///
+ internal static string Title_0 {
+ get {
+ return ResourceManager.GetString("Title_0", 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 {
+ get {
+ return ResourceManager.GetString("tor_Sector_0_1_2_3_Raw_Mode_4", 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 {
+ 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);
+ }
+ }
+
+ ///
+ /// 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" +
+ "ng_Information_5", resourceCulture);
+ }
+ }
+
+ ///
+ /// 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 {
+ get {
+ return ResourceManager.GetString("Track_allocation_is_forward", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Track allocation is reverse.
+ ///
+ internal static string Track_allocation_is_reverse {
+ get {
+ return ResourceManager.GetString("Track_allocation_is_reverse", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Traversing directory..
+ ///
+ internal static string Traversing_directory {
+ get {
+ return ResourceManager.GetString("Traversing_directory", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Trying all known definitions..
+ ///
+ internal static string Trying_all_known_definitions {
+ get {
+ return ResourceManager.GetString("Trying_all_known_definitions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Trying definition "{0}".
+ ///
+ internal static string Trying_definition_0 {
+ get {
+ return ResourceManager.GetString("Trying_definition_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Trying to load definitions..
+ ///
+ internal static string Trying_to_load_definitions {
+ get {
+ return ResourceManager.GetString("Trying_to_load_definitions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to TurboGrafx CD Virtual Console.
+ ///
+ internal static string TurboGrafx_CD_Virtual_Console {
+ get {
+ return ResourceManager.GetString("TurboGrafx_CD_Virtual_Console", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Universal Disk Format.
+ ///
+ internal static string UDF_Name {
+ get {
+ return ResourceManager.GetString("UDF_Name", 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 {
+ get {
+ return ResourceManager.GetString("Volume_permissions_r_read_w_write_c_create_d_delete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume primes DASD on boot.
+ ///
+ internal static string Volume_primes_DASD_on_boot {
+ get {
+ return ResourceManager.GetString("Volume_primes_DASD_on_boot", 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 {
+ get {
+ return ResourceManager.GetString("Volume_record_spans_from_block_0_to_block_1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume remounts read-only on error.
+ ///
+ internal static string Volume_remounts_read_only_on_error {
+ get {
+ return ResourceManager.GetString("Volume_remounts_read_only_on_error", 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 {
+ get {
+ return ResourceManager.GetString("Volume_requires_UDF_version_0_1_to_be_read", 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 {
+ get {
+ return ResourceManager.GetString("Volume_requires_UDF_version_0_1_to_be_written_to", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume reserves {0} sectors for system.
+ ///
+ internal static string Volume_reserves_0_sectors_for_system {
+ get {
+ return ResourceManager.GetString("Volume_reserves_0_sectors_for_system", 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 {
+ get {
+ return ResourceManager.GetString("Volume_reserves_1_tracks_0_sectors_for_system", 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 {
+ get {
+ return ResourceManager.GetString("Volume_sends_TRIM_UNMAP_commands_to_underlying_device", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume serial: {0}.
+ ///
+ internal static string Volume_serial_0 {
+ get {
+ return ResourceManager.GetString("Volume_serial_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume serial: {0:X8}.
+ ///
+ internal static string Volume_serial_0_X8 {
+ get {
+ return ResourceManager.GetString("Volume_serial_0_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume Serial Number: {0}.
+ ///
+ internal static string Volume_Serial_Number_0 {
+ get {
+ return ResourceManager.GetString("Volume_Serial_Number_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume serial number: {0:X16}.
+ ///
+ internal static string Volume_serial_number_0_X16 {
+ get {
+ return ResourceManager.GetString("Volume_serial_number_0_X16", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume serial number: {0:X8}.
+ ///
+ internal static string Volume_serial_number_0_X8 {
+ get {
+ return ResourceManager.GetString("Volume_serial_number_0_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume set identifier: {0}.
+ ///
+ internal static string Volume_set_identifier_0 {
+ get {
+ return ResourceManager.GetString("Volume_set_identifier_0", 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 {
+ get {
+ return ResourceManager.GetString("Volume_should_be_checked_on_next_mount", 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 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 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" +
@@ -6886,555 +10857,183 @@ 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);
}
}
- internal static string Squash_Name {
+ ///
+ /// 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 {
get {
- return ResourceManager.GetString("Squash_Name", resourceCulture);
+ return ResourceManager.GetString("WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block", resourceCulture);
}
}
- internal static string Squash_file_system {
+ ///
+ /// Looks up a localized string similar to Wii.
+ ///
+ internal static string Wii {
get {
- return ResourceManager.GetString("Squash_file_system", resourceCulture);
+ return ResourceManager.GetString("Wii", resourceCulture);
}
}
- internal static string Volume_version_0_1 {
+ ///
+ /// Looks up a localized string similar to Wii Backup.
+ ///
+ internal static string Wii_Backup {
get {
- return ResourceManager.GetString("Volume_version_0_1", resourceCulture);
+ return ResourceManager.GetString("Wii_Backup", resourceCulture);
}
}
- internal static string Volume_has_0_bytes_per_block {
+ ///
+ /// Looks up a localized string similar to Wii channel.
+ ///
+ internal static string Wii_channel {
get {
- return ResourceManager.GetString("Volume_has_0_bytes_per_block", resourceCulture);
+ return ResourceManager.GetString("Wii_channel", resourceCulture);
}
}
- internal static string Volume_has_0_inodes {
+ ///
+ /// Looks up a localized string similar to WiiFit.
+ ///
+ internal static string WiiFit {
get {
- return ResourceManager.GetString("Volume_has_0_inodes", resourceCulture);
+ return ResourceManager.GetString("WiiFit", resourceCulture);
}
}
- internal static string Volume_is_compressed_using_LZ4 {
+ ///
+ /// Looks up a localized string similar to WiiWare.
+ ///
+ internal static string WiiWare {
get {
- return ResourceManager.GetString("Volume_is_compressed_using_LZ4", resourceCulture);
+ return ResourceManager.GetString("WiiWare", resourceCulture);
}
}
- internal static string Volume_is_compressed_using_LZO {
+ ///
+ /// Looks up a localized string similar to Window: {0}.
+ ///
+ internal static string Window_0 {
get {
- return ResourceManager.GetString("Volume_is_compressed_using_LZO", resourceCulture);
+ return ResourceManager.GetString("Window_0", resourceCulture);
}
}
- internal static string Volume_is_compressed_using_LZMA {
+ ///
+ /// Looks up a localized string similar to Windows NT (8.3 mixed case).
+ ///
+ internal static string Windows_NT_8_3_mixed_case {
get {
- return ResourceManager.GetString("Volume_is_compressed_using_LZMA", resourceCulture);
+ return ResourceManager.GetString("Windows_NT_8_3_mixed_case", resourceCulture);
}
}
- internal static string Volume_is_compressed_using_XZ {
+ ///
+ /// Looks up a localized string similar to , with multi-user patches.
+ ///
+ internal static string with_multi_user_patches {
get {
- return ResourceManager.GetString("Volume_is_compressed_using_XZ", resourceCulture);
+ return ResourceManager.GetString("with_multi_user_patches", resourceCulture);
}
}
- internal static string Volume_is_compressed_using_GZIP {
+ ///
+ /// Looks up a localized string similar to , with multi-user support.
+ ///
+ internal static string with_multi_user_support {
get {
- return ResourceManager.GetString("Volume_is_compressed_using_GZIP", resourceCulture);
+ return ResourceManager.GetString("with_multi_user_support", resourceCulture);
}
}
- internal static string Volume_is_compressed_using_Zstandard {
+ ///
+ /// Looks up a localized string similar to Writings should be verified.
+ ///
+ internal static string Writings_should_be_verified {
get {
- return ResourceManager.GetString("Volume_is_compressed_using_Zstandard", resourceCulture);
+ return ResourceManager.GetString("Writings_should_be_verified", resourceCulture);
}
}
- internal static string Volume_is_compressed_using_unknown_algorithm_0 {
+ ///
+ /// Looks up a localized string similar to FATX Filesystem Plugin.
+ ///
+ internal static string XboxFatPlugin_Name {
get {
- return ResourceManager.GetString("Volume_is_compressed_using_unknown_algorithm_0", resourceCulture);
- }
- }
-
- internal static string SysVfs_Name {
- get {
- return ResourceManager.GetString("SysVfs_Name", resourceCulture);
+ return ResourceManager.GetString("XboxFatPlugin_Name", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to XENIX filesystem.
+ ///
internal static string XENIX_filesystem {
get {
return ResourceManager.GetString("XENIX_filesystem", resourceCulture);
}
}
- internal static string _512_bytes_per_block {
- get {
- 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 WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_sector {
- get {
- return ResourceManager.GetString("WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_sector", 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_in_0 {
- get {
- return ResourceManager.GetString("Volume_was_last_written_in_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);
- }
- }
-
- internal static string XFS_Name {
- get {
- return ResourceManager.GetString("XFS_Name", resourceCulture);
- }
- }
-
- 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);
- }
- }
-
+ ///
+ /// Looks up a localized string similar to XFS filesystem.
+ ///
internal static string XFS_filesystem {
get {
return ResourceManager.GetString("XFS_filesystem", resourceCulture);
}
}
- internal static string _0_data_blocks_in_volume_1_free {
+ ///
+ /// Looks up a localized string similar to XFS Filesystem Plugin.
+ ///
+ internal static string XFS_Name {
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);
+ return ResourceManager.GetString("XFS_Name", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Xia filesystem.
+ ///
internal static string Xia_Name {
get {
return ResourceManager.GetString("Xia_Name", resourceCulture);
}
}
- internal static string _0_bytes_per_zone {
- get {
- return ResourceManager.GetString("_0_bytes_per_zone", 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_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);
- }
- }
-
- internal static string ZFS_Name {
- get {
- return ResourceManager.GetString("ZFS_Name", resourceCulture);
- }
- }
-
+ ///
+ /// Looks up a localized string similar to ZFS filesystem.
+ ///
internal static string ZFS_filesystem {
get {
return ResourceManager.GetString("ZFS_filesystem", resourceCulture);
}
}
- internal static string _0_is_not_set {
+ ///
+ /// Looks up a localized string similar to ZFS Filesystem Plugin.
+ ///
+ internal static string ZFS_Name {
get {
- return ResourceManager.GetString("_0_is_not_set", resourceCulture);
+ return ResourceManager.GetString("ZFS_Name", resourceCulture);
}
}
- internal static string _0_equals_1_elements_nvlist_array_unable_to_print {
+ ///
+ /// Looks up a localized string similar to zisofs compression present..
+ ///
+ internal static string zisofs_compression_present {
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);
+ return ResourceManager.GetString("zisofs_compression_present", resourceCulture);
}
}
}
diff --git a/Aaru.Filesystems/Localization/Localization.es.resx b/Aaru.Filesystems/Localization/Localization.es.resx
new file mode 100644
index 000000000..e35a748f6
--- /dev/null
+++ b/Aaru.Filesystems/Localization/Localization.es.resx
@@ -0,0 +1,3678 @@
+
+
+ text/microsoft-resx
+
+
+ 1.3
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
+ PublicKeyToken=b77a5c561934e089
+
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
+ PublicKeyToken=b77a5c561934e089
+
+
+
+ (acl): Activar ACLs POSIX
+
+
+ Sistema de Ficheros de Disco Avanzado de Acorn
+
+
+ Sistema de Ficheros de Disco Avanzado de Acorn
+
+
+ Bloque raíz activo: {0}
+
+
+ La instantánea activa tiene el ID {0}, en el nodo-i {1}, con {2} bloques reservados, y la lista empezando en el bloque {3}
+
+
+ El contenedor de espacio administrativo comienza en el bloque {0}
+
+
+ Sistema de ficheros de DOS de Alexander Osipov
+
+
+ Asignar búferes secundarios de sonido y video en el arranque.
+
+
+ Asignar búfer secundario de sonido en el arranque.
+
+
+ Bloques de asignación del volumen HFS+: {0}
+
+
+ El descriptor del mapa de bits de asignación comienza en el bloque {0}
+
+
+ El Archivo de Asignación ocupa {0} bytes.
+
+
+ Todas las copias de la FAT son iguales.
+
+
+ La siguiente información puede ser incorrecta
+
+
+ Sistema de ficheros de Amiga DOS
+
+
+ Extensiones de Amiga presentes.
+
+
+ Sistema de ficheros rápido de Amiga
+
+
+ Sistema de ficheros rápido de Amiga con caché de directorio
+
+
+ Sistema de ficheros rápido de Amiga con carácteres internacionales
+
+
+ Sistema de ficheros rápido de Amiga con nombres de archivo largos
+
+
+ Sistema de ficheros original de Amiga
+
+
+ Sistema de ficheros original de Amiga con caché de directorio
+
+
+ Sistema de ficheros original de Amiga con carácteres internacionales
+
+
+ Sistema de ficheros original de Amiga con nombres de archivo largos
+
+
+ Sistema de ficheros de DOS de Alexander Osipov
+
+
+ Sistema de ficheros Apple (APFS)
+
+
+ Sistema de ficheros de Apple DOS
+
+
+ Sistema de ficheros Apple HFS+
+
+
+ Sistema de ficheros de Apple Macintosh
+
+
+ Extensiones de Apple presentes.
+
+
+ Sistema de ficheros Apple (APFS)
+
+
+ Identificador de aplicación: {0}
+
+
+ FAT12 de Apricot
+
+
+ Protocolo de Intercambio de Atributos Arbitrarios presente.
+
+
+ ASCII
+
+
+ FAT12 de Atari
+
+
+ FAT16 de Atari
+
+
+ Sistema de ficheros de AtheOS
+
+
+ Sistema de ficheros de AtheOS
+
+
+ El Archivo de Atributos ocupa {0} bytes.
+
+
+ El búfer de transmisión de audio tiene {0} bytes.
+
+
+ La recomendación de edad para Australia es {0}
+
+
+ Un archivo puede ocupar un máximo de {0} bytes
+
+
+ Volumen vertebral
+
+
+ El INDEXF.SYS;1 de respaldo está en el sector {0} (VBN {1})
+
+
+ Número de sencuencia de respaldo: {0}
+
+
+ ID del volumen de respaldo: 0x{0:X16}
+
+
+ Sistema de ficheros Be
+
+
+ ¡¡¡ATENCIÓN!!! ¡La siguiente información podría estar completamente incorrecta!
+
+
+ Sistema de ficheros de arranque de UNIX
+
+
+ Big-endian
+
+
+ BeFS big-endian
+
+
+ Sistema de ficheros big-endian UFS de BorderWare
+
+
+ Sistema de ficheros big-endian UFS2
+
+
+ Sistema de ficheros big-endian UFS
+
+
+ La unidad BIOS es {0:X2}h
+
+
+ Número de unidad BIOS: 0x{0:X2}
+
+
+ La extensión del mapa de bits está en el bloque {0}
+
+
+ El mapa de bits reside en el bloque {0}
+
+
+ El mapa de bits comienza en el bloque {0}
+
+
+ 1 << block_shift == block_size => 1 << {0} == {1} (debería ser {2})
+
+
+ El número del grupo del bloque es {0}
+
+
+ Tamaño del bloque: {0} bytes
+
+
+ SHA1 de la imagen de arranque: {0}
+
+
+ La imagen de arranque comienza en el sector {0} y ocupa {1} sectores
+
+
+ La imagen de arranque se cargará en 0x{0:X8}
+
+
+ La imagen de arranque se cargará en el segmento {0:X4}h
+
+
+ Arrancable en {0}
+
+
+ El bloque de arranque apunta a {0} como el bloque raíz
+
+
+ El área de arranque comienza en el bloque {0}
+
+
+ Bloque de arranque:
+
+
+ El bloque de arranque está en el nuevo formato.
+
+
+ El bloque de arranque debe ejecutarse.
+
+
+ Código de arranque: 0x{0:X8}
+
+
+ El código de arranque corresponde a {0}
+
+
+ SHA1 del código de arranque: {0}
+
+
+ Entorno de arranque: 0x{0:X8}
+
+
+ El descriptor del archivo de arranque comienza en el bloque {0}
+
+
+ El archivo de arranque comienza en el bloque {0} y ocupa {1} bytes
+
+
+ Opción de arranque: {0}
+
+
+ El programa de arranque reside en el fichero "{0}"
+
+
+ El programa de arranque comienza en el sector {0} y ocupa {1} sectores ({2} bytes)
+
+
+ El programa de arranque se cargará en la dirección {0:X4}h
+
+
+ Sección de arranque {0}:
+
+
+ El volumen de arranque es inconsistente.
+
+
+ Sistema de ficheros UFS de BorderWare
+
+
+ (bsdgroups): Emular el comportamiento de BSD al crear nuevos ficheros
+
+
+ Sistema de ficheros B-tree
+
+
+ Sistema de ficheros B-tree
+
+
+ Directorios cacheados: {0}
+
+
+ No se pudo encontrar el directorio raíz...
+
+
+ No se puede montar la versión {0} de LisaFS
+
+
+ No se pudo leer en Archivo de Catálogo, error {0}
+
+
+ No puede haber ficheros de más de 2GiB
+
+
+ No puede haber ficheros de más de 2TiB (ext4)
+
+
+ Puede usar índices de hash en los directorios
+
+
+ Moldeando la FAT
+
+
+ El Archivo de Catálogo ocupa {0} bytes.
+
+
+ El catálogo comienza en el sector {0} de la pista {1}
+
+
+ Sistema de ficheros de Commodore
+
+
+ Sistema de ficheros de CD-i
+
+
+ Extensiones CD-ROM XA presentes.
+
+
+ canal
+
+
+ Checksums: 0x{0:X4} y 0x{1:X4}
+
+
+ Checksum: 0x{0:X4} (calculado 0x{1:X4})
+
+
+ Checksum: 0x{0:X8}
+
+
+ El árbol de pedazos comienza en el LBA {0}
+
+
+ Las comprobaciones de clasificación están activadas
+
+
+ Volumen limpio
+
+
+ Nombre del fichero del portapeles: {0}
+
+
+ La pila de clústeres comienza en el sector {0}, contiene {1} clústeres y está usada al {2}%
+
+
+ Clúster del directorio raíz: {0}
+
+
+ Clúster donde empieza $MFTMirr: {0}
+
+
+ Clúster donde empieza $MFT: {0}
+
+
+ cmdload se cargará con el valor {0:X4}h
+
+
+ CNID del directorio de arranque de Mac OS 8 ó 9: {0}
+
+
+ CNID del directorio de arranque de Mac OS X: {0}
+
+
+ CNID del directorio de arranque del sistema: {0}
+
+
+ CNID del directorio de la primera aplicación a ejecutar: {0}
+
+
+ CNID del directorio anteriormente abierto: {0}
+
+
+ Sistema de ficheros de Coherent UNIX
+
+
+ Consola Virtual de Commodore 64
+
+
+ Sistema de ficheros de Commodore:
+
+
+ Funciones compatibles…:
+
+
+ Funciones compatibles en sólo lectura…:
+
+
+ Banderas compatibles: 0x{0:X}
+
+
+ El contenedor tiene {0} bytes en {1} bloques.
+
+
+ Contiene Descriptor Mejorado de Volumen.
+
+
+ Contiene Descriptor de Partición de Volumen.
+
+
+ Copyright: {0}
+
+
+ No se pudo leer el bloque cabecera de dump(8)
+
+
+ Código de país: {0}
+
+
+ Sistema de ficheros de CP/M
+
+
+ Sistema de ficheros de CP/M
+
+
+ Sistema de ficheros Cram
+
+
+ Sistema de ficheros Cram
+
+
+ Creado el {0}
+
+
+ Creando bloques de asignación.
+
+
+ Fecha de creación:
+
+
+ Código del SO creador: {0}
+
+
+ Bloque raíz actual: {0}
+
+
+ Sector actual = {0}
+
+
+ El orden por CILINDROS aún no ha sido implementado.
+
+
+ LBA del bloque de cilindros: {0}
+
+
+ Ajusta del grupo de cilindros en cilindros: {0}
+
+
+ Tamaño del grupo de cilindros: {0} bloques básicos
+
+
+ LBA del área de sumario del grupo de cilindros: {0}
+
+
+ LBA del grupo de sumario de cilindros: {0}
+
+
+ Los límites DASD estaban en uso
+
+
+ Los límites DASD están operacionales
+
+
+ datos
+
+
+ Los datos pueden residir en la entrada del directorio (ext4)
+
+
+ Tamaño del grupo del fork de datos: {0} bytes
+
+
+ Identificador del preparador de los datos: {0}
+
+
+ Los datos comienzan en el bloque {0}
+
+
+ Fechado el {0}
+
+
+ Campo de fecha: año {0}, mes {1}, día {2}, hora {3}, minuto {4}.
+
+
+ Fecha de la última comprobación de integridad: {0}
+
+
+ Fecha de la última optimización: {0}
+
+
+ Los ACLs DCE están activos
+
+
+ El descriptor del depurador comienza en el bloque {0}
+
+
+ Nombre de fichero del depurador: {0}
+
+
+ (debug): Activar código de depuración
+
+
+ Asignación por defecto: {0} bloques
+
+
+ Opciones de montaje por defecto…:
+
+
+ Predeterminados UID: {0}, GID: {1}
+
+
+ La definición "{0}" tiene un directorio correcto
+
+
+ La definición contiene un campo PAR-IMPAR, cuyo significado es desconocido, así que la detección puede ser incorrecta.
+
+
+ Desentrelazando el volumen completo.
+
+
+ Demo
+
+
+ Código de densidad: {0}
+
+
+ Descripción: {0}
+
+
+ ID del desarrollador: {0}
+
+
+ El dispositivo es demasiado pequeño
+
+
+ El dispositivo usa entrelazado {0} a 1 por hardware
+
+
+ UUID del dispositivo: {0}
+
+
+ Diagnóstico
+
+
+ La banda de directorio termina en el sector {0}
+
+
+ La banda de directorio ocupa {0} sectores
+
+
+ La banda de directorio comienza en el sector {0}
+
+
+ La caché de directorio comienza en el bloque {0}
+
+
+ El directorio que contiene los nodos-i de los ficheros pendientes de eliminación reside en el bloque {0} del grupo de asignación {1} y ocupa {2} bloques ({3} bytes)
+
+
+ Tamaño del directorio: {0} clústeres
+
+
+ El directorio comienza en el clúster {0}
+
+
+ El directorio comienza en la pista {0} sector {1}
+
+
+ Volumen no desmontado
+
+
+ Nombre de fichero del desensamblador: {0}
+
+
+ El disco arranca siguiendo las especificaciones {0}.
+
+
+ El ID del disco es {0}
+
+
+ El disco es un disco {0}
+
+
+ El disco está preparado para la transmisión de audio
+
+
+ El disco es el número {0} de un conjunto de múltiples discos
+
+
+ La región del disco es {0}
+
+
+ El disco contiene sectores dañados
+
+
+ Tipo DOS del disco: {0}
+
+
+ Versión DOS del disco: {0}
+
+
+ El disco tiene un mapa de bits dañado
+
+
+ ID del disco: {0}
+
+
+ El disco tiene 192 PPP
+
+
+ El disco tiene 384 PPP
+
+
+ El disco tiene 48 PPP
+
+
+ El disco tiene 96 ó 135 PPP
+
+
+ El disco es de doble densidad
+
+
+ El disco es de doble cara
+
+
+ El disco pertenece al grupo {0} usuario {1}
+
+
+ El disco pertenece al usuario {0}
+
+
+ El disco es de densidad sencilla
+
+
+ El disco es de una cara
+
+
+ Nombre del disco: {0}
+
+
+ El disco rota {0} veces por segundo ({1}rpm)
+
+
+ La superficie del disco debería comprobarse en el próximo montaje.
+
+
+ Versión del disco: {0}
+
+
+ Volumen del disco número {0}
+
+
+ Desconocemos como gestionar el orden COLUMBIA, no procedemos con esta definición.
+
+
+ Desconocemos como gestionar el orden EAGLE, no procedemos con esta definición.
+
+
+ DOS (8.3 todo mayúsculas)
+
+
+ Versión de DOS: {0}
+
+
+ Número de la unidad: 0x{0:X2}
+
+
+ Número de serie de la unidad: 0x{0:X8}
+
+
+ DR-DOS arrancará este FAT32 usando CHS.
+
+
+ DR-DOS arrancará este FAT32 usando LBA.
+
+
+ Dispositivo volcado: {0}
+
+
+ Nombre del sistema de ficheros volcado: {0}
+
+
+ Volcado creado el {0}
+
+
+ Nombre del host del volcado: {0}
+
+
+ Etiqueta del volcado: {0}
+
+
+ Nivel de volcado: {0}
+
+
+ Extensión dump(8)
+
+
+ Número del volumen volcado: {0}
+
+
+ EBCDIC
+
+
+ ECMA-67
+
+
+ ECMA-67
+
+
+ Extensión del Sistema de Ficheros de Extents (EFS)
+
+
+ INFORMACIÓN DE EL TORITO:
+
+
+ -------------------------
+
+
+ Entrada {0}:
+
+
+ Época alta {0}
+
+
+ Epoca baja {0}
+
+
+ Error {0} leyendo el fichero de Registros-S
+
+
+ ERROR: No se pudo encontrar el descriptor primario de volumen
+
+
+ La recomendación de edad del ESRB es {0}
+
+
+ Tamaño de la cola de eventos: {0}
+
+
+ Excepción {0}, {1}, {2}
+
+
+ Excepción leyendo archivo de audio de CD-i
+
+
+ Tabla de Asignación de Archivos Extendida de Microsoft (exFAT)
+
+
+ Sistemas de ficheros de Linux extendidos 2, 3 y 4
+
+
+ Sistema de ficheros ext2
+
+
+ Sistema de ficheros ext2 (antiguo)
+
+
+ Sistema de ficheros ext3
+
+
+ Sistema de ficheros ext4
+
+
+ Los atributos extendidos puede residir en el nodo-i (ext4)
+
+
+ Extensión: {0}
+
+
+ El Archivo de Extents ocupa {0} bytes.
+
+
+ Sistema de ficheros de Linux extendido
+
+
+ Sistema de ficheros ext
+
+
+ Sistema de ficheros F2FS
+
+
+ Extensión F2FS
+
+
+ Las FATs están desincronizadas. Se usará la FAT nº {0}.
+
+
+ Sistema de ficheros FATX
+
+
+ La FAT y el directorio se cachearan en la dirección {0:X4}h
+
+
+ La FAT ocupa {0} sectores
+
+
+ Tabla de Asignacion de Ficheros de Microsoft (FAT)
+
+
+ FAT+
+
+
+ Sistema de Ficheros Rápido de BSD (o Sistema de Ficheros de UNIX, UFS)
+
+
+ El sistema de ficheros contiene {0} "bloques grandes" ({1} bytes)
+
+
+ Sistema de ficheros creado en Linux
+
+
+ Endianada del sistema de ficheros: 0x{0:X8} (debería ser 0x42494745)
+
+
+ El sistema de ficheros tiene {0} "bloques grandes" libres ({1} bytes)
+
+
+ El sistema de ficheros tiene {0} nodos-i sin usar
+
+
+ El sistema de ficheros ha sido montado por un IFS antigup
+
+
+ El sistema de ficheros no ha sido optimizado nunca
+
+
+ La integridad del sistema de ficheros nunca ha sido comprobada
+
+
+ El sistema de ficheros usa big endian
+
+
+ El sistema de ficheros está limpio.
+
+
+ El sistema de ficheros no fue desmontado correctamente.
+
+
+ El sistema de ficheros usa little endian
+
+
+ El sistema de ficheros es de sólo lectura
+
+
+ Nombre del sistema de ficheros: {0}
+
+
+ Carga extra del sistema de ficheros: {0}
+
+
+ Revisión del sistema de ficheros: {0}.{1}
+
+
+ La revisión del sistema de ficheros es {0}.{1:D2}
+
+
+ Tamaño del sistema de ficheros: {0} bloques básicos
+
+
+ Estado del sistema de ficheros: {0:X4}
+
+
+ Tipo del sistema de ficheros: {0}
+
+
+ Sistema de ficheros versión {0}
+
+
+ Versión del sistema de ficheros: {0}.{1}.
+
+
+ La versión del sistema de ficheros es {0}.
+
+
+ El sistema de ficheros se formateo rápidamente
+
+
+ El sistema de ficheros minimizará el tiempo de asignación
+
+
+ El sistema de ficheros minimizará la fragmentación del volumen
+
+
+ Los ficheros deben ser borrados o sobrescritos cuando son eliminados
+
+
+ Tipo de fichero en las entradas de directorio
+
+
+ El fichero {0} queda truncado.
+
+
+ Protección de fichero: 0x{0:X4}
+
+
+ DESCRIPTOR DE INFORMACIÓN DE LA ESTRUCTURA DE FICHEROS DEL VOLUMEN:
+
+
+ -------------------------------------------------------------------
+
+
+ El sistema de ficheros fue inicializado por la versión de DOS {0}
+
+
+ Tipo del sistema de ficheros: "{0}" (debería ser "HPFS ")
+
+
+ Fichero truncado en el bloque {0}
+
+
+ Nombre de fichero del Finder: {0}
+
+
+ Información del Finder:
+
+
+ La recomendación de edad en Finlandia es {0}
+
+
+ La primera partición {0} comienza en el sector {1}
+
+
+ El primer bloque de asignación (nº 2) comienza en el sector {0}.
+
+
+ El primer grupo de cilindros comienza en el bloque {0}
+
+
+ LBA del primer bloque de datos: {0}
+
+
+ Primera zona de datos: {0}
+
+
+ La primera zona de datos es {0}
+
+
+ El primer bloque del directorio parece correcto.
+
+
+ Primer directorio del sector: {0}
+
+
+ El segmento del directorio comienza en el bloque {0}
+
+
+ El primer bloque erróneo es el {0} y el último es el {1}
+
+
+ La primera función fallida es "{0}" y la última es "{1}"
+
+
+ El primer nodo-i erróneo es el {0} y el último es el {1}
+
+
+ El primer error ocurrió el {0}, el último el {1}
+
+
+ La primera FAT empieza en el sector {0} y ocupa {1} sectores
+
+
+ El primer bloque libre es el {0}
+
+
+ El primer nodo-i libre es el {0}
+
+
+ El primer nodo-i es el {0}
+
+
+ Primera zona del núcleo: {0}
+
+
+ El primer grupo de metabloques es el {0}
+
+
+ Primer programa a ejecutar en el arranque: {0}
+
+
+ El primer bloque usado es el {0}
+
+
+ El primer búfer del volumen empieza en el {0}
+
+
+ Banderas:
+
+
+ Banderas: 0x{0:X}
+
+
+ Banderas: 0x{0:X8}
+
+
+ Banderas…:
+
+
+ La localización del grupo de metadatos del bloque es flexible (ext4)
+
+
+ Sistema de ficheros Fossil
+
+
+ Extensión para el sistema de ficheros Fossil
+
+
+ Encontrado superbloque Amstrad.
+
+
+ Encontrado identificador de disquete de CP/M-86.
+
+
+ Encontrado superbloque de disco duro de CP/M-86.
+
+
+ Encontrado nombre de fichero vacío en {0}
+
+
+ Encontrado nombre de fichero vacío en el directorio raíz
+
+
+ Encontrado paramétro de tipo desconocido {0}
+
+
+ Encontrado descriptor de volumen suplementario desconocido
+
+
+ La cuarta partición {0} comienza en el sector {1}
+
+
+ La lista de bloques libres está bloqueada
+
+
+ fsck en progreso
+
+
+ La FST comienza en el sector {0} y ocupa {1} bytes
+
+
+ Versión funcional: {0}
+
+
+ Gamecube
+
+
+ La recomendación de edad en Alemania es {0}
+
+
+ Número de Sistema de Ficheros Global: {0}
+
+
+ Número de paquete de Sistema de Ficheros Global: {0}
+
+
+ Tabla de grupo descriptor de checksums y nodos-i dispersos
+
+
+ El descriptor de grupo ocupa {0} bytes
+
+
+ Adivinado como 42BSD FFS
+
+
+ Adivinado como 43BSD FFS
+
+
+ Adivinado como 44BSD FFS
+
+
+ Adivinado como SunOS FFS
+
+
+ Adivinado como SunOS/x86 FFS
+
+
+ Adivinado como UFS
+
+
+ Sistema de ficheros HAMMER
+
+
+ Sistema de ficheros HAMMER
+
+
+ Entrelazado de sectores por hardware: {0}
+
+
+ Semilla del hash: {0:X8}{1:X8}{2:X8}{3:X8}, versión {4}
+
+
+ Tiene bloques de atributos extendidos
+
+
+ Tiene registro (ext3)
+
+
+ Tiene el registro en otro dispositivo (ext3)
+
+
+ Tiene reservas de redimensionado en línea
+
+
+ La cabeza cambia después de cada pista entera
+
+
+ La cabeza cambia después de una cara completa
+
+
+ Tamaño de la pila con 128KiB de RAM: {0} bytes
+
+
+ Tamaño de la pila con 256KiB de RAM: {0} bytes
+
+
+ Tamaño de la pila con 512KiB o más de RAM: {0} bytes
+
+
+ Sistema de ficheros HFSX.
+
+
+ Sistema de ficheros HFS.
+
+
+ HFS usa 512 bytes por sector pero el dispostiivo usa 2048 bytes por sector.
+
+
+ La estructura más alta del volumen tiene nivel {0}, revisión {1}
+
+
+ La marca de nivel máximo se desactivará
+
+
+ Sistema de ficheros del Formato High Sierra
+
+
+ Hay revisiones en uso
+
+
+ Sistema de ficheros de alto rendimiendo de OS/2
+
+
+ Versión HPFS: {0}
+
+
+ Sistema de ficheros óptico de alto rendimiento
+
+
+ Format de Intercambio Lógico de HP
+
+
+ FAT12 de Human68k
+
+
+ FAT16 de Human68k
+
+
+ Identificado como {0}
+
+
+ Identificador: {0}
+
+
+ ID: {0}, versión {1}
+
+
+ La imagen contiene controladores ATAPI
+
+
+ La imagen contiene controladores SCSI
+
+
+ La imagen emula un disquete de 3,5" de densidad extra (MF2ED, 2,88Mb)
+
+
+ La imagen emula un disquete de 5,25" de alta densidad (MD2HD, 1,2Mb)
+
+
+ La imagen emula un disquete de 3,5" de alta densidad (MF2HD, 1,44Mb)
+
+
+ La imagen no usa emulación
+
+
+ La imagen usa un tipo de emulación desconocido ({0})
+
+
+ Tiene un mapa entre nodos-i y AFS (tabla de nodos-i i-mágicos)
+
+
+ Implementación que montó el volumen por última vez: "{0}".
+
+
+ Funciones incompatibles…:
+
+
+ Banderas incompatibles: 0x{0:X}
+
+
+ Sistema de ficheros UFS en big-endian sin completar la inicialización
+
+
+ Sistema de ficheros UFS sin completar la inicialización
+
+
+ Tamaño incorrecto del dispositivo.
+
+
+ MDDF incorrecto encontrado
+
+
+ Tamaño del sector incorrecto
+
+
+ Los índices de los nodos-i residen en el bloque {0} del grupo de asignación {1} y ocupan {2} bloques ({3} bytes)
+
+
+ Tamaño de los índices de nodos-i: {0} bloques (debería ser 1)
+
+
+ Entrada inicial:
+
+
+ LBA del bloque de nodo-i: {0}
+
+
+ La caché de nodo-i está bloqueada
+
+
+ La lista de nodos-i ocupa {0} bloques
+
+
+ INOPB: 0x{0:X8}
+
+
+ Instalar límites DASD
+
+
+ Sistema de ficheros ISO9660
+
+
+ Intentaré adivinar cuál es, pero si no es UFS2, probablemente me equivoque
+
+
+ La recomendación de edad en Japón es {0}
+
+
+ Sistema de ficheros JFS
+
+
+ Extensión JFS
+
+
+ Extensiones Joliet presentes.
+
+
+ DESCRIPTOR JOLIET DE INFORMACIÓN DEL VOLUMEN:
+
+
+ ---------------------------------------------
+
+
+ Tipo de respaldo del registro: {0}
+
+
+ (journal_data): Registrar datos y metadatos
+
+
+ (journal_data_ordered): Escribir los datos antes de registrar los metadatos
+
+
+ (journal_data_writeback): Escribir el registro antes que los datos
+
+
+ El registro tiene el nodo-i {0}
+
+
+ El registro está en el dispositivo {0}
+
+
+ El registro necesita recuperación (ext3)
+
+
+ El registro reside en el bloque {0} del grupo de asignación {1} y ocupa {2} bloques ({3} bytes)
+
+
+ El registro comienza en el bloque de asignación {0}.
+
+
+ El registro comienza en el byte {0} y termina en el byte {1}
+
+
+ El registro comienza en el byte {0} y ocupa {1} bytes en {2} bloques
+
+
+ UUID del registro: {0}
+
+
+ La recomendación de edad en Corea es {0}
+
+
+ Las etiquetas residen en el bloque {0}
+
+
+ Último clúster asignado: {0}
+
+
+ Fecha del último respaldo: {0}
+
+
+ Comprobado por última vez el {0}
+
+
+ Comprobado por última vez el {0} (debería comprobarse cada {1} segundos)
+
+
+ Fecha de la última comprobación: {0}
+
+
+ Último nodo-i asignado: {0}
+
+
+ Fecha de la última modificación: {0}
+
+
+ Montado por última vez en: "{0}"
+
+
+ Montado por última vez el {0}
+
+
+ El último nodo-i huérfano es el {0}
+
+
+ Última copia del directorio raíz: {0}
+
+
+ Último grupo de cilindros buscado: {0}
+
+
+ Las opciones de montaje usadas por última vez fueron: {0}
+
+
+ Escrito por última vez el {0}
+
+
+ Identificador LIF: {0}
+
+
+ Extensión del formato de intercambio lógico de HP
+
+
+ Versión LIF: {0}
+
+
+ Lista vinculada de sistemas de ficheros: 0x{0:X8}
+
+
+ Little-endian
+
+
+ BeFS little-endian
+
+
+ Cargar {0} sectores a partir del sector {1}
+
+
+ Cargar en 0x{0:X8} y saltar a 0x{1:X8}
+
+
+ Sistema de ficheros Locus
+
+
+ Sistema de ficheros Locus (antiguo)
+
+
+ Extensión del sistema de ficheros Locus
+
+
+ El árbol de registro comienza en el LBA {0}
+
+
+ Tamaño de la zona de registro: {0}
+
+
+ Nombres de archivo largos
+
+
+ La estructura más baja en el volumen tiene nivel {0}, revisión 1}
+
+
+ ID de Mac OS X del volumen: {0:X8}{1:X8}
+
+
+ mágico: "{0}"
+
+
+ mágico 0x{0:X8} (se esperaba 0x{1:X8})
+
+
+ mágico en {0} = 0x{1:X8} (se esperaba 0x{2:X8})
+
+
+ mágico en {0} = 0x{1:X8} (se esperaba 0x{2:X8} ó 0x{3:X8})
+
+
+ mágico en {0} = 0x{1:X8} ó 0x{2:X8} (se esperaba 0x{3:X8} ó 0x{4:X8})
+
+
+ mágico en 0x{0:X8} (se esperaba 0x{1:X8})
+
+
+ mágico en 0x{0:X3} = 0x{1:X8} (se esperaba 0x{2:X8})
+
+
+ mágico en 0x{0:X3} = 0x{1:X8} (se esperaba 0x{2:X8} ó 0x{3:X8})
+
+
+ mágico en {1} = 0x{0:X8}
+
+
+ mágico = 0x{0:X16) (se esperaba 0x{1:X16})
+
+
+ Mágico 1: 0x{0:X8} (debería ser 0x42465331)
+
+
+ Mágico 3: 0x{0:X8} (debería ser 0x15B6830E)
+
+
+ Mágico 2: 0x{0:X8} (debería ser 0xDD121031)
+
+
+ ID del creador: {0}
+
+
+ Nombre del creado: {0}
+
+
+ ID de la copia maestra: 0x{0:X8}
+
+
+ Bloque del Directorio Maestro:
+
+
+ Consola Virtual Master System
+
+
+ El tamaño máximo del fichero es de {0} bytes ({1} MiB)
+
+
+ Longitud máxima de un vínculo simbólico: {0}
+
+
+ Número máximo de archivos abiertos: {0}
+
+
+ Tamaño máximo de la zona: {0}
+
+
+ El MDDF está en el bloque {0}
+
+
+ Descriptor del medio: 0x{0:X2}
+
+
+ Consola Virtual Mega Drive
+
+
+ El registro de memoria comienza en {0}
+
+
+ Sistema de ficheros MicroDOS
+
+
+ Sistema de ficheros MicroDOS
+
+
+ exFAT de Microsoft
+
+
+ FAT12 de Microsoft
+
+
+ FAT16 de Microsoft
+
+
+ FAT32 de Microsoft
+
+
+ Sistema de ficheros resiliente de Microsoft
+
+
+ Sistema de ficheros Minix
+
+
+ Sistema de ficheros Minix 3 v1
+
+
+ Sistema de ficheros Minix 3 v2
+
+
+ Sistema de ficheros Minix v1
+
+
+ Sistema de ficheros Minix v2
+
+
+ Sistema de ficheros Minix v3
+
+
+ Más de 32000 entradas de directorio (ext4)
+
+
+ Montando LisaFS v1
+
+
+ Montando LisaFS v2
+
+
+ Montando LisaFS v3
+
+
+ Consola Virtual MSX o demo WiiWare
+
+
+ Multimedia activo
+
+
+ Protección multi-montaje (ext4)
+
+
+ Sistema de ficheros jerárquico de Apple (HFS)
+
+
+ Consola Virtual Neo-Geo
+
+
+ Consola Virtual NES
+
+
+ Nueva versión
+
+
+ Siguiente bloque de asignación: {0}.
+
+
+ La búsqueda del siguiente nodo-i libre comenzará en el nodo-i {0}
+
+
+ Siguiente QID: {0}
+
+
+ Siguiente bloque raíz: {0}
+
+
+ Siguiente CNID sin usar: {0}
+
+
+ Siguiente número de fichero sin usar: {0}
+
+
+ Volumen NFS
+
+
+ Sistemas de ficheros NILFS2
+
+
+ Extensión NILFS2
+
+
+ NINDIR: 0x{0:X8}
+
+
+ Sistemas de ficheros ópticos de Nintendo
+
+
+ cualquier región
+
+
+ Australia
+
+
+ Francia
+
+
+ Alemania
+
+
+ Italia
+
+
+ Japón
+
+
+ Corea
+
+
+ PAL
+
+
+ Rusia
+
+
+ España
+
+
+ Taiwán
+
+
+ código desconocido de región '{0}'
+
+
+ EEUU
+
+
+ Consola Virtual Nintendo 64
+
+
+ Disco óptico de Nintendo GameCube
+
+
+ Sistema de ficheros óptico de NIntendo
+
+
+ Disco óptico de Nintendo Wii
+
+
+ No es un sistema de ficheros ext2/3/4
+
+
+ No es un sistema de ficheros Lisa
+
+
+ No es un sistema de ficheros UFS, ¡no debería haber llegado aquí!
+
+
+ No es arrancable
+
+
+ NSPF: 0x{0:X8}
+
+
+ Sistema de ficheros de nueva tecnología (NTFS)
+
+
+ Banderas NT: 0x{0:X2}
+
+
+ Estructura en disco Ficheros-11
+
+
+ Nombre OEM: {0}
+
+
+ Parámetros OEM: {0}
+
+
+ Antiguo dump(8) de 16-bits
+
+
+ Versión del sistema de ficheros en disco: {0}
+
+
+ Ante los errores, continuar
+
+
+ Ante los errores, entrar en pánico
+
+
+ Ante los errores, remontar en sólo lectura
+
+
+ Ante los errores el sistema de ficheros hará algo desconocido ({0})
+
+
+ Extensión del sistema de ficheros Opera
+
+
+ Sistema de ficheros de un disco Opera.
+
+
+ Atributo extendido .LONGNAME de OS/2
+
+
+ Fichero de bloques aleatorios de OS-9
+
+
+ Marca de sobremontaje: 0x{0:X16}
+
+
+ Nombre de paquete: {0}
+
+
+ Las particiones no están soportadas.
+
+
+ Desplazamiento de la partición: {0}
+
+
+ Sistema de ficheros U.C.S.D. Pascal
+
+
+ Opciones del descriptor de ruta: {0}
+
+
+ ¡La table de rutas y el DVP no apuntan al mismo lugar para el directorio raíz!
+
+
+ Extension de PC Engine CD
+
+
+ Extensión de PC-FX
+
+
+ Ejecutable de PC-FX
+
+
+ La recomendación de edad PEGI es {0}
+
+
+ Sistema de ficheros profesional
+
+
+ Nombre del volumen físico: {0}
+
+
+ La recomendación de edad en Portugal es {0}
+
+
+ Volcado anterior creado el {0}
+
+
+ Pre-asignar directorios
+
+
+ Procesando DV vuelta nº {0}
+
+
+ Sistema de ficheros de Apple ProDOS
+
+
+ ProDOS usa 512 bytes por sector y el dispositivo usa 2048.
+
+
+ Se requiere al menos la versión 1 de ProDOS para leer este volumen.
+
+
+ Se usó la versión 1 de ProDOS para crear este volumen.
+
+
+ Sistema de ficheros profesional v1
+
+
+ Sistema de ficheros profesional v2
+
+
+ Sistema de ficheros profesional v3
+
+
+ Promocional o Consola Virtual TurboGrafx
+
+
+ Publicado por {0}
+
+
+ Identificador del publicador: {0}
+
+
+ DVP no apunta a un directorio raíz correcto, comprobando tabla de rutas...
+
+
+ Sistema de ficheros QNX4
+
+
+ Extensión QNX4
+
+
+ Sistema de ficheros QNX6 (Audi)
+
+
+ Sistema de ficheros QNX6
+
+
+ Extensión QNX6
+
+
+ Paso RAID: {0}
+
+
+ Extensión del archivo de acceso aleatorio de OS-9
+
+
+ Las lecturas deberían verificarse
+
+
+ Leyendo BPB
+
+
+ Leyendo directorio.
+
+
+ Leyendo FAT12
+
+
+ Leyendo FAT16
+
+
+ Leyendo FAT32
+
+
+ Leyendo directorio raíz
+
+
+ Leyendo sector {0}
+
+
+ Leyendo superbloque
+
+
+ Banderas compatibles en sólo lectura: 0x{0:X}
+
+
+ Volumen de sólo lectura
+
+
+ Protección de registro: 0x{0:X4}
+
+
+ Volcados reducidos de grupos de bloques
+
+
+ Número de superbloques reducidos
+
+
+ Extensión del sistema de ficheros resiliente
+
+
+ Extensión del sistema de ficheros Reiser 4
+
+
+ Sistema de ficheros Reiser 3.5
+
+
+ Sistema de ficheros Reiser 3.6
+
+
+ Sistema de ficheros Reiser 4
+
+
+ Sistema de ficheros Reiser Jr.
+
+
+ Extensión del sistema de ficheros Reiser
+
+
+ Volumen extraíble
+
+
+ El superbloque de reemplazo reside en el bloque {0}
+
+
+ Volumen replicado
+
+
+ Atributos reservados establecidos: {0:X2}
+
+
+ Tamaño del grupo del fork de recursos: {0} bytes
+
+
+ Resincronizar límites DASD
+
+
+ Protocolo de Intercambio Rock Ridge presente.
+
+
+ El checksum del bloque raíz es 0x{0:X8}
+
+
+ El bloque raíz de extensión reside en el bloque {0}
+
+
+ Tamaño del bloque del directorio raíz: {0} bytes
+
+
+ El descriptor del directorio raíz comienza en el bloque {0}
+
+
+ Identificador del directorio raíz: 0x{0:X8}
+
+
+ El directorio raíz reside en el bloque {0}
+
+
+ El directorio raíz reside en el nodo-i {0}
+
+
+ Tamaño del directorio raíz: {0} bloques, {1} bytes
+
+
+ El directorio raíz comienza en el clúster {0}
+
+
+ Tamaño del nodo-i de la carpeta raíz: {0} bloques (debería ser 1)
+
+
+ El nodo-i del directorio raíz reside en el bloque {0} del grupo de asignación {1} y ocupa {2} bloques ({3} bytes)
+
+
+ El nodo raíz del árbol-B de extents reside en el bloque {0}
+
+
+ El nodo raíz del árbol-B de objetos reside en el bloque {0}
+
+
+ El contenedor raíz de objetos empieza en el bloque {0}
+
+
+ La raíz reside en el nodo-i {0}
+
+
+ La raíz empieza en el fragmento {0}
+
+
+ El árbol raíz empieza en el LBA {0}
+
+
+ Novel RPS: {0}
+
+
+ Sistema de ficheros RT-11
+
+
+ Código de resultado del carroñero: 0x{0:X8}
+
+
+ Buscando el bloque raíz en el sector {0}
+
+
+ El bloque hogar secundario está en el sector {0} (VBN {1})
+
+
+ La segunda partición {0} empieza en el sector {1}
+
+
+ Se está usando la 2ª FAT
+
+
+ La 2ª FAT comienza en {0}
+
+
+ ID de sección: {0}
+
+
+ Máximo de {0} sectores asginados en una pista
+
+
+ Sector {0}, ID de fichero 0x{1:X4}
+
+
+ Sector del directorio de ACL: {0}
+
+
+ Sector del bloque de parámetros FAT32 de respaldo: {0}
+
+
+ Sector de la lista de bloques dañados: {0}
+
+
+ Sector del directorio de páginas de código: {0}
+
+
+ Sector del mapa de bits de banda de directorio: {0}
+
+
+ Sector del primer bloque de asignación: {0}
+
+
+ Sector de los mapas de bits de espacio libre: {0}
+
+
+ Sector de la estructura FSINFO: {0}
+
+
+ Sector del directorio de revisiones: {0}
+
+
+ Sector del nodo-F del directorio raíz: {0}
+
+
+ Sesgo del sector 0: {0} por pista
+
+
+ Máscara de seguridad: 0x{0:X8}
+
+
+ Tipo de criterio de selección: {0}
+
+
+ Serie: 0x{0:X16}
+
+
+ Número de serie: 0x{0:X8}
+
+
+ Número de serie del ordenador Lisa que puede usar el software de este volumen: {0}
+
+
+ Número de serie del ordenador Lisa que creó este volumen: {0}
+
+
+ Set-uid y set-gid están desactivados
+
+
+ SmartFileSystem
+
+
+ Sistema de ficheros de extents de SGI
+
+
+ La cara 1 usa entrelzado {0} a 1 por software
+
+
+ La cara 0 usa entrelzado {0} a 1 por software
+
+
+ Firma: 0x{0:X2}
+
+
+ El hash firmado de directorio está en uso
+
+
+ Tamaño de los bloques de asignación: {0} bytes
+
+
+ Sesgo: {0}
+
+
+ SmartFileSystem
+
+
+ Sistema de ficheros Solar_OS
+
+
+ Sistema de ficheros Solar_OS
+
+
+ Origen: {0}
+
+
+ CRC32 del Bloque Reserva: {0:X8}
+
+
+ Mágico 1 del Bloque Reserva: 0x{0:X8} (debería ser 0xF9911849)
+
+
+ Mágico 2 del Bloque Reserva: 0x{0:X8} (debería ser 0xFA5229C5)
+
+
+ Los bloques dispersos de directorio están en uso
+
+
+ Sistema de ficheros Squash
+
+
+ Sistema de ficheros Squash
+
+
+ LBA del superbloque estándar: {0}
+
+
+ Bloque de comienzo del volumen HFS+: {0}
+
+
+ El archivo de arranque ocupa {0} bytes.
+
+
+ Nombre de fichero de la pantalla de arranque: {0}
+
+
+ CRC32 del SuperBloque: {0:X8}
+
+
+ El superbloque ocupa {0} bytes
+
+
+ El superbloque está siendo modificado
+
+
+ El superbloque se modificó por última vez el {0}
+
+
+ El superbloque se actualizó por última vez el {0}
+
+
+ LBA del superbloque: {0}
+
+
+ Mágica 1 del superbloque: 0x{0:X8} (debería ser 0xF995E849)
+
+
+ Mágica 2 del superbloque: 0x{0:X8} (debería ser 0xFA53E9C5)
+
+
+ El superbloque reside en el bloque {0}
+
+
+ El superbloque parece corrupto, la siguiente información podría ser incorrecta
+
+
+ Consola Virtual Super Nintendo
+
+
+ Soporta marcas de tiempo al nanosegundo y tiempo de creación (ext4)
+
+
+ Soporta volúmenes de más de 2^32 bloques (ext4)
+
+
+ Nombre de fichero del sistema: {0}
+
+
+ La pila del sistema se extenderá {0} bytes y una {1} fracción de la RAM disponible
+
+
+ Identificador del sistema:
+
+
+ Sistema, dueño, grupo, mundo
+
+
+ Tipo de sistema: 0x{0:X2}
+
+
+ INFORMACIÓN DEL PROTOCOLO DE USO COMPARTIDO DE SISTEMA:
+
+
+ -------------------------------------------------------
+
+
+ El Procolo de Uso Compartido de Sistema está presente.
+
+
+ Sistema de ficheros System V Release 2
+
+
+ Sistema de ficheros System V Release 4
+
+
+ Sistema de ficheros UNIX System V
+
+
+ Los registros-S empiezan en el sector {0} y ocupan {1} bloques
+
+
+ Hay {0} bloques reservados antes del volumen
+
+
+ Hay un estimado de {0} nodos-i libres antes de comenzar la siguiente búsqueda
+
+
+ Hay muchas variantes de UFS usando valores superpuestos en los mismos campos
+
+
+ Hay bloques dañados en el archivo de extents.
+
+
+ No hay nodos-i huérfanos.
+
+
+ Hay CNIDs reutilizadas.
+
+
+ La siguiente información podría ser incorrecta para este volumen.
+
+
+ La tercera partición {0} empieza en el sector {1}
+
+
+ El bloque hogar está en el sector {0} (VBN {1})
+
+
+ Este es un disco de SegaCD / MegaCD.
+
+
+ Este es un disco de Sega Dreamcast.
+
+
+ Este es un disco de Sega Saturn.
+
+
+ Este es el paquete primario
+
+
+ Puede no ser HPFS, la siguiente información podría no ser correcta.
+
+
+ Este superbloque reside en el bloque físico {0}.
+
+
+ Está versión no está soportada aún.
+
+
+ Este volumen podría esta corrupto.
+
+
+ Título: {0}
+
+
+ Sector {0} ({1:X2}:{2:X2}:{3:X2}), sin procesar, modo {4}
+
+
+ Sector {0} ({1:X2}:{2:X2}:{3:X2}), sin procesar, modo 2 forma 4}, fichero número {5}, canal número {6}, submodo {7}, información de codificación {8}
+
+
+ Sector {0}, procesado, modo 2 forma {1}, fichero número {2}, canal número {3}, submodo {4}, información de codificación {5}
+
+
+ Sector {0}, procesado, modo 2 forma 2
+
+
+ Sector {0}, procesado, modo 0, 1 ó 2 forma 1
+
+
+ Sector {0}, sin procesar, audio
+
+
+ La asignación de pistas es hacia adelante
+
+
+ La asignación de pistas es hacia atrás
+
+
+ Recorriendo el directorio.
+
+
+ Intentando todas las definiciones conocidas.
+
+
+ Intentando definición "{0}"
+
+
+ Intentando cargar las definicones.
+
+
+ Consola Virtual TurboGrafx CD
+
+
+ Formato de Disco Universal
+
+
+ Sistema de ficheros UFS2
+
+
+ Sistema de ficheros UFS
+
+
+ (uid16): Desactivar UIDs y GIDs de 32-bits
+
+
+ La recomendación de edad en Reino Unido es {0}
+
+
+ No se pudo cachear todos los ficheros.
+
+
+ No se pudieron leer los bloques de arranque
+
+
+ No se pudo leer el cargador de arranque
+
+
+ No se pudo leer el catálogo.
+
+
+ No se pudo leer el MDDF
+
+
+ No se pudo leer el fichero de registros-S
+
+
+ No se pudo leer el mapa de bits del volumen
+
+
+ mágico sin alinear: "{0}"
+
+
+ El dispositivo usado no soporta las etiquetas Lisa
+
+
+ El medio usado tenía errores
+
+
+ Sistema de ficheros UNICOS
+
+
+ Extensión del sistema de ficheros UNICOS
+
+
+ Formato de Disco Universal
+
+
+ Sistema de ficheros de UNIX 7ª edición
+
+
+ Sistema de ficheros de arranque de UNIX
+
+
+ Código de arranque desconocido.
+
+
+ Desconocida
+
+
+ Funciones compatibles desconocidas: {0:X8}
+
+
+ Banderas desconocidas: {0:X8}
+
+
+ Bandera desconocida 0x40 en banderas 1 activa
+
+
+ Bandera desconocida 0x40 en banderas 2 activa
+
+
+ Bandera desconocida 0x80 en banderas 2 activa
+
+
+ Desconocemos como funciona el orden de caras {0}
+
+
+ Funciones incompatibles desconocidas: {0:X8}
+
+
+ Versión de LisaFS desconocida: {0}
+
+
+ Valor de optimización desconocido: 0x{0:X8}
+
+
+ Tipo de orden "{0}" desconocido, no se procederá con esta definición.
+
+
+ SO desconocido ({0})
+
+
+ tipo de partición desconocido ({0})
+
+
+ Se requiere al menos la versión desconocida de ProDOS con el campo {0} para leer este volumen.
+
+
+ Este volumen fue creado con la versión desconocida de ProDOS con el campo {0}.
+
+
+ Publicador desconocido '{0}'
+
+
+ Funciones compatibles en sólo lectura desconocidas: {0:X8}
+
+
+ Opciones por defecto de montaje desconocidas: {0:X8}
+
+
+ Banderas activadas desconocidas: {0:X8}
+
+
+ Desconocida
+
+
+ Estructuras desconocidas:
+
+
+ Valor de s_type desconocido: 0x{0:X8}
+
+
+ tipo desconocido '{0}'
+
+
+ Hash sin firmar de directorio en uso
+
+
+ actualización
+
+
+ Volumen replicado por el usuario
+
+
+ (user_xattr): Activar atributos extendidos especificados por el usuario
+
+
+ Usa árboles-B para los directorios
+
+
+ Usa compresión
+
+
+ Usar LFN si está disponible, si no usar .LONGNAME (por defecto)
+
+
+ Usando BPB de Apricot
+
+
+ Usando BPB de Atari
+
+
+ Usando BPB forzado de DEC Rainbow
+
+
+ Usando BPB de DOS 2.0
+
+
+ Usando BPB de DOS 3.0
+
+
+ Usando BPB de DOS 3.2
+
+
+ Usando BPB de DOS 3.3
+
+
+ Usando BPB de DOS 3.4
+
+
+ Usando BPB de DOS 4.0
+
+
+ Usando BPB de FAT32
+
+
+ Usando BPB forzado.
+
+
+ Usando BPB forzado para 5,25" DSDD.
+
+
+ Usando BPB forzado para 5,25" SSDD.
+
+
+ Usando BPB de Human68k
+
+
+ Usando BPB de MSX
+
+
+ Usando BPB corto de FAT32
+
+
+ Utilidad
+
+
+ UUID: {0}
+
+
+ Sistema de ficheros Veritas
+
+
+ Versión 1: 0x{0:X4}
+
+
+ Versión 2: 0x{0:X4}
+
+
+ Versión {0}
+
+
+ Versión {0}.{1}
+
+
+ Sistema de ficheros VMware
+
+
+ Sistema de ficheros VMware
+
+
+ Volumen {0} de {1} en este sistema de ficheros
+
+
+ Atributos del volumen: {0:X2}
+
+
+ Volumen respaldado el {0}
+
+
+ El mapa de bits del volumen es válido
+
+
+ El mapa de bits del volumen ocupa {0} sectores ({1} bytes)
+
+
+ Sector (en 512-bytes) de comienzo del mapa de bits del volumen: {0}
+
+
+ El mapa de bits del volumen empieza en el sector {0} (VBN {1})
+
+
+ El bloque del volumen ocupa {0} bytes
+
+
+ El tamaño de bloque del volumen es {0} bytes
+
+
+ El volumen no puede ser escrito por ninguna versión de UDF mayor que {0}.{1:X2}
+
+
+ El volumen puede ser destruido
+
+
+ El volumen se puede llenar hasta el {0}%
+
+
+ El volumen se puede montar {0} veces antes de necesitar una comprobación
+
+
+ El volumen se puede leer
+
+
+ El volumen se puede renombrar
+
+
+ El volumen se puede escribir
+
+
+ El catálogo del volumen se creó el {0}
+
+
+ Comentario del volumen: {0}
+
+
+ El volumen graba en grupos de 1
+
+
+ El volumen graba vagamente
+
+
+ El volumen expresa conformidad con {0}
+
+
+ El volumen contiene {0} bloques ({1} bytes)
+
+
+ El volumen contiene {0} entradas de directorio
+
+
+ El volumen contiene {0} ficheros
+
+
+ El volumen contiene {0} ficheros y {1} directorios
+
+
+ El volumen contiene {0} particiones
+
+
+ El volumen continúa ante los errores
+
+
+ El volumen se copió el {0}
+
+
+ El volumen se creó el {0}
+
+
+ El volumen se creó usando el núcleo versión: {0}
+
+
+ Fecha de creación del volumen: {0}
+
+
+ INFORMACIÓN DEL DESCRIPTOR DEL VOLUMEN:
+
+
+ ---------------------------------------
+
+
+ Formato del disco del volumen: {0}
+
+
+ El volumen no graba en el registro
+
+
+ El volumen no caduca.
+
+
+ El volumen no necesita caché.
+
+
+ Volumen edición {0}
+
+
+ Fecha efectiva del volumen: {0}
+
+
+ El volumen termina en el {0}
+
+
+ Fecha de expiración del volumen: {0}
+
+
+ Banderas del volumen: 0x{0:X2}
+
+
+ Banderas del volumen: 0x{0:X4}
+
+
+ El formato del volumen es {0}
+
+
+ El volume va desde el byte {0} hasta el byte {1}, ocupando {2} bytes
+
+
+ El volumen tiene {0} bloques
+
+
+ El volumen tiene {0} bloques ({1} bytes)
+
+
+ El volumen tiene {0} bloques de {1} bytes cada uno
+
+
+ El volumen tiene {0} bloques de {1} bytes cada uno ({2} bytes totales)
+
+
+ El volumen tiene {0} bloques de {1} bytes para un total de {2} bytes
+
+
+ El volumen tiene {0} bloques usados ({1} bytes)
+
+
+ El volumen tiene {0} bloques con {1} libres
+
+
+ El volumen tiene {0} bytes
+
+
+ El volumen tiene {0} bytes en {1} zonas
+
+
+ El volumen tiene {0} bytes por bloque
+
+
+ El volumen tiene {0} bytes distribuidos en {1} dispositivos
+
+
+ El volumen tiene {0} bytes usados
+
+
+ El volumen tiene {0} ficheros
+
+
+ El volumen tiene {0} bloques libres
+
+
+ El volumen tiene {0} nodos-i libres
+
+
+ El volumen tiene {0} sectores libres de {1}
+
+
+ El volumen tiene {0} nodos-i
+
+
+ El volumen tiene {0} nodos-i por bloque
+
+
+ El volumen tiene {0} sectores ({1} bytes)
+
+
+ El volumen tiene {0} sectores de {1} bytes cada uno para un total de {2} bytes
+
+
+ El volumen siempre ha sido efectivo.
+
+
+ El volumen tiene la AIT secundaria actual dañada
+
+
+ El volumen ha sido modificado por el Gestor de Volúmenes de Windows 9x/Me.
+
+
+ El volumen ha sido montado {0} veces de un máximo de {1} antes de ser comprobado
+
+
+ El volumen ha sido montado {0} veces sin un nº máximo antes de ser comprobado
+
+
+ El volumen ha sido montado para escritura {0} veces.
+
+
+ El volumen tiene los límites DASD activados
+
+
+ El volumen tiene las cuotas grupales activadas
+
+
+ El volumen contiene el registro
+
+
+ El volumen contiene el registro y lo está moviendo fuera
+
+
+ El volumen nunca ha sido respaldado
+
+
+ El volumen nunca ha sido comprobado
+
+
+ El volumen nunca ha sido comprobado (debería serlo cada {0})
+
+
+ El volumen nunca ha sido comprobado
+
+
+ El volumen nunca ha sido montado
+
+
+ El volumen no ha sido desmontado limpiamente
+
+
+ El volumen no ha sido modificado.
+
+
+ El volumen no tiene un nº máximo de montajes antes de ser comprobado
+
+
+ El volumen tiene índices persistentes
+
+
+ El volumen tiene bloques dañados reasignados.
+
+
+ El volumen tiene las cuotas de usuario activadas
+
+
+ El bloque de identificación del volumen fue escrito por última vez el {0}
+
+
+ Identificador del volumen: {0}
+
+
+ Identificador del volumen: 0x{0:X8}
+
+
+ ID del volumen: 0x{0:X16}
+
+
+ ID del volumen: 0x{0:X4}
+
+
+ ID del volumen: 0x{0:X8}
+
+
+ ID del volumen: 0x{0:X8}{1:X8}
+
+
+ El volumen inhibe el fsck automático
+
+
+ El volumen es el {0} de {1} en el conjunto "{2}".
+
+
+ El volumen es arrancable.
+
+
+ El volumen es sensible a las mayúsculas.
+
+
+ El volumen está limpio
+
+
+ El volumen está comprimido usando GZIP
+
+
+ El volumen está comprimido usando LZ4
+
+
+ El volumen está comprimido usando LZMA
+
+
+ El volumen está comprimido usando LZO
+
+
+ El volumen está comprimido usando el algoritmo desconocido {0}
+
+
+ El volumen está comprimido usando XZ
+
+
+ El volumen está comprimido usando Zstandard
+
+
+ El volumen está sucio
+
+
+ El volumen está sucio, código de error = 0x{0:X16}
+
+
+ El volumen está en un estado desconocido ({0})
+
+
+ El volumen está en un sistema big-endian.
+
+
+ El volumen usa un registro.
+
+
+ El volumen tiene nivel {0} revisión {1}
+
+
+ El volumen está bloqueado por hardware.
+
+
+ El volumen está bloqueado por software.
+
+
+ El volumen está montado.
+
+
+ El volumen está montado en sólo lectura
+
+
+ El volumen no es arrancable.
+
+
+ El volumen no usa ningún registro
+
+
+ El volumen es el nº {0} de {1}
+
+
+ El volumen es de sólo lectura
+
+
+ El volumen está recuperando ficheros huérfanos
+
+
+ El volumen es seguro
+
+
+ El volumen presenta inconsistencias serias.
+
+
+ El volumen está probando código en desarrollo.
+
+
+ El volumen está desmontado.
+
+
+ El volumen está envuelto en un volumen HFS.
+
+
+ Etiqueta del volumen: {0}
+
+
+ El volumen fue accedido por última vez el {0:d}
+
+
+ El volumen arrancó por última vez el {0}
+
+
+ El volumen fue comprobado por última vez el {0}
+
+
+ El volumen fue modificado por última vez el {0}
+
+
+ El volumen fue montado por última vez en "{0}"
+
+
+ El volumen fue montado por última vez el {0}
+
+
+ El volumen fue montado por última vez por el núcleo versión {0}
+
+
+ El volumen fue actualizado por última vez el {0}
+
+
+ El volumen fue escrito por última vez el {0}
+
+
+ Fecha de modificación del volumen: {0}
+
+
+ El volumen mueve los archivos eliminados a una carpeta de reciclaje
+
+
+ El volumen debe ser respaldado
+
+
+ Nombre del volumen: {0}
+
+
+ El nombre del volumen es {0}
+
+
+ Número del volumen: {0}
+
+
+ Dueño del volumen: {0}
+
+
+ El dueño del volumen es "{0}"
+
+
+ El dueño del volumen es "{0}" (ID 0x{1:X8})
+
+
+ Paquete del volumen: {0}
+
+
+ El volumen entra en pánico ante un error
+
+
+ Contraseña del volumen: "{0}"
+
+
+ Permisos del volumen (r = lectura, w = escritura, c = creación, d = eliminación)
+
+
+ El volumen prima DASD al arranque
+
+
+ El registro del volumen se extiende sde el bloque {0} al {1}
+
+
+ El volumen se remonta en sólo lectura ante un error
+
+
+ El volumen requiere la versión {0}.{1:X2} de UDF para ser leído
+
+
+ El volumen requiere la versión {0}.{1:X2} de UDF para ser escrito
+
+
+ El volumen reserva {0} sectores para el sistema
+
+
+ El volumen reserva {1} pistas ({0} sectores) para el sistema
+
+
+ El directorio raíz del volumen fue modificado por últiva vez el {0}
+
+
+ El volumen fue carroñeado el {0}
+
+
+ El volumen envía comandos TRIM/UNMAP al dispositivo que lo contiene
+
+
+ Serie del volumen: {0}
+
+
+ Serie del volumen: {0:X8}
+
+
+ El volumen debería comprobarse en el siguiente montaje.
+
+
+ Identificador del conjunto del volumen: {0}
+
+
+ Número de serie del volumen: {0:X8}
+
+
+ Número de serie del volumen: {0:X16}
+
+
+ Número de serie del volumen: {0}
+
+
+ Tamaño del volumen: {0} bloques, {1} bytes
+
+
+ El volumen ocupa {0} bytes
+
+
+ El volumen empieza en el byte {0} del dispositivo y termina en el {1}
+
+
+ El estado del volumen es inconsistente.
+
+
+ Estado del volumen el {0}
+
+
+ El volumen soporta AIX
+
+
+ El volumen soporta DCE DFS LFS
+
+
+ El volumen soporta Linux
+
+
+ El volumen soporta OS/2 y es insensible a las mayúsculas
+
+
+ El volumen soporta ficheros dispersos
+
+
+ El volumen fue actualizado el {0}
+
+
+ El volumen usa {0} bytes por bloque
+
+
+ El volumen usa {0} bytes por sector
+
+
+ El volumen usa la página de código {1} de tipo {0}
+
+
+ El volumen usa {0} FATs
+
+
+ El volumen usa {0} sectores por clúster ({1} bytes)
+
+
+ El volumen usa clústeres de {0} sectores ({1} bytes) cada uno
+
+
+ El volumen usa los estampados de fecha estándares de CP/M
+
+
+ El volumen usa escrituras síncronas
+
+
+ El volumen usa estampados de fechas de terceras partes
+
+
+ El volumen usa Unicode para las entradas de directorio
+
+
+ El volumen usa extents (ext4)
+
+
+ UUID del volumen: {0}
+
+
+ Volumen versión {0}
+
+
+ Volumen versión {0}.{1}
+
+
+ El volumen fue creado para {0}
+
+
+ El volumen fue creado el {0}
+
+
+ El volumen fue creado el {0} para {1}
+
+
+ El volumen fue modificado por última vez el {0}
+
+
+ El volumen fue actualizado por última vez el {0}
+
+
+ El volumen fue escrito la última vez por: {0}
+
+
+ El volumen fue desmontado
+
+
+ El volumen fue escrito por última vez el {0}
+
+
+ El volumen envuelve un volumen HFS+.
+
+
+ Contador de escrituras del volumen: {0}
+
+
+ Sistema de ficheros Veritas
+
+
+ ¡Atención! Detectado sistema de ficheros ProDOS de una versión de ProDOS desconocida
+
+
+ ATENCIÓN: El sistema de ficheros describe sectores de {0} bytes pero el dispositivo lo hace de {1} bytes
+
+
+ ATENCIÓN: El sistema de ficheros describe un volumen de {0} sectores, más grande que el dispositivo ({1} sectores)
+
+
+ ATENCIÓN: El sistema de ficheros describe bloques de {0} bytes pero el dispositivo lo hace de {1} bytes
+
+
+ ATENCIÓN: El sistema de ficheros describe bloques de {0} bytes pero el disdasdas
+
+
+ ATENCIÓN: El sistema de ficheros describe {0} bloques pero el dispositivo indica {1}
+
+
+ Wii
+
+
+ WiiFit
+
+
+ WiiWare
+
+
+ Respaldo de Wii
+
+
+ Canal de Wii
+
+
+ Windows NT (8.3 mayúsculas mezcladas)
+
+
+ Ventana: {0}
+
+
+ , con parches multi-usuario
+
+
+ , con soporta multi-usuario
+
+
+ Las escrituras se verificarán
+
+
+ Extensión del sistema de ficheros FATX
+
+
+ Sistema de ficheros de XENIX
+
+
+ Sistema de ficheros XFS
+
+
+ Extensión del sistema de ficheros XFS
+
+
+ Sistema de ficheros Xia
+
+
+ Sistema de ficheros ZFS
+
+
+ Extensión del sistema de ficheros ZFS
+
+
+ Compresión zisofs presente.
+
+
+ {0}[{1}] = Tipo de datos desconocido {2}
+
+
+ {0} bloques de asignación.
+
+
+ {0} grupos de asignación en el volumen
+
+
+ {0} bloques ({1} bytes)
+
+
+ {0} bloques ({1} bytes) libres de {2} ({3} bytes)
+
+
+ {0} bloques, {1} banderas y {2} nodos-i por grupo
+
+
+ {0} bloques para el cargador de arranque ({1} bytes)
+
+
+ {0} bloques libres
+
+
+ {0} bloques libres ({1} bytes)
+
+
+ {0} bloques en el cilindro 0
+
+
+ {0} bloques en el sistema de ficheros
+
+
+ {0} bloques en el volumen
+
+
+ {0} bloques en el volumen ({1} bytes)
+
+
+ {0} bloques en la caché del mapa de bits del volumen
+
+
+ {0} bloques en la caché del volumen
+
+
+ {0} bloques en la caché común del volumen
+
+
+ {0} bloques menos uno
+
+
+ {0} bloques menos uno menos el desplazamiento del MDDF
+
+
+ {0} bloques de {1} bytes
+
+
+ {0} bloques en todos los discos de datos
+
+
+ {0} bloques en la colección sumaria de clústeres
+
+
+ {0} bloques en el mapa de nodos-i ({1} bytes)
+
+
+ {0} bloques en el mapa de zona ({1} bytes)
+
+
+ {0} bloques pendientes de ser liberados
+
+
+ {0} bloques por grupo de asignación
+
+
+ {0} bloques por grupo de asignación ({1} bytes)
+
+
+ {0} bloques por clúster
+
+
+ {0} bloques por cilindro
+
+
+ {0} bloques por cilindro ({1} bytes)
+
+
+ Máximo de {0} bloques por grupo de cilindro
+
+
+ {0} bloques por separación ({1} bytes)
+
+
+ {0} bloques por grupo
+
+
+ {0} bloques por rotación
+
+
+ {0} bloques por segmento
+
+
+ {0} bytes por bloque
+
+
+ {0} bytes en el mapa de bits de asignación
+
+
+ {0} bytes en un bloque básico
+
+
+ {0} bytes en un bloque de fragmento
+
+
+ {0} bytes en un grupo de cilindro
+
+
+ {0} bytes en el sumario de un grupo de cilindro
+
+
+ {0} bytes en un bloque de borrado
+
+
+ {0} bytes en LisaInfo
+
+
+ {0} bytes en el árbol-B del catálogo
+
+
+ {0} bytes en el árbol-B de extents
+
+
+ {0} bytes en el volumen
+
+
+ {0} bytes por hoja
+
+
+ Máximo de {0} bytes por fichero
+
+
+ {0} bytes por nodo
+
+
+ {0} bytes en el mapa de bits
+
+
+ {0} bytes por bloque de asignación.
+
+
+ {0} bytes por bloque
+
+
+ {0} bytes por entrada de directorio
+
+
+ {0} bytes por fragmento
+
+
+ {0} bytes por bloque índice
+
+
+ {0} bytes por nodo-i
+
+
+ {0} bytes por nodo-i
+
+
+ {0} bytes por registro MFT
+
+
+ {0} bytes por página
+
+
+ {0} bytes por sector.
+
+
+ {0} bytes por sector (sin procesar)
+
+
+ {0} bytes por zona
+
+
+ {0} bytes por sector
+
+
+ {0} bytes por división
+
+
+ {0} bytes para asignar.
+
+
+ {0} bytes para asignar cuando se extiende un árbol-B de catálogo
+
+
+ {0} bytes para asignar cuando se extiende un árbol-B de extents
+
+
+ {0} bytes para asignar cuando se extiende un fichero.
+
+
+ {0} carácteres en un nombre de fichero
+
+
+ {0} clústeres en el volumen.
+
+
+ {0} clústeres por bloque índice ({1} bytes)
+
+
+ {0} clústeres por registro MFT ({1} bytes)
+
+
+ {0} páginas de código usadas en el volumen
+
+
+ {0} directorios asignados contiguamente
+
+
+ Máximo de {0} bloques contiguos
+
+
+ {0} cilindros
+
+
+ {0} cilindros por grupo
+
+
+ {0} cilindros en el volumen
+
+
+ {0} grupos de cilindro
+
+
+ {0} grupos de cilindro en el volumen
+
+
+ {0} bloques de datos ({1} bytes)
+
+
+ {0} bloques de datos en el volumen
+
+
+ {0} bloques de datos en el volumen ({1} bytes)
+
+
+ {0} bloques de datos en el volumen, {1} libres
+
+
+ {0} zonas de datos ({1} bytes)
+
+
+ {0} directorios
+
+
+ {0} directorios en el directorio raíz
+
+
+ {0} directorios en el volumen
+
+
+ {0} entradas en el directorio raíz.
+
+
+ {0} entradas por bloque de directorio
+
+
+ {0} = nvlist[] de {1} elementos, no se puede mostrar
+
+
+ {0} = Tipo de datos desconocido {1}
+
+
+ {0} errores registrados
+
+
+ {0} FATs
+
+
+ {0} ficheros en el directorio raíz
+
+
+ {0} ficheros en el volumen
+
+
+ Tamaño del grupo FLEX_BG: {0}
+
+
+ {0} fragmentos por bloque
+
+
+ {0} bloques libres.
+
+
+ {0} bloques libres ({1} bytes)
+
+
+ {0} bloques libres en lista ({1} bytes)
+
+
+ {0} clústeres libres
+
+
+ {0} fragmentos libres
+
+
+ {0} nodos-i libres
+
+
+ {0} nodos-i libres en lista
+
+
+ {0} nodos-i libres en el volumen
+
+
+ {0} nodos-D alternativos libres
+
+
+ {0} zonas libres en el volumen ({1} bytes)
+
+
+ {0} cabezas.
+
+
+ {0} cabezas por cilindro
+
+
+ {0} sectores ocultos antes del BPB.
+
+
+ {0} sectores ocultos antes del sistema de ficheros
+
+
+ {0} zonas imap ({1} bytes)
+
+
+ {0} nodos-i
+
+
+ {0} nodos-i libres de {1}
+
+
+ {0} nodos-i en el volumen
+
+
+ {0} nodos-i en el volumen, {1} libres
+
+
+ {0} nodos-i en el volumen, {1} libres ({2}%)
+
+
+ {0} nodos-i pendientes de liberarse
+
+
+ {0} nodos-i por grupo de cilindro
+
+
+ {0} nodos-i con {1} libres ({2}%)
+
+
+ {0} es el primer bloque de datos
+
+
+ {0} no está establecido
+
+
+ {0} KiB se han escrito en el volumen
+
+
+ {0} sectores lógicos ({1} bytes) por sector físico
+
+
+ Máximo de {0} ficheros en el volumen
+
+
+ {0}ms para el siguiente bloque óptimo
+
+
+ {0} nanosegundos para programar
+
+
+ {0} nanosegundos para acceso aleatorio
+
+
+ {0} nanosegundos para un ciclo de lectura
+
+
+ {0} nanosegundos para un ciclo de escritura
+
+
+ El {0}% de los bloques deben estár libres
+
+
+ {0} bloques reservados y {1} libres
+
+
+ {0} ficheros reservados
+
+
+ {0} posiciones rotacionales
+
+
+ {0} segundos para la espera de protección ante multi-montaje, en el bloque {1}
+
+
+ {0} secciones
+
+
+ {0} secciones por zona
+
+
+ {0} sectores
+
+
+ {0} sectores ({1} bytes) por bloque
+
+
+ {0} sectores ({1} bytes) por clúster
+
+
+ {0} sectores marcados dañados
+
+
+ {0} sectores por cilindro
+
+
+ {0} sectores ocultos antes del BPB
+
+
+ {0} sectores en el directorio.
+
+
+ {0} sectores en el volumen ({1} bytes).
+
+
+ {0} sectores por clúster.
+
+
+ {0} sectores por clúster ({1} bytes)
+
+
+ {0} sectores por FAT.
+
+
+ {0} sectores por pista.
+
+
+ {0} sectores reservados entre el BPB y la FAT.
+
+
+ {0} sectores por pista
+
+
+ {0} segmentos
+
+
+ {0} segmentos por sección
+
+
+ {0} bloques de reserva
+
+
+ {0} entradas de revisiones en total
+
+
+ {0} nodos-D de reserva en total
+
+
+ {0} pistas
+
+
+ {0} pistas por cilindro
+
+
+ {0} pistas en el volumen
+
+
+ {0} bloques de asignación libres.
+
+
+ {0} bloques usados ({1} bytes)
+
+
+ {0} entradas de revisión usadas
+
+
+ {0} sectores usados en el volumen
+
+
+ {0} bloques de asignación en el volumen
+
+
+ {0} zonas zmap ({1} bytes)
+
+
+ {0} zonas en el volumen ({1} bytes)
+
+
+ {0} zonas en el volumen
+
+
+ {0} zonas reservadas para imágenes del núclero ({1} bytes)
+
+
+ {0} µseg para cambiar la cabeza
+
+
+ {0} µseg para posicionar de pista a pista
+
+
+ 1024 bytes por bloque
+
+
+ 2048 bytes por bloque
+
+
+ 4096 bytes por bloque
+
+
+ 512 bytes por bloque
+
+
\ No newline at end of file
diff --git a/Aaru.Filesystems/Localization/Localization.resx b/Aaru.Filesystems/Localization/Localization.resx
index 169f22a6d..8d796112a 100644
--- a/Aaru.Filesystems/Localization/Localization.resx
+++ b/Aaru.Filesystems/Localization/Localization.resx
@@ -174,14 +174,11 @@
Volume is locked by software.
-
- {0} files on root directory
+
+ {0} directories in root directory
-
- {0} directories on root directory
-
-
- {0} directories on volume
+
+ {0} directories in volume
Volume write count: {0}
@@ -522,8 +519,8 @@
Volume should be checked on next mount.
-
- Disk surface should be on next mount.
+
+ Disk surface should be checked on next mount.
FATs are out of sync. FAT #{0} is in use.
@@ -585,8 +582,8 @@
{0} FATs.
-
- {0} entries on root directory.
+
+ {0} entries in root directory.
Volume Serial Number: {0}
@@ -633,9 +630,6 @@
{0} sectors ({1} bytes) per cluster
-
- Root directory starts on cluster {0}
-
Volume serial: {0:X8}
@@ -1130,8 +1124,8 @@
Volume has {0} files
-
- Volume last booted at {0}
+
+ Volume last booted on {0}
Acorn Advanced Disc Filing System
@@ -1259,24 +1253,15 @@
Filesystem version is {0}.
-
- Volume is locked on hardware.
-
Volume is unmounted.
There are bad blocks in the extents file.
-
- Volume does not require cache.
-
Volume state is inconsistent.
-
- Volume is locked on software.
-
Implementation that last mounted the volume: "{0}".
@@ -1289,12 +1274,6 @@
Volume has never been checked up
-
- {0} files on volume.
-
-
- {0} folders on volume.
-
{0} allocation blocks.
@@ -1332,7 +1311,7 @@
AtheOS Filesystem
- Atheos filesystem
+ AtheOS filesystem
Filesystem is read-only
@@ -1642,7 +1621,7 @@
Underlying media presented errors
- OEM Parameters {0}:
+ OEM Parameters: {0}
{0} bytes in erase block
@@ -1804,7 +1783,7 @@
{0} seconds for multi-mount protection wait, on block {1}
- {0} Flexible block group size
+ {0} size of FLEX_BG group
Hash seed: {0:X8}{1:X8}{2:X8}{3:X8}, version {4}
@@ -1897,7 +1876,7 @@
Pre-allocate directories
- imagic inodes ?
+ Has mapping between inodes and AFS (imagic inodes table)
Has journal (ext3)
@@ -1986,14 +1965,14 @@
ext filesystem
-
- {0} zones on volume
+
+ {0} zones in volume
{0} free blocks ({1} bytes)
-
- {0} inodes on volume, {1} free ({2}%)
+
+ {0} inodes in volume, {1} free ({2}%)
First free inode is {0}
@@ -2226,9 +2205,6 @@
{0} free frags
-
- Superblock is under modification
-
Volume is read-only
@@ -2550,11 +2526,11 @@
Volume does not commit to log
-
- Volume has log withing itself
+
+ Volume has log within itself
-
- Volume has log withing itself and is moving it out
+
+ Volume has log within itself and is moving it out
Volume supports sparse files
@@ -2727,15 +2703,12 @@
{0} chars in filename
-
- {0} zones on volume ({1} bytes)
+
+ {0} zones in volume ({1} bytes)
{0} bytes/block
-
- {0} inodes on volume
-
{0} blocks on inode map ({1} bytes)
@@ -2878,7 +2851,7 @@
Master System Virtual Console
- Megadrive Virtual Console
+ Mega Drive Virtual Console
Nintendo 64 Virtual Console
@@ -3175,8 +3148,8 @@
Datetime field year {0}, month {1}, day {2}, hour {3}, minute {4}.
-
- ProDOS uses 512 bytes/sector while devices uses 2048 bytes/sector.
+
+ ProDOS uses 512 bytes/sector while device uses 2048 bytes/sector.
Warning! Detected unknown ProDOS version ProDOS filesystem.
@@ -3415,9 +3388,6 @@
Volume starts on device byte {0} and ends on byte {1}
-
- Bitmap starts in block {0}
-
Admin space container starts in block {0}
@@ -3503,9 +3473,6 @@
Unknown s_type value: 0x{0:X8}
-
- WARNING: Filesystem indicates {0} bytes/block while device indicates {1} bytes/sector
-
{0} free zones on volume ({1} bytes)
@@ -3563,8 +3530,8 @@
Volume uses {0} bytes per block
-
- Volume was last written in {0}
+
+ Volume was last written on {0}
Volume contains {0} partitions
@@ -3680,9 +3647,6 @@
{0} bytes per zone
-
- {0} zones in volume ({1} bytes)
-
{0} inodes
diff --git a/Aaru.Filesystems/MinixFS/Info.cs b/Aaru.Filesystems/MinixFS/Info.cs
index 0f0bf55ea..d74c9e579 100644
--- a/Aaru.Filesystems/MinixFS/Info.cs
+++ b/Aaru.Filesystems/MinixFS/Info.cs
@@ -227,14 +227,14 @@ public sealed partial class MinixFS
sb.AppendFormat(Localization._0_chars_in_filename, filenamesize).AppendLine();
if(mnxSb.s_zones > 0) // On V2
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, mnxSb.s_zones, mnxSb.s_zones * 1024).
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, mnxSb.s_zones, mnxSb.s_zones * 1024).
AppendLine();
else
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, mnxSb.s_nzones, mnxSb.s_nzones * 1024).
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, mnxSb.s_nzones, mnxSb.s_nzones * 1024).
AppendLine();
sb.AppendFormat(Localization._0_bytes_block, mnxSb.s_blocksize).AppendLine();
- sb.AppendFormat(Localization._0_inodes_on_volume, mnxSb.s_ninodes).AppendLine();
+ sb.AppendFormat(Localization._0_inodes_in_volume, mnxSb.s_ninodes).AppendLine();
sb.AppendFormat(Localization._0_blocks_on_inode_map_1_bytes, mnxSb.s_imap_blocks,
mnxSb.s_imap_blocks * mnxSb.s_blocksize).AppendLine();
@@ -260,13 +260,13 @@ public sealed partial class MinixFS
sb.AppendFormat(Localization._0_chars_in_filename, filenamesize).AppendLine();
if(mnxSb.s_zones > 0) // On V2
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, mnxSb.s_zones, mnxSb.s_zones * 1024).
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, mnxSb.s_zones, mnxSb.s_zones * 1024).
AppendLine();
else
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, mnxSb.s_nzones, mnxSb.s_nzones * 1024).
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, mnxSb.s_nzones, mnxSb.s_nzones * 1024).
AppendLine();
- sb.AppendFormat(Localization._0_inodes_on_volume, mnxSb.s_ninodes).AppendLine();
+ sb.AppendFormat(Localization._0_inodes_in_volume, mnxSb.s_ninodes).AppendLine();
sb.AppendFormat(Localization._0_blocks_on_inode_map_1_bytes, mnxSb.s_imap_blocks,
mnxSb.s_imap_blocks * 1024).AppendLine();
diff --git a/Aaru.Filesystems/ProDOS/Info.cs b/Aaru.Filesystems/ProDOS/Info.cs
index 75457b108..3b14f3b85 100644
--- a/Aaru.Filesystems/ProDOS/Info.cs
+++ b/Aaru.Filesystems/ProDOS/Info.cs
@@ -227,7 +227,7 @@ public sealed partial class ProDOSPlugin
rootDirectoryKeyBlock.header.total_blocks = BitConverter.ToUInt16(rootDirectoryKeyBlockBytes, 0x29);
if(apmFromHddOnCd)
- sbInformation.AppendLine(Localization.ProDOS_uses_512_bytes_sector_while_devices_uses_2048_bytes_sector).
+ sbInformation.AppendLine(Localization.ProDOS_uses_512_bytes_sector_while_device_uses_2048_bytes_sector).
AppendLine();
if(rootDirectoryKeyBlock.header.version != VERSION1 ||
diff --git a/Aaru.Filesystems/SFS/Info.cs b/Aaru.Filesystems/SFS/Info.cs
index 6f7789bd3..0a91c62e9 100644
--- a/Aaru.Filesystems/SFS/Info.cs
+++ b/Aaru.Filesystems/SFS/Info.cs
@@ -83,7 +83,7 @@ public sealed partial class SFS
sbInformation.AppendFormat(Localization.Volume_created_on_0,
DateHandlers.UnixUnsignedToDateTime(rootBlock.datecreated).AddYears(8)).AppendLine();
- sbInformation.AppendFormat(Localization.Bitmap_starts_in_block_0, rootBlock.bitmapbase).AppendLine();
+ sbInformation.AppendFormat(Localization.Bitmap_starts_at_block_0, rootBlock.bitmapbase).AppendLine();
sbInformation.AppendFormat(Localization.Admin_space_container_starts_in_block_0, rootBlock.adminspacecontainer).
AppendLine();
diff --git a/Aaru.Filesystems/SysV/Info.cs b/Aaru.Filesystems/SysV/Info.cs
index d159937c5..6c5bb8adb 100644
--- a/Aaru.Filesystems/SysV/Info.cs
+++ b/Aaru.Filesystems/SysV/Info.cs
@@ -450,18 +450,18 @@ public sealed partial class SysVfs
{
if(bs != 2048)
sb.
- AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_sector,
+ AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block,
bs, 2048).AppendLine();
}
else
{
if(bs != imagePlugin.Info.SectorSize)
sb.
- AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_sector,
+ AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block,
bs, imagePlugin.Info.SectorSize).AppendLine();
}
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, xnx_sb.s_fsize, xnx_sb.s_fsize * bs).AppendLine();
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, xnx_sb.s_fsize, xnx_sb.s_fsize * bs).AppendLine();
sb.AppendFormat(Localization._0_free_zones_on_volume_1_bytes, xnx_sb.s_tfree, xnx_sb.s_tfree * bs).
AppendLine();
@@ -634,7 +634,7 @@ public sealed partial class SysVfs
metadata.Clusters = sysv_sb.s_fsize;
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, sysv_sb.s_fsize, sysv_sb.s_fsize * bs).
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, sysv_sb.s_fsize, sysv_sb.s_fsize * bs).
AppendLine();
sb.AppendFormat(Localization._0_free_zones_on_volume_1_bytes, sysv_sb.s_tfree, sysv_sb.s_tfree * bs).
@@ -722,10 +722,10 @@ public sealed partial class SysVfs
if(imagePlugin.Info.SectorSize != 512)
sb.
- AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_sector,
+ AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block,
512, 2048).AppendLine();
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, coh_sb.s_fsize, coh_sb.s_fsize * 512).AppendLine();
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, coh_sb.s_fsize, coh_sb.s_fsize * 512).AppendLine();
sb.AppendFormat(Localization._0_free_zones_on_volume_1_bytes, coh_sb.s_tfree, coh_sb.s_tfree * 512).
AppendLine();
@@ -797,10 +797,10 @@ public sealed partial class SysVfs
if(imagePlugin.Info.SectorSize != 512)
sb.
- AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_sector,
+ AppendFormat(Localization.WARNING_Filesystem_indicates_0_bytes_block_while_device_indicates_1_bytes_block,
512, 2048).AppendLine();
- sb.AppendFormat(Localization._0_zones_on_volume_1_bytes, v7_sb.s_fsize, v7_sb.s_fsize * 512).AppendLine();
+ sb.AppendFormat(Localization._0_zones_in_volume_1_bytes, v7_sb.s_fsize, v7_sb.s_fsize * 512).AppendLine();
sb.AppendFormat(Localization._0_free_zones_on_volume_1_bytes, v7_sb.s_tfree, v7_sb.s_tfree * 512).
AppendLine();
diff --git a/Aaru.Filesystems/UCSDPascal/Info.cs b/Aaru.Filesystems/UCSDPascal/Info.cs
index 6034f243c..9445b27f1 100644
--- a/Aaru.Filesystems/UCSDPascal/Info.cs
+++ b/Aaru.Filesystems/UCSDPascal/Info.cs
@@ -197,7 +197,7 @@ public sealed partial class PascalPlugin
sbInformation.AppendFormat(Localization.Volume_has_0_files, volEntry.Files).AppendLine();
sbInformation.
- AppendFormat(Localization.Volume_last_booted_at_0, DateHandlers.UcsdPascalToDateTime(volEntry.LastBoot)).
+ AppendFormat(Localization.Volume_last_booted_on_0, DateHandlers.UcsdPascalToDateTime(volEntry.LastBoot)).
AppendLine();
information = sbInformation.ToString();
diff --git a/Aaru.Filesystems/UDF/Info.cs b/Aaru.Filesystems/UDF/Info.cs
index ed7c47a6a..1a0704498 100644
--- a/Aaru.Filesystems/UDF/Info.cs
+++ b/Aaru.Filesystems/UDF/Info.cs
@@ -340,7 +340,7 @@ public sealed partial class UDF
sbInformation.AppendFormat(Localization.Volume_uses_0_bytes_per_block, lvd.logicalBlockSize).AppendLine();
- sbInformation.AppendFormat(Localization.Volume_was_last_written_in_0, EcmaToDateTime(lvid.recordingDateTime)).
+ sbInformation.AppendFormat(Localization.Volume_was_last_written_on_0, EcmaToDateTime(lvid.recordingDateTime)).
AppendLine();
sbInformation.AppendFormat(Localization.Volume_contains_0_partitions, lvid.numberOfPartitions).AppendLine();
diff --git a/Aaru.Filesystems/extFS/Info.cs b/Aaru.Filesystems/extFS/Info.cs
index 8365b1eb7..6871fa68e 100644
--- a/Aaru.Filesystems/extFS/Info.cs
+++ b/Aaru.Filesystems/extFS/Info.cs
@@ -111,10 +111,10 @@ public sealed partial class extFS
};
sb.AppendLine(Localization.ext_filesystem);
- sb.AppendFormat(Localization._0_zones_on_volume, extSb.zones);
+ sb.AppendFormat(Localization._0_zones_in_volume, extSb.zones);
sb.AppendFormat(Localization._0_free_blocks_1_bytes, extSb.freecountblk, extSb.freecountblk * 1024);
- sb.AppendFormat(Localization._0_inodes_on_volume_1_free_2, extSb.inodes, extSb.freecountind,
+ sb.AppendFormat(Localization._0_inodes_in_volume_1_free_2, extSb.inodes, extSb.freecountind,
extSb.freecountind * 100 / extSb.inodes);
sb.AppendFormat(Localization.First_free_inode_is_0, extSb.firstfreeind);