Internationalization issues
-
Hello,
I just translated your plugin into Spanish. However, I found two internationalization issues:
- /templates/admin-settings.php:44
You need to replace this line:
<?php esc_attr_e( "Here's a temporary login link", 'temporary-login-without-p2ssword' ); ?>
For this one:
<?php esc_attr_e( "Here's a temporary login link", 'temporary-login-without-password' ); ?>
- /templates/admin-settings.php:58
You need to replace this line:
echo " " . __( sprintf( '<a href="%s">Email</a> temporary login link to user', $mailto_link ), 'temporary-login-without-password' ); //phpcs:ignore
For this one:
echo " " . sprintf( __( '<a href="%s">Email</a> temporary login link to user', 'temporary-login-without-password' ), $mailto_link ); //phpcs:ignore
Hope this helps you to improve your excellent plugin ??
Kind regards,
Yordan. - /templates/admin-settings.php:44
- The topic ‘Internationalization issues’ is closed to new replies.