Changeset 1535
- Timestamp:
- 05/03/2015 09:50:53 AM (10 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/feedback-search.php
r1521 r1535 1 1 <div class="bbp-template-notice"> 2 <p><?php _e( 'Please enter some search terms above', ' bbpress' ); ?></p>2 <p><?php _e( 'Please enter some search terms above', 'wporg-forums' ); ?></p> 3 3 </div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic-merge.php
r1521 r1535 22 22 <fieldset class="bbp-form"> 23 23 24 <legend><?php printf( __( 'Merge topic "%s"', ' bbpress' ), bbp_get_topic_title() ); ?></legend>24 <legend><?php printf( __( 'Merge topic "%s"', 'wporg-forums' ), bbp_get_topic_title() ); ?></legend> 25 25 26 26 <div> 27 27 28 28 <div class="bbp-template-notice info"> 29 <p><?php _e( 'Select the topic to merge this one into. The destination topic will remain the lead topic, and this one will change into a reply.', ' bbpress' ); ?></p>30 <p><?php _e( 'To keep this topic as the lead, go to the other topic and use the merge tool from there instead.', ' bbpress' ); ?></p>29 <p><?php _e( 'Select the topic to merge this one into. The destination topic will remain the lead topic, and this one will change into a reply.', 'wporg-forums' ); ?></p> 30 <p><?php _e( 'To keep this topic as the lead, go to the other topic and use the merge tool from there instead.', 'wporg-forums' ); ?></p> 31 31 </div> 32 32 33 33 <div class="bbp-template-notice"> 34 <p><?php _e( 'All replies within both the topics will be merged chronologically. The order of the merged replies is based on the time they were posted. If the destination topic was created after this one, its post date will be updated to a second earlier than this one.', ' bbpress' ); ?></p>34 <p><?php _e( 'All replies within both the topics will be merged chronologically. The order of the merged replies is based on the time they were posted. If the destination topic was created after this one, its post date will be updated to a second earlier than this one.', 'wporg-forums' ); ?></p> 35 35 </div> 36 36 37 37 <fieldset class="bbp-form"> 38 <legend><?php _e( 'Destination', ' bbpress' ); ?></legend>38 <legend><?php _e( 'Destination', 'wporg-forums' ); ?></legend> 39 39 <div> 40 40 <?php if ( bbp_has_topics( array( 'show_stickies' => false, 'post_parent' => bbp_get_topic_forum_id( bbp_get_topic_id() ), 'post__not_in' => array( bbp_get_topic_id() ) ) ) ) : ?> 41 41 42 <label for="bbp_destination_topic"><?php _e( 'Merge with this topic:', ' bbpress' ); ?></label>42 <label for="bbp_destination_topic"><?php _e( 'Merge with this topic:', 'wporg-forums' ); ?></label> 43 43 44 44 <?php … … 58 58 <?php else : ?> 59 59 60 <label><?php _e( 'There are no other topics in this forum to merge with.', ' bbpress' ); ?></label>60 <label><?php _e( 'There are no other topics in this forum to merge with.', 'wporg-forums' ); ?></label> 61 61 62 62 <?php endif; ?> … … 66 66 67 67 <fieldset class="bbp-form"> 68 <legend><?php _e( 'Topic Extras', ' bbpress' ); ?></legend>68 <legend><?php _e( 'Topic Extras', 'wporg-forums' ); ?></legend> 69 69 70 70 <div> … … 73 73 74 74 <input name="bbp_topic_subscribers" id="bbp_topic_subscribers" type="checkbox" value="1" checked="checked" tabindex="<?php bbp_tab_index(); ?>" /> 75 <label for="bbp_topic_subscribers"><?php _e( 'Merge topic subscribers', ' bbpress' ); ?></label><br />75 <label for="bbp_topic_subscribers"><?php _e( 'Merge topic subscribers', 'wporg-forums' ); ?></label><br /> 76 76 77 77 <?php endif; ?> 78 78 79 79 <input name="bbp_topic_favoriters" id="bbp_topic_favoriters" type="checkbox" value="1" checked="checked" tabindex="<?php bbp_tab_index(); ?>" /> 80 <label for="bbp_topic_favoriters"><?php _e( 'Merge topic favoriters', ' bbpress' ); ?></label><br />80 <label for="bbp_topic_favoriters"><?php _e( 'Merge topic favoriters', 'wporg-forums' ); ?></label><br /> 81 81 82 82 <?php if ( bbp_allow_topic_tags() ) : ?> 83 83 84 84 <input name="bbp_topic_tags" id="bbp_topic_tags" type="checkbox" value="1" checked="checked" tabindex="<?php bbp_tab_index(); ?>" /> 85 <label for="bbp_topic_tags"><?php _e( 'Merge topic tags', ' bbpress' ); ?></label><br />85 <label for="bbp_topic_tags"><?php _e( 'Merge topic tags', 'wporg-forums' ); ?></label><br /> 86 86 87 87 <?php endif; ?> … … 91 91 92 92 <div class="bbp-template-notice error"> 93 <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', ' bbpress' ); ?></p>93 <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'wporg-forums' ); ?></p> 94 94 </div> 95 95 96 96 <div class="bbp-submit-wrapper"> 97 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_merge_topic_submit" name="bbp_merge_topic_submit" class="button submit"><?php _e( 'Submit', ' bbpress' ); ?></button>97 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_merge_topic_submit" name="bbp_merge_topic_submit" class="button submit"><?php _e( 'Submit', 'wporg-forums' ); ?></button> 98 98 </div> 99 99 </div> … … 108 108 109 109 <div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic"> 110 <div class="entry-content"><?php is_user_logged_in() ? _e( 'You do not have the permissions to edit this topic!', ' bbpress' ) : _e( 'You cannot edit this topic.', 'bbpress' ); ?></div>110 <div class="entry-content"><?php is_user_logged_in() ? _e( 'You do not have the permissions to edit this topic!', 'wporg-forums' ) : _e( 'You cannot edit this topic.', 'wporg-forums' ); ?></div> 111 111 </div> 112 112 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic-split.php
r1521 r1535 22 22 <fieldset class="bbp-form"> 23 23 24 <legend><?php printf( __( 'Split topic "%s"', ' bbpress' ), bbp_get_topic_title() ); ?></legend>24 <legend><?php printf( __( 'Split topic "%s"', 'wporg-forums' ), bbp_get_topic_title() ); ?></legend> 25 25 26 26 <div> 27 27 28 28 <div class="bbp-template-notice info"> 29 <p><?php _e( 'When you split a topic, you are slicing it in half starting with the reply you just selected. Choose to use that reply as a new topic with a new title, or merge those replies into an existing topic.', ' bbpress' ); ?></p>29 <p><?php _e( 'When you split a topic, you are slicing it in half starting with the reply you just selected. Choose to use that reply as a new topic with a new title, or merge those replies into an existing topic.', 'wporg-forums' ); ?></p> 30 30 </div> 31 31 32 32 <div class="bbp-template-notice"> 33 <p><?php _e( 'If you use the existing topic option, replies within both topics will be merged chronologically. The order of the merged replies is based on the time and date they were posted.', ' bbpress' ); ?></p>33 <p><?php _e( 'If you use the existing topic option, replies within both topics will be merged chronologically. The order of the merged replies is based on the time and date they were posted.', 'wporg-forums' ); ?></p> 34 34 </div> 35 35 36 36 <fieldset class="bbp-form"> 37 <legend><?php _e( 'Split Method', ' bbpress' ); ?></legend>37 <legend><?php _e( 'Split Method', 'wporg-forums' ); ?></legend> 38 38 39 39 <div> 40 40 <input name="bbp_topic_split_option" id="bbp_topic_split_option_reply" type="radio" checked="checked" value="reply" tabindex="<?php bbp_tab_index(); ?>" /> 41 <label for="bbp_topic_split_option_reply"><?php printf( __( 'New topic in <strong>%s</strong> titled:', ' bbpress' ), bbp_get_forum_title( bbp_get_topic_forum_id( bbp_get_topic_id() ) ) ); ?></label>42 <input type="text" id="bbp_topic_split_destination_title" value="<?php printf( __( 'Split: %s', ' bbpress' ), bbp_get_topic_title() ); ?>" tabindex="<?php bbp_tab_index(); ?>" size="35" name="bbp_topic_split_destination_title" />41 <label for="bbp_topic_split_option_reply"><?php printf( __( 'New topic in <strong>%s</strong> titled:', 'wporg-forums' ), bbp_get_forum_title( bbp_get_topic_forum_id( bbp_get_topic_id() ) ) ); ?></label> 42 <input type="text" id="bbp_topic_split_destination_title" value="<?php printf( __( 'Split: %s', 'wporg-forums' ), bbp_get_topic_title() ); ?>" tabindex="<?php bbp_tab_index(); ?>" size="35" name="bbp_topic_split_destination_title" /> 43 43 </div> 44 44 … … 47 47 <div> 48 48 <input name="bbp_topic_split_option" id="bbp_topic_split_option_existing" type="radio" value="existing" tabindex="<?php bbp_tab_index(); ?>" /> 49 <label for="bbp_topic_split_option_existing"><?php _e( 'Use an existing topic in this forum:', ' bbpress' ); ?></label>49 <label for="bbp_topic_split_option_existing"><?php _e( 'Use an existing topic in this forum:', 'wporg-forums' ); ?></label> 50 50 51 51 <?php … … 69 69 70 70 <fieldset class="bbp-form"> 71 <legend><?php _e( 'Topic Extras', ' bbpress' ); ?></legend>71 <legend><?php _e( 'Topic Extras', 'wporg-forums' ); ?></legend> 72 72 73 73 <div> … … 76 76 77 77 <input name="bbp_topic_subscribers" id="bbp_topic_subscribers" type="checkbox" value="1" checked="checked" tabindex="<?php bbp_tab_index(); ?>" /> 78 <label for="bbp_topic_subscribers"><?php _e( 'Copy subscribers to the new topic', ' bbpress' ); ?></label><br />78 <label for="bbp_topic_subscribers"><?php _e( 'Copy subscribers to the new topic', 'wporg-forums' ); ?></label><br /> 79 79 80 80 <?php endif; ?> 81 81 82 82 <input name="bbp_topic_favoriters" id="bbp_topic_favoriters" type="checkbox" value="1" checked="checked" tabindex="<?php bbp_tab_index(); ?>" /> 83 <label for="bbp_topic_favoriters"><?php _e( 'Copy favoriters to the new topic', ' bbpress' ); ?></label><br />83 <label for="bbp_topic_favoriters"><?php _e( 'Copy favoriters to the new topic', 'wporg-forums' ); ?></label><br /> 84 84 85 85 <?php if ( bbp_allow_topic_tags() ) : ?> 86 86 87 87 <input name="bbp_topic_tags" id="bbp_topic_tags" type="checkbox" value="1" checked="checked" tabindex="<?php bbp_tab_index(); ?>" /> 88 <label for="bbp_topic_tags"><?php _e( 'Copy topic tags to the new topic', ' bbpress' ); ?></label><br />88 <label for="bbp_topic_tags"><?php _e( 'Copy topic tags to the new topic', 'wporg-forums' ); ?></label><br /> 89 89 90 90 <?php endif; ?> … … 94 94 95 95 <div class="bbp-template-notice error"> 96 <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', ' bbpress' ); ?></p>96 <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'wporg-forums' ); ?></p> 97 97 </div> 98 98 99 99 <div class="bbp-submit-wrapper"> 100 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_merge_topic_submit" name="bbp_merge_topic_submit" class="button submit"><?php _e( 'Submit', ' bbpress' ); ?></button>100 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_merge_topic_submit" name="bbp_merge_topic_submit" class="button submit"><?php _e( 'Submit', 'wporg-forums' ); ?></button> 101 101 </div> 102 102 </div> … … 111 111 112 112 <div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic"> 113 <div class="entry-content"><?php is_user_logged_in() ? _e( 'You do not have the permissions to edit this topic!', ' bbpress' ) : _e( 'You cannot edit this topic.', 'bbpress' ); ?></div>113 <div class="entry-content"><?php is_user_logged_in() ? _e( 'You do not have the permissions to edit this topic!', 'wporg-forums' ) : _e( 'You cannot edit this topic.', 'wporg-forums' ); ?></div> 114 114 </div> 115 115 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
r1521 r1535 18 18 <?php 19 19 if ( bbp_is_topic_edit() ) 20 printf( __( 'Now Editing “%s”', ' bbpress' ), bbp_get_topic_title() );20 printf( __( 'Now Editing “%s”', 'wporg-forums' ), bbp_get_topic_title() ); 21 21 else 22 bbp_is_single_forum() ? printf( __( 'Create New Topic in “%s”', ' bbpress' ), bbp_get_forum_title() ) : _e( 'Create New Topic', 'bbpress' );22 bbp_is_single_forum() ? printf( __( 'Create New Topic in “%s”', 'wporg-forums' ), bbp_get_forum_title() ) : _e( 'Create New Topic', 'wporg-forums' ); 23 23 ?> 24 24 … … 30 30 31 31 <div class="bbp-template-notice"> 32 <p><?php _e( 'If asking for help, please include your WordPress version, and a link to your site.', ' bbporg' ); ?></p>33 <p><?php _e( 'If you found a bug, please create a <a href="http://bbpress.trac.wordpress.org/">trac ticket</a> with detailed duplication steps.', ' bbporg' ); ?></p>32 <p><?php _e( 'If asking for help, please include your WordPress version, and a link to your site.', 'wporg-forums' ); ?></p> 33 <p><?php _e( 'If you found a bug, please create a <a href="http://bbpress.trac.wordpress.org/">trac ticket</a> with detailed duplication steps.', 'wporg-forums' ); ?></p> 34 34 </div> 35 35 … … 39 39 40 40 <div class="bbp-template-notice"> 41 <p><?php _e( 'This forum is marked as closed to new topics, however your posting capabilities still allow you to do so.', ' bbpress' ); ?></p>41 <p><?php _e( 'This forum is marked as closed to new topics, however your posting capabilities still allow you to do so.', 'wporg-forums' ); ?></p> 42 42 </div> 43 43 … … 47 47 48 48 <div class="bbp-template-notice"> 49 <p><?php _e( 'Your account has the ability to post unrestricted HTML content.', ' bbpress' ); ?></p>49 <p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'wporg-forums' ); ?></p> 50 50 </div> 51 51 … … 61 61 62 62 <p> 63 <label for="bbp_topic_title"><?php printf( __( 'Topic Title (Maximum Length: %d):', ' bbpress' ), bbp_get_title_max_length() ); ?></label><br />63 <label for="bbp_topic_title"><?php printf( __( 'Topic Title (Maximum Length: %d):', 'wporg-forums' ), bbp_get_title_max_length() ); ?></label><br /> 64 64 <input type="text" id="bbp_topic_title" value="<?php bbp_form_topic_title(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_title" maxlength="<?php bbp_title_max_length(); ?>" /> 65 65 </p> … … 72 72 73 73 <p> 74 <label for="bbp_reply_content"><?php _e( 'Reply:', ' bbpress' ); ?></label><br />74 <label for="bbp_reply_content"><?php _e( 'Reply:', 'wporg-forums' ); ?></label><br /> 75 75 <textarea id="bbp_topic_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_topic_content" cols="60" rows="6"><?php bbp_form_topic_content(); ?></textarea> 76 76 </p> … … 87 87 88 88 <p class="form-allowed-tags"> 89 <label><?php _e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:',' bbpress' ); ?></label><br />89 <label><?php _e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','wporg-forums' ); ?></label><br /> 90 90 <code><?php bbp_allowed_tags(); ?></code> 91 91 </p> … … 96 96 97 97 <p> 98 <label for="bbp_topic_tags"><?php _e( 'Topic Tags:', ' bbpress' ); ?></label><br />98 <label for="bbp_topic_tags"><?php _e( 'Topic Tags:', 'wporg-forums' ); ?></label><br /> 99 99 <input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> /> 100 100 </p> … … 107 107 108 108 <p> 109 <label for="bbp_forum_id"><?php _e( 'Forum:', ' bbpress' ); ?></label><br />109 <label for="bbp_forum_id"><?php _e( 'Forum:', 'wporg-forums' ); ?></label><br /> 110 110 <?php bbp_dropdown( array( 'selected' => bbp_get_form_topic_forum() ) ); ?> 111 111 </p> … … 121 121 <p> 122 122 123 <label for="bbp_stick_topic"><?php _e( 'Topic Type:', ' bbpress' ); ?></label><br />123 <label for="bbp_stick_topic"><?php _e( 'Topic Type:', 'wporg-forums' ); ?></label><br /> 124 124 125 125 <?php bbp_topic_type_select(); ?> … … 140 140 <?php if ( bbp_is_topic_edit() && ( get_the_author_meta( 'ID' ) != bbp_get_current_user_id() ) ) : ?> 141 141 142 <label for="bbp_topic_subscription"><?php _e( 'Notify the author of follow-up replies via email', ' bbpress' ); ?></label>142 <label for="bbp_topic_subscription"><?php _e( 'Notify the author of follow-up replies via email', 'wporg-forums' ); ?></label> 143 143 144 144 <?php else : ?> 145 145 146 <label for="bbp_topic_subscription"><?php _e( 'Notify me of follow-up replies via email', ' bbpress' ); ?></label>146 <label for="bbp_topic_subscription"><?php _e( 'Notify me of follow-up replies via email', 'wporg-forums' ); ?></label> 147 147 148 148 <?php endif; ?> … … 158 158 159 159 <fieldset class="bbp-form"> 160 <legend><?php _e( 'Revision', ' bbpress' ); ?></legend>160 <legend><?php _e( 'Revision', 'wporg-forums' ); ?></legend> 161 161 <div> 162 162 <input name="bbp_log_topic_edit" id="bbp_log_topic_edit" type="checkbox" value="1" <?php bbp_form_topic_log_edit(); ?> tabindex="<?php bbp_tab_index(); ?>" /> 163 <label for="bbp_log_topic_edit"><?php _e( 'Keep a log of this edit:', ' bbpress' ); ?></label><br />163 <label for="bbp_log_topic_edit"><?php _e( 'Keep a log of this edit:', 'wporg-forums' ); ?></label><br /> 164 164 </div> 165 165 166 166 <div> 167 <label for="bbp_topic_edit_reason"><?php printf( __( 'Optional reason for editing:', ' bbpress' ), bbp_get_current_user_name() ); ?></label><br />167 <label for="bbp_topic_edit_reason"><?php printf( __( 'Optional reason for editing:', 'wporg-forums' ), bbp_get_current_user_name() ); ?></label><br /> 168 168 <input type="text" value="<?php bbp_form_topic_edit_reason(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_edit_reason" id="bbp_topic_edit_reason" /> 169 169 </div> … … 180 180 <?php do_action( 'bbp_theme_before_topic_form_submit_button' ); ?> 181 181 182 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_topic_submit" name="bbp_topic_submit" class="button submit"><?php _e( 'Submit', ' bbpress' ); ?></button>182 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_topic_submit" name="bbp_topic_submit" class="button submit"><?php _e( 'Submit', 'wporg-forums' ); ?></button> 183 183 184 184 <?php do_action( 'bbp_theme_after_topic_form_submit_button' ); ?> … … 203 203 <div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic"> 204 204 <div class="bbp-template-notice"> 205 <p><?php printf( __( 'The forum ‘%s’ is closed to new topics and replies.', ' bbpress' ), bbp_get_forum_title() ); ?></p>205 <p><?php printf( __( 'The forum ‘%s’ is closed to new topics and replies.', 'wporg-forums' ), bbp_get_forum_title() ); ?></p> 206 206 </div> 207 207 </div> … … 211 211 <div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic"> 212 212 <div class="bbp-template-notice"> 213 <p><?php is_user_logged_in() ? _e( 'You cannot create new topics at this time.', ' bbpress' ) : _e( 'You must be logged in to create new topics.', 'bbpress' ); ?></p>213 <p><?php is_user_logged_in() ? _e( 'You cannot create new topics at this time.', 'wporg-forums' ) : _e( 'You must be logged in to create new topics.', 'wporg-forums' ); ?></p> 214 214 </div> 215 215 </div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/loop-forums.php
r1521 r1535 6 6 7 7 <ul class="forum-titles"> 8 <li class="bbp-forum-info"><?php _e( 'Forum', ' bbpress' ); ?></li>9 <li class="bbp-forum-topic-count"><?php _e( 'Topics', ' bbpress' ); ?></li>10 <li class="bbp-forum-reply-count"><?php _e( 'Posts', ' bbpress' ); ?></li>8 <li class="bbp-forum-info"><?php _e( 'Forum', 'wporg-forums' ); ?></li> 9 <li class="bbp-forum-topic-count"><?php _e( 'Topics', 'wporg-forums' ); ?></li> 10 <li class="bbp-forum-reply-count"><?php _e( 'Posts', 'wporg-forums' ); ?></li> 11 11 </ul> 12 12 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/loop-single-topic.php
r1521 r1535 47 47 <?php do_action( 'bbp_theme_before_topic_started_by' ); ?> 48 48 49 <span class="bbp-topic-started-by"><?php printf( __( 'Started by: %1$s', ' bbpress' ), bbp_get_topic_author_link( array( 'size' => '14' ) ) ); ?></span>49 <span class="bbp-topic-started-by"><?php printf( __( 'Started by: %1$s', 'wporg-forums' ), bbp_get_topic_author_link( array( 'size' => '14' ) ) ); ?></span> 50 50 51 51 <?php do_action( 'bbp_theme_after_topic_started_by' ); ?> … … 55 55 <?php do_action( 'bbp_theme_before_topic_started_in' ); ?> 56 56 57 <span class="bbp-topic-started-in"><?php printf( __( 'in: <a href="%1$s">%2$s</a>', ' bbpress' ), bbp_get_forum_permalink( bbp_get_topic_forum_id() ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></span>57 <span class="bbp-topic-started-in"><?php printf( __( 'in: <a href="%1$s">%2$s</a>', 'wporg-forums' ), bbp_get_forum_permalink( bbp_get_topic_forum_id() ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></span> 58 58 59 59 <?php do_action( 'bbp_theme_after_topic_started_in' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/functions.php
r1521 r1535 5 5 * @package WPBBP 6 6 */ 7 8 /** 9 * Sets up theme defaults and registers support for various WordPress features. 10 */ 11 function wporg_support_setup() { 12 load_theme_textdomain( 'wporg-forums' ); 13 } 14 add_action( 'after_setup_theme', 'wporg_support_setup' ); 7 15 8 16 /** … … 42 50 43 51 // Separator 44 $args['sep'] = is_rtl() ? __( '«', ' bbpress' ) : __( '»', 'bbpress' );52 $args['sep'] = is_rtl() ? __( '«', 'wporg-forums' ) : __( '»', 'wporg-forums' ); 45 53 $args['pad_sep'] = 1; 46 54 $args['sep_before'] = '<span class="bbp-breadcrumb-sep">' ; … … 56 64 // Forum root 57 65 $args['include_root'] = true; 58 $args['root_text'] = 'WordPress Support';66 $args['root_text'] = __( 'WordPress Support', 'wporg-forums' ); 59 67 60 68 // Current … … 76 84 */ 77 85 function wporg_support_custom_views() { 78 bbp_register_view( 'all-topics', __( 'All Topics' ), array( 'order' => 'DESC' ), false );79 // bbp_register_view( 'support-forum-no', __( 'Not Resolved' ), array( 'post_status' => 'closed' ), false );80 // bbp_register_view( 'taggedmodlook', __( 'Tagged modlook' ), array( 'topic-tag' => 'modlook' ) );86 bbp_register_view( 'all-topics', __( 'All Topics', 'wporg-forums' ), array( 'order' => 'DESC' ), false ); 87 // bbp_register_view( 'support-forum-no', __( 'Not Resolved', 'wporg-forums' ), array( 'post_status' => 'closed' ), false ); 88 // bbp_register_view( 'taggedmodlook', __( 'Tagged modlook', 'wporg-forums' ), array( 'topic-tag' => 'modlook' ) ); 81 89 } 82 90 add_action( 'bbp_register_views', 'wporg_support_custom_views' ); … … 110 118 <form role="search" method="get" id="searchform" action=""> 111 119 <div> 112 <h3><?php _e( 'Forum Search', ' bbporg'); ?></h3>113 <label class="screen-reader-text hidden" for="ts"><?php _e( 'Search for:', ' bbporg' ); ?></label>120 <h3><?php _e( 'Forum Search', 'wporg-forums' ); ?></h3> 121 <label class="screen-reader-text hidden" for="ts"><?php _e( 'Search for:', 'wporg-forums' ); ?></label> 114 122 <input type="text" value="<?php echo bb_base_topic_search_query(); ?>" name="ts" id="ts" /> 115 <input class="button" type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', ' bbporg' ); ?>" />123 <input class="button" type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'wporg-forums' ); ?>" /> 116 124 </div> 117 125 </form> … … 125 133 <form role="search" method="get" id="searchform" action=""> 126 134 <div> 127 <h3><?php _e( 'Reply Search', ' bbporg'); ?></h3>128 <label class="screen-reader-text hidden" for="rs"><?php _e( 'Search for:', ' bbporg' ); ?></label>135 <h3><?php _e( 'Reply Search', 'wporg-forums' ); ?></h3> 136 <label class="screen-reader-text hidden" for="rs"><?php _e( 'Search for:', 'wporg-forums' ); ?></label> 129 137 <input type="text" value="<?php echo bb_base_reply_search_query(); ?>" name="rs" id="rs" /> 130 <input class="button" type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', ' bbporg' ); ?>" />138 <input class="button" type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'wporg-forums' ); ?>" /> 131 139 </div> 132 140 </form> … … 140 148 <form role="search" method="get" id="searchform" action=""> 141 149 <div> 142 <h3><?php _e( 'Plugin Search', ' bbporg'); ?></h3>143 <label class="screen-reader-text hidden" for="ps"><?php _e( 'Search for:', ' bbporg' ); ?></label>150 <h3><?php _e( 'Plugin Search', 'wporg-forums' ); ?></h3> 151 <label class="screen-reader-text hidden" for="ps"><?php _e( 'Search for:', 'wporg-forums' ); ?></label> 144 152 <input type="text" value="<?php echo bb_base_plugin_search_query(); ?>" name="ps" id="ts" /> 145 <input class="button" type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', ' bbporg' ); ?>" />153 <input class="button" type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'wporg-forums' ); ?>" /> 146 154 </div> 147 155 </form> … … 206 214 207 215 // Singular/Plural 208 $voice_count = sprintf( _n( '%s participant', '%s participants', $voice_count, ' bbpress' ), bbp_number_format( $voice_count ) );216 $voice_count = sprintf( _n( '%s participant', '%s participants', $voice_count, 'wporg-forums' ), bbp_number_format( $voice_count ) ); 209 217 $last_reply = bbp_get_topic_last_active_id( $topic_id ); 210 218 … … 215 223 <?php if ( !empty( $voice_count ) ) : ?><li class="voice-count"><?php echo $voice_count; ?></li><?php endif; ?> 216 224 <?php if ( !empty( $last_reply ) ) : ?> 217 <li class="topic-freshness-author"><?php printf( __( 'Last reply from: %s', ' bbporg' ), bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_reply, 'size' => '15' ) ) ); ?></li>225 <li class="topic-freshness-author"><?php printf( __( 'Last reply from: %s', 'wporg-forums' ), bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_reply, 'size' => '15' ) ) ); ?></li> 218 226 <?php endif; ?> 219 <?php if ( !empty( $time_since ) ) : ?><li class="topic-freshness-time"><?php printf( __( 'Last activity: %s', ' bbporg' ), $time_since ); ?></li><?php endif; ?>227 <?php if ( !empty( $time_since ) ) : ?><li class="topic-freshness-time"><?php printf( __( 'Last activity: %s', 'wporg-forums' ), $time_since ); ?></li><?php endif; ?> 220 228 <?php if ( is_user_logged_in() ) : ?> 221 229 <?php $_topic_id = bbp_is_reply_edit() ? bbp_get_reply_topic_id() : $topic_id; ?> … … 240 248 // Has replies 241 249 if ( !empty( $reply_count ) ) { 242 $reply_text = sprintf( _n( '%s reply', '%s replies', $reply_count, ' bbpress' ), bbp_number_format( $reply_count ) );250 $reply_text = sprintf( _n( '%s reply', '%s replies', $reply_count, 'wporg-forums' ), bbp_number_format( $reply_count ) ); 243 251 } 244 252 … … 250 258 // Forum has no last active data 251 259 } else { 252 $topic_text = sprintf( _n( '%s topic', '%s topics', $topic_count, ' bbpress' ), bbp_number_format( $topic_count ) );260 $topic_text = sprintf( _n( '%s topic', '%s topics', $topic_count, 'wporg-forums' ), bbp_number_format( $topic_count ) ); 253 261 } 254 262 ?> … … 258 266 <?php if ( !empty( $reply_count ) ) : ?><li class="reply-count"><?php echo $reply_text; ?></li><?php endif; ?> 259 267 <?php if ( !empty( $last_active ) ) : ?> 260 <li class="forum-freshness-author"><?php printf( __( 'Last post by: %s', ' bbporg' ), bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_active ) ) ); ?></li>268 <li class="forum-freshness-author"><?php printf( __( 'Last post by: %s', 'wporg-forums' ), bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_active ) ) ); ?></li> 261 269 <?php endif; ?> 262 <?php if ( !empty( $time_since ) ) : ?><li class="forum-freshness-time"><?php printf( __( 'Last activity: %s', ' bbporg' ), $time_since ); ?></li><?php endif; ?>270 <?php if ( !empty( $time_since ) ) : ?><li class="forum-freshness-time"><?php printf( __( 'Last activity: %s', 'wporg-forums' ), $time_since ); ?></li><?php endif; ?> 263 271 <?php if ( is_user_logged_in() ) : ?> 264 272 <li class="forum-subscribe"><?php bbp_forum_subscription_link( array( 'forum_id' => $forum_id ) ); ?></li> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/header.php
r1521 r1535 3 3 <div id="headline"> 4 4 <div class="wrapper"> 5 <h2><a href="<?php bbp_forums_url(); ?>"> Forums</a></h2>5 <h2><a href="<?php bbp_forums_url(); ?>"><?php _e( 'Forums', 'wporg-forums' ); ?></a></h2> 6 6 <p class="login"> 7 7 <?php if ( is_user_logged_in() ) : ?> 8 <?php echo sprintf( esc_html__( 'Howdy, %s', 'wporg' ), '<a href="' . bbp_get_user_profile_url( bbp_get_current_user_id() ) . '">' . bbp_get_current_user_name() . '</a>' ); ?>8 <?php echo sprintf( __( 'Howdy, %s', 'wporg-forums' ), '<a href="' . bbp_get_user_profile_url( bbp_get_current_user_id() ) . '">' . bbp_get_current_user_name() . '</a>' ); ?> 9 9 10 10 <small>( 11 11 <?php if ( bbp_is_user_keymaster() ) : ?> 12 <a href="<?php echo esc_url( admin_url() ); ?>"><?php esc_html_e( 'Admin', 'wporg' ); ?></a> |12 <a href="<?php echo esc_url( admin_url() ); ?>"><?php _e( 'Admin', 'wporg-forums' ); ?></a> | 13 13 <?php endif; ?> 14 <a href="<?php bbp_logout_url(); ?>"><?php esc_html_e( 'Sign Out', 'wporg' ); ?></a>14 <a href="<?php bbp_logout_url(); ?>"><?php _e( 'Sign Out', 'wporg-forums' ); ?></a> 15 15 )</small><br> 16 16 <?php else : ?> 17 17 18 18 <?php endif; ?> 19 19 </p> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/page-front-support.php
r1521 r1535 19 19 <div class="col-6" id="forum-welcome"> 20 20 21 <p class="intro"><?php _e( 'We’ve got a variety of resources to help you get the most out of WordPress. Your first stop should be our <a href="http://codex.wordpress.org">documentation</a>, where you’ll find information on everything from installing WordPress for the first time to creating your own themes and plugins.', 'wporg'); ?></p>22 <h3><?php _e( 'Getting Started Resources', 'wporg'); ?></h3>23 <p><?php _e( 'If you need help getting started with WordPress, try these articles.', 'wporg'); ?></p>21 <p class="intro"><?php _e( 'We’ve got a variety of resources to help you get the most out of WordPress. Your first stop should be our <a href="https://codex.wordpress.org">documentation</a>, where you’ll find information on everything from installing WordPress for the first time to creating your own themes and plugins.', 'wporg-forums' ); ?></p> 22 <h3><?php _e( 'Getting Started Resources', 'wporg-forums' ); ?></h3> 23 <p><?php _e( 'If you need help getting started with WordPress, try these articles.', 'wporg-forums' ); ?></p> 24 24 <ul> 25 <li><?php _e( '<a href="//codex.wordpress.org/Forum_Welcome">Welcome to the WordPress Support Forum</a>', 'wporg'); ?></li>26 <li><?php _e( '<a href="//codex.wordpress.org/New_To_WordPress_-_Where_to_Start">New to WordPress — Where to Start</a>', 'wporg'); ?></li>27 <li><?php _e( '<a href="//codex.wordpress.org/FAQ_Installation">Frequently Asked Questions about Installing WordPress</a>', 'wporg'); ?></li>28 <li><?php _e( '<a href="//codex.wordpress.org/First_Steps_With_WordPress">First Steps with WordPress</a>', 'wporg'); ?></li>29 <li><?php _e( '<a href="//codex.wordpress.org/Writing_Posts">Writing Posts</a>', 'wporg'); ?></li>30 <li><?php _e( '<a href="//make.wordpress.org/support/handbook/">Support Handbook</a>', 'wporg'); ?></li>25 <li><?php _e( '<a href="https://codex.wordpress.org/Forum_Welcome">Welcome to the WordPress Support Forum</a>', 'wporg-forums' ); ?></li> 26 <li><?php _e( '<a href="https://codex.wordpress.org/New_To_WordPress_-_Where_to_Start">New to WordPress — Where to Start</a>', 'wporg-forums' ); ?></li> 27 <li><?php _e( '<a href="https://codex.wordpress.org/FAQ_Installation">Frequently Asked Questions about Installing WordPress</a>', 'wporg-forums' ); ?></li> 28 <li><?php _e( '<a href="https://codex.wordpress.org/First_Steps_With_WordPress">First Steps with WordPress</a>', 'wporg-forums' ); ?></li> 29 <li><?php _e( '<a href="https://codex.wordpress.org/Writing_Posts">Writing Posts</a>', 'wporg-forums' ); ?></li> 30 <li><?php _e( '<a href="https://make.wordpress.org/support/handbook/">Support Handbook</a>', 'wporg-forums' ); ?></li> 31 31 </ul> 32 <h3><?php _e( 'Search the Support Forums', 'wporg'); ?></h3>33 <p><?php _e( 'Enter a few words that describe the problem you’re having.', 'wporg'); ?></p>32 <h3><?php _e( 'Search the Support Forums', 'wporg-forums' ); ?></h3> 33 <p><?php _e( 'Enter a few words that describe the problem you’re having.', 'wporg-forums' ); ?></p> 34 34 <form id="forumsearch" method="get" action="<?php bbp_search_url(); ?>"> 35 35 <input name="search" class="text" id="forumsearchbox" value="<?php echo esc_attr( bbp_get_search_terms() ); ?>" type="text"> 36 <input id="go" name="go" class="button" value="<?php esc_attr_e( 'Search', 'wporg ' ); ?>" type="submit">36 <input id="go" name="go" class="button" value="<?php esc_attr_e( 'Search', 'wporg-forums' ); ?>" type="submit"> 37 37 <input value="1" name="forums" type="hidden"> 38 38 </form> 39 <h3><?php _e( 'Hot Topics', 'wporg'); ?></h3>39 <h3><?php _e( 'Hot Topics', 'wporg-forums' ); ?></h3> 40 40 <p class="frontpageheatmap"> 41 41 <?php wp_tag_cloud( array( 'smallest' => 14, 'largest' => 24, 'number' => 22, 'taxonomy' => bbp_get_topic_tag_tax_id() ) ); ?> … … 52 52 53 53 <?php 54 55 54 $view_iterator = 0; 56 55 $topic_views = array_keys( array_reverse( bbp_get_views() ) ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/page-homepage.php
r1521 r1535 19 19 <div class="col-6" id="forum-welcome"> 20 20 21 <p class="intro"><?php _e( 'We’ve got a variety of resources to help you get the most out of WordPress. Your first stop should be our <a href="http://codex.wordpress.org">documentation</a>, where you’ll find information on everything from installing WordPress for the first time to creating your own themes and plugins.', 'wporg'); ?></p>22 <h3><?php _e( 'Getting Started Resources', 'wporg'); ?></h3>23 <p><?php _e( 'If you need help getting started with WordPress, try these articles.', 'wporg'); ?></p>21 <p class="intro"><?php _e( 'We’ve got a variety of resources to help you get the most out of WordPress. Your first stop should be our <a href="https://codex.wordpress.org">documentation</a>, where you’ll find information on everything from installing WordPress for the first time to creating your own themes and plugins.', 'wporg-forums' ); ?></p> 22 <h3><?php _e( 'Getting Started Resources', 'wporg-forums' ); ?></h3> 23 <p><?php _e( 'If you need help getting started with WordPress, try these articles.', 'wporg-forums' ); ?></p> 24 24 <ul> 25 <li><?php _e('<a href="//codex.wordpress.org/Forum_Welcome">Welcome to the WordPress Support Forum</a>', 'wporg'); ?></li> 26 <li><?php _e('<a href="//codex.wordpress.org/New_To_WordPress_-_Where_to_Start">New to WordPress — Where to Start</a>', 'wporg'); ?></li> 27 <li><?php _e('<a href="//codex.wordpress.org/FAQ_Installation">Frequently Asked Questions about Installing WordPress</a>', 'wporg'); ?></li> 28 <li><?php _e('<a href="//codex.wordpress.org/First_Steps_With_WordPress">First Steps with WordPress</a>', 'wporg'); ?></li> 29 <li><?php _e('<a href="//codex.wordpress.org/Writing_Posts">Writing Posts</a>', 'wporg'); ?></li> 25 <li><?php _e( '<a href="https://codex.wordpress.org/Forum_Welcome">Welcome to the WordPress Support Forum</a>', 'wporg-forums' ); ?></li> 26 <li><?php _e( '<a href="https://codex.wordpress.org/New_To_WordPress_-_Where_to_Start">New to WordPress — Where to Start</a>', 'wporg-forums' ); ?></li> 27 <li><?php _e( '<a href="https://codex.wordpress.org/FAQ_Installation">Frequently Asked Questions about Installing WordPress</a>', 'wporg-forums' ); ?></li> 28 <li><?php _e( '<a href="https://codex.wordpress.org/First_Steps_With_WordPress">First Steps with WordPress</a>', 'wporg-forums' ); ?></li> 29 <li><?php _e( '<a href="https://codex.wordpress.org/Writing_Posts">Writing Posts</a>', 'wporg-forums' ); ?></li> 30 <li><?php _e( '<a href="https://make.wordpress.org/support/handbook/">Support Handbook</a>', 'wporg-forums' ); ?></li> 30 31 </ul> 31 <h3><?php _e( 'Search the Support Forums', 'wporg'); ?></h3>32 <p><?php _e( 'Enter a few words that describe the problem you’re having.', 'wporg'); ?></p>32 <h3><?php _e( 'Search the Support Forums', 'wporg-forums' ); ?></h3> 33 <p><?php _e( 'Enter a few words that describe the problem you’re having.', 'wporg-forums' ); ?></p> 33 34 <form id="forumsearch" method="get" action="<?php bbp_search_url(); ?>"> 34 35 <input name="search" class="text" id="forumsearchbox" value="<?php echo esc_attr( bbp_get_search_terms() ); ?>" type="text"> 35 <input id="go" name="go" class="button" value="<?php esc_attr_e( 'Search', 'wporg ' ); ?>" type="submit">36 <input id="go" name="go" class="button" value="<?php esc_attr_e( 'Search', 'wporg-forums' ); ?>" type="submit"> 36 37 <input value="1" name="forums" type="hidden"> 37 38 </form> 38 <h3><?php _e( 'Hot Topics', 'wporg'); ?></h3>39 <h3><?php _e( 'Hot Topics', 'wporg-forums' ); ?></h3> 39 40 <p class="frontpageheatmap"> 40 41 <?php wp_tag_cloud( array( 'smallest' => 14, 'largest' => 24, 'number' => 22, 'taxonomy' => bbp_get_topic_tag_tax_id() ) ); ?> … … 49 50 50 51 <?php 51 52 52 $view_iterator = 0; 53 53 $topic_views = array_keys( array_reverse( bbp_get_views() ) ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/sidebar.php
r1521 r1535 2 2 3 3 <?php if ( function_exists( 'is_bbpress' ) && ( is_bbpress() ) || is_page( 'new-topic' ) ) : ?> 4 4 5 5 <?php if ( bbp_is_single_forum() || bb_base_topic_search_query( false ) ) : ?> 6 6 7 7 <div> 8 <h3><?php _e( 'Forum Info', ' bbporg'); ?></h3>8 <h3><?php _e( 'Forum Info', 'wporg-forums' ); ?></h3> 9 9 <ul class="forum-info"> 10 10 <?php bb_base_single_forum_description(); ?> … … 15 15 16 16 <div> 17 <h3><?php _e( 'Forum Feeds', ' bbporg'); ?></h3>17 <h3><?php _e( 'Forum Feeds', 'wporg-forums' ); ?></h3> 18 18 <ul class="forum-feeds"> 19 <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/" title="Forum Posts">Recent Posts</a></li>20 <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/?type=topic" title="Forum Topics">Recent Topics</a></li>19 <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/"><?php _e( 'Recent Posts', 'wporg-forums' ); ?></a></li> 20 <li><a class="feed" href="<?php bbp_forum_permalink(); ?>feed/?type=topic"><?php _e( 'Recent Topics', 'wporg-forums' ); ?></a></li> 21 21 </ul> 22 22 </div> … … 25 25 26 26 <div> 27 <h3><?php _e( 'Topic Info', ' bbporg'); ?></h3>27 <h3><?php _e( 'Topic Info', 'wporg-forums' ); ?></h3> 28 28 <ul class="topic-info"> 29 29 <?php bb_base_single_topic_description(); ?> … … 33 33 <div> 34 34 <?php bbp_topic_tag_list( 0, array( 35 'before' => '<h3> Topic Tags</h3><ul class="topic-tags"><li>',35 'before' => '<h3>' . __( 'Topic Tags', 'wporg-forums' ) . '</h3><ul class="topic-tags"><li>', 36 36 'after' => '</li></ul>', 37 37 'sep' => '</li><li>', … … 46 46 <?php bbp_topic_admin_links( array ( 47 47 'id' => bbp_get_topic_id(), 48 'before' => '<h3> Topic Admin</h3><ul class="topic-admin-links"><li>',48 'before' => '<h3>' . __( 'Topic Admin', 'wporg-forums' ) . '</h3><ul class="topic-admin-links"><li>', 49 49 'after' => '</li></ul>', 50 50 'sep' => '</li><li>', … … 58 58 59 59 <div> 60 <h3><?php _e( 'Forums', ' bbporg'); ?></h3>60 <h3><?php _e( 'Forums', 'wporg-forums' ); ?></h3> 61 61 <?php echo do_shortcode( '[bbp-forum-index]' ); ?> 62 62 </div> … … 64 64 65 65 <div> 66 <h3><?php _e( 'Views', ' bbporg'); ?></h3>66 <h3><?php _e( 'Views', 'wporg-forums' ); ?></h3> 67 67 <ul class="topic-views"> 68 68 69 69 <?php foreach ( bbp_get_views() as $view => $args ) : ?> 70 70 71 <li><a class="bbp-view-title" href="<?php bbp_view_url( $view ); ?>" title="<?php bbp_view_title( $view ); ?>"><?php bbp_view_title( $view ); ?></a></li>71 <li><a class="bbp-view-title" href="<?php bbp_view_url( $view ); ?>"><?php bbp_view_title( $view ); ?></a></li> 72 72 73 73 <?php endforeach; ?> … … 77 77 78 78 <div> 79 <h3><?php _e( 'Feeds', ' bbporg'); ?></h3>79 <h3><?php _e( 'Feeds', 'wporg-forums' ); ?></h3> 80 80 <ul class="forum-feeds"> 81 <li><a class="feed" href="<?php bbp_forums_url(); ?>feed/" title="All Recent Posts">All Recent Posts</a></li>82 <li><a class="feed" href="<?php bbp_topics_url(); ?>feed/" title="All Recent Topics">All Recent Topics</a></li>81 <li><a class="feed" href="<?php bbp_forums_url(); ?>feed/"><?php _e( 'All Recent Posts', 'wporg-forums' ); ?></a></li> 82 <li><a class="feed" href="<?php bbp_topics_url(); ?>feed/"><?php _e( 'All Recent Topics', 'wporg-forums' ); ?></a></li> 83 83 </ul> 84 84 </div> 85 85 86 86 <div> 87 <h3><?php _e( 'Tags', ' bbporg'); ?></h3>87 <h3><?php _e( 'Tags', 'wporg-forums' ); ?></h3> 88 88 <?php echo do_shortcode( '[bbp-topic-tags]' ); ?> 89 89 </div> … … 94 94 95 95 <div class="feature"> 96 <h3><?php _e( 'WordPress', 'bbporg'); ?></h3>96 <h3><?php _e( 'WordPress', 'wporg-forums' ); ?></h3> 97 97 <p><a href="http://wordpress.org"><img width="78" height="58" alt="" src="<?php echo get_template_directory_uri(); ?>/images/wordpress.gif"/></a>The world’s most powerful web publishing software.</p> 98 98 </div> 99 99 <div class="feature"> 100 <h3><?php _e( 'bbPress', 'bbporg'); ?></h3>100 <h3><?php _e( 'bbPress', 'wporg-forums' ); ?></h3> 101 101 <p><a href="http://bbpress.org"><img width="78" height="58" alt="" src="<?php echo get_template_directory_uri(); ?>/images/bbpress.gif"/></a>Simple and elegant forum software from the creators of WordPress.</p> 102 102 </div> 103 103 <div style="margin-right: 0pt;" class="feature"> 104 <h3><?php _e(' BuddyPress', 'bbporg'); ?></h3>104 <h3><?php _e(' BuddyPress', 'wporg-forums' ); ?></h3> 105 105 <p><a href="http://buddypress.org"><img width="78" height="58" alt="" src="<?php echo get_template_directory_uri(); ?>/images/buddypress.gif"/></a>Create a fully featured niche social-network with a few easy clicks.</p> 106 106 </div> … … 109 109 110 110 <div> 111 <h3><?php _e( 'Categories', ' bbporg'); ?></h3>111 <h3><?php _e( 'Categories', 'wporg-forums' ); ?></h3> 112 112 <ul class="blog-categories"> 113 113 <?php wp_list_categories( array( 'title_li' => false ) ); ?> … … 116 116 117 117 <div> 118 <h3><?php _e( 'Tags', ' bbporg'); ?></h3>118 <h3><?php _e( 'Tags', 'wporg-forums' ); ?></h3> 119 119 <?php wp_tag_cloud(); ?> 120 120 </div>
Note: See TracChangeset
for help on using the changeset viewer.