Skip to:
Content

bbPress.org

Changeset 1910


Ignore:
Timestamp:
01/06/2009 01:04:42 PM (17 years ago)
Author:
sambauers
Message:

Glorious gettext from Erko.Risthein, fixes #1024

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-admin/admin-header.php

    r1575 r1910  
    2525                    <?php printf( __('Howdy, %1$s!'), bb_get_profile_link( array( 'text' => bb_get_current_user_info( 'name' ) ) ) );?>
    2626                    | <?php bb_logout_link(); ?>
    27                     | <a href="http://bbpress.org/forums/">Support forums</a>
     27                    | <a href="http://bbpress.org/forums/"><?php _e('Support forums'); ?></a>
    2828                </p>
    2929            </div>
  • trunk/bb-admin/index.php

    r1799 r1910  
    1010
    1111    <div id="dashboard-right-now" class="dashboard">
    12         <h3>Right Now</h3>
     12        <h3><?php _e('Right Now'); ?></h3>
    1313<?php
    1414$forums = get_total_forums();
  • trunk/bb-admin/options-general.php

    r1868 r1910  
    216216                    <option value="identicon"<?php selected( bb_get_option('avatars_default'), 'identicon' ); ?>><?php _e('Identicon'); ?></option>
    217217                </select>
    218                 <p>Select what style of avatar to display to users without a Gravatar</p>
     218                <p><?php _e('Select what style of avatar to display to users without a Gravatar:'); ?></p>
    219219                <p class="gravatarDefault">
    220220                    <?php echo bb_get_avatar( 'anotherexample', 30, 'default' ); ?><?php _e('Default'); ?>
  • trunk/bb-admin/options-wordpress.php

    r1868 r1910  
    7272            $selected = '';
    7373        }
    74         $roles .= '<option value="' . $key . '"' . $selected . '>bbPress ' . $value . '</option>' . "\n";
     74        $roles .= '<option value="' . $key . '"' . $selected . '>' . sprintf( __( 'bbPress %s' ), $value ) . '</option>' . "\n";
    7575    }
    7676   
  • trunk/bb-admin/site.php

    r1575 r1910  
    55
    66<h2><?php _e('Recount') ?></h2>
    7 <p><?php _e("The following checkboxes allow you to recalculate various numbers stored in
    8 the database.  These numbers are used for things like counting the number of
    9 pages worth of posts a particular topic has.  You shouldn't need to do do any of
    10 this unless you're upgrading from one version to another or are seeing
    11 pagination oddities.") ?></p>
     7<p><?php _e("The following checkboxes allow you to recalculate various numbers stored in the database. These numbers are used for things like counting the number of pages worth of posts a particular topic has.  You shouldn't need to do do any of this unless you're upgrading from one version to another or are seeing pagination oddities.") ?></p>
    128
    139<form method="post" action="<?php bb_uri('bb-admin/bb-do-counts.php', null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_ADMIN); ?>">
  • trunk/bb-includes/functions.bb-template.php

    r1901 r1910  
    20172017<table id="admininfo">
    20182018<tr class='form-field<?php if ( in_array( 'role', $error_codes ) ) echo ' form-invalid'; ?>'>
    2019     <th scope="row"><?php _e('User Type'); ?></th>
     2019    <th scope="row"><label for="admininfo_role"><?php _e('User Type'); ?></label></th>
    20202020    <td>
    2021         <select name="role">
     2021        <select id="admininfo_role" name="role">
    20222022<?php
    20232023    foreach( $roles as $r => $n ) {
     
    21142114
    21152115<tr class="<?php echo $class; ?>">
    2116     <th scope="row"><?php echo $title ?></th>
     2116    <th scope="row"><label for="<?php echo $name; ?>"><?php echo $title ?></label></th>
    21172117    <td>
    21182118        <?php if ( 'checkbox' == $type && isset($label[5]) ) echo "<label for='$name'>"; ?>
     
    21312131
    21322132<?php endif; ?>
    2133 <p><?php _e('Inactive users can login and look around but not do anything.
    2134 Blocked users just see a simple error message when they visit the site.</p>
    2135 <p><strong>Note</strong>: Blocking a user does <em>not</em> block any IP addresses.'); ?></p>
     2133<p><?php _e('Inactive users can login and look around but not do anything. Blocked users just see a simple error message when they visit the site.'); ?></p>
     2134<p><?php _e('<strong>Note</strong>: Blocking a user does <em>not</em> block any IP addresses.'); ?></p>
    21362135<?php
    21372136}
Note: See TracChangeset for help on using the changeset viewer.