diff --git a/Aaru.Partitions/APA.cs b/Aaru.Partitions/APA.cs new file mode 100644 index 000000000..90b39b84c --- /dev/null +++ b/Aaru.Partitions/APA.cs @@ -0,0 +1,336 @@ +// /*************************************************************************** +// Aaru Data Preservation Suite +// ---------------------------------------------------------------------------- +// +// Filename : APA.cs +// Author(s) : Natalia Portillo +// +// Component : Partitioning scheme plugins. +// +// --[ Description ] ---------------------------------------------------------- +// +// Manages PlayStation 2 APA partitions. +// +// --[ License ] -------------------------------------------------------------- +// +// This library is free software; you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; either version 2.1 of the +// License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, see . +// +// ---------------------------------------------------------------------------- +// Copyright © 2011-2026 Natalia Portillo +// ****************************************************************************/ + +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; +using System.Runtime.InteropServices; +using System.Text; +using Aaru.CommonTypes; +using Aaru.CommonTypes.Enums; +using Aaru.CommonTypes.Interfaces; +using Aaru.Logging; +using Marshal = Aaru.Helpers.Marshal; + +namespace Aaru.Partitions; + +/// +/// Implements decoding of PlayStation 2 APA partitions +[SuppressMessage("ReSharper", "UnusedMember.Local")] +public sealed class APA : IPartition +{ + const string MODULE_NAME = "APA partitioning plugin"; + + const uint APA_MAGIC = 0x00415041; // 'APA\0' + const int APA_HEADER_SIZE = 1024; // 2 sectors of 512 bytes + const int APA_IDMAX = 32; + const int APA_PASSMAX = 8; + const int APA_MAXSUB = 64; + const int APA_MBR_MAGIC_LEN = 32; + const int APA_NNAME = 128; + const uint APA_RESV_MAIN = 4 * 1024 * 1024 / 512; // 8192 sectors (4 MiB) + const uint APA_RESV_SUB = 4 * 1024 / 512; // 8 sectors (4 KiB) + const ushort APA_TYPE_FREE = 0x0000; + const ushort APA_TYPE_MBR = 0x0001; + const ushort APA_TYPE_EXT2SWAP = 0x0082; + const ushort APA_TYPE_EXT2 = 0x0083; + const ushort APA_TYPE_REISER = 0x0088; + const ushort APA_TYPE_PFS = 0x0100; + const ushort APA_TYPE_CFS = 0x0101; + const ushort APA_TYPE_HDL = 0x1337; + const ushort APA_FLAG_SUB = 0x0001; + + static readonly string _mbrMagic = "Sony Computer Entertainment Inc."; + +#region Nested type: ApaPs2Time + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + readonly struct ApaPs2Time + { + public readonly byte unused; + public readonly byte sec; + public readonly byte min; + public readonly byte hour; + public readonly byte day; + public readonly byte month; + public readonly ushort year; + } + +#endregion + +#region Nested type: ApaSub + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + readonly struct ApaSub + { + public readonly uint start; + public readonly uint length; + } + +#endregion + +#region Nested type: ApaMbr + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + readonly struct ApaMbr + { + [MarshalAs(UnmanagedType.ByValArray, SizeConst = APA_MBR_MAGIC_LEN)] + public readonly byte[] magic; + public readonly uint version; + public readonly uint nsector; + public readonly ApaPs2Time created; + public readonly uint osdStart; + public readonly uint osdSize; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 200)] + public readonly byte[] padding3; + } + +#endregion + +#region Nested type: ApaHeader + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + readonly struct ApaHeader + { + public readonly uint checksum; + public readonly uint magic; + public readonly uint next; + public readonly uint prev; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = APA_IDMAX)] + public readonly byte[] id; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = APA_PASSMAX)] + public readonly byte[] rpwd; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = APA_PASSMAX)] + public readonly byte[] fpwd; + public readonly uint start; + public readonly uint length; + public readonly ushort type; + public readonly ushort flags; + public readonly uint nsub; + public readonly ApaPs2Time created; + public readonly uint main; + public readonly uint number; + public readonly uint modver; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 7)] + public readonly uint[] padding1; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = APA_NNAME)] + public readonly byte[] name; + public readonly ApaMbr mbr; + [MarshalAs(UnmanagedType.ByValArray, SizeConst = APA_MAXSUB)] + public readonly ApaSub[] subs; + } + +#endregion + +#region IPartition Members + + /// + public string Name => Localization.APA_Name; + + /// + public Guid Id => new("B6A8B66B-B194-4E14-802F-B684D4B59B2F"); + + /// + public string Author => Authors.NATALIA_PORTILLO; + + /// + public bool GetInformation(IMediaImage imagePlugin, out List partitions, ulong sectorOffset) + { + partitions = []; + + // APA always starts at sector 0 + if(sectorOffset != 0) return false; + + // Need at least 2 sectors to read the MBR header + if(imagePlugin.Info.Sectors < 2) return false; + + // APA uses 512-byte sectors + if(imagePlugin.Info.SectorSize != 512) return false; + + // Read the MBR header (2 sectors = 1024 bytes) + ErrorNumber errno = imagePlugin.ReadSectors(0, false, 2, out byte[] sector, out _); + + if(errno != ErrorNumber.NoError || sector.Length < APA_HEADER_SIZE) return false; + + ApaHeader mbrHeader = Marshal.ByteArrayToStructureLittleEndian(sector); + + // Check APA magic + if(mbrHeader.magic != APA_MAGIC) + { + AaruLogging.Debug(MODULE_NAME, Localization.APA_magic_not_found); + + return false; + } + + // Verify checksum + if(!VerifyChecksum(sector)) + { + AaruLogging.Debug(MODULE_NAME, Localization.APA_invalid_checksum); + + return false; + } + + // Verify MBR magic string + string mbrMagicString = Encoding.ASCII.GetString(mbrHeader.mbr.magic, 0, APA_MBR_MAGIC_LEN).TrimEnd('\0'); + + if(mbrMagicString != _mbrMagic) + { + AaruLogging.Debug(MODULE_NAME, Localization.APA_MBR_magic_not_found); + + return false; + } + + AaruLogging.Debug(MODULE_NAME, Localization.APA_MBR_version_0, mbrHeader.mbr.version); + + AaruLogging.Debug(MODULE_NAME, Localization.APA_total_sectors_0, mbrHeader.mbr.nsector); + + // Traverse the linked list of partitions + ulong sequence = 0; + uint nextLba = mbrHeader.next; + var visited = new HashSet(); + + while(nextLba != 0) + { + // Prevent infinite loops from circular references + if(!visited.Add(nextLba)) + { + AaruLogging.Debug(MODULE_NAME, Localization.APA_circular_reference_at_sector_0, nextLba); + + break; + } + + // Sanity check + if(nextLba + 2 > imagePlugin.Info.Sectors) break; + + errno = imagePlugin.ReadSectors(nextLba, false, 2, out byte[] headerBytes, out _); + + if(errno != ErrorNumber.NoError) break; + + if(headerBytes.Length < APA_HEADER_SIZE) break; + + ApaHeader header = Marshal.ByteArrayToStructureLittleEndian(headerBytes); + + if(header.magic != APA_MAGIC) break; + + if(!VerifyChecksum(headerBytes)) + { + AaruLogging.Debug(MODULE_NAME, Localization.APA_invalid_checksum_at_sector_0, nextLba); + + break; + } + + // Skip free and MBR partitions + if(header.type != APA_TYPE_FREE && header.type != APA_TYPE_MBR) + { + string partId = Encoding.ASCII.GetString(header.id, 0, APA_IDMAX).TrimEnd('\0'); + string partName = Encoding.ASCII.GetString(header.name, 0, APA_NNAME).TrimEnd('\0'); + string typeName = TypeToString(header.type); + + if(string.IsNullOrEmpty(partName) && !string.IsNullOrEmpty(partId)) partName = partId; + + // Reserves 4 MiB (8192 sectors) at the start of main partitions, + // and 4 KiB (8 sectors) for sub-partitions. + uint dataStart = header.start + APA_RESV_MAIN; + uint dataLength = header.length - APA_RESV_MAIN; + + var part = new Partition + { + Start = dataStart, + Offset = (ulong)dataStart * imagePlugin.Info.SectorSize, + Length = dataLength, + Size = (ulong)dataLength * imagePlugin.Info.SectorSize, + Type = typeName, + Name = partName, + Sequence = sequence, + Scheme = Name + }; + + partitions.Add(part); + sequence++; + + // Add sub-partitions + for(uint i = 0; i < header.nsub && i < APA_MAXSUB; i++) + { + if(header.subs[i].length == 0) continue; + + uint subDataStart = header.subs[i].start + APA_RESV_SUB; + uint subDataLength = header.subs[i].length - APA_RESV_SUB; + + var sub = new Partition + { + Start = subDataStart, + Offset = (ulong)subDataStart * imagePlugin.Info.SectorSize, + Length = subDataLength, + Size = (ulong)subDataLength * imagePlugin.Info.SectorSize, + Type = typeName, + Name = string.Format(Localization.APA_sub_partition_0_of_1, i, partId), + Sequence = sequence, + Scheme = Name + }; + + partitions.Add(sub); + sequence++; + } + } + + nextLba = header.next; + } + + return partitions.Count > 0; + } + +#endregion + + static bool VerifyChecksum(byte[] headerBytes) + { + // Checksum is at offset 0 (first u32) + // Sum all u32 words from offset 4 to end of header (words 1-255) + var storedChecksum = BitConverter.ToUInt32(headerBytes, 0); + uint calculatedSum = 0; + + for(var i = 1; i < 256; i++) calculatedSum += BitConverter.ToUInt32(headerBytes, i * 4); + + return storedChecksum == calculatedSum; + } + + static string TypeToString(ushort type) => type switch + { + APA_TYPE_MBR => Localization.APA_type_MBR, + APA_TYPE_EXT2SWAP => Localization.APA_type_EXT2_swap, + APA_TYPE_EXT2 => Localization.APA_type_EXT2, + APA_TYPE_REISER => Localization.APA_type_ReiserFS, + APA_TYPE_PFS => Localization.APA_type_PFS, + APA_TYPE_CFS => Localization.APA_type_CFS, + APA_TYPE_HDL => Localization.APA_type_HDLoader, + _ => string.Format(Localization.APA_type_unknown_0, type) + }; +} \ No newline at end of file diff --git a/Aaru.Partitions/Localization/Localization.Designer.cs b/Aaru.Partitions/Localization/Localization.Designer.cs index 113c9f1a2..2d0b81c6f 100644 --- a/Aaru.Partitions/Localization/Localization.Designer.cs +++ b/Aaru.Partitions/Localization/Localization.Designer.cs @@ -11,46 +11,32 @@ namespace Aaru.Partitions { using System; - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Localization { - private static global::System.Resources.ResourceManager resourceMan; + private static System.Resources.ResourceManager resourceMan; - private static global::System.Globalization.CultureInfo resourceCulture; + private static System.Globalization.CultureInfo resourceCulture; - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Localization() { } - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aaru.Partitions.Localization.Localization", typeof(Localization).Assembly); + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aaru.Partitions.Localization.Localization", typeof(Localization).Assembly); resourceMan = temp; } return resourceMan; } } - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -59,4179 +45,2889 @@ namespace Aaru.Partitions { } } - /// - /// 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); - } - } - - /// - /// 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); - } - } - - /// - /// 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("_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); - } - } - - /// - /// Looks up a localized string similar to 4.4LFS. - /// - internal static string _4_4_LFS { - get { - 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); - } - } - - /// - /// 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 Acorn FileCore partitions. - /// internal static string Acorn_Name { get { 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); - } - } - - /// - /// 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); - } - } - - /// - /// Looks up a localized string similar to Cannot find VTOC.. - /// - internal static string Cannot_find_VTOC { - get { - return ResourceManager.GetString("Cannot_find_VTOC", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ceph disk in creation. - /// - internal static string Ceph_disk_in_creation { - get { - return ResourceManager.GetString("Ceph_disk_in_creation", resourceCulture); - } - } - - /// - /// 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("Ceph_dm_crypt_disk_in_creation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ceph dm-crypt Encrypted Journal. - /// - internal static string Ceph_dm_crypt_Encrypted_Journal { - get { - return ResourceManager.GetString("Ceph_dm_crypt_Encrypted_Journal", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ceph dm-crypt OSD. - /// - internal static string Ceph_dm_crypt_OSD { - get { - return ResourceManager.GetString("Ceph_dm_crypt_OSD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ceph Journal. - /// - internal static string Ceph_Journal { - get { - 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); - } - } - - /// - /// Looks up a localized string similar to data. - /// - internal static string data { - get { - return ResourceManager.GetString("data", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Data volume. - /// - internal static string Data_volume { - get { - return ResourceManager.GetString("Data_volume", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DEC disklabel. - /// - internal static string DEC_Name { - get { - 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 DragonFly BSD CCD. - /// - internal static string DragonflyBSD_CCD { - get { - return ResourceManager.GetString("DragonflyBSD_CCD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DragonFly BSD Hammer. - /// - internal static string DragonflyBSD_Hammer { - get { - return ResourceManager.GetString("DragonflyBSD_Hammer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DragonFly BSD Hammer2. - /// - internal static string DragonflyBSD_Hammer2 { - get { - return ResourceManager.GetString("DragonflyBSD_Hammer2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DragonFly BSD Label. - /// - internal static string DragonflyBSD_Label { - get { - return ResourceManager.GetString("DragonflyBSD_Label", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DragonFly BSD 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 DragonFly BSD Swap. - /// - internal static string DragonflyBSD_Swap { - get { - return ResourceManager.GetString("DragonflyBSD_Swap", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DragonFly BSD UFS. - /// - internal static string DragonflyBSD_UFS { - get { - return ResourceManager.GetString("DragonflyBSD_UFS", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to DragonFly BSD 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 { + internal static string Found_aligned_entry { get { - return ResourceManager.GetString("Found_PartitionEntry_block", resourceCulture); + return ResourceManager.GetString("Found_aligned_entry", 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_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); } } - /// - /// Looks up a localized string similar to Partition Magic. - /// - internal static string Partition_Magic { + internal static string First_boot_sector_0 { get { - return ResourceManager.GetString("Partition_Magic", resourceCulture); + return ResourceManager.GetString("First_boot_sector_0", resourceCulture); } } - /// - /// Looks up a localized string similar to Partition timestamped on {0}. - /// - internal static string Partition_timestamped_on_0 { + internal static string Boot_is_0_bytes { get { - return ResourceManager.GetString("Partition_timestamped_on_0", resourceCulture); + return ResourceManager.GetString("Boot_is_0_bytes", resourceCulture); } } - /// - /// Looks up a localized string similar to PC-UX. - /// - internal static string PC_UX { + internal static string Boot_load_address_0_X8 { get { - return ResourceManager.GetString("PC_UX", resourceCulture); + return ResourceManager.GetString("Boot_load_address_0_X8", resourceCulture); } } - /// - /// Looks up a localized string similar to NEC PC-9800 partition table. - /// - internal static string PC98_Name { + internal static string Boot_entry_point_0_X8 { get { - return ResourceManager.GetString("PC98_Name", resourceCulture); + return ResourceManager.GetString("Boot_entry_point_0_X8", resourceCulture); } } - /// - /// Looks up a localized string similar to Plain dm-crypt. - /// - internal static string Plain_dm_crypt { + internal static string Boot_code_checksum_0_X8 { get { - return ResourceManager.GetString("Plain_dm_crypt", resourceCulture); + return ResourceManager.GetString("Boot_code_checksum_0_X8", 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 { + internal static string Partition_boot_code_is_position_independent { get { - return ResourceManager.GetString("ProfessionalFileSystem", resourceCulture); + return ResourceManager.GetString("Partition_boot_code_is_position_independent", resourceCulture); } } - /// - /// Looks up a localized string similar to Prologue. - /// - internal static string Prologue { + internal static string Cutting_last_partition_end_0_to_media_size_1 { get { - return ResourceManager.GetString("Prologue", resourceCulture); + return ResourceManager.GetString("Cutting_last_partition_end_0_to_media_size_1", resourceCulture); } } - /// - /// Looks up a localized string similar to PTS BootWizard. - /// - internal static string PTS_BootWizard { + internal static string Not_adding_partition_because_start_0_is_outside_media_size_1 { get { - return ResourceManager.GetString("PTS_BootWizard", resourceCulture); + return ResourceManager.GetString("Not_adding_partition_because_start_0_is_outside_media_size_1", resourceCulture); } } - /// - /// Looks up a localized string similar to PTS-DOS. - /// - internal static string PTS_DOS { + internal static string Apricot_Name { get { - return ResourceManager.GetString("PTS_DOS", resourceCulture); + return ResourceManager.GetString("Apricot_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to QNX 4. - /// - internal static string QNX_4 { + internal static string Non_bootable { get { - return ResourceManager.GetString("QNX_4", resourceCulture); + return ResourceManager.GetString("Non_bootable", resourceCulture); } } - /// - /// Looks up a localized string similar to QNX 4, Oberon. - /// - internal static string QNX_4_Oberon { + internal static string Apricot_XI_RAM_BIOS { get { - return ResourceManager.GetString("QNX_4_Oberon", resourceCulture); + return ResourceManager.GetString("Apricot_XI_RAM_BIOS", resourceCulture); } } - /// - /// Looks up a localized string similar to QNX Power-safe (QNX6). - /// - internal static string QNX_Power_safe_QNX6 { + internal static string Generic_ROM_BIOS { get { - return ResourceManager.GetString("QNX_Power_safe_QNX6", resourceCulture); + return ResourceManager.GetString("Generic_ROM_BIOS", resourceCulture); } } - /// - /// Looks up a localized string similar to RaidFrame partition. - /// - internal static string RaidFrame_partition { + internal static string Apricot_XI_ROM_BIOS { get { - return ResourceManager.GetString("RaidFrame_partition", resourceCulture); + return ResourceManager.GetString("Apricot_XI_ROM_BIOS", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw data (swap). - /// - internal static string Raw_data_swap { + internal static string Apricot_Portable_ROM_BIOS { get { - return ResourceManager.GetString("Raw_data_swap", resourceCulture); + return ResourceManager.GetString("Apricot_Portable_ROM_BIOS", resourceCulture); } } - /// - /// Looks up a localized string similar to Raw logical volume. - /// - internal static string Raw_logical_volume { + internal static string Apricot_F1_ROM_BIOS { get { - return ResourceManager.GetString("Raw_logical_volume", resourceCulture); + return ResourceManager.GetString("Apricot_F1_ROM_BIOS", resourceCulture); } } - /// - /// Looks up a localized string similar to RAW partition. - /// - internal static string RAW_partition { + internal static string MF1DD_70_track { get { - return ResourceManager.GetString("RAW_partition", resourceCulture); + return ResourceManager.GetString("MF1DD_70_track", resourceCulture); } } - /// - /// Looks up a localized string similar to Read-only. - /// - internal static string Read_only { + internal static string Invalid_operating_system { get { - return ResourceManager.GetString("Read_only", resourceCulture); + return ResourceManager.GetString("Invalid_operating_system", resourceCulture); } } - /// - /// Looks up a localized string similar to Replacement sectors. - /// - internal static string Replacement_sectors { + internal static string None_parity { get { - return ResourceManager.GetString("Replacement_sectors", resourceCulture); + return ResourceManager.GetString("None_parity", resourceCulture); } } - /// - /// Looks up a localized string similar to Reserved. - /// - internal static string Reserved { + internal static string Odd_parity { get { - return ResourceManager.GetString("Reserved", resourceCulture); + return ResourceManager.GetString("Odd_parity", resourceCulture); } } - /// - /// Looks up a localized string similar to Reserved for SMI. - /// - internal static string Reserved_for_SMI { + internal static string Even_parity { get { - return ResourceManager.GetString("Reserved_for_SMI", resourceCulture); + return ResourceManager.GetString("Even_parity", resourceCulture); } } - /// - /// Looks up a localized string similar to Rio Karma. - /// - internal static string Rio_Karma { + internal static string Mark_parity { get { - return ResourceManager.GetString("Rio_Karma", resourceCulture); + return ResourceManager.GetString("Mark_parity", 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 { + internal static string Parallel_print_device { get { - return ResourceManager.GetString("SpeedStor", resourceCulture); + return ResourceManager.GetString("Parallel_print_device", resourceCulture); } } - /// - /// Looks up a localized string similar to SpeedStor, LANStep, PS/2 IML. - /// - internal static string SpeedStor_LANStep_PS2_IML { + internal static string Serial_print_device { get { - return ResourceManager.GetString("SpeedStor_LANStep_PS2_IML", resourceCulture); + return ResourceManager.GetString("Serial_print_device", 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 { + internal static string Unknown_boot_type { get { - return ResourceManager.GetString("Unknown_optimization_0_X2", resourceCulture); + return ResourceManager.GetString("Unknown_boot_type", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown. - /// - internal static string Unknown_parity_type { + internal static string Unknown_disk_type { get { - return ResourceManager.GetString("Unknown_parity_type", resourceCulture); + return ResourceManager.GetString("Unknown_disk_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 { + internal static string Unknown_parity_type { get { - return ResourceManager.GetString("Unknown_ProfessionalFileSystem_type_0", resourceCulture); + return ResourceManager.GetString("Unknown_parity_type", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown SmartFileSystem type {0}. - /// - internal static string Unknown_SmartFileSystem_type_0 { + internal static string AtariPartitions_Name { get { - return ResourceManager.GetString("Unknown_SmartFileSystem_type_0", resourceCulture); + return ResourceManager.GetString("AtariPartitions_Name", resourceCulture); } } - /// - /// Looks up a localized string similar to Unknown TAG: 0x{0:X4}. - /// - internal static string Unknown_TAG_0 { + internal static string Boot_code_SHA1_0 { get { - return ResourceManager.GetString("Unknown_TAG_0", resourceCulture); + return ResourceManager.GetString("Boot_code_SHA1_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 { + internal static string Atari_GEMDOS_partition { get { - return ResourceManager.GetString("Whole_device", resourceCulture); + return ResourceManager.GetString("Atari_GEMDOS_partition", resourceCulture); } } - /// - /// Looks up a localized string similar to Whole disk. - /// - internal static string Whole_disk { + internal static string Atari_GEMDOS_partition_bigger_than_32_MiB { get { - return ResourceManager.GetString("Whole_disk", resourceCulture); + return ResourceManager.GetString("Atari_GEMDOS_partition_bigger_than_32_MiB", resourceCulture); } } - /// - /// Looks up a localized string similar to Willowsoft Overture File System. - /// - internal static string Willowsoft_Overture_File_System { + internal static string Linux_partition { get { - return ResourceManager.GetString("Willowsoft_Overture_File_System", resourceCulture); + return ResourceManager.GetString("Linux_partition", resourceCulture); } } - /// - /// Looks up a localized string similar to Willowtech Photon coS. - /// - internal static string Willowtech_Photon_coS { + internal static string Swap_partition { get { - return ResourceManager.GetString("Willowtech_Photon_coS", resourceCulture); + 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); } } - /// - /// 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 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); } } - /// - /// Looks up a localized string similar to Windows Volume Set. - /// - internal static string Windows_Volume_Set { + internal static string HP_UX_Data { get { - return ResourceManager.GetString("Windows_Volume_Set", resourceCulture); + return ResourceManager.GetString("HP_UX_Data", resourceCulture); } } - /// - /// Looks up a localized string similar to Xbox backwards compatibility. - /// - internal static string Xbox_backwards_compatibility { + internal static string HP_UX_Service { get { - return ResourceManager.GetString("Xbox_backwards_compatibility", resourceCulture); + return ResourceManager.GetString("HP_UX_Service", resourceCulture); } } - /// - /// Looks up a localized string similar to Xbox partitioning. - /// - internal static string Xbox_Name { + internal static string Linux_filesystem { get { - return ResourceManager.GetString("Xbox_Name", resourceCulture); + return ResourceManager.GetString("Linux_filesystem", resourceCulture); } } - /// - /// Looks up a localized string similar to XENIX bad block. - /// - internal static string Xenix_bad_block { + internal static string Linux_RAID { get { - return ResourceManager.GetString("Xenix_bad_block", resourceCulture); + return ResourceManager.GetString("Linux_RAID", resourceCulture); } } - /// - /// Looks up a localized string similar to XENIX. - /// - internal static string XENIX_Name { + internal static string Linux_Root_x86 { get { - return ResourceManager.GetString("XENIX_Name", resourceCulture); + 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); } } - /// - /// 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 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); + } + } + + internal static string _0_bytes_per_block { + get { + return ResourceManager.GetString("_0_bytes_per_block", resourceCulture); + } + } + + 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); + } + } + + internal static string _0_bytes_per_inode { + get { + return ResourceManager.GetString("_0_bytes_per_inode", resourceCulture); + } + } + + 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 { + 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); + } + } + + 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 { + 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); } } - /// - /// 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 { + internal static string SGI_XVM { get { - return ResourceManager.GetString("ZFS", resourceCulture); + 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); + } + } + + internal static string _read_only_ { + get { + return ResourceManager.GetString("_read_only_", resourceCulture); + } + } + + internal static string created_on_0 { + get { + return ResourceManager.GetString("created_on_0", resourceCulture); + } + } + + internal static string Unused { + get { + return ResourceManager.GetString("Unused", resourceCulture); + } + } + + 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); + } + } + + internal static string Alternate_sector_track { + get { + return ResourceManager.GetString("Alternate_sector_track", resourceCulture); + } + } + + internal static string Cache { + get { + return ResourceManager.GetString("Cache", resourceCulture); + } + } + + internal static string Reserved { + get { + return ResourceManager.GetString("Reserved", resourceCulture); + } + } + + internal static string dump { + get { + return ResourceManager.GetString("dump", resourceCulture); + } + } + + internal static string volume_mgt_public_partition { + get { + return ResourceManager.GetString("volume_mgt_public_partition", resourceCulture); + } + } + + internal static string volume_mgt_private_partition { + get { + return ResourceManager.GetString("volume_mgt_private_partition", resourceCulture); + } + } + + internal static string Unknown_TAG_0 { + get { + return ResourceManager.GetString("Unknown_TAG_0", resourceCulture); + } + } + + internal static string Xbox_Name { + get { + return ResourceManager.GetString("Xbox_Name", resourceCulture); + } + } + + internal static string Content_volume { + get { + return ResourceManager.GetString("Content_volume", resourceCulture); + } + } + + internal static string Dashboard_volume { + get { + return ResourceManager.GetString("Dashboard_volume", resourceCulture); + } + } + + internal static string System_cache { + get { + return ResourceManager.GetString("System_cache", resourceCulture); + } + } + + internal static string Data_volume { + get { + return ResourceManager.GetString("Data_volume", resourceCulture); + } + } + + internal static string Security_sectors { + get { + return ResourceManager.GetString("Security_sectors", resourceCulture); + } + } + + internal static string Game_cache { + get { + return ResourceManager.GetString("Game_cache", resourceCulture); + } + } + + internal static string System_volume { + get { + return ResourceManager.GetString("System_volume", resourceCulture); + } + } + + internal static string System_volume_2 { + get { + return ResourceManager.GetString("System_volume_2", resourceCulture); + } + } + + internal static string Xbox_backwards_compatibility { + get { + return ResourceManager.GetString("Xbox_backwards_compatibility", resourceCulture); + } + } + + internal static string XENIX_Name { + get { + return ResourceManager.GetString("XENIX_Name", resourceCulture); + } + } + + internal static string Filecore { + get { + return ResourceManager.GetString("Filecore", resourceCulture); + } + } + + internal static string APA_Name { + get { + return ResourceManager.GetString("APA_Name", resourceCulture); + } + } + + internal static string APA_magic_not_found { + get { + return ResourceManager.GetString("APA_magic_not_found", resourceCulture); + } + } + + internal static string APA_invalid_checksum { + get { + return ResourceManager.GetString("APA_invalid_checksum", resourceCulture); + } + } + + internal static string APA_MBR_magic_not_found { + get { + return ResourceManager.GetString("APA_MBR_magic_not_found", resourceCulture); + } + } + + internal static string APA_MBR_version_0 { + get { + return ResourceManager.GetString("APA_MBR_version_0", resourceCulture); + } + } + + internal static string APA_total_sectors_0 { + get { + return ResourceManager.GetString("APA_total_sectors_0", resourceCulture); + } + } + + internal static string APA_circular_reference_at_sector_0 { + get { + return ResourceManager.GetString("APA_circular_reference_at_sector_0", resourceCulture); + } + } + + internal static string APA_invalid_checksum_at_sector_0 { + get { + return ResourceManager.GetString("APA_invalid_checksum_at_sector_0", resourceCulture); + } + } + + internal static string APA_sub_partition_0_of_1 { + get { + return ResourceManager.GetString("APA_sub_partition_0_of_1", resourceCulture); + } + } + + internal static string APA_type_MBR { + get { + return ResourceManager.GetString("APA_type_MBR", resourceCulture); + } + } + + internal static string APA_type_EXT2_swap { + get { + return ResourceManager.GetString("APA_type_EXT2_swap", resourceCulture); + } + } + + internal static string APA_type_EXT2 { + get { + return ResourceManager.GetString("APA_type_EXT2", resourceCulture); + } + } + + internal static string APA_type_ReiserFS { + get { + return ResourceManager.GetString("APA_type_ReiserFS", resourceCulture); + } + } + + internal static string APA_type_PFS { + get { + return ResourceManager.GetString("APA_type_PFS", resourceCulture); + } + } + + internal static string APA_type_CFS { + get { + return ResourceManager.GetString("APA_type_CFS", resourceCulture); + } + } + + internal static string APA_type_HDLoader { + get { + return ResourceManager.GetString("APA_type_HDLoader", resourceCulture); + } + } + + internal static string APA_type_unknown_0 { + get { + return ResourceManager.GetString("APA_type_unknown_0", resourceCulture); } } } diff --git a/Aaru.Partitions/Localization/Localization.es.resx b/Aaru.Partitions/Localization/Localization.es.resx index c4f5a04e1..cd07295d4 100644 --- a/Aaru.Partitions/Localization/Localization.es.resx +++ b/Aaru.Partitions/Localization/Localization.es.resx @@ -1408,4 +1408,55 @@ (no montable) + + PlayStation 2 APA + + + No se encontró la firma mágica de APA + + + La cabecera APA tiene una suma de verificación inválida + + + No se encontró la cadena mágica del MBR de APA + + + Versión del MBR de APA: {0} + + + Sectores totales de APA: {0} + + + Referencia circular de APA detectada en el sector {0} + + + Suma de verificación inválida de APA en el sector {0} + + + Sub-partición {0} de {1} + + + Registro de arranque maestro + + + Intercambio Linux EXT2 + + + Linux EXT2 + + + ReiserFS + + + Sistema de ficheros PlayStation (PFS) + + + CFS + + + HDLoader + + + Tipo desconocido 0x{0:X4} + \ No newline at end of file diff --git a/Aaru.Partitions/Localization/Localization.resx b/Aaru.Partitions/Localization/Localization.resx index 21f92dbff..e1bccc3d6 100644 --- a/Aaru.Partitions/Localization/Localization.resx +++ b/Aaru.Partitions/Localization/Localization.resx @@ -1415,4 +1415,55 @@ FileCore + + PlayStation 2 APA + + + APA magic not found + + + APA header has invalid checksum + + + APA MBR magic string not found + + + APA MBR version: {0} + + + APA total sectors: {0} + + + APA circular reference detected at sector {0} + + + APA invalid checksum at sector {0} + + + Sub-partition {0} of {1} + + + Master Boot Record + + + Linux EXT2 swap + + + Linux EXT2 + + + ReiserFS + + + PlayStation File System (PFS) + + + CFS + + + HDLoader + + + Unknown type 0x{0:X4} + \ No newline at end of file diff --git a/README.md b/README.md index 83c18db9c..0e5ed3848 100644 --- a/README.md +++ b/README.md @@ -171,6 +171,7 @@ Supported partitioning schemes * Acorn Linux and RISCiX partitions * ACT Apricot partitions * Amiga Rigid Disk Block (RDB) +* APA (Sony PlayStation 2 partitions) * Apple Partition Map * Atari AHDI and ICDPro * BSD disklabels