• Hello,

    some other users already wrote that some translations like Full-time are not available. It seems they are already written from the community but not updated since the last update is 6 months ago.

    Is it possible to overwrite them by functions.php or something like that? We use this plugin for a customer and we can’t deliver a product where single strings are on english.

    Greetings
    Henry

Viewing 5 replies - 1 through 5 (of 5 total)
  • I have the same problem and i need help quickly, please!

    Hi,
    same for me. I need a quick solution as well.

    Regards
    Arndt

    Hi,

    i have solved it directly in the “class-job-postings.php” file.

    No other chance …

    Regards
    Arndt

    Plugin Author BlueGlass

    (@blueglassinteractive)

    Hi @dreilaut, @mpr92, @arndtk!

    you can rewrite such strings like this from functions.php

    add_filter( 'gettext', 'jobs_plugin_translate_text', 10, 3 );
    function jobs_plugin_translate_text( $translated_text, $untranslated_text, $domain ) {
        switch($untranslated_text){
            case 'Full-time':
                return 'Any string you wish here';
            break
        }
     
        return $translated_text;
    }

    Or you could use “Loco Translate” plugin to translate single strings from admin area.

    @dreilaut you mentioned that they are written from the community, where exactly? in translations repository?

    Jakob

    (@jakethesnake95)

    @blueglassinteractive thanks that helped – don’t forget the ; behind the break ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Missing Translationes (e.g Full-time)’ is closed to new replies.