Changeset 3008631
- Timestamp:
- 12/12/2023 10:09:05 AM (2 years ago)
- File:
-
- 1 edited
-
pushrocket/trunk/class-notification-settings.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pushrocket/trunk/class-notification-settings.php
r3008618 r3008631 76 76 add_settings_field( 77 77 'pushrocket_website_lists', 78 __( 'Website Lists', 'pushrocket -domain' ),78 __( 'Website Lists', 'pushrocket' ), 79 79 array( 80 80 $this, … … 133 133 add_settings_field( 134 134 'pushrocket_username', 135 __( 'User Name', 'pushrocket -domain' ),135 __( 'User Name', 'pushrocket' ), 136 136 array( 137 137 $this, … … 147 147 add_settings_field( 148 148 'pushrocket_password', 149 __( 'Password', 'pushrocket -domain' ),149 __( 'Password', 'pushrocket' ), 150 150 array( 151 151 $this, … … 161 161 add_settings_field( 162 162 'pushrocket_push_on_publish', 163 __( 'Enable Automatic Push on Publish', 'pushrocket -domain' ),163 __( 'Enable Automatic Push on Publish', 'pushrocket' ), 164 164 array( 165 165 $this, … … 175 175 add_settings_field( 176 176 'pushrocket_push_on_publish_for_webstories', 177 __( 'Enable Automatic Push on Publish Webstories', 'pushrocket -domain' ),177 __( 'Enable Automatic Push on Publish Webstories', 'pushrocket' ), 178 178 array( 179 179 $this, … … 302 302 public function pushrocket_register_settings() { 303 303 add_menu_page( 304 __( 'Pushrocket', 'pushrocket _domain' ), // page <title>Title</title>.305 __( 'Pushrocket', 'pushrocket _domain' ), // menu link text.304 __( 'Pushrocket', 'pushrocket' ), // page <title>Title</title>. 305 __( 'Pushrocket', 'pushrocket' ), // menu link text. 306 306 'manage_options', 307 307 'pushrocket', // page URL slug. … … 319 319 public function pushrocket_content() { 320 320 echo '<div class="wrap"><h1>'; 321 esc_html_e( 'Pushrocket', 'pushrocket _domain' );321 esc_html_e( 'Pushrocket', 'pushrocket' ); 322 322 echo '</h1>'; 323 323 echo '<h3>'; 324 esc_html_e( 'Send unlimited push notifications to your website/blog users directly from WordPress Dashboard.', 'pushrocket _domain' );324 esc_html_e( 'Send unlimited push notifications to your website/blog users directly from WordPress Dashboard.', 'pushrocket' ); 325 325 echo '</h3> 326 326 <form method="post" action="options.php" name="pushrocket_settings_data">';
Note: See TracChangeset
for help on using the changeset viewer.