Skip to content

Commit

Permalink
Renamed record options component
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoCoderMatrix86 committed Jul 4, 2024
1 parent 19e153f commit 07e3a5e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 14 deletions.
16 changes: 4 additions & 12 deletions AudioCuesheetEditor/AudioCuesheetEditor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
<Content Remove="Resources\Localization\OptionsDialog\en.json" />
<Content Remove="Resources\Localization\RecordControl\de.json" />
<Content Remove="Resources\Localization\RecordControl\en.json" />
<Content Remove="Resources\Localization\RecordOptions\de.json" />
<Content Remove="Resources\Localization\RecordOptions\en.json" />
<Content Remove="Resources\Localization\EditRecordOptions\de.json" />
<Content Remove="Resources\Localization\EditRecordOptions\en.json" />
<Content Remove="Resources\Localization\TracksTable\de.json" />
<Content Remove="Resources\Localization\TracksTable\en.json" />
<Content Remove="Resources\Localization\CultureSelector\de.json" />
Expand Down Expand Up @@ -84,8 +84,8 @@
<EmbeddedResource Include="Resources\Localization\OptionsDialog\en.json" />
<EmbeddedResource Include="Resources\Localization\RecordControl\de.json" />
<EmbeddedResource Include="Resources\Localization\RecordControl\en.json" />
<EmbeddedResource Include="Resources\Localization\RecordOptions\de.json" />
<EmbeddedResource Include="Resources\Localization\RecordOptions\en.json" />
<EmbeddedResource Include="Resources\Localization\EditRecordOptions\de.json" />
<EmbeddedResource Include="Resources\Localization\EditRecordOptions\en.json" />
<EmbeddedResource Include="Resources\Localization\TracksTable\de.json" />
<EmbeddedResource Include="Resources\Localization\TracksTable\en.json" />
<EmbeddedResource Include="Resources\Localization\CultureSelector\de.json" />
Expand Down Expand Up @@ -128,13 +128,5 @@
<ItemGroup>
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>

<ItemGroup>
<UpToDateCheckInput Remove="Shared\RecordOptions.razor" />
</ItemGroup>

<ItemGroup>
<_ContentIncludedByDefault Remove="Shared\RecordOptions.razor" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion AudioCuesheetEditor/Pages/ViewModeRecord.razor
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ along with Foobar. If not, see
<Button Clicked="(() => recordOptionsVisible = !recordOptionsVisible)"><Heading Size="HeadingSize.Is3">@_localizer["Record options"]</Heading></Button>
</CollapseHeader>
<CollapseBody>
<RecordOptions />
<EditRecordOptions />
</CollapseBody>
</Collapse>
<Collapse Visible="recordControlVisible">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ along with Foobar. If not, see
-->
@implements IDisposable

@inject ITextLocalizer<RecordOptions> _localizer
@inject ITextLocalizer<EditRecordOptions> _localizer
@inject LocalStorageOptionsProvider _localStorageOptionsProvider
@inject ITextLocalizerService _localizationService
@inject ITextLocalizer<ValidationMessage> _validationMessageLocalizer
Expand Down

0 comments on commit 07e3a5e

Please sign in to comment.