Skip to content

Commit

Permalink
Add I18n support for presenter name label in episodeFromSeries plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Gao-Jun committed Aug 22, 2021
1 parent 6f3fbd4 commit ac6c682
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -5,5 +5,6 @@
"Previous": "Previous",
"Related Videos": "Related Videos",
"Searching...": "Searching...",
"Videos in this series:": "Videos in this series:"
"Videos in this series:": "Videos in this series:",
"by:": "by:"
}
Expand Up @@ -440,7 +440,7 @@ var SearchEpisode = Class.create({
var author = ' ';
var author_search = '';
if(recording.dcCreator) {
author = 'by ' + recording.dcCreator;
author = paella.dictionary.translate('by:') + recording.dcCreator;
author_search = recording.dcCreator;
}
var divResultAuthorText = document.createElement('div');
Expand Down

0 comments on commit ac6c682

Please sign in to comment.