Skip to:
Content

bbPress.org

Changeset 4034


Ignore:
Timestamp:
06/29/2012 12:24:15 AM (12 years ago)
Author:
johnjamesjacoby
Message:

Languages:

  • Add missing textdomains.
  • Fixes #1866.
  • Props daveshine.
Location:
branches/plugin
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-admin/bbp-forums.php

    r3966 r4034  
    126126            'title'     => __( 'Screen Content', 'bbpress' ),
    127127            'content'   =>
    128                 '<p>' . __( 'You can customize the display of this screen&#8217;s contents in a number of ways:' ) . '</p>' .
     128                '<p>' . __( 'You can customize the display of this screen&#8217;s contents in a number of ways:', 'bbpress' ) . '</p>' .
    129129                '<ul>' .
    130130                    '<li>' . __( 'You can hide/display columns based on your needs and decide how many replies to list per screen using the Screen Options tab.',                                                                                                                                                                          'bbpress' ) . '</li>' .
     
    161161        // Help Sidebar
    162162        $current_screen->set_help_sidebar(
    163             '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
     163            '<p><strong>' . __( 'For more information:', 'bbpress' ) . '</strong></p>' .
    164164            '<p>' . __( '<a href="http://bbpress.org/documentation/" target="_blank">bbPress Documentation</a>', 'bbpress' ) . '</p>' .
    165165            '<p>' . __( '<a href="http://bbpress.org/forums/" target="_blank">bbPress Support Forums</a>',       'bbpress' ) . '</p>'
     
    538538
    539539            // Updated
    540             1 =>  sprintf( __( 'Forum updated. <a href="%s">View forum</a>' ), $forum_url ),
     540            1 =>  sprintf( __( 'Forum updated. <a href="%s">View forum</a>', 'bbpress' ), $forum_url ),
    541541
    542542            // Custom field updated
     
    567567            9 => sprintf( __( 'Forum scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview forum</a>', 'bbpress' ),
    568568                    // translators: Publish box date format, see http://php.net/date
    569                     date_i18n( __( 'M j, Y @ G:i' ),
     569                    date_i18n( __( 'M j, Y @ G:i', 'bbpress' ),
    570570                    strtotime( $post_date ) ),
    571571                    $forum_url ),
  • branches/plugin/bbp-admin/bbp-replies.php

    r3966 r4034  
    138138            'title'     => __( 'Screen Content', 'bbpress' ),
    139139            'content'   =>
    140                 '<p>' . __( 'You can customize the display of this screen&#8217;s contents in a number of ways:' ) . '</p>' .
     140                '<p>' . __( 'You can customize the display of this screen&#8217;s contents in a number of ways:', 'bbpress' ) . '</p>' .
    141141                '<ul>' .
    142142                    '<li>' . __( 'You can hide/display columns based on your needs and decide how many replies to list per screen using the Screen Options tab.',                                                                                                                                                                          'bbpress' ) . '</li>' .
     
    173173        // Help Sidebar
    174174        $current_screen->set_help_sidebar(
    175             '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
     175            '<p><strong>' . __( 'For more information:', 'bbpress' ) . '</strong></p>' .
    176176            '<p>' . __( '<a href="http://bbpress.org/documentation/" target="_blank">bbPress Documentation</a>', 'bbpress' ) . '</p>' .
    177177            '<p>' . __( '<a href="http://bbpress.org/forums/" target="_blank">bbPress Support Forums</a>',       'bbpress' ) . '</p>'
     
    917917
    918918            // Updated
    919             1 =>  sprintf( __( 'Reply updated. <a href="%s">View topic</a>' ), $topic_url ),
     919            1 =>  sprintf( __( 'Reply updated. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ),
    920920
    921921            // Custom field updated
     
    946946            9 => sprintf( __( 'Reply scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ),
    947947                    // translators: Publish box date format, see http://php.net/date
    948                     date_i18n( __( 'M j, Y @ G:i' ),
     948                    date_i18n( __( 'M j, Y @ G:i', 'bbpress' ),
    949949                    strtotime( $post_date ) ),
    950950                    $topic_url ),
  • branches/plugin/bbp-admin/bbp-settings.php

    r4020 r4034  
    13481348
    13491349            // Core Post Types
    1350             'post_base'       => array( 'name' => __( 'Posts'        ), 'default' => 'post',          'context' => 'WordPress' ),
    1351             'page_base'       => array( 'name' => __( 'Pages'        ), 'default' => 'page',          'context' => 'WordPress' ),
    1352             'revision_base'   => array( 'name' => __( 'Revisions'    ), 'default' => 'revision',      'context' => 'WordPress' ),
    1353             'attachment_base' => array( 'name' => __( 'Attachments'  ), 'default' => 'attachment',    'context' => 'WordPress' ),
    1354             'nav_menu_base'   => array( 'name' => __( 'Menus'        ), 'default' => 'nav_menu_item', 'context' => 'WordPress' ),
     1350            'post_base'       => array( 'name' => __( 'Posts',         'bbpress' ), 'default' => 'post',          'context' => 'WordPress' ),
     1351            'page_base'       => array( 'name' => __( 'Pages',         'bbpress' ), 'default' => 'page',          'context' => 'WordPress' ),
     1352            'revision_base'   => array( 'name' => __( 'Revisions',     'bbpress' ), 'default' => 'revision',      'context' => 'WordPress' ),
     1353            'attachment_base' => array( 'name' => __( 'Attachments',   'bbpress' ), 'default' => 'attachment',    'context' => 'WordPress' ),
     1354            'nav_menu_base'   => array( 'name' => __( 'Menus',         'bbpress' ), 'default' => 'nav_menu_item', 'context' => 'WordPress' ),
    13551355
    13561356            // Post Tags
    1357             'tag_base'        => array( 'name' => __( 'Tag base'      ), 'default' => 'tag',           'context' => 'WordPress' ),
     1357            'tag_base'        => array( 'name' => __( 'Tag base',      'bbpress' ), 'default' => 'tag',           'context' => 'WordPress' ),
    13581358
    13591359            // Post Categories
    1360             'category_base'   => array( 'name' => __( 'Category base' ), 'default' => 'category',      'context' => 'WordPress' ),
     1360            'category_base'   => array( 'name' => __( 'Category base', 'bbpress' ), 'default' => 'category',      'context' => 'WordPress' ),
    13611361
    13621362            /** bbPress Core ******************************************************/
  • branches/plugin/bbp-admin/bbp-topics.php

    r3966 r4034  
    138138            'title'     => __( 'Screen Content', 'bbpress' ),
    139139            'content'   =>
    140                 '<p>' . __( 'You can customize the display of this screen&#8217;s contents in a number of ways:' ) . '</p>' .
     140                '<p>' . __( 'You can customize the display of this screen&#8217;s contents in a number of ways:', 'bbpress' ) . '</p>' .
    141141                '<ul>' .
    142142                    '<li>' . __( 'You can hide/display columns based on your needs and decide how many replies to list per screen using the Screen Options tab.',                                                                                                                                                                          'bbpress' ) . '</li>' .
     
    173173        // Help Sidebar
    174174        $current_screen->set_help_sidebar(
    175             '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
     175            '<p><strong>' . __( 'For more information:', 'bbpress' ) . '</strong></p>' .
    176176            '<p>' . __( '<a href="http://bbpress.org/documentation/" target="_blank">bbPress Documentation</a>', 'bbpress' ) . '</p>' .
    177177            '<p>' . __( '<a href="http://bbpress.org/forums/" target="_blank">bbPress Support Forums</a>',       'bbpress' ) . '</p>'
     
    988988
    989989            // Updated
    990             1 =>  sprintf( __( 'Topic updated. <a href="%s">View topic</a>' ), $topic_url ),
     990            1 =>  sprintf( __( 'Topic updated. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ),
    991991
    992992            // Custom field updated
     
    10171017            9 => sprintf( __( 'Topic scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ),
    10181018                    // translators: Publish box date format, see http://php.net/date
    1019                     date_i18n( __( 'M j, Y @ G:i' ),
     1019                    date_i18n( __( 'M j, Y @ G:i', 'bbpress' ),
    10201020                    strtotime( $post_date ) ),
    10211021                    $topic_url ),
  • branches/plugin/bbp-includes/bbp-common-functions.php

    r4033 r4034  
    16561656
    16571657    if ( ! isset( $wp_query ) ) {
    1658         _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
     1658        _doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.', 'bbpress' ), '3.1' );
    16591659        return false;
    16601660    }
  • branches/plugin/bbp-theme-compat/bbpress/form-user-edit.php

    r3918 r4034  
    8989    </fieldset>
    9090
    91     <h2 class="entry-title"><?php _e( 'Account' ) ?></h2>
     91    <h2 class="entry-title"><?php _e( 'Account', 'bbpress' ) ?></h2>
    9292
    9393    <fieldset class="bbp-form">
    94         <legend><?php _e( 'Account' ) ?></legend>
     94        <legend><?php _e( 'Account', 'bbpress' ) ?></legend>
    9595
    9696        <?php do_action( 'bbp_user_edit_before_account' ); ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/form-user-edit.php

    r3918 r4034  
    8989    </fieldset>
    9090
    91     <h2 class="entry-title"><?php _e( 'Account' ) ?></h2>
     91    <h2 class="entry-title"><?php _e( 'Account', 'bbpress' ) ?></h2>
    9292
    9393    <fieldset class="bbp-form">
    94         <legend><?php _e( 'Account' ) ?></legend>
     94        <legend><?php _e( 'Account', 'bbpress' ) ?></legend>
    9595
    9696        <?php do_action( 'bbp_user_edit_before_account' ); ?>
Note: See TracChangeset for help on using the changeset viewer.