• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

"Liked" button language fix!

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".

qYb.gif


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 😉
 
Back
Top