You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/class-wp-php-console-settings.php
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,6 @@ class Settings {
28
28
*/
29
29
private$page = '';
30
30
31
-
32
31
/**
33
32
* This plugin's option name.
34
33
*
@@ -119,7 +118,7 @@ public function register_settings() {
119
118
'callback' => array( $this, 'ip_field' ),
120
119
),
121
120
'register' => array(
122
-
'label' => esc_html__( 'Register PC Class','wp-php-console' ),
121
+
'label' => esc_html__( 'Register PC Class', 'wp-php-console' ),
123
122
'callback' => array( $this, 'register_field' ),
124
123
),
125
124
'stack' => array(
@@ -156,8 +155,10 @@ public function settings_info() {
156
155
?>
157
156
<p><?php
158
157
/* translators: %s refers to 'PHP Console' Chrome extension, will print download link for the Chrome extension */
159
-
printf( _x( 'This plugin allows you to use %s within your WordPress installation for testing, debugging and development purposes.', 'PHP Console, the Chrome Extension', 'wp-php-console' ), '<a href="https://github.com/barbushin/php-console" target="_blank">PHP Console</a>' ); ?>
printf( _x( 'This plugin allows you to use %s within your WordPress installation for testing, debugging and development purposes.', 'PHP Console, the PHP Library', 'wp-php-console' ),
0 commit comments