“Requires at least” (4.2) is below 4.6 so a load_plugin_textdomain
is needed. Please refer to https://developer.wordpress.org/plugins/internationalization/how-to-internationalize-your-plugin/#loading-text-domain
includes\class-local-google-fonts-admin.php line 207, its code should be the following because the current text domain mailster
is wrong.
<h1><?php printf( esc_html__( _n( '%d Google font source found on your site.', '%d Google font sources found on your site.', $count, 'local-google-fonts' ) ), $count ); ?></h1>
Thanks for the info, update is on the way!
Hi There!
Please check again and let me know if there are still issues!
Best Regards
@everpress
<h1><?php printf( esc_html__( _n( '%d Google font source found on your site.', '%d Google font sources found on your site.', $count, 'local-google-fonts' ) ), $count ); ?></h1>
The text domain should be local-google-fonts
, NOT local-google-font
.
Miss an “s”, this issue caused this string cannot be displayed correctly.
Thanks for pointing this out! Will be fixed in the next update!