diff --git a/Filtration.ObjectModel/BlockItemBaseTypes/BooleanBlockItem.cs b/Filtration.ObjectModel/BlockItemBaseTypes/BooleanBlockItem.cs index 780ea13..2424943 100644 --- a/Filtration.ObjectModel/BlockItemBaseTypes/BooleanBlockItem.cs +++ b/Filtration.ObjectModel/BlockItemBaseTypes/BooleanBlockItem.cs @@ -27,7 +27,7 @@ } public override string OutputText => PrefixText + " " + BooleanValue; - public override string SummaryText => PrefixText + " = " + BooleanValue; + public override string SummaryText => DisplayHeading + " = " + BooleanValue; public override int MaximumAllowed => 1; public void ToggleValue() diff --git a/Filtration.ObjectModel/BlockItemTypes/BaseTypeBlockItem.cs b/Filtration.ObjectModel/BlockItemTypes/BaseTypeBlockItem.cs index 1107f6d..35336b5 100644 --- a/Filtration.ObjectModel/BlockItemTypes/BaseTypeBlockItem.cs +++ b/Filtration.ObjectModel/BlockItemTypes/BaseTypeBlockItem.cs @@ -16,18 +16,18 @@ namespace Filtration.ObjectModel.BlockItemTypes { if (Items.Count > 0 && Items.Count < 4) { - return "Item Base Types: " + + return "Base Types: " + Items.Aggregate(string.Empty, (current, i) => current + i + ", ").TrimEnd(' ').TrimEnd(','); } if (Items.Count >= 4) { var remaining = Items.Count - 3; - return "Item Base Types: " + Items.Take(3) + return "Base Types: " + Items.Take(3) .Aggregate(string.Empty, (current, i) => current + i + ", ") .TrimEnd(' ') .TrimEnd(',') + " (+" + remaining + " more)"; } - return "Item Base Types: (none)"; + return "Base Types: (none)"; } } diff --git a/Filtration.ObjectModel/BlockItemTypes/ClassBlockItem.cs b/Filtration.ObjectModel/BlockItemTypes/ClassBlockItem.cs index 450c914..3e7616b 100644 --- a/Filtration.ObjectModel/BlockItemTypes/ClassBlockItem.cs +++ b/Filtration.ObjectModel/BlockItemTypes/ClassBlockItem.cs @@ -16,18 +16,18 @@ namespace Filtration.ObjectModel.BlockItemTypes { if (Items.Count > 0 && Items.Count < 4) { - return "Item Classes: " + + return "Classes: " + Items.Aggregate(string.Empty, (current, i) => current + i + ", ").TrimEnd(' ').TrimEnd(','); } if (Items.Count >= 4) { var remaining = Items.Count - 3; - return "Item Classes: " + Items.Take(3) + return "Classes: " + Items.Take(3) .Aggregate(string.Empty, (current, i) => current + i + ", ") .TrimEnd(' ') .TrimEnd(',') + " (+" + remaining + " more)"; } - return "Item Classes: (none)"; + return "Classes: (none)"; } } diff --git a/Filtration.ObjectModel/BlockItemTypes/HasExplicitModBlockItem.cs b/Filtration.ObjectModel/BlockItemTypes/HasExplicitModBlockItem.cs index d7a5359..e2fbee7 100644 --- a/Filtration.ObjectModel/BlockItemTypes/HasExplicitModBlockItem.cs +++ b/Filtration.ObjectModel/BlockItemTypes/HasExplicitModBlockItem.cs @@ -16,18 +16,18 @@ namespace Filtration.ObjectModel.BlockItemTypes { if (Items.Count > 0 && Items.Count < 4) { - return "Item Explicit Mods: " + + return "Explicit Mods: " + Items.Aggregate(string.Empty, (current, i) => current + i + ", ").TrimEnd(' ').TrimEnd(','); } if (Items.Count >= 4) { var remaining = Items.Count - 3; - return "Item Explicit Mods: " + Items.Take(3) + return "Explicit Mods: " + Items.Take(3) .Aggregate(string.Empty, (current, i) => current + i + ", ") .TrimEnd(' ') .TrimEnd(',') + " (+" + remaining + " more)"; } - return "Item Explicit Mods: (none)"; + return "Explicit Mods: (none)"; } }