We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In some places, you have internationalization in place. Like /includes/admin-options.php line 48:
add_submenu_page( 'wo_manage_clients', 'Clients', __( 'Clients', 'wp-oauth' ), 'manage_options', 'wo_manage_clients', 'wo_admin_manage_clients_page' );
See how you have:
__( 'Clients', 'wp-oauth' )
That needs done throughout the entire project in ALL files. For example /includes/admin/pages/edit-client.php line 145:
<h3>Advanced Options</h3>
Should be:
<h3><?php echo __('Advanced Options', 'wp-oauth'); ?></h3>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In some places, you have internationalization in place. Like /includes/admin-options.php line 48:
See how you have:
__( 'Clients', 'wp-oauth' )
That needs done throughout the entire project in ALL files. For example /includes/admin/pages/edit-client.php line 145:
Should be:
The text was updated successfully, but these errors were encountered: