Added English localization logic during the regular scan process.
All checks were successful
ci / build-test (push) Successful in 2m17s
ci / publish-image (push) Successful in 1m41s

This commit is contained in:
2026-03-29 21:24:04 -04:00
parent d9e421178f
commit 0dd11e6351
11 changed files with 166 additions and 26 deletions

View File

@@ -54,6 +54,7 @@ public static class InfrastructureServiceCollectionExtensions
services.AddScoped<IVoiceWorkScannerRepository, VoiceWorkScannerRepository>();
services.AddScoped<IReleasedWorksProvider, ReleasedWorksProvider>();
services.AddScoped<IVoiceWorkIngestBuilder, VoiceWorkIngestBuilder>();
services.AddKeyedScoped<IVoiceWorkUpdater, VoiceWorkUpdater>(Locale.Japanese);
services.AddKeyedScoped<IVoiceWorkUpdater, EnglishVoiceWorkUpdater>(Locale.English);