From d58bd4c085f19e605e0b3a4684d27309d3f7d908 Mon Sep 17 00:00:00 2001 From: farggus <61951994+farggus@users.noreply.github.com> Date: Mon, 30 Mar 2020 01:12:57 +0300 Subject: [PATCH] Update for translate adoptation -Add gettext-function --- airtime_mvc/application/services/PodcastService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/services/PodcastService.php b/airtime_mvc/application/services/PodcastService.php index 9d2c8fffb..78aca0748 100644 --- a/airtime_mvc/application/services/PodcastService.php +++ b/airtime_mvc/application/services/PodcastService.php @@ -158,7 +158,7 @@ class Application_Service_PodcastService $newBl = new Application_Model_Block(); $newBl->setCreator(Application_Model_User::getCurrentUser()->getId()); $newBl->setName($title); - $newBl->setDescription('Auto-generated smartblock for podcast'); + $newBl->setDescription(_("Auto-generated smartblock for podcast")); $newBl->saveType('dynamic'); // limit the smartblock to 1 item $row = new CcBlockcriteria();