Changeset 3787
- Timestamp:
- 08/09/2016 04:34:54 PM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/comments.php
r3379 r3787 63 63 <?php if ( \DevHub\is_parsed_post_type() && DevHub\can_user_post_note( true, get_the_ID() ) ) : ?> 64 64 65 <p id="add-user-note" style="display:none;"><a href=""><?php _e( 'Have a note to contribute?', 'wporg' ); ?></a></p>65 <p id="add-user-note" style="display:none;"><a href=""><?php _e( 'Have a note or feedback to contribute?', 'wporg' ); ?></a></p> 66 66 67 67 <?php comment_form( array( … … 69 69 'comment_notes_after' => '<p>' . 70 70 __( 'Notes should supplement code reference entries, for example examples, tips, explanations, use-cases, and best practices.', 'wporg' ) . 71 '</p><p>' . 72 __( 'Feedback can be to report errors or omissions with the documentation on this page. Such feedback will not be publicly posted.', 'wporg' ) . 71 73 '</p><p>' . 72 74 __( 'Do not use this form for support requests, discussions, spam, bug reports, complaints, or self-promotion. Entries of this nature will be deleted.', 'wporg' ) . … … 78 80 sprintf( __( '<strong>NOTE:</strong> All contributions are licensed under <a href="%s">GFDL</a> and are moderated before appearing on the site.', 'wporg' ), 'https://gnu.org/licenses/fdl.html' ) . 79 81 '</p>', 80 'label_submit' => __( 'Add Note ', 'wporg' ),82 'label_submit' => __( 'Add Note or Feedback', 'wporg' ), 81 83 'must_log_in' => '<p>' . sprintf( 82 __( 'You must <a href="%s">log in</a> before being able to contribute a note .', 'wporg' ),84 __( 'You must <a href="%s">log in</a> before being able to contribute a note or feedback.', 'wporg' ), 83 85 'https://wordpress.org/support/bb-login.php?redirect_to=' . urlencode( get_comments_link() ) 84 86 ) . '</p>', -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/user-content.php
r3317 r3787 106 106 public static function wp_editor_comments() { 107 107 ob_start(); 108 echo '<p class="comment-form-comment"><label for="comment">' . _x( 'Add Note ', 'noun', 'wporg' ) . '</label>';108 echo '<p class="comment-form-comment"><label for="comment">' . _x( 'Add Note or Feedback', 'noun', 'wporg' ) . '</label>'; 109 109 wp_editor( '', 'comment', array( 110 110 'media_buttons' => false,
Note: See TracChangeset
for help on using the changeset viewer.