2 simple gettext support missing
-
Hey, first of all, thanks for this awesome plugin!
I was reading my hack notes earlier (which help me remember what needs to be fixed manually after updating each plugin) and realized that two simple issues have not yet been fixed for a long time. Could you add them in your next update so that I can remove them from my notes? ??
1 – php/admin-menus/class-edit-menu.php:
sprintf( __( 'The code snippet you are trying to save produced a fatal error on line %d:', 'code_snippets' )
should be
sprintf( __( 'The code snippet you are trying to save produced a fatal error on line %d:', 'code-snippets' )
2 – php/views/import.php:
<h2>Duplicate Snippets</h2>
should be
<h2><?php _e( 'Duplicate Snippets', 'code-snippets' ); ?></h2>
thanks a lot!
- The topic ‘2 simple gettext support missing’ is closed to new replies.