diff --git a/Aaru.Partitions/Acorn.cs b/Aaru.Partitions/Acorn.cs
index a6d8d5b12..800ba75de 100644
--- a/Aaru.Partitions/Acorn.cs
+++ b/Aaru.Partitions/Acorn.cs
@@ -32,6 +32,7 @@
using System;
using System.Collections.Generic;
+using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using Aaru.CommonTypes;
@@ -46,14 +47,15 @@ namespace Aaru.Partitions;
/// Implements decoding of Acorn partitions
public sealed class Acorn : IPartition
{
- const ulong ADFS_SB_POS = 0xC00;
- const uint LINUX_MAGIC = 0xDEAFA1DE;
- const uint SWAP_MAGIC = 0xDEAFAB1E;
- const uint RISCIX_MAGIC = 0x4A657320;
- const uint TYPE_LINUX = 9;
- const uint TYPE_RISCIX_MFM = 1;
- const uint TYPE_RISCIX_SCSI = 2;
- const uint TYPE_MASK = 15;
+ const ulong ADFS_SB_POS = 0xC00;
+ const uint LINUX_MAGIC = 0xDEAFA1DE;
+ const uint SWAP_MAGIC = 0xDEAFAB1E;
+ const uint RISCIX_MAGIC = 0x4A657320;
+ const uint TYPE_LINUX = 9;
+ const uint TYPE_RISCIX_MFM = 1;
+ const uint TYPE_RISCIX_SCSI = 2;
+ const uint TYPE_MASK = 15;
+ readonly byte[] _linuxIcsMagic = "LinuxPart"u8.ToArray();
///
public string Name => Localization.Acorn_Name;
@@ -67,11 +69,22 @@ public sealed class Acorn : IPartition
{
partitions = new List();
- ulong sbSector;
+ ulong counter = 0;
+ GetFileCorePartitions(imagePlugin, partitions, sectorOffset, ref counter);
+ GetIcsPartitions(imagePlugin, partitions, sectorOffset, ref counter);
+
+ return partitions.Count != 0;
+ }
+
+ static void GetFileCorePartitions(IMediaImage imagePlugin, List partitions, ulong sectorOffset,
+ ref ulong counter)
+ {
// RISC OS always checks for the partition on 0. Afaik no emulator chains it.
if(sectorOffset != 0)
- return false;
+ return;
+
+ ulong sbSector;
if(imagePlugin.Info.SectorSize > ADFS_SB_POS)
sbSector = 0;
@@ -82,7 +95,7 @@ public sealed class Acorn : IPartition
if(errno != ErrorNumber.NoError ||
sector.Length < 512)
- return false;
+ return;
AcornBootBlock bootBlock = Marshal.ByteArrayToStructureLittleEndian(sector);
@@ -96,14 +109,12 @@ public sealed class Acorn : IPartition
int mapSector = bootBlock.startCylinder * secCyl;
if((ulong)mapSector >= imagePlugin.Info.Sectors)
- return false;
+ return;
errno = imagePlugin.ReadSector((ulong)mapSector, out byte[] map);
if(errno != ErrorNumber.NoError)
- return false;
-
- ulong counter = 0;
+ return;
if(checksum == bootBlock.checksum)
{
@@ -112,7 +123,7 @@ public sealed class Acorn : IPartition
Size = ((ulong)bootBlock.discRecord.disc_size_high * 0x100000000) + bootBlock.discRecord.disc_size,
Length = (((ulong)bootBlock.discRecord.disc_size_high * 0x100000000) + bootBlock.discRecord.disc_size) /
imagePlugin.Info.SectorSize,
- Type = "ADFS",
+ Type = Localization.Filecore,
Name = StringHandlers.CToString(bootBlock.discRecord.disc_name, Encoding.GetEncoding("iso-8859-1"))
};
@@ -137,7 +148,13 @@ public sealed class Acorn : IPartition
Size = entry.size,
Length = (ulong)(entry.size * sector.Length),
Sequence = counter,
- Scheme = Name
+ Scheme = "Filecore/Linux",
+ Type = entry.magic switch
+ {
+ LINUX_MAGIC => Localization.Linux,
+ SWAP_MAGIC => Localization.Linux_swap,
+ _ => Localization.Unknown_partition_type
+ }
};
part.Offset = part.Start * (ulong)sector.Length;
@@ -167,7 +184,8 @@ public sealed class Acorn : IPartition
Length = (ulong)(entry.length * sector.Length),
Name = StringHandlers.CToString(entry.name, Encoding.GetEncoding("iso-8859-1")),
Sequence = counter,
- Scheme = Name
+ Scheme = "Filecore/RISCiX",
+ Type = Localization.Unknown_partition_type
};
part.Offset = part.Start * (ulong)sector.Length;
@@ -182,8 +200,85 @@ public sealed class Acorn : IPartition
break;
}
}
+ }
- return partitions.Count != 0;
+ void GetIcsPartitions(IMediaImage imagePlugin, List partitions, ulong sectorOffset, ref ulong counter)
+ {
+ // RISC OS always checks for the partition on 0. Afaik no emulator chains it.
+ if(sectorOffset != 0)
+ return;
+
+ ErrorNumber errno = imagePlugin.ReadSector(0, out byte[] sector);
+
+ if(errno != ErrorNumber.NoError ||
+ sector.Length < 512)
+ return;
+
+ uint icsSum = 0x50617274;
+
+ for(int i = 0; i < 508; i++)
+ icsSum += sector[i];
+
+ uint discCheck = BitConverter.ToUInt32(sector, 508);
+
+ if(icsSum != discCheck)
+ return;
+
+ IcsTable table = Marshal.ByteArrayToStructureLittleEndian(sector);
+
+ foreach(IcsEntry entry in table.entries.Where(entry => entry.size != 0))
+ {
+ // FileCore partition
+ Partition part;
+
+ if(entry.size > 0)
+ {
+ part = new Partition
+ {
+ Start = entry.start,
+ Length = (ulong)entry.size,
+ Size = (ulong)(entry.size * sector.Length),
+ Type = Localization.Filecore,
+ Sequence = counter,
+ Scheme = "ICS"
+ };
+
+ part.Offset = part.Start * (ulong)sector.Length;
+ counter++;
+
+ partitions.Add(part);
+
+ continue;
+ }
+
+ // Negative size means Linux partition, first sector needs to be read
+ errno = imagePlugin.ReadSector(entry.start, out sector);
+
+ if(errno != ErrorNumber.NoError)
+ continue;
+
+ if(_linuxIcsMagic.Where((t, i) => t != sector[i]).Any())
+ continue;
+
+ part = new Partition
+ {
+ Start = entry.start,
+ Length = (ulong)(entry.size * -1),
+ Size = (ulong)(entry.size * -1 * sector.Length),
+ Type = sector[9] == 'N'
+ ? Localization.Linux
+ : sector[9] == 'S'
+ ? Localization.Linux_swap
+ : Localization.Unknown_partition_type,
+ Sequence = counter,
+ Scheme = "ICS"
+ };
+
+ part.Offset = part.Start * (ulong)sector.Length;
+ counter++;
+
+ partitions.Add(part);
+ }
}
[StructLayout(LayoutKind.Sequential)]
@@ -261,4 +356,18 @@ public sealed class Acorn : IPartition
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
public readonly byte[] name;
}
+
+ [StructLayout(LayoutKind.Sequential, Pack = 1)]
+ struct IcsTable
+ {
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
+ public readonly IcsEntry[] entries;
+ }
+
+ [StructLayout(LayoutKind.Sequential, Pack = 1)]
+ struct IcsEntry
+ {
+ public readonly uint start;
+ public readonly int size;
+ }
}
\ No newline at end of file
diff --git a/Aaru.Partitions/Localization/Localization.Designer.cs b/Aaru.Partitions/Localization/Localization.Designer.cs
index 986dd37a0..639fe0792 100644
--- a/Aaru.Partitions/Localization/Localization.Designer.cs
+++ b/Aaru.Partitions/Localization/Localization.Designer.cs
@@ -11,32 +11,46 @@ namespace Aaru.Partitions {
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.Partitions.Localization.Localization", typeof(Localization).Assembly);
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aaru.Partitions.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,2782 +59,4180 @@ namespace Aaru.Partitions {
}
}
- internal static string Acorn_Name {
- get {
- return ResourceManager.GetString("Acorn_Name", resourceCulture);
- }
- }
-
- internal static string AppleMap_Name {
- get {
- return ResourceManager.GetString("AppleMap_Name", resourceCulture);
- }
- }
-
- internal static string Found_misaligned_entry {
- get {
- return ResourceManager.GetString("Found_misaligned_entry", resourceCulture);
- }
- }
-
- internal static string Found_aligned_entry {
- get {
- return ResourceManager.GetString("Found_aligned_entry", resourceCulture);
- }
- }
-
- internal static string Partition_flags {
- get {
- return ResourceManager.GetString("Partition_flags", resourceCulture);
- }
- }
-
- internal static string Partition_is_valid {
- get {
- return ResourceManager.GetString("Partition_is_valid", resourceCulture);
- }
- }
-
- internal static string Partition_entry_is_allocated {
- get {
- return ResourceManager.GetString("Partition_entry_is_allocated", resourceCulture);
- }
- }
-
- internal static string Partition_is_in_use {
- get {
- return ResourceManager.GetString("Partition_is_in_use", resourceCulture);
- }
- }
-
- internal static string Partition_is_bootable {
- get {
- return ResourceManager.GetString("Partition_is_bootable", resourceCulture);
- }
- }
-
- internal static string Partition_is_readable {
- get {
- return ResourceManager.GetString("Partition_is_readable", resourceCulture);
- }
- }
-
- internal static string Partition_is_writable {
- get {
- return ResourceManager.GetString("Partition_is_writable", resourceCulture);
- }
- }
-
- internal static string First_boot_sector_0 {
- get {
- return ResourceManager.GetString("First_boot_sector_0", resourceCulture);
- }
- }
-
- internal static string Boot_is_0_bytes {
- get {
- return ResourceManager.GetString("Boot_is_0_bytes", resourceCulture);
- }
- }
-
- internal static string Boot_load_address_0_X8 {
- get {
- return ResourceManager.GetString("Boot_load_address_0_X8", resourceCulture);
- }
- }
-
- internal static string Boot_entry_point_0_X8 {
- get {
- return ResourceManager.GetString("Boot_entry_point_0_X8", resourceCulture);
- }
- }
-
- internal static string Boot_code_checksum_0_X8 {
- get {
- return ResourceManager.GetString("Boot_code_checksum_0_X8", resourceCulture);
- }
- }
-
- internal static string Processor_0 {
- get {
- return ResourceManager.GetString("Processor_0", resourceCulture);
- }
- }
-
- internal static string Partition_boot_code_is_position_independent {
- get {
- return ResourceManager.GetString("Partition_boot_code_is_position_independent", resourceCulture);
- }
- }
-
- internal static string Cutting_last_partition_end_0_to_media_size_1 {
- get {
- return ResourceManager.GetString("Cutting_last_partition_end_0_to_media_size_1", resourceCulture);
- }
- }
-
- internal static string Not_adding_partition_because_start_0_is_outside_media_size_1 {
- get {
- return ResourceManager.GetString("Not_adding_partition_because_start_0_is_outside_media_size_1", resourceCulture);
- }
- }
-
- internal static string Apricot_Name {
- get {
- return ResourceManager.GetString("Apricot_Name", resourceCulture);
- }
- }
-
- internal static string Non_bootable {
- get {
- return ResourceManager.GetString("Non_bootable", resourceCulture);
- }
- }
-
- internal static string Apricot_XI_RAM_BIOS {
- get {
- return ResourceManager.GetString("Apricot_XI_RAM_BIOS", resourceCulture);
- }
- }
-
- internal static string Generic_ROM_BIOS {
- get {
- return ResourceManager.GetString("Generic_ROM_BIOS", resourceCulture);
- }
- }
-
- internal static string Apricot_XI_ROM_BIOS {
- get {
- return ResourceManager.GetString("Apricot_XI_ROM_BIOS", resourceCulture);
- }
- }
-
- internal static string Apricot_Portable_ROM_BIOS {
- get {
- return ResourceManager.GetString("Apricot_Portable_ROM_BIOS", resourceCulture);
- }
- }
-
- internal static string Apricot_F1_ROM_BIOS {
- get {
- return ResourceManager.GetString("Apricot_F1_ROM_BIOS", resourceCulture);
- }
- }
-
- internal static string MF1DD_70_track {
- get {
- return ResourceManager.GetString("MF1DD_70_track", resourceCulture);
- }
- }
-
- internal static string Invalid_operating_system {
- get {
- return ResourceManager.GetString("Invalid_operating_system", resourceCulture);
- }
- }
-
- internal static string None_parity {
- get {
- return ResourceManager.GetString("None_parity", resourceCulture);
- }
- }
-
- internal static string Odd_parity {
- get {
- return ResourceManager.GetString("Odd_parity", resourceCulture);
- }
- }
-
- internal static string Even_parity {
- get {
- return ResourceManager.GetString("Even_parity", resourceCulture);
- }
- }
-
- internal static string Mark_parity {
- get {
- return ResourceManager.GetString("Mark_parity", resourceCulture);
- }
- }
-
- internal static string Space_parity {
- get {
- return ResourceManager.GetString("Space_parity", resourceCulture);
- }
- }
-
- internal static string Parallel_print_device {
- get {
- return ResourceManager.GetString("Parallel_print_device", resourceCulture);
- }
- }
-
- internal static string Serial_print_device {
- get {
- return ResourceManager.GetString("Serial_print_device", resourceCulture);
- }
- }
-
- internal static string Unknown_operating_system {
- get {
- return ResourceManager.GetString("Unknown_operating_system", resourceCulture);
- }
- }
-
- internal static string Unknown_boot_type {
- get {
- return ResourceManager.GetString("Unknown_boot_type", resourceCulture);
- }
- }
-
- internal static string Unknown_disk_type {
- get {
- return ResourceManager.GetString("Unknown_disk_type", resourceCulture);
- }
- }
-
- internal static string Unknown_print_device {
- get {
- return ResourceManager.GetString("Unknown_print_device", resourceCulture);
- }
- }
-
- internal static string Unknown_parity_type {
- get {
- return ResourceManager.GetString("Unknown_parity_type", resourceCulture);
- }
- }
-
- internal static string AtariPartitions_Name {
- get {
- return ResourceManager.GetString("AtariPartitions_Name", resourceCulture);
- }
- }
-
- internal static string Boot_code_SHA1_0 {
- get {
- return ResourceManager.GetString("Boot_code_SHA1_0", resourceCulture);
- }
- }
-
- internal static string WARNING_End_of_partition_goes_beyond_device_size {
- get {
- return ResourceManager.GetString("WARNING_End_of_partition_goes_beyond_device_size", resourceCulture);
- }
- }
-
- internal static string Atari_GEMDOS_partition {
- get {
- return ResourceManager.GetString("Atari_GEMDOS_partition", resourceCulture);
- }
- }
-
- internal static string Atari_GEMDOS_partition_bigger_than_32_MiB {
- get {
- return ResourceManager.GetString("Atari_GEMDOS_partition_bigger_than_32_MiB", resourceCulture);
- }
- }
-
- internal static string Linux_partition {
- get {
- return ResourceManager.GetString("Linux_partition", resourceCulture);
- }
- }
-
- internal static string Swap_partition {
- get {
- return ResourceManager.GetString("Swap_partition", resourceCulture);
- }
- }
-
- internal static string RAW_partition {
- get {
- return ResourceManager.GetString("RAW_partition", resourceCulture);
- }
- }
-
- internal static string NetBSD_partition {
- get {
- return ResourceManager.GetString("NetBSD_partition", resourceCulture);
- }
- }
-
- internal static string NetBSD_swap_partition {
- get {
- return ResourceManager.GetString("NetBSD_swap_partition", resourceCulture);
- }
- }
-
- internal static string Atari_UNIX_partition {
- get {
- return ResourceManager.GetString("Atari_UNIX_partition", resourceCulture);
- }
- }
-
- internal static string Macintosh_partition {
- get {
- return ResourceManager.GetString("Macintosh_partition", resourceCulture);
- }
- }
-
- internal static string MINIX_partition {
- get {
- return ResourceManager.GetString("MINIX_partition", resourceCulture);
- }
- }
-
- internal static string Unknown_partition_type {
- get {
- return ResourceManager.GetString("Unknown_partition_type", resourceCulture);
- }
- }
-
- internal static string BSD_Name {
- get {
- return ResourceManager.GetString("BSD_Name", resourceCulture);
- }
- }
-
- internal static string BSD_GetInformation_dl_magic_on_sector_0_at_offset_1_equals_2_X8_expected_3_X8 {
- get {
- return ResourceManager.GetString("BSD_GetInformation_dl_magic_on_sector_0_at_offset_1_equals_2_X8_expected_3_X8", resourceCulture);
- }
- }
-
- internal static string BSD_GetInformation_Adding_it {
- get {
- return ResourceManager.GetString("BSD_GetInformation_Adding_it", resourceCulture);
- }
- }
-
- internal static string Unused_entry {
- get {
- return ResourceManager.GetString("Unused_entry", resourceCulture);
- }
- }
-
- internal static string UNIX_6th_Edition {
- get {
- return ResourceManager.GetString("UNIX_6th_Edition", resourceCulture);
- }
- }
-
- internal static string UNIX_7th_Edition {
- get {
- return ResourceManager.GetString("UNIX_7th_Edition", resourceCulture);
- }
- }
-
- internal static string UNIX_System_V {
- get {
- return ResourceManager.GetString("UNIX_System_V", resourceCulture);
- }
- }
-
- internal static string UNIX_7th_Edition_with_1K_blocks {
- get {
- return ResourceManager.GetString("UNIX_7th_Edition_with_1K_blocks", resourceCulture);
- }
- }
-
- internal static string UNIX_8th_Edition_with_4K_blocks {
- get {
- return ResourceManager.GetString("UNIX_8th_Edition_with_4K_blocks", resourceCulture);
- }
- }
-
- internal static string _4_2_BSD_Fast_File_System {
- get {
- return ResourceManager.GetString("_4_2_BSD_Fast_File_System", resourceCulture);
- }
- }
-
- internal static string _4_4_LFS {
- get {
- return ResourceManager.GetString("_4_4_LFS", resourceCulture);
- }
- }
-
- internal static string HPFS {
- get {
- return ResourceManager.GetString("HPFS", resourceCulture);
- }
- }
-
- internal static string ISO9660 {
- get {
- return ResourceManager.GetString("ISO9660", resourceCulture);
- }
- }
-
- internal static string Boot {
- get {
- return ResourceManager.GetString("Boot", resourceCulture);
- }
- }
-
- internal static string Amiga_FFS {
- get {
- return ResourceManager.GetString("Amiga_FFS", resourceCulture);
- }
- }
-
- internal static string Apple_HFS {
- get {
- return ResourceManager.GetString("Apple_HFS", resourceCulture);
- }
- }
-
- internal static string Digital_Advanced_File_System {
- get {
- return ResourceManager.GetString("Digital_Advanced_File_System", resourceCulture);
- }
- }
-
- internal static string Digital_LSM_Public_Region {
- get {
- return ResourceManager.GetString("Digital_LSM_Public_Region", resourceCulture);
- }
- }
-
- internal static string Digital_LSM_Private_Region {
- get {
- return ResourceManager.GetString("Digital_LSM_Private_Region", resourceCulture);
- }
- }
-
- internal static string Digital_LSM_Simple_Disk {
- get {
- return ResourceManager.GetString("Digital_LSM_Simple_Disk", resourceCulture);
- }
- }
-
- internal static string Concatenated_disk {
- get {
- return ResourceManager.GetString("Concatenated_disk", resourceCulture);
- }
- }
-
- internal static string IBM_JFS2 {
- get {
- return ResourceManager.GetString("IBM_JFS2", resourceCulture);
- }
- }
-
- internal static string Hammer {
- get {
- return ResourceManager.GetString("Hammer", resourceCulture);
- }
- }
-
- internal static string Hammer2 {
- get {
- return ResourceManager.GetString("Hammer2", resourceCulture);
- }
- }
-
- internal static string UDF {
- get {
- return ResourceManager.GetString("UDF", resourceCulture);
- }
- }
-
- internal static string EFS {
- get {
- return ResourceManager.GetString("EFS", resourceCulture);
- }
- }
-
- internal static string ZFS {
- get {
- return ResourceManager.GetString("ZFS", resourceCulture);
- }
- }
-
- internal static string FreeBSD_nandfs {
- get {
- return ResourceManager.GetString("FreeBSD_nandfs", resourceCulture);
- }
- }
-
- internal static string FAT {
- get {
- return ResourceManager.GetString("FAT", resourceCulture);
- }
- }
-
- internal static string Other_or_unknown {
- get {
- return ResourceManager.GetString("Other_or_unknown", resourceCulture);
- }
- }
-
- internal static string DEC_Name {
- get {
- return ResourceManager.GetString("DEC_Name", resourceCulture);
- }
- }
-
- internal static string DragonFlyBSD_Name {
- get {
- return ResourceManager.GetString("DragonFlyBSD_Name", resourceCulture);
- }
- }
-
- internal static string GuidPartitionTable_Name {
- get {
- return ResourceManager.GetString("GuidPartitionTable_Name", resourceCulture);
- }
- }
-
- internal static string Found_unaligned_signature {
- get {
- return ResourceManager.GetString("Found_unaligned_signature", resourceCulture);
- }
- }
-
- internal static string MBR_scheme {
- get {
- return ResourceManager.GetString("MBR_scheme", resourceCulture);
- }
- }
-
- internal static string EFI_System {
- get {
- return ResourceManager.GetString("EFI_System", resourceCulture);
- }
- }
-
- internal static string BIOS_Boot {
- get {
- return ResourceManager.GetString("BIOS_Boot", resourceCulture);
- }
- }
-
- internal static string Intel_Fast_Flash_iFFS {
- get {
- return ResourceManager.GetString("Intel_Fast_Flash_iFFS", resourceCulture);
- }
- }
-
- internal static string Sony_boot {
- get {
- return ResourceManager.GetString("Sony_boot", resourceCulture);
- }
- }
-
- internal static string Lenovo_boot {
- get {
- return ResourceManager.GetString("Lenovo_boot", resourceCulture);
- }
- }
-
- internal static string Microsoft_Reserved_MSR {
- get {
- return ResourceManager.GetString("Microsoft_Reserved_MSR", resourceCulture);
- }
- }
-
- internal static string Microsoft_Basic_data {
- get {
- return ResourceManager.GetString("Microsoft_Basic_data", resourceCulture);
- }
- }
-
- internal static string Logical_Disk_Manager_LDM_metadata {
- get {
- return ResourceManager.GetString("Logical_Disk_Manager_LDM_metadata", resourceCulture);
- }
- }
-
- internal static string Logical_Disk_Manager_data {
- get {
- return ResourceManager.GetString("Logical_Disk_Manager_data", resourceCulture);
- }
- }
-
- internal static string Windows_Recovery_Environment {
- get {
- return ResourceManager.GetString("Windows_Recovery_Environment", resourceCulture);
- }
- }
-
- internal static string IBM_General_Parallel_File_System_GPFS {
- get {
- return ResourceManager.GetString("IBM_General_Parallel_File_System_GPFS", resourceCulture);
- }
- }
-
- internal static string Windows_Storage_Spaces {
- get {
- return ResourceManager.GetString("Windows_Storage_Spaces", resourceCulture);
- }
- }
-
- internal static string HP_UX_Data {
- get {
- return ResourceManager.GetString("HP_UX_Data", resourceCulture);
- }
- }
-
- internal static string HP_UX_Service {
- get {
- return ResourceManager.GetString("HP_UX_Service", resourceCulture);
- }
- }
-
- internal static string Linux_filesystem {
- get {
- return ResourceManager.GetString("Linux_filesystem", resourceCulture);
- }
- }
-
- internal static string Linux_RAID {
- get {
- return ResourceManager.GetString("Linux_RAID", resourceCulture);
- }
- }
-
- internal static string Linux_Root_x86 {
- get {
- return ResourceManager.GetString("Linux_Root_x86", resourceCulture);
- }
- }
-
- internal static string Linux_Root_x86_64 {
- get {
- return ResourceManager.GetString("Linux_Root_x86_64", resourceCulture);
- }
- }
-
- internal static string Linux_Root_32_bit_ARM {
- get {
- return ResourceManager.GetString("Linux_Root_32_bit_ARM", resourceCulture);
- }
- }
-
- internal static string Linux_Root_AArch64 {
- get {
- return ResourceManager.GetString("Linux_Root_AArch64", resourceCulture);
- }
- }
-
- internal static string Logical_Volume_Manager_LVM {
- get {
- return ResourceManager.GetString("Logical_Volume_Manager_LVM", resourceCulture);
- }
- }
-
- internal static string Linux_home {
- get {
- return ResourceManager.GetString("Linux_home", resourceCulture);
- }
- }
-
- internal static string Linux_srv {
- get {
- return ResourceManager.GetString("Linux_srv", resourceCulture);
- }
- }
-
- internal static string Plain_dm_crypt {
- get {
- return ResourceManager.GetString("Plain_dm_crypt", resourceCulture);
- }
- }
-
- internal static string LUKS {
- get {
- return ResourceManager.GetString("LUKS", resourceCulture);
- }
- }
-
- internal static string Linux_Reserved {
- get {
- return ResourceManager.GetString("Linux_Reserved", resourceCulture);
- }
- }
-
- internal static string FreeBSD_Boot {
- get {
- return ResourceManager.GetString("FreeBSD_Boot", resourceCulture);
- }
- }
-
- internal static string FreeBSD_Data {
- get {
- return ResourceManager.GetString("FreeBSD_Data", resourceCulture);
- }
- }
-
- internal static string FreeBSD_UFS {
- get {
- return ResourceManager.GetString("FreeBSD_UFS", resourceCulture);
- }
- }
-
- internal static string FreeBSD_UFS2 {
- get {
- return ResourceManager.GetString("FreeBSD_UFS2", resourceCulture);
- }
- }
-
- internal static string FreeBSD_Vinum {
- get {
- return ResourceManager.GetString("FreeBSD_Vinum", resourceCulture);
- }
- }
-
- internal static string FreeBSD_ZFS {
- get {
- return ResourceManager.GetString("FreeBSD_ZFS", resourceCulture);
- }
- }
-
- internal static string Apple_UFS {
- get {
- return ResourceManager.GetString("Apple_UFS", resourceCulture);
- }
- }
-
- internal static string Apple_RAID {
- get {
- return ResourceManager.GetString("Apple_RAID", resourceCulture);
- }
- }
-
- internal static string Apple_RAID_offline {
- get {
- return ResourceManager.GetString("Apple_RAID_offline", resourceCulture);
- }
- }
-
- internal static string Apple_Boot {
- get {
- return ResourceManager.GetString("Apple_Boot", resourceCulture);
- }
- }
-
- internal static string Apple_Label {
- get {
- return ResourceManager.GetString("Apple_Label", resourceCulture);
- }
- }
-
- internal static string Apple_TV_Recovery {
- get {
- return ResourceManager.GetString("Apple_TV_Recovery", resourceCulture);
- }
- }
-
- internal static string Apple_Core_Storage {
- get {
- return ResourceManager.GetString("Apple_Core_Storage", resourceCulture);
- }
- }
-
- internal static string Solaris_Root {
- get {
- return ResourceManager.GetString("Solaris_Root", resourceCulture);
- }
- }
-
- internal static string Solaris_Swap {
- get {
- return ResourceManager.GetString("Solaris_Swap", resourceCulture);
- }
- }
-
- internal static string Solaris_Backup {
- get {
- return ResourceManager.GetString("Solaris_Backup", resourceCulture);
- }
- }
-
- internal static string Solaris_usr_or_Apple_ZFS {
- get {
- return ResourceManager.GetString("Solaris_usr_or_Apple_ZFS", resourceCulture);
- }
- }
-
- internal static string Solaris_var {
- get {
- return ResourceManager.GetString("Solaris_var", resourceCulture);
- }
- }
-
- internal static string Solaris_home {
- get {
- return ResourceManager.GetString("Solaris_home", resourceCulture);
- }
- }
-
- internal static string Solaris_Alternate_sector {
- get {
- return ResourceManager.GetString("Solaris_Alternate_sector", resourceCulture);
- }
- }
-
- internal static string Solaris_Reserved {
- get {
- return ResourceManager.GetString("Solaris_Reserved", resourceCulture);
- }
- }
-
- internal static string NetBSD_Swap {
- get {
- return ResourceManager.GetString("NetBSD_Swap", resourceCulture);
- }
- }
-
- internal static string NetBSD_FFS {
- get {
- return ResourceManager.GetString("NetBSD_FFS", resourceCulture);
- }
- }
-
- internal static string NetBSD_LFS {
- get {
- return ResourceManager.GetString("NetBSD_LFS", resourceCulture);
- }
- }
-
- internal static string NetBSD_RAID {
- get {
- return ResourceManager.GetString("NetBSD_RAID", resourceCulture);
- }
- }
-
- internal static string NetBSD_Concatenated {
- get {
- return ResourceManager.GetString("NetBSD_Concatenated", resourceCulture);
- }
- }
-
- internal static string NetBSD_Encrypted {
- get {
- return ResourceManager.GetString("NetBSD_Encrypted", resourceCulture);
- }
- }
-
- internal static string ChromeOS_kernel {
- get {
- return ResourceManager.GetString("ChromeOS_kernel", resourceCulture);
- }
- }
-
- internal static string ChromeOS_rootfs {
- get {
- return ResourceManager.GetString("ChromeOS_rootfs", resourceCulture);
- }
- }
-
- internal static string ChromeOS_future_use {
- get {
- return ResourceManager.GetString("ChromeOS_future_use", resourceCulture);
- }
- }
-
- internal static string Haiku_BFS {
- get {
- return ResourceManager.GetString("Haiku_BFS", resourceCulture);
- }
- }
-
- internal static string MidnightBSD_Boot {
- get {
- return ResourceManager.GetString("MidnightBSD_Boot", resourceCulture);
- }
- }
-
- internal static string MidnightBSD_Data {
- get {
- return ResourceManager.GetString("MidnightBSD_Data", resourceCulture);
- }
- }
-
- internal static string MidnightBSD_Swap {
- get {
- return ResourceManager.GetString("MidnightBSD_Swap", resourceCulture);
- }
- }
-
- internal static string MidnightBSD_UFS {
- get {
- return ResourceManager.GetString("MidnightBSD_UFS", resourceCulture);
- }
- }
-
- internal static string MidnightBSD_Vinum {
- get {
- return ResourceManager.GetString("MidnightBSD_Vinum", resourceCulture);
- }
- }
-
- internal static string MidnightBSD_ZFS {
- get {
- return ResourceManager.GetString("MidnightBSD_ZFS", resourceCulture);
- }
- }
-
- internal static string Ceph_Journal {
- get {
- return ResourceManager.GetString("Ceph_Journal", resourceCulture);
- }
- }
-
- internal static string Ceph_dm_crypt_Encrypted_Journal {
- get {
- return ResourceManager.GetString("Ceph_dm_crypt_Encrypted_Journal", resourceCulture);
- }
- }
-
- internal static string Ceph_OSD {
- get {
- return ResourceManager.GetString("Ceph_OSD", resourceCulture);
- }
- }
-
- internal static string Ceph_dm_crypt_OSD {
- get {
- return ResourceManager.GetString("Ceph_dm_crypt_OSD", resourceCulture);
- }
- }
-
- internal static string Ceph_disk_in_creation {
- get {
- return ResourceManager.GetString("Ceph_disk_in_creation", resourceCulture);
- }
- }
-
- internal static string Ceph_dm_crypt_disk_in_creation {
- get {
- return ResourceManager.GetString("Ceph_dm_crypt_disk_in_creation", resourceCulture);
- }
- }
-
- internal static string OpenBSD_Data {
- get {
- return ResourceManager.GetString("OpenBSD_Data", resourceCulture);
- }
- }
-
- internal static string QNX_Power_safe_QNX6 {
- get {
- return ResourceManager.GetString("QNX_Power_safe_QNX6", resourceCulture);
- }
- }
-
- internal static string Plan_9 {
- get {
- return ResourceManager.GetString("Plan_9", resourceCulture);
- }
- }
-
- internal static string VMware_vmkcore_coredump {
- get {
- return ResourceManager.GetString("VMware_vmkcore_coredump", resourceCulture);
- }
- }
-
- internal static string VMware_VMFS {
- get {
- return ResourceManager.GetString("VMware_VMFS", resourceCulture);
- }
- }
-
- internal static string VMware_Reserved {
- get {
- return ResourceManager.GetString("VMware_Reserved", resourceCulture);
- }
- }
-
- internal static string ONIE_boot {
- get {
- return ResourceManager.GetString("ONIE_boot", resourceCulture);
- }
- }
-
- internal static string ONIE_config {
- get {
- return ResourceManager.GetString("ONIE_config", resourceCulture);
- }
- }
-
- internal static string PowerPC_PReP_boot {
- get {
- return ResourceManager.GetString("PowerPC_PReP_boot", resourceCulture);
- }
- }
-
- internal static string Acronis_Secure_Zone {
- get {
- return ResourceManager.GetString("Acronis_Secure_Zone", resourceCulture);
- }
- }
-
- internal static string Apple_File_System {
- get {
- return ResourceManager.GetString("Apple_File_System", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_Label {
- get {
- return ResourceManager.GetString("DragonflyBSD_Label", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_Swap {
- get {
- return ResourceManager.GetString("DragonflyBSD_Swap", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_UFS {
- get {
- return ResourceManager.GetString("DragonflyBSD_UFS", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_Vinum {
- get {
- return ResourceManager.GetString("DragonflyBSD_Vinum", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_CCD {
- get {
- return ResourceManager.GetString("DragonflyBSD_CCD", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_Legacy {
- get {
- return ResourceManager.GetString("DragonflyBSD_Legacy", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_Hammer {
- get {
- return ResourceManager.GetString("DragonflyBSD_Hammer", resourceCulture);
- }
- }
-
- internal static string DragonflyBSD_Hammer2 {
- get {
- return ResourceManager.GetString("DragonflyBSD_Hammer2", resourceCulture);
- }
- }
-
- internal static string Human68K_Name {
- get {
- return ResourceManager.GetString("Human68K_Name", resourceCulture);
- }
- }
-
- internal static string Empty {
- get {
- return ResourceManager.GetString("Empty", resourceCulture);
- }
- }
-
- internal static string FAT12 {
- get {
- return ResourceManager.GetString("FAT12", resourceCulture);
- }
- }
-
- internal static string XENIX_root {
- get {
- return ResourceManager.GetString("XENIX_root", resourceCulture);
- }
- }
-
- internal static string XENIX_usr {
- get {
- return ResourceManager.GetString("XENIX_usr", resourceCulture);
- }
- }
-
- internal static string FAT16_32_MiB {
- get {
- return ResourceManager.GetString("FAT16_32_MiB", resourceCulture);
- }
- }
-
- internal static string Extended {
- get {
- return ResourceManager.GetString("Extended", resourceCulture);
- }
- }
-
- internal static string FAT16 {
- get {
- return ResourceManager.GetString("FAT16", resourceCulture);
- }
- }
-
- internal static string IFS_HPFS_NTFS {
- get {
- return ResourceManager.GetString("IFS_HPFS_NTFS", resourceCulture);
- }
- }
-
- internal static string AIX_boot_OS2_Commodore_DOS {
- get {
- return ResourceManager.GetString("AIX_boot_OS2_Commodore_DOS", resourceCulture);
- }
- }
-
- internal static string AIX_data_Coherent_QNX {
- get {
- return ResourceManager.GetString("AIX_data_Coherent_QNX", resourceCulture);
- }
- }
-
- internal static string Coherent_swap_OPUS_OS_2_Boot_Manager {
- get {
- return ResourceManager.GetString("Coherent_swap_OPUS_OS_2_Boot_Manager", resourceCulture);
- }
- }
-
- internal static string FAT32 {
- get {
- return ResourceManager.GetString("FAT32", resourceCulture);
- }
- }
-
- internal static string FAT32_LBA {
- get {
- return ResourceManager.GetString("FAT32_LBA", resourceCulture);
- }
- }
-
- internal static string FAT16_LBA {
- get {
- return ResourceManager.GetString("FAT16_LBA", resourceCulture);
- }
- }
-
- internal static string Extended_LBA {
- get {
- return ResourceManager.GetString("Extended_LBA", resourceCulture);
- }
- }
-
- internal static string OPUS {
- get {
- return ResourceManager.GetString("OPUS", resourceCulture);
- }
- }
-
- internal static string Hidden_FAT12 {
- get {
- return ResourceManager.GetString("Hidden_FAT12", resourceCulture);
- }
- }
-
- internal static string Compaq_diagnostics_recovery_partition {
- get {
- return ResourceManager.GetString("Compaq_diagnostics_recovery_partition", resourceCulture);
- }
- }
-
- internal static string Hidden_FAT16_32_MiB_AST_DOS {
- get {
- return ResourceManager.GetString("Hidden_FAT16_32_MiB_AST_DOS", resourceCulture);
- }
- }
-
- internal static string Hidden_FAT16 {
- get {
- return ResourceManager.GetString("Hidden_FAT16", resourceCulture);
- }
- }
-
- internal static string Hidden_IFS_HPFS_NTFS {
- get {
- return ResourceManager.GetString("Hidden_IFS_HPFS_NTFS", resourceCulture);
- }
- }
-
- internal static string AST_Windows_swap {
- get {
- return ResourceManager.GetString("AST_Windows_swap", resourceCulture);
- }
- }
-
- internal static string Willowtech_Photon_coS {
- get {
- return ResourceManager.GetString("Willowtech_Photon_coS", resourceCulture);
- }
- }
-
- internal static string Hidden_FAT32 {
- get {
- return ResourceManager.GetString("Hidden_FAT32", resourceCulture);
- }
- }
-
- internal static string Hidden_FAT32_LBA {
- get {
- return ResourceManager.GetString("Hidden_FAT32_LBA", resourceCulture);
- }
- }
-
- internal static string Hidden_FAT16_LBA {
- get {
- return ResourceManager.GetString("Hidden_FAT16_LBA", resourceCulture);
- }
- }
-
- internal static string Willowsoft_Overture_File_System {
- get {
- return ResourceManager.GetString("Willowsoft_Overture_File_System", resourceCulture);
- }
- }
-
- internal static string Oxygen_FSo2 {
- get {
- return ResourceManager.GetString("Oxygen_FSo2", resourceCulture);
- }
- }
-
- internal static string Oxygen_Extended {
- get {
- return ResourceManager.GetString("Oxygen_Extended", resourceCulture);
- }
- }
-
- internal static string SpeedStor_reserved {
- get {
- return ResourceManager.GetString("SpeedStor_reserved", resourceCulture);
- }
- }
-
- internal static string NEC_DOS {
- get {
- return ResourceManager.GetString("NEC_DOS", resourceCulture);
- }
- }
-
- internal static string Hidden_NTFS {
- get {
- return ResourceManager.GetString("Hidden_NTFS", resourceCulture);
- }
- }
-
- internal static string Theos {
- get {
- return ResourceManager.GetString("Theos", resourceCulture);
- }
- }
-
- internal static string Partition_Magic {
- get {
- return ResourceManager.GetString("Partition_Magic", resourceCulture);
- }
- }
-
- internal static string Hidden_NetWare {
- get {
- return ResourceManager.GetString("Hidden_NetWare", resourceCulture);
- }
- }
-
- internal static string VENIX_80286 {
- get {
- return ResourceManager.GetString("VENIX_80286", resourceCulture);
- }
- }
-
- internal static string PReP_Boot {
- get {
- return ResourceManager.GetString("PReP_Boot", resourceCulture);
- }
- }
-
- internal static string Secure_File_System {
- get {
- return ResourceManager.GetString("Secure_File_System", resourceCulture);
- }
- }
-
- internal static string PTS_DOS {
- get {
- return ResourceManager.GetString("PTS_DOS", resourceCulture);
- }
- }
-
- internal static string Priam_EUMEL_Elan {
- get {
- return ResourceManager.GetString("Priam_EUMEL_Elan", resourceCulture);
- }
- }
-
- internal static string EUMEL_Elan {
- get {
- return ResourceManager.GetString("EUMEL_Elan", resourceCulture);
- }
- }
-
- internal static string ALFS_THIN_lightweight_filesystem_for_DOS {
- get {
- return ResourceManager.GetString("ALFS_THIN_lightweight_filesystem_for_DOS", resourceCulture);
- }
- }
-
- internal static string QNX_4 {
- get {
- return ResourceManager.GetString("QNX_4", resourceCulture);
- }
- }
-
- internal static string QNX_4_Oberon {
- get {
- return ResourceManager.GetString("QNX_4_Oberon", resourceCulture);
- }
- }
-
- internal static string Ontrack_DM_RO_FAT {
- get {
- return ResourceManager.GetString("Ontrack_DM_RO_FAT", resourceCulture);
- }
- }
-
- internal static string Ontrack_DM_RW_FAT {
- get {
- return ResourceManager.GetString("Ontrack_DM_RW_FAT", resourceCulture);
- }
- }
-
- internal static string CPM_Microport_UNIX {
- get {
- return ResourceManager.GetString("CPM_Microport_UNIX", resourceCulture);
- }
- }
-
- internal static string Ontrack_DM_6 {
- get {
- return ResourceManager.GetString("Ontrack_DM_6", resourceCulture);
- }
- }
-
- internal static string EZ_Drive {
- get {
- return ResourceManager.GetString("EZ_Drive", resourceCulture);
- }
- }
-
- internal static string Golden_Bow_VFeature {
- get {
- return ResourceManager.GetString("Golden_Bow_VFeature", resourceCulture);
- }
- }
-
- internal static string Priam_EDISK {
- get {
- return ResourceManager.GetString("Priam_EDISK", resourceCulture);
- }
- }
-
- internal static string SpeedStor {
- get {
- return ResourceManager.GetString("SpeedStor", resourceCulture);
- }
- }
-
- internal static string GNU_Hurd_System_V_386ix {
- get {
- return ResourceManager.GetString("GNU_Hurd_System_V_386ix", resourceCulture);
- }
- }
-
- internal static string NetWare_286 {
- get {
- return ResourceManager.GetString("NetWare_286", resourceCulture);
- }
- }
-
- internal static string NetWare {
- get {
- return ResourceManager.GetString("NetWare", resourceCulture);
- }
- }
-
- internal static string NetWare_386 {
- get {
- return ResourceManager.GetString("NetWare_386", resourceCulture);
- }
- }
-
- internal static string NetWare_NSS {
- get {
- return ResourceManager.GetString("NetWare_NSS", resourceCulture);
- }
- }
-
- internal static string DiskSecure_Multi_Boot {
- get {
- return ResourceManager.GetString("DiskSecure_Multi_Boot", resourceCulture);
- }
- }
-
- internal static string IBM_PC_IX {
- get {
- return ResourceManager.GetString("IBM_PC_IX", resourceCulture);
- }
- }
-
- internal static string Old_MINIX {
- get {
- return ResourceManager.GetString("Old_MINIX", resourceCulture);
- }
- }
-
- internal static string MINIX_Old_Linux {
- get {
- return ResourceManager.GetString("MINIX_Old_Linux", resourceCulture);
- }
- }
-
- internal static string Linux_swap_Solaris {
- get {
- return ResourceManager.GetString("Linux_swap_Solaris", resourceCulture);
- }
- }
-
- internal static string Linux {
- get {
- return ResourceManager.GetString("Linux", resourceCulture);
- }
- }
-
- internal static string Hidden_by_OS2_APM_hibernation {
- get {
- return ResourceManager.GetString("Hidden_by_OS2_APM_hibernation", resourceCulture);
- }
- }
-
- internal static string Linux_extended {
- get {
- return ResourceManager.GetString("Linux_extended", resourceCulture);
- }
- }
-
- internal static string NT_Stripe_Set {
- get {
- return ResourceManager.GetString("NT_Stripe_Set", resourceCulture);
- }
- }
-
- internal static string Linux_Plaintext {
- get {
- return ResourceManager.GetString("Linux_Plaintext", resourceCulture);
- }
- }
-
- internal static string Linux_LVM {
- get {
- return ResourceManager.GetString("Linux_LVM", resourceCulture);
- }
- }
-
- internal static string Amoeba_Hidden_Linux {
- get {
- return ResourceManager.GetString("Amoeba_Hidden_Linux", resourceCulture);
- }
- }
-
- internal static string Amoeba_bad_blocks {
- get {
- return ResourceManager.GetString("Amoeba_bad_blocks", resourceCulture);
- }
- }
-
- internal static string Mylex_EISA_SCSI {
- get {
- return ResourceManager.GetString("Mylex_EISA_SCSI", resourceCulture);
- }
- }
-
- internal static string BSD_OS {
- get {
- return ResourceManager.GetString("BSD_OS", resourceCulture);
- }
- }
-
- internal static string Hibernation {
- get {
- return ResourceManager.GetString("Hibernation", resourceCulture);
- }
- }
-
- internal static string HP_Volume_Expansion {
- get {
- return ResourceManager.GetString("HP_Volume_Expansion", resourceCulture);
- }
- }
-
- internal static string FreeBSD {
- get {
- return ResourceManager.GetString("FreeBSD", resourceCulture);
- }
- }
-
- internal static string OpenBSD {
- get {
- return ResourceManager.GetString("OpenBSD", resourceCulture);
- }
- }
-
- internal static string NeXTStep {
- get {
- return ResourceManager.GetString("NeXTStep", resourceCulture);
- }
- }
-
- internal static string NetBSD {
- get {
- return ResourceManager.GetString("NetBSD", resourceCulture);
- }
- }
-
- internal static string Olivetti_DOS_FAT12 {
- get {
- return ResourceManager.GetString("Olivetti_DOS_FAT12", resourceCulture);
- }
- }
-
- internal static string BootStar {
- get {
- return ResourceManager.GetString("BootStar", resourceCulture);
- }
- }
-
- internal static string BSDi {
- get {
- return ResourceManager.GetString("BSDi", resourceCulture);
- }
- }
-
- internal static string PTS_BootWizard {
- get {
- return ResourceManager.GetString("PTS_BootWizard", resourceCulture);
- }
- }
-
- internal static string Solaris_boot {
- get {
- return ResourceManager.GetString("Solaris_boot", resourceCulture);
- }
- }
-
- internal static string Solaris {
- get {
- return ResourceManager.GetString("Solaris", resourceCulture);
- }
- }
-
- internal static string Novell_DOS_DR_DOS_secured {
- get {
- return ResourceManager.GetString("Novell_DOS_DR_DOS_secured", resourceCulture);
- }
- }
-
- internal static string DR_DOS_secured_FAT12 {
- get {
- return ResourceManager.GetString("DR_DOS_secured_FAT12", resourceCulture);
- }
- }
-
- internal static string DR_DOS_reserved {
- get {
- return ResourceManager.GetString("DR_DOS_reserved", resourceCulture);
- }
- }
-
- internal static string DR_DOS_secured_FAT16_32_MiB {
- get {
- return ResourceManager.GetString("DR_DOS_secured_FAT16_32_MiB", resourceCulture);
- }
- }
-
- internal static string DR_DOS_secured_FAT16 {
- get {
- return ResourceManager.GetString("DR_DOS_secured_FAT16", resourceCulture);
- }
- }
-
- internal static string Syrinx {
- get {
- return ResourceManager.GetString("Syrinx", resourceCulture);
- }
- }
-
- internal static string DR_DOS_secured_FAT32_LBA {
- get {
- return ResourceManager.GetString("DR_DOS_secured_FAT32_LBA", resourceCulture);
- }
- }
-
- internal static string DR_DOS_secured_FAT16_LBA {
- get {
- return ResourceManager.GetString("DR_DOS_secured_FAT16_LBA", resourceCulture);
- }
- }
-
- internal static string DR_DOS_secured_FAT32 {
- get {
- return ResourceManager.GetString("DR_DOS_secured_FAT32", resourceCulture);
- }
- }
-
- internal static string DR_DOS_secured_extended_LBA {
- get {
- return ResourceManager.GetString("DR_DOS_secured_extended_LBA", resourceCulture);
- }
- }
-
- internal static string Multiuser_DOS_secured_FAT12 {
- get {
- return ResourceManager.GetString("Multiuser_DOS_secured_FAT12", resourceCulture);
- }
- }
-
- internal static string Multiuser_DOS_secured_FAT16_32_MiB {
- get {
- return ResourceManager.GetString("Multiuser_DOS_secured_FAT16_32_MiB", resourceCulture);
- }
- }
-
- internal static string Multiuser_DOS_secured_extended {
- get {
- return ResourceManager.GetString("Multiuser_DOS_secured_extended", resourceCulture);
- }
- }
-
- internal static string Multiuser_DOS_secured_FAT16 {
- get {
- return ResourceManager.GetString("Multiuser_DOS_secured_FAT16", resourceCulture);
- }
- }
-
- internal static string CPM {
- get {
- return ResourceManager.GetString("CPM", resourceCulture);
- }
- }
-
- internal static string Filesystem_less_data {
- get {
- return ResourceManager.GetString("Filesystem_less_data", resourceCulture);
- }
- }
-
- internal static string CPM_CCPM_CTOS {
- get {
- return ResourceManager.GetString("CPM_CCPM_CTOS", resourceCulture);
- }
- }
-
- internal static string Dell_partition {
- get {
- return ResourceManager.GetString("Dell_partition", resourceCulture);
- }
- }
-
- internal static string BootIt_EMBRM {
- get {
- return ResourceManager.GetString("BootIt_EMBRM", resourceCulture);
- }
- }
-
- internal static string DOS_read_only {
- get {
- return ResourceManager.GetString("DOS_read_only", resourceCulture);
- }
- }
-
- internal static string Tandy_DOS {
- get {
- return ResourceManager.GetString("Tandy_DOS", resourceCulture);
- }
- }
-
- internal static string BeOS {
- get {
- return ResourceManager.GetString("BeOS", resourceCulture);
- }
- }
-
- internal static string Sprytx {
- get {
- return ResourceManager.GetString("Sprytx", resourceCulture);
- }
- }
-
- internal static string Guid_Partition_Table {
- get {
- return ResourceManager.GetString("Guid_Partition_Table", resourceCulture);
- }
- }
-
- internal static string EFI_system_partition {
- get {
- return ResourceManager.GetString("EFI_system_partition", resourceCulture);
- }
- }
-
- internal static string Linux_boot {
- get {
- return ResourceManager.GetString("Linux_boot", resourceCulture);
- }
- }
-
- internal static string DOS_3_3_secondary_Unisys_DOS {
- get {
- return ResourceManager.GetString("DOS_3_3_secondary_Unisys_DOS", resourceCulture);
- }
- }
-
- internal static string Prologue {
- get {
- return ResourceManager.GetString("Prologue", resourceCulture);
- }
- }
-
- internal static string VMWare_VMKCORE {
- get {
- return ResourceManager.GetString("VMWare_VMKCORE", resourceCulture);
- }
- }
-
- internal static string Linux_RAID_FreeDOS {
- get {
- return ResourceManager.GetString("Linux_RAID_FreeDOS", resourceCulture);
- }
- }
-
- internal static string SpeedStor_LANStep_PS2_IML {
- get {
- return ResourceManager.GetString("SpeedStor_LANStep_PS2_IML", resourceCulture);
- }
- }
-
- internal static string Xenix_bad_block {
- get {
- return ResourceManager.GetString("Xenix_bad_block", resourceCulture);
- }
- }
-
- internal static string MBR_Name {
- get {
- return ResourceManager.GetString("MBR_Name", resourceCulture);
- }
- }
-
- internal static string MINIX {
- get {
- return ResourceManager.GetString("MINIX", resourceCulture);
- }
- }
-
- internal static string NeXTDisklabel_Name {
- get {
- return ResourceManager.GetString("NeXTDisklabel_Name", resourceCulture);
- }
- }
-
- internal static string Partition_bigger_than_device_reducing {
- get {
- return ResourceManager.GetString("Partition_bigger_than_device_reducing", 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 fragment.
+ ///
internal static string _0_bytes_per_fragment {
get {
return ResourceManager.GetString("_0_bytes_per_fragment", resourceCulture);
}
}
- internal static string Space_optimized {
- get {
- return ResourceManager.GetString("Space_optimized", resourceCulture);
- }
- }
-
- internal static string Time_optimized {
- get {
- return ResourceManager.GetString("Time_optimized", resourceCulture);
- }
- }
-
- internal static string Unknown_optimization_0_X2 {
- get {
- return ResourceManager.GetString("Unknown_optimization_0_X2", resourceCulture);
- }
- }
-
- internal static string _0_cylinders_per_group {
- get {
- return ResourceManager.GetString("_0_cylinders_per_group", 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} cylinders per group.
+ ///
+ internal static string _0_cylinders_per_group {
+ get {
+ return ResourceManager.GetString("_0_cylinders_per_group", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to {0}% of space must be free at minimum.
+ ///
internal static string _0_of_space_must_be_free_at_minimum {
get {
return ResourceManager.GetString("_0_of_space_must_be_free_at_minimum", resourceCulture);
}
}
- internal static string Filesystem_should_be_formatted_at_start {
+ ///
+ /// Looks up a localized string similar to 4.2BSD Fast File System.
+ ///
+ internal static string _4_2_BSD_Fast_File_System {
get {
- return ResourceManager.GetString("Filesystem_should_be_formatted_at_start", resourceCulture);
- }
- }
-
- internal static string Filesystem_should_be_automatically_mounted {
- get {
- return ResourceManager.GetString("Filesystem_should_be_automatically_mounted", resourceCulture);
- }
- }
-
- internal static string PC98_Name {
- get {
- return ResourceManager.GetString("PC98_Name", resourceCulture);
- }
- }
-
- internal static string PC_UX {
- get {
- return ResourceManager.GetString("PC_UX", resourceCulture);
- }
- }
-
- internal static string N88_BASIC_86 {
- get {
- return ResourceManager.GetString("N88_BASIC_86", resourceCulture);
- }
- }
-
- internal static string Windows_Volume_Set {
- get {
- return ResourceManager.GetString("Windows_Volume_Set", resourceCulture);
- }
- }
-
- internal static string Plan9_Name {
- get {
- return ResourceManager.GetString("Plan9_Name", resourceCulture);
- }
- }
-
- internal static string AmigaRigidDiskBlock_Name {
- get {
- return ResourceManager.GetString("AmigaRigidDiskBlock_Name", resourceCulture);
- }
- }
-
- internal static string Possible_magic_at_block_0_is_1_X8 {
- get {
- return ResourceManager.GetString("Possible_magic_at_block_0_is_1_X8", resourceCulture);
- }
- }
-
- internal static string Found_RDB_magic_at_block_0 {
- get {
- return ResourceManager.GetString("Found_RDB_magic_at_block_0", resourceCulture);
- }
- }
-
- internal static string Going_to_block_0_in_search_of_a_BadBlock_block {
- get {
- return ResourceManager.GetString("Going_to_block_0_in_search_of_a_BadBlock_block", resourceCulture);
- }
- }
-
- internal static string Found_BadBlock_block {
- get {
- return ResourceManager.GetString("Found_BadBlock_block", resourceCulture);
- }
- }
-
- internal static string Bad_block_at_0_replaced_with_good_block_at_1 {
- get {
- return ResourceManager.GetString("Bad_block_at_0_replaced_with_good_block_at_1", resourceCulture);
- }
- }
-
- internal static string Going_to_block_0_in_search_of_a_PartitionEntry_block {
- get {
- return ResourceManager.GetString("Going_to_block_0_in_search_of_a_PartitionEntry_block", resourceCulture);
- }
- }
-
- internal static string Found_PartitionEntry_block {
- get {
- return ResourceManager.GetString("Found_PartitionEntry_block", resourceCulture);
- }
- }
-
- internal static string Going_to_block_0_in_search_of_a_FileSystemHeader_block {
- get {
- return ResourceManager.GetString("Going_to_block_0_in_search_of_a_FileSystemHeader_block", resourceCulture);
- }
- }
-
- internal static string Found_FileSystemHeader_block {
- get {
- return ResourceManager.GetString("Found_FileSystemHeader_block", resourceCulture);
- }
- }
-
- internal static string Going_to_block_0_in_search_of_a_LoadSegment_block {
- get {
- return ResourceManager.GetString("Going_to_block_0_in_search_of_a_LoadSegment_block", resourceCulture);
- }
- }
-
- internal static string Found_LoadSegment_block {
- get {
- return ResourceManager.GetString("Found_LoadSegment_block", resourceCulture);
- }
- }
-
- internal static string LoadSegment_data_SHA1_0 {
- get {
- return ResourceManager.GetString("LoadSegment_data_SHA1_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 Amiga_UNIX_System_V_filesystem {
- get {
- return ResourceManager.GetString("Amiga_UNIX_System_V_filesystem", resourceCulture);
- }
- }
-
- internal static string Amiga_UNIX_boot_filesystem {
- get {
- return ResourceManager.GetString("Amiga_UNIX_boot_filesystem", resourceCulture);
- }
- }
-
- internal static string Amiga_UNIX_BSD_filesystem {
- get {
- return ResourceManager.GetString("Amiga_UNIX_BSD_filesystem", resourceCulture);
- }
- }
-
- internal static string Amiga_UNIX_Reserved_partition__swap_ {
- get {
- return ResourceManager.GetString("Amiga_UNIX_Reserved_partition__swap_", resourceCulture);
- }
- }
-
- internal static string ProfessionalFileSystem {
- get {
- return ResourceManager.GetString("ProfessionalFileSystem", resourceCulture);
- }
- }
-
- internal static string SmartFileSystem_v1 {
- get {
- return ResourceManager.GetString("SmartFileSystem_v1", resourceCulture);
- }
- }
-
- internal static string SmartFileSystem_v2 {
- get {
- return ResourceManager.GetString("SmartFileSystem_v2", resourceCulture);
- }
- }
-
- internal static string JXFS {
- get {
- return ResourceManager.GetString("JXFS", resourceCulture);
- }
- }
-
- internal static string FAT_as_set_by_CrossDOS {
- get {
- return ResourceManager.GetString("FAT_as_set_by_CrossDOS", resourceCulture);
- }
- }
-
- internal static string HFS_as_set_by_CrossMac {
- get {
- return ResourceManager.GetString("HFS_as_set_by_CrossMac", resourceCulture);
+ return ResourceManager.GetString("_4_2_BSD_Fast_File_System", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to 4.2UFS, for BFFS.
+ ///
internal static string _4_2_UFS_for_BFFS {
get {
return ResourceManager.GetString("_4_2_UFS_for_BFFS", resourceCulture);
}
}
- internal static string Amiga_Original_File_System_with_multi_user_patches {
+ ///
+ /// Looks up a localized string similar to 4.4LFS.
+ ///
+ internal static string _4_4_LFS {
get {
- return ResourceManager.GetString("Amiga_Original_File_System_with_multi_user_patches", resourceCulture);
- }
- }
-
- internal static string Amiga_Fast_File_System_with_multi_user_patches {
- get {
- return ResourceManager.GetString("Amiga_Fast_File_System_with_multi_user_patches", resourceCulture);
- }
- }
-
- internal static string Amiga_Original_File_System_with_international_characters_and_multi_user_patches {
- get {
- return ResourceManager.GetString("Amiga_Original_File_System_with_international_characters_and_multi_user_patches", resourceCulture);
- }
- }
-
- internal static string Amiga_Fast_File_System_with_international_characters_and_multi_user_patches {
- get {
- return ResourceManager.GetString("Amiga_Fast_File_System_with_international_characters_and_multi_user_patches", resourceCulture);
- }
- }
-
- internal static string Amiga_Original_File_System_with_directory_cache_and_multi_user_patches {
- get {
- return ResourceManager.GetString("Amiga_Original_File_System_with_directory_cache_and_multi_user_patches", resourceCulture);
- }
- }
-
- internal static string Amiga_Fast_File_System_with_directory_cache_and_multi_user_patches {
- get {
- return ResourceManager.GetString("Amiga_Fast_File_System_with_directory_cache_and_multi_user_patches", resourceCulture);
- }
- }
-
- internal static string BSD_unused {
- get {
- return ResourceManager.GetString("BSD_unused", resourceCulture);
- }
- }
-
- internal static string BSD_swap {
- get {
- return ResourceManager.GetString("BSD_swap", resourceCulture);
- }
- }
-
- internal static string BSD_4_2_FFS {
- get {
- return ResourceManager.GetString("BSD_4_2_FFS", resourceCulture);
- }
- }
-
- internal static string BSD_4_4_LFS {
- get {
- return ResourceManager.GetString("BSD_4_4_LFS", resourceCulture);
- }
- }
-
- internal static string NetBSD_unused_root_partition {
- get {
- return ResourceManager.GetString("NetBSD_unused_root_partition", resourceCulture);
- }
- }
-
- internal static string NetBSD_4_2_FFS_root_partition {
- get {
- return ResourceManager.GetString("NetBSD_4_2_FFS_root_partition", resourceCulture);
- }
- }
-
- internal static string NetBSD_4_4_LFS_root_partition {
- get {
- return ResourceManager.GetString("NetBSD_4_4_LFS_root_partition", resourceCulture);
- }
- }
-
- internal static string NetBSD_unused_user_partition {
- get {
- return ResourceManager.GetString("NetBSD_unused_user_partition", resourceCulture);
- }
- }
-
- internal static string NetBSD_4_2_FFS_user_partition {
- get {
- return ResourceManager.GetString("NetBSD_4_2_FFS_user_partition", resourceCulture);
- }
- }
-
- internal static string NetBSD_4_4_LFS_user_partition {
- get {
- return ResourceManager.GetString("NetBSD_4_4_LFS_user_partition", resourceCulture);
- }
- }
-
- internal static string Linux_filesystem_partition {
- get {
- return ResourceManager.GetString("Linux_filesystem_partition", resourceCulture);
- }
- }
-
- internal static string Linux_swap_partition {
- get {
- return ResourceManager.GetString("Linux_swap_partition", resourceCulture);
- }
- }
-
- internal static string RaidFrame_partition {
- get {
- return ResourceManager.GetString("RaidFrame_partition", resourceCulture);
- }
- }
-
- internal static string Unknown_Amiga_DOS_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_Amiga_DOS_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_Amiga_UNIX_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_Amiga_UNIX_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_ProfessionalFileSystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_ProfessionalFileSystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_SmartFileSystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_SmartFileSystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_Amiga_DOS_multi_user_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_Amiga_DOS_multi_user_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_BSD_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_BSD_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_NetBSD_root_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_NetBSD_root_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_NetBSD_user_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_NetBSD_user_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_NetBSD_swap_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_NetBSD_swap_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_Linux_filesystem_type_0 {
- get {
- return ResourceManager.GetString("Unknown_Linux_filesystem_type_0", resourceCulture);
- }
- }
-
- internal static string Unknown_partition_type_0 {
- get {
- return ResourceManager.GetString("Unknown_partition_type_0", resourceCulture);
- }
- }
-
- internal static string RioKarma_Name {
- get {
- return ResourceManager.GetString("RioKarma_Name", resourceCulture);
- }
- }
-
- internal static string Rio_Karma {
- get {
- return ResourceManager.GetString("Rio_Karma", resourceCulture);
- }
- }
-
- internal static string SGI_Name {
- get {
- return ResourceManager.GetString("SGI_Name", resourceCulture);
- }
- }
-
- internal static string dvh_magic_equals_0_X8_should_be_1_X8 {
- get {
- return ResourceManager.GetString("dvh_magic_equals_0_X8_should_be_1_X8", resourceCulture);
- }
- }
-
- internal static string Volume_header {
- get {
- return ResourceManager.GetString("Volume_header", resourceCulture);
- }
- }
-
- internal static string Track_replacements {
- get {
- return ResourceManager.GetString("Track_replacements", resourceCulture);
- }
- }
-
- internal static string Sector_replacements {
- get {
- return ResourceManager.GetString("Sector_replacements", resourceCulture);
- }
- }
-
- internal static string Raw_data_swap {
- get {
- return ResourceManager.GetString("Raw_data_swap", resourceCulture);
- }
- }
-
- internal static string Whole_device {
- get {
- return ResourceManager.GetString("Whole_device", resourceCulture);
- }
- }
-
- internal static string Logical_volume {
- get {
- return ResourceManager.GetString("Logical_volume", resourceCulture);
- }
- }
-
- internal static string Raw_logical_volume {
- get {
- return ResourceManager.GetString("Raw_logical_volume", resourceCulture);
- }
- }
-
- internal static string XFS {
- get {
- return ResourceManager.GetString("XFS", resourceCulture);
- }
- }
-
- internal static string XFS_log_device {
- get {
- return ResourceManager.GetString("XFS_log_device", resourceCulture);
- }
- }
-
- internal static string XLV_volume {
- get {
- return ResourceManager.GetString("XLV_volume", resourceCulture);
- }
- }
-
- internal static string SGI_XVM {
- get {
- return ResourceManager.GetString("SGI_XVM", resourceCulture);
- }
- }
-
- internal static string Linux_swap {
- get {
- return ResourceManager.GetString("Linux_swap", resourceCulture);
- }
- }
-
- internal static string SunDisklabel_Name {
- get {
- return ResourceManager.GetString("SunDisklabel_Name", resourceCulture);
- }
- }
-
- internal static string SunOS_partition {
- get {
- return ResourceManager.GetString("SunOS_partition", resourceCulture);
- }
- }
-
- internal static string Partition_timestamped_on_0 {
- get {
- return ResourceManager.GetString("Partition_timestamped_on_0", resourceCulture);
- }
- }
-
- internal static string Swapping_dk_label {
- get {
- return ResourceManager.GetString("Swapping_dk_label", resourceCulture);
- }
- }
-
- internal static string Swapping_dk_label8 {
- get {
- return ResourceManager.GetString("Swapping_dk_label8", resourceCulture);
- }
- }
-
- internal static string Swapping_dk_label16 {
- get {
- return ResourceManager.GetString("Swapping_dk_label16", resourceCulture);
- }
- }
-
- internal static string Unmountable {
- get {
- return ResourceManager.GetString("Unmountable", resourceCulture);
- }
- }
-
- internal static string Read_only {
- get {
- return ResourceManager.GetString("Read_only", resourceCulture);
- }
- }
-
- internal static string LVM {
- get {
- return ResourceManager.GetString("LVM", resourceCulture);
- }
- }
-
- internal static string Sun_boot {
- get {
- return ResourceManager.GetString("Sun_boot", resourceCulture);
- }
- }
-
- internal static string Sun_home {
- get {
- return ResourceManager.GetString("Sun_home", resourceCulture);
- }
- }
-
- internal static string Sun_root {
- get {
- return ResourceManager.GetString("Sun_root", resourceCulture);
- }
- }
-
- internal static string Sun_stand {
- get {
- return ResourceManager.GetString("Sun_stand", resourceCulture);
- }
- }
-
- internal static string Sun_swap {
- get {
- return ResourceManager.GetString("Sun_swap", resourceCulture);
- }
- }
-
- internal static string Sun_usr {
- get {
- return ResourceManager.GetString("Sun_usr", resourceCulture);
- }
- }
-
- internal static string Sun_var {
- get {
- return ResourceManager.GetString("Sun_var", resourceCulture);
- }
- }
-
- internal static string Whole_disk {
- get {
- return ResourceManager.GetString("Whole_disk", resourceCulture);
- }
- }
-
- internal static string Replacement_sectors {
- get {
- return ResourceManager.GetString("Replacement_sectors", resourceCulture);
- }
- }
-
- internal static string Sun_cachefs {
- get {
- return ResourceManager.GetString("Sun_cachefs", resourceCulture);
- }
- }
-
- internal static string Reserved_for_SMI {
- get {
- return ResourceManager.GetString("Reserved_for_SMI", resourceCulture);
- }
- }
-
- internal static string Veritas_public {
- get {
- return ResourceManager.GetString("Veritas_public", resourceCulture);
- }
- }
-
- internal static string Veritas_private {
- get {
- return ResourceManager.GetString("Veritas_private", resourceCulture);
- }
- }
-
- internal static string FreeBSD_swap {
- get {
- return ResourceManager.GetString("FreeBSD_swap", resourceCulture);
- }
- }
-
- internal static string Vinum {
- get {
- return ResourceManager.GetString("Vinum", resourceCulture);
- }
- }
-
- internal static string data {
- get {
- return ResourceManager.GetString("data", resourceCulture);
- }
- }
-
- internal static string error_log {
- get {
- return ResourceManager.GetString("error_log", resourceCulture);
- }
- }
-
- internal static string errorlog {
- get {
- return ResourceManager.GetString("errorlog", resourceCulture);
- }
- }
-
- internal static string swap {
- get {
- return ResourceManager.GetString("swap", resourceCulture);
- }
- }
-
- internal static string user {
- get {
- return ResourceManager.GetString("user", resourceCulture);
- }
- }
-
- internal static string maintenance_area {
- get {
- return ResourceManager.GetString("maintenance_area", resourceCulture);
- }
- }
-
- internal static string maintenance {
- get {
- return ResourceManager.GetString("maintenance", resourceCulture);
- }
- }
-
- internal static string bad_sector_file {
- get {
- return ResourceManager.GetString("bad_sector_file", resourceCulture);
- }
- }
-
- internal static string bad {
- get {
- return ResourceManager.GetString("bad", resourceCulture);
- }
- }
-
- internal static string UNIX_Name {
- get {
- return ResourceManager.GetString("UNIX_Name", resourceCulture);
- }
- }
-
- internal static string VTOC_Name {
- get {
- return ResourceManager.GetString("VTOC_Name", resourceCulture);
- }
- }
-
- internal static string sanity_at_0_is_1_X8_should_be_2_X8_or_3_X8 {
- get {
- return ResourceManager.GetString("sanity_at_0_is_1_X8_should_be_2_X8_or_3_X8", resourceCulture);
- }
- }
-
- internal static string New_VTOC_found_at_0 {
- get {
- return ResourceManager.GetString("New_VTOC_found_at_0", resourceCulture);
- }
- }
-
- internal static string Old_VTOC_found_at_0 {
- get {
- return ResourceManager.GetString("Old_VTOC_found_at_0", resourceCulture);
- }
- }
-
- internal static string Searching_for_VTOC_on_relative_byte_0 {
- get {
- return ResourceManager.GetString("Searching_for_VTOC_on_relative_byte_0", resourceCulture);
- }
- }
-
- internal static string Going_to_read_0_sectors_from_sector_1_getting_VTOC_from_byte_2 {
- get {
- return ResourceManager.GetString("Going_to_read_0_sectors_from_sector_1_getting_VTOC_from_byte_2", resourceCulture);
- }
- }
-
- internal static string Going_to_read_past_device_size_aborting {
- get {
- return ResourceManager.GetString("Going_to_read_past_device_size_aborting", resourceCulture);
- }
- }
-
- internal static string New_VTOC_found {
- get {
- return ResourceManager.GetString("New_VTOC_found", resourceCulture);
- }
- }
-
- internal static string Cannot_find_VTOC {
- get {
- return ResourceManager.GetString("Cannot_find_VTOC", resourceCulture);
- }
- }
-
- internal static string valid {
- get {
- return ResourceManager.GetString("valid", resourceCulture);
- }
- }
-
- internal static string _unmountable_ {
- get {
- return ResourceManager.GetString("_unmountable_", resourceCulture);
- }
- }
-
- internal static string open {
- get {
- return ResourceManager.GetString("open", resourceCulture);
- }
- }
-
- internal static string alternate_sector_mapping {
- get {
- return ResourceManager.GetString("alternate_sector_mapping", resourceCulture);
+ return ResourceManager.GetString("_4_4_LFS", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to (read-only).
+ ///
internal static string _read_only_ {
get {
return ResourceManager.GetString("_read_only_", resourceCulture);
}
}
- internal static string created_on_0 {
+ ///
+ /// Looks up a localized string similar to (unmountable).
+ ///
+ internal static string _unmountable_ {
get {
- return ResourceManager.GetString("created_on_0", resourceCulture);
+ return ResourceManager.GetString("_unmountable_", resourceCulture);
}
}
- internal static string Unused {
+ ///
+ /// Looks up a localized string similar to Acorn FileCore partitions.
+ ///
+ internal static string Acorn_Name {
get {
- return ResourceManager.GetString("Unused", resourceCulture);
+ return ResourceManager.GetString("Acorn_Name", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Acronis Secure Zone.
+ ///
+ internal static string Acronis_Secure_Zone {
+ get {
+ return ResourceManager.GetString("Acronis_Secure_Zone", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to AIX boot, OS/2, Commodore DOS.
+ ///
+ internal static string AIX_boot_OS2_Commodore_DOS {
+ get {
+ return ResourceManager.GetString("AIX_boot_OS2_Commodore_DOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to AIX data, Coherent, QNX.
+ ///
+ internal static string AIX_data_Coherent_QNX {
+ get {
+ return ResourceManager.GetString("AIX_data_Coherent_QNX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ALFS/THIN lightweight filesystem for DOS.
+ ///
+ internal static string ALFS_THIN_lightweight_filesystem_for_DOS {
+ get {
+ return ResourceManager.GetString("ALFS_THIN_lightweight_filesystem_for_DOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to (alternate sector mapping).
+ ///
+ internal static string alternate_sector_mapping {
+ get {
+ return ResourceManager.GetString("alternate_sector_mapping", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Alternate sector space.
+ ///
internal static string Alternate_sector_space {
get {
return ResourceManager.GetString("Alternate_sector_space", resourceCulture);
}
}
- internal static string non_UNIX {
- get {
- return ResourceManager.GetString("non_UNIX", resourceCulture);
- }
- }
-
- internal static string Alternate_track_space {
- get {
- return ResourceManager.GetString("Alternate_track_space", resourceCulture);
- }
- }
-
+ ///
+ /// Looks up a localized string similar to Alternate sector track.
+ ///
internal static string Alternate_sector_track {
get {
return ResourceManager.GetString("Alternate_sector_track", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Alternate track space.
+ ///
+ internal static string Alternate_track_space {
+ get {
+ return ResourceManager.GetString("Alternate_track_space", 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 directory cache and multi-user patches.
+ ///
+ internal static string Amiga_Fast_File_System_with_directory_cache_and_multi_user_patches {
+ get {
+ return ResourceManager.GetString("Amiga_Fast_File_System_with_directory_cache_and_multi_user_patches", 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 international characters and multi-user patches.
+ ///
+ internal static string Amiga_Fast_File_System_with_international_characters_and_multi_user_patches {
+ get {
+ return ResourceManager.GetString("Amiga_Fast_File_System_with_international_characters_and_multi_user_patches", 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 Fast File System with multi-user patches.
+ ///
+ internal static string Amiga_Fast_File_System_with_multi_user_patches {
+ get {
+ return ResourceManager.GetString("Amiga_Fast_File_System_with_multi_user_patches", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amiga FFS.
+ ///
+ internal static string Amiga_FFS {
+ get {
+ return ResourceManager.GetString("Amiga_FFS", 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 directory cache and multi-user patches.
+ ///
+ internal static string Amiga_Original_File_System_with_directory_cache_and_multi_user_patches {
+ get {
+ return ResourceManager.GetString("Amiga_Original_File_System_with_directory_cache_and_multi_user_patches", 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 international characters and multi-user patches.
+ ///
+ internal static string Amiga_Original_File_System_with_international_characters_and_multi_user_patches {
+ get {
+ return ResourceManager.GetString("Amiga_Original_File_System_with_international_characters_and_multi_user_patches", 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 Original File System with multi-user patches.
+ ///
+ internal static string Amiga_Original_File_System_with_multi_user_patches {
+ get {
+ return ResourceManager.GetString("Amiga_Original_File_System_with_multi_user_patches", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amiga UNIX boot filesystem.
+ ///
+ internal static string Amiga_UNIX_boot_filesystem {
+ get {
+ return ResourceManager.GetString("Amiga_UNIX_boot_filesystem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amiga UNIX BSD filesystem.
+ ///
+ internal static string Amiga_UNIX_BSD_filesystem {
+ get {
+ return ResourceManager.GetString("Amiga_UNIX_BSD_filesystem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amiga UNIX Reserved partition (swap).
+ ///
+ internal static string Amiga_UNIX_Reserved_partition__swap_ {
+ get {
+ return ResourceManager.GetString("Amiga_UNIX_Reserved_partition__swap_", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amiga UNIX System V filesystem.
+ ///
+ internal static string Amiga_UNIX_System_V_filesystem {
+ get {
+ return ResourceManager.GetString("Amiga_UNIX_System_V_filesystem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amiga Rigid Disk Block.
+ ///
+ internal static string AmigaRigidDiskBlock_Name {
+ get {
+ return ResourceManager.GetString("AmigaRigidDiskBlock_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amoeba bad blocks.
+ ///
+ internal static string Amoeba_bad_blocks {
+ get {
+ return ResourceManager.GetString("Amoeba_bad_blocks", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Amoeba, Hidden Linux.
+ ///
+ internal static string Amoeba_Hidden_Linux {
+ get {
+ return ResourceManager.GetString("Amoeba_Hidden_Linux", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple Boot.
+ ///
+ internal static string Apple_Boot {
+ get {
+ return ResourceManager.GetString("Apple_Boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple Core Storage.
+ ///
+ internal static string Apple_Core_Storage {
+ get {
+ return ResourceManager.GetString("Apple_Core_Storage", 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 HFS.
+ ///
+ internal static string Apple_HFS {
+ get {
+ return ResourceManager.GetString("Apple_HFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple Label.
+ ///
+ internal static string Apple_Label {
+ get {
+ return ResourceManager.GetString("Apple_Label", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple RAID.
+ ///
+ internal static string Apple_RAID {
+ get {
+ return ResourceManager.GetString("Apple_RAID", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple RAID, offline.
+ ///
+ internal static string Apple_RAID_offline {
+ get {
+ return ResourceManager.GetString("Apple_RAID_offline", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple TV Recovery.
+ ///
+ internal static string Apple_TV_Recovery {
+ get {
+ return ResourceManager.GetString("Apple_TV_Recovery", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple UFS.
+ ///
+ internal static string Apple_UFS {
+ get {
+ return ResourceManager.GetString("Apple_UFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apple Partition Map.
+ ///
+ internal static string AppleMap_Name {
+ get {
+ return ResourceManager.GetString("AppleMap_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apricot F1 ROM BIOS.
+ ///
+ internal static string Apricot_F1_ROM_BIOS {
+ get {
+ return ResourceManager.GetString("Apricot_F1_ROM_BIOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ACT Apricot partitions.
+ ///
+ internal static string Apricot_Name {
+ get {
+ return ResourceManager.GetString("Apricot_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apricot Portable ROM BIOS.
+ ///
+ internal static string Apricot_Portable_ROM_BIOS {
+ get {
+ return ResourceManager.GetString("Apricot_Portable_ROM_BIOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apricot & XI RAM BIOS.
+ ///
+ internal static string Apricot_XI_RAM_BIOS {
+ get {
+ return ResourceManager.GetString("Apricot_XI_RAM_BIOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apricot & XI ROM BIOS.
+ ///
+ internal static string Apricot_XI_ROM_BIOS {
+ get {
+ return ResourceManager.GetString("Apricot_XI_ROM_BIOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to AST-Windows swap.
+ ///
+ internal static string AST_Windows_swap {
+ get {
+ return ResourceManager.GetString("AST_Windows_swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Atari GEMDOS partition.
+ ///
+ internal static string Atari_GEMDOS_partition {
+ get {
+ return ResourceManager.GetString("Atari_GEMDOS_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Atari GEMDOS partition bigger than 32 MiB.
+ ///
+ internal static string Atari_GEMDOS_partition_bigger_than_32_MiB {
+ get {
+ return ResourceManager.GetString("Atari_GEMDOS_partition_bigger_than_32_MiB", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Atari UNIX partition.
+ ///
+ internal static string Atari_UNIX_partition {
+ get {
+ return ResourceManager.GetString("Atari_UNIX_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Atari partitions.
+ ///
+ internal static string AtariPartitions_Name {
+ get {
+ return ResourceManager.GetString("AtariPartitions_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to bad.
+ ///
+ internal static string bad {
+ get {
+ return ResourceManager.GetString("bad", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Bad block at {0} replaced with good block at {1}.
+ ///
+ internal static string Bad_block_at_0_replaced_with_good_block_at_1 {
+ get {
+ return ResourceManager.GetString("Bad_block_at_0_replaced_with_good_block_at_1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to bad sector file.
+ ///
+ internal static string bad_sector_file {
+ get {
+ return ResourceManager.GetString("bad_sector_file", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BeOS.
+ ///
+ internal static string BeOS {
+ get {
+ return ResourceManager.GetString("BeOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BIOS Boot.
+ ///
+ internal static string BIOS_Boot {
+ get {
+ return ResourceManager.GetString("BIOS_Boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Boot.
+ ///
+ internal static string Boot {
+ get {
+ return ResourceManager.GetString("Boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Boot code checksum: 0x{0:X8}.
+ ///
+ internal static string Boot_code_checksum_0_X8 {
+ get {
+ return ResourceManager.GetString("Boot_code_checksum_0_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Boot code 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 entry point: 0x{0:X8}.
+ ///
+ internal static string Boot_entry_point_0_X8 {
+ get {
+ return ResourceManager.GetString("Boot_entry_point_0_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Boot is {0} bytes..
+ ///
+ internal static string Boot_is_0_bytes {
+ get {
+ return ResourceManager.GetString("Boot_is_0_bytes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Boot load address: 0x{0:X8}.
+ ///
+ internal static string Boot_load_address_0_X8 {
+ get {
+ return ResourceManager.GetString("Boot_load_address_0_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BootIt EMBRM.
+ ///
+ internal static string BootIt_EMBRM {
+ get {
+ return ResourceManager.GetString("BootIt_EMBRM", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BootStar.
+ ///
+ internal static string BootStar {
+ get {
+ return ResourceManager.GetString("BootStar", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BSD 4.2 FFS.
+ ///
+ internal static string BSD_4_2_FFS {
+ get {
+ return ResourceManager.GetString("BSD_4_2_FFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BSD 4.4 LFS.
+ ///
+ internal static string BSD_4_4_LFS {
+ get {
+ return ResourceManager.GetString("BSD_4_4_LFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Adding it....
+ ///
+ internal static string BSD_GetInformation_Adding_it {
+ get {
+ return ResourceManager.GetString("BSD_GetInformation_Adding_it", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to dl.magic on sector {0} at offset {1} = 0x{2:X8} (expected 0x{3:X8}).
+ ///
+ internal static string BSD_GetInformation_dl_magic_on_sector_0_at_offset_1_equals_2_X8_expected_3_X8 {
+ get {
+ return ResourceManager.GetString("BSD_GetInformation_dl_magic_on_sector_0_at_offset_1_equals_2_X8_expected_3_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BSD disklabel.
+ ///
+ internal static string BSD_Name {
+ get {
+ return ResourceManager.GetString("BSD_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BSD/OS.
+ ///
+ internal static string BSD_OS {
+ get {
+ return ResourceManager.GetString("BSD_OS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BSD swap.
+ ///
+ internal static string BSD_swap {
+ get {
+ return ResourceManager.GetString("BSD_swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BSD unused.
+ ///
+ internal static string BSD_unused {
+ get {
+ return ResourceManager.GetString("BSD_unused", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to BSDi.
+ ///
+ internal static string BSDi {
+ get {
+ return ResourceManager.GetString("BSDi", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cache.
+ ///
internal static string Cache {
get {
return ResourceManager.GetString("Cache", resourceCulture);
}
}
- internal static string Reserved {
+ ///
+ /// Looks up a localized string similar to Cannot find VTOC..
+ ///
+ internal static string Cannot_find_VTOC {
get {
- return ResourceManager.GetString("Reserved", resourceCulture);
+ return ResourceManager.GetString("Cannot_find_VTOC", resourceCulture);
}
}
- internal static string dump {
+ ///
+ /// Looks up a localized string similar to Ceph disk in creation.
+ ///
+ internal static string Ceph_disk_in_creation {
get {
- return ResourceManager.GetString("dump", resourceCulture);
+ return ResourceManager.GetString("Ceph_disk_in_creation", resourceCulture);
}
}
- internal static string volume_mgt_public_partition {
+ ///
+ /// Looks up a localized string similar to Ceph dm-crypt disk in creation.
+ ///
+ internal static string Ceph_dm_crypt_disk_in_creation {
get {
- return ResourceManager.GetString("volume_mgt_public_partition", resourceCulture);
+ return ResourceManager.GetString("Ceph_dm_crypt_disk_in_creation", resourceCulture);
}
}
- internal static string volume_mgt_private_partition {
+ ///
+ /// Looks up a localized string similar to Ceph dm-crypt Encrypted Journal.
+ ///
+ internal static string Ceph_dm_crypt_Encrypted_Journal {
get {
- return ResourceManager.GetString("volume_mgt_private_partition", resourceCulture);
+ return ResourceManager.GetString("Ceph_dm_crypt_Encrypted_Journal", resourceCulture);
}
}
- internal static string Unknown_TAG_0 {
+ ///
+ /// Looks up a localized string similar to Ceph dm-crypt OSD.
+ ///
+ internal static string Ceph_dm_crypt_OSD {
get {
- return ResourceManager.GetString("Unknown_TAG_0", resourceCulture);
+ return ResourceManager.GetString("Ceph_dm_crypt_OSD", resourceCulture);
}
}
- internal static string Xbox_Name {
+ ///
+ /// Looks up a localized string similar to Ceph Journal.
+ ///
+ internal static string Ceph_Journal {
get {
- return ResourceManager.GetString("Xbox_Name", resourceCulture);
+ return ResourceManager.GetString("Ceph_Journal", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Ceph OSD.
+ ///
+ internal static string Ceph_OSD {
+ get {
+ return ResourceManager.GetString("Ceph_OSD", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ChromeOS future use.
+ ///
+ internal static string ChromeOS_future_use {
+ get {
+ return ResourceManager.GetString("ChromeOS_future_use", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ChromeOS kernel.
+ ///
+ internal static string ChromeOS_kernel {
+ get {
+ return ResourceManager.GetString("ChromeOS_kernel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ChromeOS rootfs.
+ ///
+ internal static string ChromeOS_rootfs {
+ get {
+ return ResourceManager.GetString("ChromeOS_rootfs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Coherent swap, OPUS, OS/2 Boot Manager.
+ ///
+ internal static string Coherent_swap_OPUS_OS_2_Boot_Manager {
+ get {
+ return ResourceManager.GetString("Coherent_swap_OPUS_OS_2_Boot_Manager", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Compaq diagnostics, recovery partition.
+ ///
+ internal static string Compaq_diagnostics_recovery_partition {
+ get {
+ return ResourceManager.GetString("Compaq_diagnostics_recovery_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Concatenated disk.
+ ///
+ internal static string Concatenated_disk {
+ get {
+ return ResourceManager.GetString("Concatenated_disk", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Content volume.
+ ///
internal static string Content_volume {
get {
return ResourceManager.GetString("Content_volume", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to CP/M.
+ ///
+ internal static string CPM {
+ get {
+ return ResourceManager.GetString("CPM", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to CP/M, CCP/M, CTOS.
+ ///
+ internal static string CPM_CCPM_CTOS {
+ get {
+ return ResourceManager.GetString("CPM_CCPM_CTOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to CP/M, Microport UNIX.
+ ///
+ internal static string CPM_Microport_UNIX {
+ get {
+ return ResourceManager.GetString("CPM_Microport_UNIX", 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 Cutting last partition end ({0}) to media size ({1}).
+ ///
+ internal static string Cutting_last_partition_end_0_to_media_size_1 {
+ get {
+ return ResourceManager.GetString("Cutting_last_partition_end_0_to_media_size_1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Dashboard volume.
+ ///
internal static string Dashboard_volume {
get {
return ResourceManager.GetString("Dashboard_volume", resourceCulture);
}
}
- internal static string System_cache {
+ ///
+ /// Looks up a localized string similar to data.
+ ///
+ internal static string data {
get {
- return ResourceManager.GetString("System_cache", resourceCulture);
+ return ResourceManager.GetString("data", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Data volume.
+ ///
internal static string Data_volume {
get {
return ResourceManager.GetString("Data_volume", resourceCulture);
}
}
- internal static string Security_sectors {
+ ///
+ /// Looks up a localized string similar to DEC disklabel.
+ ///
+ internal static string DEC_Name {
get {
- return ResourceManager.GetString("Security_sectors", resourceCulture);
+ return ResourceManager.GetString("DEC_Name", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Dell partition.
+ ///
+ internal static string Dell_partition {
+ get {
+ return ResourceManager.GetString("Dell_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Digital Advanced File System.
+ ///
+ internal static string Digital_Advanced_File_System {
+ get {
+ return ResourceManager.GetString("Digital_Advanced_File_System", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Digital LSM Private Region.
+ ///
+ internal static string Digital_LSM_Private_Region {
+ get {
+ return ResourceManager.GetString("Digital_LSM_Private_Region", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Digital LSM Public Region.
+ ///
+ internal static string Digital_LSM_Public_Region {
+ get {
+ return ResourceManager.GetString("Digital_LSM_Public_Region", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Digital LSM Simple Disk.
+ ///
+ internal static string Digital_LSM_Simple_Disk {
+ get {
+ return ResourceManager.GetString("Digital_LSM_Simple_Disk", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DiskSecure Multi-Boot.
+ ///
+ internal static string DiskSecure_Multi_Boot {
+ get {
+ return ResourceManager.GetString("DiskSecure_Multi_Boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DOS 3.3 secondary, Unisys DOS.
+ ///
+ internal static string DOS_3_3_secondary_Unisys_DOS {
+ get {
+ return ResourceManager.GetString("DOS_3_3_secondary_Unisys_DOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DOS read/only.
+ ///
+ internal static string DOS_read_only {
+ get {
+ return ResourceManager.GetString("DOS_read_only", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS reserved.
+ ///
+ internal static string DR_DOS_reserved {
+ get {
+ return ResourceManager.GetString("DR_DOS_reserved", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS secured extended (LBA).
+ ///
+ internal static string DR_DOS_secured_extended_LBA {
+ get {
+ return ResourceManager.GetString("DR_DOS_secured_extended_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS secured FAT12.
+ ///
+ internal static string DR_DOS_secured_FAT12 {
+ get {
+ return ResourceManager.GetString("DR_DOS_secured_FAT12", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS secured FAT16.
+ ///
+ internal static string DR_DOS_secured_FAT16 {
+ get {
+ return ResourceManager.GetString("DR_DOS_secured_FAT16", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS secured FAT16 < 32 MiB.
+ ///
+ internal static string DR_DOS_secured_FAT16_32_MiB {
+ get {
+ return ResourceManager.GetString("DR_DOS_secured_FAT16_32_MiB", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS secured FAT16 (LBA).
+ ///
+ internal static string DR_DOS_secured_FAT16_LBA {
+ get {
+ return ResourceManager.GetString("DR_DOS_secured_FAT16_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS secured FAT32.
+ ///
+ internal static string DR_DOS_secured_FAT32 {
+ get {
+ return ResourceManager.GetString("DR_DOS_secured_FAT32", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DR-DOS secured FAT32 (LBA).
+ ///
+ internal static string DR_DOS_secured_FAT32_LBA {
+ get {
+ return ResourceManager.GetString("DR_DOS_secured_FAT32_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD CCD.
+ ///
+ internal static string DragonflyBSD_CCD {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_CCD", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD Hammer.
+ ///
+ internal static string DragonflyBSD_Hammer {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_Hammer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD Hammer2.
+ ///
+ internal static string DragonflyBSD_Hammer2 {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_Hammer2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD Label.
+ ///
+ internal static string DragonflyBSD_Label {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_Label", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD Legacy.
+ ///
+ internal static string DragonflyBSD_Legacy {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_Legacy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonFly BSD 64-bit disklabel.
+ ///
+ internal static string DragonFlyBSD_Name {
+ get {
+ return ResourceManager.GetString("DragonFlyBSD_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD Swap.
+ ///
+ internal static string DragonflyBSD_Swap {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_Swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD UFS.
+ ///
+ internal static string DragonflyBSD_UFS {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_UFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to DragonflyBSD Vinum.
+ ///
+ internal static string DragonflyBSD_Vinum {
+ get {
+ return ResourceManager.GetString("DragonflyBSD_Vinum", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to dump.
+ ///
+ internal static string dump {
+ get {
+ return ResourceManager.GetString("dump", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to dvh.magic = 0x{0:X8} (should be 0x{1:X8}).
+ ///
+ internal static string dvh_magic_equals_0_X8_should_be_1_X8 {
+ get {
+ return ResourceManager.GetString("dvh_magic_equals_0_X8_should_be_1_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to EFI System.
+ ///
+ internal static string EFI_System {
+ get {
+ return ResourceManager.GetString("EFI_System", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to EFI system partition.
+ ///
+ internal static string EFI_system_partition {
+ get {
+ return ResourceManager.GetString("EFI_system_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to EFS.
+ ///
+ internal static string EFS {
+ get {
+ return ResourceManager.GetString("EFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Empty.
+ ///
+ internal static string Empty {
+ get {
+ return ResourceManager.GetString("Empty", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to error log.
+ ///
+ internal static string error_log {
+ get {
+ return ResourceManager.GetString("error_log", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to errorlog.
+ ///
+ internal static string errorlog {
+ get {
+ return ResourceManager.GetString("errorlog", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to EUMEL/Elan.
+ ///
+ internal static string EUMEL_Elan {
+ get {
+ return ResourceManager.GetString("EUMEL_Elan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Even.
+ ///
+ internal static string Even_parity {
+ get {
+ return ResourceManager.GetString("Even_parity", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Extended.
+ ///
+ internal static string Extended {
+ get {
+ return ResourceManager.GetString("Extended", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Extended (LBA).
+ ///
+ internal static string Extended_LBA {
+ get {
+ return ResourceManager.GetString("Extended_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to EZ-Drive.
+ ///
+ internal static string EZ_Drive {
+ get {
+ return ResourceManager.GetString("EZ_Drive", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT.
+ ///
+ internal static string FAT {
+ get {
+ return ResourceManager.GetString("FAT", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT, as set by CrossDOS.
+ ///
+ internal static string FAT_as_set_by_CrossDOS {
+ get {
+ return ResourceManager.GetString("FAT_as_set_by_CrossDOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT12.
+ ///
+ internal static string FAT12 {
+ get {
+ return ResourceManager.GetString("FAT12", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT16.
+ ///
+ internal static string FAT16 {
+ get {
+ return ResourceManager.GetString("FAT16", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT16 < 32 MiB.
+ ///
+ internal static string FAT16_32_MiB {
+ get {
+ return ResourceManager.GetString("FAT16_32_MiB", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT16 (LBA).
+ ///
+ internal static string FAT16_LBA {
+ get {
+ return ResourceManager.GetString("FAT16_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT32.
+ ///
+ internal static string FAT32 {
+ get {
+ return ResourceManager.GetString("FAT32", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FAT32 (LBA).
+ ///
+ internal static string FAT32_LBA {
+ get {
+ return ResourceManager.GetString("FAT32_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filecore.
+ ///
+ internal static string Filecore {
+ get {
+ return ResourceManager.GetString("Filecore", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filesystem-less data.
+ ///
+ internal static string Filesystem_less_data {
+ get {
+ return ResourceManager.GetString("Filesystem_less_data", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filesystem should be automatically mounted.
+ ///
+ internal static string Filesystem_should_be_automatically_mounted {
+ get {
+ return ResourceManager.GetString("Filesystem_should_be_automatically_mounted", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filesystem should be formatted at start.
+ ///
+ internal static string Filesystem_should_be_formatted_at_start {
+ get {
+ return ResourceManager.GetString("Filesystem_should_be_formatted_at_start", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to First boot sector: {0}.
+ ///
+ internal static string First_boot_sector_0 {
+ get {
+ return ResourceManager.GetString("First_boot_sector_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found aligned entry..
+ ///
+ internal static string Found_aligned_entry {
+ get {
+ return ResourceManager.GetString("Found_aligned_entry", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found BadBlock block.
+ ///
+ internal static string Found_BadBlock_block {
+ get {
+ return ResourceManager.GetString("Found_BadBlock_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found FileSystemHeader block.
+ ///
+ internal static string Found_FileSystemHeader_block {
+ get {
+ return ResourceManager.GetString("Found_FileSystemHeader_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found LoadSegment block.
+ ///
+ internal static string Found_LoadSegment_block {
+ get {
+ return ResourceManager.GetString("Found_LoadSegment_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found misaligned entry..
+ ///
+ internal static string Found_misaligned_entry {
+ get {
+ return ResourceManager.GetString("Found_misaligned_entry", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found PartitionEntry block.
+ ///
+ internal static string Found_PartitionEntry_block {
+ get {
+ return ResourceManager.GetString("Found_PartitionEntry_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found RDB magic at block {0}.
+ ///
+ internal static string Found_RDB_magic_at_block_0 {
+ get {
+ return ResourceManager.GetString("Found_RDB_magic_at_block_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Found unaligned signature.
+ ///
+ internal static string Found_unaligned_signature {
+ get {
+ return ResourceManager.GetString("Found_unaligned_signature", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD.
+ ///
+ internal static string FreeBSD {
+ get {
+ return ResourceManager.GetString("FreeBSD", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD Boot.
+ ///
+ internal static string FreeBSD_Boot {
+ get {
+ return ResourceManager.GetString("FreeBSD_Boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD Data.
+ ///
+ internal static string FreeBSD_Data {
+ get {
+ return ResourceManager.GetString("FreeBSD_Data", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD nandfs.
+ ///
+ internal static string FreeBSD_nandfs {
+ get {
+ return ResourceManager.GetString("FreeBSD_nandfs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD swap.
+ ///
+ internal static string FreeBSD_swap {
+ get {
+ return ResourceManager.GetString("FreeBSD_swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD UFS.
+ ///
+ internal static string FreeBSD_UFS {
+ get {
+ return ResourceManager.GetString("FreeBSD_UFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD UFS2.
+ ///
+ internal static string FreeBSD_UFS2 {
+ get {
+ return ResourceManager.GetString("FreeBSD_UFS2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD Vinum.
+ ///
+ internal static string FreeBSD_Vinum {
+ get {
+ return ResourceManager.GetString("FreeBSD_Vinum", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to FreeBSD ZFS.
+ ///
+ internal static string FreeBSD_ZFS {
+ get {
+ return ResourceManager.GetString("FreeBSD_ZFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Game cache.
+ ///
internal static string Game_cache {
get {
return ResourceManager.GetString("Game_cache", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Generic ROM BIOS.
+ ///
+ internal static string Generic_ROM_BIOS {
+ get {
+ return ResourceManager.GetString("Generic_ROM_BIOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to GNU Hurd, System V, 386/ix.
+ ///
+ internal static string GNU_Hurd_System_V_386ix {
+ get {
+ return ResourceManager.GetString("GNU_Hurd_System_V_386ix", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Going to block {0} in search of a BadBlock block.
+ ///
+ internal static string Going_to_block_0_in_search_of_a_BadBlock_block {
+ get {
+ return ResourceManager.GetString("Going_to_block_0_in_search_of_a_BadBlock_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Going to block {0} in search of a FileSystemHeader block.
+ ///
+ internal static string Going_to_block_0_in_search_of_a_FileSystemHeader_block {
+ get {
+ return ResourceManager.GetString("Going_to_block_0_in_search_of_a_FileSystemHeader_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Going to block {0} in search of a LoadSegment block.
+ ///
+ internal static string Going_to_block_0_in_search_of_a_LoadSegment_block {
+ get {
+ return ResourceManager.GetString("Going_to_block_0_in_search_of_a_LoadSegment_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Going to block {0} in search of a PartitionEntry block.
+ ///
+ internal static string Going_to_block_0_in_search_of_a_PartitionEntry_block {
+ get {
+ return ResourceManager.GetString("Going_to_block_0_in_search_of_a_PartitionEntry_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Going to read {0} sectors from sector {1}, getting VTOC from byte {2}.
+ ///
+ internal static string Going_to_read_0_sectors_from_sector_1_getting_VTOC_from_byte_2 {
+ get {
+ return ResourceManager.GetString("Going_to_read_0_sectors_from_sector_1_getting_VTOC_from_byte_2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Going to read past device size, aborting....
+ ///
+ internal static string Going_to_read_past_device_size_aborting {
+ get {
+ return ResourceManager.GetString("Going_to_read_past_device_size_aborting", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Golden Bow VFeature.
+ ///
+ internal static string Golden_Bow_VFeature {
+ get {
+ return ResourceManager.GetString("Golden_Bow_VFeature", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Guid Partition Table.
+ ///
+ internal static string Guid_Partition_Table {
+ get {
+ return ResourceManager.GetString("Guid_Partition_Table", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to GUID Partition Table.
+ ///
+ internal static string GuidPartitionTable_Name {
+ get {
+ return ResourceManager.GetString("GuidPartitionTable_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Haiku BFS.
+ ///
+ internal static string Haiku_BFS {
+ get {
+ return ResourceManager.GetString("Haiku_BFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hammer.
+ ///
+ internal static string Hammer {
+ get {
+ return ResourceManager.GetString("Hammer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hammer2.
+ ///
+ internal static string Hammer2 {
+ get {
+ return ResourceManager.GetString("Hammer2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HFS, as set by CrossMac.
+ ///
+ internal static string HFS_as_set_by_CrossMac {
+ get {
+ return ResourceManager.GetString("HFS_as_set_by_CrossMac", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hibernation.
+ ///
+ internal static string Hibernation {
+ get {
+ return ResourceManager.GetString("Hibernation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden by OS/2, APM hibernation.
+ ///
+ internal static string Hidden_by_OS2_APM_hibernation {
+ get {
+ return ResourceManager.GetString("Hidden_by_OS2_APM_hibernation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden FAT12.
+ ///
+ internal static string Hidden_FAT12 {
+ get {
+ return ResourceManager.GetString("Hidden_FAT12", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden FAT16.
+ ///
+ internal static string Hidden_FAT16 {
+ get {
+ return ResourceManager.GetString("Hidden_FAT16", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden FAT16 < 32 MiB, AST-DOS.
+ ///
+ internal static string Hidden_FAT16_32_MiB_AST_DOS {
+ get {
+ return ResourceManager.GetString("Hidden_FAT16_32_MiB_AST_DOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden FAT16 (LBA).
+ ///
+ internal static string Hidden_FAT16_LBA {
+ get {
+ return ResourceManager.GetString("Hidden_FAT16_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden FAT32.
+ ///
+ internal static string Hidden_FAT32 {
+ get {
+ return ResourceManager.GetString("Hidden_FAT32", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden FAT32 (LBA).
+ ///
+ internal static string Hidden_FAT32_LBA {
+ get {
+ return ResourceManager.GetString("Hidden_FAT32_LBA", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden IFS (HPFS/NTFS).
+ ///
+ internal static string Hidden_IFS_HPFS_NTFS {
+ get {
+ return ResourceManager.GetString("Hidden_IFS_HPFS_NTFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden NetWare.
+ ///
+ internal static string Hidden_NetWare {
+ get {
+ return ResourceManager.GetString("Hidden_NetWare", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hidden NTFS.
+ ///
+ internal static string Hidden_NTFS {
+ get {
+ return ResourceManager.GetString("Hidden_NTFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HP-UX Data.
+ ///
+ internal static string HP_UX_Data {
+ get {
+ return ResourceManager.GetString("HP_UX_Data", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HP-UX Service.
+ ///
+ internal static string HP_UX_Service {
+ get {
+ return ResourceManager.GetString("HP_UX_Service", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HP Volume Expansion.
+ ///
+ internal static string HP_Volume_Expansion {
+ get {
+ return ResourceManager.GetString("HP_Volume_Expansion", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HPFS.
+ ///
+ internal static string HPFS {
+ get {
+ return ResourceManager.GetString("HPFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Human 68k partitions.
+ ///
+ internal static string Human68K_Name {
+ get {
+ return ResourceManager.GetString("Human68K_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to IBM General Parallel File System (GPFS).
+ ///
+ internal static string IBM_General_Parallel_File_System_GPFS {
+ get {
+ return ResourceManager.GetString("IBM_General_Parallel_File_System_GPFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to IBM JFS2.
+ ///
+ internal static string IBM_JFS2 {
+ get {
+ return ResourceManager.GetString("IBM_JFS2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to IBM PC/IX.
+ ///
+ internal static string IBM_PC_IX {
+ get {
+ return ResourceManager.GetString("IBM_PC_IX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to IFS (HPFS/NTFS).
+ ///
+ internal static string IFS_HPFS_NTFS {
+ get {
+ return ResourceManager.GetString("IFS_HPFS_NTFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Intel Fast Flash (iFFS).
+ ///
+ internal static string Intel_Fast_Flash_iFFS {
+ get {
+ return ResourceManager.GetString("Intel_Fast_Flash_iFFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Invalid.
+ ///
+ internal static string Invalid_operating_system {
+ get {
+ return ResourceManager.GetString("Invalid_operating_system", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ISO9660.
+ ///
+ internal static string ISO9660 {
+ get {
+ return ResourceManager.GetString("ISO9660", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to JXFS.
+ ///
+ internal static string JXFS {
+ get {
+ return ResourceManager.GetString("JXFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lenovo boot.
+ ///
+ internal static string Lenovo_boot {
+ get {
+ return ResourceManager.GetString("Lenovo_boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux.
+ ///
+ internal static string Linux {
+ get {
+ return ResourceManager.GetString("Linux", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux boot.
+ ///
+ internal static string Linux_boot {
+ get {
+ return ResourceManager.GetString("Linux_boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux extended.
+ ///
+ internal static string Linux_extended {
+ get {
+ return ResourceManager.GetString("Linux_extended", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux filesystem.
+ ///
+ internal static string Linux_filesystem {
+ get {
+ return ResourceManager.GetString("Linux_filesystem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux filesystem partition.
+ ///
+ internal static string Linux_filesystem_partition {
+ get {
+ return ResourceManager.GetString("Linux_filesystem_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux /home.
+ ///
+ internal static string Linux_home {
+ get {
+ return ResourceManager.GetString("Linux_home", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux LVM.
+ ///
+ internal static string Linux_LVM {
+ get {
+ return ResourceManager.GetString("Linux_LVM", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux partition.
+ ///
+ internal static string Linux_partition {
+ get {
+ return ResourceManager.GetString("Linux_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux Plaintext.
+ ///
+ internal static string Linux_Plaintext {
+ get {
+ return ResourceManager.GetString("Linux_Plaintext", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux RAID.
+ ///
+ internal static string Linux_RAID {
+ get {
+ return ResourceManager.GetString("Linux_RAID", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux RAID, FreeDOS.
+ ///
+ internal static string Linux_RAID_FreeDOS {
+ get {
+ return ResourceManager.GetString("Linux_RAID_FreeDOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux Reserved.
+ ///
+ internal static string Linux_Reserved {
+ get {
+ return ResourceManager.GetString("Linux_Reserved", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux Root (32-bit ARM).
+ ///
+ internal static string Linux_Root_32_bit_ARM {
+ get {
+ return ResourceManager.GetString("Linux_Root_32_bit_ARM", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux Root (64-bit ARM/AArch64).
+ ///
+ internal static string Linux_Root_AArch64 {
+ get {
+ return ResourceManager.GetString("Linux_Root_AArch64", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux Root (x86).
+ ///
+ internal static string Linux_Root_x86 {
+ get {
+ return ResourceManager.GetString("Linux_Root_x86", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux Root (x86-64).
+ ///
+ internal static string Linux_Root_x86_64 {
+ get {
+ return ResourceManager.GetString("Linux_Root_x86_64", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux /srv.
+ ///
+ internal static string Linux_srv {
+ get {
+ return ResourceManager.GetString("Linux_srv", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux swap.
+ ///
+ internal static string Linux_swap {
+ get {
+ return ResourceManager.GetString("Linux_swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux swap partition.
+ ///
+ internal static string Linux_swap_partition {
+ get {
+ return ResourceManager.GetString("Linux_swap_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Linux swap, Solaris.
+ ///
+ internal static string Linux_swap_Solaris {
+ get {
+ return ResourceManager.GetString("Linux_swap_Solaris", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to LoadSegment data SHA1: {0}.
+ ///
+ internal static string LoadSegment_data_SHA1_0 {
+ get {
+ return ResourceManager.GetString("LoadSegment_data_SHA1_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Logical Disk Manager data.
+ ///
+ internal static string Logical_Disk_Manager_data {
+ get {
+ return ResourceManager.GetString("Logical_Disk_Manager_data", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Logical Disk Manager (LDM) metadata.
+ ///
+ internal static string Logical_Disk_Manager_LDM_metadata {
+ get {
+ return ResourceManager.GetString("Logical_Disk_Manager_LDM_metadata", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Logical volume.
+ ///
+ internal static string Logical_volume {
+ get {
+ return ResourceManager.GetString("Logical_volume", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Logical Volume Manager (LVM).
+ ///
+ internal static string Logical_Volume_Manager_LVM {
+ get {
+ return ResourceManager.GetString("Logical_Volume_Manager_LVM", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to LUKS.
+ ///
+ internal static string LUKS {
+ get {
+ return ResourceManager.GetString("LUKS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to LVM.
+ ///
+ internal static string LVM {
+ get {
+ return ResourceManager.GetString("LVM", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Macintosh partition.
+ ///
+ internal static string Macintosh_partition {
+ get {
+ return ResourceManager.GetString("Macintosh_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to maintenance.
+ ///
+ internal static string maintenance {
+ get {
+ return ResourceManager.GetString("maintenance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to maintenance area.
+ ///
+ internal static string maintenance_area {
+ get {
+ return ResourceManager.GetString("maintenance_area", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mark.
+ ///
+ internal static string Mark_parity {
+ get {
+ return ResourceManager.GetString("Mark_parity", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Master Boot Record.
+ ///
+ internal static string MBR_Name {
+ get {
+ return ResourceManager.GetString("MBR_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MBR scheme.
+ ///
+ internal static string MBR_scheme {
+ get {
+ return ResourceManager.GetString("MBR_scheme", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MF1DD 70-track.
+ ///
+ internal static string MF1DD_70_track {
+ get {
+ return ResourceManager.GetString("MF1DD_70_track", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Microsoft Basic data.
+ ///
+ internal static string Microsoft_Basic_data {
+ get {
+ return ResourceManager.GetString("Microsoft_Basic_data", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Microsoft Reserved (MSR).
+ ///
+ internal static string Microsoft_Reserved_MSR {
+ get {
+ return ResourceManager.GetString("Microsoft_Reserved_MSR", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MidnightBSD Boot.
+ ///
+ internal static string MidnightBSD_Boot {
+ get {
+ return ResourceManager.GetString("MidnightBSD_Boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MidnightBSD Data.
+ ///
+ internal static string MidnightBSD_Data {
+ get {
+ return ResourceManager.GetString("MidnightBSD_Data", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MidnightBSD Swap.
+ ///
+ internal static string MidnightBSD_Swap {
+ get {
+ return ResourceManager.GetString("MidnightBSD_Swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MidnightBSD UFS.
+ ///
+ internal static string MidnightBSD_UFS {
+ get {
+ return ResourceManager.GetString("MidnightBSD_UFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MidnightBSD Vinum.
+ ///
+ internal static string MidnightBSD_Vinum {
+ get {
+ return ResourceManager.GetString("MidnightBSD_Vinum", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MidnightBSD ZFS.
+ ///
+ internal static string MidnightBSD_ZFS {
+ get {
+ return ResourceManager.GetString("MidnightBSD_ZFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MINIX.
+ ///
+ internal static string MINIX {
+ get {
+ return ResourceManager.GetString("MINIX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MINIX, Old Linux.
+ ///
+ internal static string MINIX_Old_Linux {
+ get {
+ return ResourceManager.GetString("MINIX_Old_Linux", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MINIX partition.
+ ///
+ internal static string MINIX_partition {
+ get {
+ return ResourceManager.GetString("MINIX_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Multiuser DOS secured extended.
+ ///
+ internal static string Multiuser_DOS_secured_extended {
+ get {
+ return ResourceManager.GetString("Multiuser_DOS_secured_extended", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Multiuser DOS secured FAT12.
+ ///
+ internal static string Multiuser_DOS_secured_FAT12 {
+ get {
+ return ResourceManager.GetString("Multiuser_DOS_secured_FAT12", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Multiuser DOS secured FAT16.
+ ///
+ internal static string Multiuser_DOS_secured_FAT16 {
+ get {
+ return ResourceManager.GetString("Multiuser_DOS_secured_FAT16", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Multiuser DOS secured FAT16 < 32 MiB.
+ ///
+ internal static string Multiuser_DOS_secured_FAT16_32_MiB {
+ get {
+ return ResourceManager.GetString("Multiuser_DOS_secured_FAT16_32_MiB", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Mylex EISA SCSI.
+ ///
+ internal static string Mylex_EISA_SCSI {
+ get {
+ return ResourceManager.GetString("Mylex_EISA_SCSI", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to N88-BASIC(86).
+ ///
+ internal static string N88_BASIC_86 {
+ get {
+ return ResourceManager.GetString("N88_BASIC_86", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NEC-DOS.
+ ///
+ internal static string NEC_DOS {
+ get {
+ return ResourceManager.GetString("NEC_DOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD.
+ ///
+ internal static string NetBSD {
+ get {
+ return ResourceManager.GetString("NetBSD", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD 4.2 FFS root partition.
+ ///
+ internal static string NetBSD_4_2_FFS_root_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_4_2_FFS_root_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD 4.2 FFS user partition.
+ ///
+ internal static string NetBSD_4_2_FFS_user_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_4_2_FFS_user_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD 4.4 LFS root partition.
+ ///
+ internal static string NetBSD_4_4_LFS_root_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_4_4_LFS_root_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD 4.4 LFS user partition.
+ ///
+ internal static string NetBSD_4_4_LFS_user_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_4_4_LFS_user_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD Concatenated.
+ ///
+ internal static string NetBSD_Concatenated {
+ get {
+ return ResourceManager.GetString("NetBSD_Concatenated", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD Encrypted.
+ ///
+ internal static string NetBSD_Encrypted {
+ get {
+ return ResourceManager.GetString("NetBSD_Encrypted", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD FFS.
+ ///
+ internal static string NetBSD_FFS {
+ get {
+ return ResourceManager.GetString("NetBSD_FFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD LFS.
+ ///
+ internal static string NetBSD_LFS {
+ get {
+ return ResourceManager.GetString("NetBSD_LFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD partition.
+ ///
+ internal static string NetBSD_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD RAID.
+ ///
+ internal static string NetBSD_RAID {
+ get {
+ return ResourceManager.GetString("NetBSD_RAID", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD Swap.
+ ///
+ internal static string NetBSD_Swap {
+ get {
+ return ResourceManager.GetString("NetBSD_Swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD swap partition.
+ ///
+ internal static string NetBSD_swap_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_swap_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD unused root partition.
+ ///
+ internal static string NetBSD_unused_root_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_unused_root_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetBSD unused user partition.
+ ///
+ internal static string NetBSD_unused_user_partition {
+ get {
+ return ResourceManager.GetString("NetBSD_unused_user_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetWare.
+ ///
+ internal static string NetWare {
+ get {
+ return ResourceManager.GetString("NetWare", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetWare 286.
+ ///
+ internal static string NetWare_286 {
+ get {
+ return ResourceManager.GetString("NetWare_286", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetWare 386.
+ ///
+ internal static string NetWare_386 {
+ get {
+ return ResourceManager.GetString("NetWare_386", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NetWare NSS.
+ ///
+ internal static string NetWare_NSS {
+ get {
+ return ResourceManager.GetString("NetWare_NSS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New VTOC found..
+ ///
+ internal static string New_VTOC_found {
+ get {
+ return ResourceManager.GetString("New_VTOC_found", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New VTOC found at {0}.
+ ///
+ internal static string New_VTOC_found_at_0 {
+ get {
+ return ResourceManager.GetString("New_VTOC_found_at_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NeXT Disklabel.
+ ///
+ internal static string NeXTDisklabel_Name {
+ get {
+ return ResourceManager.GetString("NeXTDisklabel_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NeXTStep.
+ ///
+ internal static string NeXTStep {
+ get {
+ return ResourceManager.GetString("NeXTStep", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Non-bootable.
+ ///
+ internal static string Non_bootable {
+ get {
+ return ResourceManager.GetString("Non_bootable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to non UNIX.
+ ///
+ internal static string non_UNIX {
+ get {
+ return ResourceManager.GetString("non_UNIX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to None.
+ ///
+ internal static string None_parity {
+ get {
+ return ResourceManager.GetString("None_parity", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Not adding partition because start ({0}) is outside media size ({1}).
+ ///
+ internal static string Not_adding_partition_because_start_0_is_outside_media_size_1 {
+ get {
+ return ResourceManager.GetString("Not_adding_partition_because_start_0_is_outside_media_size_1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Novell DOS, DR-DOS secured.
+ ///
+ internal static string Novell_DOS_DR_DOS_secured {
+ get {
+ return ResourceManager.GetString("Novell_DOS_DR_DOS_secured", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NT Stripe Set.
+ ///
+ internal static string NT_Stripe_Set {
+ get {
+ return ResourceManager.GetString("NT_Stripe_Set", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Odd.
+ ///
+ internal static string Odd_parity {
+ get {
+ return ResourceManager.GetString("Odd_parity", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Old MINIX.
+ ///
+ internal static string Old_MINIX {
+ get {
+ return ResourceManager.GetString("Old_MINIX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Old VTOC found at {0}.
+ ///
+ internal static string Old_VTOC_found_at_0 {
+ get {
+ return ResourceManager.GetString("Old_VTOC_found_at_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Olivetti DOS FAT12.
+ ///
+ internal static string Olivetti_DOS_FAT12 {
+ get {
+ return ResourceManager.GetString("Olivetti_DOS_FAT12", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ONIE boot.
+ ///
+ internal static string ONIE_boot {
+ get {
+ return ResourceManager.GetString("ONIE_boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ONIE config.
+ ///
+ internal static string ONIE_config {
+ get {
+ return ResourceManager.GetString("ONIE_config", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ontrack DM 6.
+ ///
+ internal static string Ontrack_DM_6 {
+ get {
+ return ResourceManager.GetString("Ontrack_DM_6", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ontrack DM, R/O, FAT.
+ ///
+ internal static string Ontrack_DM_RO_FAT {
+ get {
+ return ResourceManager.GetString("Ontrack_DM_RO_FAT", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ontrack DM, R/W, FAT.
+ ///
+ internal static string Ontrack_DM_RW_FAT {
+ get {
+ return ResourceManager.GetString("Ontrack_DM_RW_FAT", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to (open).
+ ///
+ internal static string open {
+ get {
+ return ResourceManager.GetString("open", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to OpenBSD.
+ ///
+ internal static string OpenBSD {
+ get {
+ return ResourceManager.GetString("OpenBSD", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to OpenBSD Data.
+ ///
+ internal static string OpenBSD_Data {
+ get {
+ return ResourceManager.GetString("OpenBSD_Data", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to OPUS.
+ ///
+ internal static string OPUS {
+ get {
+ return ResourceManager.GetString("OPUS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Other or unknown.
+ ///
+ internal static string Other_or_unknown {
+ get {
+ return ResourceManager.GetString("Other_or_unknown", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Oxygen Extended.
+ ///
+ internal static string Oxygen_Extended {
+ get {
+ return ResourceManager.GetString("Oxygen_Extended", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Oxygen FSo2.
+ ///
+ internal static string Oxygen_FSo2 {
+ get {
+ return ResourceManager.GetString("Oxygen_FSo2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Parallel.
+ ///
+ internal static string Parallel_print_device {
+ get {
+ return ResourceManager.GetString("Parallel_print_device", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition bigger than device, reducing....
+ ///
+ internal static string Partition_bigger_than_device_reducing {
+ get {
+ return ResourceManager.GetString("Partition_bigger_than_device_reducing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition's boot code is position independent..
+ ///
+ internal static string Partition_boot_code_is_position_independent {
+ get {
+ return ResourceManager.GetString("Partition_boot_code_is_position_independent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition entry is allocated..
+ ///
+ internal static string Partition_entry_is_allocated {
+ get {
+ return ResourceManager.GetString("Partition_entry_is_allocated", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition flags:.
+ ///
+ internal static string Partition_flags {
+ get {
+ return ResourceManager.GetString("Partition_flags", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition is bootable..
+ ///
+ internal static string Partition_is_bootable {
+ get {
+ return ResourceManager.GetString("Partition_is_bootable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition is in use..
+ ///
+ internal static string Partition_is_in_use {
+ get {
+ return ResourceManager.GetString("Partition_is_in_use", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition is readable..
+ ///
+ internal static string Partition_is_readable {
+ get {
+ return ResourceManager.GetString("Partition_is_readable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition is valid..
+ ///
+ internal static string Partition_is_valid {
+ get {
+ return ResourceManager.GetString("Partition_is_valid", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition is writable..
+ ///
+ internal static string Partition_is_writable {
+ get {
+ return ResourceManager.GetString("Partition_is_writable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition Magic.
+ ///
+ internal static string Partition_Magic {
+ get {
+ return ResourceManager.GetString("Partition_Magic", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Partition timestamped on {0}.
+ ///
+ internal static string Partition_timestamped_on_0 {
+ get {
+ return ResourceManager.GetString("Partition_timestamped_on_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PC-UX.
+ ///
+ internal static string PC_UX {
+ get {
+ return ResourceManager.GetString("PC_UX", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to NEC PC-9800 partition table.
+ ///
+ internal static string PC98_Name {
+ get {
+ return ResourceManager.GetString("PC98_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Plain dm-crypt.
+ ///
+ internal static string Plain_dm_crypt {
+ get {
+ return ResourceManager.GetString("Plain_dm_crypt", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Plan 9.
+ ///
+ internal static string Plan_9 {
+ get {
+ return ResourceManager.GetString("Plan_9", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Plan9 partition table.
+ ///
+ internal static string Plan9_Name {
+ get {
+ return ResourceManager.GetString("Plan9_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Possible magic at block {0} is 0x{1:X8}.
+ ///
+ internal static string Possible_magic_at_block_0_is_1_X8 {
+ get {
+ return ResourceManager.GetString("Possible_magic_at_block_0_is_1_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PowerPC PReP boot.
+ ///
+ internal static string PowerPC_PReP_boot {
+ get {
+ return ResourceManager.GetString("PowerPC_PReP_boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PReP Boot.
+ ///
+ internal static string PReP_Boot {
+ get {
+ return ResourceManager.GetString("PReP_Boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Priam EDISK.
+ ///
+ internal static string Priam_EDISK {
+ get {
+ return ResourceManager.GetString("Priam_EDISK", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Priam, EUMEL/Elan.
+ ///
+ internal static string Priam_EUMEL_Elan {
+ get {
+ return ResourceManager.GetString("Priam_EUMEL_Elan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Processor: {0}.
+ ///
+ internal static string Processor_0 {
+ get {
+ return ResourceManager.GetString("Processor_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ProfessionalFileSystem.
+ ///
+ internal static string ProfessionalFileSystem {
+ get {
+ return ResourceManager.GetString("ProfessionalFileSystem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Prologue.
+ ///
+ internal static string Prologue {
+ get {
+ return ResourceManager.GetString("Prologue", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PTS BootWizard.
+ ///
+ internal static string PTS_BootWizard {
+ get {
+ return ResourceManager.GetString("PTS_BootWizard", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PTS-DOS.
+ ///
+ internal static string PTS_DOS {
+ get {
+ return ResourceManager.GetString("PTS_DOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to QNX 4.
+ ///
+ internal static string QNX_4 {
+ get {
+ return ResourceManager.GetString("QNX_4", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to QNX 4, Oberon.
+ ///
+ internal static string QNX_4_Oberon {
+ get {
+ return ResourceManager.GetString("QNX_4_Oberon", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to QNX Power-safe (QNX6).
+ ///
+ internal static string QNX_Power_safe_QNX6 {
+ get {
+ return ResourceManager.GetString("QNX_Power_safe_QNX6", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RaidFrame partition.
+ ///
+ internal static string RaidFrame_partition {
+ get {
+ return ResourceManager.GetString("RaidFrame_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Raw data (swap).
+ ///
+ internal static string Raw_data_swap {
+ get {
+ return ResourceManager.GetString("Raw_data_swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Raw logical volume.
+ ///
+ internal static string Raw_logical_volume {
+ get {
+ return ResourceManager.GetString("Raw_logical_volume", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RAW partition.
+ ///
+ internal static string RAW_partition {
+ get {
+ return ResourceManager.GetString("RAW_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Read-only.
+ ///
+ internal static string Read_only {
+ get {
+ return ResourceManager.GetString("Read_only", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Replacement sectors.
+ ///
+ internal static string Replacement_sectors {
+ get {
+ return ResourceManager.GetString("Replacement_sectors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reserved.
+ ///
+ internal static string Reserved {
+ get {
+ return ResourceManager.GetString("Reserved", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reserved for SMI.
+ ///
+ internal static string Reserved_for_SMI {
+ get {
+ return ResourceManager.GetString("Reserved_for_SMI", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Rio Karma.
+ ///
+ internal static string Rio_Karma {
+ get {
+ return ResourceManager.GetString("Rio_Karma", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Rio Karma partitioning.
+ ///
+ internal static string RioKarma_Name {
+ get {
+ return ResourceManager.GetString("RioKarma_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to sanity at {0} is 0x{1:X8} (should be 0x{2:X8} or 0x{3:X8}).
+ ///
+ internal static string sanity_at_0_is_1_X8_should_be_2_X8_or_3_X8 {
+ get {
+ return ResourceManager.GetString("sanity_at_0_is_1_X8_should_be_2_X8_or_3_X8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Searching for VTOC on relative byte {0}.
+ ///
+ internal static string Searching_for_VTOC_on_relative_byte_0 {
+ get {
+ return ResourceManager.GetString("Searching_for_VTOC_on_relative_byte_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sector replacements.
+ ///
+ internal static string Sector_replacements {
+ get {
+ return ResourceManager.GetString("Sector_replacements", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Secure File System.
+ ///
+ internal static string Secure_File_System {
+ get {
+ return ResourceManager.GetString("Secure_File_System", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Security sectors.
+ ///
+ internal static string Security_sectors {
+ get {
+ return ResourceManager.GetString("Security_sectors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Serial.
+ ///
+ internal static string Serial_print_device {
+ get {
+ return ResourceManager.GetString("Serial_print_device", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SGI Disk Volume Header.
+ ///
+ internal static string SGI_Name {
+ get {
+ return ResourceManager.GetString("SGI_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SGI XVM.
+ ///
+ internal static string SGI_XVM {
+ get {
+ return ResourceManager.GetString("SGI_XVM", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SmartFileSystem v1.
+ ///
+ internal static string SmartFileSystem_v1 {
+ get {
+ return ResourceManager.GetString("SmartFileSystem_v1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SmartFileSystem v2.
+ ///
+ internal static string SmartFileSystem_v2 {
+ get {
+ return ResourceManager.GetString("SmartFileSystem_v2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris.
+ ///
+ internal static string Solaris {
+ get {
+ return ResourceManager.GetString("Solaris", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris Alternate sector.
+ ///
+ internal static string Solaris_Alternate_sector {
+ get {
+ return ResourceManager.GetString("Solaris_Alternate_sector", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris Backup.
+ ///
+ internal static string Solaris_Backup {
+ get {
+ return ResourceManager.GetString("Solaris_Backup", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris boot.
+ ///
+ internal static string Solaris_boot {
+ get {
+ return ResourceManager.GetString("Solaris_boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris /home.
+ ///
+ internal static string Solaris_home {
+ get {
+ return ResourceManager.GetString("Solaris_home", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris Reserved.
+ ///
+ internal static string Solaris_Reserved {
+ get {
+ return ResourceManager.GetString("Solaris_Reserved", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris Root.
+ ///
+ internal static string Solaris_Root {
+ get {
+ return ResourceManager.GetString("Solaris_Root", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris Swap.
+ ///
+ internal static string Solaris_Swap {
+ get {
+ return ResourceManager.GetString("Solaris_Swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris /usr or Apple ZFS.
+ ///
+ internal static string Solaris_usr_or_Apple_ZFS {
+ get {
+ return ResourceManager.GetString("Solaris_usr_or_Apple_ZFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Solaris /var.
+ ///
+ internal static string Solaris_var {
+ get {
+ return ResourceManager.GetString("Solaris_var", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sony boot.
+ ///
+ internal static string Sony_boot {
+ get {
+ return ResourceManager.GetString("Sony_boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Space optimized.
+ ///
+ internal static string Space_optimized {
+ get {
+ return ResourceManager.GetString("Space_optimized", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Space.
+ ///
+ internal static string Space_parity {
+ get {
+ return ResourceManager.GetString("Space_parity", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SpeedStor.
+ ///
+ internal static string SpeedStor {
+ get {
+ return ResourceManager.GetString("SpeedStor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SpeedStor, LANStep, PS/2 IML.
+ ///
+ internal static string SpeedStor_LANStep_PS2_IML {
+ get {
+ return ResourceManager.GetString("SpeedStor_LANStep_PS2_IML", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SpeedStor reserved.
+ ///
+ internal static string SpeedStor_reserved {
+ get {
+ return ResourceManager.GetString("SpeedStor_reserved", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Spryt*x.
+ ///
+ internal static string Sprytx {
+ get {
+ return ResourceManager.GetString("Sprytx", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun boot.
+ ///
+ internal static string Sun_boot {
+ get {
+ return ResourceManager.GetString("Sun_boot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun cachefs.
+ ///
+ internal static string Sun_cachefs {
+ get {
+ return ResourceManager.GetString("Sun_cachefs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun /home.
+ ///
+ internal static string Sun_home {
+ get {
+ return ResourceManager.GetString("Sun_home", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun /.
+ ///
+ internal static string Sun_root {
+ get {
+ return ResourceManager.GetString("Sun_root", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun /stand.
+ ///
+ internal static string Sun_stand {
+ get {
+ return ResourceManager.GetString("Sun_stand", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun swap.
+ ///
+ internal static string Sun_swap {
+ get {
+ return ResourceManager.GetString("Sun_swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun /usr.
+ ///
+ internal static string Sun_usr {
+ get {
+ return ResourceManager.GetString("Sun_usr", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun /var.
+ ///
+ internal static string Sun_var {
+ get {
+ return ResourceManager.GetString("Sun_var", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sun Disklabel.
+ ///
+ internal static string SunDisklabel_Name {
+ get {
+ return ResourceManager.GetString("SunDisklabel_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SunOS partition.
+ ///
+ internal static string SunOS_partition {
+ get {
+ return ResourceManager.GetString("SunOS_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to swap.
+ ///
+ internal static string swap {
+ get {
+ return ResourceManager.GetString("swap", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Swap partition.
+ ///
+ internal static string Swap_partition {
+ get {
+ return ResourceManager.GetString("Swap_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Swapping dk_label.
+ ///
+ internal static string Swapping_dk_label {
+ get {
+ return ResourceManager.GetString("Swapping_dk_label", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Swapping dk_label16.
+ ///
+ internal static string Swapping_dk_label16 {
+ get {
+ return ResourceManager.GetString("Swapping_dk_label16", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Swapping dk_label8.
+ ///
+ internal static string Swapping_dk_label8 {
+ get {
+ return ResourceManager.GetString("Swapping_dk_label8", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Syrinx.
+ ///
+ internal static string Syrinx {
+ get {
+ return ResourceManager.GetString("Syrinx", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to System cache.
+ ///
+ internal static string System_cache {
+ get {
+ return ResourceManager.GetString("System_cache", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to System volume.
+ ///
internal static string System_volume {
get {
return ResourceManager.GetString("System_volume", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to System volume 2.
+ ///
internal static string System_volume_2 {
get {
return ResourceManager.GetString("System_volume_2", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Tandy DOS.
+ ///
+ internal static string Tandy_DOS {
+ get {
+ return ResourceManager.GetString("Tandy_DOS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Theos.
+ ///
+ internal static string Theos {
+ get {
+ return ResourceManager.GetString("Theos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Time optimized.
+ ///
+ internal static string Time_optimized {
+ get {
+ return ResourceManager.GetString("Time_optimized", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Track replacements.
+ ///
+ internal static string Track_replacements {
+ get {
+ return ResourceManager.GetString("Track_replacements", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UDF.
+ ///
+ internal static string UDF {
+ get {
+ return ResourceManager.GetString("UDF", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX 6th Edition.
+ ///
+ internal static string UNIX_6th_Edition {
+ get {
+ return ResourceManager.GetString("UNIX_6th_Edition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX 7th Edition.
+ ///
+ internal static string UNIX_7th_Edition {
+ get {
+ return ResourceManager.GetString("UNIX_7th_Edition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX 7th Edition with 1K blocks.
+ ///
+ internal static string UNIX_7th_Edition_with_1K_blocks {
+ get {
+ return ResourceManager.GetString("UNIX_7th_Edition_with_1K_blocks", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX 8th Edition with 4K blocks.
+ ///
+ internal static string UNIX_8th_Edition_with_4K_blocks {
+ get {
+ return ResourceManager.GetString("UNIX_8th_Edition_with_4K_blocks", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX hardwired.
+ ///
+ internal static string UNIX_Name {
+ get {
+ return ResourceManager.GetString("UNIX_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX System V.
+ ///
+ internal static string UNIX_System_V {
+ get {
+ return ResourceManager.GetString("UNIX_System_V", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown Amiga DOS filesystem type {0}.
+ ///
+ internal static string Unknown_Amiga_DOS_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_Amiga_DOS_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown Amiga DOS multi-user filesystem type {0}.
+ ///
+ internal static string Unknown_Amiga_DOS_multi_user_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_Amiga_DOS_multi_user_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown Amiga UNIX filesystem type {0}.
+ ///
+ internal static string Unknown_Amiga_UNIX_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_Amiga_UNIX_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown.
+ ///
+ internal static string Unknown_boot_type {
+ get {
+ return ResourceManager.GetString("Unknown_boot_type", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown BSD filesystem type {0}.
+ ///
+ internal static string Unknown_BSD_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_BSD_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown.
+ ///
+ internal static string Unknown_disk_type {
+ get {
+ return ResourceManager.GetString("Unknown_disk_type", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown Linux filesystem type {0}.
+ ///
+ internal static string Unknown_Linux_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_Linux_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown NetBSD root filesystem type {0}.
+ ///
+ internal static string Unknown_NetBSD_root_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_NetBSD_root_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown NetBSD swap filesystem type {0}.
+ ///
+ internal static string Unknown_NetBSD_swap_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_NetBSD_swap_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown NetBSD user filesystem type {0}.
+ ///
+ internal static string Unknown_NetBSD_user_filesystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_NetBSD_user_filesystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown.
+ ///
+ internal static string Unknown_operating_system {
+ get {
+ return ResourceManager.GetString("Unknown_operating_system", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown optimization {0:X2}.
+ ///
+ internal static string Unknown_optimization_0_X2 {
+ get {
+ return ResourceManager.GetString("Unknown_optimization_0_X2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown.
+ ///
+ internal static string Unknown_parity_type {
+ get {
+ return ResourceManager.GetString("Unknown_parity_type", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown partition type.
+ ///
+ internal static string Unknown_partition_type {
+ get {
+ return ResourceManager.GetString("Unknown_partition_type", 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.
+ ///
+ internal static string Unknown_print_device {
+ get {
+ return ResourceManager.GetString("Unknown_print_device", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown ProfessionalFileSystem type {0}.
+ ///
+ internal static string Unknown_ProfessionalFileSystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_ProfessionalFileSystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown SmartFileSystem type {0}.
+ ///
+ internal static string Unknown_SmartFileSystem_type_0 {
+ get {
+ return ResourceManager.GetString("Unknown_SmartFileSystem_type_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unknown TAG: 0x{0:X4}.
+ ///
+ internal static string Unknown_TAG_0 {
+ get {
+ return ResourceManager.GetString("Unknown_TAG_0", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unmountable.
+ ///
+ internal static string Unmountable {
+ get {
+ return ResourceManager.GetString("Unmountable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unused.
+ ///
+ internal static string Unused {
+ get {
+ return ResourceManager.GetString("Unused", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Unused entry.
+ ///
+ internal static string Unused_entry {
+ get {
+ return ResourceManager.GetString("Unused_entry", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to user.
+ ///
+ internal static string user {
+ get {
+ return ResourceManager.GetString("user", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to (valid).
+ ///
+ internal static string valid {
+ get {
+ return ResourceManager.GetString("valid", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VENIX 80286.
+ ///
+ internal static string VENIX_80286 {
+ get {
+ return ResourceManager.GetString("VENIX_80286", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Veritas private.
+ ///
+ internal static string Veritas_private {
+ get {
+ return ResourceManager.GetString("Veritas_private", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Veritas public.
+ ///
+ internal static string Veritas_public {
+ get {
+ return ResourceManager.GetString("Veritas_public", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Vinum.
+ ///
+ internal static string Vinum {
+ get {
+ return ResourceManager.GetString("Vinum", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VMware Reserved.
+ ///
+ internal static string VMware_Reserved {
+ get {
+ return ResourceManager.GetString("VMware_Reserved", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VMware VMFS.
+ ///
+ internal static string VMware_VMFS {
+ get {
+ return ResourceManager.GetString("VMware_VMFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VMWare VMKCORE.
+ ///
+ internal static string VMWare_VMKCORE {
+ get {
+ return ResourceManager.GetString("VMWare_VMKCORE", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VMware vmkcore (coredump).
+ ///
+ internal static string VMware_vmkcore_coredump {
+ get {
+ return ResourceManager.GetString("VMware_vmkcore_coredump", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Volume header.
+ ///
+ internal static string Volume_header {
+ get {
+ return ResourceManager.GetString("Volume_header", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to volume mgt private partition.
+ ///
+ internal static string volume_mgt_private_partition {
+ get {
+ return ResourceManager.GetString("volume_mgt_private_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to volume mgt public partition.
+ ///
+ internal static string volume_mgt_public_partition {
+ get {
+ return ResourceManager.GetString("volume_mgt_public_partition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UNIX VTOC.
+ ///
+ internal static string VTOC_Name {
+ get {
+ return ResourceManager.GetString("VTOC_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to WARNING: End of partition goes beyond device size.
+ ///
+ internal static string WARNING_End_of_partition_goes_beyond_device_size {
+ get {
+ return ResourceManager.GetString("WARNING_End_of_partition_goes_beyond_device_size", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Whole device.
+ ///
+ internal static string Whole_device {
+ get {
+ return ResourceManager.GetString("Whole_device", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Whole disk.
+ ///
+ internal static string Whole_disk {
+ get {
+ return ResourceManager.GetString("Whole_disk", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Willowsoft Overture File System.
+ ///
+ internal static string Willowsoft_Overture_File_System {
+ get {
+ return ResourceManager.GetString("Willowsoft_Overture_File_System", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Willowtech Photon coS.
+ ///
+ internal static string Willowtech_Photon_coS {
+ get {
+ return ResourceManager.GetString("Willowtech_Photon_coS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Windows Recovery Environment.
+ ///
+ internal static string Windows_Recovery_Environment {
+ get {
+ return ResourceManager.GetString("Windows_Recovery_Environment", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Windows Storage Spaces.
+ ///
+ internal static string Windows_Storage_Spaces {
+ get {
+ return ResourceManager.GetString("Windows_Storage_Spaces", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Windows Volume Set.
+ ///
+ internal static string Windows_Volume_Set {
+ get {
+ return ResourceManager.GetString("Windows_Volume_Set", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Xbox backwards compatibility.
+ ///
internal static string Xbox_backwards_compatibility {
get {
return ResourceManager.GetString("Xbox_backwards_compatibility", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Xbox partitioning.
+ ///
+ internal static string Xbox_Name {
+ get {
+ return ResourceManager.GetString("Xbox_Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Xenix bad block.
+ ///
+ internal static string Xenix_bad_block {
+ get {
+ return ResourceManager.GetString("Xenix_bad_block", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to XENIX.
+ ///
internal static string XENIX_Name {
get {
return ResourceManager.GetString("XENIX_Name", resourceCulture);
}
}
+
+ ///
+ /// Looks up a localized string similar to XENIX root.
+ ///
+ internal static string XENIX_root {
+ get {
+ return ResourceManager.GetString("XENIX_root", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to XENIX /usr.
+ ///
+ internal static string XENIX_usr {
+ get {
+ return ResourceManager.GetString("XENIX_usr", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to XFS.
+ ///
+ internal static string XFS {
+ get {
+ return ResourceManager.GetString("XFS", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to XFS log device.
+ ///
+ internal static string XFS_log_device {
+ get {
+ return ResourceManager.GetString("XFS_log_device", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to XLV volume.
+ ///
+ internal static string XLV_volume {
+ get {
+ return ResourceManager.GetString("XLV_volume", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ZFS.
+ ///
+ internal static string ZFS {
+ get {
+ return ResourceManager.GetString("ZFS", resourceCulture);
+ }
+ }
}
}
diff --git a/Aaru.Partitions/Localization/Localization.resx b/Aaru.Partitions/Localization/Localization.resx
index b19ce01e4..970350759 100644
--- a/Aaru.Partitions/Localization/Localization.resx
+++ b/Aaru.Partitions/Localization/Localization.resx
@@ -1410,4 +1410,7 @@
XENIX
+
+ Filecore
+
\ No newline at end of file