Making WordPress.org

Changeset 3275


Ignore:
Timestamp:
05/31/2016 05:21:00 PM (8 years ago)
Author:
iandunn
Message:

WordCamp Base: Switch to standardized wordcamporg text domain.

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  
    1414            <article id="post-0" class="post error404 not-found">
    1515                <header class="entry-header">
    16                     <h1 class="entry-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'wcbs' ); ?></h1>
     16                    <h1 class="entry-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'wordcamporg' ); ?></h1>
    1717                </header>
    1818
    1919                <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?', 'wcbs' ); ?></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>
    2121
    2222                    <?php get_search_form(); ?>
     
    2525
    2626                    <div class="widget">
    27                         <h2 class="widgettitle"><?php _e( 'Most Used Categories', 'wcbs' ); ?></h2>
     27                        <h2 class="widgettitle"><?php _e( 'Most Used Categories', 'wordcamporg' ); ?></h2>
    2828                        <ul>
    2929                        <?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
     
    3333                    <?php
    3434                    /* translators: %1$s: smilie */
    35                     $archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'wcbs' ), convert_smilies( ':)' ) ) . '</p>';
     35                    $archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'wordcamporg' ), convert_smilies( ':)' ) ) . '</p>';
    3636                    the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
    3737                    ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/archive.php

    r2 r3275  
    2020                        <?php
    2121                            if ( is_category() ) {
    22                                 printf( __( 'Category Archives: %s', 'wcbs' ), '<span>' . single_cat_title( '', false ) . '</span>' );
     22                                printf( __( 'Category Archives: %s', 'wordcamporg' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    2323
    2424                            } elseif ( is_tag() ) {
    25                                 printf( __( 'Tag Archives: %s', 'wcbs' ), '<span>' . single_tag_title( '', false ) . '</span>' );
     25                                printf( __( 'Tag Archives: %s', 'wordcamporg' ), '<span>' . single_tag_title( '', false ) . '</span>' );
    2626
    2727                            } elseif ( is_author() ) {
     
    3030                                */
    3131                                the_post();
    32                                 printf( __( 'Author Archives: %s', 'wcbs' ), '<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>' );
    3333                                /* Since we called the_post() above, we need to
    3434                                 * rewind the loop back to the beginning that way
     
    3838
    3939                            } elseif ( is_day() ) {
    40                                 printf( __( 'Daily Archives: %s', 'wcbs' ), '<span>' . get_the_date() . '</span>' );
     40                                printf( __( 'Daily Archives: %s', 'wordcamporg' ), '<span>' . get_the_date() . '</span>' );
    4141
    4242                            } elseif ( is_month() ) {
    43                                 printf( __( 'Monthly Archives: %s', 'wcbs' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );
     43                                printf( __( 'Monthly Archives: %s', 'wordcamporg' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );
    4444
    4545                            } elseif ( is_year() ) {
    46                                 printf( __( 'Yearly Archives: %s', 'wcbs' ), '<span>' . get_the_date( 'Y' ) . '</span>' );
     46                                printf( __( 'Yearly Archives: %s', 'wordcamporg' ), '<span>' . get_the_date( 'Y' ) . '</span>' );
    4747
    4848                            } else {
    49                                 _e( 'Archives', 'wcbs' );
     49                                _e( 'Archives', 'wordcamporg' );
    5050
    5151                            }
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/comments.php

    r2 r3275  
    3030        <h2 class="comments-title">
    3131            <?php
    32                 printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'wcbs' ),
     32                printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'wordcamporg' ),
    3333                    number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
    3434            ?>
     
    3737        <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
    3838        <nav role="navigation" id="comment-nav-above" class="site-navigation comment-navigation">
    39             <h1 class="assistive-text"><?php _e( 'Comment navigation', 'wcbs' ); ?></h1>
    40             <div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'wcbs' ) ); ?></div>
    41             <div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'wcbs' ) ); ?></div>
     39            <h1 class="assistive-text"><?php _e( 'Comment navigation', 'wordcamporg' ); ?></h1>
     40            <div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'wordcamporg' ) ); ?></div>
     41            <div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'wordcamporg' ) ); ?></div>
    4242        </nav>
    4343        <?php endif; // check for comment navigation ?>
     
    5757        <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
    5858        <nav role="navigation" id="comment-nav-below" class="site-navigation comment-navigation">
    59             <h1 class="assistive-text"><?php _e( 'Comment navigation', 'wcbs' ); ?></h1>
    60             <div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'wcbs' ) ); ?></div>
    61             <div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'wcbs' ) ); ?></div>
     59            <h1 class="assistive-text"><?php _e( 'Comment navigation', 'wordcamporg' ); ?></h1>
     60            <div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'wordcamporg' ) ); ?></div>
     61            <div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'wordcamporg' ) ); ?></div>
    6262        </nav>
    6363        <?php endif; // check for comment navigation ?>
     
    6969        if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
    7070    ?>
    71         <p class="nocomments"><?php _e( 'Comments are closed.', 'wcbs' ); ?></p>
     71        <p class="nocomments"><?php _e( 'Comments are closed.', 'wordcamporg' ); ?></p>
    7272    <?php endif; ?>
    7373
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/content-page.php

    r2 r3275  
    1515    <div class="entry-content">
    1616        <?php the_content(); ?>
    17         <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wcbs' ), 'after' => '</div>' ) ); ?>
    18         <?php edit_post_link( __( 'Edit', 'wcbs' ), '<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>' ); ?>
    1919    </div><!-- .entry-content -->
    2020</article><!-- #post-<?php the_ID(); ?> -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/content-single.php

    r2 r3275  
    1717    <div class="entry-content">
    1818        <?php the_content(); ?>
    19         <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wcbs' ), 'after' => '</div>' ) ); ?>
     19        <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    2020    </div><!-- .entry-content -->
    2121
     
    2323        <?php
    2424            /* translators: used between list items, there is a space after the comma */
    25             $category_list = get_the_category_list( __( ', ', 'wcbs' ) );
     25            $category_list = get_the_category_list( __( ', ', 'wordcamporg' ) );
    2626
    2727            /* translators: used between list items, there is a space after the comma */
     
    3131                // This blog only has 1 category so we just need to worry about tags in the meta text
    3232                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>.', 'wcbs' );
     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' );
    3434                } else {
    35                     $meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wcbs' );
     35                    $meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' );
    3636                }
    3737
     
    3939                // But this blog has loads of categories so we should probably display them here
    4040                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>.', 'wcbs' );
     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' );
    4242                } 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>.', 'wcbs' );
     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' );
    4444                }
    4545
     
    5555        ?>
    5656
    57         <?php edit_post_link( __( 'Edit', 'wcbs' ), '<span class="edit-link">', '</span>' ); ?>
     57        <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?>
    5858    </footer><!-- .entry-meta -->
    5959</article><!-- #post-<?php the_ID(); ?> -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/content.php

    r1950 r3275  
    88<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    99    <header class="entry-header">
    10         <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wcbs' ), 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>
    1111
    1212        <?php if ( 'post' == get_post_type() ) : ?>
     
    2525        <?php the_content( sprintf(
    2626            // translators: The title of the post to continue reading
    27             __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wcbs' ),
     27            __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ),
    2828            the_title( '<span class="assistive-text">', '</span> ', false )
    2929        ) ); ?>
    30         <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wcbs' ), 'after' => '</div>' ) ); ?>
     30        <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    3131    </div><!-- .entry-content -->
    3232    <?php endif; ?>
     
    3636            <?php
    3737                /* translators: used between list items, there is a space after the comma */
    38                 $categories_list = get_the_category_list( __( ', ', 'wcbs' ) );
     38                $categories_list = get_the_category_list( __( ', ', 'wordcamporg' ) );
    3939                if ( $categories_list && wcbs_categorized_blog() ) :
    4040            ?>
    4141            <span class="cat-links">
    42                 <?php printf( __( 'Posted in %1$s', 'wcbs' ), $categories_list ); ?>
     42                <?php printf( __( 'Posted in %1$s', 'wordcamporg' ), $categories_list ); ?>
    4343            </span>
    4444            <?php endif; // End if categories ?>
     
    4646            <?php
    4747                /* translators: used between list items, there is a space after the comma */
    48                 $tags_list = get_the_tag_list( '', __( ', ', 'wcbs' ) );
     48                $tags_list = get_the_tag_list( '', __( ', ', 'wordcamporg' ) );
    4949                if ( $tags_list ) :
    5050            ?>
    5151            <span class="sep"> | </span>
    5252            <span class="tag-links">
    53                 <?php printf( __( 'Tagged %1$s', 'wcbs' ), $tags_list ); ?>
     53                <?php printf( __( 'Tagged %1$s', 'wordcamporg' ), $tags_list ); ?>
    5454            </span>
    5555            <?php endif; // End if $tags_list ?>
     
    5858        <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
    5959        <span class="sep"> | </span>
    60         <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wcbs' ), __( '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>
    6161        <?php endif; ?>
    6262
    63         <?php edit_post_link( __( 'Edit', 'wcbs' ), '<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>' ); ?>
    6464    </footer><!-- #entry-meta -->
    6565</article><!-- #post-<?php the_ID(); ?> -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/footer.php

    r2 r3275  
    2828            <?php do_action( 'wcbs_credits' ); ?>
    2929
    30             <a class="site-info-generator" href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'wcbs' ); ?>" 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>
    3131
    32             <a class="site-info-network" href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wcbs' ); ?>"><?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>
    3333           
    3434        </div><!-- .site-info -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/functions.php

    r2 r3275  
    5959
    6060    /**
    61      * Make theme available for translation
    62      * Translations can be filed in the /languages/ directory
    63      * If you're building a theme based on WCBS, use a find and replace
    64      * to change 'wcbs' to the name of your theme in all the template files
    65      */
    66     load_theme_textdomain( 'wcbs', get_template_directory() . '/languages' );
    67 
    68     /**
    6961     * Add default posts and comments RSS feed links to head
    7062     */
     
    8072     */
    8173    register_nav_menus( array(
    82         'primary' => __( 'Primary Menu', 'wcbs' ),
     74        'primary' => __( 'Primary Menu', 'wordcamporg' ),
    8375    ) );
    8476
     
    10092    // Generic main Sidebar Widget Area - Will show in all pages. Will load default content.
    10193    register_sidebar( array(
    102         'name' => __( 'Primary Sidebar', 'wcbs' ),
     94        'name' => __( 'Primary Sidebar', 'wordcamporg' ),
    10395        'id' => 'sidebar-1',
    104         'description'   => __( 'Main Widgets Sidebar. Shows up in all pages.', 'wcbs' ),
     96        'description'   => __( 'Main Widgets Sidebar. Shows up in all pages.', 'wordcamporg' ),
    10597        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    10698        'after_widget' => "</aside>",
     
    110102    // Generic main Sidebar Widget Area - Will show in all pages. Empty by default.
    111103    register_sidebar( array(
    112         'name' => __( 'Secondary Sidebar', 'wcbs' ),
     104        'name' => __( 'Secondary Sidebar', 'wordcamporg' ),
    113105        'id' => 'sidebar-2',
    114         'description'   => __( 'Secondary Widgets Sidebar - shows up in all pages after the Primary Sidebar block.', 'wcbs' ),
     106        'description'   => __( 'Secondary Widgets Sidebar - shows up in all pages after the Primary Sidebar block.', 'wordcamporg' ),
    115107        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    116108        'after_widget' => "</aside>",
     
    121113    // After Header Widget Area - located after the #masthead header block. Will show in all pages except the homepage. Empty by default.
    122114    register_sidebar( array(
    123         'name' => __( 'After Header', 'wcbs' ),
     115        'name' => __( 'After Header', 'wordcamporg' ),
    124116        'id' => 'after-header',
    125         'description'   => __( 'Will show a widgets area, after the #masthead header, in all pages except the homepage.', 'wcbs' ),
     117        'description'   => __( 'Will show a widgets area, after the #masthead header, in all pages except the homepage.', 'wordcamporg' ),
    126118        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    127119        'after_widget' => "</aside>",
     
    131123    // After Header Widget Area for the Homepage - located after the #masthead header block. Will show only on the homepage. Empty by default.
    132124    register_sidebar( array(
    133         'name' => __( 'After Header (Homepage)', 'wcbs' ),
     125        'name' => __( 'After Header (Homepage)', 'wordcamporg' ),
    134126        'id' => 'after-header-homepage',
    135         'description'   => __( 'Will show a widgets area, after the #masthead header, only on the homepage.', 'wcbs' ),
     127        'description'   => __( 'Will show a widgets area, after the #masthead header, only on the homepage.', 'wordcamporg' ),
    136128        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    137129        'after_widget' => "</aside>",
     
    142134    // Before Content Widget Area - located inside the #main block, before any other content. Will show in all pages except the homepage. Empty by default.
    143135    register_sidebar( array(
    144         'name' => __( 'Before Content', 'wcbs' ),
     136        'name' => __( 'Before Content', 'wordcamporg' ),
    145137        'id' => 'before-content',
    146         'description'   => __( 'Will show a widgets area, inside the #main block, before all the content, in all pages except the homepage.', 'wcbs' ),
     138        'description'   => __( 'Will show a widgets area, inside the #main block, before all the content, in all pages except the homepage.', 'wordcamporg' ),
    147139        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    148140        'after_widget' => "</aside>",
     
    152144    // 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.
    153145    register_sidebar( array(
    154         'name' => __( 'Before Content (Homepage)', 'wcbs' ),
     146        'name' => __( 'Before Content (Homepage)', 'wordcamporg' ),
    155147        'id' => 'before-content-homepage',
    156         'description'   => __( 'Will show a widgets area, inside the #main block, before all the content, only on the homepage.', 'wcbs' ),
     148        'description'   => __( 'Will show a widgets area, inside the #main block, before all the content, only on the homepage.', 'wordcamporg' ),
    157149        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    158150        'after_widget' => "</aside>",
     
    165157    // Footer Widget Area 1
    166158    register_sidebar( array(
    167         'name' => __( 'Footer Widget Area 1', 'wcbs' ),
     159        'name' => __( 'Footer Widget Area 1', 'wordcamporg' ),
    168160        'id' => 'footer-1',
    169         'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wcbs' ),
     161        'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ),
    170162        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    171163        'after_widget' => "</aside>",
     
    175167    // Footer Widget Area 2
    176168    register_sidebar( array(
    177         'name' => __( 'Footer Widget Area 2', 'wcbs' ),
     169        'name' => __( 'Footer Widget Area 2', 'wordcamporg' ),
    178170        'id' => 'footer-2',
    179         'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wcbs' ),
     171        'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ),
    180172        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    181173        'after_widget' => "</aside>",
     
    185177    // Footer Widget Area 3
    186178    register_sidebar( array(
    187         'name' => __( 'Footer Widget Area 3', 'wcbs' ),
     179        'name' => __( 'Footer Widget Area 3', 'wordcamporg' ),
    188180        'id' => 'footer-3',
    189         'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wcbs' ),
     181        'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ),
    190182        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    191183        'after_widget' => "</aside>",
     
    195187    // Footer Widget Area 4
    196188    register_sidebar( array(
    197         'name' => __( 'Footer Widget Area 4', 'wcbs' ),
     189        'name' => __( 'Footer Widget Area 4', 'wordcamporg' ),
    198190        'id' => 'footer-4',
    199         'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wcbs' ),
     191        'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ),
    200192        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    201193        'after_widget' => "</aside>",
     
    205197    // Footer Widget Area 5
    206198    register_sidebar( array(
    207         'name' => __( 'Footer Widget Area 5', 'wcbs' ),
     199        'name' => __( 'Footer Widget Area 5', 'wordcamporg' ),
    208200        'id' => 'footer-5',
    209         'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wcbs' ),
     201        'description'   => __( 'Will Show a widgets area on the footer - can be combined with other Footer Widget Area blocks.', 'wordcamporg' ),
    210202        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    211203        'after_widget' => "</aside>",
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/header.php

    r2092 r3275  
    3232    // Add a page number if necessary:
    3333    if ( $paged >= 2 || $page >= 2 )
    34         echo ' | ' . sprintf( __( 'Page %s', 'wcbs' ), max( $paged, $page ) );
     34        echo ' | ' . sprintf( __( 'Page %s', 'wordcamporg' ), max( $paged, $page ) );
    3535
    3636    ?></title>
     
    6060
    6161        <nav role="navigation" class="site-navigation main-navigation">
    62             <h1 class="assistive-text"><?php _e( 'Menu', 'wcbs' ); ?></h1>
    63             <div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'wcbs' ); ?>"><?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>
    6464
    6565            <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/image.php

    r2 r3275  
    2222                            <?php
    2323                                $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 &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%7$s</a>', 'wcbs' ),
     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 &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%7$s</a>', 'wordcamporg' ),
    2525                                    esc_attr( get_the_date( 'c' ) ),
    2626                                    esc_html( get_the_date() ),
     
    3232                                );
    3333                            ?>
    34                             <?php edit_post_link( __( 'Edit', 'wcbs' ), '<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>' ); ?>
    3535                        </div><!-- .entry-meta -->
    3636
    3737                        <nav id="image-navigation">
    38                             <span class="previous-image"><?php previous_image_link( false, __( '&larr; Previous', 'wcbs' ) ); ?></span>
    39                             <span class="next-image"><?php next_image_link( false, __( 'Next &rarr;', 'wcbs' ) ); ?></span>
     38                            <span class="previous-image"><?php previous_image_link( false, __( '&larr; Previous', 'wordcamporg' ) ); ?></span>
     39                            <span class="next-image"><?php next_image_link( false, __( 'Next &rarr;', 'wordcamporg' ) ); ?></span>
    4040                        </nav><!-- #image-navigation -->
    4141                    </header><!-- .entry-header -->
     
    8484
    8585                        <?php the_content(); ?>
    86                         <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wcbs' ), 'after' => '</div>' ) ); ?>
     86                        <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    8787
    8888                    </div><!-- .entry-content -->
     
    9090                    <footer class="entry-meta">
    9191                        <?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>.', 'wcbs' ), 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() ); ?>
    9393                        <?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>.', 'wcbs' ), 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() ); ?>
    9595                        <?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>.', 'wcbs' ); ?>
     96                            <?php _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'wordcamporg' ); ?>
    9797                        <?php elseif ( ! comments_open() && ! pings_open() ) : // Comments and trackbacks closed ?>
    98                             <?php _e( 'Both comments and trackbacks are currently closed.', 'wcbs' ); ?>
     98                            <?php _e( 'Both comments and trackbacks are currently closed.', 'wordcamporg' ); ?>
    9999                        <?php endif; ?>
    100                         <?php edit_post_link( __( 'Edit', 'wcbs' ), ' <span class="edit-link">', '</span>' ); ?>
     100                        <?php edit_post_link( __( 'Edit', 'wordcamporg' ), ' <span class="edit-link">', '</span>' ); ?>
    101101                    </footer><!-- .entry-meta -->
    102102                </article><!-- #post-<?php the_ID(); ?> -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/inc/template-tags.php

    r2 r3275  
    2626   
    2727            <nav role="navigation" id="<?php echo $nav_id; ?>" class="<?php echo $nav_class; ?>">
    28                 <h1 class="assistive-text"><?php _e( 'Post navigation', 'wcbs' ); ?></h1>
    29                 <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wcbs' ) . '</span> %title' ); ?>
    30                 <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wcbs' ) . '</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( '&larr;', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?>
     30                <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcamporg' ) . '</span>' ); ?>
    3131            </nav><!-- #<?php echo $nav_id; ?> -->
    3232   
     
    3434   
    3535            <nav role="navigation" id="<?php echo $nav_id; ?>" class="<?php echo $nav_class; ?>">
    36                 <h1 class="assistive-text"><?php _e( 'Post navigation', 'wcbs' ); ?></h1>
     36                <h1 class="assistive-text"><?php _e( 'Post navigation', 'wordcamporg' ); ?></h1>
    3737                <?php if ( get_next_posts_link() ) : ?>
    38                     <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'wcbs' ) ); ?></div>
     38                    <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'wordcamporg' ) ); ?></div>
    3939                <?php endif; ?>
    4040   
    4141                <?php if ( get_previous_posts_link() ) : ?>
    42                     <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'wcbs' ) ); ?></div>
     42                    <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'wordcamporg' ) ); ?></div>
    4343                <?php endif; ?>
    4444            </nav><!-- #<?php echo $nav_id; ?> -->
     
    6666    ?>
    6767    <li class="post pingback">
    68         <p><?php _e( 'Pingback:', 'wcbs' ); ?> <?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>
    6969    <?php
    7070            break;
     
    7676                <div class="comment-author vcard">
    7777                    <?php echo get_avatar( $comment, 40 ); ?>
    78                     <?php printf( __( '%s <span class="says">says:</span>', 'wcbs' ), 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() ) ); ?>
    7979                </div><!-- .comment-author .vcard -->
    8080                <?php if ( $comment->comment_approved == '0' ) : ?>
    81                     <em><?php _e( 'Your comment is awaiting moderation.', 'wcbs' ); ?></em>
     81                    <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamporg' ); ?></em>
    8282                    <br />
    8383                <?php endif; ?>
     
    8787                    <?php
    8888                        /* translators: 1: date, 2: time */
    89                         printf( __( '%1$s at %2$s', 'wcbs' ), get_comment_date(), get_comment_time() ); ?>
     89                        printf( __( '%1$s at %2$s', 'wordcamporg' ), get_comment_date(), get_comment_time() ); ?>
    9090                    </time></a>
    91                     <?php edit_comment_link( __( '(Edit)', 'wcbs' ), ' ' );
     91                    <?php edit_comment_link( __( '(Edit)', 'wordcamporg' ), ' ' );
    9292                    ?>
    9393                </div><!-- .comment-meta .commentmetadata -->
     
    114114 */
    115115function 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>', 'wcbs' ),
     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' ),
    117117        esc_url( get_permalink() ),
    118118        esc_attr( get_the_time() ),
     
    120120        esc_html( get_the_date() ),
    121121        esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    122         esc_attr( sprintf( __( 'View all posts by %s', 'wcbs' ), get_the_author() ) ),
     122        esc_attr( sprintf( __( 'View all posts by %s', 'wordcamporg' ), get_the_author() ) ),
    123123        esc_html( get_the_author() )
    124124    );
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/inc/theme-options/theme-options.php

    r2 r3275  
    3636    add_settings_field(
    3737        'sample_checkbox', // Unique identifier for the field for this section
    38         __( 'Sample Checkbox', 'wcbs' ), // Setting field label
     38        __( 'Sample Checkbox', 'wordcamporg' ), // Setting field label
    3939        'wcbs_settings_field_sample_checkbox', // Function that renders the settings field
    4040        'theme_options', // Menu slug, used to uniquely identify the page; see wcbs_theme_options_add_page()
     
    4242    );
    4343
    44     add_settings_field( 'sample_text_input', __( 'Sample Text Input', 'wcbs' ), 'wcbs_settings_field_sample_text_input', 'theme_options', 'general' );
    45     add_settings_field( 'sample_select_options', __( 'Sample Select Options', 'wcbs' ), 'wcbs_settings_field_sample_select_options', 'theme_options', 'general' );
    46     add_settings_field( 'sample_radio_buttons', __( 'Sample Radio Buttons', 'wcbs' ), 'wcbs_settings_field_sample_radio_buttons', 'theme_options', 'general' );
    47     add_settings_field( 'sample_textarea', __( 'Sample Textarea', 'wcbs' ), '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' );
    4848}
    4949add_action( 'admin_init', 'wcbs_theme_options_init' );
     
    7272function wcbs_theme_options_add_page() {
    7373    $theme_page = add_theme_page(
    74         __( 'Theme Options', 'wcbs' ),   // Name of page
    75         __( 'Theme Options', 'wcbs' ),   // Label in menu
     74        __( 'Theme Options', 'wordcamporg' ),   // Name of page
     75        __( 'Theme Options', 'wordcamporg' ),   // Label in menu
    7676        'edit_theme_options',                    // Capability required
    7777        'theme_options',                         // Menu slug, used to uniquely identify the page
     
    9090        '0' => array(
    9191            'value' =>  '0',
    92             'label' => __( 'Zero', 'wcbs' )
     92            'label' => __( 'Zero', 'wordcamporg' )
    9393        ),
    9494        '1' => array(
    9595            'value' =>  '1',
    96             'label' => __( 'One', 'wcbs' )
     96            'label' => __( 'One', 'wordcamporg' )
    9797        ),
    9898        '2' => array(
    9999            'value' => '2',
    100             'label' => __( 'Two', 'wcbs' )
     100            'label' => __( 'Two', 'wordcamporg' )
    101101        ),
    102102        '3' => array(
    103103            'value' => '3',
    104             'label' => __( 'Three', 'wcbs' )
     104            'label' => __( 'Three', 'wordcamporg' )
    105105        ),
    106106        '4' => array(
    107107            'value' => '4',
    108             'label' => __( 'Four', 'wcbs' )
     108            'label' => __( 'Four', 'wordcamporg' )
    109109        ),
    110110        '5' => array(
    111111            'value' => '3',
    112             'label' => __( 'Five', 'wcbs' )
     112            'label' => __( 'Five', 'wordcamporg' )
    113113        )
    114114    );
     
    126126        'yes' => array(
    127127            'value' => 'yes',
    128             'label' => __( 'Yes', 'wcbs' )
     128            'label' => __( 'Yes', 'wordcamporg' )
    129129        ),
    130130        'no' => array(
    131131            'value' => 'no',
    132             'label' => __( 'No', 'wcbs' )
     132            'label' => __( 'No', 'wordcamporg' )
    133133        ),
    134134        'maybe' => array(
    135135            'value' => 'maybe',
    136             'label' => __( 'Maybe', 'wcbs' )
     136            'label' => __( 'Maybe', 'wordcamporg' )
    137137        )
    138138    );
     
    172172    <label for"sample-checkbox">
    173173        <input type="checkbox" name="wcbs_theme_options[sample_checkbox]" id="sample-checkbox" <?php checked( 'on', $options['sample_checkbox'] ); ?> />
    174         <?php _e( 'A sample checkbox.', 'wcbs' );  ?>
     174        <?php _e( 'A sample checkbox.', 'wordcamporg' );  ?>
    175175    </label>
    176176    <?php
     
    184184    ?>
    185185    <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', 'wcbs' ); ?></label>
     186    <label class="description" for="sample-text-input"><?php _e( 'Sample text input', 'wordcamporg' ); ?></label>
    187187    <?php
    188188}
     
    210210        ?>
    211211    </select>
    212     <label class="description" for="sample_theme_options[selectinput]"><?php _e( 'Sample select input', 'wcbs' ); ?></label>
     212    <label class="description" for="sample_theme_options[selectinput]"><?php _e( 'Sample select input', 'wordcamporg' ); ?></label>
    213213    <?php
    214214}
     
    241241    ?>
    242242    <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', 'wcbs' ); ?></label>
     243    <label class="description" for="sample-textarea"><?php _e( 'Sample textarea', 'wordcamporg' ); ?></label>
    244244    <?php
    245245}
     
    254254    <div class="wrap">
    255255        <?php screen_icon(); ?>
    256         <h2><?php printf( __( '%s Theme Options', 'wcbs' ), get_current_theme() ); ?></h2>
     256        <h2><?php printf( __( '%s Theme Options', 'wordcamporg' ), get_current_theme() ); ?></h2>
    257257        <?php settings_errors(); ?>
    258258
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/options/class-wcb-button-option.php

    r2 r3275  
    2727        ?>
    2828        <tr>
    29             <th><?php esc_html_e( 'Featured Button', 'wordcampbase' ); ?></th>
     29            <th><?php esc_html_e( 'Featured Button', 'wordcamporg' ); ?></th>
    3030            <td class="<?php echo $class; ?>">
    3131                <label class="description checkbox-field" for="<?php echo $ids['visible']; ?>">
     
    3434                        checked( $this->get_option('visible') );
    3535                        ?> />
    36                     <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcampbase' ); ?>
     36                    <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcamporg' ); ?>
    3737                </label><br />
    3838                <label class="description text-field" for="<?php echo $ids['text']; ?>">
    39                     <span><?php esc_html_e( 'Text:', 'wordcampbase' ); ?></span>
     39                    <span><?php esc_html_e( 'Text:', 'wordcamporg' ); ?></span>
    4040                    <input type="text" id="<?php echo $ids['text']; ?>"
    4141                        <?php $this->name('text'); ?>
     
    4343                </label><br />
    4444                <label class="description text-field" for="<?php echo $ids['url']; ?>">
    45                     <span><?php esc_html_e( 'URL:', 'wordcampbase' ); ?></span>
     45                    <span><?php esc_html_e( 'URL:', 'wordcamporg' ); ?></span>
    4646                    <input type="text" id="<?php echo $ids['url']; ?>"
    4747                        <?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  
    109109            <input class="signature" type="hidden" <?php $this->name('layout'); ?> value="<?php echo esc_attr( serialize( $layout ) ); ?>"/>
    110110            <?php $this->render_row( $layout ); ?>
    111             <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcampbase'); ?></a></div>
     111            <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcamporg'); ?></a></div>
    112112            <?php if ( $this->type != 'content' ):
    113113                $front_page_id = esc_attr( "front-page-only-$this->key" );
     
    118118                        checked( $this->get_option('front_only') );
    119119                        ?> />
    120                     <?php esc_html_e( 'Front page only', 'wordcampbase' ); ?>
     120                    <?php esc_html_e( 'Front page only', 'wordcamporg' ); ?>
    121121                </label>
    122122            <?php endif; ?>
    123123            <div class="picker">
    124124                <div class="directions">
    125                     <?php esc_html_e( 'Choose a new row layout.', 'wordcampbase' ); ?>
    126                     <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcampbase'); ?></a>
     125                    <?php esc_html_e( 'Choose a new row layout.', 'wordcamporg' ); ?>
     126                    <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcamporg'); ?></a>
    127127                </div>
    128128                <?php
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/options/class-wcb-options.php

    r2 r3275  
    2020            'key'       => 'grid',
    2121            'default'   => 'grid960',
    22             'label'     => __('Grid Width', 'wordcampbase'),
     22            'label'     => __('Grid Width', 'wordcamporg'),
    2323            'values'   => array(
    24                 'grid960'   => __( '960px wide', 'wordcampbase' ),
    25                 'grid720'   => __( '720px wide', 'wordcampbase' ),
     24                'grid960'   => __( '960px wide', 'wordcamporg' ),
     25                'grid720'   => __( '720px wide', 'wordcamporg' ),
    2626            )
    2727        ) );
     
    3434                'front_only'    => true,
    3535            ),
    36             'label'     => __('After Header', 'wordcampbase'),
     36            'label'     => __('After Header', 'wordcamporg'),
    3737        ) );
    3838
     
    4444                'front_only'    => true,
    4545            ),
    46             'label'     => __('Before Content', 'wordcampbase'),
     46            'label'     => __('Before Content', 'wordcamporg'),
    4747        ) );
    4848
     
    5757                'front_only'    => false,
    5858            ),
    59             'label'     => __('Content', 'wordcampbase'),
     59            'label'     => __('Content', 'wordcamporg'),
    6060            'type'      => 'content',
    6161        ) );
     
    6868                'front_only'    => false,
    6969            ),
    70             'label'     => __('After Content', 'wordcampbase'),
     70            'label'     => __('After Content', 'wordcamporg'),
    7171        ) );
    7272
     
    7878                'front_only'    => false,
    7979            ),
    80             'label'     => __('Before Footer', 'wordcampbase'),
     80            'label'     => __('Before Footer', 'wordcamporg'),
    8181        ) );
    8282
     
    8585            'default'   => array(
    8686                'visible'       => false,
    87                 'text'          => __('Register now!', 'wordcampbase'),
     87                'text'          => __('Register now!', 'wordcamporg'),
    8888                'url'           => '',
    8989            ),
     
    9393            'key'       => 'typekit',
    9494            'default'   => 'jnd4dds',
    95             'label'     => __('Typekit', 'wordcampbase'),
     95            'label'     => __('Typekit', 'wordcamporg'),
    9696            'values'    => array(
    97                 'default'   => __( 'Use the default Typekit fonts.', 'wordcampbase' ),
    98                 'custom'    => __( 'Use a custom Typekit key:', 'wordcampbase' ),
    99                 'off'       => __( 'Do not use any Typekit fonts.', 'wordcampbase' ),
     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' ),
    100100            ),
    101101        ) );
     
    112112
    113113    function admin_menu() {
    114         $page = add_theme_page( __('Theme Options', 'wordcampbase'), __('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' ) );
    115115
    116116        add_action("wcb_enqueue_scripts_$page", array( &$this, 'enqueue_scripts' ) );
     
    142142        <div class="wrap">
    143143            <?php screen_icon(); ?>
    144             <h2><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcampbase' ); ?></h2>
     144            <h2><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcamporg' ); ?></h2>
    145145
    146146            <?php if ( false !== $_REQUEST['updated'] ) : ?>
    147                 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcampbase' ); ?></strong></p></div>
     147                <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div>
    148148            <?php endif; ?>
    149149
    150150            <form method="post" action="options.php">
    151151                <?php settings_fields( 'wcb_theme_options' ); ?>
    152                 <h3><?php _e('General Options', 'wordcampbase'); ?></h3>
     152                <h3><?php _e('General Options', 'wordcamporg'); ?></h3>
    153153                <table class="form-table">
    154154                    <?php
     
    159159                </table>
    160160
    161                 <h3><?php _e('Theme Layout', 'wordcampbase'); ?></h3>
     161                <h3><?php _e('Theme Layout', 'wordcamporg'); ?></h3>
    162162                <table class="form-table">
    163163                    <?php
     
    165165
    166166                    <tr id="visibility-row">
    167                         <th><?php esc_html_e( 'Show Rows', 'wordcampbase' ); ?></th>
     167                        <th><?php esc_html_e( 'Show Rows', 'wordcamporg' ); ?></th>
    168168                        <td>
    169169                            <?php foreach ( $rows as $row ) {
     
    174174
    175175                    <tr>
    176                         <th><?php esc_html_e( 'Row Layout', 'wordcampbase' ); ?></th>
     176                        <th><?php esc_html_e( 'Row Layout', 'wordcamporg' ); ?></th>
    177177                        <td>
    178178                            <?php foreach ( $rows as $row ) {
     
    184184                </table>
    185185                <p class="submit">
    186                     <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcampbase' ); ?>" />
     186                    <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" />
    187187                </p>
    188188            </form>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sessions/class-wcb-session-template.php

    r2 r3275  
    9696        $track  = wcb_get_session_track();
    9797
    98         $meta['speakers']   = sprintf( __('Presented by %s', 'wordcampbase'), wcb_get_session_speakers() );
     98        $meta['speakers']   = sprintf( __('Presented by %s', 'wordcamporg'), wcb_get_session_speakers() );
    9999
    100100        if ( empty( $track ) ) {
     
    102102
    103103        } else {
    104             $meta['track'] = sprintf( __('%s Track', 'wordcampbase'), $track );
     104            $meta['track'] = sprintf( __('%s Track', 'wordcamporg'), $track );
    105105
    106106            $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  
    2424                'speakers'  => array(
    2525                    'type'      => 'text',
    26                     'label'     => __('Speakers', 'wordcampbase'),
     26                    'label'     => __('Speakers', 'wordcamporg'),
    2727                )
    2828            );
     
    3030            $box = wcb_get_metabox( 'WCB_Post_Metabox' );
    3131            $box->add_instance( WCB_SESSION_POST_TYPE, array(
    32                 'title'          => __('Speakers', 'wordcampbase'),
     32                'title'          => __('Speakers', 'wordcamporg'),
    3333                'meta_manager'   => $this->meta_manager,
    3434                'meta_fields'    => $meta_fields,
     
    4242        // Session post type labels
    4343        $labels = array (
    44             'name'                  => __( 'Sessions', 'wordcampbase' ),
    45             'singular_name'         => __( 'Session', 'wordcampbase' ),
    46             'add_new'               => __( 'Add New', 'wordcampbase' ),
    47             'add_new_item'          => __( 'Create New Session', 'wordcampbase' ),
    48             'edit'                  => __( 'Edit', 'wordcampbase' ),
    49             'edit_item'             => __( 'Edit Session', 'wordcampbase' ),
    50             'new_item'              => __( 'New Session', 'wordcampbase' ),
    51             'view'                  => __( 'View Session', 'wordcampbase' ),
    52             'view_item'             => __( 'View Session', 'wordcampbase' ),
    53             'search_items'          => __( 'Search Sessions', 'wordcampbase' ),
    54             'not_found'             => __( 'No sessions found', 'wordcampbase' ),
    55             'not_found_in_trash'    => __( 'No sessions found in Trash', 'wordcampbase' ),
    56             'parent_item_colon'     => __( 'Parent Session:', 'wordcampbase' )
     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' )
    5757        );
    5858
     
    9898        // Labels
    9999        $labels = array (
    100             'name'              => __( 'Tracks', 'wordcampbase'),
    101             'singular_name'     => __( 'Track', 'wordcampbase'),
    102             'search_items'      => __( 'Search Tracks', 'wordcampbase'),
     100            'name'              => __( 'Tracks', 'wordcamporg'),
     101            'singular_name'     => __( 'Track', 'wordcamporg'),
     102            'search_items'      => __( 'Search Tracks', 'wordcamporg'),
    103103            'popular_items'     => __( 'Popular Tracks','wordcampbase'),
    104             'all_items'         => __( 'All Tracks', 'wordcampbase'),
    105             'edit_item'         => __( 'Edit Track', 'wordcampbase'),
    106             'update_item'       => __( 'Update Track', 'wordcampbase'),
    107             'add_new_item'      => __( 'Add Track', 'wordcampbase'),
    108             'new_item_name'     => __( 'New Track', 'wordcampbase'),
     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'),
    109109        );
    110110
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/speakers/class-wcb-speakers.php

    r2 r3275  
    2323                'email'     => array(
    2424                    'type'      => 'text',
    25                     'label'     => __('Gravatar Email', 'wordcampbase'),
     25                    'label'     => __('Gravatar Email', 'wordcamporg'),
    2626                )
    2727            );
     
    2929            $box = wcb_get_metabox( 'WCB_Post_Metabox' );
    3030            $box->add_instance( WCB_SPEAKER_POST_TYPE, array(
    31                 'title'          => __('Gravatar Email', 'wordcampbase'),
     31                'title'          => __('Gravatar Email', 'wordcamporg'),
    3232                'meta_manager'   => $this->meta_manager,
    3333                'meta_fields'    => $meta_fields,
     
    3939        // Speaker post type labels
    4040        $labels = array (
    41             'name'                  => __( 'Speakers', 'wordcampbase' ),
    42             'singular_name'         => __( 'Speaker', 'wordcampbase' ),
    43             'add_new'               => __( 'Add New', 'wordcampbase' ),
    44             'add_new_item'          => __( 'Create New Speaker', 'wordcampbase' ),
    45             'edit'                  => __( 'Edit', 'wordcampbase' ),
    46             'edit_item'             => __( 'Edit Speaker', 'wordcampbase' ),
    47             'new_item'              => __( 'New Speaker', 'wordcampbase' ),
    48             'view'                  => __( 'View Speaker', 'wordcampbase' ),
    49             'view_item'             => __( 'View Speaker', 'wordcampbase' ),
    50             'search_items'          => __( 'Search Speakers', 'wordcampbase' ),
    51             'not_found'             => __( 'No speakers found', 'wordcampbase' ),
    52             'not_found_in_trash'    => __( 'No speakers found in Trash', 'wordcampbase' ),
    53             'parent_item_colon'     => __( 'Parent Speaker:', 'wordcampbase' )
     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' )
    5454        );
    5555
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sponsors/class-wcb-sponsor-order.php

    r2 r3275  
    1313        $page = add_submenu_page(
    1414            'edit.php?post_type=' . WCB_SPONSOR_POST_TYPE,  // Page type
    15             __('Order Sponsor Levels', 'wordcampbase'),              // Page title
    16             __('Order Sponsor Levels', 'wordcampbase'),              // Menu title
     15            __('Order Sponsor Levels', 'wordcamporg'),              // Page title
     16            __('Order Sponsor Levels', 'wordcamporg'),              // Menu title
    1717            'edit_posts',                                   // Capability
    1818            'sponsor_levels',                               // Menu slug
     
    5757        <div class="wrap">
    5858            <?php screen_icon(); ?>
    59             <h2><?php _e( 'Order Sponsor Levels', 'wordcampbase' ); ?></h2>
     59            <h2><?php _e( 'Order Sponsor Levels', 'wordcamporg' ); ?></h2>
    6060
    6161            <?php if ( false !== $_REQUEST['updated'] ) : ?>
    62                 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcampbase' ); ?></strong></p></div>
     62                <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div>
    6363            <?php endif; ?>
    6464
     
    6666                <?php settings_fields( 'wcb_sponsor_options' ); ?>
    6767                <div class="description sponsor-order-instructions">
    68                     <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcampbase'); ?>
     68                    <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcamporg'); ?>
    6969                </div>
    7070                <ul class="sponsor-order">
     
    7777                </ul>
    7878                <p class="submit">
    79                     <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcampbase' ); ?>" />
     79                    <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" />
    8080                </p>
    8181            </form>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sponsors/class-wcb-sponsors.php

    r2 r3275  
    2525        // Sponsor post type labels
    2626        $labels = array (
    27             'name'                  => __( 'Sponsors', 'wordcampbase' ),
    28             'singular_name'         => __( 'Sponsor', 'wordcampbase' ),
    29             'add_new'               => __( 'Add New', 'wordcampbase' ),
    30             'add_new_item'          => __( 'Create New Sponsor', 'wordcampbase' ),
    31             'edit'                  => __( 'Edit', 'wordcampbase' ),
    32             'edit_item'             => __( 'Edit Sponsor', 'wordcampbase' ),
    33             'new_item'              => __( 'New Sponsor', 'wordcampbase' ),
    34             'view'                  => __( 'View Sponsor', 'wordcampbase' ),
    35             'view_item'             => __( 'View Sponsor', 'wordcampbase' ),
    36             'search_items'          => __( 'Search Sponsors', 'wordcampbase' ),
    37             'not_found'             => __( 'No sponsors found', 'wordcampbase' ),
    38             'not_found_in_trash'    => __( 'No sponsors found in Trash', 'wordcampbase' ),
    39             'parent_item_colon'     => __( 'Parent Sponsor:', 'wordcampbase' )
     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' )
    4040        );
    4141
     
    8181        // Labels
    8282        $labels = array (
    83             'name'              => __( 'Sponsor Levels', 'wordcampbase'),
    84             'singular_name'     => __( 'Sponsor Level', 'wordcampbase'),
    85             'search_items'      => __( 'Search Sponsor Levels', 'wordcampbase'),
    86             'popular_items'     => __( 'Popular Sponsor Levels', 'wordcampbase'),
    87             'all_items'         => __( 'All Sponsor Levels', 'wordcampbase'),
    88             'edit_item'         => __( 'Edit Sponsor Level', 'wordcampbase'),
     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'),
    8989            'update_item'       => __( 'Update Sponsor Level','wordcampbase'),
    90             'add_new_item'      => __( 'Add Sponsor Level', 'wordcampbase'),
    91             'new_item_name'     => __( 'New Sponsor Level', 'wordcampbase'),
     90            'add_new_item'      => __( 'Add Sponsor Level', 'wordcamporg'),
     91            'new_item_name'     => __( 'New Sponsor Level', 'wordcamporg'),
    9292        );
    9393
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/sponsors/class-wcb-widget-sponsors.php

    r2 r3275  
    66        $widget_ops = array(
    77            'classname' => 'wcb_widget_sponsors',
    8             'description' => __( 'Your WordCamp&#8217;s Sponsors', 'wordcampbase' ),
     8            'description' => __( 'Your WordCamp&#8217;s Sponsors', 'wordcamporg' ),
    99        );
    10         $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcampbase'), $widget_ops );
     10        $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcamporg'), $widget_ops );
    1111    }
    1212
     
    3737            while ( wcb_have_sponsors() ):
    3838                wcb_the_sponsor();
    39                 ?><a class="sponsor-logo" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcampbase' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php
     39                ?><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
    4040                    if ( has_post_thumbnail() )
    4141                        the_post_thumbnail();
     
    5656        $title = $instance['title'];
    5757?>
    58         <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wordcampbase'); ?> <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>
    5959<?php
    6060    }
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-footer.php

    r2 r3275  
    1818                <div id="site-generator">
    1919                    <?php do_action( 'twentyten_credits' ); ?>
    20                     <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'wordcampbase' ) ); ?>" 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>
    2121                </div><!-- #site-generator -->
    2222
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-header.php

    r2 r3275  
    1010            <div id="return-to-central">
    1111<?php if ( false !== strpos($_SERVER['HTTP_HOST'], 'wordpress.org')) { ?>
    12                 <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcampbase' ); ?>"><?php _e('&larr; WordPress.org', 'wordcampbase'); ?></a>
     12                <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcamporg' ); ?>"><?php _e('&larr; WordPress.org', 'wordcamporg'); ?></a>
    1313<?php } else { ?>
    14                 <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcampbase' ); ?>"><?php _e('&larr; WordCamp Central', 'wordcampbase'); ?></a>
     14                <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcamporg' ); ?>"><?php _e('&larr; WordCamp Central', 'wordcamporg'); ?></a>
    1515<?php } ?>
    1616
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/structure/class-wcb-menu.php

    r2 r3275  
    1010            <div id="access" role="navigation" class="clearfix">
    1111                <?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', 'wordcampbase' ); ?>"><?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>
    1313                <?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.  */ ?>
    1414                <?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  
    7171            'after_header'      => array(
    7272                'id'   => 'after-header',
    73                 'name' => __('After Header', 'wordcampbase'),
     73                'name' => __('After Header', 'wordcamporg'),
    7474            ),
    7575            'before_content'    => array(
    7676                'id'   => 'before-content',
    77                 'name' => __('Before Content', 'wordcampbase'),
     77                'name' => __('Before Content', 'wordcamporg'),
    7878            ),
    7979            'content'           => array(
    8080                'id'   => 'content-row',
    81                 'name' => __('Content', 'wordcampbase'),
     81                'name' => __('Content', 'wordcamporg'),
    8282            ),
    8383            'after_content'     => array(
    8484                'id'   => 'after-content',
    85                 'name' => __('After Content', 'wordcampbase'),
     85                'name' => __('After Content', 'wordcamporg'),
    8686            ),
    8787            'before_footer'     => array(
    8888                'id'   => 'before-footer',
    89                 'name' => __('Before Footer', 'wordcampbase'),
     89                'name' => __('Before Footer', 'wordcamporg'),
    9090            ),
    9191        );
     
    100100
    101101            if ( $option['front_only'] )
    102                 $args['name'] = sprintf( __('Front Page: %s', 'wordcampbase'), $args['name'] );
     102                $args['name'] = sprintf( __('Front Page: %s', 'wordcamporg'), $args['name'] );
    103103
    104104            $this->sidebars[ $id ] = new WCB_Sidebar_Row( $args );
     
    109109        $this->sidebars['content'] = new WCB_Sidebar_Row( array(
    110110            'id'   => 'content-row',
    111             'name' => __('Content', 'wordcampbase'),
     111            'name' => __('Content', 'wordcamporg'),
    112112            'grid' => array( array( 12, 'content' ) ),
    113113        ) );
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/class-wcb-metabox.php

    r1949 r3275  
    6767        $defaults = array(
    6868            // 'id'            => '',
    69             'title'         => __( 'Untitled' , 'wordcampbase'),
     69            'title'         => __( 'Untitled' , 'wordcamporg'),
    7070            'context'       => 'side',
    7171            'priority'      => 'default',
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/functions.php

    r2 r3275  
    11<?php
    2 
    3 load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );
    42
    53require_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  
    1010
    1111    if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
    12         $meta['category'] = sprintf( __('Posted in %s', 'wordcampbase'), get_the_category_list( ', ' ) );
     12        $meta['category'] = sprintf( __('Posted in %s', 'wordcamporg'), get_the_category_list( ', ' ) );
    1313    }
    1414    if ( is_object_in_taxonomy( get_post_type(), 'tag' ) ) {
    15         $meta['tag'] = sprintf( __('Tagged %s', 'wordcampbase'), get_the_tag_list( '', ', ' ) );
     15        $meta['tag'] = sprintf( __('Tagged %s', 'wordcamporg'), get_the_tag_list( '', ', ' ) );
    1616    }
    1717
     
    7373    // Add a page number if necessary:
    7474    if ( $paged >= 2 || $page >= 2 )
    75         echo ' | ' . sprintf( __( 'Page %s', 'wordcampbase' ), max( $paged, $page ) );
     75        echo ' | ' . sprintf( __( 'Page %s', 'wordcamporg' ), max( $paged, $page ) );
    7676    echo "</title>";
    7777}
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/twentyten-functions.php

    r1950 r3275  
    6666 * @uses add_custom_background() To add support for a custom background.
    6767 * @uses add_editor_style() To style the visual editor.
    68  * @uses load_theme_textdomain() For translation/localization support.
    6968 * @uses add_custom_image_header() To add support for a custom header.
    7069 * @uses register_default_headers() To register the default custom header images provided with the theme.
     
    8382    // Add default posts and comments RSS feed links to head
    8483    add_theme_support( 'automatic-feed-links' );
    85 
    86     // Make theme available for translation
    87     // Translations can be filed in the /languages/ directory
    88     // load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );
    8984
    9085    $locale = get_locale();
     
    9590    // This theme uses wp_nav_menu() in one location.
    9691    register_nav_menus( array(
    97         'primary' => __( 'Primary Navigation', 'wordcampbase' ),
     92        'primary' => __( 'Primary Navigation', 'wordcamporg' ),
    9893    ) );
    9994
     
    131126            'url' => '%s/images/headers/berries.jpg',
    132127            'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
    133             'description' => __( 'Berries', 'wordcampbase' )
     128            'description' => __( 'Berries', 'wordcamporg' )
    134129        ),
    135130        'cherryblossom' => array(
    136131            'url' => '%s/images/headers/cherryblossoms.jpg',
    137132            'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
    138             'description' => __( 'Cherry Blossoms', 'wordcampbase' )
     133            'description' => __( 'Cherry Blossoms', 'wordcamporg' )
    139134        ),
    140135        'concave' => array(
    141136            'url' => '%s/images/headers/concave.jpg',
    142137            'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
    143             'description' => __( 'Concave', 'wordcampbase' )
     138            'description' => __( 'Concave', 'wordcamporg' )
    144139        ),
    145140        'fern' => array(
    146141            'url' => '%s/images/headers/fern.jpg',
    147142            'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
    148             'description' => __( 'Fern', 'wordcampbase' )
     143            'description' => __( 'Fern', 'wordcamporg' )
    149144        ),
    150145        'forestfloor' => array(
    151146            'url' => '%s/images/headers/forestfloor.jpg',
    152147            'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
    153             'description' => __( 'Forest Floor', 'wordcampbase' )
     148            'description' => __( 'Forest Floor', 'wordcamporg' )
    154149        ),
    155150        'inkwell' => array(
    156151            'url' => '%s/images/headers/inkwell.jpg',
    157152            'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
    158             'description' => __( 'Inkwell', 'wordcampbase' )
     153            'description' => __( 'Inkwell', 'wordcamporg' )
    159154        ),
    160155        'path' => array(
    161156            'url' => '%s/images/headers/path.jpg',
    162157            'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
    163             'description' => __( 'Path', 'wordcampbase' )
     158            'description' => __( 'Path', 'wordcamporg' )
    164159        ),
    165160        'sunset' => array(
    166161            'url' => '%s/images/headers/sunset.jpg',
    167162            'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
    168             'description' => __( 'Sunset', 'wordcampbase' )
     163            'description' => __( 'Sunset', 'wordcamporg' )
    169164        )
    170165    ) );*/
     
    237232        sprintf(
    238233            // translators: The title of the post to continue reading
    239             __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcampbase' ),
     234            __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ),
    240235            sprintf( '<span class="assistive-text">%s</span> ', get_the_title() )
    241236        )
     
    309304        <div class="comment-author vcard">
    310305            <?php echo get_avatar( $comment, 40 ); ?>
    311             <?php printf( __( '%s <span class="says">says:</span>', 'wordcampbase' ), 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() ) ); ?>
    312307        </div><!-- .comment-author .vcard -->
    313308        <?php if ( $comment->comment_approved == '0' ) : ?>
    314             <em><?php _e( 'Your comment is awaiting moderation.', 'wordcampbase' ); ?></em>
     309            <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamporg' ); ?></em>
    315310            <br />
    316311        <?php endif; ?>
     
    319314            <?php
    320315                /* translators: 1: date, 2: time */
    321                 printf( __( '%1$s at %2$s', 'wordcampbase' ), 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' ), ' ' );
    322317            ?>
    323318        </div><!-- .comment-meta .commentmetadata -->
     
    336331    ?>
    337332    <li class="post pingback">
    338         <p><?php _e( 'Pingback:', 'wordcampbase' ); ?> <?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>
    339334    <?php
    340335            break;
     
    355350    // Area 1, located at the top of the sidebar.
    356351    register_sidebar( array(
    357         'name' => __( 'Primary Widget Area', 'wordcampbase' ),
     352        'name' => __( 'Primary Widget Area', 'wordcamporg' ),
    358353        'id' => 'primary-widget-area',
    359         'description' => __( 'The primary widget area', 'wordcampbase' ),
     354        'description' => __( 'The primary widget area', 'wordcamporg' ),
    360355        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    361356        'after_widget' => '</li>',
     
    366361    // Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
    367362    register_sidebar( array(
    368         'name' => __( 'Secondary Widget Area', 'wordcampbase' ),
     363        'name' => __( 'Secondary Widget Area', 'wordcamporg' ),
    369364        'id' => 'secondary-widget-area',
    370         'description' => __( 'The secondary widget area', 'wordcampbase' ),
     365        'description' => __( 'The secondary widget area', 'wordcamporg' ),
    371366        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    372367        'after_widget' => '</li>',
     
    377372    // Area 3, located in the footer. Empty by default.
    378373    register_sidebar( array(
    379         'name' => __( 'First Footer Widget Area', 'wordcampbase' ),
     374        'name' => __( 'First Footer Widget Area', 'wordcamporg' ),
    380375        'id' => 'first-footer-widget-area',
    381         'description' => __( 'The first footer widget area', 'wordcampbase' ),
     376        'description' => __( 'The first footer widget area', 'wordcamporg' ),
    382377        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    383378        'after_widget' => '</li>',
     
    388383    // Area 4, located in the footer. Empty by default.
    389384    register_sidebar( array(
    390         'name' => __( 'Second Footer Widget Area', 'wordcampbase' ),
     385        'name' => __( 'Second Footer Widget Area', 'wordcamporg' ),
    391386        'id' => 'second-footer-widget-area',
    392         'description' => __( 'The second footer widget area', 'wordcampbase' ),
     387        'description' => __( 'The second footer widget area', 'wordcamporg' ),
    393388        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    394389        'after_widget' => '</li>',
     
    399394    // Area 5, located in the footer. Empty by default.
    400395    register_sidebar( array(
    401         'name' => __( 'Third Footer Widget Area', 'wordcampbase' ),
     396        'name' => __( 'Third Footer Widget Area', 'wordcamporg' ),
    402397        'id' => 'third-footer-widget-area',
    403         'description' => __( 'The third footer widget area', 'wordcampbase' ),
     398        'description' => __( 'The third footer widget area', 'wordcamporg' ),
    404399        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    405400        'after_widget' => '</li>',
     
    410405    // Area 6, located in the footer. Empty by default.
    411406    register_sidebar( array(
    412         'name' => __( 'Fourth Footer Widget Area', 'wordcampbase' ),
     407        'name' => __( 'Fourth Footer Widget Area', 'wordcamporg' ),
    413408        'id' => 'fourth-footer-widget-area',
    414         'description' => __( 'The fourth footer widget area', 'wordcampbase' ),
     409        'description' => __( 'The fourth footer widget area', 'wordcamporg' ),
    415410        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    416411        'after_widget' => '</li>',
     
    443438 */
    444439function twentyten_posted_on() {
    445     printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcampbase' ),
     440    printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcamporg' ),
    446441        'meta-prep meta-prep-author',
    447442        sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
     
    452447        sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    453448            get_author_posts_url( get_the_author_meta( 'ID' ) ),
    454             sprintf( esc_attr__( 'View all posts by %s', 'wordcampbase' ), get_the_author() ),
     449            sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ),
    455450            get_the_author()
    456451        )
     
    469464    $tag_list = get_the_tag_list( '', ', ' );
    470465    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>.', 'wordcampbase' );
     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' );
    472467    } 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>.', 'wordcampbase' );
     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' );
    474469    } else {
    475         $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcampbase' );
     470        $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' );
    476471    }
    477472    // 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  
    33function twentyten_posted_on() {
    44    $meta = array();
    5     $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcampbase' ),
     5    $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcamporg' ),
    66        sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
    77            get_permalink(),
     
    1111        sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    1212            get_author_posts_url( get_the_author_meta( 'ID' ) ),
    13             sprintf( esc_attr__( 'View all posts by %s', 'wordcampbase' ), get_the_author() ),
     13            sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ),
    1414            get_the_author()
    1515        )
     
    2020        'before'    => '<span class="comments-link">',
    2121        'after'     => '</span>',
    22         'zero'      => __( 'Leave a comment', 'wordcampbase' ),
    23         'one'       => __( '1 Comment', 'wordcampbase' ),
    24         'many'      => __( '% Comments', 'wordcampbase' ),
     22        'zero'      => __( 'Leave a comment', 'wordcamporg' ),
     23        'one'       => __( '1 Comment', 'wordcamporg' ),
     24        'many'      => __( '% Comments', 'wordcamporg' ),
    2525    );
    2626
    2727    $meta['edit'] = array(
    28         'title'     => __( 'Edit', 'wordcampbase' ),
     28        'title'     => __( 'Edit', 'wordcamporg' ),
    2929        'before'    => '<span class="edit-link">',
    3030        'after'     => '</span>',
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/no-results.php

    r2 r3275  
    1212<article id="post-0" class="post no-results not-found">
    1313    <header class="entry-header">
    14         <h1 class="entry-title"><?php _e( 'Nothing Found', 'wcbs' ); ?></h1>
     14        <h1 class="entry-title"><?php _e( 'Nothing Found', 'wordcamporg' ); ?></h1>
    1515    </header><!-- .entry-header -->
    1616
     
    1818        <?php if ( is_home() ) { ?>
    1919
    20             <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'wcbs' ), 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>
    2121
    2222        <?php } elseif ( is_search() ) { ?>
    2323
    24             <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'wcbs' ); ?></p>
     24            <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'wordcamporg' ); ?></p>
    2525            <?php get_search_form(); ?>
    2626
    2727        <?php } else { ?>
    2828
    29             <p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'wcbs' ); ?></p>
     29            <p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'wordcamporg' ); ?></p>
    3030            <?php get_search_form(); ?>
    3131
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/search.php

    r2 r3275  
    1515
    1616                <header class="page-header">
    17                     <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'wcbs' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
     17                    <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'wordcamporg' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
    1818                </header>
    1919
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/searchform.php

    r2 r3275  
    88?>
    99    <form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
    10         <label for="s" class="assistive-text"><?php _e( 'Search', 'wcbs' ); ?></label>
    11         <input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search &hellip;', 'wcbs' ); ?>" />
    12         <input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'wcbs' ); ?>" />
     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 &hellip;', 'wordcamporg' ); ?>" />
     12        <input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'wordcamporg' ); ?>" />
    1313    </form>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/sidebar.php

    r2 r3275  
    1818   
    1919                    <aside id="archives" class="widget">
    20                         <h1 class="widget-title"><?php _e( 'Archives', 'wcbs' ); ?></h1>
     20                        <h1 class="widget-title"><?php _e( 'Archives', 'wordcamporg' ); ?></h1>
    2121                        <ul>
    2222                            <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
     
    2525   
    2626                    <aside id="meta" class="widget">
    27                         <h1 class="widget-title"><?php _e( 'Meta', 'wcbs' ); ?></h1>
     27                        <h1 class="widget-title"><?php _e( 'Meta', 'wordcamporg' ); ?></h1>
    2828                        <ul>
    2929                            <?php wp_register(); ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/template-sessions.php

    r2 r3275  
    2929                    ?>
    3030                    <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', 'wordcampbase' ), 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>
    3232                        <div class="entry-meta session-speakers">
    3333                            <?php wcb_entry_meta(); ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/template-sponsors.php

    r2 r3275  
    4848                        ?>
    4949                        <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', 'wordcampbase' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php
     50                            <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
    5151                                if ( has_post_thumbnail() )
    5252                                    the_post_thumbnail();
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/404.php

    r2 r3275  
    1414
    1515            <div id="post-0" class="post error404 not-found">
    16                 <h1 class="entry-title"><?php _e( 'Not Found', 'wordcampbase' ); ?></h1>
     16                <h1 class="entry-title"><?php _e( 'Not Found', 'wordcamporg' ); ?></h1>
    1717                <div class="entry-content">
    18                     <p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'wordcampbase' ); ?></p>
     18                    <p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'wordcamporg' ); ?></p>
    1919                    <?php get_search_form(); ?>
    2020                </div><!-- .entry-content -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/archive.php

    r2 r3275  
    3131            <h1 class="page-title">
    3232<?php if ( is_day() ) : ?>
    33                 <?php printf( __( 'Daily Archives: <span>%s</span>', 'wordcampbase' ), get_the_date() ); ?>
     33                <?php printf( __( 'Daily Archives: <span>%s</span>', 'wordcamporg' ), get_the_date() ); ?>
    3434<?php elseif ( is_month() ) : ?>
    35                 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'wordcampbase' ), get_the_date('F Y') ); ?>
     35                <?php printf( __( 'Monthly Archives: <span>%s</span>', 'wordcamporg' ), get_the_date('F Y') ); ?>
    3636<?php elseif ( is_year() ) : ?>
    37                 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'wordcampbase' ), get_the_date('Y') ); ?>
     37                <?php printf( __( 'Yearly Archives: <span>%s</span>', 'wordcamporg' ), get_the_date('Y') ); ?>
    3838<?php else : ?>
    39                 <?php _e( 'Blog Archives', 'wordcampbase' ); ?>
     39                <?php _e( 'Blog Archives', 'wordcamporg' ); ?>
    4040<?php endif; ?>
    4141            </h1>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/attachment.php

    r1950 r3275  
    1616
    1717                <?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', 'wordcampbase' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php
     18                    <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
    1919                        /* translators: %s - title of parent post */
    20                         printf( __( '<span class="meta-nav">&larr;</span> %s', 'wordcampbase' ), get_the_title( $post->post_parent ) );
     20                        printf( __( '<span class="meta-nav">&larr;</span> %s', 'wordcamporg' ), get_the_title( $post->post_parent ) );
    2121                    ?></a></p>
    2222                <?php endif; ?>
     
    2727                    <div class="entry-meta">
    2828                        <?php
    29                             printf(__('<span class="%1$s">By</span> %2$s', 'wordcampbase' ),
     29                            printf(__('<span class="%1$s">By</span> %2$s', 'wordcamporg' ),
    3030                                'meta-prep meta-prep-author',
    3131                                sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    3232                                    get_author_posts_url( get_the_author_meta( 'ID' ) ),
    33                                     sprintf( esc_attr__( 'View all posts by %s', 'wordcampbase' ), get_the_author() ),
     33                                    sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ),
    3434                                    get_the_author()
    3535                                )
     
    3838                        <span class="meta-sep">|</span>
    3939                        <?php
    40                             printf( __('<span class="%1$s">Published</span> %2$s', 'wordcampbase' ),
     40                            printf( __('<span class="%1$s">Published</span> %2$s', 'wordcamporg' ),
    4141                                'meta-prep meta-prep-entry-date',
    4242                                sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
     
    5252                                    echo ' <span class="meta-sep">|</span> ';
    5353
    54                                     printf( __( 'Full size is %s pixels', 'wordcampbase' ),
     54                                    printf( __( 'Full size is %s pixels', 'wordcamporg' ),
    5555                                        sprintf( '<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
    5656                                            wp_get_attachment_url(),
    57                                             esc_attr( __('Link to full-size image', 'wordcampbase' ) ),
     57                                            esc_attr( __('Link to full-size image', 'wordcamporg' ) ),
    5858                                            $metadata['width'],
    5959                                            $metadata['height']
     
    6363                            }
    6464                        ?>
    65                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<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>' ); ?>
    6666                    </div><!-- .entry-meta -->
    6767
     
    105105<?php the_content( sprintf(
    106106    // translators: The title of the post to continue reading
    107     __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcampbase' ),
     107    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ),
    108108    the_title( '<span class="screen-reader-text">', '</span> ', false )
    109109) ); ?>
    110 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
     110<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    111111
    112112                    </div><!-- .entry-content -->
     
    114114                    <div class="entry-utility">
    115115                        <?php twentyten_posted_in(); ?>
    116                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), ' <span class="edit-link">', '</span>' ); ?>
     116                        <?php edit_post_link( __( 'Edit', 'wordcamporg' ), ' <span class="edit-link">', '</span>' ); ?>
    117117                    </div><!-- .entry-utility -->
    118118                </div><!-- #post-## -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/author.php

    r2 r3275  
    2525?>
    2626
    27                 <h1 class="page-title author"><?php printf( __( 'Author Archives: %s', 'wordcampbase' ), "<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>
    2828
    2929<?php
     
    3535                        </div><!-- #author-avatar -->
    3636                        <div id="author-description">
    37                             <h2><?php printf( __( 'About %s', 'wordcampbase' ), get_the_author() ); ?></h2>
     37                            <h2><?php printf( __( 'About %s', 'wordcamporg' ), get_the_author() ); ?></h2>
    3838                            <?php the_author_meta( 'description' ); ?>
    3939                        </div><!-- #author-description  -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/category.php

    r2 r3275  
    1414
    1515                <h1 class="page-title"><?php
    16                     printf( __( 'Category Archives: %s', 'wordcampbase' ), '<span>' . single_cat_title( '', false ) . '</span>' );
     16                    printf( __( 'Category Archives: %s', 'wordcamporg' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    1717                ?></h1>
    1818                <?php
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/comments.php

    r2 r3275  
    1616            <div id="comments">
    1717<?php if ( post_password_required() ) : ?>
    18                 <p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'wordcampbase' ); ?></p>
     18                <p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'wordcamporg' ); ?></p>
    1919            </div><!-- #comments -->
    2020<?php
     
    3333<?php if ( have_comments() ) : ?>
    3434            <h3 id="comments-title"><?php
    35             printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'wordcampbase' ),
     35            printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'wordcamporg' ),
    3636            number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
    3737            ?></h3>
     
    3939<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
    4040            <div class="navigation">
    41                 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'wordcampbase' ) ); ?></div>
    42                 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) ); ?></div>
     41                <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'wordcamporg' ) ); ?></div>
     42                <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'wordcamporg' ) ); ?></div>
    4343            </div> <!-- .navigation -->
    4444<?php endif; // check for comment navigation ?>
     
    5858<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
    5959            <div class="navigation">
    60                 <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'wordcampbase' ) ); ?></div>
    61                 <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) ); ?></div>
     60                <div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments', 'wordcamporg' ) ); ?></div>
     61                <div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>', 'wordcamporg' ) ); ?></div>
    6262            </div><!-- .navigation -->
    6363<?php endif; // check for comment navigation ?>
     
    7070    if ( ! comments_open() ) :
    7171?>
    72     <p class="nocomments"><?php _e( 'Comments are closed.', 'wordcampbase' ); ?></p>
     72    <p class="nocomments"><?php _e( 'Comments are closed.', 'wordcamporg' ); ?></p>
    7373<?php endif; // end ! comments_open() ?>
    7474
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/options/class-wcb-button-option.php

    r2 r3275  
    2727        ?>
    2828        <tr>
    29             <th><?php esc_html_e( 'Featured Button', 'wordcampbase' ); ?></th>
     29            <th><?php esc_html_e( 'Featured Button', 'wordcamporg' ); ?></th>
    3030            <td class="<?php echo $class; ?>">
    3131                <label class="description checkbox-field" for="<?php echo $ids['visible']; ?>">
     
    3434                        checked( $this->get_option('visible') );
    3535                        ?> />
    36                     <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcampbase' ); ?>
     36                    <?php echo esc_html_e( 'Show a featured button in the menu.', 'wordcamporg' ); ?>
    3737                </label><br />
    3838                <label class="description text-field" for="<?php echo $ids['text']; ?>">
    39                     <span><?php esc_html_e( 'Text:', 'wordcampbase' ); ?></span>
     39                    <span><?php esc_html_e( 'Text:', 'wordcamporg' ); ?></span>
    4040                    <input type="text" id="<?php echo $ids['text']; ?>"
    4141                        <?php $this->name('text'); ?>
     
    4343                </label><br />
    4444                <label class="description text-field" for="<?php echo $ids['url']; ?>">
    45                     <span><?php esc_html_e( 'URL:', 'wordcampbase' ); ?></span>
     45                    <span><?php esc_html_e( 'URL:', 'wordcamporg' ); ?></span>
    4646                    <input type="text" id="<?php echo $ids['url']; ?>"
    4747                        <?php $this->name('url'); ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/options/class-wcb-grid-option.php

    r2 r3275  
    109109            <input class="signature" type="hidden" <?php $this->name('layout'); ?> value="<?php echo esc_attr( serialize( $layout ) ); ?>"/>
    110110            <?php $this->render_row( $layout ); ?>
    111             <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcampbase'); ?></a></div>
     111            <div class="edit"><a href="#"><?php echo esc_html_e( 'Edit' , 'wordcamporg'); ?></a></div>
    112112            <?php if ( $this->type != 'content' ):
    113113                $front_page_id = esc_attr( "front-page-only-$this->key" );
     
    118118                        checked( $this->get_option('front_only') );
    119119                        ?> />
    120                     <?php esc_html_e( 'Front page only', 'wordcampbase' ); ?>
     120                    <?php esc_html_e( 'Front page only', 'wordcamporg' ); ?>
    121121                </label>
    122122            <?php endif; ?>
    123123            <div class="picker">
    124124                <div class="directions">
    125                     <?php esc_html_e( 'Choose a new row layout.', 'wordcampbase' ); ?>
    126                     <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcampbase'); ?></a>
     125                    <?php esc_html_e( 'Choose a new row layout.', 'wordcamporg' ); ?>
     126                    <a href="#" class="cancel"><?php esc_html_e( 'Cancel' , 'wordcamporg'); ?></a>
    127127                </div>
    128128                <?php
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/options/class-wcb-options.php

    r1815 r3275  
    2020            'key'       => 'grid',
    2121            'default'   => 'grid960',
    22             'label'     => __('Grid Width', 'wordcampbase'),
     22            'label'     => __('Grid Width', 'wordcamporg'),
    2323            'values'   => array(
    24                 'grid960'   => __( '960px wide', 'wordcampbase' ),
    25                 'grid720'   => __( '720px wide', 'wordcampbase' ),
     24                'grid960'   => __( '960px wide', 'wordcamporg' ),
     25                'grid720'   => __( '720px wide', 'wordcamporg' ),
    2626            )
    2727        ) );
     
    3434                'front_only'    => true,
    3535            ),
    36             'label'     => __('After Header', 'wordcampbase'),
     36            'label'     => __('After Header', 'wordcamporg'),
    3737        ) );
    3838
     
    4444                'front_only'    => true,
    4545            ),
    46             'label'     => __('Before Content', 'wordcampbase'),
     46            'label'     => __('Before Content', 'wordcamporg'),
    4747        ) );
    4848
     
    5757                'front_only'    => false,
    5858            ),
    59             'label'     => __('Content', 'wordcampbase'),
     59            'label'     => __('Content', 'wordcamporg'),
    6060            'type'      => 'content',
    6161        ) );
     
    6868                'front_only'    => false,
    6969            ),
    70             'label'     => __('After Content', 'wordcampbase'),
     70            'label'     => __('After Content', 'wordcamporg'),
    7171        ) );
    7272
     
    7878                'front_only'    => false,
    7979            ),
    80             'label'     => __('Before Footer', 'wordcampbase'),
     80            'label'     => __('Before Footer', 'wordcamporg'),
    8181        ) );
    8282
     
    8585            'default'   => array(
    8686                'visible'       => false,
    87                 'text'          => __('Register now!', 'wordcampbase'),
     87                'text'          => __('Register now!', 'wordcamporg'),
    8888                'url'           => '',
    8989            ),
     
    9393            'key'       => 'typekit',
    9494            'default'   => 'jnd4dds',
    95             'label'     => __('Typekit', 'wordcampbase'),
     95            'label'     => __('Typekit', 'wordcamporg'),
    9696            'values'    => array(
    97                 'default'   => __( 'Use the default Typekit fonts.', 'wordcampbase' ),
    98                 'custom'    => __( 'Use a custom Typekit key:', 'wordcampbase' ),
    99                 'off'       => __( 'Do not use any Typekit fonts.', 'wordcampbase' ),
     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' ),
    100100            ),
    101101        ) );
     
    112112
    113113    function admin_menu() {
    114         $page = add_theme_page( __('Theme Options', 'wordcampbase'), __('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' ) );
    115115
    116116        add_action("wcb_enqueue_scripts_$page", array( &$this, 'enqueue_scripts' ) );
     
    142142        <div class="wrap">
    143143            <?php screen_icon(); ?>
    144             <h1><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcampbase' ); ?></h1>
     144            <h1><?php echo get_current_theme() . ' ' . __( 'Theme Options', 'wordcamporg' ); ?></h1>
    145145
    146146            <?php if ( false !== $_REQUEST['updated'] ) : ?>
    147                 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcampbase' ); ?></strong></p></div>
     147                <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div>
    148148            <?php endif; ?>
    149149
    150150            <form method="post" action="options.php">
    151151                <?php settings_fields( 'wcb_theme_options' ); ?>
    152                 <h3><?php _e('General Options', 'wordcampbase'); ?></h3>
     152                <h3><?php _e('General Options', 'wordcamporg'); ?></h3>
    153153                <table class="form-table">
    154154                    <?php
     
    159159                </table>
    160160
    161                 <h3><?php _e('Theme Layout', 'wordcampbase'); ?></h3>
     161                <h3><?php _e('Theme Layout', 'wordcamporg'); ?></h3>
    162162                <table class="form-table">
    163163                    <?php
     
    165165
    166166                    <tr id="visibility-row">
    167                         <th><?php esc_html_e( 'Show Rows', 'wordcampbase' ); ?></th>
     167                        <th><?php esc_html_e( 'Show Rows', 'wordcamporg' ); ?></th>
    168168                        <td>
    169169                            <?php foreach ( $rows as $row ) {
     
    174174
    175175                    <tr>
    176                         <th><?php esc_html_e( 'Row Layout', 'wordcampbase' ); ?></th>
     176                        <th><?php esc_html_e( 'Row Layout', 'wordcamporg' ); ?></th>
    177177                        <td>
    178178                            <?php foreach ( $rows as $row ) {
     
    184184                </table>
    185185                <p class="submit">
    186                     <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcampbase' ); ?>" />
     186                    <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" />
    187187                </p>
    188188            </form>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sessions/class-wcb-session-template.php

    r2 r3275  
    9696        $track  = wcb_get_session_track();
    9797
    98         $meta['speakers']   = sprintf( __('Presented by %s', 'wordcampbase'), wcb_get_session_speakers() );
     98        $meta['speakers']   = sprintf( __('Presented by %s', 'wordcamporg'), wcb_get_session_speakers() );
    9999
    100100        if ( empty( $track ) ) {
     
    102102
    103103        } else {
    104             $meta['track'] = sprintf( __('%s Track', 'wordcampbase'), $track );
     104            $meta['track'] = sprintf( __('%s Track', 'wordcamporg'), $track );
    105105
    106106            $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  
    2424                'speakers'  => array(
    2525                    'type'      => 'text',
    26                     'label'     => __('Speakers', 'wordcampbase'),
     26                    'label'     => __('Speakers', 'wordcamporg'),
    2727                )
    2828            );
     
    3030            $box = wcb_get_metabox( 'WCB_Post_Metabox' );
    3131            $box->add_instance( WCB_SESSION_POST_TYPE, array(
    32                 'title'          => __('Speakers', 'wordcampbase'),
     32                'title'          => __('Speakers', 'wordcamporg'),
    3333                'meta_manager'   => $this->meta_manager,
    3434                'meta_fields'    => $meta_fields,
     
    4242        // Session post type labels
    4343        $labels = array (
    44             'name'                  => __( 'Sessions', 'wordcampbase' ),
    45             'singular_name'         => __( 'Session', 'wordcampbase' ),
    46             'add_new'               => __( 'Add New', 'wordcampbase' ),
    47             'add_new_item'          => __( 'Create New Session', 'wordcampbase' ),
    48             'edit'                  => __( 'Edit', 'wordcampbase' ),
    49             'edit_item'             => __( 'Edit Session', 'wordcampbase' ),
    50             'new_item'              => __( 'New Session', 'wordcampbase' ),
    51             'view'                  => __( 'View Session', 'wordcampbase' ),
    52             'view_item'             => __( 'View Session', 'wordcampbase' ),
    53             'search_items'          => __( 'Search Sessions', 'wordcampbase' ),
    54             'not_found'             => __( 'No sessions found', 'wordcampbase' ),
    55             'not_found_in_trash'    => __( 'No sessions found in Trash', 'wordcampbase' ),
    56             'parent_item_colon'     => __( 'Parent Session:', 'wordcampbase' )
     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' )
    5757        );
    5858
     
    9898        // Labels
    9999        $labels = array (
    100             'name'              => __( 'Tracks', 'wordcampbase'),
    101             'singular_name'     => __( 'Track', 'wordcampbase'),
    102             'search_items'      => __( 'Search Tracks', 'wordcampbase'),
     100            'name'              => __( 'Tracks', 'wordcamporg'),
     101            'singular_name'     => __( 'Track', 'wordcamporg'),
     102            'search_items'      => __( 'Search Tracks', 'wordcamporg'),
    103103            'popular_items'     => __( 'Popular Tracks','wordcampbase'),
    104             'all_items'         => __( 'All Tracks', 'wordcampbase'),
    105             'edit_item'         => __( 'Edit Track', 'wordcampbase'),
    106             'update_item'       => __( 'Update Track', 'wordcampbase'),
    107             'add_new_item'      => __( 'Add Track', 'wordcampbase'),
    108             'new_item_name'     => __( 'New Track', 'wordcampbase'),
     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'),
    109109        );
    110110
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/speakers/class-wcb-speakers.php

    r2 r3275  
    2323                'email'     => array(
    2424                    'type'      => 'text',
    25                     'label'     => __('Gravatar Email', 'wordcampbase'),
     25                    'label'     => __('Gravatar Email', 'wordcamporg'),
    2626                )
    2727            );
     
    2929            $box = wcb_get_metabox( 'WCB_Post_Metabox' );
    3030            $box->add_instance( WCB_SPEAKER_POST_TYPE, array(
    31                 'title'          => __('Gravatar Email', 'wordcampbase'),
     31                'title'          => __('Gravatar Email', 'wordcamporg'),
    3232                'meta_manager'   => $this->meta_manager,
    3333                'meta_fields'    => $meta_fields,
     
    3939        // Speaker post type labels
    4040        $labels = array (
    41             'name'                  => __( 'Speakers', 'wordcampbase' ),
    42             'singular_name'         => __( 'Speaker', 'wordcampbase' ),
    43             'add_new'               => __( 'Add New', 'wordcampbase' ),
    44             'add_new_item'          => __( 'Create New Speaker', 'wordcampbase' ),
    45             'edit'                  => __( 'Edit', 'wordcampbase' ),
    46             'edit_item'             => __( 'Edit Speaker', 'wordcampbase' ),
    47             'new_item'              => __( 'New Speaker', 'wordcampbase' ),
    48             'view'                  => __( 'View Speaker', 'wordcampbase' ),
    49             'view_item'             => __( 'View Speaker', 'wordcampbase' ),
    50             'search_items'          => __( 'Search Speakers', 'wordcampbase' ),
    51             'not_found'             => __( 'No speakers found', 'wordcampbase' ),
    52             'not_found_in_trash'    => __( 'No speakers found in Trash', 'wordcampbase' ),
    53             'parent_item_colon'     => __( 'Parent Speaker:', 'wordcampbase' )
     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' )
    5454        );
    5555
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sponsors/class-wcb-sponsor-order.php

    r1815 r3275  
    1313        $page = add_submenu_page(
    1414            'edit.php?post_type=' . WCB_SPONSOR_POST_TYPE,  // Page type
    15             __('Order Sponsor Levels', 'wordcampbase'),              // Page title
    16             __('Order Sponsor Levels', 'wordcampbase'),              // Menu title
     15            __('Order Sponsor Levels', 'wordcamporg'),              // Page title
     16            __('Order Sponsor Levels', 'wordcamporg'),              // Menu title
    1717            'edit_posts',                                   // Capability
    1818            'sponsor_levels',                               // Menu slug
     
    5757        <div class="wrap">
    5858            <?php screen_icon(); ?>
    59             <h1><?php _e( 'Order Sponsor Levels', 'wordcampbase' ); ?></h1>
     59            <h1><?php _e( 'Order Sponsor Levels', 'wordcamporg' ); ?></h1>
    6060
    6161            <?php if ( false !== $_REQUEST['updated'] ) : ?>
    62                 <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcampbase' ); ?></strong></p></div>
     62                <div class="updated fade"><p><strong><?php _e( 'Options saved', 'wordcamporg' ); ?></strong></p></div>
    6363            <?php endif; ?>
    6464
     
    6666                <?php settings_fields( 'wcb_sponsor_options' ); ?>
    6767                <div class="description sponsor-order-instructions">
    68                     <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcampbase'); ?>
     68                    <?php _e('Change the order of sponsor levels are displayed in the sponsors page template.', 'wordcamporg'); ?>
    6969                </div>
    7070                <ul class="sponsor-order">
     
    7777                </ul>
    7878                <p class="submit">
    79                     <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcampbase' ); ?>" />
     79                    <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'wordcamporg' ); ?>" />
    8080                </p>
    8181            </form>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sponsors/class-wcb-sponsors.php

    r2 r3275  
    2525        // Sponsor post type labels
    2626        $labels = array (
    27             'name'                  => __( 'Sponsors', 'wordcampbase' ),
    28             'singular_name'         => __( 'Sponsor', 'wordcampbase' ),
    29             'add_new'               => __( 'Add New', 'wordcampbase' ),
    30             'add_new_item'          => __( 'Create New Sponsor', 'wordcampbase' ),
    31             'edit'                  => __( 'Edit', 'wordcampbase' ),
    32             'edit_item'             => __( 'Edit Sponsor', 'wordcampbase' ),
    33             'new_item'              => __( 'New Sponsor', 'wordcampbase' ),
    34             'view'                  => __( 'View Sponsor', 'wordcampbase' ),
    35             'view_item'             => __( 'View Sponsor', 'wordcampbase' ),
    36             'search_items'          => __( 'Search Sponsors', 'wordcampbase' ),
    37             'not_found'             => __( 'No sponsors found', 'wordcampbase' ),
    38             'not_found_in_trash'    => __( 'No sponsors found in Trash', 'wordcampbase' ),
    39             'parent_item_colon'     => __( 'Parent Sponsor:', 'wordcampbase' )
     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' )
    4040        );
    4141
     
    8181        // Labels
    8282        $labels = array (
    83             'name'              => __( 'Sponsor Levels', 'wordcampbase'),
    84             'singular_name'     => __( 'Sponsor Level', 'wordcampbase'),
    85             'search_items'      => __( 'Search Sponsor Levels', 'wordcampbase'),
    86             'popular_items'     => __( 'Popular Sponsor Levels', 'wordcampbase'),
    87             'all_items'         => __( 'All Sponsor Levels', 'wordcampbase'),
    88             'edit_item'         => __( 'Edit Sponsor Level', 'wordcampbase'),
     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'),
    8989            'update_item'       => __( 'Update Sponsor Level','wordcampbase'),
    90             'add_new_item'      => __( 'Add Sponsor Level', 'wordcampbase'),
    91             'new_item_name'     => __( 'New Sponsor Level', 'wordcampbase'),
     90            'add_new_item'      => __( 'Add Sponsor Level', 'wordcamporg'),
     91            'new_item_name'     => __( 'New Sponsor Level', 'wordcamporg'),
    9292        );
    9393
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/sponsors/class-wcb-widget-sponsors.php

    r2 r3275  
    77        $widget_ops = array(
    88            'classname' => 'wcb_widget_sponsors',
    9             'description' => __( 'Your WordCamp&#8217;s Sponsors', 'wordcampbase' ),
     9            'description' => __( 'Your WordCamp&#8217;s Sponsors', 'wordcamporg' ),
    1010        );
    11         $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcampbase'), $widget_ops );
     11        $this->WP_Widget( 'wcb_sponsors', __('Sponsors', 'wordcamporg'), $widget_ops );
    1212    }
    1313
     
    3838            while ( wcb_have_sponsors() ):
    3939                wcb_the_sponsor();
    40                 ?><a class="sponsor-logo" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wordcampbase' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php
     40                ?><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
    4141                    if ( has_post_thumbnail() )
    4242                        the_post_thumbnail();
     
    5757        $title = $instance['title'];
    5858?>
    59         <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wordcampbase'); ?> <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>
    6060<?php
    6161    }
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-footer.php

    r2 r3275  
    1818                <div id="site-generator">
    1919                    <?php do_action( 'twentyten_credits' ); ?>
    20                     <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'wordcampbase' ) ); ?>" 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>
    2121                </div><!-- #site-generator -->
    2222
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-header.php

    r2 r3275  
    1010            <div id="return-to-central">
    1111<?php if ( false !== strpos($_SERVER['HTTP_HOST'], 'wordpress.org')) { ?>
    12                 <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcampbase' ); ?>"><?php _e('&larr; WordPress.org', 'wordcampbase'); ?></a>
     12                <a href="http://wordpress.org/" title="<?php esc_attr_e( 'Return to WordPress.org', 'wordcamporg' ); ?>"><?php _e('&larr; WordPress.org', 'wordcamporg'); ?></a>
    1313<?php } else { ?>
    14                 <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcampbase' ); ?>"><?php _e('&larr; WordCamp Central', 'wordcampbase'); ?></a>
     14                <a href="http://central.wordcamp.org/" title="<?php esc_attr_e( 'Return to WordCamp Central', 'wordcamporg' ); ?>"><?php _e('&larr; WordCamp Central', 'wordcamporg'); ?></a>
    1515<?php } ?>
    1616
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/structure/class-wcb-menu.php

    r412 r3275  
    1010            <div id="access" role="navigation" class="clearfix">
    1111                <?php /* Toggle element for responsive menus */ ?>
    12                 <h3 class="menu-toggle"><?php _e( 'Menu', 'wordcampbase' ); ?></h3>
     12                <h3 class="menu-toggle"><?php _e( 'Menu', 'wordcamporg' ); ?></h3>
    1313                <?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', 'wordcampbase' ); ?>"><?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>
    1515                <?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.  */ ?>
    1616                <?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  
    7171            'after_header'      => array(
    7272                'id'   => 'after-header',
    73                 'name' => __('After Header', 'wordcampbase'),
     73                'name' => __('After Header', 'wordcamporg'),
    7474            ),
    7575            'before_content'    => array(
    7676                'id'   => 'before-content',
    77                 'name' => __('Before Content', 'wordcampbase'),
     77                'name' => __('Before Content', 'wordcamporg'),
    7878            ),
    7979            'content'           => array(
    8080                'id'   => 'content-row',
    81                 'name' => __('Content', 'wordcampbase'),
     81                'name' => __('Content', 'wordcamporg'),
    8282            ),
    8383            'after_content'     => array(
    8484                'id'   => 'after-content',
    85                 'name' => __('After Content', 'wordcampbase'),
     85                'name' => __('After Content', 'wordcamporg'),
    8686            ),
    8787            'before_footer'     => array(
    8888                'id'   => 'before-footer',
    89                 'name' => __('Before Footer', 'wordcampbase'),
     89                'name' => __('Before Footer', 'wordcamporg'),
    9090            ),
    9191        );
     
    100100
    101101            if ( $option['front_only'] )
    102                 $args['name'] = sprintf( __('Front Page: %s', 'wordcampbase'), $args['name'] );
     102                $args['name'] = sprintf( __('Front Page: %s', 'wordcamporg'), $args['name'] );
    103103
    104104            $this->sidebars[ $id ] = new WCB_Sidebar_Row( $args );
     
    109109        $this->sidebars['content'] = new WCB_Sidebar_Row( array(
    110110            'id'   => 'content-row',
    111             'name' => __('Content', 'wordcampbase'),
     111            'name' => __('Content', 'wordcamporg'),
    112112            'grid' => array( array( 12, 'content' ) ),
    113113        ) );
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/class-wcb-metabox.php

    r158 r3275  
    6767        $defaults = array(
    6868            // 'id'            => '',
    69             'title'         => __( 'Untitled' , 'wordcampbase'),
     69            'title'         => __( 'Untitled' , 'wordcamporg'),
    7070            'context'       => 'side',
    7171            'priority'      => 'default',
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/functions.php

    r2 r3275  
    11<?php
    2 
    3 load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );
    42
    53require_once TEMPLATEPATH . "/lib/utils/twentyten-overrides.php";
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/header.php

    r2092 r3275  
    1010
    1111    if ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
    12         $meta['category'] = sprintf( __('Posted in %s', 'wordcampbase'), get_the_category_list( ', ' ) );
     12        $meta['category'] = sprintf( __('Posted in %s', 'wordcamporg'), get_the_category_list( ', ' ) );
    1313    }
    1414    if ( is_object_in_taxonomy( get_post_type(), 'tag' ) ) {
    15         $meta['tag'] = sprintf( __('Tagged %s', 'wordcampbase'), get_the_tag_list( '', ', ' ) );
     15        $meta['tag'] = sprintf( __('Tagged %s', 'wordcamporg'), get_the_tag_list( '', ', ' ) );
    1616    }
    1717
     
    7373    // Add a page number if necessary:
    7474    if ( $paged >= 2 || $page >= 2 )
    75         echo ' | ' . sprintf( __( 'Page %s', 'wordcampbase' ), max( $paged, $page ) );
     75        echo ' | ' . sprintf( __( 'Page %s', 'wordcamporg' ), max( $paged, $page ) );
    7676    echo "</title>";
    7777}
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/twentyten-functions.php

    r1950 r3275  
    6666 * @uses add_custom_background() To add support for a custom background.
    6767 * @uses add_editor_style() To style the visual editor.
    68  * @uses load_theme_textdomain() For translation/localization support.
    6968 * @uses add_custom_image_header() To add support for a custom header.
    7069 * @uses register_default_headers() To register the default custom header images provided with the theme.
     
    8382    // Add default posts and comments RSS feed links to head
    8483    add_theme_support( 'automatic-feed-links' );
    85 
    86     // Make theme available for translation
    87     // Translations can be filed in the /languages/ directory
    88     // load_theme_textdomain( 'wordcampbase', TEMPLATEPATH . '/languages' );
    8984
    9085    $locale = get_locale();
     
    9590    // This theme uses wp_nav_menu() in one location.
    9691    register_nav_menus( array(
    97         'primary' => __( 'Primary Navigation', 'wordcampbase' ),
     92        'primary' => __( 'Primary Navigation', 'wordcamporg' ),
    9893    ) );
    9994
     
    126121            'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
    127122            /* translators: header image description */
    128             'description' => __( 'Berries', 'wordcampbase' )
     123            'description' => __( 'Berries', 'wordcamporg' )
    129124        ),
    130125        'cherryblossom' => array(
     
    132127            'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
    133128            /* translators: header image description */
    134             'description' => __( 'Cherry Blossoms', 'wordcampbase' )
     129            'description' => __( 'Cherry Blossoms', 'wordcamporg' )
    135130        ),
    136131        'concave' => array(
     
    138133            'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
    139134            /* translators: header image description */
    140             'description' => __( 'Concave', 'wordcampbase' )
     135            'description' => __( 'Concave', 'wordcamporg' )
    141136        ),
    142137        'fern' => array(
     
    144139            'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
    145140            /* translators: header image description */
    146             'description' => __( 'Fern', 'wordcampbase' )
     141            'description' => __( 'Fern', 'wordcamporg' )
    147142        ),
    148143        'forestfloor' => array(
     
    150145            'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
    151146            /* translators: header image description */
    152             'description' => __( 'Forest Floor', 'wordcampbase' )
     147            'description' => __( 'Forest Floor', 'wordcamporg' )
    153148        ),
    154149        'inkwell' => array(
     
    156151            'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
    157152            /* translators: header image description */
    158             'description' => __( 'Inkwell', 'wordcampbase' )
     153            'description' => __( 'Inkwell', 'wordcamporg' )
    159154        ),
    160155        'path' => array(
     
    162157            'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
    163158            /* translators: header image description */
    164             'description' => __( 'Path', 'wordcampbase' )
     159            'description' => __( 'Path', 'wordcamporg' )
    165160        ),
    166161        'sunset' => array(
     
    168163            'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
    169164            /* translators: header image description */
    170             'description' => __( 'Sunset', 'wordcampbase' )
     165            'description' => __( 'Sunset', 'wordcamporg' )
    171166        )
    172167    ) );
     
    239234        sprintf(
    240235            // translators: The title of the post to continue reading
    241             __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcampbase' ),
     236            __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ),
    242237            sprintf( '<span class="screen-reader-text">%s</span> ', get_the_title() )
    243238        )
     
    311306        <div class="comment-author vcard">
    312307            <?php echo get_avatar( $comment, 40 ); ?>
    313             <?php printf( __( '%s <span class="says">says:</span>', 'wordcampbase' ), 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() ) ); ?>
    314309        </div><!-- .comment-author .vcard -->
    315310        <?php if ( $comment->comment_approved == '0' ) : ?>
    316             <em><?php _e( 'Your comment is awaiting moderation.', 'wordcampbase' ); ?></em>
     311            <em><?php _e( 'Your comment is awaiting moderation.', 'wordcamporg' ); ?></em>
    317312            <br />
    318313        <?php endif; ?>
     
    321316            <?php
    322317                /* translators: 1: date, 2: time */
    323                 printf( __( '%1$s at %2$s', 'wordcampbase' ), 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' ), ' ' );
    324319            ?>
    325320        </div><!-- .comment-meta .commentmetadata -->
     
    338333    ?>
    339334    <li class="post pingback">
    340         <p><?php _e( 'Pingback:', 'wordcampbase' ); ?> <?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>
    341336    <?php
    342337            break;
     
    357352    // Area 1, located at the top of the sidebar.
    358353    register_sidebar( array(
    359         'name' => __( 'Primary Widget Area', 'wordcampbase' ),
     354        'name' => __( 'Primary Widget Area', 'wordcamporg' ),
    360355        'id' => 'primary-widget-area',
    361         'description' => __( 'The primary widget area', 'wordcampbase' ),
     356        'description' => __( 'The primary widget area', 'wordcamporg' ),
    362357        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    363358        'after_widget' => '</li>',
     
    368363    // Area 2, located below the Primary Widget Area in the sidebar. Empty by default.
    369364    register_sidebar( array(
    370         'name' => __( 'Secondary Widget Area', 'wordcampbase' ),
     365        'name' => __( 'Secondary Widget Area', 'wordcamporg' ),
    371366        'id' => 'secondary-widget-area',
    372         'description' => __( 'The secondary widget area', 'wordcampbase' ),
     367        'description' => __( 'The secondary widget area', 'wordcamporg' ),
    373368        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    374369        'after_widget' => '</li>',
     
    379374    // Area 3, located in the footer. Empty by default.
    380375    register_sidebar( array(
    381         'name' => __( 'First Footer Widget Area', 'wordcampbase' ),
     376        'name' => __( 'First Footer Widget Area', 'wordcamporg' ),
    382377        'id' => 'first-footer-widget-area',
    383         'description' => __( 'The first footer widget area', 'wordcampbase' ),
     378        'description' => __( 'The first footer widget area', 'wordcamporg' ),
    384379        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    385380        'after_widget' => '</li>',
     
    390385    // Area 4, located in the footer. Empty by default.
    391386    register_sidebar( array(
    392         'name' => __( 'Second Footer Widget Area', 'wordcampbase' ),
     387        'name' => __( 'Second Footer Widget Area', 'wordcamporg' ),
    393388        'id' => 'second-footer-widget-area',
    394         'description' => __( 'The second footer widget area', 'wordcampbase' ),
     389        'description' => __( 'The second footer widget area', 'wordcamporg' ),
    395390        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    396391        'after_widget' => '</li>',
     
    401396    // Area 5, located in the footer. Empty by default.
    402397    register_sidebar( array(
    403         'name' => __( 'Third Footer Widget Area', 'wordcampbase' ),
     398        'name' => __( 'Third Footer Widget Area', 'wordcamporg' ),
    404399        'id' => 'third-footer-widget-area',
    405         'description' => __( 'The third footer widget area', 'wordcampbase' ),
     400        'description' => __( 'The third footer widget area', 'wordcamporg' ),
    406401        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    407402        'after_widget' => '</li>',
     
    412407    // Area 6, located in the footer. Empty by default.
    413408    register_sidebar( array(
    414         'name' => __( 'Fourth Footer Widget Area', 'wordcampbase' ),
     409        'name' => __( 'Fourth Footer Widget Area', 'wordcamporg' ),
    415410        'id' => 'fourth-footer-widget-area',
    416         'description' => __( 'The fourth footer widget area', 'wordcampbase' ),
     411        'description' => __( 'The fourth footer widget area', 'wordcamporg' ),
    417412        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    418413        'after_widget' => '</li>',
     
    445440 */
    446441function twentyten_posted_on() {
    447     printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcampbase' ),
     442    printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'wordcamporg' ),
    448443        'meta-prep meta-prep-author',
    449444        sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
     
    454449        sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    455450            get_author_posts_url( get_the_author_meta( 'ID' ) ),
    456             sprintf( esc_attr__( 'View all posts by %s', 'wordcampbase' ), get_the_author() ),
     451            sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ),
    457452            get_the_author()
    458453        )
     
    471466    $tag_list = get_the_tag_list( '', ', ' );
    472467    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>.', 'wordcampbase' );
     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' );
    474469    } 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>.', 'wordcampbase' );
     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' );
    476471    } else {
    477         $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcampbase' );
     472        $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'wordcamporg' );
    478473    }
    479474    // Prints the string, replacing the placeholders.
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/twentyten-overrides.php

    r2 r3275  
    33function twentyten_posted_on() {
    44    $meta = array();
    5     $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcampbase' ),
     5    $meta['author'] = sprintf( __( '%1$s <span class="meta-sep">by</span> %2$s', 'wordcamporg' ),
    66        sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>',
    77            get_permalink(),
     
    1111        sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    1212            get_author_posts_url( get_the_author_meta( 'ID' ) ),
    13             sprintf( esc_attr__( 'View all posts by %s', 'wordcampbase' ), get_the_author() ),
     13            sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ),
    1414            get_the_author()
    1515        )
     
    2020        'before'    => '<span class="comments-link">',
    2121        'after'     => '</span>',
    22         'zero'      => __( 'Leave a comment', 'wordcampbase' ),
    23         'one'       => __( '1 Comment', 'wordcampbase' ),
    24         'many'      => __( '% Comments', 'wordcampbase' ),
     22        'zero'      => __( 'Leave a comment', 'wordcamporg' ),
     23        'one'       => __( '1 Comment', 'wordcamporg' ),
     24        'many'      => __( '% Comments', 'wordcamporg' ),
    2525    );
    2626
    2727    $meta['edit'] = array(
    28         'title'     => __( 'Edit', 'wordcampbase' ),
     28        'title'     => __( 'Edit', 'wordcamporg' ),
    2929        'before'    => '<span class="edit-link">',
    3030        'after'     => '</span>',
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop-attachment.php

    r1950 r3275  
    1919
    2020                <?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', 'wordcampbase' ), get_the_title( $post->post_parent ) ) ); ?>" rel="gallery"><?php
     21                    <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
    2222                        /* translators: %s - title of parent post */
    23                         printf( __( '<span class="meta-nav">&larr;</span> %s', 'wordcampbase' ), get_the_title( $post->post_parent ) );
     23                        printf( __( '<span class="meta-nav">&larr;</span> %s', 'wordcamporg' ), get_the_title( $post->post_parent ) );
    2424                    ?></a></p>
    2525                <?php endif; ?>
     
    3030                    <div class="entry-meta">
    3131                        <?php
    32                             printf( __( '<span class="%1$s">By</span> %2$s', 'wordcampbase' ),
     32                            printf( __( '<span class="%1$s">By</span> %2$s', 'wordcamporg' ),
    3333                                'meta-prep meta-prep-author',
    3434                                sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>',
    3535                                    get_author_posts_url( get_the_author_meta( 'ID' ) ),
    36                                     sprintf( esc_attr__( 'View all posts by %s', 'wordcampbase' ), get_the_author() ),
     36                                    sprintf( esc_attr__( 'View all posts by %s', 'wordcamporg' ), get_the_author() ),
    3737                                    get_the_author()
    3838                                )
     
    4141                        <span class="meta-sep">|</span>
    4242                        <?php
    43                             printf( __( '<span class="%1$s">Published</span> %2$s', 'wordcampbase' ),
     43                            printf( __( '<span class="%1$s">Published</span> %2$s', 'wordcamporg' ),
    4444                                'meta-prep meta-prep-entry-date',
    4545                                sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>',
     
    5151                                echo ' <span class="meta-sep">|</span> ';
    5252                                $metadata = wp_get_attachment_metadata();
    53                                 printf( __( 'Full size is %s pixels', 'wordcampbase' ),
     53                                printf( __( 'Full size is %s pixels', 'wordcamporg' ),
    5454                                    sprintf( '<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
    5555                                        wp_get_attachment_url(),
    56                                         esc_attr( __( 'Link to full-size image', 'wordcampbase' ) ),
     56                                        esc_attr( __( 'Link to full-size image', 'wordcamporg' ) ),
    5757                                        $metadata['width'],
    5858                                        $metadata['height']
     
    6161                            }
    6262                        ?>
    63                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<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>' ); ?>
    6464                    </div><!-- .entry-meta -->
    6565
     
    104104<?php the_content( sprintf(
    105105    // translators: The title of the post to continue reading
    106     __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcampbase' ),
     106    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ),
    107107    the_title( '<span class="screen-reader-text">', '</span> ', false )
    108108) ); ?>
    109 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
     109<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    110110
    111111                    </div><!-- .entry-content -->
     
    113113                    <div class="entry-utility">
    114114                        <?php twentyten_posted_in(); ?>
    115                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), ' <span class="edit-link">', '</span>' ); ?>
     115                        <?php edit_post_link( __( 'Edit', 'wordcamporg' ), ' <span class="edit-link">', '</span>' ); ?>
    116116                    </div><!-- .entry-utility -->
    117117                </div><!-- #post-## -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop-page.php

    r2 r3275  
    2727                    <div class="entry-content">
    2828                        <?php the_content(); ?>
    29                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
    30                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<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>' ); ?>
    3131                    </div><!-- .entry-content -->
    3232                </div><!-- #post-## -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop-single.php

    r2 r3275  
    1919
    2020                <div id="nav-above" class="navigation">
    21                     <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcampbase' ) . '</span> %title' ); ?></div>
    22                     <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcampbase' ) . '</span>' ); ?></div>
     21                    <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div>
     22                    <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div>
    2323                </div><!-- #nav-above -->
    2424
     
    3232                    <div class="entry-content">
    3333                        <?php the_content(); ?>
    34                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
     34                        <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    3535                    </div><!-- .entry-content -->
    3636
     
    4141                        </div><!-- #author-avatar -->
    4242                        <div id="author-description">
    43                             <h2><?php printf( esc_attr__( 'About %s', 'wordcampbase' ), get_the_author() ); ?></h2>
     43                            <h2><?php printf( esc_attr__( 'About %s', 'wordcamporg' ), get_the_author() ); ?></h2>
    4444                            <?php the_author_meta( 'description' ); ?>
    4545                            <div id="author-link">
    4646                                <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">&rarr;</span>', 'wordcampbase' ), get_the_author() ); ?>
     47                                    <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ), get_the_author() ); ?>
    4848                                </a>
    4949                            </div><!-- #author-link -->
     
    5454                    <div class="entry-utility">
    5555                        <?php twentyten_posted_in(); ?>
    56                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<span class="edit-link">', '</span>' ); ?>
     56                        <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?>
    5757                    </div><!-- .entry-utility -->
    5858                </div><!-- #post-## -->
    5959
    6060                <div id="nav-below" class="navigation">
    61                     <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcampbase' ) . '</span> %title' ); ?></div>
    62                     <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcampbase' ) . '</span>' ); ?></div>
     61                    <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div>
     62                    <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div>
    6363                </div><!-- #nav-below -->
    6464
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop.php

    r1950 r3275  
    2323<?php if ( $wp_query->max_num_pages > 1 ) : ?>
    2424    <div id="nav-above" class="navigation">
    25         <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'wordcampbase' ) ); ?></div>
    26         <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) ); ?></div>
     25        <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'wordcamporg' ) ); ?></div>
     26        <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'wordcamporg' ) ); ?></div>
    2727    </div><!-- #nav-above -->
    2828<?php endif; ?>
     
    3131<?php if ( ! have_posts() ) : ?>
    3232    <div id="post-0" class="post error404 not-found">
    33         <h1 class="entry-title"><?php _e( 'Not Found', 'wordcampbase' ); ?></h1>
     33        <h1 class="entry-title"><?php _e( 'Not Found', 'wordcamporg' ); ?></h1>
    3434        <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.', 'wordcampbase' ); ?></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>
    3636            <?php get_search_form(); ?>
    3737        </div><!-- .entry-content -->
     
    5858<?php /* How to display posts in the Gallery category. */ ?>
    5959
    60     <?php if ( in_category( _x('gallery', 'gallery category slug', 'wordcampbase') ) ) : ?>
     60    <?php if ( in_category( _x('gallery', 'gallery category slug', 'wordcamporg') ) ) : ?>
    6161        <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', 'wordcampbase' ), 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>
    6363
    6464            <div class="entry-meta">
     
    8080                            <a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
    8181                        </div><!-- .gallery-thumb -->
    82                         <p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'wordcampbase' ),
    83                                 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'wordcampbase' ), 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"',
    8484                                $total_images
    8585                            ); ?></em></p>
     
    9090
    9191            <div class="entry-utility">
    92                 <a href="<?php echo get_term_link( _x('gallery', 'gallery category slug', 'wordcampbase'), '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>
    9393                <span class="meta-sep">|</span>
    94                 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcampbase' ), __( '1 Comment', 'wordcampbase' ), __( '% Comments', 'wordcampbase' ) ); ?></span>
    95                 <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<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>' ); ?>
    9696            </div><!-- .entry-utility -->
    9797        </div><!-- #post-## -->
     
    9999<?php /* How to display posts in the asides category */ ?>
    100100
    101     <?php elseif ( in_category( _x('asides', 'asides category slug', 'wordcampbase') ) ) : ?>
     101    <?php elseif ( in_category( _x('asides', 'asides category slug', 'wordcamporg') ) ) : ?>
    102102        <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    103103
     
    108108        <?php else : ?>
    109109            <div class="entry-content">
    110                 <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) ); ?>
     110                <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wordcamporg' ) ); ?>
    111111            </div><!-- .entry-content -->
    112112        <?php endif; ?>
     
    115115                <?php twentyten_posted_on(); ?>
    116116                <span class="meta-sep">|</span>
    117                 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcampbase' ), __( '1 Comment', 'wordcampbase' ), __( '% Comments', 'wordcampbase' ) ); ?></span>
    118                 <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<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>' ); ?>
    119119            </div><!-- .entry-utility -->
    120120        </div><!-- #post-## -->
     
    124124    <?php else : ?>
    125125        <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', 'wordcampbase' ), 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>
    127127
    128128            <div class="entry-meta">
     
    138138                <?php the_content( sprintf(
    139139                    // translators: The title of the post to continue reading
    140                     __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcampbase' ),
     140                    __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ),
    141141                    the_title( '<span class="screen-reader-text">', '</span> ', false )
    142142                ) ); ?>
    143                 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
     143                <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    144144            </div><!-- .entry-content -->
    145145    <?php endif; ?>
     
    148148                <?php if ( count( get_the_category() ) ) : ?>
    149149                    <span class="cat-links">
    150                         <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'wordcampbase' ), '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( ', ' ) ); ?>
    151151                    </span>
    152152                    <span class="meta-sep">|</span>
     
    157157                ?>
    158158                    <span class="tag-links">
    159                         <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'wordcampbase' ), '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 ); ?>
    160160                    </span>
    161161                    <span class="meta-sep">|</span>
    162162                <?php endif; ?>
    163                 <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'wordcampbase' ), __( '1 Comment', 'wordcampbase' ), __( '% Comments', 'wordcampbase' ) ); ?></span>
    164                 <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<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>' ); ?>
    165165            </div><!-- .entry-utility -->
    166166        </div><!-- #post-## -->
     
    175175<?php if (  $wp_query->max_num_pages > 1 ) : ?>
    176176                <div id="nav-below" class="navigation">
    177                     <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'wordcampbase' ) ); ?></div>
    178                     <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'wordcampbase' ) ); ?></div>
     177                    <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'wordcamporg' ) ); ?></div>
     178                    <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'wordcamporg' ) ); ?></div>
    179179                </div><!-- #nav-below -->
    180180<?php endif; ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/page.php

    r2 r3275  
    2929                    <div class="entry-content">
    3030                        <?php the_content(); ?>
    31                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
    32                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<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>' ); ?>
    3333                    </div><!-- .entry-content -->
    3434                </div><!-- #post-## -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/search.php

    r2 r3275  
    1414
    1515<?php if ( have_posts() ) : ?>
    16                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'wordcampbase' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
     16                <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'wordcamporg' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
    1717                <?php
    1818                /* Run the loop for the search to output the results.
     
    2424<?php else : ?>
    2525                <div id="post-0" class="post no-results not-found">
    26                     <h2 class="entry-title"><?php _e( 'Nothing Found', 'wordcampbase' ); ?></h2>
     26                    <h2 class="entry-title"><?php _e( 'Nothing Found', 'wordcamporg' ); ?></h2>
    2727                    <div class="entry-content">
    28                         <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'wordcampbase' ); ?></p>
     28                        <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'wordcamporg' ); ?></p>
    2929                        <?php get_search_form(); ?>
    3030                    </div><!-- .entry-content -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/single-wcb_session.php

    r2 r3275  
    1616
    1717                <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', 'wordcampbase' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php
     18                    <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
    1919                        if ( has_post_thumbnail() )
    2020                            the_post_thumbnail();
     
    2929                    <div class="entry-content">
    3030                        <?php the_content(); ?>
    31                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
     31                        <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    3232                    </div><!-- .entry-content -->
    3333                </div><!-- #post-## -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/single-wcb_sponsor.php

    r2 r3275  
    1616
    1717                <div id="nav-above" class="navigation">
    18                     <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcampbase' ) . '</span> %title' ); ?></div>
    19                     <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcampbase' ) . '</span>' ); ?></div>
     18                    <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div>
     19                    <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div>
    2020                </div><!-- #nav-above -->
    2121
    2222                <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', 'wordcampbase' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php
     23                    <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
    2424                        if ( has_post_thumbnail() )
    2525                            the_post_thumbnail();
     
    3030                    <div class="entry-content">
    3131                        <?php the_content(); ?>
    32                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
     32                        <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    3333                    </div><!-- .entry-content -->
    3434
    3535                    <div class="entry-utility">
    36                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<span class="edit-link">', '</span>' ); ?>
     36                        <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?>
    3737                    </div><!-- .entry-utility -->
    3838                </div><!-- #post-## -->
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/single.php

    r2 r3275  
    1616
    1717                <div id="nav-above" class="navigation">
    18                     <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcampbase' ) . '</span> %title' ); ?></div>
    19                     <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcampbase' ) . '</span>' ); ?></div>
     18                    <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div>
     19                    <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div>
    2020                </div><!-- #nav-above -->
    2121
     
    2929                    <div class="entry-content">
    3030                        <?php the_content(); ?>
    31                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?>
     31                        <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcamporg' ), 'after' => '</div>' ) ); ?>
    3232                    </div><!-- .entry-content -->
    3333
     
    3838                        </div><!-- #author-avatar -->
    3939                        <div id="author-description">
    40                             <h2><?php printf( esc_attr__( 'About %s', 'wordcampbase' ), get_the_author() ); ?></h2>
     40                            <h2><?php printf( esc_attr__( 'About %s', 'wordcamporg' ), get_the_author() ); ?></h2>
    4141                            <?php the_author_meta( 'description' ); ?>
    4242                            <div id="author-link">
    4343                                <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">&rarr;</span>', 'wordcampbase' ), get_the_author() ); ?>
     44                                    <?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'wordcamporg' ), get_the_author() ); ?>
    4545                                </a>
    4646                            </div><!-- #author-link -->
     
    5151                    <div class="entry-utility">
    5252                        <?php twentyten_posted_in(); ?>
    53                         <?php edit_post_link( __( 'Edit', 'wordcampbase' ), '<span class="edit-link">', '</span>' ); ?>
     53                        <?php edit_post_link( __( 'Edit', 'wordcamporg' ), '<span class="edit-link">', '</span>' ); ?>
    5454                    </div><!-- .entry-utility -->
    5555                </div><!-- #post-## -->
    5656
    5757                <div id="nav-below" class="navigation">
    58                     <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcampbase' ) . '</span> %title' ); ?></div>
    59                     <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcampbase' ) . '</span>' ); ?></div>
     58                    <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'wordcamporg' ) . '</span> %title' ); ?></div>
     59                    <div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'wordcamporg' ) . '</span>' ); ?></div>
    6060                </div><!-- #nav-below -->
    6161
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/tag.php

    r2 r3275  
    1414
    1515                <h1 class="page-title"><?php
    16                     printf( __( 'Tag Archives: %s', 'wordcampbase' ), '<span>' . single_tag_title( '', false ) . '</span>' );
     16                    printf( __( 'Tag Archives: %s', 'wordcamporg' ), '<span>' . single_tag_title( '', false ) . '</span>' );
    1717                ?></h1>
    1818
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/template-sessions.php

    r2 r3275  
    3939                    ?>
    4040                    <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', 'wordcampbase' ), 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>
    4242                        <div class="entry-meta session-speakers">
    4343                            <?php wcb_entry_meta(); ?>
  • sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/template-sponsors.php

    r2 r3275  
    4343                        ?>
    4444                        <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', 'wordcampbase' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php
     45                            <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
    4646                                if ( has_post_thumbnail() )
    4747                                    the_post_thumbnail();
Note: See TracChangeset for help on using the changeset viewer.