By Albert on Tuesday, 10 May 2016
Posted in General Issues
Replies 29
Likes 0
Views 750
Votes 0
Translation 'Add Video' - in the file
\components\com_easysocial\themes\wireframe\videos\widgets\events\default.php
\media\com_easysocial\apps\event\videos\themes\default\groups\default.php
\media\com_easysocial\apps\event\videos\themes\default\widgets\widget.menu.php
\media\com_easysocial\apps\group\videos\themes\default\groups\default.php
\media\com_easysocial\apps\group\videos\themes\default\widgets\widget.menu.php
find the code 'Add Video' and replace code 'COM_EASYSOCIAL_VIDEOS_ADD_VIDEO'
Thanks, fixed these issues internally!
·
Wednesday, 11 May 2016 00:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Translation 'Recent Videos' - in the file
\media\com_easysocial\apps\event\videos\themes\default\widgets\widget.videos.php
\media\com_easysocial\apps\group\videos\themes\default\widgets\widget.videos.php
find the code 'Recent Videos' and replace code 'COM_EASYSOCIAL_VIDEOS_FILTERS_RECENT_VIDEOS'
·
Wednesday, 11 May 2016 02:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks so much I've fixed these issues internally.
·
Wednesday, 11 May 2016 11:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Translation 'Recent Polls' - in the file
\media\com_easysocial\apps\event\polls\themes\default\views\default.php
find the code - "Recent Polls" - and replace code "<?php echo JText::_('APP_POLLS_EVENT_TITLE'); ?>"
\media\com_easysocial\apps\group\polls\themes\default\views\default.php
find the code - "Recent Polls" - and replace code "<?php echo JText::_('APP_POLLS_GROUP_TITLE'); ?>"
·
Wednesday, 11 May 2016 13:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks, this is fixed internally
·
Wednesday, 11 May 2016 18:19
·
0 Likes
·
0 Votes
·
0 Comments
·
How can I translate the name of the hidden app.
It is formed in the file - \components\com_easysocial\themes\wireframe\activities\default.activities.hiddenapp.item.php
·
Wednesday, 18 May 2016 17:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Albert,

Currently that was not possible to translate them.

But you have to modify this file -> JoomlaFolder\components\com_easysocial\themes\wireframe\activities\default.activities.hiddenapp.item.php

You can download my file and replace into that file location in your site.

Then the language constant will become following format :

// This is Badges app
COM_EASYSOCIAL_ACTIVITY_HIDDEN_BADGES_APPS_NOTICE="Feed items from the app <b>Badges</b> is hidden."

// This is Discuss app
COM_EASYSOCIAL_ACTIVITY_HIDDEN_DISCUSS_APPS_NOTICE="Feed items from the app <b>Discuss</b> is hidden."



In other word, this previous language constant will no longer to use on this section COM_EASYSOCIAL_ACTIVITY_HIDDEN_APPS_NOTICE.

And you have to manually add back all the Easysocial app/3rd party app for these language string what I mentioned at above.

Hope this will help.
·
Wednesday, 18 May 2016 19:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes, it works. I need for each application to create a line of code?
COM_EASYSOCIAL_ACTIVITY_HIDDEN_XXXXXX_APPS_NOTICE="Feed items from the app <b>Badges</b> is hidden."
(XXXXXX - name APP)
·
Thursday, 19 May 2016 15:31
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes, that right

But current you do the 'User' app first and follow the element name from the application page as what you mentioned at above screenshot.
·
Thursday, 19 May 2016 15:33
·
0 Likes
·
0 Votes
·
0 Comments
·
For groups and events don't need to do?
·
Thursday, 19 May 2016 16:43
·
0 Likes
·
0 Votes
·
0 Comments
·
I tried to do the same for file - \components\com_easysocial\themes\wireframe\stream\hidden.app.php
But I failed
·
Thursday, 19 May 2016 16:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes, it need to create these language, if that app name already duplicated, so no need to create multiple time.

By the way, I will apply the better fix for this section in the future version.
·
Thursday, 19 May 2016 16:54
·
0 Likes
·
0 Votes
·
0 Comments
·
When I replace the code in the file - \components\com_easysocial\themes\wireframe\stream\hidden.app.php
Changed the code - <?php echo JText::sprintf('COM_EASYSOCIAL_STREAM_ITEM_APP_HIDDEN_SUCCESS' , $context ); ?>
to code - <?php echo JText::_('COM_EASYSOCIAL_ACTIVITY_HIDDEN_' . strtoupper($app->context) . '_APPS_NOTICE'); ?>
·
Thursday, 19 May 2016 17:26
·
0 Likes
·
0 Votes
·
0 Comments
·
For wich version is this
·
Thursday, 19 May 2016 18:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Albert,

You should use this code :

JoomlaFolder/components\com_easysocial\themes\wireframe\stream\hidden.app.php


<?php echo JText::sprintf('COM_EASYSOCIAL_STREAM_ITEM_APP_HIDDEN_SUCCESS' , $context ); ?>

// Replace to
<?php echo JText::_('COM_EASYSOCIAL_ACTIVITY_HIDDEN_' . strtoupper($context) . '_APPS_NOTICE'); ?>
·
Thursday, 19 May 2016 22:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for the good support! It works fine.
·
Friday, 20 May 2016 15:12
·
0 Likes
·
0 Votes
·
0 Comments
·
You're welcome Albert

Is it possible share with us all the language constant which you added in your site? So that we can patch in our repo so these all fix will included in next release version.
·
Friday, 20 May 2016 15:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Of course, but I'm waiting for a new release. I want to install a new release on the working site. To test and make a list of fixes. When approximately to wait for a new release?
·
Friday, 20 May 2016 19:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Albert

You can attach these language constant at here, so that we can commit these language constant base on the app in our repo server.

Hm, currently I can't tell what is the exact release next version date because we will have a lot of current task haven't complete yet.

Thanks for understand.
·
Saturday, 21 May 2016 12:13
·
0 Likes
·
0 Votes
·
0 Comments
·
I did a lot of different fixes myself, and so now I find it hard to understand what corrections are made. If you are interested in my scripts I could write. But I don't know whether they should write in the forum. You have very great products and I would like to help in their development
·
Saturday, 21 May 2016 14:43
·
0 Likes
·
0 Votes
·
0 Comments
·
I want to redo the component EasySocial+EasyBlog in EasuMiltiSite. To users instead of groups created mini-sites with individual template, your menus....
·
Saturday, 21 May 2016 15:15
·
0 Likes
·
0 Votes
·
0 Comments
·
Oh I think you misunderstand my question in earlier I actually want thes kind of language constant which you already did from your site, for example :

COM_EASYSOCIAL_ACTIVITY_HIDDEN_XXX_APPS_NOTICE="XXX app hidden"

Because I know now already got a lot of existing Easysocial apps, so I no need to go through one by one app to re-write again for this part of translation.
·
Saturday, 21 May 2016 15:16
·
0 Likes
·
0 Votes
·
0 Comments
·
I did this part of the translation not for English
·
Saturday, 21 May 2016 15:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Your method is good, but I would not advise to apply it for all users. I know what I will use the app and do only them for code. But you will not be able to guess what will set the other users of the application. And then there will be an error with displaying ini files
·
Saturday, 21 May 2016 16:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hm, not really sure what you mean here. Would you mind elaborating more on this please?
·
Sunday, 22 May 2016 01:08
·
0 Likes
·
0 Votes
·
0 Comments
·
We are discussing the method of translation of the message that is displayed when the user hides the active application. According to this method, each application is installed, you must add the localization code in the xx-XX.com_easysocial.ini If you skip any then easysocial application will display wrong message. Users can be a variety of applications and for all applications it is impossible to write code in xx-xx.com_easysocial.ini Therefore this method is not universal for all.
·
Monday, 23 May 2016 06:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Albert,

I am sorry for the delay of this reply,

Your method is good, but I would not advise to apply it for all users. I know what I will use the app and do only them for code. But you will not be able to guess what will set the other users of the application. And then there will be an error with displaying ini files

Yeah, when I think again, you said is true.
So I will not patch above fix into Easysocial core file, then you have to manually keep these fix file and these language constant which you did previously.

If you have new translation issue, I would recommended you start a new thread so that we can easy to manage your issue in the future.
·
Monday, 23 May 2016 18:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Well. And for EasyBlog separately to create threads?
·
Monday, 23 May 2016 19:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Yep, that would be ideal so that the workload could be spread across several forum moderators rather than just Arlex alone
·
Tuesday, 24 May 2016 02:21
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post