fix(lang): correct capitalization of 'TMDB' (#2953)

This commit is contained in:
TheCatLady
2022-08-19 23:23:16 -04:00
committed by GitHub
parent 9bc1f89777
commit 9021696cf0
15 changed files with 57 additions and 57 deletions

View File

@@ -29,8 +29,8 @@ const messages = defineMessages({
seasons: '{seasonCount, plural, one {Season} other {Seasons}}',
failedretry: 'Something went wrong while retrying the request.',
mediaerror: '{mediaType} Not Found',
tmdbid: 'TMDb ID',
tvdbid: 'TVDB ID',
tmdbid: 'TMDB ID',
tvdbid: 'TheTVDB ID',
deleterequest: 'Delete Request',
});

View File

@@ -36,8 +36,8 @@ const messages = defineMessages({
editrequest: 'Edit Request',
deleterequest: 'Delete Request',
cancelRequest: 'Cancel Request',
tmdbid: 'TMDb ID',
tvdbid: 'TVDB ID',
tmdbid: 'TMDB ID',
tvdbid: 'TheTVDB ID',
});
const isMovie = (movie: MovieDetails | TvDetails): movie is MovieDetails => {

View File

@@ -15,8 +15,8 @@ interface ErrorCardProps {
const messages = defineMessages({
mediaerror: '{mediaType} Not Found',
tmdbid: 'TMDb ID',
tvdbid: 'TVDB ID',
tmdbid: 'TMDB ID',
tvdbid: 'TheTVDB ID',
cleardata: 'Clear Data',
});