Ticket #934: jjj-bear-safe-patch.patch
File jjj-bear-safe-patch.patch, 57.3 KB (added by , 15 years ago) |
---|
-
bp-activity/bp-activity-templatetags.php
363 363 else 364 364 unset($selected); 365 365 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; 367 367 } 368 368 369 369 $link = remove_query_arg( array( 'afilter' ), $link ); -
bp-core.php
154 154 if ( !$bp->current_component ) 155 155 $bp->current_component = $bp->default_component; 156 156 } 157 add_action( 'plugins_loaded', 'bp_core_setup_globals', 3);157 add_action( 'plugins_loaded', 'bp_core_setup_globals', 6 ); 158 158 add_action( '_admin_menu', 'bp_core_setup_globals', 3 ); // must be _admin_menu hook. 159 159 160 160 -
bp-core/bp-core-avatars.php
61 61 $item_id = apply_filters( 'bp_core_avatar_item_id', $item_id, $object ); 62 62 } 63 63 64 if ( !$id )64 if ( !$id || ( $id == 0 ) ) 65 65 $id = $object . '-' . $item_id . '-avatar'; 66 66 67 67 if ( $width ) … … 76 76 /* If no avatars have been uploaded for this item, display a gravatar */ 77 77 if ( !file_exists( $avatar_folder_dir ) ) { 78 78 79 if ( empty( $bp->grav_default ->{$object}) )79 if ( empty( $bp->grav_default ) ) 80 80 $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'; 83 83 else 84 $default_grav = $bp->grav_default ->{$object};84 $default_grav = $bp->grav_default; 85 85 86 86 if ( $width ) $grav_size = $width; 87 87 else if ( 'full' == $type ) $grav_size = BP_AVATAR_FULL_WIDTH; … … 125 125 closedir($av_dir); 126 126 } 127 127 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 } 129 135 } 130 136 131 137 function bp_core_delete_existing_avatar( $args = '' ) { -
bp-core/bp-core-classes.php
64 64 $this->last_active = bp_core_get_last_activity( get_usermeta( $this->id, 'last_activity' ), __( 'active %s ago', 'buddypress' ) ); 65 65 66 66 $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 ) ); 68 68 $this->avatar_mini = bp_core_fetch_avatar( array( 'item_id' => $this->id, 'type' => 'thumb', 'width' => 25, 'height' => 25 ) ); 69 69 } 70 70 -
bp-core/bp-core-settings.php
76 76 77 77 <form action="<?php echo $bp->loggedin_user->domain . 'settings/general' ?>" method="post" class="standard-form" id="settings-form"> 78 78 <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 81 83 <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" /> <?php _e( 'New Password', 'buddypress' ) ?></p> 83 <input type="password" name="pass2" id="pass2" size="16" value="" class="settings-input small" /> <?php _e( 'Repeat New Password', 'buddypress' ) ?> 84 85 <p> 86 <input type="password" name="pass1" id="pass1" size="16" value="" class="settings-input small" /> <?php _e( 'New Password', 'buddypress' ) ?> 87 <input type="password" name="pass2" id="pass2" size="16" value="" class="settings-input small" /> <?php _e( 'Repeat New Password', 'buddypress' ) ?> 88 </p> 84 89 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"/> 86 91 <?php wp_nonce_field('bp_settings_general') ?> 87 92 </form> 88 93 <?php -
bp-groups/bp-groups-templatetags.php
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
1448 1448 } 1449 1449 1450 1450 function bp_group_member_is_banned() { 1451 echobp_get_group_member_is_banned();1451 return bp_get_group_member_is_banned(); 1452 1452 } 1453 1453 function bp_get_group_member_is_banned() { 1454 1454 global $members_template, $groups_template; -
bp-languages/buddypress.pot
8 8 msgstr "" 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" 11 "POT-Creation-Date: 2009-08-1 714:11+0000\n"11 "POT-Creation-Date: 2009-08-15 14:11+0000\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 14 14 "Language-Team: LANGUAGE <LL@li.org>\n" … … 318 318 319 319 #: bp-blogs/bp-blogs-templatetags.php:1318 320 320 #: 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:6 24321 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:605 322 322 #: bp-forums/bbpress/bb-includes/class.bb-query.php:1017 323 323 #: bp-forums/bbpress/bb-templates/kakumei/rss2.php:18 324 324 #: bp-forums/bbpress/bb-templates/kakumei/search.php:3 … … 689 689 #: bp-core/bp-core-templatetags.php:628 bp-core/bp-core-templatetags.php:630 690 690 #: bp-core/deprecated/bp-core-deprecated.php:928 691 691 #: bp-core/deprecated/bp-core-deprecated.php:930 692 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:27 29692 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2733 693 693 msgid "Log Out" 694 694 msgstr "" 695 695 696 696 #: bp-core/bp-core-adminbar.php:103 bp-core/bp-core-adminbar.php:116 697 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:275 5697 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2759 698 698 #: bp-groups.php:244 699 699 msgid "Admin" 700 700 msgstr "" … … 708 708 msgstr "" 709 709 710 710 #: bp-core/bp-core-adminbar.php:112 711 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 82712 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 90711 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1063 712 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1071 713 713 #: bp-forums/bbpress/bb-admin/topics.php:102 714 714 #: bp-forums/bbpress/bb-admin/topics.php:111 715 715 msgid "Author" … … 722 722 #: bp-core/bp-core-adminbar.php:153 723 723 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:55 724 724 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:56 725 #: bp-forums/bbpress/bb-admin/index.php: 46725 #: bp-forums/bbpress/bb-admin/index.php:38 726 726 msgid "Dashboard" 727 727 msgstr "" 728 728 … … 897 897 msgstr "" 898 898 899 899 #: 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: 916900 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:897 901 901 #: bp-forums/bbpress/bb-admin/options-discussion.php:123 902 902 #: bp-forums/bbpress/bb-admin/options-general.php:236 903 903 #: bp-forums/bbpress/bb-admin/options-permalinks.php:164 … … 975 975 msgstr "" 976 976 977 977 #: bp-core/bp-core-templatetags.php:326 978 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 46979 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 50980 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 60981 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 64982 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 26978 #: 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 983 983 #: bp-groups/bp-groups-admin.php:72 bp-themes/bp-sn-framework/comments.php:92 984 984 #: bp-themes/deprecated/bphome/comments-popup.php:64 985 985 #: bp-themes/deprecated/bphome/comments.php:90 … … 991 991 msgstr "" 992 992 993 993 #: bp-core/bp-core-templatetags.php:346 994 #: bp-forums/bbpress/bb-includes/functions.bb-core.php: 901994 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:897 995 995 #: bp-themes/bp-sn-framework/comments.php:102 996 996 #: bp-themes/deprecated/bphome/comments.php:96 997 997 msgid "Website" … … 1484 1484 msgstr "" 1485 1485 1486 1486 #: bp-core/deprecated/bp-core-deprecated.php:907 1487 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 451488 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 491489 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 591490 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 631487 #: 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 1491 1491 #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:14 1492 1492 #: bp-forums/bbpress/bb-templates/kakumei/login.php:17 1493 1493 #: bp-forums/bbpress/bb-templates/kakumei/login.php:59 … … 1511 1511 msgstr "" 1512 1512 1513 1513 #: bp-forums/bbpress/bb-admin/admin-base.php:13 1514 msgid " Page not found"1514 msgid "Nothing to see here." 1515 1515 msgstr "" 1516 1516 1517 #: bp-forums/bbpress/bb-admin/admin-base.php:151518 msgid ""1519 "There is no administration page at the requested address. Please check the "1520 "address you entered and try again."1521 msgstr ""1522 1523 1517 #: bp-forums/bbpress/bb-admin/admin-footer.php:8 1524 1518 #: bp-forums/bbpress/bb-templates/kakumei/footer.php:11 1525 1519 #, php-format … … 1672 1666 msgstr "" 1673 1667 1674 1668 #: bp-forums/bbpress/bb-admin/includes/class.bb-install.php:193 1675 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 101669 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1206 1676 1670 msgid "bbPress › Error" 1677 1671 msgstr "" 1678 1672 … … 2848 2842 2849 2843 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:83 2850 2844 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:84 2851 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:5 912845 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:572 2852 2846 msgid "Users" 2853 2847 msgstr "" 2854 2848 2855 2849 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:85 2856 #: bp-forums/bbpress/bb-admin/tools-recount.php: 682850 #: bp-forums/bbpress/bb-admin/tools-recount.php:173 2857 2851 msgid "Tools" 2858 2852 msgstr "" 2859 2853 2860 2854 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:86 2861 #: bp-forums/bbpress/bb-admin/tools-recount.php: 732855 #: bp-forums/bbpress/bb-admin/tools-recount.php:178 2862 2856 msgid "Re-count" 2863 2857 msgstr "" 2864 2858 … … 2882 2876 msgid "WordPress Integration" 2883 2877 msgstr "" 2884 2878 2885 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:2 362879 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:220 2886 2880 #: bp-forums/bbpress/bb-admin/options-wordpress.php:249 2887 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:111 72881 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1113 2888 2882 msgid "bbPress" 2889 2883 msgstr "" 2890 2884 2891 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php: 4152892 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:8 842893 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1 1042885 #: 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 2894 2888 #: bp-forums/bbpress/bb-admin/topics.php:125 2895 2889 msgid "View" 2896 2890 msgstr "" 2897 2891 2898 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:4 182899 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:8 862900 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:84 62901 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:19 262892 #: 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 2902 2896 #: bp-forums/bp-forums-templatetags.php:405 2903 2897 #: bp-forums/bp-forums-templatetags.php:697 bp-groups/bp-groups-admin.php:108 2904 2898 #: bp-themes/bp-sn-framework/archive.php:35 … … 2909 2903 msgid "Edit" 2910 2904 msgstr "" 2911 2905 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 2919 2908 #: bp-forums/bbpress/bb-admin/topics.php:144 2920 2909 #: bp-forums/bbpress/bb-admin/topics.php:153 2921 2910 #: bp-status/bp-status-templatetags.php:38 … … 2923 2912 msgid "%s ago" 2924 2913 msgstr "" 2925 2914 2926 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:4 432915 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:424 2927 2916 msgid "Inactive (no role)" 2928 2917 msgstr "" 2929 2918 2930 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:4 552919 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:436 2931 2920 msgid "None" 2932 2921 msgstr "" 2933 2922 2934 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:5 232935 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php: 7052923 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:504 2924 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:686 2936 2925 msgid "<strong>No matching users were found!</strong>" 2937 2926 msgstr "" 2938 2927 2939 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:5 362928 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:517 2940 2929 #: bp-forums/bbpress/bb-admin/posts.php:83 2941 2930 #: bp-forums/bbpress/bb-admin/topics.php:70 2942 2931 #, php-format 2943 2932 msgid "%1$s to %2$s of %3$s" 2944 2933 msgstr "" 2945 2934 2946 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:5 742935 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:555 2947 2936 #, php-format 2948 2937 msgid "Users Matching \"%s\" by Role" 2949 2938 msgstr "" 2950 2939 2951 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:5 842940 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:565 2952 2941 #: bp-forums/bbpress/bb-admin/posts.php:54 2953 2942 #: bp-forums/bbpress/bb-admin/topics.php:48 2954 2943 #, php-format 2955 2944 msgid "containing “%s”" 2956 2945 msgstr "" 2957 2946 2958 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:5 852947 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:566 2959 2948 #, php-format 2960 2949 msgid "with role “%s”" 2961 2950 msgstr "" 2962 2951 2963 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:5 882952 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:569 2964 2953 #, php-format 2965 2954 msgid "%1$s%2$s" 2966 2955 msgstr "" 2967 2956 2968 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php: 6002957 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:581 2969 2958 #: bp-forums/bbpress/bb-includes/class.bb-query.php:936 2970 2959 msgid "Search term" 2971 2960 msgstr "" 2972 2961 2973 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php: 6042974 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 532975 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 672962 #: 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 2976 2965 msgid "Role" 2977 2966 msgstr "" 2978 2967 2979 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 252968 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:606 2980 2969 #: bp-forums/bbpress/bb-admin/posts.php:77 2981 2970 #: bp-forums/bbpress/bb-admin/topics.php:64 2982 2971 msgid "Filter" 2983 2972 msgstr "" 2984 2973 2985 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 472986 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 612974 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:628 2975 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:642 2987 2976 #: bp-themes/deprecated/bphome/comments-popup.php:71 2988 2977 msgid "E-mail" 2989 2978 msgstr "" 2990 2979 2991 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 522992 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:6 662980 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:633 2981 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:647 2993 2982 msgid "Registered" 2994 2983 msgstr "" 2995 2984 2996 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:8 882985 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:869 2997 2986 #: bp-forums/bbpress/bb-admin/topics.php:128 2998 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:198 32987 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1987 2999 2988 #: bp-forums/bp-forums-templatetags.php:417 3000 2989 #: bp-forums/bp-forums-templatetags.php:698 bp-groups/bp-groups-admin.php:47 3001 2990 #: bp-themes/bp-sn-framework/messages/index.php:52 … … 3009 2998 msgid "Delete" 3010 2999 msgstr "" 3011 3000 3012 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php: 9153001 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:896 3013 3002 msgid "Edit Forum" 3014 3003 msgstr "" 3015 3004 3016 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 193017 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 203005 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:900 3006 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:901 3018 3007 msgid "Add Forum" 3019 3008 msgstr "" 3020 3009 3021 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 303010 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:911 3022 3011 msgid "Slug" 3023 3012 msgstr "" 3024 3013 3025 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 343014 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:915 3026 3015 #: bp-forums/bbpress/bb-admin/plugins.php:186 3027 3016 #: bp-forums/bbpress/bb-admin/plugins.php:192 bp-groups/bp-groups-admin.php:75 3028 3017 #: bp-themes/bp-sn-framework/groups/single/home.php:46 … … 3030 3019 msgid "Description" 3031 3020 msgstr "" 3032 3021 3033 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 393022 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:920 3034 3023 msgid "Parent" 3035 3024 msgstr "" 3036 3025 3037 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 513026 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:932 3038 3027 msgid "Position" 3039 3028 msgstr "" 3040 3029 3041 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 563030 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:937 3042 3031 #: bp-themes/deprecated/bphome/archive.php:11 3043 3032 msgid "Category" 3044 3033 msgstr "" 3045 3034 3046 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 603035 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:941 3047 3036 msgid "Make this forum a category" 3048 3037 msgstr "" 3049 3038 3050 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:9 643039 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:945 3051 3040 msgid "" 3052 3041 "Categories are forums where new topics cannot be created. Categories usually " 3053 3042 "contain a group of sub-forums." 3054 3043 msgstr "" 3055 3044 3056 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 743045 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1055 3057 3046 #: bp-forums/bbpress/xmlrpc.php:1700 bp-forums/bbpress/xmlrpc.php:2299 3058 3047 msgid "No posts found." 3059 3048 msgstr "" 3060 3049 3061 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 813062 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 893050 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1062 3051 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1070 3063 3052 #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:9 3064 3053 msgid "Post" 3065 3054 msgstr "" 3066 3055 3067 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 833068 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 913056 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1064 3057 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1072 3069 3058 #: bp-forums/bbpress/bb-admin/topics.php:101 3070 3059 #: bp-forums/bbpress/bb-admin/topics.php:110 3071 3060 #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:16 … … 3076 3065 msgid "Topic" 3077 3066 msgstr "" 3078 3067 3079 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 843080 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:10 923068 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1065 3069 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1073 3081 3070 #: bp-forums/bbpress/bb-admin/topics.php:104 3082 3071 #: bp-forums/bbpress/bb-admin/topics.php:113 3083 3072 msgid "Date" 3084 3073 msgstr "" 3085 3074 3086 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 583075 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1139 3087 3076 msgid "Count posts of every topic" 3088 3077 msgstr "" 3089 3078 3090 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 593079 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1140 3091 3080 msgid "Count voices of every topic" 3092 3081 msgstr "" 3093 3082 3094 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 603083 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1141 3095 3084 msgid "Count deleted posts on every topic" 3096 3085 msgstr "" 3097 3086 3098 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 613087 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1142 3099 3088 msgid "Count topics and posts in every forum" 3100 3089 msgstr "" 3101 3090 3102 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 623091 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1143 3103 3092 msgid "Count topics to which each user has replied" 3104 3093 msgstr "" 3105 3094 3106 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 633095 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1144 3107 3096 msgid "Count tags for every topic" 3108 3097 msgstr "" 3109 3098 3110 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 643099 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1145 3111 3100 msgid "Count topics for every tag" 3112 3101 msgstr "" 3113 3102 3114 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 653103 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1146 3115 3104 msgid "Delete tags with no topics" 3116 3105 msgstr "" 3117 3106 3118 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:11 663107 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1147 3119 3108 msgid "Remove deleted topics from users' favorites" 3120 3109 msgstr "" 3121 3110 3122 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:12 363111 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1217 3123 3112 #: bp-forums/bbpress/bb-admin/includes/functions.bb-plugin.php:307 3124 3113 msgid "Visit author homepage" 3125 3114 msgstr "" 3126 3115 3127 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:12 463116 #: bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:1227 3128 3117 msgid "Visit porter homepage" 3129 3118 msgstr "" 3130 3119 … … 3145 3134 msgid "That type of plugin is not available in the specified location." 3146 3135 msgstr "" 3147 3136 3148 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:73149 #, php-format3150 msgid "Counting the number of posts in each topic… %s"3151 msgstr ""3152 3153 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:83154 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:243155 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:453156 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:663157 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:823158 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:983159 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:2143160 msgid "Failed!"3161 msgstr ""3162 3163 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:153164 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:363165 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:573166 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:733167 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:893168 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:1333169 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:2603170 msgid "Complete!"3171 msgstr ""3172 3173 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:233174 #, php-format3175 msgid "Counting the number of voices in each topic… %s"3176 msgstr ""3177 3178 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:443179 #, php-format3180 msgid "Counting the number of deleted posts in each topic… %s"3181 msgstr ""3182 3183 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:653184 #, php-format3185 msgid "Counting the number of topics in each forum… %s"3186 msgstr ""3187 3188 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:813189 #, php-format3190 msgid "Counting the number of posts in each forum… %s"3191 msgstr ""3192 3193 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:973194 #, php-format3195 msgid "Counting the number of topics to which each user has replied… %s"3196 msgstr ""3197 3198 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:1473199 msgid "Counted topic tags"3200 msgstr ""3201 3202 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:1703203 msgid "Counted tagged topics"3204 msgstr ""3205 3206 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:1933207 msgid "Deleted tags with no topics"3208 msgstr ""3209 3210 #: bp-forums/bbpress/bb-admin/includes/functions.bb-recount.php:2133211 #, php-format3212 msgid "Removing deleted topics from user favorites… %s"3213 msgstr ""3214 3215 3137 #: bp-forums/bbpress/bb-admin/index.php:6 3216 3138 #, php-format 3217 3139 msgid "<span>%d</span> forum" … … 3251 3173 msgstr[0] "" 3252 3174 msgstr[1] "" 3253 3175 3254 #: bp-forums/bbpress/bb-admin/index.php: 503176 #: bp-forums/bbpress/bb-admin/index.php:42 3255 3177 msgid "Right Now" 3256 3178 msgstr "" 3257 3179 3258 #: bp-forums/bbpress/bb-admin/index.php: 553180 #: bp-forums/bbpress/bb-admin/index.php:47 3259 3181 msgid "Totals" 3260 3182 msgstr "" 3261 3183 3262 #: bp-forums/bbpress/bb-admin/index.php: 563184 #: bp-forums/bbpress/bb-admin/index.php:48 3263 3185 msgid "Per Day" 3264 3186 msgstr "" 3265 3187 3266 #: bp-forums/bbpress/bb-admin/index.php: 813188 #: bp-forums/bbpress/bb-admin/index.php:77 3267 3189 msgid "Change Theme" 3268 3190 msgstr "" 3269 3191 3270 #: bp-forums/bbpress/bb-admin/index.php: 813192 #: bp-forums/bbpress/bb-admin/index.php:77 3271 3193 #, php-format 3272 3194 msgid "Theme <a href=\"%1$s\">%2$s</a>" 3273 3195 msgstr "" 3274 3196 3275 #: bp-forums/bbpress/bb-admin/index.php: 823197 #: bp-forums/bbpress/bb-admin/index.php:78 3276 3198 #, php-format 3277 3199 msgid "You are using <span class=\"b\">bbPress %s</span>" 3278 3200 msgstr "" 3279 3201 3280 #: bp-forums/bbpress/bb-admin/index.php:8 73202 #: bp-forums/bbpress/bb-admin/index.php:83 3281 3203 msgid "Recently Moderated Items" 3282 3204 msgstr "" 3283 3205 3284 #: bp-forums/bbpress/bb-admin/index.php:9 53206 #: bp-forums/bbpress/bb-admin/index.php:91 3285 3207 #, php-format 3286 3208 msgid "" 3287 3209 "<a href=\"%1$s\">Post</a> on <a href=\"%2$s\">%3$s</a> by <a href=\"%4$s\">%5" 3288 3210 "$s</a>" 3289 3211 msgstr "" 3290 3212 3291 #: bp-forums/bbpress/bb-admin/index.php:10 83213 #: bp-forums/bbpress/bb-admin/index.php:104 3292 3214 #, php-format 3293 3215 msgid "" 3294 3216 "Topic titled <a href=\"%1$s\">%2$s</a> started by <a href=\"%3$s\">%4$s</a>" 3295 3217 msgstr "" 3296 3218 3297 #: bp-forums/bbpress/bb-admin/index.php:1 203219 #: bp-forums/bbpress/bb-admin/index.php:116 3298 3220 msgid "" 3299 3221 "No moderated posts or topics… you must have very well behaved members." 3300 3222 msgstr "" … … 4075 3997 msgid "Available Themes" 4076 3998 msgstr "" 4077 3999 4078 #: bp-forums/bbpress/bb-admin/tools-recount.php:74 4000 #: bp-forums/bbpress/bb-admin/tools-recount.php:10 4001 msgid "Counted posts" 4002 msgstr "" 4003 4004 #: bp-forums/bbpress/bb-admin/tools-recount.php:21 4005 msgid "Counted voices" 4006 msgstr "" 4007 4008 #: bp-forums/bbpress/bb-admin/tools-recount.php:37 4009 msgid "Counting deleted posts…" 4010 msgstr "" 4011 4012 #: bp-forums/bbpress/bb-admin/tools-recount.php:47 4013 msgid "…counted deleted posts" 4014 msgstr "" 4015 4016 #: bp-forums/bbpress/bb-admin/tools-recount.php:49 4017 msgid "…no deleted posts to count" 4018 msgstr "" 4019 4020 #: bp-forums/bbpress/bb-admin/tools-recount.php:55 4021 msgid "Counted forum topics and posts" 4022 msgstr "" 4023 4024 #: bp-forums/bbpress/bb-admin/tools-recount.php:72 4025 msgid "Counted topics to which each user has replied" 4026 msgstr "" 4027 4028 #: bp-forums/bbpress/bb-admin/tools-recount.php:87 4029 msgid "Counted topic tags" 4030 msgstr "" 4031 4032 #: bp-forums/bbpress/bb-admin/tools-recount.php:106 4033 msgid "Counted tagged topics" 4034 msgstr "" 4035 4036 #: bp-forums/bbpress/bb-admin/tools-recount.php:125 4037 msgid "Deleted tags with no topics" 4038 msgstr "" 4039 4040 #: bp-forums/bbpress/bb-admin/tools-recount.php:142 4041 msgid "Removed deleted topics from users' favorites" 4042 msgstr "" 4043 4044 #: bp-forums/bbpress/bb-admin/tools-recount.php:179 4079 4045 msgid "" 4080 4046 "To minimize database queries, bbPress keeps it's own count of various items " 4081 4047 "like posts in each topic and topics in each forum. Occasionally these " … … 4083 4049 "items using this form." 4084 4050 msgstr "" 4085 4051 4086 #: bp-forums/bbpress/bb-admin/tools-recount.php: 754052 #: bp-forums/bbpress/bb-admin/tools-recount.php:180 4087 4053 msgid "You can also clean out some stale items here, like empty tags." 4088 4054 msgstr "" 4089 4055 4090 #: bp-forums/bbpress/bb-admin/tools-recount.php: 824056 #: bp-forums/bbpress/bb-admin/tools-recount.php:187 4091 4057 msgid "Items to re-count" 4092 4058 msgstr "" 4093 4059 4094 #: bp-forums/bbpress/bb-admin/tools-recount.php: 954060 #: bp-forums/bbpress/bb-admin/tools-recount.php:200 4095 4061 msgid "There are no re-count tools available." 4096 4062 msgstr "" 4097 4063 4098 #: bp-forums/bbpress/bb-admin/tools-recount.php: 1024064 #: bp-forums/bbpress/bb-admin/tools-recount.php:207 4099 4065 msgid "Recount Items" 4100 4066 msgstr "" 4101 4067 … … 4155 4121 msgstr "" 4156 4122 4157 4123 #: bp-forums/bbpress/bb-admin/topics.php:128 4158 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:205 34124 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2057 4159 4125 msgid "Undelete" 4160 4126 msgstr "" 4161 4127 … … 4395 4361 msgstr "" 4396 4362 4397 4363 #: bp-forums/bbpress/bb-includes/backpress/class.wp-users.php:65 4398 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:58 44364 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:583 4399 4365 #: bp-forums/bbpress/profile-edit.php:62 4400 4366 msgid "Invalid email address" 4401 4367 msgstr "" … … 4923 4889 msgstr[0] "" 4924 4890 msgstr[1] "" 4925 4891 4926 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:74 64892 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:742 4927 4893 msgid "User not found." 4928 4894 msgstr "" 4929 4895 4930 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:81 94896 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:815 4931 4897 msgid "REQUEST_URI" 4932 4898 msgstr "" 4933 4899 4934 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:8 204900 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:816 4935 4901 msgid "should be" 4936 4902 msgstr "" 4937 4903 4938 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:8 214904 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:817 4939 4905 msgid "full permalink" 4940 4906 msgstr "" 4941 4907 4942 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:8 224908 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:818 4943 4909 msgid "PATH_INFO" 4944 4910 msgstr "" 4945 4911 4946 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:84 74912 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:843 4947 4913 #: bp-forums/bbpress/bb-templates/kakumei/favorites.php:3 4948 4914 msgid "Favorites" 4949 4915 msgstr "" 4950 4916 4951 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:89 74917 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:893 4952 4918 msgid "First name" 4953 4919 msgstr "" 4954 4920 4955 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:89 84921 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:894 4956 4922 msgid "Last name" 4957 4923 msgstr "" 4958 4924 4959 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:89 94925 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:895 4960 4926 msgid "Display name as" 4961 4927 msgstr "" 4962 4928 4963 #: bp-forums/bbpress/bb-includes/functions.bb-core.php: 9004929 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:896 4964 4930 #: bp-themes/bp-sn-framework/comments.php:97 4965 4931 msgid "Email" 4966 4932 msgstr "" 4967 4933 4968 #: bp-forums/bbpress/bb-includes/functions.bb-core.php: 9024934 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:898 4969 4935 msgid "Location" 4970 4936 msgstr "" 4971 4937 4972 #: bp-forums/bbpress/bb-includes/functions.bb-core.php: 9034938 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:899 4973 4939 msgid "Occupation" 4974 4940 msgstr "" 4975 4941 4976 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:90 44942 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:900 4977 4943 msgid "Interests" 4978 4944 msgstr "" 4979 4945 4980 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:9 114946 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:907 4981 4947 msgid "Custom Title" 4982 4948 msgstr "" 4983 4949 4984 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:91 84950 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:914 4985 4951 #, php-format 4986 4952 msgid "Ignore the %d second post throttling limit" 4987 4953 msgstr "" 4988 4954 4989 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:99 54955 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:991 4990 4956 msgid "Topics with no replies" 4991 4957 msgstr "" 4992 4958 4993 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:99 64959 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:992 4994 4960 msgid "Topics with no tags" 4995 4961 msgstr "" 4996 4962 4997 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:110 44963 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1100 4998 4964 msgid "bbPress Failure Notice" 4999 4965 msgstr "" 5000 4966 5001 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:110 74967 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1103 5002 4968 msgid "Please try again." 5003 4969 msgstr "" 5004 4970 5005 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:121 84971 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1214 5006 4972 #, php-format 5007 4973 msgid "Back to <a href=\"%s\">%s</a>." 5008 4974 msgstr "" 5009 4975 5010 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 314976 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1227 5011 4977 msgid "Your attempt to submit this post has failed." 5012 4978 msgstr "" 5013 4979 5014 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 324980 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1228 5015 4981 msgid "Your attempt to edit this post has failed." 5016 4982 msgstr "" 5017 4983 5018 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 334984 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1229 5019 4985 msgid "Your attempt to delete this post has failed." 5020 4986 msgstr "" 5021 4987 5022 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:123 54988 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1231 5023 4989 msgid "Your attempt to create this topic has failed." 5024 4990 msgstr "" 5025 4991 5026 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:123 64992 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1232 5027 4993 msgid "Your attempt to change the resolution status of this topic has failed." 5028 4994 msgstr "" 5029 4995 5030 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:123 74996 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1233 5031 4997 msgid "Your attempt to delete this topic has failed." 5032 4998 msgstr "" 5033 4999 5034 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:123 85000 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1234 5035 5001 msgid "Your attempt to change the status of this topic has failed." 5036 5002 msgstr "" 5037 5003 5038 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:123 95004 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1235 5039 5005 msgid "Your attempt to change the sticky status of this topic has failed." 5040 5006 msgstr "" 5041 5007 5042 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 405008 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1236 5043 5009 msgid "Your attempt to move this topic has failed." 5044 5010 msgstr "" 5045 5011 5046 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 425012 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1238 5047 5013 msgid "Your attempt to add this tag to this topic has failed." 5048 5014 msgstr "" 5049 5015 5050 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 435016 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1239 5051 5017 msgid "Your attempt to rename this tag has failed." 5052 5018 msgstr "" 5053 5019 5054 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:124 45020 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1240 5055 5021 msgid "Your attempt to submit these tags has failed." 5056 5022 msgstr "" 5057 5023 5058 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:124 55024 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1241 5059 5025 msgid "Your attempt to destroy this tag has failed." 5060 5026 msgstr "" 5061 5027 5062 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:124 65028 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1242 5063 5029 msgid "Your attempt to remove this tag from this topic has failed." 5064 5030 msgstr "" 5065 5031 5066 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:124 85032 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1244 5067 5033 msgid "Your attempt to toggle your favorite status for this topic has failed." 5068 5034 msgstr "" 5069 5035 5070 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 505036 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1246 5071 5037 msgid "Your attempt to edit this user's profile has failed." 5072 5038 msgstr "" 5073 5039 5074 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 525040 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1248 5075 5041 msgid "Your attempt to add this forum has failed." 5076 5042 msgstr "" 5077 5043 5078 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 535044 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1249 5079 5045 msgid "Your attempt to update your forums has failed." 5080 5046 msgstr "" 5081 5047 5082 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:125 45048 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1250 5083 5049 msgid "Your attempt to delete that forum has failed." 5084 5050 msgstr "" 5085 5051 5086 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:125 65052 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1252 5087 5053 msgid "Your attempt to recount these items has failed." 5088 5054 msgstr "" 5089 5055 5090 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:125 85056 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1254 5091 5057 msgid "Your attempt to switch themes has failed." 5092 5058 msgstr "" 5093 5059 5094 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:12 735060 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1269 5095 5061 msgid "Your attempt to do this has failed." 5096 5062 msgstr "" 5097 5063 5098 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:148 45099 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:161 75064 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1480 5065 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1613 5100 5066 msgid "Your search term was too short" 5101 5067 msgstr "" 5102 5068 5103 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:156 45069 #: bp-forums/bbpress/bb-includes/functions.bb-core.php:1560 5104 5070 msgid "Your query parameters are invalid" 5105 5071 msgstr "" 5106 5072 … … 5119 5085 msgid "Please give me a name!" 5120 5086 msgstr "" 5121 5087 5122 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:58 75123 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:59 65088 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:586 5089 #: bp-forums/bbpress/bb-includes/functions.bb-pluggable.php:595 5124 5090 msgid "Invalid username" 5125 5091 msgstr "" 5126 5092 … … 5192 5158 msgstr "" 5193 5159 5194 5160 #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:93 5195 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:33 575161 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3361 5196 5162 msgid "×" 5197 5163 msgstr "" 5198 5164 5199 5165 #: bp-forums/bbpress/bb-includes/functions.bb-script-loader.php:94 5200 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:335 55166 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3359 5201 5167 msgid "Add this topic to your favorites" 5202 5168 msgstr "" 5203 5169 … … 5335 5301 msgid "+%d more" 5336 5302 msgstr "" 5337 5303 5338 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:15 285304 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1530 5339 5305 msgid "Move to" 5340 5306 msgstr "" 5341 5307 5342 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:153 15308 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1533 5343 5309 msgid "Move" 5344 5310 msgstr "" 5345 5311 5346 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:156 35312 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1567 5347 5313 msgid "Add New »" 5348 5314 msgstr "" 5349 5315 5350 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:17 395316 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:1743 5351 5317 msgid "Anonymous" 5352 5318 msgstr "" 5353 5319 5354 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:212 45355 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:21 385320 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2128 5321 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2142 5356 5322 msgid "PingBack" 5357 5323 msgstr "" 5358 5324 5359 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:21 265360 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:214 05325 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2130 5326 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2144 5361 5327 msgid "Unregistered" 5362 5328 msgstr "" 5363 5329 5364 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:22 285330 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2232 5365 5331 msgid "Delete User »" 5366 5332 msgstr "" 5367 5333 5368 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:22 295334 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2233 5369 5335 msgid "Are you sure you want to delete this user?" 5370 5336 msgstr "" 5371 5337 5372 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:23 565338 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2360 5373 5339 msgid "Member Since" 5374 5340 msgstr "" 5375 5341 5376 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:25 095377 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:26 585342 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2513 5343 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2662 5378 5344 #: bp-forums/bbpress/bb-templates/kakumei/register.php:65 5379 5345 msgid "These items are <span class=\"required\">required</span>." 5380 5346 msgstr "" 5381 5347 5382 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:25 465348 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2550 5383 5349 msgid "User Type" 5384 5350 msgstr "" 5385 5351 5386 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:257 15352 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2575 5387 5353 msgid "Allow this user to" 5388 5354 msgstr "" 5389 5355 5390 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:266 15356 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2665 5391 5357 msgid "" 5392 5358 "Inactive users can login and look around but not do anything. Blocked users " 5393 5359 "just see a simple error message when they visit the site." 5394 5360 msgstr "" 5395 5361 5396 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:266 25362 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2666 5397 5363 msgid "" 5398 5364 "<strong>Note</strong>: Blocking a user does <em>not</em> block any IP " 5399 5365 "addresses." 5400 5366 msgstr "" 5401 5367 5402 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:268 55368 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2689 5403 5369 msgid "New password" 5404 5370 msgstr "" 5405 5371 5406 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2 6985372 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2702 5407 5373 msgid "Password Strength" 5408 5374 msgstr "" 5409 5375 5410 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:270 25376 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2706 5411 5377 msgid "Disabled (requires JavaScript)" 5412 5378 msgstr "" 5413 5379 5414 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:27 085380 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2712 5415 5381 msgid "Disabled (requires jQuery)" 5416 5382 msgstr "" 5417 5383 5418 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:271 55384 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2719 5419 5385 msgid "" 5420 5386 "Hint: Use upper and lower case characters, numbers and symbols like !\"?$%" 5421 5387 "^&( in your password." 5422 5388 msgstr "" 5423 5389 5424 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:277 45390 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:2778 5425 5391 msgid "View your profile" 5426 5392 msgstr "" 5427 5393 5428 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:30 695394 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3073 5429 5395 msgid "Add »" 5430 5396 msgstr "" 5431 5397 5432 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:310 55398 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3109 5433 5399 msgid "Rename tag:" 5434 5400 msgstr "" 5435 5401 5436 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:31 095402 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3113 5437 5403 msgid "Rename" 5438 5404 msgstr "" 5439 5405 5440 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:311 35406 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3117 5441 5407 msgid "Merge this tag into:" 5442 5408 msgstr "" 5443 5409 5444 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:31 175410 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3121 5445 5411 msgid "Merge" 5446 5412 msgstr "" 5447 5413 5448 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:31 185414 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3122 5449 5415 #, php-format 5450 5416 msgid "" 5451 5417 "Are you sure you want to merge the \"%s\" tag into the tag you specified? " 5452 5418 "This is permanent and cannot be undone." 5453 5419 msgstr "" 5454 5420 5455 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:312 25421 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3126 5456 5422 msgid "Destroy tag:" 5457 5423 msgstr "" 5458 5424 5459 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:312 55425 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3129 5460 5426 msgid "Destroy" 5461 5427 msgstr "" 5462 5428 5463 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:31 265429 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3130 5464 5430 #, php-format 5465 5431 msgid "" 5466 5432 "Are you sure you want to destroy the \"%s\" tag? This is permanent and " 5467 5433 "cannot be undone." 5468 5434 msgstr "" 5469 5435 5470 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:315 25436 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3156 5471 5437 msgid "Remove this tag" 5472 5438 msgstr "" 5473 5439 5474 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:32 095440 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3213 5475 5441 #, php-format 5476 5442 msgid "%d topics" 5477 5443 msgstr "" 5478 5444 5479 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:327 45445 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3278 5480 5446 msgid "- None -" 5481 5447 msgstr "" 5482 5448 5483 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:335 55449 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3359 5484 5450 msgid " (%?%)" 5485 5451 msgstr "" 5486 5452 5487 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:33 575453 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3361 5488 5454 msgid "This topic is one of your %favorites% [" 5489 5455 msgstr "" 5490 5456 5491 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:33 575457 #: bp-forums/bbpress/bb-includes/functions.bb-template.php:3361 5492 5458 msgid "]" 5493 5459 msgstr "" 5494 5460 … … 5498 5464 "site's administrator." 5499 5465 msgstr "" 5500 5466 5501 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:26 25467 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:261 5502 5468 msgid "The specified user does not exist." 5503 5469 msgstr "" 5504 5470 5505 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:2 755471 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:267 5506 5472 #, php-format 5507 5473 msgid "" 5508 5474 "If you wanted to reset your password, you may do so by visiting the " … … 5513 5479 "If you don't want to reset your password, just ignore this email. Thanks!" 5514 5480 msgstr "" 5515 5481 5516 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:2 815517 # , php-format5518 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 5484 msgid "Password Reset" 5519 5485 msgstr "" 5520 5486 5521 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:2 935487 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:282 5522 5488 msgid "The email containing the password reset link could not be sent." 5523 5489 msgstr "" 5524 5490 5525 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:3 185526 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:3 225527 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:32 85528 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 5494 msgid "Key not found." 5529 5495 msgstr "" 5530 5496 5531 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:3 365497 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:311 5532 5498 msgid "You are not allowed to change your password." 5533 5499 msgstr "" 5534 5500 5535 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:3 425501 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:315 5536 5502 msgid "The email containing the new password could not be sent." 5537 5503 msgstr "" 5538 5504 5539 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:3 915505 #: bp-forums/bbpress/bb-includes/functions.bb-users.php:364 5540 5506 #, php-format 5541 5507 msgid "" 5542 5508 "Your username is: %1$s \n" … … 5546 5512 "Enjoy!" 5547 5513 msgstr "" 5548 5514 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 5521 msgid "Password" 5552 5522 msgstr "" 5553 5523 5554 5524 #: bp-forums/bbpress/bb-login.php:78 … … 5813 5783 "<a href=\"%1$s\">Register</a> or log in - <a href=\"%2$s\">lost password?</a>" 5814 5784 msgstr "" 5815 5785 5816 #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:185817 #: bp-forums/bbpress/bb-templates/kakumei/login.php:275818 #: bp-forums/bbpress/bb-templates/kakumei/profile-edit.php:205819 #: bp-themes/bp-sn-framework/userbar.php:325820 #: bp-themes/deprecated/bpmember/userbar.php:325821 msgid "Password"5822 msgstr ""5823 5824 5786 #: bp-forums/bbpress/bb-templates/kakumei/login-form.php:24 5825 5787 #: bp-forums/bbpress/bb-templates/kakumei/login.php:43 5826 5788 msgid "Log in »" … … 5857 5819 msgid "Recover Password »" 5858 5820 msgstr "" 5859 5821 5860 #: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:55861 msgid "Password Reset"5862 msgstr ""5863 5864 5822 #: bp-forums/bbpress/bb-templates/kakumei/password-reset.php:12 5865 5823 msgid "" 5866 5824 "An email has been sent to the address we have on file for you. If you " … … 5873 5831 msgstr "" 5874 5832 5875 5833 #: bp-forums/bbpress/bb-templates/kakumei/post-form.php:14 5876 msgid "Tags (comma sep arated)"5834 msgid "Tags (comma seperated)" 5877 5835 msgstr "" 5878 5836 5879 5837 #: 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=&show=&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=&show=&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=&show=&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
17 17 18 18 <form action="" method="post" id="avatar-upload-form" enctype="multipart/form-data"> 19 19 20 <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) :?>20 <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) { ?> 21 21 22 22 <h3><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h3> 23 23 … … 32 32 33 33 <?php wp_nonce_field( 'bp_avatar_upload' ) ?> 34 34 35 <?php endif;?>35 <?php } else if ( 'crop-image' == bp_get_avatar_admin_step() ) { ?> 36 36 37 <?php if ( 'crop-image' == bp_get_avatar_admin_step() ) : ?>38 39 37 <h3><?php _e( 'Crop Your New Avatar', 'buddypress' ) ?></h3> 40 38 41 39 <img src="<?php bp_avatar_to_crop() ?>" id="avatar-to-crop" class="avatar" alt="<?php _e( 'Avatar to crop', 'buddypress' ) ?>" /> … … 54 52 55 53 <?php wp_nonce_field( 'bp_avatar_cropstore' ) ?> 56 54 57 <?php endif; ?> 55 <?php } else { ?> 56 bp_core_delete_existing_avatar(); 57 <?php } ?> 58 58 59 59 </form> 60 60 -
bp-themes/bp-sn-framework/profile/profile-header.php
5 5 6 6 <?php if ( function_exists( 'bp_the_status' ) ) : ?> 7 7 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 }?>"> 9 9 <?php bp_the_status() ?> 10 10 </div> 11 11 -
bp-xprofile/bp-xprofile-filters.php
55 55 if ( count( explode( ' ', $value ) ) > 5 ) 56 56 $new_values[] = $value; 57 57 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>'; 59 59 } 60 60 } 61 61 -
bp-xprofile/bp-xprofile-templatetags.php
244 244 } 245 245 function bp_get_the_profile_group_description() { 246 246 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' ) ); 248 248 } 249 249 250 250 function bp_the_profile_group_edit_form_action() { … … 283 283 } 284 284 function bp_get_the_profile_field_name() { 285 285 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' ) ); 287 287 } 288 288 289 289 function bp_the_profile_field_value() { … … 332 332 function bp_get_the_profile_field_description() { 333 333 global $field; 334 334 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' ) ); 336 336 } 337 337 338 338 function bp_the_profile_field_input_name() { … … 380 380 $selected = ''; 381 381 } 382 382 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>'; 384 384 } 385 385 break; 386 386 … … 401 401 $selected = ''; 402 402 } 403 403 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>'; 405 405 } 406 406 break; 407 407 … … 424 424 } 425 425 } 426 426 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>'; 428 428 $selected = ''; 429 429 } 430 430 break; … … 547 547 } 548 548 549 549 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>'; 551 551 } 552 552 553 553 do_action( 'xprofile_profile_group_tabs' );