Missing string in translation file
-
Ciao @dueclic!
I’m very happy using your plugin. When I was translating your plugin to Spanish (es_VE and es_ES) I noticed that there is a string that you forgot to format with the translation function __():
title="<?php __( "Are you lost?", "two-factor-login-telegram" ); ?>"><?php echo sprintf( '← Torna a %s', get_bloginfo( 'title', 'display' ) ); ?></a>You just must to wrap the string into the __() function passing the string as first param and text domain as second param:
title="<?php __( "Are you lost?", "two-factor-login-telegram" ); ?>"><?php echo sprintf( __("← Torna a %s", "two-factor-login-telegram"), get_bloginfo( 'title', 'display' ) ); ?></a>It would be great if you include this change in next release 😉
Thanks for share your plugin!
The topic ‘Missing string in translation file’ is closed to new replies.