Changeset 3275
- Timestamp:
- 05/31/2016 05:21:00 PM (8 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/themes
- Files:
-
- 2 deleted
- 72 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/404.php
r2 r3275 14 14 <article id="post-0" class="post error404 not-found"> 15 15 <header class="entry-header"> 16 <h1 class="entry-title"><?php _e( 'Oops! That page can’t be found.', 'w cbs' ); ?></h1>16 <h1 class="entry-title"><?php _e( 'Oops! That page can’t be found.', 'wordcamporg' ); ?></h1> 17 17 </header> 18 18 19 19 <div class="entry-content"> 20 <p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'w cbs' ); ?></p>20 <p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'wordcamporg' ); ?></p> 21 21 22 22 <?php get_search_form(); ?> … … 25 25 26 26 <div class="widget"> 27 <h2 class="widgettitle"><?php _e( 'Most Used Categories', 'w cbs' ); ?></h2>27 <h2 class="widgettitle"><?php _e( 'Most Used Categories', 'wordcamporg' ); ?></h2> 28 28 <ul> 29 29 <?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?> … … 33 33 <?php 34 34 /* translators: %1$s: smilie */ 35 $archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'w cbs' ), convert_smilies( ':)' ) ) . '</p>';35 $archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'wordcamporg' ), convert_smilies( ':)' ) ) . '</p>'; 36 36 the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" ); 37 37 ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/archive.php
r2 r3275 20 20 <?php 21 21 if ( is_category() ) { 22 printf( __( 'Category Archives: %s', 'w cbs' ), '<span>' . single_cat_title( '', false ) . '</span>' );22 printf( __( 'Category Archives: %s', 'wordcamporg' ), '<span>' . single_cat_title( '', false ) . '</span>' ); 23 23 24 24 } elseif ( is_tag() ) { 25 printf( __( 'Tag Archives: %s', 'w cbs' ), '<span>' . single_tag_title( '', false ) . '</span>' );25 printf( __( 'Tag Archives: %s', 'wordcamporg' ), '<span>' . single_tag_title( '', false ) . '</span>' ); 26 26 27 27 } elseif ( is_author() ) { … … 30 30 */ 31 31 the_post(); 32 printf( __( 'Author Archives: %s', 'w cbs' ), '<span class="vcard"><a class="url fn n" href="' . get_author_posts_url( get_the_author_meta( "ID" ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' );32 printf( __( 'Author Archives: %s', 'wordcamporg' ), '<span class="vcard"><a class="url fn n" href="' . get_author_posts_url( get_the_author_meta( "ID" ) ) . '" title="' . esc_attr( get_the_author() ) . '" rel="me">' . get_the_author() . '</a></span>' ); 33 33 /* Since we called the_post() above, we need to 34 34 * rewind the loop back to the beginning that way … … 38 38 39 39 } elseif ( is_day() ) { 40 printf( __( 'Daily Archives: %s', 'w cbs' ), '<span>' . get_the_date() . '</span>' );40 printf( __( 'Daily Archives: %s', 'wordcamporg' ), '<span>' . get_the_date() . '</span>' ); 41 41 42 42 } elseif ( is_month() ) { 43 printf( __( 'Monthly Archives: %s', 'w cbs' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );43 printf( __( 'Monthly Archives: %s', 'wordcamporg' ), '<span>' . get_the_date( 'F Y' ) . '</span>' ); 44 44 45 45 } elseif ( is_year() ) { 46 printf( __( 'Yearly Archives: %s', 'w cbs' ), '<span>' . get_the_date( 'Y' ) . '</span>' );46 printf( __( 'Yearly Archives: %s', 'wordcamporg' ), '<span>' . get_the_date( 'Y' ) . '</span>' ); 47 47 48 48 } else { 49 _e( 'Archives', 'w cbs' );49 _e( 'Archives', 'wordcamporg' ); 50 50 51 51 } -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/comments.php
r2 r3275 30 30 <h2 class="comments-title"> 31 31 <?php 32 printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'w cbs' ),32 printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'wordcamporg' ), 33 33 number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' ); 34 34 ?> … … 37 37 <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 38 38 <nav role="navigation" id="comment-nav-above" class="site-navigation comment-navigation"> 39 <h1 class="assistive-text"><?php _e( 'Comment navigation', 'w cbs' ); ?></h1>40 <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'w cbs' ) ); ?></div>41 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'w cbs' ) ); ?></div>39 <h1 class="assistive-text"><?php _e( 'Comment navigation', 'wordcamporg' ); ?></h1> 40 <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'wordcamporg' ) ); ?></div> 41 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'wordcamporg' ) ); ?></div> 42 42 </nav> 43 43 <?php endif; // check for comment navigation ?> … … 57 57 <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> 58 58 <nav role="navigation" id="comment-nav-below" class="site-navigation comment-navigation"> 59 <h1 class="assistive-text"><?php _e( 'Comment navigation', 'w cbs' ); ?></h1>60 <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'w cbs' ) ); ?></div>61 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'w cbs' ) ); ?></div>59 <h1 class="assistive-text"><?php _e( 'Comment navigation', 'wordcamporg' ); ?></h1> 60 <div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'wordcamporg' ) ); ?></div> 61 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'wordcamporg' ) ); ?></div> 62 62 </nav> 63 63 <?php endif; // check for comment navigation ?> … … 69 69 if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : 70 70 ?> 71 <p class="nocomments"><?php _e( 'Comments are closed.', 'w cbs' ); ?></p>71 <p class="nocomments"><?php _e( 'Comments are closed.', 'wordcamporg' ); ?></p> 72 72 <?php endif; ?> 73 73 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/content-page.php
r2 r3275 15 15 <div class="entry-content"> 16 16 <?php the_content(); ?> 17 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'w cbs' ), 'after' => '</div>' ) ); ?>18 <?php edit_post_link( __( 'Edit', 'w cbs' ), '<span class="edit-link">', '</span>' ); ?>17 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 18 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?> 19 19 </div><!-- .entry-content --> 20 20 </article><!-- #post-<?php the_ID(); ?> --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/content-single.php
r2 r3275 17 17 <div class="entry-content"> 18 18 <?php the_content(); ?> 19 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'w cbs' ), 'after' => '</div>' ) ); ?>19 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 20 20 </div><!-- .entry-content --> 21 21 … … 23 23 <?php 24 24 /* translators: used between list items, there is a space after the comma */ 25 $category_list = get_the_category_list( __( ', ', 'w cbs' ) );25 $category_list = get_the_category_list( __( ', ', 'wordcamporg' ) ); 26 26 27 27 /* translators: used between list items, there is a space after the comma */ … … 31 31 // This blog only has 1 category so we just need to worry about tags in the meta text 32 32 if ( '' != $tag_list ) { 33 $meta_text = __( 'This entry was tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'w cbs' );33 $meta_text = __( 'This entry was tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 34 34 } else { 35 $meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'w cbs' );35 $meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 36 36 } 37 37 … … 39 39 // But this blog has loads of categories so we should probably display them here 40 40 if ( '' != $tag_list ) { 41 $meta_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'w cbs' );41 $meta_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 42 42 } else { 43 $meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'w cbs' );43 $meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 44 44 } 45 45 … … 55 55 ?> 56 56 57 <?php edit_post_link( __( 'Edit', 'w cbs' ), '<span class="edit-link">', '</span>' ); ?>57 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?> 58 58 </footer><!-- .entry-meta --> 59 59 </article><!-- #post-<?php the_ID(); ?> --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/content.php
r1950 r3275 8 8 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 9 9 <header class="entry-header"> 10 <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'w cbs' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>10 <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> 11 11 12 12 <?php if ( 'post' == get_post_type() ) : ?> … … 25 25 <?php the_content( sprintf( 26 26 // translators: The title of the post to continue reading 27 __( 'Continue reading %s <span class="meta-nav">→</span>', 'w cbs' ),27 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamporg' ), 28 28 the_title( '<span class="assistive-text">', '</span> ', false ) 29 29 ) ); ?> 30 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'w cbs' ), 'after' => '</div>' ) ); ?>30 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 31 31 </div><!-- .entry-content --> 32 32 <?php endif; ?> … … 36 36 <?php 37 37 /* translators: used between list items, there is a space after the comma */ 38 $categories_list = get_the_category_list( __( ', ', 'w cbs' ) );38 $categories_list = get_the_category_list( __( ', ', 'wordcamporg' ) ); 39 39 if ( $categories_list && wcbs_categorized_blog() ) : 40 40 ?> 41 41 <span class="cat-links"> 42 <?php printf( __( 'Posted in %1$s', 'w cbs' ), $categories_list ); ?>42 <?php printf( __( 'Posted in %1$s', 'wordcamporg' ), $categories_list ); ?> 43 43 </span> 44 44 <?php endif; // End if categories ?> … … 46 46 <?php 47 47 /* translators: used between list items, there is a space after the comma */ 48 $tags_list = get_the_tag_list( '', __( ', ', 'w cbs' ) );48 $tags_list = get_the_tag_list( '', __( ', ', 'wordcamporg' ) ); 49 49 if ( $tags_list ) : 50 50 ?> 51 51 <span class="sep"> | </span> 52 52 <span class="tag-links"> 53 <?php printf( __( 'Tagged %1$s', 'w cbs' ), $tags_list ); ?>53 <?php printf( __( 'Tagged %1$s', 'wordcamporg' ), $tags_list ); ?> 54 54 </span> 55 55 <?php endif; // End if $tags_list ?> … … 58 58 <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?> 59 59 <span class="sep"> | </span> 60 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'w cbs' ), __( '1 Comment', 'wcbs' ), __( '% Comments', 'wcbs' ) ); ?></span>60 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcamporg' ), __( '1 Comment', 'wordcamporg' ), __( '% Comments', 'wordcamporg' ) ); ?></span> 61 61 <?php endif; ?> 62 62 63 <?php edit_post_link( __( 'Edit', 'w cbs' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>63 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?> 64 64 </footer><!-- #entry-meta --> 65 65 </article><!-- #post-<?php the_ID(); ?> --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/footer.php
r2 r3275 28 28 <?php do_action( 'wcbs_credits' ); ?> 29 29 30 <a class="site-info-generator" href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'w cbs' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'wcbs' ), 'WordPress' ); ?></a>30 <a class="site-info-generator" href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'wordcamporg' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'wordcamporg' ), 'WordPress' ); ?></a> 31 31 32 <a class="site-info-network" href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'w cbs' ); ?>"><?php _e('Go to WordCamp Central', 'wcbs'); ?></a>32 <a class="site-info-network" href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcamporg' ); ?>"><?php _e('Go to WordCamp Central', 'wordcamporg'); ?></a> 33 33 34 34 </div><!-- .site-info --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/functions.php
r2 r3275 59 59 60 60 /** 61 * Make theme available for translation62 * Translations can be filed in the /languages/ directory63 * If you're building a theme based on WCBS, use a find and replace64 * to change 'wcbs' to the name of your theme in all the template files65 */66 load_theme_textdomain( 'wcbs', get_template_directory() . '/languages' );67 68 /**69 61 * Add default posts and comments RSS feed links to head 70 62 */ … … 80 72 */ 81 73 register_nav_menus( array( 82 'primary' => __( 'Primary Menu', 'w cbs' ),74 'primary' => __( 'Primary Menu', 'wordcamporg' ), 83 75 ) ); 84 76 … … 100 92 // Generic main Sidebar Widget Area - Will show in all pages. Will load default content. 101 93 register_sidebar( array( 102 'name' => __( 'Primary Sidebar', 'w cbs' ),94 'name' => __( 'Primary Sidebar', 'wordcamporg' ), 103 95 'id' => 'sidebar-1', 104 'description' => __( 'Main Widgets Sidebar. Shows up in all pages.', 'w cbs' ),96 'description' => __( 'Main Widgets Sidebar. Shows up in all pages.', 'wordcamporg' ), 105 97 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 106 98 'after_widget' => "</aside>", … … 110 102 // Generic main Sidebar Widget Area - Will show in all pages. Empty by default. 111 103 register_sidebar( array( 112 'name' => __( 'Secondary Sidebar', 'w cbs' ),104 'name' => __( 'Secondary Sidebar', 'wordcamporg' ), 113 105 'id' => 'sidebar-2', 114 'description' => __( 'Secondary Widgets Sidebar - shows up in all pages after the Primary Sidebar block.', 'w cbs' ),106 'description' => __( 'Secondary Widgets Sidebar - shows up in all pages after the Primary Sidebar block.', 'wordcamporg' ), 115 107 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 116 108 'after_widget' => "</aside>", … … 121 113 // After Header Widget Area - located after the #masthead header block. Will show in all pages except the homepage. Empty by default. 122 114 register_sidebar( array( 123 'name' => __( 'After Header', 'w cbs' ),115 'name' => __( 'After Header', 'wordcamporg' ), 124 116 'id' => 'after-header', 125 'description' => __( 'Will show a widgets area, after the #masthead header, in all pages except the homepage.', 'w cbs' ),117 'description' => __( 'Will show a widgets area, after the #masthead header, in all pages except the homepage.', 'wordcamporg' ), 126 118 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 127 119 'after_widget' => "</aside>", … … 131 123 // After Header Widget Area for the Homepage - located after the #masthead header block. Will show only on the homepage. Empty by default. 132 124 register_sidebar( array( 133 'name' => __( 'After Header (Homepage)', 'w cbs' ),125 'name' => __( 'After Header (Homepage)', 'wordcamporg' ), 134 126 'id' => 'after-header-homepage', 135 'description' => __( 'Will show a widgets area, after the #masthead header, only on the homepage.', 'w cbs' ),127 'description' => __( 'Will show a widgets area, after the #masthead header, only on the homepage.', 'wordcamporg' ), 136 128 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 137 129 'after_widget' => "</aside>", … … 142 134 // Before Content Widget Area - located inside the #main block, before any other content. Will show in all pages except the homepage. Empty by default. 143 135 register_sidebar( array( 144 'name' => __( 'Before Content', 'w cbs' ),136 'name' => __( 'Before Content', 'wordcamporg' ), 145 137 'id' => 'before-content', 146 'description' => __( 'Will show a widgets area, inside the #main block, before all the content, in all pages except the homepage.', 'w cbs' ),138 'description' => __( 'Will show a widgets area, inside the #main block, before all the content, in all pages except the homepage.', 'wordcamporg' ), 147 139 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 148 140 'after_widget' => "</aside>", … … 152 144 // Before Content Widget Area for the Homepage - located inside the #main block, before any other content. Will show only on the homepage. Empty by default. 153 145 register_sidebar( array( 154 'name' => __( 'Before Content (Homepage)', 'w cbs' ),146 'name' => __( 'Before Content (Homepage)', 'wordcamporg' ), 155 147 'id' => 'before-content-homepage', 156 'description' => __( 'Will show a widgets area, inside the #main block, before all the content, only on the homepage.', 'w cbs' ),148 'description' => __( 'Will show a widgets area, inside the #main block, before all the content, only on the homepage.', 'wordcamporg' ), 157 149 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 158 150 'after_widget' => "</aside>", … … 165 157 // Footer Widget Area 1 166 158 register_sidebar( array( 167 'name' => __( 'Footer Widget Area 1', 'w cbs' ),159 'name' => __( 'Footer Widget Area 1', 'wordcamporg' ), 168 160 'id' => 'footer-1', 169 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'w cbs' ),161 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ), 170 162 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 171 163 'after_widget' => "</aside>", … … 175 167 // Footer Widget Area 2 176 168 register_sidebar( array( 177 'name' => __( 'Footer Widget Area 2', 'w cbs' ),169 'name' => __( 'Footer Widget Area 2', 'wordcamporg' ), 178 170 'id' => 'footer-2', 179 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'w cbs' ),171 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ), 180 172 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 181 173 'after_widget' => "</aside>", … … 185 177 // Footer Widget Area 3 186 178 register_sidebar( array( 187 'name' => __( 'Footer Widget Area 3', 'w cbs' ),179 'name' => __( 'Footer Widget Area 3', 'wordcamporg' ), 188 180 'id' => 'footer-3', 189 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'w cbs' ),181 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ), 190 182 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 191 183 'after_widget' => "</aside>", … … 195 187 // Footer Widget Area 4 196 188 register_sidebar( array( 197 'name' => __( 'Footer Widget Area 4', 'w cbs' ),189 'name' => __( 'Footer Widget Area 4', 'wordcamporg' ), 198 190 'id' => 'footer-4', 199 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'w cbs' ),191 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ), 200 192 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 201 193 'after_widget' => "</aside>", … … 205 197 // Footer Widget Area 5 206 198 register_sidebar( array( 207 'name' => __( 'Footer Widget Area 5', 'w cbs' ),199 'name' => __( 'Footer Widget Area 5', 'wordcamporg' ), 208 200 'id' => 'footer-5', 209 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'w cbs' ),201 'description' => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ), 210 202 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 211 203 'after_widget' => "</aside>", -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/header.php
r2092 r3275 32 32 // Add a page number if necessary: 33 33 if ( $paged >= 2 || $page >= 2 ) 34 echo ' | ' . sprintf( __( 'Page %s', 'w cbs' ), max( $paged, $page ) );34 echo ' | ' . sprintf( __( 'Page %s', 'wordcamporg' ), max( $paged, $page ) ); 35 35 36 36 ?></title> … … 60 60 61 61 <nav role="navigation" class="site-navigation main-navigation"> 62 <h1 class="assistive-text"><?php _e( 'Menu', 'w cbs' ); ?></h1>63 <div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'w cbs' ); ?>"><?php _e( 'Skip to content', 'wcbs' ); ?></a></div>62 <h1 class="assistive-text"><?php _e( 'Menu', 'wordcamporg' ); ?></h1> 63 <div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'wordcamporg' ); ?>"><?php _e( 'Skip to content', 'wordcamporg' ); ?></a></div> 64 64 65 65 <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/image.php
r2 r3275 22 22 <?php 23 23 $metadata = wp_get_attachment_metadata(); 24 printf( __( 'Published <span class="entry-date"><time class="entry-date" datetime="%1$s" pubdate>%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%7$s</a>', 'w cbs' ),24 printf( __( 'Published <span class="entry-date"><time class="entry-date" datetime="%1$s" pubdate>%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s × %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%7$s</a>', 'wordcamporg' ), 25 25 esc_attr( get_the_date( 'c' ) ), 26 26 esc_html( get_the_date() ), … … 32 32 ); 33 33 ?> 34 <?php edit_post_link( __( 'Edit', 'w cbs' ), '<span class="sep"> | </span> <span class="edit-link">', '</span>' ); ?>34 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="sep"> | </span> <span class="edit-link">', '</span>' ); ?> 35 35 </div><!-- .entry-meta --> 36 36 37 37 <nav id="image-navigation"> 38 <span class="previous-image"><?php previous_image_link( false, __( '← Previous', 'w cbs' ) ); ?></span>39 <span class="next-image"><?php next_image_link( false, __( 'Next →', 'w cbs' ) ); ?></span>38 <span class="previous-image"><?php previous_image_link( false, __( '← Previous', 'wordcamporg' ) ); ?></span> 39 <span class="next-image"><?php next_image_link( false, __( 'Next →', 'wordcamporg' ) ); ?></span> 40 40 </nav><!-- #image-navigation --> 41 41 </header><!-- .entry-header --> … … 84 84 85 85 <?php the_content(); ?> 86 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'w cbs' ), 'after' => '</div>' ) ); ?>86 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 87 87 88 88 </div><!-- .entry-content --> … … 90 90 <footer class="entry-meta"> 91 91 <?php if ( comments_open() && pings_open() ) : // Comments and trackbacks open ?> 92 <?php printf( __( '<a class="comment-link" href="#respond" title="Post a comment">Post a comment</a> or leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'w cbs' ), get_trackback_url() ); ?>92 <?php printf( __( '<a class="comment-link" href="#respond" title="Post a comment">Post a comment</a> or leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'wordcamporg' ), get_trackback_url() ); ?> 93 93 <?php elseif ( ! comments_open() && pings_open() ) : // Only trackbacks open ?> 94 <?php printf( __( 'Comments are closed, but you can leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'w cbs' ), get_trackback_url() ); ?>94 <?php printf( __( 'Comments are closed, but you can leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'wordcamporg' ), get_trackback_url() ); ?> 95 95 <?php elseif ( comments_open() && ! pings_open() ) : // Only comments open ?> 96 <?php _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'w cbs' ); ?>96 <?php _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'wordcamporg' ); ?> 97 97 <?php elseif ( ! comments_open() && ! pings_open() ) : // Comments and trackbacks closed ?> 98 <?php _e( 'Both comments and trackbacks are currently closed.', 'w cbs' ); ?>98 <?php _e( 'Both comments and trackbacks are currently closed.', 'wordcamporg' ); ?> 99 99 <?php endif; ?> 100 <?php edit_post_link( __( 'Edit', 'w cbs' ), ' <span class="edit-link">', '</span>' ); ?>100 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), ' <span class="edit-link">', '</span>' ); ?> 101 101 </footer><!-- .entry-meta --> 102 102 </article><!-- #post-<?php the_ID(); ?> --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/inc/template-tags.php
r2 r3275 26 26 27 27 <nav role="navigation" id="<?php echo $nav_id; ?>" class="<?php echo $nav_class; ?>"> 28 <h1 class="assistive-text"><?php _e( 'Post navigation', 'w cbs' ); ?></h1>29 <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'w cbs' ) . '</span> %title' ); ?>30 <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'w cbs' ) . '</span>' ); ?>28 <h1 class="assistive-text"><?php _e( 'Post navigation', 'wordcamporg' ); ?></h1> 29 <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?> 30 <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamporg' ) . '</span>' ); ?> 31 31 </nav><!-- #<?php echo $nav_id; ?> --> 32 32 … … 34 34 35 35 <nav role="navigation" id="<?php echo $nav_id; ?>" class="<?php echo $nav_class; ?>"> 36 <h1 class="assistive-text"><?php _e( 'Post navigation', 'w cbs' ); ?></h1>36 <h1 class="assistive-text"><?php _e( 'Post navigation', 'wordcamporg' ); ?></h1> 37 37 <?php if ( get_next_posts_link() ) : ?> 38 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'w cbs' ) ); ?></div>38 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'wordcamporg' ) ); ?></div> 39 39 <?php endif; ?> 40 40 41 41 <?php if ( get_previous_posts_link() ) : ?> 42 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'w cbs' ) ); ?></div>42 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'wordcamporg' ) ); ?></div> 43 43 <?php endif; ?> 44 44 </nav><!-- #<?php echo $nav_id; ?> --> … … 66 66 ?> 67 67 <li class="post pingback"> 68 <p><?php _e( 'Pingback:', 'w cbs' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'wcbs' ), ' ' ); ?></p>68 <p><?php _e( 'Pingback:', 'wordcamporg' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'wordcamporg' ), ' ' ); ?></p> 69 69 <?php 70 70 break; … … 76 76 <div class="comment-author vcard"> 77 77 <?php echo get_avatar( $comment, 40 ); ?> 78 <?php printf( __( '%s <span class="says">says:</span>', 'w cbs' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>78 <?php printf( __( '%s <span class="says">says:</span>', 'wordcamporg' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?> 79 79 </div><!-- .comment-author .vcard --> 80 80 <?php if ( $comment->comment_approved == '0' ) : ?> 81 <em><?php _e( 'Your comment is awaiting moderation.', 'w cbs' ); ?></em>81 <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamporg' ); ?></em> 82 82 <br /> 83 83 <?php endif; ?> … … 87 87 <?php 88 88 /* translators: 1: date, 2: time */ 89 printf( __( '%1$s at %2$s', 'w cbs' ), get_comment_date(), get_comment_time() ); ?>89 printf( __( '%1$s at %2$s', 'wordcamporg' ), get_comment_date(), get_comment_time() ); ?> 90 90 </time></a> 91 <?php edit_comment_link( __( '(Edit)', 'w cbs' ), ' ' );91 <?php edit_comment_link( __( '(Edit)', 'wordcamporg' ), ' ' ); 92 92 ?> 93 93 </div><!-- .comment-meta .commentmetadata --> … … 114 114 */ 115 115 function wcbs_posted_on() { 116 printf( __( 'Posted on <a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'w cbs' ),116 printf( __( 'Posted on <a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="byline"> by <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'wordcamporg' ), 117 117 esc_url( get_permalink() ), 118 118 esc_attr( get_the_time() ), … … 120 120 esc_html( get_the_date() ), 121 121 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 122 esc_attr( sprintf( __( 'View all posts by %s', 'w cbs' ), get_the_author() ) ),122 esc_attr( sprintf( __( 'View all posts by %s', 'wordcamporg' ), get_the_author() ) ), 123 123 esc_html( get_the_author() ) 124 124 ); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/inc/theme-options/theme-options.php
r2 r3275 36 36 add_settings_field( 37 37 'sample_checkbox', // Unique identifier for the field for this section 38 __( 'Sample Checkbox', 'w cbs' ), // Setting field label38 __( 'Sample Checkbox', 'wordcamporg' ), // Setting field label 39 39 'wcbs_settings_field_sample_checkbox', // Function that renders the settings field 40 40 'theme_options', // Menu slug, used to uniquely identify the page; see wcbs_theme_options_add_page() … … 42 42 ); 43 43 44 add_settings_field( 'sample_text_input', __( 'Sample Text Input', 'w cbs' ), 'wcbs_settings_field_sample_text_input', 'theme_options', 'general' );45 add_settings_field( 'sample_select_options', __( 'Sample Select Options', 'w cbs' ), 'wcbs_settings_field_sample_select_options', 'theme_options', 'general' );46 add_settings_field( 'sample_radio_buttons', __( 'Sample Radio Buttons', 'w cbs' ), 'wcbs_settings_field_sample_radio_buttons', 'theme_options', 'general' );47 add_settings_field( 'sample_textarea', __( 'Sample Textarea', 'w cbs' ), 'wcbs_settings_field_sample_textarea', 'theme_options', 'general' );44 add_settings_field( 'sample_text_input', __( 'Sample Text Input', 'wordcamporg' ), 'wcbs_settings_field_sample_text_input', 'theme_options', 'general' ); 45 add_settings_field( 'sample_select_options', __( 'Sample Select Options', 'wordcamporg' ), 'wcbs_settings_field_sample_select_options', 'theme_options', 'general' ); 46 add_settings_field( 'sample_radio_buttons', __( 'Sample Radio Buttons', 'wordcamporg' ), 'wcbs_settings_field_sample_radio_buttons', 'theme_options', 'general' ); 47 add_settings_field( 'sample_textarea', __( 'Sample Textarea', 'wordcamporg' ), 'wcbs_settings_field_sample_textarea', 'theme_options', 'general' ); 48 48 } 49 49 add_action( 'admin_init', 'wcbs_theme_options_init' ); … … 72 72 function wcbs_theme_options_add_page() { 73 73 $theme_page = add_theme_page( 74 __( 'Theme Options', 'w cbs' ), // Name of page75 __( 'Theme Options', 'w cbs' ), // Label in menu74 __( 'Theme Options', 'wordcamporg' ), // Name of page 75 __( 'Theme Options', 'wordcamporg' ), // Label in menu 76 76 'edit_theme_options', // Capability required 77 77 'theme_options', // Menu slug, used to uniquely identify the page … … 90 90 '0' => array( 91 91 'value' => '0', 92 'label' => __( 'Zero', 'w cbs' )92 'label' => __( 'Zero', 'wordcamporg' ) 93 93 ), 94 94 '1' => array( 95 95 'value' => '1', 96 'label' => __( 'One', 'w cbs' )96 'label' => __( 'One', 'wordcamporg' ) 97 97 ), 98 98 '2' => array( 99 99 'value' => '2', 100 'label' => __( 'Two', 'w cbs' )100 'label' => __( 'Two', 'wordcamporg' ) 101 101 ), 102 102 '3' => array( 103 103 'value' => '3', 104 'label' => __( 'Three', 'w cbs' )104 'label' => __( 'Three', 'wordcamporg' ) 105 105 ), 106 106 '4' => array( 107 107 'value' => '4', 108 'label' => __( 'Four', 'w cbs' )108 'label' => __( 'Four', 'wordcamporg' ) 109 109 ), 110 110 '5' => array( 111 111 'value' => '3', 112 'label' => __( 'Five', 'w cbs' )112 'label' => __( 'Five', 'wordcamporg' ) 113 113 ) 114 114 ); … … 126 126 'yes' => array( 127 127 'value' => 'yes', 128 'label' => __( 'Yes', 'w cbs' )128 'label' => __( 'Yes', 'wordcamporg' ) 129 129 ), 130 130 'no' => array( 131 131 'value' => 'no', 132 'label' => __( 'No', 'w cbs' )132 'label' => __( 'No', 'wordcamporg' ) 133 133 ), 134 134 'maybe' => array( 135 135 'value' => 'maybe', 136 'label' => __( 'Maybe', 'w cbs' )136 'label' => __( 'Maybe', 'wordcamporg' ) 137 137 ) 138 138 ); … … 172 172 <label for"sample-checkbox"> 173 173 <input type="checkbox" name="wcbs_theme_options[sample_checkbox]" id="sample-checkbox" <?php checked( 'on', $options['sample_checkbox'] ); ?> /> 174 <?php _e( 'A sample checkbox.', 'w cbs' ); ?>174 <?php _e( 'A sample checkbox.', 'wordcamporg' ); ?> 175 175 </label> 176 176 <?php … … 184 184 ?> 185 185 <input type="text" name="wcbs_theme_options[sample_text_input]" id="sample-text-input" value="<?php echo esc_attr( $options['sample_text_input'] ); ?>" /> 186 <label class="description" for="sample-text-input"><?php _e( 'Sample text input', 'w cbs' ); ?></label>186 <label class="description" for="sample-text-input"><?php _e( 'Sample text input', 'wordcamporg' ); ?></label> 187 187 <?php 188 188 } … … 210 210 ?> 211 211 </select> 212 <label class="description" for="sample_theme_options[selectinput]"><?php _e( 'Sample select input', 'w cbs' ); ?></label>212 <label class="description" for="sample_theme_options[selectinput]"><?php _e( 'Sample select input', 'wordcamporg' ); ?></label> 213 213 <?php 214 214 } … … 241 241 ?> 242 242 <textarea class="large-text" type="text" name="wcbs_theme_options[sample_textarea]" id="sample-textarea" cols="50" rows="10" /><?php echo esc_textarea( $options['sample_textarea'] ); ?></textarea> 243 <label class="description" for="sample-textarea"><?php _e( 'Sample textarea', 'w cbs' ); ?></label>243 <label class="description" for="sample-textarea"><?php _e( 'Sample textarea', 'wordcamporg' ); ?></label> 244 244 <?php 245 245 } … … 254 254 <div class="wrap"> 255 255 <?php screen_icon(); ?> 256 <h2><?php printf( __( '%s Theme Options', 'w cbs' ), get_current_theme() ); ?></h2>256 <h2><?php printf( __( '%s Theme Options', 'wordcamporg' ), get_current_theme() ); ?></h2> 257 257 <?php settings_errors(); ?> 258 258 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/options/class-wcb-button-option.php
r2 r3275 27 27 ?> 28 28 <tr> 29 <th><?php esc_html_e( 'Featured Button', 'wordcamp base' ); ?></th>29 <th><?php esc_html_e( 'Featured Button', 'wordcamporg' ); ?></th> 30 30 <td class="<?php echo $class; ?>"> 31 31 <label class="description checkbox-field" for="<?php echo $ids['visible']; ?>"> … … 34 34 checked( $this->get_option('visible') ); 35 35 ?> /> 36 <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcamp base' ); ?>36 <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcamporg' ); ?> 37 37 </label><br /> 38 38 <label class="description text-field" for="<?php echo $ids['text']; ?>"> 39 <span><?php esc_html_e( 'Text:', 'wordcamp base' ); ?></span>39 <span><?php esc_html_e( 'Text:', 'wordcamporg' ); ?></span> 40 40 <input type="text" id="<?php echo $ids['text']; ?>" 41 41 <?php $this->name('text'); ?> … … 43 43 </label><br /> 44 44 <label class="description text-field" for="<?php echo $ids['url']; ?>"> 45 <span><?php esc_html_e( 'URL:', 'wordcamp base' ); ?></span>45 <span><?php esc_html_e( 'URL:', 'wordcamporg' ); ?></span> 46 46 <input type="text" id="<?php echo $ids['url']; ?>" 47 47 <?php $this->name('url'); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/options/class-wcb-grid-option.php
r2 r3275 109 109 <input class="signature" type="hidden" <?php $this->name('layout'); ?> value="<?php echo esc_attr( serialize( $layout ) ); ?>"/> 110 110 <?php $this->render_row( $layout ); ?> 111 <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcamp base'); ?></a></div>111 <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcamporg'); ?></a></div> 112 112 <?php if ( $this->type != 'content' ): 113 113 $front_page_id = esc_attr( "front-page-only-$this->key" ); … … 118 118 checked( $this->get_option('front_only') ); 119 119 ?> /> 120 <?php esc_html_e( 'Front page only', 'wordcamp base' ); ?>120 <?php esc_html_e( 'Front page only', 'wordcamporg' ); ?> 121 121 </label> 122 122 <?php endif; ?> 123 123 <div class="picker"> 124 124 <div class="directions"> 125 <?php esc_html_e( 'Choose a new row layout.', 'wordcamp base' ); ?>126 <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcamp base'); ?></a>125 <?php esc_html_e( 'Choose a new row layout.', 'wordcamporg' ); ?> 126 <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcamporg'); ?></a> 127 127 </div> 128 128 <?php -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/options/class-wcb-options.php
r2 r3275 20 20 'key' => 'grid', 21 21 'default' => 'grid960', 22 'label' => __('Grid Width', 'wordcamp base'),22 'label' => __('Grid Width', 'wordcamporg'), 23 23 'values' => array( 24 'grid960' => __( '960px wide', 'wordcamp base' ),25 'grid720' => __( '720px wide', 'wordcamp base' ),24 'grid960' => __( '960px wide', 'wordcamporg' ), 25 'grid720' => __( '720px wide', 'wordcamporg' ), 26 26 ) 27 27 ) ); … … 34 34 'front_only' => true, 35 35 ), 36 'label' => __('After Header', 'wordcamp base'),36 'label' => __('After Header', 'wordcamporg'), 37 37 ) ); 38 38 … … 44 44 'front_only' => true, 45 45 ), 46 'label' => __('Before Content', 'wordcamp base'),46 'label' => __('Before Content', 'wordcamporg'), 47 47 ) ); 48 48 … … 57 57 'front_only' => false, 58 58 ), 59 'label' => __('Content', 'wordcamp base'),59 'label' => __('Content', 'wordcamporg'), 60 60 'type' => 'content', 61 61 ) ); … … 68 68 'front_only' => false, 69 69 ), 70 'label' => __('After Content', 'wordcamp base'),70 'label' => __('After Content', 'wordcamporg'), 71 71 ) ); 72 72 … … 78 78 'front_only' => false, 79 79 ), 80 'label' => __('Before Footer', 'wordcamp base'),80 'label' => __('Before Footer', 'wordcamporg'), 81 81 ) ); 82 82 … … 85 85 'default' => array( 86 86 'visible' => false, 87 'text' => __('Register now!', 'wordcamp base'),87 'text' => __('Register now!', 'wordcamporg'), 88 88 'url' => '', 89 89 ), … … 93 93 'key' => 'typekit', 94 94 'default' => 'jnd4dds', 95 'label' => __('Typekit', 'wordcamp base'),95 'label' => __('Typekit', 'wordcamporg'), 96 96 'values' => array( 97 'default' => __( 'Use the default Typekit fonts.', 'wordcamp base' ),98 'custom' => __( 'Use a custom Typekit key:', 'wordcamp base' ),99 'off' => __( 'Do not use any Typekit fonts.', 'wordcamp base' ),97 'default' => __( 'Use the default Typekit fonts.', 'wordcamporg' ), 98 'custom' => __( 'Use a custom Typekit key:', 'wordcamporg' ), 99 'off' => __( 'Do not use any Typekit fonts.', 'wordcamporg' ), 100 100 ), 101 101 ) ); … … 112 112 113 113 function admin_menu() { 114 $page = add_theme_page( __('Theme Options', 'wordcamp base'), __('Theme Options', 'wordcampbase'), 'edit_theme_options', 'wcb-theme-options', array( &$this, 'render' ) );114 $page = add_theme_page( __('Theme Options', 'wordcamporg'), __('Theme Options', 'wordcamporg'), 'edit_theme_options', 'wcb-theme-options', array( &$this, 'render' ) ); 115 115 116 116 add_action("wcb_enqueue_scripts_$page", array( &$this, 'enqueue_scripts' ) ); … … 142 142 <div class="wrap"> 143 143 <?php screen_icon(); ?> 144 <h2><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcamp base' ); ?></h2>144 <h2><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcamporg' ); ?></h2> 145 145 146 146 <?php if ( false !== $_REQUEST['updated'] ) : ?> 147 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamp base' ); ?></strong></p></div>147 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div> 148 148 <?php endif; ?> 149 149 150 150 <form method="post" action="options.php"> 151 151 <?php settings_fields( 'wcb_theme_options' ); ?> 152 <h3><?php _e('General Options', 'wordcamp base'); ?></h3>152 <h3><?php _e('General Options', 'wordcamporg'); ?></h3> 153 153 <table class="form-table"> 154 154 <?php … … 159 159 </table> 160 160 161 <h3><?php _e('Theme Layout', 'wordcamp base'); ?></h3>161 <h3><?php _e('Theme Layout', 'wordcamporg'); ?></h3> 162 162 <table class="form-table"> 163 163 <?php … … 165 165 166 166 <tr id="visibility-row"> 167 <th><?php esc_html_e( 'Show Rows', 'wordcamp base' ); ?></th>167 <th><?php esc_html_e( 'Show Rows', 'wordcamporg' ); ?></th> 168 168 <td> 169 169 <?php foreach ( $rows as $row ) { … … 174 174 175 175 <tr> 176 <th><?php esc_html_e( 'Row Layout', 'wordcamp base' ); ?></th>176 <th><?php esc_html_e( 'Row Layout', 'wordcamporg' ); ?></th> 177 177 <td> 178 178 <?php foreach ( $rows as $row ) { … … 184 184 </table> 185 185 <p class="submit"> 186 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamp base' ); ?>" />186 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" /> 187 187 </p> 188 188 </form> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sessions/class-wcb-session-template.php
r2 r3275 96 96 $track = wcb_get_session_track(); 97 97 98 $meta['speakers'] = sprintf( __('Presented by %s', 'wordcamp base'), wcb_get_session_speakers() );98 $meta['speakers'] = sprintf( __('Presented by %s', 'wordcamporg'), wcb_get_session_speakers() ); 99 99 100 100 if ( empty( $track ) ) { … … 102 102 103 103 } else { 104 $meta['track'] = sprintf( __('%s Track', 'wordcamp base'), $track );104 $meta['track'] = sprintf( __('%s Track', 'wordcamporg'), $track ); 105 105 106 106 $link = get_term_link( $track, WCB_TRACK_TAXONOMY ); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sessions/class-wcb-sessions.php
r2 r3275 24 24 'speakers' => array( 25 25 'type' => 'text', 26 'label' => __('Speakers', 'wordcamp base'),26 'label' => __('Speakers', 'wordcamporg'), 27 27 ) 28 28 ); … … 30 30 $box = wcb_get_metabox( 'WCB_Post_Metabox' ); 31 31 $box->add_instance( WCB_SESSION_POST_TYPE, array( 32 'title' => __('Speakers', 'wordcamp base'),32 'title' => __('Speakers', 'wordcamporg'), 33 33 'meta_manager' => $this->meta_manager, 34 34 'meta_fields' => $meta_fields, … … 42 42 // Session post type labels 43 43 $labels = array ( 44 'name' => __( 'Sessions', 'wordcamp base' ),45 'singular_name' => __( 'Session', 'wordcamp base' ),46 'add_new' => __( 'Add New', 'wordcamp base' ),47 'add_new_item' => __( 'Create New Session', 'wordcamp base' ),48 'edit' => __( 'Edit', 'wordcamp base' ),49 'edit_item' => __( 'Edit Session', 'wordcamp base' ),50 'new_item' => __( 'New Session', 'wordcamp base' ),51 'view' => __( 'View Session', 'wordcamp base' ),52 'view_item' => __( 'View Session', 'wordcamp base' ),53 'search_items' => __( 'Search Sessions', 'wordcamp base' ),54 'not_found' => __( 'No sessions found', 'wordcamp base' ),55 'not_found_in_trash' => __( 'No sessions found in Trash', 'wordcamp base' ),56 'parent_item_colon' => __( 'Parent Session:', 'wordcamp base' )44 'name' => __( 'Sessions', 'wordcamporg' ), 45 'singular_name' => __( 'Session', 'wordcamporg' ), 46 'add_new' => __( 'Add New', 'wordcamporg' ), 47 'add_new_item' => __( 'Create New Session', 'wordcamporg' ), 48 'edit' => __( 'Edit', 'wordcamporg' ), 49 'edit_item' => __( 'Edit Session', 'wordcamporg' ), 50 'new_item' => __( 'New Session', 'wordcamporg' ), 51 'view' => __( 'View Session', 'wordcamporg' ), 52 'view_item' => __( 'View Session', 'wordcamporg' ), 53 'search_items' => __( 'Search Sessions', 'wordcamporg' ), 54 'not_found' => __( 'No sessions found', 'wordcamporg' ), 55 'not_found_in_trash' => __( 'No sessions found in Trash', 'wordcamporg' ), 56 'parent_item_colon' => __( 'Parent Session:', 'wordcamporg' ) 57 57 ); 58 58 … … 98 98 // Labels 99 99 $labels = array ( 100 'name' => __( 'Tracks', 'wordcamp base'),101 'singular_name' => __( 'Track', 'wordcamp base'),102 'search_items' => __( 'Search Tracks', 'wordcamp base'),100 'name' => __( 'Tracks', 'wordcamporg'), 101 'singular_name' => __( 'Track', 'wordcamporg'), 102 'search_items' => __( 'Search Tracks', 'wordcamporg'), 103 103 'popular_items' => __( 'Popular Tracks','wordcampbase'), 104 'all_items' => __( 'All Tracks', 'wordcamp base'),105 'edit_item' => __( 'Edit Track', 'wordcamp base'),106 'update_item' => __( 'Update Track', 'wordcamp base'),107 'add_new_item' => __( 'Add Track', 'wordcamp base'),108 'new_item_name' => __( 'New Track', 'wordcamp base'),104 'all_items' => __( 'All Tracks', 'wordcamporg'), 105 'edit_item' => __( 'Edit Track', 'wordcamporg'), 106 'update_item' => __( 'Update Track', 'wordcamporg'), 107 'add_new_item' => __( 'Add Track', 'wordcamporg'), 108 'new_item_name' => __( 'New Track', 'wordcamporg'), 109 109 ); 110 110 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/speakers/class-wcb-speakers.php
r2 r3275 23 23 'email' => array( 24 24 'type' => 'text', 25 'label' => __('Gravatar Email', 'wordcamp base'),25 'label' => __('Gravatar Email', 'wordcamporg'), 26 26 ) 27 27 ); … … 29 29 $box = wcb_get_metabox( 'WCB_Post_Metabox' ); 30 30 $box->add_instance( WCB_SPEAKER_POST_TYPE, array( 31 'title' => __('Gravatar Email', 'wordcamp base'),31 'title' => __('Gravatar Email', 'wordcamporg'), 32 32 'meta_manager' => $this->meta_manager, 33 33 'meta_fields' => $meta_fields, … … 39 39 // Speaker post type labels 40 40 $labels = array ( 41 'name' => __( 'Speakers', 'wordcamp base' ),42 'singular_name' => __( 'Speaker', 'wordcamp base' ),43 'add_new' => __( 'Add New', 'wordcamp base' ),44 'add_new_item' => __( 'Create New Speaker', 'wordcamp base' ),45 'edit' => __( 'Edit', 'wordcamp base' ),46 'edit_item' => __( 'Edit Speaker', 'wordcamp base' ),47 'new_item' => __( 'New Speaker', 'wordcamp base' ),48 'view' => __( 'View Speaker', 'wordcamp base' ),49 'view_item' => __( 'View Speaker', 'wordcamp base' ),50 'search_items' => __( 'Search Speakers', 'wordcamp base' ),51 'not_found' => __( 'No speakers found', 'wordcamp base' ),52 'not_found_in_trash' => __( 'No speakers found in Trash', 'wordcamp base' ),53 'parent_item_colon' => __( 'Parent Speaker:', 'wordcamp base' )41 'name' => __( 'Speakers', 'wordcamporg' ), 42 'singular_name' => __( 'Speaker', 'wordcamporg' ), 43 'add_new' => __( 'Add New', 'wordcamporg' ), 44 'add_new_item' => __( 'Create New Speaker', 'wordcamporg' ), 45 'edit' => __( 'Edit', 'wordcamporg' ), 46 'edit_item' => __( 'Edit Speaker', 'wordcamporg' ), 47 'new_item' => __( 'New Speaker', 'wordcamporg' ), 48 'view' => __( 'View Speaker', 'wordcamporg' ), 49 'view_item' => __( 'View Speaker', 'wordcamporg' ), 50 'search_items' => __( 'Search Speakers', 'wordcamporg' ), 51 'not_found' => __( 'No speakers found', 'wordcamporg' ), 52 'not_found_in_trash' => __( 'No speakers found in Trash', 'wordcamporg' ), 53 'parent_item_colon' => __( 'Parent Speaker:', 'wordcamporg' ) 54 54 ); 55 55 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sponsors/class-wcb-sponsor-order.php
r2 r3275 13 13 $page = add_submenu_page( 14 14 'edit.php?post_type=' . WCB_SPONSOR_POST_TYPE, // Page type 15 __('Order Sponsor Levels', 'wordcamp base'), // Page title16 __('Order Sponsor Levels', 'wordcamp base'), // Menu title15 __('Order Sponsor Levels', 'wordcamporg'), // Page title 16 __('Order Sponsor Levels', 'wordcamporg'), // Menu title 17 17 'edit_posts', // Capability 18 18 'sponsor_levels', // Menu slug … … 57 57 <div class="wrap"> 58 58 <?php screen_icon(); ?> 59 <h2><?php _e( 'Order Sponsor Levels', 'wordcamp base' ); ?></h2>59 <h2><?php _e( 'Order Sponsor Levels', 'wordcamporg' ); ?></h2> 60 60 61 61 <?php if ( false !== $_REQUEST['updated'] ) : ?> 62 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamp base' ); ?></strong></p></div>62 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div> 63 63 <?php endif; ?> 64 64 … … 66 66 <?php settings_fields( 'wcb_sponsor_options' ); ?> 67 67 <div class="description sponsor-order-instructions"> 68 <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcamp base'); ?>68 <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcamporg'); ?> 69 69 </div> 70 70 <ul class="sponsor-order"> … … 77 77 </ul> 78 78 <p class="submit"> 79 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamp base' ); ?>" />79 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" /> 80 80 </p> 81 81 </form> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sponsors/class-wcb-sponsors.php
r2 r3275 25 25 // Sponsor post type labels 26 26 $labels = array ( 27 'name' => __( 'Sponsors', 'wordcamp base' ),28 'singular_name' => __( 'Sponsor', 'wordcamp base' ),29 'add_new' => __( 'Add New', 'wordcamp base' ),30 'add_new_item' => __( 'Create New Sponsor', 'wordcamp base' ),31 'edit' => __( 'Edit', 'wordcamp base' ),32 'edit_item' => __( 'Edit Sponsor', 'wordcamp base' ),33 'new_item' => __( 'New Sponsor', 'wordcamp base' ),34 'view' => __( 'View Sponsor', 'wordcamp base' ),35 'view_item' => __( 'View Sponsor', 'wordcamp base' ),36 'search_items' => __( 'Search Sponsors', 'wordcamp base' ),37 'not_found' => __( 'No sponsors found', 'wordcamp base' ),38 'not_found_in_trash' => __( 'No sponsors found in Trash', 'wordcamp base' ),39 'parent_item_colon' => __( 'Parent Sponsor:', 'wordcamp base' )27 'name' => __( 'Sponsors', 'wordcamporg' ), 28 'singular_name' => __( 'Sponsor', 'wordcamporg' ), 29 'add_new' => __( 'Add New', 'wordcamporg' ), 30 'add_new_item' => __( 'Create New Sponsor', 'wordcamporg' ), 31 'edit' => __( 'Edit', 'wordcamporg' ), 32 'edit_item' => __( 'Edit Sponsor', 'wordcamporg' ), 33 'new_item' => __( 'New Sponsor', 'wordcamporg' ), 34 'view' => __( 'View Sponsor', 'wordcamporg' ), 35 'view_item' => __( 'View Sponsor', 'wordcamporg' ), 36 'search_items' => __( 'Search Sponsors', 'wordcamporg' ), 37 'not_found' => __( 'No sponsors found', 'wordcamporg' ), 38 'not_found_in_trash' => __( 'No sponsors found in Trash', 'wordcamporg' ), 39 'parent_item_colon' => __( 'Parent Sponsor:', 'wordcamporg' ) 40 40 ); 41 41 … … 81 81 // Labels 82 82 $labels = array ( 83 'name' => __( 'Sponsor Levels', 'wordcamp base'),84 'singular_name' => __( 'Sponsor Level', 'wordcamp base'),85 'search_items' => __( 'Search Sponsor Levels', 'wordcamp base'),86 'popular_items' => __( 'Popular Sponsor Levels', 'wordcamp base'),87 'all_items' => __( 'All Sponsor Levels', 'wordcamp base'),88 'edit_item' => __( 'Edit Sponsor Level', 'wordcamp base'),83 'name' => __( 'Sponsor Levels', 'wordcamporg'), 84 'singular_name' => __( 'Sponsor Level', 'wordcamporg'), 85 'search_items' => __( 'Search Sponsor Levels', 'wordcamporg'), 86 'popular_items' => __( 'Popular Sponsor Levels', 'wordcamporg'), 87 'all_items' => __( 'All Sponsor Levels', 'wordcamporg'), 88 'edit_item' => __( 'Edit Sponsor Level', 'wordcamporg'), 89 89 'update_item' => __( 'Update Sponsor Level','wordcampbase'), 90 'add_new_item' => __( 'Add Sponsor Level', 'wordcamp base'),91 'new_item_name' => __( 'New Sponsor Level', 'wordcamp base'),90 'add_new_item' => __( 'Add Sponsor Level', 'wordcamporg'), 91 'new_item_name' => __( 'New Sponsor Level', 'wordcamporg'), 92 92 ); 93 93 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sponsors/class-wcb-widget-sponsors.php
r2 r3275 6 6 $widget_ops = array( 7 7 'classname' => 'wcb_widget_sponsors', 8 'description' => __( 'Your WordCamp’s Sponsors', 'wordcamp base' ),8 'description' => __( 'Your WordCamp’s Sponsors', 'wordcamporg' ), 9 9 ); 10 $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcamp base'), $widget_ops );10 $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcamporg'), $widget_ops ); 11 11 } 12 12 … … 37 37 while ( wcb_have_sponsors() ): 38 38 wcb_the_sponsor(); 39 ?><a class="sponsor-logo" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php39 ?><a class="sponsor-logo" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php 40 40 if ( has_post_thumbnail() ) 41 41 the_post_thumbnail(); … … 56 56 $title = $instance['title']; 57 57 ?> 58 <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wordcamp base'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>58 <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wordcamporg'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p> 59 59 <?php 60 60 } -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-footer.php
r2 r3275 18 18 <div id="site-generator"> 19 19 <?php do_action( 'twentyten_credits' ); ?> 20 <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'wordcamp base' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'wordcampbase' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'wordcampbase' ), 'WordPress' ); ?></a>20 <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'wordcamporg' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'wordcamporg' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'wordcamporg' ), 'WordPress' ); ?></a> 21 21 </div><!-- #site-generator --> 22 22 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-header.php
r2 r3275 10 10 <div id="return-to-central"> 11 11 <?php if ( false !== strpos($_SERVER['HTTP_HOST'], 'wordpress.org')) { ?> 12 <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcamp base' ); ?>"><?php _e('← WordPress.org', 'wordcampbase'); ?></a>12 <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcamporg' ); ?>"><?php _e('← WordPress.org', 'wordcamporg'); ?></a> 13 13 <?php } else { ?> 14 <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcamp base' ); ?>"><?php _e('← WordCamp Central', 'wordcampbase'); ?></a>14 <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcamporg' ); ?>"><?php _e('← WordCamp Central', 'wordcamporg'); ?></a> 15 15 <?php } ?> 16 16 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-menu.php
r2 r3275 10 10 <div id="access" role="navigation" class="clearfix"> 11 11 <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?> 12 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'wordcamp base' ); ?>"><?php _e( 'Skip to content', 'wordcampbase' ); ?></a></div>12 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'wordcamporg' ); ?>"><?php _e( 'Skip to content', 'wordcamporg' ); ?></a></div> 13 13 <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?> 14 14 <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-structure.php
r2 r3275 71 71 'after_header' => array( 72 72 'id' => 'after-header', 73 'name' => __('After Header', 'wordcamp base'),73 'name' => __('After Header', 'wordcamporg'), 74 74 ), 75 75 'before_content' => array( 76 76 'id' => 'before-content', 77 'name' => __('Before Content', 'wordcamp base'),77 'name' => __('Before Content', 'wordcamporg'), 78 78 ), 79 79 'content' => array( 80 80 'id' => 'content-row', 81 'name' => __('Content', 'wordcamp base'),81 'name' => __('Content', 'wordcamporg'), 82 82 ), 83 83 'after_content' => array( 84 84 'id' => 'after-content', 85 'name' => __('After Content', 'wordcamp base'),85 'name' => __('After Content', 'wordcamporg'), 86 86 ), 87 87 'before_footer' => array( 88 88 'id' => 'before-footer', 89 'name' => __('Before Footer', 'wordcamp base'),89 'name' => __('Before Footer', 'wordcamporg'), 90 90 ), 91 91 ); … … 100 100 101 101 if ( $option['front_only'] ) 102 $args['name'] = sprintf( __('Front Page: %s', 'wordcamp base'), $args['name'] );102 $args['name'] = sprintf( __('Front Page: %s', 'wordcamporg'), $args['name'] ); 103 103 104 104 $this->sidebars[ $id ] = new WCB_Sidebar_Row( $args ); … … 109 109 $this->sidebars['content'] = new WCB_Sidebar_Row( array( 110 110 'id' => 'content-row', 111 'name' => __('Content', 'wordcamp base'),111 'name' => __('Content', 'wordcamporg'), 112 112 'grid' => array( array( 12, 'content' ) ), 113 113 ) ); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/class-wcb-metabox.php
r1949 r3275 67 67 $defaults = array( 68 68 // 'id' => '', 69 'title' => __( 'Untitled' , 'wordcamp base'),69 'title' => __( 'Untitled' , 'wordcamporg'), 70 70 'context' => 'side', 71 71 'priority' => 'default', -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/functions.php
r2 r3275 1 1 <?php 2 3 load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );4 2 5 3 require_once TEMPLATEPATH . "/lib/utils/twentyten-overrides.php"; -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/header.php
r2092 r3275 10 10 11 11 if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { 12 $meta['category'] = sprintf( __('Posted in %s', 'wordcamp base'), get_the_category_list( ', ' ) );12 $meta['category'] = sprintf( __('Posted in %s', 'wordcamporg'), get_the_category_list( ', ' ) ); 13 13 } 14 14 if ( is_object_in_taxonomy( get_post_type(), 'tag' ) ) { 15 $meta['tag'] = sprintf( __('Tagged %s', 'wordcamp base'), get_the_tag_list( '', ', ' ) );15 $meta['tag'] = sprintf( __('Tagged %s', 'wordcamporg'), get_the_tag_list( '', ', ' ) ); 16 16 } 17 17 … … 73 73 // Add a page number if necessary: 74 74 if ( $paged >= 2 || $page >= 2 ) 75 echo ' | ' . sprintf( __( 'Page %s', 'wordcamp base' ), max( $paged, $page ) );75 echo ' | ' . sprintf( __( 'Page %s', 'wordcamporg' ), max( $paged, $page ) ); 76 76 echo "</title>"; 77 77 } -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/twentyten-functions.php
r1950 r3275 66 66 * @uses add_custom_background() To add support for a custom background. 67 67 * @uses add_editor_style() To style the visual editor. 68 * @uses load_theme_textdomain() For translation/localization support.69 68 * @uses add_custom_image_header() To add support for a custom header. 70 69 * @uses register_default_headers() To register the default custom header images provided with the theme. … … 83 82 // Add default posts and comments RSS feed links to head 84 83 add_theme_support( 'automatic-feed-links' ); 85 86 // Make theme available for translation87 // Translations can be filed in the /languages/ directory88 // load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );89 84 90 85 $locale = get_locale(); … … 95 90 // This theme uses wp_nav_menu() in one location. 96 91 register_nav_menus( array( 97 'primary' => __( 'Primary Navigation', 'wordcamp base' ),92 'primary' => __( 'Primary Navigation', 'wordcamporg' ), 98 93 ) ); 99 94 … … 131 126 'url' => '%s/images/headers/berries.jpg', 132 127 'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg', 133 'description' => __( 'Berries', 'wordcamp base' )128 'description' => __( 'Berries', 'wordcamporg' ) 134 129 ), 135 130 'cherryblossom' => array( 136 131 'url' => '%s/images/headers/cherryblossoms.jpg', 137 132 'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg', 138 'description' => __( 'Cherry Blossoms', 'wordcamp base' )133 'description' => __( 'Cherry Blossoms', 'wordcamporg' ) 139 134 ), 140 135 'concave' => array( 141 136 'url' => '%s/images/headers/concave.jpg', 142 137 'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg', 143 'description' => __( 'Concave', 'wordcamp base' )138 'description' => __( 'Concave', 'wordcamporg' ) 144 139 ), 145 140 'fern' => array( 146 141 'url' => '%s/images/headers/fern.jpg', 147 142 'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg', 148 'description' => __( 'Fern', 'wordcamp base' )143 'description' => __( 'Fern', 'wordcamporg' ) 149 144 ), 150 145 'forestfloor' => array( 151 146 'url' => '%s/images/headers/forestfloor.jpg', 152 147 'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg', 153 'description' => __( 'Forest Floor', 'wordcamp base' )148 'description' => __( 'Forest Floor', 'wordcamporg' ) 154 149 ), 155 150 'inkwell' => array( 156 151 'url' => '%s/images/headers/inkwell.jpg', 157 152 'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg', 158 'description' => __( 'Inkwell', 'wordcamp base' )153 'description' => __( 'Inkwell', 'wordcamporg' ) 159 154 ), 160 155 'path' => array( 161 156 'url' => '%s/images/headers/path.jpg', 162 157 'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg', 163 'description' => __( 'Path', 'wordcamp base' )158 'description' => __( 'Path', 'wordcamporg' ) 164 159 ), 165 160 'sunset' => array( 166 161 'url' => '%s/images/headers/sunset.jpg', 167 162 'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg', 168 'description' => __( 'Sunset', 'wordcamp base' )163 'description' => __( 'Sunset', 'wordcamporg' ) 169 164 ) 170 165 ) );*/ … … 237 232 sprintf( 238 233 // translators: The title of the post to continue reading 239 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamp base' ),234 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamporg' ), 240 235 sprintf( '<span class="assistive-text">%s</span> ', get_the_title() ) 241 236 ) … … 309 304 <div class="comment-author vcard"> 310 305 <?php echo get_avatar( $comment, 40 ); ?> 311 <?php printf( __( '%s <span class="says">says:</span>', 'wordcamp base' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>306 <?php printf( __( '%s <span class="says">says:</span>', 'wordcamporg' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?> 312 307 </div><!-- .comment-author .vcard --> 313 308 <?php if ( $comment->comment_approved == '0' ) : ?> 314 <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamp base' ); ?></em>309 <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamporg' ); ?></em> 315 310 <br /> 316 311 <?php endif; ?> … … 319 314 <?php 320 315 /* translators: 1: date, 2: time */ 321 printf( __( '%1$s at %2$s', 'wordcamp base' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'wordcampbase' ), ' ' );316 printf( __( '%1$s at %2$s', 'wordcamporg' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'wordcamporg' ), ' ' ); 322 317 ?> 323 318 </div><!-- .comment-meta .commentmetadata --> … … 336 331 ?> 337 332 <li class="post pingback"> 338 <p><?php _e( 'Pingback:', 'wordcamp base' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __('(Edit)', 'wordcampbase'), ' ' ); ?></p>333 <p><?php _e( 'Pingback:', 'wordcamporg' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __('(Edit)', 'wordcamporg'), ' ' ); ?></p> 339 334 <?php 340 335 break; … … 355 350 // Area 1, located at the top of the sidebar. 356 351 register_sidebar( array( 357 'name' => __( 'Primary Widget Area', 'wordcamp base' ),352 'name' => __( 'Primary Widget Area', 'wordcamporg' ), 358 353 'id' => 'primary-widget-area', 359 'description' => __( 'The primary widget area', 'wordcamp base' ),354 'description' => __( 'The primary widget area', 'wordcamporg' ), 360 355 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 361 356 'after_widget' => '</li>', … … 366 361 // Area 2, located below the Primary Widget Area in the sidebar. Empty by default. 367 362 register_sidebar( array( 368 'name' => __( 'Secondary Widget Area', 'wordcamp base' ),363 'name' => __( 'Secondary Widget Area', 'wordcamporg' ), 369 364 'id' => 'secondary-widget-area', 370 'description' => __( 'The secondary widget area', 'wordcamp base' ),365 'description' => __( 'The secondary widget area', 'wordcamporg' ), 371 366 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 372 367 'after_widget' => '</li>', … … 377 372 // Area 3, located in the footer. Empty by default. 378 373 register_sidebar( array( 379 'name' => __( 'First Footer Widget Area', 'wordcamp base' ),374 'name' => __( 'First Footer Widget Area', 'wordcamporg' ), 380 375 'id' => 'first-footer-widget-area', 381 'description' => __( 'The first footer widget area', 'wordcamp base' ),376 'description' => __( 'The first footer widget area', 'wordcamporg' ), 382 377 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 383 378 'after_widget' => '</li>', … … 388 383 // Area 4, located in the footer. Empty by default. 389 384 register_sidebar( array( 390 'name' => __( 'Second Footer Widget Area', 'wordcamp base' ),385 'name' => __( 'Second Footer Widget Area', 'wordcamporg' ), 391 386 'id' => 'second-footer-widget-area', 392 'description' => __( 'The second footer widget area', 'wordcamp base' ),387 'description' => __( 'The second footer widget area', 'wordcamporg' ), 393 388 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 394 389 'after_widget' => '</li>', … … 399 394 // Area 5, located in the footer. Empty by default. 400 395 register_sidebar( array( 401 'name' => __( 'Third Footer Widget Area', 'wordcamp base' ),396 'name' => __( 'Third Footer Widget Area', 'wordcamporg' ), 402 397 'id' => 'third-footer-widget-area', 403 'description' => __( 'The third footer widget area', 'wordcamp base' ),398 'description' => __( 'The third footer widget area', 'wordcamporg' ), 404 399 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 405 400 'after_widget' => '</li>', … … 410 405 // Area 6, located in the footer. Empty by default. 411 406 register_sidebar( array( 412 'name' => __( 'Fourth Footer Widget Area', 'wordcamp base' ),407 'name' => __( 'Fourth Footer Widget Area', 'wordcamporg' ), 413 408 'id' => 'fourth-footer-widget-area', 414 'description' => __( 'The fourth footer widget area', 'wordcamp base' ),409 'description' => __( 'The fourth footer widget area', 'wordcamporg' ), 415 410 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 416 411 'after_widget' => '</li>', … … 443 438 */ 444 439 function twentyten_posted_on() { 445 printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcamp base' ),440 printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcamporg' ), 446 441 'meta-prep meta-prep-author', 447 442 sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>', … … 452 447 sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 453 448 get_author_posts_url( get_the_author_meta( 'ID' ) ), 454 sprintf( esc_attr__( 'View all posts by %s', 'wordcamp base' ), get_the_author() ),449 sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ), 455 450 get_the_author() 456 451 ) … … 469 464 $tag_list = get_the_tag_list( '', ', ' ); 470 465 if ( $tag_list ) { 471 $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamp base' );466 $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 472 467 } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { 473 $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamp base' );468 $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 474 469 } else { 475 $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamp base' );470 $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 476 471 } 477 472 // Prints the string, replacing the placeholders. -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/twentyten-overrides.php
r2 r3275 3 3 function twentyten_posted_on() { 4 4 $meta = array(); 5 $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcamp base' ),5 $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcamporg' ), 6 6 sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>', 7 7 get_permalink(), … … 11 11 sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 12 12 get_author_posts_url( get_the_author_meta( 'ID' ) ), 13 sprintf( esc_attr__( 'View all posts by %s', 'wordcamp base' ), get_the_author() ),13 sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ), 14 14 get_the_author() 15 15 ) … … 20 20 'before' => '<span class="comments-link">', 21 21 'after' => '</span>', 22 'zero' => __( 'Leave a comment', 'wordcamp base' ),23 'one' => __( '1 Comment', 'wordcamp base' ),24 'many' => __( '% Comments', 'wordcamp base' ),22 'zero' => __( 'Leave a comment', 'wordcamporg' ), 23 'one' => __( '1 Comment', 'wordcamporg' ), 24 'many' => __( '% Comments', 'wordcamporg' ), 25 25 ); 26 26 27 27 $meta['edit'] = array( 28 'title' => __( 'Edit', 'wordcamp base' ),28 'title' => __( 'Edit', 'wordcamporg' ), 29 29 'before' => '<span class="edit-link">', 30 30 'after' => '</span>', -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/no-results.php
r2 r3275 12 12 <article id="post-0" class="post no-results not-found"> 13 13 <header class="entry-header"> 14 <h1 class="entry-title"><?php _e( 'Nothing Found', 'w cbs' ); ?></h1>14 <h1 class="entry-title"><?php _e( 'Nothing Found', 'wordcamporg' ); ?></h1> 15 15 </header><!-- .entry-header --> 16 16 … … 18 18 <?php if ( is_home() ) { ?> 19 19 20 <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'w cbs' ), admin_url( 'post-new.php' ) ); ?></p>20 <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'wordcamporg' ), admin_url( 'post-new.php' ) ); ?></p> 21 21 22 22 <?php } elseif ( is_search() ) { ?> 23 23 24 <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'w cbs' ); ?></p>24 <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'wordcamporg' ); ?></p> 25 25 <?php get_search_form(); ?> 26 26 27 27 <?php } else { ?> 28 28 29 <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'w cbs' ); ?></p>29 <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'wordcamporg' ); ?></p> 30 30 <?php get_search_form(); ?> 31 31 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/search.php
r2 r3275 15 15 16 16 <header class="page-header"> 17 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'w cbs' ), '<span>' . get_search_query() . '</span>' ); ?></h1>17 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'wordcamporg' ), '<span>' . get_search_query() . '</span>' ); ?></h1> 18 18 </header> 19 19 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/searchform.php
r2 r3275 8 8 ?> 9 9 <form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search"> 10 <label for="s" class="assistive-text"><?php _e( 'Search', 'w cbs' ); ?></label>11 <input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search …', 'w cbs' ); ?>" />12 <input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'w cbs' ); ?>" />10 <label for="s" class="assistive-text"><?php _e( 'Search', 'wordcamporg' ); ?></label> 11 <input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search …', 'wordcamporg' ); ?>" /> 12 <input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'wordcamporg' ); ?>" /> 13 13 </form> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/sidebar.php
r2 r3275 18 18 19 19 <aside id="archives" class="widget"> 20 <h1 class="widget-title"><?php _e( 'Archives', 'w cbs' ); ?></h1>20 <h1 class="widget-title"><?php _e( 'Archives', 'wordcamporg' ); ?></h1> 21 21 <ul> 22 22 <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?> … … 25 25 26 26 <aside id="meta" class="widget"> 27 <h1 class="widget-title"><?php _e( 'Meta', 'w cbs' ); ?></h1>27 <h1 class="widget-title"><?php _e( 'Meta', 'wordcamporg' ); ?></h1> 28 28 <ul> 29 29 <?php wp_register(); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/template-sessions.php
r2 r3275 29 29 ?> 30 30 <div id="post-<?php the_ID(); ?>" <?php post_class( 'session' ); ?>> 31 <h3 class="entry-title session-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h3>31 <h3 class="entry-title session-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h3> 32 32 <div class="entry-meta session-speakers"> 33 33 <?php wcb_entry_meta(); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/template-sponsors.php
r2 r3275 48 48 ?> 49 49 <div id="post-<?php the_ID(); ?>" <?php post_class( 'sponsor' ); ?>> 50 <h3 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php50 <h3 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php 51 51 if ( has_post_thumbnail() ) 52 52 the_post_thumbnail(); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/404.php
r2 r3275 14 14 15 15 <div id="post-0" class="post error404 not-found"> 16 <h1 class="entry-title"><?php _e( 'Not Found', 'wordcamp base' ); ?></h1>16 <h1 class="entry-title"><?php _e( 'Not Found', 'wordcamporg' ); ?></h1> 17 17 <div class="entry-content"> 18 <p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'wordcamp base' ); ?></p>18 <p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'wordcamporg' ); ?></p> 19 19 <?php get_search_form(); ?> 20 20 </div><!-- .entry-content --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/archive.php
r2 r3275 31 31 <h1 class="page-title"> 32 32 <?php if ( is_day() ) : ?> 33 <?php printf( __( 'Daily Archives: <span>%s</span>', 'wordcamp base' ), get_the_date() ); ?>33 <?php printf( __( 'Daily Archives: <span>%s</span>', 'wordcamporg' ), get_the_date() ); ?> 34 34 <?php elseif ( is_month() ) : ?> 35 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'wordcamp base' ), get_the_date('F Y') ); ?>35 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'wordcamporg' ), get_the_date('F Y') ); ?> 36 36 <?php elseif ( is_year() ) : ?> 37 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'wordcamp base' ), get_the_date('Y') ); ?>37 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'wordcamporg' ), get_the_date('Y') ); ?> 38 38 <?php else : ?> 39 <?php _e( 'Blog Archives', 'wordcamp base' ); ?>39 <?php _e( 'Blog Archives', 'wordcamporg' ); ?> 40 40 <?php endif; ?> 41 41 </h1> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/attachment.php
r1950 r3275 16 16 17 17 <?php if ( ! empty( $post->post_parent ) ) : ?> 18 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'wordcamp base' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php18 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'wordcamporg' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php 19 19 /* translators: %s - title of parent post */ 20 printf( __( '<span class="meta-nav">←</span> %s', 'wordcamp base' ), get_the_title( $post->post_parent ) );20 printf( __( '<span class="meta-nav">←</span> %s', 'wordcamporg' ), get_the_title( $post->post_parent ) ); 21 21 ?></a></p> 22 22 <?php endif; ?> … … 27 27 <div class="entry-meta"> 28 28 <?php 29 printf(__('<span class="%1$s">By</span> %2$s', 'wordcamp base' ),29 printf(__('<span class="%1$s">By</span> %2$s', 'wordcamporg' ), 30 30 'meta-prep meta-prep-author', 31 31 sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 32 32 get_author_posts_url( get_the_author_meta( 'ID' ) ), 33 sprintf( esc_attr__( 'View all posts by %s', 'wordcamp base' ), get_the_author() ),33 sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ), 34 34 get_the_author() 35 35 ) … … 38 38 <span class="meta-sep">|</span> 39 39 <?php 40 printf( __('<span class="%1$s">Published</span> %2$s', 'wordcamp base' ),40 printf( __('<span class="%1$s">Published</span> %2$s', 'wordcamporg' ), 41 41 'meta-prep meta-prep-entry-date', 42 42 sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>', … … 52 52 echo ' <span class="meta-sep">|</span> '; 53 53 54 printf( __( 'Full size is %s pixels', 'wordcamp base' ),54 printf( __( 'Full size is %s pixels', 'wordcamporg' ), 55 55 sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>', 56 56 wp_get_attachment_url(), 57 esc_attr( __('Link to full-size image', 'wordcamp base' ) ),57 esc_attr( __('Link to full-size image', 'wordcamporg' ) ), 58 58 $metadata['width'], 59 59 $metadata['height'] … … 63 63 } 64 64 ?> 65 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>65 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 66 66 </div><!-- .entry-meta --> 67 67 … … 105 105 <?php the_content( sprintf( 106 106 // translators: The title of the post to continue reading 107 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamp base' ),107 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamporg' ), 108 108 the_title( '<span class="screen-reader-text">', '</span> ', false ) 109 109 ) ); ?> 110 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>110 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 111 111 112 112 </div><!-- .entry-content --> … … 114 114 <div class="entry-utility"> 115 115 <?php twentyten_posted_in(); ?> 116 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), ' <span class="edit-link">', '</span>' ); ?>116 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), ' <span class="edit-link">', '</span>' ); ?> 117 117 </div><!-- .entry-utility --> 118 118 </div><!-- #post-## --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/author.php
r2 r3275 25 25 ?> 26 26 27 <h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'wordcamp base' ), "<span class='vcard'><a class='url fn n' href='" . get_author_posts_url( get_the_author_meta( 'ID' ) ) . "' title='" . esc_attr( get_the_author() ) . "' rel='me'>" . get_the_author() . "</a></span>" ); ?></h1>27 <h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'wordcamporg' ), "<span class='vcard'><a class='url fn n' href='" . get_author_posts_url( get_the_author_meta( 'ID' ) ) . "' title='" . esc_attr( get_the_author() ) . "' rel='me'>" . get_the_author() . "</a></span>" ); ?></h1> 28 28 29 29 <?php … … 35 35 </div><!-- #author-avatar --> 36 36 <div id="author-description"> 37 <h2><?php printf( __( 'About %s', 'wordcamp base' ), get_the_author() ); ?></h2>37 <h2><?php printf( __( 'About %s', 'wordcamporg' ), get_the_author() ); ?></h2> 38 38 <?php the_author_meta( 'description' ); ?> 39 39 </div><!-- #author-description --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/category.php
r2 r3275 14 14 15 15 <h1 class="page-title"><?php 16 printf( __( 'Category Archives: %s', 'wordcamp base' ), '<span>' . single_cat_title( '', false ) . '</span>' );16 printf( __( 'Category Archives: %s', 'wordcamporg' ), '<span>' . single_cat_title( '', false ) . '</span>' ); 17 17 ?></h1> 18 18 <?php -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/comments.php
r2 r3275 16 16 <div id="comments"> 17 17 <?php if ( post_password_required() ) : ?> 18 <p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'wordcamp base' ); ?></p>18 <p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'wordcamporg' ); ?></p> 19 19 </div><!-- #comments --> 20 20 <?php … … 33 33 <?php if ( have_comments() ) : ?> 34 34 <h3 id="comments-title"><?php 35 printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'wordcamp base' ),35 printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'wordcamporg' ), 36 36 number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' ); 37 37 ?></h3> … … 39 39 <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> 40 40 <div class="navigation"> 41 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'wordcamp base' ) ); ?></div>42 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'wordcamp base' ) ); ?></div>41 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'wordcamporg' ) ); ?></div> 42 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'wordcamporg' ) ); ?></div> 43 43 </div> <!-- .navigation --> 44 44 <?php endif; // check for comment navigation ?> … … 58 58 <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> 59 59 <div class="navigation"> 60 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'wordcamp base' ) ); ?></div>61 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'wordcamp base' ) ); ?></div>60 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">←</span> Older Comments', 'wordcamporg' ) ); ?></div> 61 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">→</span>', 'wordcamporg' ) ); ?></div> 62 62 </div><!-- .navigation --> 63 63 <?php endif; // check for comment navigation ?> … … 70 70 if ( ! comments_open() ) : 71 71 ?> 72 <p class="nocomments"><?php _e( 'Comments are closed.', 'wordcamp base' ); ?></p>72 <p class="nocomments"><?php _e( 'Comments are closed.', 'wordcamporg' ); ?></p> 73 73 <?php endif; // end ! comments_open() ?> 74 74 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/options/class-wcb-button-option.php
r2 r3275 27 27 ?> 28 28 <tr> 29 <th><?php esc_html_e( 'Featured Button', 'wordcamp base' ); ?></th>29 <th><?php esc_html_e( 'Featured Button', 'wordcamporg' ); ?></th> 30 30 <td class="<?php echo $class; ?>"> 31 31 <label class="description checkbox-field" for="<?php echo $ids['visible']; ?>"> … … 34 34 checked( $this->get_option('visible') ); 35 35 ?> /> 36 <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcamp base' ); ?>36 <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcamporg' ); ?> 37 37 </label><br /> 38 38 <label class="description text-field" for="<?php echo $ids['text']; ?>"> 39 <span><?php esc_html_e( 'Text:', 'wordcamp base' ); ?></span>39 <span><?php esc_html_e( 'Text:', 'wordcamporg' ); ?></span> 40 40 <input type="text" id="<?php echo $ids['text']; ?>" 41 41 <?php $this->name('text'); ?> … … 43 43 </label><br /> 44 44 <label class="description text-field" for="<?php echo $ids['url']; ?>"> 45 <span><?php esc_html_e( 'URL:', 'wordcamp base' ); ?></span>45 <span><?php esc_html_e( 'URL:', 'wordcamporg' ); ?></span> 46 46 <input type="text" id="<?php echo $ids['url']; ?>" 47 47 <?php $this->name('url'); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/options/class-wcb-grid-option.php
r2 r3275 109 109 <input class="signature" type="hidden" <?php $this->name('layout'); ?> value="<?php echo esc_attr( serialize( $layout ) ); ?>"/> 110 110 <?php $this->render_row( $layout ); ?> 111 <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcamp base'); ?></a></div>111 <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcamporg'); ?></a></div> 112 112 <?php if ( $this->type != 'content' ): 113 113 $front_page_id = esc_attr( "front-page-only-$this->key" ); … … 118 118 checked( $this->get_option('front_only') ); 119 119 ?> /> 120 <?php esc_html_e( 'Front page only', 'wordcamp base' ); ?>120 <?php esc_html_e( 'Front page only', 'wordcamporg' ); ?> 121 121 </label> 122 122 <?php endif; ?> 123 123 <div class="picker"> 124 124 <div class="directions"> 125 <?php esc_html_e( 'Choose a new row layout.', 'wordcamp base' ); ?>126 <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcamp base'); ?></a>125 <?php esc_html_e( 'Choose a new row layout.', 'wordcamporg' ); ?> 126 <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcamporg'); ?></a> 127 127 </div> 128 128 <?php -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/options/class-wcb-options.php
r1815 r3275 20 20 'key' => 'grid', 21 21 'default' => 'grid960', 22 'label' => __('Grid Width', 'wordcamp base'),22 'label' => __('Grid Width', 'wordcamporg'), 23 23 'values' => array( 24 'grid960' => __( '960px wide', 'wordcamp base' ),25 'grid720' => __( '720px wide', 'wordcamp base' ),24 'grid960' => __( '960px wide', 'wordcamporg' ), 25 'grid720' => __( '720px wide', 'wordcamporg' ), 26 26 ) 27 27 ) ); … … 34 34 'front_only' => true, 35 35 ), 36 'label' => __('After Header', 'wordcamp base'),36 'label' => __('After Header', 'wordcamporg'), 37 37 ) ); 38 38 … … 44 44 'front_only' => true, 45 45 ), 46 'label' => __('Before Content', 'wordcamp base'),46 'label' => __('Before Content', 'wordcamporg'), 47 47 ) ); 48 48 … … 57 57 'front_only' => false, 58 58 ), 59 'label' => __('Content', 'wordcamp base'),59 'label' => __('Content', 'wordcamporg'), 60 60 'type' => 'content', 61 61 ) ); … … 68 68 'front_only' => false, 69 69 ), 70 'label' => __('After Content', 'wordcamp base'),70 'label' => __('After Content', 'wordcamporg'), 71 71 ) ); 72 72 … … 78 78 'front_only' => false, 79 79 ), 80 'label' => __('Before Footer', 'wordcamp base'),80 'label' => __('Before Footer', 'wordcamporg'), 81 81 ) ); 82 82 … … 85 85 'default' => array( 86 86 'visible' => false, 87 'text' => __('Register now!', 'wordcamp base'),87 'text' => __('Register now!', 'wordcamporg'), 88 88 'url' => '', 89 89 ), … … 93 93 'key' => 'typekit', 94 94 'default' => 'jnd4dds', 95 'label' => __('Typekit', 'wordcamp base'),95 'label' => __('Typekit', 'wordcamporg'), 96 96 'values' => array( 97 'default' => __( 'Use the default Typekit fonts.', 'wordcamp base' ),98 'custom' => __( 'Use a custom Typekit key:', 'wordcamp base' ),99 'off' => __( 'Do not use any Typekit fonts.', 'wordcamp base' ),97 'default' => __( 'Use the default Typekit fonts.', 'wordcamporg' ), 98 'custom' => __( 'Use a custom Typekit key:', 'wordcamporg' ), 99 'off' => __( 'Do not use any Typekit fonts.', 'wordcamporg' ), 100 100 ), 101 101 ) ); … … 112 112 113 113 function admin_menu() { 114 $page = add_theme_page( __('Theme Options', 'wordcamp base'), __('Theme Options', 'wordcampbase'), 'edit_theme_options', 'wcb-theme-options', array( &$this, 'render' ) );114 $page = add_theme_page( __('Theme Options', 'wordcamporg'), __('Theme Options', 'wordcamporg'), 'edit_theme_options', 'wcb-theme-options', array( &$this, 'render' ) ); 115 115 116 116 add_action("wcb_enqueue_scripts_$page", array( &$this, 'enqueue_scripts' ) ); … … 142 142 <div class="wrap"> 143 143 <?php screen_icon(); ?> 144 <h1><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcamp base' ); ?></h1>144 <h1><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcamporg' ); ?></h1> 145 145 146 146 <?php if ( false !== $_REQUEST['updated'] ) : ?> 147 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamp base' ); ?></strong></p></div>147 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div> 148 148 <?php endif; ?> 149 149 150 150 <form method="post" action="options.php"> 151 151 <?php settings_fields( 'wcb_theme_options' ); ?> 152 <h3><?php _e('General Options', 'wordcamp base'); ?></h3>152 <h3><?php _e('General Options', 'wordcamporg'); ?></h3> 153 153 <table class="form-table"> 154 154 <?php … … 159 159 </table> 160 160 161 <h3><?php _e('Theme Layout', 'wordcamp base'); ?></h3>161 <h3><?php _e('Theme Layout', 'wordcamporg'); ?></h3> 162 162 <table class="form-table"> 163 163 <?php … … 165 165 166 166 <tr id="visibility-row"> 167 <th><?php esc_html_e( 'Show Rows', 'wordcamp base' ); ?></th>167 <th><?php esc_html_e( 'Show Rows', 'wordcamporg' ); ?></th> 168 168 <td> 169 169 <?php foreach ( $rows as $row ) { … … 174 174 175 175 <tr> 176 <th><?php esc_html_e( 'Row Layout', 'wordcamp base' ); ?></th>176 <th><?php esc_html_e( 'Row Layout', 'wordcamporg' ); ?></th> 177 177 <td> 178 178 <?php foreach ( $rows as $row ) { … … 184 184 </table> 185 185 <p class="submit"> 186 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamp base' ); ?>" />186 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" /> 187 187 </p> 188 188 </form> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sessions/class-wcb-session-template.php
r2 r3275 96 96 $track = wcb_get_session_track(); 97 97 98 $meta['speakers'] = sprintf( __('Presented by %s', 'wordcamp base'), wcb_get_session_speakers() );98 $meta['speakers'] = sprintf( __('Presented by %s', 'wordcamporg'), wcb_get_session_speakers() ); 99 99 100 100 if ( empty( $track ) ) { … … 102 102 103 103 } else { 104 $meta['track'] = sprintf( __('%s Track', 'wordcamp base'), $track );104 $meta['track'] = sprintf( __('%s Track', 'wordcamporg'), $track ); 105 105 106 106 $link = get_term_link( $track, WCB_TRACK_TAXONOMY ); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sessions/class-wcb-sessions.php
r2 r3275 24 24 'speakers' => array( 25 25 'type' => 'text', 26 'label' => __('Speakers', 'wordcamp base'),26 'label' => __('Speakers', 'wordcamporg'), 27 27 ) 28 28 ); … … 30 30 $box = wcb_get_metabox( 'WCB_Post_Metabox' ); 31 31 $box->add_instance( WCB_SESSION_POST_TYPE, array( 32 'title' => __('Speakers', 'wordcamp base'),32 'title' => __('Speakers', 'wordcamporg'), 33 33 'meta_manager' => $this->meta_manager, 34 34 'meta_fields' => $meta_fields, … … 42 42 // Session post type labels 43 43 $labels = array ( 44 'name' => __( 'Sessions', 'wordcamp base' ),45 'singular_name' => __( 'Session', 'wordcamp base' ),46 'add_new' => __( 'Add New', 'wordcamp base' ),47 'add_new_item' => __( 'Create New Session', 'wordcamp base' ),48 'edit' => __( 'Edit', 'wordcamp base' ),49 'edit_item' => __( 'Edit Session', 'wordcamp base' ),50 'new_item' => __( 'New Session', 'wordcamp base' ),51 'view' => __( 'View Session', 'wordcamp base' ),52 'view_item' => __( 'View Session', 'wordcamp base' ),53 'search_items' => __( 'Search Sessions', 'wordcamp base' ),54 'not_found' => __( 'No sessions found', 'wordcamp base' ),55 'not_found_in_trash' => __( 'No sessions found in Trash', 'wordcamp base' ),56 'parent_item_colon' => __( 'Parent Session:', 'wordcamp base' )44 'name' => __( 'Sessions', 'wordcamporg' ), 45 'singular_name' => __( 'Session', 'wordcamporg' ), 46 'add_new' => __( 'Add New', 'wordcamporg' ), 47 'add_new_item' => __( 'Create New Session', 'wordcamporg' ), 48 'edit' => __( 'Edit', 'wordcamporg' ), 49 'edit_item' => __( 'Edit Session', 'wordcamporg' ), 50 'new_item' => __( 'New Session', 'wordcamporg' ), 51 'view' => __( 'View Session', 'wordcamporg' ), 52 'view_item' => __( 'View Session', 'wordcamporg' ), 53 'search_items' => __( 'Search Sessions', 'wordcamporg' ), 54 'not_found' => __( 'No sessions found', 'wordcamporg' ), 55 'not_found_in_trash' => __( 'No sessions found in Trash', 'wordcamporg' ), 56 'parent_item_colon' => __( 'Parent Session:', 'wordcamporg' ) 57 57 ); 58 58 … … 98 98 // Labels 99 99 $labels = array ( 100 'name' => __( 'Tracks', 'wordcamp base'),101 'singular_name' => __( 'Track', 'wordcamp base'),102 'search_items' => __( 'Search Tracks', 'wordcamp base'),100 'name' => __( 'Tracks', 'wordcamporg'), 101 'singular_name' => __( 'Track', 'wordcamporg'), 102 'search_items' => __( 'Search Tracks', 'wordcamporg'), 103 103 'popular_items' => __( 'Popular Tracks','wordcampbase'), 104 'all_items' => __( 'All Tracks', 'wordcamp base'),105 'edit_item' => __( 'Edit Track', 'wordcamp base'),106 'update_item' => __( 'Update Track', 'wordcamp base'),107 'add_new_item' => __( 'Add Track', 'wordcamp base'),108 'new_item_name' => __( 'New Track', 'wordcamp base'),104 'all_items' => __( 'All Tracks', 'wordcamporg'), 105 'edit_item' => __( 'Edit Track', 'wordcamporg'), 106 'update_item' => __( 'Update Track', 'wordcamporg'), 107 'add_new_item' => __( 'Add Track', 'wordcamporg'), 108 'new_item_name' => __( 'New Track', 'wordcamporg'), 109 109 ); 110 110 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/speakers/class-wcb-speakers.php
r2 r3275 23 23 'email' => array( 24 24 'type' => 'text', 25 'label' => __('Gravatar Email', 'wordcamp base'),25 'label' => __('Gravatar Email', 'wordcamporg'), 26 26 ) 27 27 ); … … 29 29 $box = wcb_get_metabox( 'WCB_Post_Metabox' ); 30 30 $box->add_instance( WCB_SPEAKER_POST_TYPE, array( 31 'title' => __('Gravatar Email', 'wordcamp base'),31 'title' => __('Gravatar Email', 'wordcamporg'), 32 32 'meta_manager' => $this->meta_manager, 33 33 'meta_fields' => $meta_fields, … … 39 39 // Speaker post type labels 40 40 $labels = array ( 41 'name' => __( 'Speakers', 'wordcamp base' ),42 'singular_name' => __( 'Speaker', 'wordcamp base' ),43 'add_new' => __( 'Add New', 'wordcamp base' ),44 'add_new_item' => __( 'Create New Speaker', 'wordcamp base' ),45 'edit' => __( 'Edit', 'wordcamp base' ),46 'edit_item' => __( 'Edit Speaker', 'wordcamp base' ),47 'new_item' => __( 'New Speaker', 'wordcamp base' ),48 'view' => __( 'View Speaker', 'wordcamp base' ),49 'view_item' => __( 'View Speaker', 'wordcamp base' ),50 'search_items' => __( 'Search Speakers', 'wordcamp base' ),51 'not_found' => __( 'No speakers found', 'wordcamp base' ),52 'not_found_in_trash' => __( 'No speakers found in Trash', 'wordcamp base' ),53 'parent_item_colon' => __( 'Parent Speaker:', 'wordcamp base' )41 'name' => __( 'Speakers', 'wordcamporg' ), 42 'singular_name' => __( 'Speaker', 'wordcamporg' ), 43 'add_new' => __( 'Add New', 'wordcamporg' ), 44 'add_new_item' => __( 'Create New Speaker', 'wordcamporg' ), 45 'edit' => __( 'Edit', 'wordcamporg' ), 46 'edit_item' => __( 'Edit Speaker', 'wordcamporg' ), 47 'new_item' => __( 'New Speaker', 'wordcamporg' ), 48 'view' => __( 'View Speaker', 'wordcamporg' ), 49 'view_item' => __( 'View Speaker', 'wordcamporg' ), 50 'search_items' => __( 'Search Speakers', 'wordcamporg' ), 51 'not_found' => __( 'No speakers found', 'wordcamporg' ), 52 'not_found_in_trash' => __( 'No speakers found in Trash', 'wordcamporg' ), 53 'parent_item_colon' => __( 'Parent Speaker:', 'wordcamporg' ) 54 54 ); 55 55 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sponsors/class-wcb-sponsor-order.php
r1815 r3275 13 13 $page = add_submenu_page( 14 14 'edit.php?post_type=' . WCB_SPONSOR_POST_TYPE, // Page type 15 __('Order Sponsor Levels', 'wordcamp base'), // Page title16 __('Order Sponsor Levels', 'wordcamp base'), // Menu title15 __('Order Sponsor Levels', 'wordcamporg'), // Page title 16 __('Order Sponsor Levels', 'wordcamporg'), // Menu title 17 17 'edit_posts', // Capability 18 18 'sponsor_levels', // Menu slug … … 57 57 <div class="wrap"> 58 58 <?php screen_icon(); ?> 59 <h1><?php _e( 'Order Sponsor Levels', 'wordcamp base' ); ?></h1>59 <h1><?php _e( 'Order Sponsor Levels', 'wordcamporg' ); ?></h1> 60 60 61 61 <?php if ( false !== $_REQUEST['updated'] ) : ?> 62 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamp base' ); ?></strong></p></div>62 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div> 63 63 <?php endif; ?> 64 64 … … 66 66 <?php settings_fields( 'wcb_sponsor_options' ); ?> 67 67 <div class="description sponsor-order-instructions"> 68 <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcamp base'); ?>68 <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcamporg'); ?> 69 69 </div> 70 70 <ul class="sponsor-order"> … … 77 77 </ul> 78 78 <p class="submit"> 79 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamp base' ); ?>" />79 <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" /> 80 80 </p> 81 81 </form> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sponsors/class-wcb-sponsors.php
r2 r3275 25 25 // Sponsor post type labels 26 26 $labels = array ( 27 'name' => __( 'Sponsors', 'wordcamp base' ),28 'singular_name' => __( 'Sponsor', 'wordcamp base' ),29 'add_new' => __( 'Add New', 'wordcamp base' ),30 'add_new_item' => __( 'Create New Sponsor', 'wordcamp base' ),31 'edit' => __( 'Edit', 'wordcamp base' ),32 'edit_item' => __( 'Edit Sponsor', 'wordcamp base' ),33 'new_item' => __( 'New Sponsor', 'wordcamp base' ),34 'view' => __( 'View Sponsor', 'wordcamp base' ),35 'view_item' => __( 'View Sponsor', 'wordcamp base' ),36 'search_items' => __( 'Search Sponsors', 'wordcamp base' ),37 'not_found' => __( 'No sponsors found', 'wordcamp base' ),38 'not_found_in_trash' => __( 'No sponsors found in Trash', 'wordcamp base' ),39 'parent_item_colon' => __( 'Parent Sponsor:', 'wordcamp base' )27 'name' => __( 'Sponsors', 'wordcamporg' ), 28 'singular_name' => __( 'Sponsor', 'wordcamporg' ), 29 'add_new' => __( 'Add New', 'wordcamporg' ), 30 'add_new_item' => __( 'Create New Sponsor', 'wordcamporg' ), 31 'edit' => __( 'Edit', 'wordcamporg' ), 32 'edit_item' => __( 'Edit Sponsor', 'wordcamporg' ), 33 'new_item' => __( 'New Sponsor', 'wordcamporg' ), 34 'view' => __( 'View Sponsor', 'wordcamporg' ), 35 'view_item' => __( 'View Sponsor', 'wordcamporg' ), 36 'search_items' => __( 'Search Sponsors', 'wordcamporg' ), 37 'not_found' => __( 'No sponsors found', 'wordcamporg' ), 38 'not_found_in_trash' => __( 'No sponsors found in Trash', 'wordcamporg' ), 39 'parent_item_colon' => __( 'Parent Sponsor:', 'wordcamporg' ) 40 40 ); 41 41 … … 81 81 // Labels 82 82 $labels = array ( 83 'name' => __( 'Sponsor Levels', 'wordcamp base'),84 'singular_name' => __( 'Sponsor Level', 'wordcamp base'),85 'search_items' => __( 'Search Sponsor Levels', 'wordcamp base'),86 'popular_items' => __( 'Popular Sponsor Levels', 'wordcamp base'),87 'all_items' => __( 'All Sponsor Levels', 'wordcamp base'),88 'edit_item' => __( 'Edit Sponsor Level', 'wordcamp base'),83 'name' => __( 'Sponsor Levels', 'wordcamporg'), 84 'singular_name' => __( 'Sponsor Level', 'wordcamporg'), 85 'search_items' => __( 'Search Sponsor Levels', 'wordcamporg'), 86 'popular_items' => __( 'Popular Sponsor Levels', 'wordcamporg'), 87 'all_items' => __( 'All Sponsor Levels', 'wordcamporg'), 88 'edit_item' => __( 'Edit Sponsor Level', 'wordcamporg'), 89 89 'update_item' => __( 'Update Sponsor Level','wordcampbase'), 90 'add_new_item' => __( 'Add Sponsor Level', 'wordcamp base'),91 'new_item_name' => __( 'New Sponsor Level', 'wordcamp base'),90 'add_new_item' => __( 'Add Sponsor Level', 'wordcamporg'), 91 'new_item_name' => __( 'New Sponsor Level', 'wordcamporg'), 92 92 ); 93 93 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sponsors/class-wcb-widget-sponsors.php
r2 r3275 7 7 $widget_ops = array( 8 8 'classname' => 'wcb_widget_sponsors', 9 'description' => __( 'Your WordCamp’s Sponsors', 'wordcamp base' ),9 'description' => __( 'Your WordCamp’s Sponsors', 'wordcamporg' ), 10 10 ); 11 $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcamp base'), $widget_ops );11 $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcamporg'), $widget_ops ); 12 12 } 13 13 … … 38 38 while ( wcb_have_sponsors() ): 39 39 wcb_the_sponsor(); 40 ?><a class="sponsor-logo" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php40 ?><a class="sponsor-logo" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php 41 41 if ( has_post_thumbnail() ) 42 42 the_post_thumbnail(); … … 57 57 $title = $instance['title']; 58 58 ?> 59 <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wordcamp base'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>59 <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wordcamporg'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p> 60 60 <?php 61 61 } -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-footer.php
r2 r3275 18 18 <div id="site-generator"> 19 19 <?php do_action( 'twentyten_credits' ); ?> 20 <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'wordcamp base' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'wordcampbase' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'wordcampbase' ), 'WordPress' ); ?></a>20 <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'wordcamporg' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'wordcamporg' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s.', 'wordcamporg' ), 'WordPress' ); ?></a> 21 21 </div><!-- #site-generator --> 22 22 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-header.php
r2 r3275 10 10 <div id="return-to-central"> 11 11 <?php if ( false !== strpos($_SERVER['HTTP_HOST'], 'wordpress.org')) { ?> 12 <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcamp base' ); ?>"><?php _e('← WordPress.org', 'wordcampbase'); ?></a>12 <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcamporg' ); ?>"><?php _e('← WordPress.org', 'wordcamporg'); ?></a> 13 13 <?php } else { ?> 14 <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcamp base' ); ?>"><?php _e('← WordCamp Central', 'wordcampbase'); ?></a>14 <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcamporg' ); ?>"><?php _e('← WordCamp Central', 'wordcamporg'); ?></a> 15 15 <?php } ?> 16 16 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-menu.php
r412 r3275 10 10 <div id="access" role="navigation" class="clearfix"> 11 11 <?php /* Toggle element for responsive menus */ ?> 12 <h3 class="menu-toggle"><?php _e( 'Menu', 'wordcamp base' ); ?></h3>12 <h3 class="menu-toggle"><?php _e( 'Menu', 'wordcamporg' ); ?></h3> 13 13 <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?> 14 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'wordcamp base' ); ?>"><?php _e( 'Skip to content', 'wordcampbase' ); ?></a></div>14 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'wordcamporg' ); ?>"><?php _e( 'Skip to content', 'wordcamporg' ); ?></a></div> 15 15 <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?> 16 16 <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-structure.php
r86 r3275 71 71 'after_header' => array( 72 72 'id' => 'after-header', 73 'name' => __('After Header', 'wordcamp base'),73 'name' => __('After Header', 'wordcamporg'), 74 74 ), 75 75 'before_content' => array( 76 76 'id' => 'before-content', 77 'name' => __('Before Content', 'wordcamp base'),77 'name' => __('Before Content', 'wordcamporg'), 78 78 ), 79 79 'content' => array( 80 80 'id' => 'content-row', 81 'name' => __('Content', 'wordcamp base'),81 'name' => __('Content', 'wordcamporg'), 82 82 ), 83 83 'after_content' => array( 84 84 'id' => 'after-content', 85 'name' => __('After Content', 'wordcamp base'),85 'name' => __('After Content', 'wordcamporg'), 86 86 ), 87 87 'before_footer' => array( 88 88 'id' => 'before-footer', 89 'name' => __('Before Footer', 'wordcamp base'),89 'name' => __('Before Footer', 'wordcamporg'), 90 90 ), 91 91 ); … … 100 100 101 101 if ( $option['front_only'] ) 102 $args['name'] = sprintf( __('Front Page: %s', 'wordcamp base'), $args['name'] );102 $args['name'] = sprintf( __('Front Page: %s', 'wordcamporg'), $args['name'] ); 103 103 104 104 $this->sidebars[ $id ] = new WCB_Sidebar_Row( $args ); … … 109 109 $this->sidebars['content'] = new WCB_Sidebar_Row( array( 110 110 'id' => 'content-row', 111 'name' => __('Content', 'wordcamp base'),111 'name' => __('Content', 'wordcamporg'), 112 112 'grid' => array( array( 12, 'content' ) ), 113 113 ) ); -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/class-wcb-metabox.php
r158 r3275 67 67 $defaults = array( 68 68 // 'id' => '', 69 'title' => __( 'Untitled' , 'wordcamp base'),69 'title' => __( 'Untitled' , 'wordcamporg'), 70 70 'context' => 'side', 71 71 'priority' => 'default', -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/functions.php
r2 r3275 1 1 <?php 2 3 load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );4 2 5 3 require_once TEMPLATEPATH . "/lib/utils/twentyten-overrides.php"; -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/header.php
r2092 r3275 10 10 11 11 if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { 12 $meta['category'] = sprintf( __('Posted in %s', 'wordcamp base'), get_the_category_list( ', ' ) );12 $meta['category'] = sprintf( __('Posted in %s', 'wordcamporg'), get_the_category_list( ', ' ) ); 13 13 } 14 14 if ( is_object_in_taxonomy( get_post_type(), 'tag' ) ) { 15 $meta['tag'] = sprintf( __('Tagged %s', 'wordcamp base'), get_the_tag_list( '', ', ' ) );15 $meta['tag'] = sprintf( __('Tagged %s', 'wordcamporg'), get_the_tag_list( '', ', ' ) ); 16 16 } 17 17 … … 73 73 // Add a page number if necessary: 74 74 if ( $paged >= 2 || $page >= 2 ) 75 echo ' | ' . sprintf( __( 'Page %s', 'wordcamp base' ), max( $paged, $page ) );75 echo ' | ' . sprintf( __( 'Page %s', 'wordcamporg' ), max( $paged, $page ) ); 76 76 echo "</title>"; 77 77 } -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/twentyten-functions.php
r1950 r3275 66 66 * @uses add_custom_background() To add support for a custom background. 67 67 * @uses add_editor_style() To style the visual editor. 68 * @uses load_theme_textdomain() For translation/localization support.69 68 * @uses add_custom_image_header() To add support for a custom header. 70 69 * @uses register_default_headers() To register the default custom header images provided with the theme. … … 83 82 // Add default posts and comments RSS feed links to head 84 83 add_theme_support( 'automatic-feed-links' ); 85 86 // Make theme available for translation87 // Translations can be filed in the /languages/ directory88 // load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );89 84 90 85 $locale = get_locale(); … … 95 90 // This theme uses wp_nav_menu() in one location. 96 91 register_nav_menus( array( 97 'primary' => __( 'Primary Navigation', 'wordcamp base' ),92 'primary' => __( 'Primary Navigation', 'wordcamporg' ), 98 93 ) ); 99 94 … … 126 121 'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg', 127 122 /* translators: header image description */ 128 'description' => __( 'Berries', 'wordcamp base' )123 'description' => __( 'Berries', 'wordcamporg' ) 129 124 ), 130 125 'cherryblossom' => array( … … 132 127 'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg', 133 128 /* translators: header image description */ 134 'description' => __( 'Cherry Blossoms', 'wordcamp base' )129 'description' => __( 'Cherry Blossoms', 'wordcamporg' ) 135 130 ), 136 131 'concave' => array( … … 138 133 'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg', 139 134 /* translators: header image description */ 140 'description' => __( 'Concave', 'wordcamp base' )135 'description' => __( 'Concave', 'wordcamporg' ) 141 136 ), 142 137 'fern' => array( … … 144 139 'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg', 145 140 /* translators: header image description */ 146 'description' => __( 'Fern', 'wordcamp base' )141 'description' => __( 'Fern', 'wordcamporg' ) 147 142 ), 148 143 'forestfloor' => array( … … 150 145 'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg', 151 146 /* translators: header image description */ 152 'description' => __( 'Forest Floor', 'wordcamp base' )147 'description' => __( 'Forest Floor', 'wordcamporg' ) 153 148 ), 154 149 'inkwell' => array( … … 156 151 'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg', 157 152 /* translators: header image description */ 158 'description' => __( 'Inkwell', 'wordcamp base' )153 'description' => __( 'Inkwell', 'wordcamporg' ) 159 154 ), 160 155 'path' => array( … … 162 157 'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg', 163 158 /* translators: header image description */ 164 'description' => __( 'Path', 'wordcamp base' )159 'description' => __( 'Path', 'wordcamporg' ) 165 160 ), 166 161 'sunset' => array( … … 168 163 'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg', 169 164 /* translators: header image description */ 170 'description' => __( 'Sunset', 'wordcamp base' )165 'description' => __( 'Sunset', 'wordcamporg' ) 171 166 ) 172 167 ) ); … … 239 234 sprintf( 240 235 // translators: The title of the post to continue reading 241 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamp base' ),236 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamporg' ), 242 237 sprintf( '<span class="screen-reader-text">%s</span> ', get_the_title() ) 243 238 ) … … 311 306 <div class="comment-author vcard"> 312 307 <?php echo get_avatar( $comment, 40 ); ?> 313 <?php printf( __( '%s <span class="says">says:</span>', 'wordcamp base' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>308 <?php printf( __( '%s <span class="says">says:</span>', 'wordcamporg' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?> 314 309 </div><!-- .comment-author .vcard --> 315 310 <?php if ( $comment->comment_approved == '0' ) : ?> 316 <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamp base' ); ?></em>311 <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamporg' ); ?></em> 317 312 <br /> 318 313 <?php endif; ?> … … 321 316 <?php 322 317 /* translators: 1: date, 2: time */ 323 printf( __( '%1$s at %2$s', 'wordcamp base' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'wordcampbase' ), ' ' );318 printf( __( '%1$s at %2$s', 'wordcamporg' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'wordcamporg' ), ' ' ); 324 319 ?> 325 320 </div><!-- .comment-meta .commentmetadata --> … … 338 333 ?> 339 334 <li class="post pingback"> 340 <p><?php _e( 'Pingback:', 'wordcamp base' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __('(Edit)', 'wordcampbase'), ' ' ); ?></p>335 <p><?php _e( 'Pingback:', 'wordcamporg' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __('(Edit)', 'wordcamporg'), ' ' ); ?></p> 341 336 <?php 342 337 break; … … 357 352 // Area 1, located at the top of the sidebar. 358 353 register_sidebar( array( 359 'name' => __( 'Primary Widget Area', 'wordcamp base' ),354 'name' => __( 'Primary Widget Area', 'wordcamporg' ), 360 355 'id' => 'primary-widget-area', 361 'description' => __( 'The primary widget area', 'wordcamp base' ),356 'description' => __( 'The primary widget area', 'wordcamporg' ), 362 357 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 363 358 'after_widget' => '</li>', … … 368 363 // Area 2, located below the Primary Widget Area in the sidebar. Empty by default. 369 364 register_sidebar( array( 370 'name' => __( 'Secondary Widget Area', 'wordcamp base' ),365 'name' => __( 'Secondary Widget Area', 'wordcamporg' ), 371 366 'id' => 'secondary-widget-area', 372 'description' => __( 'The secondary widget area', 'wordcamp base' ),367 'description' => __( 'The secondary widget area', 'wordcamporg' ), 373 368 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 374 369 'after_widget' => '</li>', … … 379 374 // Area 3, located in the footer. Empty by default. 380 375 register_sidebar( array( 381 'name' => __( 'First Footer Widget Area', 'wordcamp base' ),376 'name' => __( 'First Footer Widget Area', 'wordcamporg' ), 382 377 'id' => 'first-footer-widget-area', 383 'description' => __( 'The first footer widget area', 'wordcamp base' ),378 'description' => __( 'The first footer widget area', 'wordcamporg' ), 384 379 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 385 380 'after_widget' => '</li>', … … 390 385 // Area 4, located in the footer. Empty by default. 391 386 register_sidebar( array( 392 'name' => __( 'Second Footer Widget Area', 'wordcamp base' ),387 'name' => __( 'Second Footer Widget Area', 'wordcamporg' ), 393 388 'id' => 'second-footer-widget-area', 394 'description' => __( 'The second footer widget area', 'wordcamp base' ),389 'description' => __( 'The second footer widget area', 'wordcamporg' ), 395 390 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 396 391 'after_widget' => '</li>', … … 401 396 // Area 5, located in the footer. Empty by default. 402 397 register_sidebar( array( 403 'name' => __( 'Third Footer Widget Area', 'wordcamp base' ),398 'name' => __( 'Third Footer Widget Area', 'wordcamporg' ), 404 399 'id' => 'third-footer-widget-area', 405 'description' => __( 'The third footer widget area', 'wordcamp base' ),400 'description' => __( 'The third footer widget area', 'wordcamporg' ), 406 401 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 407 402 'after_widget' => '</li>', … … 412 407 // Area 6, located in the footer. Empty by default. 413 408 register_sidebar( array( 414 'name' => __( 'Fourth Footer Widget Area', 'wordcamp base' ),409 'name' => __( 'Fourth Footer Widget Area', 'wordcamporg' ), 415 410 'id' => 'fourth-footer-widget-area', 416 'description' => __( 'The fourth footer widget area', 'wordcamp base' ),411 'description' => __( 'The fourth footer widget area', 'wordcamporg' ), 417 412 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 418 413 'after_widget' => '</li>', … … 445 440 */ 446 441 function twentyten_posted_on() { 447 printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcamp base' ),442 printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcamporg' ), 448 443 'meta-prep meta-prep-author', 449 444 sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>', … … 454 449 sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 455 450 get_author_posts_url( get_the_author_meta( 'ID' ) ), 456 sprintf( esc_attr__( 'View all posts by %s', 'wordcamp base' ), get_the_author() ),451 sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ), 457 452 get_the_author() 458 453 ) … … 471 466 $tag_list = get_the_tag_list( '', ', ' ); 472 467 if ( $tag_list ) { 473 $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamp base' );468 $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 474 469 } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { 475 $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamp base' );470 $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 476 471 } else { 477 $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamp base' );472 $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' ); 478 473 } 479 474 // Prints the string, replacing the placeholders. -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/twentyten-overrides.php
r2 r3275 3 3 function twentyten_posted_on() { 4 4 $meta = array(); 5 $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcamp base' ),5 $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcamporg' ), 6 6 sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>', 7 7 get_permalink(), … … 11 11 sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 12 12 get_author_posts_url( get_the_author_meta( 'ID' ) ), 13 sprintf( esc_attr__( 'View all posts by %s', 'wordcamp base' ), get_the_author() ),13 sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ), 14 14 get_the_author() 15 15 ) … … 20 20 'before' => '<span class="comments-link">', 21 21 'after' => '</span>', 22 'zero' => __( 'Leave a comment', 'wordcamp base' ),23 'one' => __( '1 Comment', 'wordcamp base' ),24 'many' => __( '% Comments', 'wordcamp base' ),22 'zero' => __( 'Leave a comment', 'wordcamporg' ), 23 'one' => __( '1 Comment', 'wordcamporg' ), 24 'many' => __( '% Comments', 'wordcamporg' ), 25 25 ); 26 26 27 27 $meta['edit'] = array( 28 'title' => __( 'Edit', 'wordcamp base' ),28 'title' => __( 'Edit', 'wordcamporg' ), 29 29 'before' => '<span class="edit-link">', 30 30 'after' => '</span>', -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop-attachment.php
r1950 r3275 19 19 20 20 <?php if ( ! empty( $post->post_parent ) ) : ?> 21 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'wordcamp base' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php21 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php esc_attr( printf( __( 'Return to %s', 'wordcamporg' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php 22 22 /* translators: %s - title of parent post */ 23 printf( __( '<span class="meta-nav">←</span> %s', 'wordcamp base' ), get_the_title( $post->post_parent ) );23 printf( __( '<span class="meta-nav">←</span> %s', 'wordcamporg' ), get_the_title( $post->post_parent ) ); 24 24 ?></a></p> 25 25 <?php endif; ?> … … 30 30 <div class="entry-meta"> 31 31 <?php 32 printf( __( '<span class="%1$s">By</span> %2$s', 'wordcamp base' ),32 printf( __( '<span class="%1$s">By</span> %2$s', 'wordcamporg' ), 33 33 'meta-prep meta-prep-author', 34 34 sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 35 35 get_author_posts_url( get_the_author_meta( 'ID' ) ), 36 sprintf( esc_attr__( 'View all posts by %s', 'wordcamp base' ), get_the_author() ),36 sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ), 37 37 get_the_author() 38 38 ) … … 41 41 <span class="meta-sep">|</span> 42 42 <?php 43 printf( __( '<span class="%1$s">Published</span> %2$s', 'wordcamp base' ),43 printf( __( '<span class="%1$s">Published</span> %2$s', 'wordcamporg' ), 44 44 'meta-prep meta-prep-entry-date', 45 45 sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>', … … 51 51 echo ' <span class="meta-sep">|</span> '; 52 52 $metadata = wp_get_attachment_metadata(); 53 printf( __( 'Full size is %s pixels', 'wordcamp base' ),53 printf( __( 'Full size is %s pixels', 'wordcamporg' ), 54 54 sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>', 55 55 wp_get_attachment_url(), 56 esc_attr( __( 'Link to full-size image', 'wordcamp base' ) ),56 esc_attr( __( 'Link to full-size image', 'wordcamporg' ) ), 57 57 $metadata['width'], 58 58 $metadata['height'] … … 61 61 } 62 62 ?> 63 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>63 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 64 64 </div><!-- .entry-meta --> 65 65 … … 104 104 <?php the_content( sprintf( 105 105 // translators: The title of the post to continue reading 106 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamp base' ),106 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamporg' ), 107 107 the_title( '<span class="screen-reader-text">', '</span> ', false ) 108 108 ) ); ?> 109 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>109 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 110 110 111 111 </div><!-- .entry-content --> … … 113 113 <div class="entry-utility"> 114 114 <?php twentyten_posted_in(); ?> 115 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), ' <span class="edit-link">', '</span>' ); ?>115 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), ' <span class="edit-link">', '</span>' ); ?> 116 116 </div><!-- .entry-utility --> 117 117 </div><!-- #post-## --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop-page.php
r2 r3275 27 27 <div class="entry-content"> 28 28 <?php the_content(); ?> 29 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>30 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="edit-link">', '</span>' ); ?>29 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 30 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?> 31 31 </div><!-- .entry-content --> 32 32 </div><!-- #post-## --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop-single.php
r2 r3275 19 19 20 20 <div id="nav-above" class="navigation"> 21 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamp base' ) . '</span> %title' ); ?></div>22 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamp base' ) . '</span>' ); ?></div>21 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div> 22 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div> 23 23 </div><!-- #nav-above --> 24 24 … … 32 32 <div class="entry-content"> 33 33 <?php the_content(); ?> 34 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>34 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 35 35 </div><!-- .entry-content --> 36 36 … … 41 41 </div><!-- #author-avatar --> 42 42 <div id="author-description"> 43 <h2><?php printf( esc_attr__( 'About %s', 'wordcamp base' ), get_the_author() ); ?></h2>43 <h2><?php printf( esc_attr__( 'About %s', 'wordcamporg' ), get_the_author() ); ?></h2> 44 44 <?php the_author_meta( 'description' ); ?> 45 45 <div id="author-link"> 46 46 <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> 47 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'wordcamp base' ), get_the_author() ); ?>47 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'wordcamporg' ), get_the_author() ); ?> 48 48 </a> 49 49 </div><!-- #author-link --> … … 54 54 <div class="entry-utility"> 55 55 <?php twentyten_posted_in(); ?> 56 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="edit-link">', '</span>' ); ?>56 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?> 57 57 </div><!-- .entry-utility --> 58 58 </div><!-- #post-## --> 59 59 60 60 <div id="nav-below" class="navigation"> 61 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamp base' ) . '</span> %title' ); ?></div>62 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamp base' ) . '</span>' ); ?></div>61 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div> 62 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div> 63 63 </div><!-- #nav-below --> 64 64 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop.php
r1950 r3275 23 23 <?php if ( $wp_query->max_num_pages > 1 ) : ?> 24 24 <div id="nav-above" class="navigation"> 25 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'wordcamp base' ) ); ?></div>26 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'wordcamp base' ) ); ?></div>25 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'wordcamporg' ) ); ?></div> 26 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'wordcamporg' ) ); ?></div> 27 27 </div><!-- #nav-above --> 28 28 <?php endif; ?> … … 31 31 <?php if ( ! have_posts() ) : ?> 32 32 <div id="post-0" class="post error404 not-found"> 33 <h1 class="entry-title"><?php _e( 'Not Found', 'wordcamp base' ); ?></h1>33 <h1 class="entry-title"><?php _e( 'Not Found', 'wordcamporg' ); ?></h1> 34 34 <div class="entry-content"> 35 <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'wordcamp base' ); ?></p>35 <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'wordcamporg' ); ?></p> 36 36 <?php get_search_form(); ?> 37 37 </div><!-- .entry-content --> … … 58 58 <?php /* How to display posts in the Gallery category. */ ?> 59 59 60 <?php if ( in_category( _x('gallery', 'gallery category slug', 'wordcamp base') ) ) : ?>60 <?php if ( in_category( _x('gallery', 'gallery category slug', 'wordcamporg') ) ) : ?> 61 61 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 62 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>62 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 63 63 64 64 <div class="entry-meta"> … … 80 80 <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a> 81 81 </div><!-- .gallery-thumb --> 82 <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'wordcamp base' ),83 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',82 <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'wordcamporg' ), 83 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"', 84 84 $total_images 85 85 ); ?></em></p> … … 90 90 91 91 <div class="entry-utility"> 92 <a href="<?php echo get_term_link( _x('gallery', 'gallery category slug', 'wordcamp base'), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'wordcampbase' ); ?>"><?php _e( 'More Galleries', 'wordcampbase' ); ?></a>92 <a href="<?php echo get_term_link( _x('gallery', 'gallery category slug', 'wordcamporg'), 'category' ); ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'wordcamporg' ); ?>"><?php _e( 'More Galleries', 'wordcamporg' ); ?></a> 93 93 <span class="meta-sep">|</span> 94 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcamp base' ), __( '1 Comment', 'wordcampbase' ), __( '% Comments', 'wordcampbase' ) ); ?></span>95 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>94 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcamporg' ), __( '1 Comment', 'wordcamporg' ), __( '% Comments', 'wordcamporg' ) ); ?></span> 95 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 96 96 </div><!-- .entry-utility --> 97 97 </div><!-- #post-## --> … … 99 99 <?php /* How to display posts in the asides category */ ?> 100 100 101 <?php elseif ( in_category( _x('asides', 'asides category slug', 'wordcamp base') ) ) : ?>101 <?php elseif ( in_category( _x('asides', 'asides category slug', 'wordcamporg') ) ) : ?> 102 102 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 103 103 … … 108 108 <?php else : ?> 109 109 <div class="entry-content"> 110 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'wordcamp base' ) ); ?>110 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'wordcamporg' ) ); ?> 111 111 </div><!-- .entry-content --> 112 112 <?php endif; ?> … … 115 115 <?php twentyten_posted_on(); ?> 116 116 <span class="meta-sep">|</span> 117 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcamp base' ), __( '1 Comment', 'wordcampbase' ), __( '% Comments', 'wordcampbase' ) ); ?></span>118 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>117 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcamporg' ), __( '1 Comment', 'wordcamporg' ), __( '% Comments', 'wordcamporg' ) ); ?></span> 118 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 119 119 </div><!-- .entry-utility --> 120 120 </div><!-- #post-## --> … … 124 124 <?php else : ?> 125 125 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 126 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>126 <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> 127 127 128 128 <div class="entry-meta"> … … 138 138 <?php the_content( sprintf( 139 139 // translators: The title of the post to continue reading 140 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamp base' ),140 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcamporg' ), 141 141 the_title( '<span class="screen-reader-text">', '</span> ', false ) 142 142 ) ); ?> 143 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>143 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 144 144 </div><!-- .entry-content --> 145 145 <?php endif; ?> … … 148 148 <?php if ( count( get_the_category() ) ) : ?> 149 149 <span class="cat-links"> 150 <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'wordcamp base' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>150 <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'wordcamporg' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> 151 151 </span> 152 152 <span class="meta-sep">|</span> … … 157 157 ?> 158 158 <span class="tag-links"> 159 <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'wordcamp base' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>159 <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'wordcamporg' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> 160 160 </span> 161 161 <span class="meta-sep">|</span> 162 162 <?php endif; ?> 163 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcamp base' ), __( '1 Comment', 'wordcampbase' ), __( '% Comments', 'wordcampbase' ) ); ?></span>164 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>163 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcamporg' ), __( '1 Comment', 'wordcamporg' ), __( '% Comments', 'wordcamporg' ) ); ?></span> 164 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> 165 165 </div><!-- .entry-utility --> 166 166 </div><!-- #post-## --> … … 175 175 <?php if ( $wp_query->max_num_pages > 1 ) : ?> 176 176 <div id="nav-below" class="navigation"> 177 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'wordcamp base' ) ); ?></div>178 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'wordcamp base' ) ); ?></div>177 <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'wordcamporg' ) ); ?></div> 178 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'wordcamporg' ) ); ?></div> 179 179 </div><!-- #nav-below --> 180 180 <?php endif; ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/page.php
r2 r3275 29 29 <div class="entry-content"> 30 30 <?php the_content(); ?> 31 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>32 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="edit-link">', '</span>' ); ?>31 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 32 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?> 33 33 </div><!-- .entry-content --> 34 34 </div><!-- #post-## --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/search.php
r2 r3275 14 14 15 15 <?php if ( have_posts() ) : ?> 16 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'wordcamp base' ), '<span>' . get_search_query() . '</span>' ); ?></h1>16 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'wordcamporg' ), '<span>' . get_search_query() . '</span>' ); ?></h1> 17 17 <?php 18 18 /* Run the loop for the search to output the results. … … 24 24 <?php else : ?> 25 25 <div id="post-0" class="post no-results not-found"> 26 <h2 class="entry-title"><?php _e( 'Nothing Found', 'wordcamp base' ); ?></h2>26 <h2 class="entry-title"><?php _e( 'Nothing Found', 'wordcamporg' ); ?></h2> 27 27 <div class="entry-content"> 28 <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'wordcamp base' ); ?></p>28 <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'wordcamporg' ); ?></p> 29 29 <?php get_search_form(); ?> 30 30 </div><!-- .entry-content --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/single-wcb_session.php
r2 r3275 16 16 17 17 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 18 <h1 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php18 <h1 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php 19 19 if ( has_post_thumbnail() ) 20 20 the_post_thumbnail(); … … 29 29 <div class="entry-content"> 30 30 <?php the_content(); ?> 31 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>31 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 32 32 </div><!-- .entry-content --> 33 33 </div><!-- #post-## --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/single-wcb_sponsor.php
r2 r3275 16 16 17 17 <div id="nav-above" class="navigation"> 18 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamp base' ) . '</span> %title' ); ?></div>19 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamp base' ) . '</span>' ); ?></div>18 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div> 19 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div> 20 20 </div><!-- #nav-above --> 21 21 22 22 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 23 <h1 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php23 <h1 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php 24 24 if ( has_post_thumbnail() ) 25 25 the_post_thumbnail(); … … 30 30 <div class="entry-content"> 31 31 <?php the_content(); ?> 32 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>32 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 33 33 </div><!-- .entry-content --> 34 34 35 35 <div class="entry-utility"> 36 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="edit-link">', '</span>' ); ?>36 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?> 37 37 </div><!-- .entry-utility --> 38 38 </div><!-- #post-## --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/single.php
r2 r3275 16 16 17 17 <div id="nav-above" class="navigation"> 18 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamp base' ) . '</span> %title' ); ?></div>19 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamp base' ) . '</span>' ); ?></div>18 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div> 19 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div> 20 20 </div><!-- #nav-above --> 21 21 … … 29 29 <div class="entry-content"> 30 30 <?php the_content(); ?> 31 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamp base' ), 'after' => '</div>' ) ); ?>31 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?> 32 32 </div><!-- .entry-content --> 33 33 … … 38 38 </div><!-- #author-avatar --> 39 39 <div id="author-description"> 40 <h2><?php printf( esc_attr__( 'About %s', 'wordcamp base' ), get_the_author() ); ?></h2>40 <h2><?php printf( esc_attr__( 'About %s', 'wordcamporg' ), get_the_author() ); ?></h2> 41 41 <?php the_author_meta( 'description' ); ?> 42 42 <div id="author-link"> 43 43 <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> 44 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'wordcamp base' ), get_the_author() ); ?>44 <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'wordcamporg' ), get_the_author() ); ?> 45 45 </a> 46 46 </div><!-- #author-link --> … … 51 51 <div class="entry-utility"> 52 52 <?php twentyten_posted_in(); ?> 53 <?php edit_post_link( __( 'Edit', 'wordcamp base' ), '<span class="edit-link">', '</span>' ); ?>53 <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?> 54 54 </div><!-- .entry-utility --> 55 55 </div><!-- #post-## --> 56 56 57 57 <div id="nav-below" class="navigation"> 58 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamp base' ) . '</span> %title' ); ?></div>59 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamp base' ) . '</span>' ); ?></div>58 <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div> 59 <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div> 60 60 </div><!-- #nav-below --> 61 61 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/tag.php
r2 r3275 14 14 15 15 <h1 class="page-title"><?php 16 printf( __( 'Tag Archives: %s', 'wordcamp base' ), '<span>' . single_tag_title( '', false ) . '</span>' );16 printf( __( 'Tag Archives: %s', 'wordcamporg' ), '<span>' . single_tag_title( '', false ) . '</span>' ); 17 17 ?></h1> 18 18 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/template-sessions.php
r2 r3275 39 39 ?> 40 40 <div id="post-<?php the_ID(); ?>" <?php post_class( 'session' ); ?>> 41 <h3 class="entry-title session-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h3>41 <h3 class="entry-title session-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h3> 42 42 <div class="entry-meta session-speakers"> 43 43 <?php wcb_entry_meta(); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/template-sponsors.php
r2 r3275 43 43 ?> 44 44 <div id="post-<?php the_ID(); ?>" <?php post_class( 'sponsor' ); ?>> 45 <h3 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamp base' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php45 <h3 class="entry-title sponsor-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcamporg' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php 46 46 if ( has_post_thumbnail() ) 47 47 the_post_thumbnail();
Note: See TracChangeset
for help on using the changeset viewer.