Hello
This is a follow up to http://stackideas.com/forums/sh404sef-issue-for-photos topic (which was locked).
It seems to be you forgot to add the following strings to language file:
And also, for the Albums, you should replace in file components/com_easysocial/sef_ext/albums.php (as you already did for photos.php):
by
Thanks
.Fixed in ES 1.4.7
This is a follow up to http://stackideas.com/forums/sh404sef-issue-for-photos topic (which was locked).
It seems to be you forgot to add the following strings to language file:
COM_EASYSOCIAL_SH404_ALBUMS_TYPE_EVENT="event"
COM_EASYSOCIAL_SH404_ALBUMS_TYPE_GROUP="group"
COM_EASYSOCIAL_SH404_ALBUMS_TYPE_USER="user"
COM_EASYSOCIAL_SH404_PHOTOS_TYPE_EVENT="event"
COM_EASYSOCIAL_SH404_PHOTOS_TYPE_GROUP="group"
COM_EASYSOCIAL_SH404_PHOTOS_TYPE_USER="user"
And also, for the Albums, you should replace in file components/com_easysocial/sef_ext/albums.php (as you already did for photos.php):
$title[] = $type;
by
$title[] = JString::ucwords(JText::_('COM_EASYSOCIAL_SH404_ALBUMS_TYPE_' . strtoupper($type)));
Thanks
.Fixed in ES 1.4.7