Skip to content

Commit

Permalink
hygiene
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwoulfe committed Jan 9, 2023
1 parent 78735e3 commit 58b2a2d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions src/Preflight/Constants/KnownStrings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,3 @@ public static class KnownStrings
public const string PropertiesToTestSuffix = "PropertiesToTest";
public const string Disabled = "disabled";
}

public static partial class Constants
{

}
2 changes: 1 addition & 1 deletion src/Preflight/Services/Implement/SettingsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ private void LocalizeSettings(PreflightSettingsModel settings)

foreach (SettingsTabModel tab in settings.Tabs)
{
string area = prefix + tab.Alias;
string area = $"{KnownStrings.Alias}-{tab.Alias}";
tab.Name = _localizedTextService.Localize(area, "tabName");
tab.Summary = _localizedTextService.Localize(area, "summary");
}
Expand Down

0 comments on commit 58b2a2d

Please sign in to comment.