Skip to content
New issue

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

Internationalization #64

Open
mrwpress opened this issue Mar 13, 2022 · 0 comments
Open

Internationalization #64

mrwpress opened this issue Mar 13, 2022 · 0 comments

Comments

@mrwpress
Copy link

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant