Replies: 0
Could you replace a bunch of codes like
_e('Whats New in BPS Pro 12/12.1/12.2', 'bulletproof-security');
in admin/core/core.php to something like
printf( __('Whats New in BPS Pro %s', 'bulletproof-security'), '12/12.1/12.2' );
to simplify translations of your plugin to other languages (it will be necessary to translate one string instead of 60+ times copy-paste the same text)?