Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,
    FEEDZY RSS Feeds is translatable ready and already translated into 6 languages :

    • English
    • French
    • Serbian
    • Japanese
    • German
    • Spanish

    If you want to add you own translation, I suggested to use Loco Translate.

    Feel free to send me your translation when it will be done 🙂

    Best,

    Thread Starter seedu

    (@seedu)

    Another plugin for 3 words? 🙂 Is it not doable through a function?

    If Brice could supply the english language files (as I cannot see them in the /lang folder), it would be very easy to update the “Posted on” and “at” through the application Poedit.

    Install Poedit:
    http://poedit.net/

    Open the *.po file, search for the word you want to change.
    Do your changes and save.
    Select File, Compile to .MO
    Rename the 2 files to your language. Ex: lang_en_US.mo to lang_nb_NO.mo
    Upload the new files and you’re done.

    Do it a couple of times and you’ll find it very easy to do. We just need Brice’s english language file to search for the “Posted on” phrase.

    Guys,
    Since WordPress default plugin language is english, there is no English translation file for this language in my plugin.
    If you really need to translate this three words, you can use the following function (paste it in your functions.php file):

    function bweb_feedzy_meta_translation( $content ) {
        $content = str_replace( 'Posted on ', 'YOUR TRANSLATION ', $content );
        $content = str_replace( ' at ', ' YOUR TRANSLATION ', $content );
        return $content;
    }
    add_filter( 'feedzy_meta_output', 'bweb_feedzy_meta_translation', 9 );

    (Didn’t tried it, but it should work)

    Cheers

    Thread Starter seedu

    (@seedu)

    It works. Cheers! 🙂

    Thanks Brice!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘different language’ is closed to new replies.