hello Sunny,
Sorry for late reply to this,
You can try apply this code in your following file ->
JoomlaFolder\media\com_easysocial\apps\event\shares\hooks\notification.repost.php
public function execute(&$item)
{
// We know that all repost notifications is targeted to the owner of the previous item that is currently being reposted.
$actor = FD::user($item->actor_id);
// Load up the share item
$share = FD::table('Share');
$share->load($item->context_ids);
$item->title = JText::sprintf('APP_EVENT_STORY_USER_REPOSTED_YOUR_POST', $actor->getName());
}
Replace with
public function execute(&$item)
{
// We know that all repost notifications is targeted to the owner of the previous item that is currently being reposted.
$actor = FD::user($item->actor_id);
// Get event information
$event = FD::event($item->uid);
// Load up the share item
$share = FD::table('Share');
$share->load($item->context_ids);
$item->title = JText::sprintf('APP_EVENT_STORY_USER_REPOSTED_YOUR_POST', $actor->getName(), $event->getName());
}
Then this language string should be
APP_EVENT_STORY_USER_REPOSTED_YOUR_POST="{b}%1$s{/b} reposted your post in {b}%2$s{/b}"
hope this help.