Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions AudioCuesheetEditor/Shared/AppBar.de.resx
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,6 @@
<data name="Open" xml:space="preserve">
<value>Öffnen</value>
</data>
<data name="Options" xml:space="preserve">
<value>Optionen</value>
</data>
<data name="Preview environment" xml:space="preserve">
<value>Vorschauumgebung</value>
</data>
Expand Down
2 changes: 1 addition & 1 deletion AudioCuesheetEditor/Shared/AppBar.razor
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ along with Foobar. If not, see
async Task SettingsClicked()
{
var options = new DialogOptions() { CloseButton = true, CloseOnEscapeKey = true, BackdropClick = false, FullWidth = true };
await _dialogService.ShowAsync<OptionsDialog>(_localizer["Options"], options);
await _dialogService.ShowAsync<SettingsDialog>(_localizer["Settings"], options);
}

async Task ResetCuesheetClicked()
Expand Down
3 changes: 0 additions & 3 deletions AudioCuesheetEditor/Shared/AppBar.resx
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,6 @@
<data name="Open" xml:space="preserve">
<value>Open</value>
</data>
<data name="Options" xml:space="preserve">
<value>Options</value>
</data>
<data name="Preview environment" xml:space="preserve">
<value>Preview environment</value>
</data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ along with Foobar. If not, see
-->
@inherits BaseLocalizedComponent

@inject IStringLocalizer<OptionsDialog> _localizer
@inject IStringLocalizer<SettingsDialog> _localizer
@inject ValidationService _validationService

<MudDialog>
Expand Down