Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #1095207

    Hi.

    With the new update to 4.5.6. there is “share this entry” in the german version. It should be “Eintrag teilen”. I’d like to translate it with Loco Translate, but there is the right translation …

    Best regards. Andreas

    #1095275

    After I´ve updated to 4.5.6 I no longer can use Loco Translate to change this text. It seems to be hardcoded?

    #1095640

    Hi,

    Seems we have missed something here.
    I will create a github issue for our developers.

    Best regards,
    Basilis

    #1096464

    Same issue here. No german translation of “share this entry” under blog post even though translation in po file is correct. So the string is again hardcoded somewhere else?

    #1096739

    Hi Andreas and Daniel,

    Which version of German is installed on your sites?

    Best regards,
    Rikard

    #1096804

    Hi Rikard,

    it is the one from the latest Enfold version 4.5.6.

    Best regards,
    Daniel

    #1096866

    Hi. It’s the latest update 4.5.6.. Best regards. Andreas

    • This reply was modified 4 years, 11 months ago by kreativeseite.
    #1097083

    Hi,

    Thanks for the updates, but I’m asking which version of the German language you have selected in your WordPress installations? As far as I know there are several different german language files; normal, formal, ch, at etc?

    Best regards,
    Rikard

    #1097086

    you can try to replace it by child-theme functions.php:

    function my_text_strings( $translated_text, $text, $domain ){
    switch ( $translated_text ){
        case 'share this entry':  $translated_text = __( 'Eintrag teilen', $domain );
        break;
      }
      return $translated_text;
    }
    add_filter('gettext', 'my_text_strings', 20, 3);
    #1097132

    Hi, same here, I am also seeing “Share this entry”, where I believe a translation string is available (in Dutch).

    #1097349

    Hi lijndiensten,

    Did you try the function which @guenni007 shared? If not then please do so in your functions.php file.

    Best regards,
    Rikard

    #1097611

    Hi Rikard, the function by @guenni007 doesn’t do the trick.

    Normally, this should work with translation in the .mo-file, right?

    • This reply was modified 4 years, 11 months ago by lijndiensten.
    #1098602

    Hi,

    have you regenerated the file and re-uploaded it?

    Best regards,
    Basilis

    #1098787

    Hi Basilis,

    The .mo-file? Sure. But the string is already translated in your your theme package, so I would say it should work out-of-the box.

    Ivan

    #1098925

    Hi,

    It seems like issue was not reported. We will report it to our devs. For the time being, please add following code to bottom of Functions.php file in Appearance > Editor

    add_filter('avia_social_share_title','av_translate_social_share_title');
    function av_translate_social_share_title() {
    	if (get_locale() == 'de_DE') {
        return "Share this entry text in German";
    	}
    }

    Please make sure to change language code ‘de_DE’ to match your language

    Best regards,
    Yigit

    #1099057

    Thanks Yigit.

    #1099270

    Hi,

    You are welcome!
    Our devs have fixed the issue and it will be included in upcoming update :)

    Best regards,
    Yigit

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Share this entry’ is closed to new replies.