dontpanic
Chevereto Member
*Note: I dont know if this is the right place to post this but ...*
A quick fix for the like button because when you press it, says "Like" which it's not intuitive, but instead it must speak "Liked".
Luckily this part is managed by 2 files image.php and only en.po!! (i think so..)
What to do?
In image.php line, line 87 change to this
and in en.po, line 4676-4679
from this
change to this
Simple & effective..
Better UX guys 😉
A quick fix for the like button because when you press it, says "Like" which it's not intuitive, but instead it must speak "Liked".

Luckily this part is managed by 2 files image.php and only en.po!! (i think so..)
What to do?
In image.php line, line 87 change to this
Code:
<span class="btn btn-liked blue" rel="tooltip" title="<?php _se("You like this"); ?>"><span class="btn-icon icon-heart3"></span><span class="btn-text phone-hide"><?php _se('Liked'); ?></span></span>
and in en.po, line 4676-4679
from this
Code:
#: ../../../app/themes/Peafowl/views/image.php:87
#: ../../../app/themes/Peafowl/views/image.php:88
msgid "Like"
msgstr ""
change to this
Code:
#: ../../../app/themes/Peafowl/views/image.php:87
msgid "Liked"
msgstr ""
#: ../../../app/themes/Peafowl/views/image.php:88
msgid "Like"
msgstr ""
Simple & effective..
Better UX guys 😉