Skip to content

Commit

Permalink
https://github.com/WWBN/AVideo/issues/9232
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Jul 18, 2024
1 parent 9cfa134 commit c30d423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/PlayLists/PlayLists.php
Original file line number Diff line number Diff line change
Expand Up @@ -1027,9 +1027,9 @@ static public function getPlaylistNotFoundMessage($playlistId)
if (is_numeric($playlistId)) {
return "The playlist with ID {$playlistId} is empty or does not exist.";
} elseif ($playlistId === 'favorite') {
return "Your Favorites playlist is empty.";
return __("Your Favorites playlist is empty.");
} elseif ($playlistId === 'watch_later') {
return "Your 'Watch Later' playlist is empty.";
return __("Your 'Watch Later' playlist is empty.");
} else {
return "Playlist not found (ID: {$playlistId}).";
}
Expand Down

0 comments on commit c30d423

Please sign in to comment.