mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-04-05 21:44:17 +00:00
Rename FFS to UFS.
This commit is contained in:
@@ -64,6 +64,7 @@
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=sysv/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=ucsdpascal/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=udf/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=ufs/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=unicos/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=unixbfs/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=vmfs/@EntryIndexedValue">True</s:Boolean>
|
||||
|
||||
2568
Aaru.Filesystems/Localization/Localization.Designer.cs
generated
2568
Aaru.Filesystems/Localization/Localization.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -843,8 +843,8 @@
|
||||
<data name="FAT_Plus" xml:space="preserve">
|
||||
<value>FAT+</value>
|
||||
</data>
|
||||
<data name="FFSPlugin_Name" xml:space="preserve">
|
||||
<value>Sistema de Ficheros Rápido de BSD (o Sistema de Ficheros de UNIX, UFS)</value>
|
||||
<data name="UFSPlugin_Name" xml:space="preserve">
|
||||
<value>Sistema de Ficheros de UNIX</value>
|
||||
</data>
|
||||
<data name="Filesystem_contains_0_big_blocks_1_bytes" xml:space="preserve">
|
||||
<value>El sistema de ficheros contiene {0} "bloques grandes" ({1} bytes)</value>
|
||||
|
||||
@@ -2070,8 +2070,8 @@
|
||||
<data name="Volume_created_on_kernel_version_0" xml:space="preserve">
|
||||
<value>Volume created on kernel version: {0}</value>
|
||||
</data>
|
||||
<data name="FFSPlugin_Name" xml:space="preserve">
|
||||
<value>BSD Fast File System (aka UNIX File System, UFS)</value>
|
||||
<data name="UFSPlugin_Name" xml:space="preserve">
|
||||
<value>BSD UNIX File System</value>
|
||||
</data>
|
||||
<data name="Not_a_UFS_filesystem_I_shouldnt_have_arrived_here" xml:space="preserve">
|
||||
<value>Not a UFS filesystem, I shouldn't have arrived here!</value>
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace Aaru.Filesystems;
|
||||
/// <inheritdoc />
|
||||
/// <summary>Implements detection of BSD Fast File System (FFS, aka UNIX File System)</summary>
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public sealed partial class FFSPlugin
|
||||
public sealed partial class UFSPlugin
|
||||
{
|
||||
const uint block_size = 8192;
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ namespace Aaru.Filesystems;
|
||||
/// <inheritdoc />
|
||||
/// <summary>Implements detection of BSD Fast File System (FFS, aka UNIX File System)</summary>
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public sealed partial class FFSPlugin
|
||||
public sealed partial class UFSPlugin
|
||||
{
|
||||
#region IFilesystem Members
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace Aaru.Filesystems;
|
||||
/// <inheritdoc />
|
||||
/// <summary>Implements detection of BSD Fast File System (FFS, aka UNIX File System)</summary>
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public sealed partial class FFSPlugin
|
||||
public sealed partial class UFSPlugin
|
||||
{
|
||||
#region Nested type: Checksum
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Aaru Data Preservation Suite
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : FFS.cs
|
||||
// Filename : UFS.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : BSD Fast File System plugin.
|
||||
@@ -36,14 +36,14 @@ namespace Aaru.Filesystems;
|
||||
/// <inheritdoc />
|
||||
/// <summary>Implements detection of BSD Fast File System (FFS, aka UNIX File System)</summary>
|
||||
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||||
public sealed partial class FFSPlugin : IFilesystem
|
||||
public sealed partial class UFSPlugin : IFilesystem
|
||||
{
|
||||
const string MODULE_NAME = "FFS plugin";
|
||||
const string MODULE_NAME = "UFS plugin";
|
||||
|
||||
#region IFilesystem Members
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Name => Localization.FFSPlugin_Name;
|
||||
public string Name => Localization.UFSPlugin_Name;
|
||||
|
||||
/// <inheritdoc />
|
||||
public Guid Id => new("CC90D342-05DB-48A8-988C-C1FE000034A3");
|
||||
@@ -38,7 +38,7 @@ namespace Aaru.Tests.Filesystems.UFS;
|
||||
public class APM : FilesystemTest
|
||||
{
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "UNIX filesystem (APM)");
|
||||
public override IFilesystem Plugin => new FFSPlugin();
|
||||
public override IFilesystem Plugin => new UFSPlugin();
|
||||
public override bool Partitions => true;
|
||||
|
||||
public override FileSystemTest[] Tests =>
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace Aaru.Tests.Filesystems.UFS;
|
||||
public class MBR : FilesystemTest
|
||||
{
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "UNIX filesystem (MBR)");
|
||||
public override IFilesystem Plugin => new FFSPlugin();
|
||||
public override IFilesystem Plugin => new UFSPlugin();
|
||||
public override bool Partitions => true;
|
||||
|
||||
public override FileSystemTest[] Tests =>
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace Aaru.Tests.Filesystems.UFS;
|
||||
public class NeXT : FilesystemTest
|
||||
{
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "UNIX filesystem (NeXT)");
|
||||
public override IFilesystem Plugin => new FFSPlugin();
|
||||
public override IFilesystem Plugin => new UFSPlugin();
|
||||
public override bool Partitions => true;
|
||||
|
||||
public override FileSystemTest[] Tests =>
|
||||
|
||||
@@ -40,7 +40,7 @@ namespace Aaru.Tests.Filesystems.UFS;
|
||||
public class NeXT_Floppy : FilesystemTest
|
||||
{
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "UNIX filesystem (NeXT)");
|
||||
public override IFilesystem Plugin => new FFSPlugin();
|
||||
public override IFilesystem Plugin => new UFSPlugin();
|
||||
public override bool Partitions => true;
|
||||
|
||||
public override FileSystemTest[] Tests =>
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace Aaru.Tests.Filesystems.UFS;
|
||||
public class RDB : FilesystemTest
|
||||
{
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "UNIX filesystem (RDB)");
|
||||
public override IFilesystem Plugin => new FFSPlugin();
|
||||
public override IFilesystem Plugin => new UFSPlugin();
|
||||
public override bool Partitions => true;
|
||||
|
||||
public override FileSystemTest[] Tests =>
|
||||
|
||||
@@ -42,7 +42,7 @@ public class Sun_i86 : FilesystemTest
|
||||
public override string DataFolder =>
|
||||
Path.Combine(Consts.TestFilesRoot, "Filesystems", "UNIX filesystem (SunOS x86)");
|
||||
|
||||
public override IFilesystem Plugin => new FFSPlugin();
|
||||
public override IFilesystem Plugin => new UFSPlugin();
|
||||
public override bool Partitions => true;
|
||||
|
||||
public override FileSystemTest[] Tests =>
|
||||
|
||||
@@ -39,7 +39,7 @@ public class Whole : FilesystemTest
|
||||
{
|
||||
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "UNIX filesystem");
|
||||
|
||||
public override IFilesystem Plugin => new FFSPlugin();
|
||||
public override IFilesystem Plugin => new UFSPlugin();
|
||||
public override bool Partitions => false;
|
||||
|
||||
public override FileSystemTest[] Tests =>
|
||||
|
||||
Reference in New Issue
Block a user