1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

Update translation keys to be Sonarr specific

This commit is contained in:
Stevie Robinson
2023-11-19 20:34:32 +01:00
committed by GitHub
parent 0bfa7aed83
commit 7464c09a46
53 changed files with 364 additions and 362 deletions
@@ -23,21 +23,21 @@ const seriesTypeOptions: ISeriesTypeOption[] = [
key: seriesTypes.STANDARD,
value: 'Standard',
get format() {
return translate('StandardTypeFormat', { format: 'S01E05' });
return translate('StandardEpisodeTypeFormat', { format: 'S01E05' });
},
},
{
key: seriesTypes.DAILY,
value: 'Daily / Date',
get format() {
return translate('DailyTypeFormat', { format: '2020-05-25' });
return translate('DailyEpisodeTypeFormat', { format: '2020-05-25' });
},
},
{
key: seriesTypes.ANIME,
value: 'Anime / Absolute',
get format() {
return translate('AnimeTypeFormat', { format: '005' });
return translate('AnimeEpisodeTypeFormat', { format: '005' });
},
},
];