Skip to:
Content

BuddyPress.org

Ticket #934: jjj-bear-safe-patch.patch

File jjj-bear-safe-patch.patch, 57.3 KB (added by johnjamesjacoby, 15 years ago)
  • bp-activity/bp-activity-templatetags.php

     
    363363                        else
    364364                                unset($selected);
    365365                       
    366                         $component_links[] = $before . '<a href="' . $link . '"' . $selected . '">' . ucwords($component_name) . '</a>' . $after;
     366                        $component_links[] = $before . '<a href="' . $link . '"' . $selected . '">' . __( ucwords($component_name), 'buddypress' ) . '</a>' . $after;
    367367                }
    368368
    369369                $link = remove_query_arg( array( 'afilter' ), $link );
  • bp-core.php

     
    154154        if ( !$bp->current_component )
    155155                $bp->current_component = $bp->default_component;
    156156}
    157 add_action( 'plugins_loaded', 'bp_core_setup_globals', 3 );
     157add_action( 'plugins_loaded', 'bp_core_setup_globals', 6 );
    158158add_action( '_admin_menu', 'bp_core_setup_globals', 3 ); // must be _admin_menu hook.
    159159
    160160
  • bp-core/bp-core-avatars.php

     
    6161                $item_id = apply_filters( 'bp_core_avatar_item_id', $item_id, $object );
    6262        }
    6363       
    64         if ( !$id )
     64        if ( !$id || ( $id == 0 ) )
    6565                $id = $object . '-' . $item_id . '-avatar';
    6666       
    6767        if ( $width )
     
    7676        /* If no avatars have been uploaded for this item, display a gravatar */       
    7777        if ( !file_exists( $avatar_folder_dir ) ) {
    7878               
    79                 if ( empty( $bp->grav_default->{$object} ) )
     79                if ( empty( $bp->grav_default ) )
    8080                        $default_grav = 'wavatar';
    81                 else if ( 'mystery' == $bp->grav_default->{$object} )
    82                         $default_grav = BP_PLUGIN_URL . '/bp-core/images/mystery-man.jpg';
     81                else if ( 'mystery' == $bp->grav_default )
     82                        $default_grav = BP_PLUGIN_URL . '/bp-core/deprecated/images/mystery-man.jpg';
    8383                else
    84                         $default_grav = $bp->grav_default->{$object};
     84                        $default_grav = $bp->grav_default;
    8585
    8686                if ( $width ) $grav_size = $width;
    8787                else if ( 'full' == $type ) $grav_size = BP_AVATAR_FULL_WIDTH;
     
    125125                closedir($av_dir);
    126126        }
    127127
    128         return apply_filters( 'bp_core_fetch_avatar', "<img src='{$avatar_url}' alt='{$alt}' class='{$class}'{$html_width}{$html_height} />", $item_id, $object, $height, $width, $class, $alt );       
     128        if ( $avatar_url == '' ) {
     129                $avatar_url = BP_PLUGIN_URL . '/bp-core/deprecated/images/mystery-man.jpg';
     130                return apply_filters( 'bp_core_fetch_avatar', "<img src='{$avatar_url}' alt='{$alt}' class='{$class}'{$html_width}{$html_height} />", $item_id, $object, $height, $width, $class, $alt );
     131        } else {
     132                $avatar_url = $avatar_url;
     133                return apply_filters( 'bp_core_fetch_avatar', "<img src='{$avatar_url}' alt='{$alt}' class='{$class}'{$html_width}{$html_height} />", $item_id, $object, $height, $width, $class, $alt );
     134        }
    129135}
    130136
    131137function bp_core_delete_existing_avatar( $args = '' ) {
  • bp-core/bp-core-classes.php

     
    6464                $this->last_active = bp_core_get_last_activity( get_usermeta( $this->id, 'last_activity' ), __( 'active %s ago', 'buddypress' ) );
    6565
    6666                $this->avatar = bp_core_fetch_avatar( array( 'item_id' => $this->id, 'type' => 'full' ) );
    67                 $this->avatar_thumb = bp_core_fetch_avatar( array( 'item_id' => $this->id, 'type' => 'thumb' ) );
     67                $this->avatar_thumb = bp_core_fetch_avatar( array( 'item_id' => $this->id, 'type' => 'thumb', 'width' => BP_AVATAR_THUMB_WIDTH, 'height' => BP_AVATAR_THUMB_HEIGHT ) );
    6868                $this->avatar_mini = bp_core_fetch_avatar( array( 'item_id' => $this->id, 'type' => 'thumb', 'width' => 25, 'height' => 25 ) );
    6969        }
    7070       
  • bp-core/bp-core-settings.php

     
    7676
    7777        <form action="<?php echo $bp->loggedin_user->domain . 'settings/general' ?>" method="post" class="standard-form" id="settings-form">
    7878                <label for="email"><?php _e( 'Account Email', 'buddypress' ) ?></label>
    79                 <input type="text" name="email" id="email" value="<?php echo attribute_escape( $current_user->user_email ); ?>" class="settings-input" />
    80                        
     79                <p>
     80                        <input type="text" name="email" id="email" value="<?php echo attribute_escape( $current_user->user_email ); ?>" class="settings-input" />
     81                </p>
     82
    8183                <label for="pass1"><?php _e( 'Change Password <span>(leave blank for no change)</span>', 'buddypress' ) ?></label>
    82                 <p><input type="password" name="pass1" id="pass1" size="16" value="" class="settings-input small" /> &nbsp;<?php _e( 'New Password', 'buddypress' ) ?></p>
    83                 <input type="password" name="pass2" id="pass2" size="16" value="" class="settings-input small" /> &nbsp;<?php _e( 'Repeat New Password', 'buddypress' ) ?>
     84               
     85                <p>
     86                        <input type="password" name="pass1" id="pass1" size="16" value="" class="settings-input small" /> &nbsp;<?php _e( 'New Password', 'buddypress' ) ?>
     87                        <input type="password" name="pass2" id="pass2" size="16" value="" class="settings-input small" /> &nbsp;<?php _e( 'Repeat New Password', 'buddypress' ) ?>
     88                </p>
    8489       
    85                 <p><input type="submit" name="submit" value="<?php _e( 'Save Changes', 'buddypress' ) ?>" id="submit" class="auto"/></p>
     90                <input type="submit" name="submit" value="<?php _e( 'Save Changes', 'buddypress' ) ?>" id="submit" class="auto"/>
    8691                <?php wp_nonce_field('bp_settings_general') ?>
    8792        </form>
    8893<?php
  • bp-groups/bp-groups-templatetags.php

    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
     
    14481448        }
    14491449       
    14501450function bp_group_member_is_banned() {
    1451         echo bp_get_group_member_is_banned();
     1451        return bp_get_group_member_is_banned();
    14521452}
    14531453        function bp_get_group_member_is_banned() {
    14541454                global $members_template, $groups_template;
  • bp-languages/buddypress.pot

     
    88msgstr ""
    99"Project-Id-Version: PACKAGE VERSION\n"
    1010"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
    11 "POT-Creation-Date: 2009-08-17 14:11+0000\n"
     11"POT-Creation-Date: 2009-08-15 14:11+0000\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1414"Language-Team: LANGUAGE <LL@li.org>\n"
     
    318318
    319319#: bp-blogs/bp-blogs-templatetags.php:1318
    320320#: bp-core/bp-core-templatetags.php:617 bp-core/bp-core-templatetags.php:1165
    321 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:624
     321#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:605
    322322#: bp-forums/bbpress/bb-includes/class.bb-query.php:1017
    323323#: bp-forums/bbpress/bb-templates/kakumei/rss2.php:18
    324324#: bp-forums/bbpress/bb-templates/kakumei/search.php:3
     
    689689#: bp-core/bp-core-templatetags.php:628 bp-core/bp-core-templatetags.php:630
    690690#: bp-core/deprecated/bp-core-deprecated.php:928
    691691#: bp-core/deprecated/bp-core-deprecated.php:930
    692 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2729
     692#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2733
    693693msgid "Log Out"
    694694msgstr ""
    695695
    696696#: bp-core/bp-core-adminbar.php:103 bp-core/bp-core-adminbar.php:116
    697 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2755
     697#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2759
    698698#: bp-groups.php:244
    699699msgid "Admin"
    700700msgstr ""
     
    708708msgstr ""
    709709
    710710#: bp-core/bp-core-adminbar.php:112
    711 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1082
    712 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1090
     711#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1063
     712#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1071
    713713#: bp-forums/bbpress/bb-admin/topics.php:102
    714714#: bp-forums/bbpress/bb-admin/topics.php:111
    715715msgid "Author"
     
    722722#: bp-core/bp-core-adminbar.php:153
    723723#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:55
    724724#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:56
    725 #: bp-forums/bbpress/bb-admin/index.php:46
     725#: bp-forums/bbpress/bb-admin/index.php:38
    726726msgid "Dashboard"
    727727msgstr ""
    728728
     
    897897msgstr ""
    898898
    899899#: bp-core/bp-core-settings.php:85 bp-core/bp-core-settings.php:133
    900 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:916
     900#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:897
    901901#: bp-forums/bbpress/bb-admin/options-discussion.php:123
    902902#: bp-forums/bbpress/bb-admin/options-general.php:236
    903903#: bp-forums/bbpress/bb-admin/options-permalinks.php:164
     
    975975msgstr ""
    976976
    977977#: bp-core/bp-core-templatetags.php:326
    978 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:646
    979 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:650
    980 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:660
    981 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:664
    982 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:926
     978#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:627
     979#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:631
     980#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:641
     981#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:645
     982#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:907
    983983#: bp-groups/bp-groups-admin.php:72 bp-themes/bp-sn-framework/comments.php:92
    984984#: bp-themes/deprecated/bphome/comments-popup.php:64
    985985#: bp-themes/deprecated/bphome/comments.php:90
     
    991991msgstr ""
    992992
    993993#: bp-core/bp-core-templatetags.php:346
    994 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:901
     994#: bp-forums/bbpress/bb-includes/functions.bb-core.php:897
    995995#: bp-themes/bp-sn-framework/comments.php:102
    996996#: bp-themes/deprecated/bphome/comments.php:96
    997997msgid "Website"
     
    14841484msgstr ""
    14851485
    14861486#: bp-core/deprecated/bp-core-deprecated.php:907
    1487 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:645
    1488 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:649
    1489 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:659
    1490 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:663
     1487#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:626
     1488#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:630
     1489#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:640
     1490#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:644
    14911491#: bp-forums/bbpress/bb-templates/kakumei/login-form.php:14
    14921492#: bp-forums/bbpress/bb-templates/kakumei/login.php:17
    14931493#: bp-forums/bbpress/bb-templates/kakumei/login.php:59
     
    15111511msgstr ""
    15121512
    15131513#: bp-forums/bbpress/bb-admin/admin-base.php:13
    1514 msgid "Page not found"
     1514msgid "Nothing to see here."
    15151515msgstr ""
    15161516
    1517 #: bp-forums/bbpress/bb-admin/admin-base.php:15
    1518 msgid ""
    1519 "There is no administration page at the requested address. Please check the "
    1520 "address you entered and try again."
    1521 msgstr ""
    1522 
    15231517#: bp-forums/bbpress/bb-admin/admin-footer.php:8
    15241518#: bp-forums/bbpress/bb-templates/kakumei/footer.php:11
    15251519#, php-format
     
    16721666msgstr ""
    16731667
    16741668#: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:193
    1675 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1210
     1669#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1206
    16761670msgid "bbPress &rsaquo; Error"
    16771671msgstr ""
    16781672
     
    28482842
    28492843#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:83
    28502844#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:84
    2851 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:591
     2845#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:572
    28522846msgid "Users"
    28532847msgstr ""
    28542848
    28552849#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:85
    2856 #: bp-forums/bbpress/bb-admin/tools-recount.php:68
     2850#: bp-forums/bbpress/bb-admin/tools-recount.php:173
    28572851msgid "Tools"
    28582852msgstr ""
    28592853
    28602854#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:86
    2861 #: bp-forums/bbpress/bb-admin/tools-recount.php:73
     2855#: bp-forums/bbpress/bb-admin/tools-recount.php:178
    28622856msgid "Re-count"
    28632857msgstr ""
    28642858
     
    28822876msgid "WordPress Integration"
    28832877msgstr ""
    28842878
    2885 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:236
     2879#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:220
    28862880#: bp-forums/bbpress/bb-admin/options-wordpress.php:249
    2887 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1117
     2881#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1113
    28882882msgid "bbPress"
    28892883msgstr ""
    28902884
    2891 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:415
    2892 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:884
    2893 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1104
     2885#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:399
     2886#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:865
     2887#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1085
    28942888#: bp-forums/bbpress/bb-admin/topics.php:125
    28952889msgid "View"
    28962890msgstr ""
    28972891
    2898 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:418
    2899 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:886
    2900 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:846
    2901 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1926
     2892#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:401
     2893#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:867
     2894#: bp-forums/bbpress/bb-includes/functions.bb-core.php:842
     2895#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1930
    29022896#: bp-forums/bp-forums-templatetags.php:405
    29032897#: bp-forums/bp-forums-templatetags.php:697 bp-groups/bp-groups-admin.php:108
    29042898#: bp-themes/bp-sn-framework/archive.php:35
     
    29092903msgid "Edit"
    29102904msgstr ""
    29112905
    2912 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:419
    2913 #, php-format
    2914 msgid "User ID: %d"
    2915 msgstr ""
    2916 
    2917 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:433
    2918 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1138
     2906#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:414
     2907#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1119
    29192908#: bp-forums/bbpress/bb-admin/topics.php:144
    29202909#: bp-forums/bbpress/bb-admin/topics.php:153
    29212910#: bp-status/bp-status-templatetags.php:38
     
    29232912msgid "%s ago"
    29242913msgstr ""
    29252914
    2926 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:443
     2915#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:424
    29272916msgid "Inactive (no role)"
    29282917msgstr ""
    29292918
    2930 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:455
     2919#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:436
    29312920msgid "None"
    29322921msgstr ""
    29332922
    2934 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:523
    2935 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:705
     2923#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:504
     2924#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:686
    29362925msgid "<strong>No matching users were found!</strong>"
    29372926msgstr ""
    29382927
    2939 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:536
     2928#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:517
    29402929#: bp-forums/bbpress/bb-admin/posts.php:83
    29412930#: bp-forums/bbpress/bb-admin/topics.php:70
    29422931#, php-format
    29432932msgid "%1$s to %2$s of %3$s"
    29442933msgstr ""
    29452934
    2946 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:574
     2935#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:555
    29472936#, php-format
    29482937msgid "Users Matching \"%s\" by Role"
    29492938msgstr ""
    29502939
    2951 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:584
     2940#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:565
    29522941#: bp-forums/bbpress/bb-admin/posts.php:54
    29532942#: bp-forums/bbpress/bb-admin/topics.php:48
    29542943#, php-format
    29552944msgid "containing &#8220;%s&#8221;"
    29562945msgstr ""
    29572946
    2958 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:585
     2947#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:566
    29592948#, php-format
    29602949msgid "with role &#8220;%s&#8221;"
    29612950msgstr ""
    29622951
    2963 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:588
     2952#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:569
    29642953#, php-format
    29652954msgid "%1$s%2$s"
    29662955msgstr ""
    29672956
    2968 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:600
     2957#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:581
    29692958#: bp-forums/bbpress/bb-includes/class.bb-query.php:936
    29702959msgid "Search term"
    29712960msgstr ""
    29722961
    2973 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:604
    2974 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:653
    2975 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:667
     2962#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:585
     2963#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:634
     2964#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:648
    29762965msgid "Role"
    29772966msgstr ""
    29782967
    2979 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:625
     2968#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:606
    29802969#: bp-forums/bbpress/bb-admin/posts.php:77
    29812970#: bp-forums/bbpress/bb-admin/topics.php:64
    29822971msgid "Filter"
    29832972msgstr ""
    29842973
    2985 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:647
    2986 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:661
     2974#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:628
     2975#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:642
    29872976#: bp-themes/deprecated/bphome/comments-popup.php:71
    29882977msgid "E-mail"
    29892978msgstr ""
    29902979
    2991 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:652
    2992 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:666
     2980#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:633
     2981#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:647
    29932982msgid "Registered"
    29942983msgstr ""
    29952984
    2996 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:888
     2985#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:869
    29972986#: bp-forums/bbpress/bb-admin/topics.php:128
    2998 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1983
     2987#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1987
    29992988#: bp-forums/bp-forums-templatetags.php:417
    30002989#: bp-forums/bp-forums-templatetags.php:698 bp-groups/bp-groups-admin.php:47
    30012990#: bp-themes/bp-sn-framework/messages/index.php:52
     
    30092998msgid "Delete"
    30102999msgstr ""
    30113000
    3012 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:915
     3001#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:896
    30133002msgid "Edit Forum"
    30143003msgstr ""
    30153004
    3016 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:919
    3017 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:920
     3005#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:900
     3006#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:901
    30183007msgid "Add Forum"
    30193008msgstr ""
    30203009
    3021 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:930
     3010#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:911
    30223011msgid "Slug"
    30233012msgstr ""
    30243013
    3025 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:934
     3014#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:915
    30263015#: bp-forums/bbpress/bb-admin/plugins.php:186
    30273016#: bp-forums/bbpress/bb-admin/plugins.php:192 bp-groups/bp-groups-admin.php:75
    30283017#: bp-themes/bp-sn-framework/groups/single/home.php:46
     
    30303019msgid "Description"
    30313020msgstr ""
    30323021
    3033 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:939
     3022#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:920
    30343023msgid "Parent"
    30353024msgstr ""
    30363025
    3037 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:951
     3026#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:932
    30383027msgid "Position"
    30393028msgstr ""
    30403029
    3041 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:956
     3030#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:937
    30423031#: bp-themes/deprecated/bphome/archive.php:11
    30433032msgid "Category"
    30443033msgstr ""
    30453034
    3046 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:960
     3035#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:941
    30473036msgid "Make this forum a category"
    30483037msgstr ""
    30493038
    3050 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:964
     3039#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:945
    30513040msgid ""
    30523041"Categories are forums where new topics cannot be created. Categories usually "
    30533042"contain a group of sub-forums."
    30543043msgstr ""
    30553044
    3056 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1074
     3045#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1055
    30573046#: bp-forums/bbpress/xmlrpc.php:1700 bp-forums/bbpress/xmlrpc.php:2299
    30583047msgid "No posts found."
    30593048msgstr ""
    30603049
    3061 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1081
    3062 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1089
     3050#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1062
     3051#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1070
    30633052#: bp-forums/bbpress/bb-templates/kakumei/post-form.php:9
    30643053msgid "Post"
    30653054msgstr ""
    30663055
    3067 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1083
    3068 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1091
     3056#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1064
     3057#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1072
    30693058#: bp-forums/bbpress/bb-admin/topics.php:101
    30703059#: bp-forums/bbpress/bb-admin/topics.php:110
    30713060#: bp-forums/bbpress/bb-templates/kakumei/favorites.php:16
     
    30763065msgid "Topic"
    30773066msgstr ""
    30783067
    3079 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1084
    3080 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1092
     3068#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1065
     3069#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1073
    30813070#: bp-forums/bbpress/bb-admin/topics.php:104
    30823071#: bp-forums/bbpress/bb-admin/topics.php:113
    30833072msgid "Date"
    30843073msgstr ""
    30853074
    3086 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1158
     3075#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1139
    30873076msgid "Count posts of every topic"
    30883077msgstr ""
    30893078
    3090 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1159
     3079#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1140
    30913080msgid "Count voices of every topic"
    30923081msgstr ""
    30933082
    3094 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1160
     3083#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1141
    30953084msgid "Count deleted posts on every topic"
    30963085msgstr ""
    30973086
    3098 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1161
     3087#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1142
    30993088msgid "Count topics and posts in every forum"
    31003089msgstr ""
    31013090
    3102 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1162
     3091#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1143
    31033092msgid "Count topics to which each user has replied"
    31043093msgstr ""
    31053094
    3106 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1163
     3095#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1144
    31073096msgid "Count tags for every topic"
    31083097msgstr ""
    31093098
    3110 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1164
     3099#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1145
    31113100msgid "Count topics for every tag"
    31123101msgstr ""
    31133102
    3114 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1165
     3103#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1146
    31153104msgid "Delete tags with no topics"
    31163105msgstr ""
    31173106
    3118 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1166
     3107#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1147
    31193108msgid "Remove deleted topics from users' favorites"
    31203109msgstr ""
    31213110
    3122 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1236
     3111#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1217
    31233112#: bp-forums/bbpress/bb-admin/includes/functions.bb-plugin.php:307
    31243113msgid "Visit author homepage"
    31253114msgstr ""
    31263115
    3127 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1246
     3116#: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1227
    31283117msgid "Visit porter homepage"
    31293118msgstr ""
    31303119
     
    31453134msgid "That type of plugin is not available in the specified location."
    31463135msgstr ""
    31473136
    3148 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:7
    3149 #, php-format
    3150 msgid "Counting the number of posts in each topic&hellip; %s"
    3151 msgstr ""
    3152 
    3153 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:8
    3154 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:24
    3155 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:45
    3156 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:66
    3157 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:82
    3158 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:98
    3159 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:214
    3160 msgid "Failed!"
    3161 msgstr ""
    3162 
    3163 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:15
    3164 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:36
    3165 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:57
    3166 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:73
    3167 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:89
    3168 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:133
    3169 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:260
    3170 msgid "Complete!"
    3171 msgstr ""
    3172 
    3173 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:23
    3174 #, php-format
    3175 msgid "Counting the number of voices in each topic&hellip; %s"
    3176 msgstr ""
    3177 
    3178 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:44
    3179 #, php-format
    3180 msgid "Counting the number of deleted posts in each topic&hellip; %s"
    3181 msgstr ""
    3182 
    3183 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:65
    3184 #, php-format
    3185 msgid "Counting the number of topics in each forum&hellip; %s"
    3186 msgstr ""
    3187 
    3188 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:81
    3189 #, php-format
    3190 msgid "Counting the number of posts in each forum&hellip; %s"
    3191 msgstr ""
    3192 
    3193 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:97
    3194 #, php-format
    3195 msgid "Counting the number of topics to which each user has replied&hellip; %s"
    3196 msgstr ""
    3197 
    3198 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:147
    3199 msgid "Counted topic tags"
    3200 msgstr ""
    3201 
    3202 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:170
    3203 msgid "Counted tagged topics"
    3204 msgstr ""
    3205 
    3206 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:193
    3207 msgid "Deleted tags with no topics"
    3208 msgstr ""
    3209 
    3210 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:213
    3211 #, php-format
    3212 msgid "Removing deleted topics from user favorites&hellip; %s"
    3213 msgstr ""
    3214 
    32153137#: bp-forums/bbpress/bb-admin/index.php:6
    32163138#, php-format
    32173139msgid "<span>%d</span> forum"
     
    32513173msgstr[0] ""
    32523174msgstr[1] ""
    32533175
    3254 #: bp-forums/bbpress/bb-admin/index.php:50
     3176#: bp-forums/bbpress/bb-admin/index.php:42
    32553177msgid "Right Now"
    32563178msgstr ""
    32573179
    3258 #: bp-forums/bbpress/bb-admin/index.php:55
     3180#: bp-forums/bbpress/bb-admin/index.php:47
    32593181msgid "Totals"
    32603182msgstr ""
    32613183
    3262 #: bp-forums/bbpress/bb-admin/index.php:56
     3184#: bp-forums/bbpress/bb-admin/index.php:48
    32633185msgid "Per Day"
    32643186msgstr ""
    32653187
    3266 #: bp-forums/bbpress/bb-admin/index.php:81
     3188#: bp-forums/bbpress/bb-admin/index.php:77
    32673189msgid "Change Theme"
    32683190msgstr ""
    32693191
    3270 #: bp-forums/bbpress/bb-admin/index.php:81
     3192#: bp-forums/bbpress/bb-admin/index.php:77
    32713193#, php-format
    32723194msgid "Theme <a href=\"%1$s\">%2$s</a>"
    32733195msgstr ""
    32743196
    3275 #: bp-forums/bbpress/bb-admin/index.php:82
     3197#: bp-forums/bbpress/bb-admin/index.php:78
    32763198#, php-format
    32773199msgid "You are using <span class=\"b\">bbPress %s</span>"
    32783200msgstr ""
    32793201
    3280 #: bp-forums/bbpress/bb-admin/index.php:87
     3202#: bp-forums/bbpress/bb-admin/index.php:83
    32813203msgid "Recently Moderated Items"
    32823204msgstr ""
    32833205
    3284 #: bp-forums/bbpress/bb-admin/index.php:95
     3206#: bp-forums/bbpress/bb-admin/index.php:91
    32853207#, php-format
    32863208msgid ""
    32873209"<a href=\"%1$s\">Post</a> on <a href=\"%2$s\">%3$s</a> by <a href=\"%4$s\">%5"
    32883210"$s</a>"
    32893211msgstr ""
    32903212
    3291 #: bp-forums/bbpress/bb-admin/index.php:108
     3213#: bp-forums/bbpress/bb-admin/index.php:104
    32923214#, php-format
    32933215msgid ""
    32943216"Topic titled <a href=\"%1$s\">%2$s</a> started by <a href=\"%3$s\">%4$s</a>"
    32953217msgstr ""
    32963218
    3297 #: bp-forums/bbpress/bb-admin/index.php:120
     3219#: bp-forums/bbpress/bb-admin/index.php:116
    32983220msgid ""
    32993221"No moderated posts or topics&#8230; you must have very well behaved members."
    33003222msgstr ""
     
    40753997msgid "Available Themes"
    40763998msgstr ""
    40773999
    4078 #: bp-forums/bbpress/bb-admin/tools-recount.php:74
     4000#: bp-forums/bbpress/bb-admin/tools-recount.php:10
     4001msgid "Counted posts"
     4002msgstr ""
     4003
     4004#: bp-forums/bbpress/bb-admin/tools-recount.php:21
     4005msgid "Counted voices"
     4006msgstr ""
     4007
     4008#: bp-forums/bbpress/bb-admin/tools-recount.php:37
     4009msgid "Counting deleted posts&#8230;"
     4010msgstr ""
     4011
     4012#: bp-forums/bbpress/bb-admin/tools-recount.php:47
     4013msgid "&#8230;counted deleted posts"
     4014msgstr ""
     4015
     4016#: bp-forums/bbpress/bb-admin/tools-recount.php:49
     4017msgid "&#8230;no deleted posts to count"
     4018msgstr ""
     4019
     4020#: bp-forums/bbpress/bb-admin/tools-recount.php:55
     4021msgid "Counted forum topics and posts"
     4022msgstr ""
     4023
     4024#: bp-forums/bbpress/bb-admin/tools-recount.php:72
     4025msgid "Counted topics to which each user has replied"
     4026msgstr ""
     4027
     4028#: bp-forums/bbpress/bb-admin/tools-recount.php:87
     4029msgid "Counted topic tags"
     4030msgstr ""
     4031
     4032#: bp-forums/bbpress/bb-admin/tools-recount.php:106
     4033msgid "Counted tagged topics"
     4034msgstr ""
     4035
     4036#: bp-forums/bbpress/bb-admin/tools-recount.php:125
     4037msgid "Deleted tags with no topics"
     4038msgstr ""
     4039
     4040#: bp-forums/bbpress/bb-admin/tools-recount.php:142
     4041msgid "Removed deleted topics from users' favorites"
     4042msgstr ""
     4043
     4044#: bp-forums/bbpress/bb-admin/tools-recount.php:179
    40794045msgid ""
    40804046"To minimize database queries, bbPress keeps it's own count of various items "
    40814047"like posts in each topic and topics in each forum. Occasionally these "
     
    40834049"items using this form."
    40844050msgstr ""
    40854051
    4086 #: bp-forums/bbpress/bb-admin/tools-recount.php:75
     4052#: bp-forums/bbpress/bb-admin/tools-recount.php:180
    40874053msgid "You can also clean out some stale items here, like empty tags."
    40884054msgstr ""
    40894055
    4090 #: bp-forums/bbpress/bb-admin/tools-recount.php:82
     4056#: bp-forums/bbpress/bb-admin/tools-recount.php:187
    40914057msgid "Items to re-count"
    40924058msgstr ""
    40934059
    4094 #: bp-forums/bbpress/bb-admin/tools-recount.php:95
     4060#: bp-forums/bbpress/bb-admin/tools-recount.php:200
    40954061msgid "There are no re-count tools available."
    40964062msgstr ""
    40974063
    4098 #: bp-forums/bbpress/bb-admin/tools-recount.php:102
     4064#: bp-forums/bbpress/bb-admin/tools-recount.php:207
    40994065msgid "Recount Items"
    41004066msgstr ""
    41014067
     
    41554121msgstr ""
    41564122
    41574123#: bp-forums/bbpress/bb-admin/topics.php:128
    4158 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2053
     4124#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2057
    41594125msgid "Undelete"
    41604126msgstr ""
    41614127
     
    43954361msgstr ""
    43964362
    43974363#: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:65
    4398 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:584
     4364#: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:583
    43994365#: bp-forums/bbpress/profile-edit.php:62
    44004366msgid "Invalid email address"
    44014367msgstr ""
     
    49234889msgstr[0] ""
    49244890msgstr[1] ""
    49254891
    4926 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:746
     4892#: bp-forums/bbpress/bb-includes/functions.bb-core.php:742
    49274893msgid "User not found."
    49284894msgstr ""
    49294895
    4930 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:819
     4896#: bp-forums/bbpress/bb-includes/functions.bb-core.php:815
    49314897msgid "REQUEST_URI"
    49324898msgstr ""
    49334899
    4934 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:820
     4900#: bp-forums/bbpress/bb-includes/functions.bb-core.php:816
    49354901msgid "should be"
    49364902msgstr ""
    49374903
    4938 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:821
     4904#: bp-forums/bbpress/bb-includes/functions.bb-core.php:817
    49394905msgid "full permalink"
    49404906msgstr ""
    49414907
    4942 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:822
     4908#: bp-forums/bbpress/bb-includes/functions.bb-core.php:818
    49434909msgid "PATH_INFO"
    49444910msgstr ""
    49454911
    4946 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:847
     4912#: bp-forums/bbpress/bb-includes/functions.bb-core.php:843
    49474913#: bp-forums/bbpress/bb-templates/kakumei/favorites.php:3
    49484914msgid "Favorites"
    49494915msgstr ""
    49504916
    4951 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:897
     4917#: bp-forums/bbpress/bb-includes/functions.bb-core.php:893
    49524918msgid "First name"
    49534919msgstr ""
    49544920
    4955 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:898
     4921#: bp-forums/bbpress/bb-includes/functions.bb-core.php:894
    49564922msgid "Last name"
    49574923msgstr ""
    49584924
    4959 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:899
     4925#: bp-forums/bbpress/bb-includes/functions.bb-core.php:895
    49604926msgid "Display name as"
    49614927msgstr ""
    49624928
    4963 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:900
     4929#: bp-forums/bbpress/bb-includes/functions.bb-core.php:896
    49644930#: bp-themes/bp-sn-framework/comments.php:97
    49654931msgid "Email"
    49664932msgstr ""
    49674933
    4968 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:902
     4934#: bp-forums/bbpress/bb-includes/functions.bb-core.php:898
    49694935msgid "Location"
    49704936msgstr ""
    49714937
    4972 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:903
     4938#: bp-forums/bbpress/bb-includes/functions.bb-core.php:899
    49734939msgid "Occupation"
    49744940msgstr ""
    49754941
    4976 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:904
     4942#: bp-forums/bbpress/bb-includes/functions.bb-core.php:900
    49774943msgid "Interests"
    49784944msgstr ""
    49794945
    4980 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:911
     4946#: bp-forums/bbpress/bb-includes/functions.bb-core.php:907
    49814947msgid "Custom Title"
    49824948msgstr ""
    49834949
    4984 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:918
     4950#: bp-forums/bbpress/bb-includes/functions.bb-core.php:914
    49854951#, php-format
    49864952msgid "Ignore the %d second post throttling limit"
    49874953msgstr ""
    49884954
    4989 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:995
     4955#: bp-forums/bbpress/bb-includes/functions.bb-core.php:991
    49904956msgid "Topics with no replies"
    49914957msgstr ""
    49924958
    4993 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:996
     4959#: bp-forums/bbpress/bb-includes/functions.bb-core.php:992
    49944960msgid "Topics with no tags"
    49954961msgstr ""
    49964962
    4997 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1104
     4963#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1100
    49984964msgid "bbPress Failure Notice"
    49994965msgstr ""
    50004966
    5001 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1107
     4967#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1103
    50024968msgid "Please try again."
    50034969msgstr ""
    50044970
    5005 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1218
     4971#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1214
    50064972#, php-format
    50074973msgid "Back to <a href=\"%s\">%s</a>."
    50084974msgstr ""
    50094975
    5010 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1231
     4976#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1227
    50114977msgid "Your attempt to submit this post has failed."
    50124978msgstr ""
    50134979
    5014 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1232
     4980#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1228
    50154981msgid "Your attempt to edit this post has failed."
    50164982msgstr ""
    50174983
    5018 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1233
     4984#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1229
    50194985msgid "Your attempt to delete this post has failed."
    50204986msgstr ""
    50214987
    5022 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1235
     4988#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1231
    50234989msgid "Your attempt to create this topic has failed."
    50244990msgstr ""
    50254991
    5026 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1236
     4992#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1232
    50274993msgid "Your attempt to change the resolution status of this topic has failed."
    50284994msgstr ""
    50294995
    5030 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1237
     4996#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1233
    50314997msgid "Your attempt to delete this topic has failed."
    50324998msgstr ""
    50334999
    5034 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1238
     5000#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1234
    50355001msgid "Your attempt to change the status of this topic has failed."
    50365002msgstr ""
    50375003
    5038 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1239
     5004#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1235
    50395005msgid "Your attempt to change the sticky status of this topic has failed."
    50405006msgstr ""
    50415007
    5042 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1240
     5008#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1236
    50435009msgid "Your attempt to move this topic has failed."
    50445010msgstr ""
    50455011
    5046 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1242
     5012#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1238
    50475013msgid "Your attempt to add this tag to this topic has failed."
    50485014msgstr ""
    50495015
    5050 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1243
     5016#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1239
    50515017msgid "Your attempt to rename this tag has failed."
    50525018msgstr ""
    50535019
    5054 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1244
     5020#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1240
    50555021msgid "Your attempt to submit these tags has failed."
    50565022msgstr ""
    50575023
    5058 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1245
     5024#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1241
    50595025msgid "Your attempt to destroy this tag has failed."
    50605026msgstr ""
    50615027
    5062 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1246
     5028#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1242
    50635029msgid "Your attempt to remove this tag from this topic has failed."
    50645030msgstr ""
    50655031
    5066 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1248
     5032#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1244
    50675033msgid "Your attempt to toggle your favorite status for this topic has failed."
    50685034msgstr ""
    50695035
    5070 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1250
     5036#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1246
    50715037msgid "Your attempt to edit this user's profile has failed."
    50725038msgstr ""
    50735039
    5074 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1252
     5040#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1248
    50755041msgid "Your attempt to add this forum has failed."
    50765042msgstr ""
    50775043
    5078 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1253
     5044#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1249
    50795045msgid "Your attempt to update your forums has failed."
    50805046msgstr ""
    50815047
    5082 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1254
     5048#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1250
    50835049msgid "Your attempt to delete that forum has failed."
    50845050msgstr ""
    50855051
    5086 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1256
     5052#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1252
    50875053msgid "Your attempt to recount these items has failed."
    50885054msgstr ""
    50895055
    5090 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1258
     5056#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1254
    50915057msgid "Your attempt to switch themes has failed."
    50925058msgstr ""
    50935059
    5094 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1273
     5060#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1269
    50955061msgid "Your attempt to do this has failed."
    50965062msgstr ""
    50975063
    5098 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1484
    5099 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1617
     5064#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1480
     5065#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1613
    51005066msgid "Your search term was too short"
    51015067msgstr ""
    51025068
    5103 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1564
     5069#: bp-forums/bbpress/bb-includes/functions.bb-core.php:1560
    51045070msgid "Your query parameters are invalid"
    51055071msgstr ""
    51065072
     
    51195085msgid "Please give me a name!"
    51205086msgstr ""
    51215087
    5122 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:587
    5123 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:596
     5088#: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:586
     5089#: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:595
    51245090msgid "Invalid username"
    51255091msgstr ""
    51265092
     
    51925158msgstr ""
    51935159
    51945160#: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:93
    5195 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3357
     5161#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3361
    51965162msgid "&times;"
    51975163msgstr ""
    51985164
    51995165#: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:94
    5200 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3355
     5166#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3359
    52015167msgid "Add this topic to your favorites"
    52025168msgstr ""
    52035169
     
    53355301msgid "+%d more"
    53365302msgstr ""
    53375303
    5338 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1528
     5304#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1530
    53395305msgid "Move to"
    53405306msgstr ""
    53415307
    5342 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1531
     5308#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1533
    53435309msgid "Move"
    53445310msgstr ""
    53455311
    5346 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1563
     5312#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1567
    53475313msgid "Add New &raquo;"
    53485314msgstr ""
    53495315
    5350 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1739
     5316#: bp-forums/bbpress/bb-includes/functions.bb-template.php:1743
    53515317msgid "Anonymous"
    53525318msgstr ""
    53535319
    5354 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2124
    5355 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2138
     5320#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2128
     5321#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2142
    53565322msgid "PingBack"
    53575323msgstr ""
    53585324
    5359 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2126
    5360 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2140
     5325#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2130
     5326#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2144
    53615327msgid "Unregistered"
    53625328msgstr ""
    53635329
    5364 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2228
     5330#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2232
    53655331msgid "Delete User &raquo;"
    53665332msgstr ""
    53675333
    5368 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2229
     5334#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2233
    53695335msgid "Are you sure you want to delete this user?"
    53705336msgstr ""
    53715337
    5372 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2356
     5338#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2360
    53735339msgid "Member Since"
    53745340msgstr ""
    53755341
    5376 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2509
    5377 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2658
     5342#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2513
     5343#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2662
    53785344#: bp-forums/bbpress/bb-templates/kakumei/register.php:65
    53795345msgid "These items are <span class=\"required\">required</span>."
    53805346msgstr ""
    53815347
    5382 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2546
     5348#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2550
    53835349msgid "User Type"
    53845350msgstr ""
    53855351
    5386 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2571
     5352#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2575
    53875353msgid "Allow this user to"
    53885354msgstr ""
    53895355
    5390 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2661
     5356#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2665
    53915357msgid ""
    53925358"Inactive users can login and look around but not do anything. Blocked users "
    53935359"just see a simple error message when they visit the site."
    53945360msgstr ""
    53955361
    5396 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2662
     5362#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2666
    53975363msgid ""
    53985364"<strong>Note</strong>: Blocking a user does <em>not</em> block any IP "
    53995365"addresses."
    54005366msgstr ""
    54015367
    5402 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2685
     5368#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2689
    54035369msgid "New password"
    54045370msgstr ""
    54055371
    5406 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2698
     5372#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2702
    54075373msgid "Password Strength"
    54085374msgstr ""
    54095375
    5410 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2702
     5376#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2706
    54115377msgid "Disabled (requires JavaScript)"
    54125378msgstr ""
    54135379
    5414 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2708
     5380#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2712
    54155381msgid "Disabled (requires jQuery)"
    54165382msgstr ""
    54175383
    5418 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2715
     5384#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2719
    54195385msgid ""
    54205386"Hint: Use upper and lower case characters, numbers and symbols like !\"?$%"
    54215387"^&amp;( in your password."
    54225388msgstr ""
    54235389
    5424 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2774
     5390#: bp-forums/bbpress/bb-includes/functions.bb-template.php:2778
    54255391msgid "View your profile"
    54265392msgstr ""
    54275393
    5428 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3069
     5394#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3073
    54295395msgid "Add &raquo;"
    54305396msgstr ""
    54315397
    5432 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3105
     5398#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3109
    54335399msgid "Rename tag:"
    54345400msgstr ""
    54355401
    5436 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3109
     5402#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3113
    54375403msgid "Rename"
    54385404msgstr ""
    54395405
    5440 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3113
     5406#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3117
    54415407msgid "Merge this tag into:"
    54425408msgstr ""
    54435409
    5444 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3117
     5410#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3121
    54455411msgid "Merge"
    54465412msgstr ""
    54475413
    5448 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3118
     5414#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3122
    54495415#, php-format
    54505416msgid ""
    54515417"Are you sure you want to merge the \"%s\" tag into the tag you specified? "
    54525418"This is permanent and cannot be undone."
    54535419msgstr ""
    54545420
    5455 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3122
     5421#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3126
    54565422msgid "Destroy tag:"
    54575423msgstr ""
    54585424
    5459 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3125
     5425#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3129
    54605426msgid "Destroy"
    54615427msgstr ""
    54625428
    5463 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3126
     5429#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3130
    54645430#, php-format
    54655431msgid ""
    54665432"Are you sure you want to destroy the \"%s\" tag? This is permanent and "
    54675433"cannot be undone."
    54685434msgstr ""
    54695435
    5470 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3152
     5436#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3156
    54715437msgid "Remove this tag"
    54725438msgstr ""
    54735439
    5474 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3209
     5440#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3213
    54755441#, php-format
    54765442msgid "%d topics"
    54775443msgstr ""
    54785444
    5479 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3274
     5445#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3278
    54805446msgid "- None -"
    54815447msgstr ""
    54825448
    5483 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3355
     5449#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3359
    54845450msgid " (%?%)"
    54855451msgstr ""
    54865452
    5487 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3357
     5453#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3361
    54885454msgid "This topic is one of your %favorites% ["
    54895455msgstr ""
    54905456
    5491 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3357
     5457#: bp-forums/bbpress/bb-includes/functions.bb-template.php:3361
    54925458msgid "]"
    54935459msgstr ""
    54945460
     
    54985464"site's administrator."
    54995465msgstr ""
    55005466
    5501 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:262
     5467#: bp-forums/bbpress/bb-includes/functions.bb-users.php:261
    55025468msgid "The specified user does not exist."
    55035469msgstr ""
    55045470
    5505 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:275
     5471#: bp-forums/bbpress/bb-includes/functions.bb-users.php:267
    55065472#, php-format
    55075473msgid ""
    55085474"If you wanted to reset your password, you may do so by visiting the "
     
    55135479"If you don't want to reset your password, just ignore this email. Thanks!"
    55145480msgstr ""
    55155481
    5516 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:281
    5517 #, php-format
    5518 msgid "%s: Password Reset"
     5482#: bp-forums/bbpress/bb-includes/functions.bb-users.php:277
     5483#: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:5
     5484msgid "Password Reset"
    55195485msgstr ""
    55205486
    5521 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:293
     5487#: bp-forums/bbpress/bb-includes/functions.bb-users.php:282
    55225488msgid "The email containing the password reset link could not be sent."
    55235489msgstr ""
    55245490
    5525 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:318
    5526 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:322
    5527 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:328
    5528 msgid "Invalid key"
     5491#: bp-forums/bbpress/bb-includes/functions.bb-users.php:304
     5492#: bp-forums/bbpress/bb-includes/functions.bb-users.php:306
     5493#: bp-forums/bbpress/bb-includes/functions.bb-users.php:321
     5494msgid "Key not found."
    55295495msgstr ""
    55305496
    5531 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:336
     5497#: bp-forums/bbpress/bb-includes/functions.bb-users.php:311
    55325498msgid "You are not allowed to change your password."
    55335499msgstr ""
    55345500
    5535 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:342
     5501#: bp-forums/bbpress/bb-includes/functions.bb-users.php:315
    55365502msgid "The email containing the new password could not be sent."
    55375503msgstr ""
    55385504
    5539 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:391
     5505#: bp-forums/bbpress/bb-includes/functions.bb-users.php:364
    55405506#, php-format
    55415507msgid ""
    55425508"Your username is: %1$s \n"
     
    55465512"Enjoy!"
    55475513msgstr ""
    55485514
    5549 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:399
    5550 #, php-format
    5551 msgid "%s: Password"
     5515#: bp-forums/bbpress/bb-includes/functions.bb-users.php:368
     5516#: bp-forums/bbpress/bb-templates/kakumei/login-form.php:18
     5517#: bp-forums/bbpress/bb-templates/kakumei/login.php:27
     5518#: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:20
     5519#: bp-themes/bp-sn-framework/userbar.php:32
     5520#: bp-themes/deprecated/bpmember/userbar.php:32
     5521msgid "Password"
    55525522msgstr ""
    55535523
    55545524#: bp-forums/bbpress/bb-login.php:78
     
    58135783"<a href=\"%1$s\">Register</a> or log in - <a href=\"%2$s\">lost password?</a>"
    58145784msgstr ""
    58155785
    5816 #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:18
    5817 #: bp-forums/bbpress/bb-templates/kakumei/login.php:27
    5818 #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:20
    5819 #: bp-themes/bp-sn-framework/userbar.php:32
    5820 #: bp-themes/deprecated/bpmember/userbar.php:32
    5821 msgid "Password"
    5822 msgstr ""
    5823 
    58245786#: bp-forums/bbpress/bb-templates/kakumei/login-form.php:24
    58255787#: bp-forums/bbpress/bb-templates/kakumei/login.php:43
    58265788msgid "Log in &raquo;"
     
    58575819msgid "Recover Password &raquo;"
    58585820msgstr ""
    58595821
    5860 #: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:5
    5861 msgid "Password Reset"
    5862 msgstr ""
    5863 
    58645822#: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:12
    58655823msgid ""
    58665824"An email has been sent to the address we have on file for you. If you "
     
    58735831msgstr ""
    58745832
    58755833#: bp-forums/bbpress/bb-templates/kakumei/post-form.php:14
    5876 msgid "Tags (comma separated)"
     5834msgid "Tags (comma seperated)"
    58775835msgstr ""
    58785836
    58795837#: bp-forums/bbpress/bb-templates/kakumei/post-form.php:26
  • bp-themes/bp-sn-framework/home.php

     
    1 <?php get_header(); ?>
    2 
    3         <div id="content">
    4 
    5                 <?php do_action( 'bp_before_home' ) ?>
    6 
    7                 <div id="first-section" class="widget-section">
    8                         <?php if ( !function_exists('dynamic_sidebar')
    9                                 || !dynamic_sidebar('first-section') ) : ?>
    10 
    11                         <div class="widget-error">
    12                                 <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=first-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
    13                         </div>         
    14                
    15                         <?php endif; ?>
    16                 </div>
    17                
    18                 <div id="second-section" class="widget-section">
    19                         <?php if ( !function_exists('dynamic_sidebar')
    20                                 || !dynamic_sidebar('second-section') ) : ?>
    21                
    22                         <div class="widget-error">
    23                                 <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=second-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
    24                         </div>
    25                
    26                         <?php endif; ?>
    27                 </div>
    28 
    29                 <div id="third-section" class="widget-section">
    30                         <?php if ( !function_exists('dynamic_sidebar')
    31                                 || !dynamic_sidebar('third-section') ) : ?>
    32                
    33                         <div class="widget-error">
    34                                 <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=third-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
    35                         </div>
    36                
    37                         <?php endif; ?>
    38                 </div>
    39 
    40                 <?php do_action( 'bp_after_home' ) ?>
    41 
    42         </div>
    43 
    44 <?php get_footer(); ?>
  • bp-themes/bp-sn-framework/profile/change-avatar.php

     
    1717               
    1818                <form action="" method="post" id="avatar-upload-form" enctype="multipart/form-data">   
    1919                       
    20                         <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) : ?>
     20                        <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) { ?>
    2121                       
    2222                                <h3><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h3>
    2323               
     
    3232
    3333                                <?php wp_nonce_field( 'bp_avatar_upload' ) ?>
    3434                               
    35                         <?php endif; ?>
     35                        <?php } else if ( 'crop-image' == bp_get_avatar_admin_step() ) { ?>
    3636                       
    37                         <?php if ( 'crop-image' == bp_get_avatar_admin_step() ) : ?>
    38                        
    3937                                <h3><?php _e( 'Crop Your New Avatar', 'buddypress' ) ?></h3>
    4038                               
    4139                                <img src="<?php bp_avatar_to_crop() ?>" id="avatar-to-crop" class="avatar" alt="<?php _e( 'Avatar to crop', 'buddypress' ) ?>" />
     
    5452
    5553                                <?php wp_nonce_field( 'bp_avatar_cropstore' ) ?>
    5654                               
    57                         <?php endif; ?>
     55                        <?php } else { ?>
     56                                bp_core_delete_existing_avatar();
     57                        <?php } ?>
    5858                       
    5959                </form>
    6060               
  • bp-themes/bp-sn-framework/profile/profile-header.php

     
    55       
    66        <?php if ( function_exists( 'bp_the_status' ) ) : ?>
    77
    8                 <div id="user-status">
     8                <div id="<?php if (bp_loggedin_user_id() == bp_displayed_user_id() ) { ?>user-status<?php } else { ?>user-status-other<?php }?>">
    99                        <?php bp_the_status() ?>
    1010                </div>
    1111
  • bp-xprofile/bp-xprofile-filters.php

     
    5555                                if ( count( explode( ' ', $value ) ) > 5 )
    5656                                        $new_values[] = $value;
    5757                                else
    58                                         $new_values[] = '<a href="' . site_url( BP_MEMBERS_SLUG ) . '/?s=' . $value . '">' . $value . '</a>';
     58                                        $new_values[] = '<a href="' . rtrim( site_url( BP_MEMBERS_SLUG ), '/') . '/?s=' . $value . '">' . $value . '</a>';
    5959                        }
    6060                }
    6161               
  • bp-xprofile/bp-xprofile-templatetags.php

     
    244244}
    245245        function bp_get_the_profile_group_description() {
    246246                global $group;
    247                 echo apply_filters( 'bp_get_the_profile_group_description', $group->description );
     247                echo apply_filters( 'bp_get_the_profile_group_description', __( $group->description, 'buddypress' ) );
    248248        }
    249249       
    250250function bp_the_profile_group_edit_form_action() {
     
    283283}
    284284        function bp_get_the_profile_field_name() {
    285285                global $field;
    286                 return apply_filters( 'bp_get_the_profile_field_name', $field->name );
     286                return apply_filters( 'bp_get_the_profile_field_name', __( $field->name, 'buddypress' ) );
    287287        }
    288288
    289289function bp_the_profile_field_value() {
     
    332332        function bp_get_the_profile_field_description() {
    333333                global $field;
    334334               
    335                 return apply_filters( 'bp_get_the_profile_field_description', $field->desc );
     335                return apply_filters( 'bp_get_the_profile_field_description', __( $field->desc, 'buddypress' ) );
    336336        }
    337337       
    338338function bp_the_profile_field_input_name() {
     
    380380                                                $selected = '';
    381381                                        }
    382382                                       
    383                                         $html .= '<option' . $selected . ' value="' . attribute_escape( $options[$k]->name ) . '">' . attribute_escape( $options[$k]->name ) . '</option>';
     383                                        $html .= '<option' . $selected . ' value="' . attribute_escape( $options[$k]->name ) . '">' . __( attribute_escape( $options[$k]->name ), 'buddypress') . '</option>';
    384384                                }
    385385                                break;
    386386                               
     
    401401                                                $selected = '';
    402402                                        }
    403403                                       
    404                                         $html .= '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . attribute_escape( $options[$k]->name ) . '"> ' . attribute_escape( $options[$k]->name ) . '</label>';
     404                                        $html .= '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . attribute_escape( $options[$k]->name ) . '"> ' . __( attribute_escape( $options[$k]->name ), 'buddypress') . '</label>';
    405405                                }
    406406                                break;
    407407                               
     
    424424                                                }
    425425                                        }
    426426                                       
    427                                         $html .= '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . attribute_escape( $options[$k]->name ) . '"> ' . attribute_escape( $options[$k]->name ) . '</label>';
     427                                        $html .= '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . attribute_escape( $options[$k]->name ) . '"> ' . __( attribute_escape( $options[$k]->name ), 'buddypress' ) . '</label>';
    428428                                        $selected = '';
    429429                                }
    430430                                break;
     
    547547                }
    548548               
    549549                if ( $groups[$i]->fields )
    550                         echo '<li' . $selected . '><a href="' . $bp->loggedin_user->domain . $bp->profile->slug . '/edit/group/' . $groups[$i]->id . '">' . $groups[$i]->name . '</a></li>';
     550                        echo '<li' . $selected . '><a href="' . $bp->loggedin_user->domain . $bp->profile->slug . '/edit/group/' . $groups[$i]->id . '">' . __( $groups[$i]->name, 'buddypress' ) . '</a></li>';
    551551        }
    552552       
    553553        do_action( 'xprofile_profile_group_tabs' );