• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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