From 5c85f7cfbdcb762e588814523715387949a4a728 Mon Sep 17 00:00:00 2001 From: thedoctor66 <37449358+thedoctor66@users.noreply.github.com> Date: Thu, 2 Aug 2018 13:01:00 +0200 Subject: [PATCH] added localized string --- plugin.video.alfa/core/videolibrarytools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.video.alfa/core/videolibrarytools.py b/plugin.video.alfa/core/videolibrarytools.py index c06c5fa3..ac3dc120 100644 --- a/plugin.video.alfa/core/videolibrarytools.py +++ b/plugin.video.alfa/core/videolibrarytools.py @@ -402,7 +402,7 @@ def save_episodes(path, episodelist, serie, silent=False, overwrite=True): for i, e in enumerate(scraper.sort_episode_list(new_episodelist)): if not silent: - p_dialog.update(int(math.ceil((i + 1) * t)), 'AƱadiendo episodio...', e.title) + p_dialog.update(int(math.ceil((i + 1) * t)), config.get_localized_string(60064), e.title) season_episode = "%sx%s" % (e.contentSeason, str(e.contentEpisodeNumber).zfill(2)) strm_path = filetools.join(path, "%s.strm" % season_episode)