Version Description
- WordPress 3.8 support (dashicons, new color schemes)
- Fix dropdown selects in settings pages
- Fix accidental topic subscription removal on reply form
- Fix poor grammar in profile title element
- Fix admin area SSL support
Download this release
Release Info
| Developer | johnjamesjacoby |
| Plugin | |
| Version | 2.5.3 |
| Comparing to | |
| See all releases | |
Code changes from version 2.5.2 to 2.5.3
- bbpress.php +3 -3
- includes/admin/admin.php +79 -743
- includes/admin/settings.php +11 -9
- includes/common/functions.php +1 -1
- includes/common/template.php +6 -6
- includes/forums/template.php +5 -5
- includes/replies/template.php +1 -1
- includes/topics/template.php +5 -5
- languages/bbpress.pot +204 -185
- readme.txt +9 -2
- templates/default/bbpress/form-user-login.php +2 -2
- templates/default/bbpress/form-user-lost-pass.php +2 -2
bbpress.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
*
|
| 6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
| 7 |
*
|
| 8 |
-
* $Id: bbpress.php
|
| 9 |
*
|
| 10 |
* @package bbPress
|
| 11 |
* @subpackage Main
|
|
@@ -17,7 +17,7 @@
|
|
| 17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
| 18 |
* Author: The bbPress Community
|
| 19 |
* Author URI: http://bbpress.org
|
| 20 |
-
* Version: 2.5.
|
| 21 |
* Text Domain: bbpress
|
| 22 |
* Domain Path: /languages/
|
| 23 |
*/
|
|
@@ -190,7 +190,7 @@ final class bbPress {
|
|
| 190 |
|
| 191 |
/** Versions **********************************************************/
|
| 192 |
|
| 193 |
-
$this->version = '2.5.
|
| 194 |
$this->db_version = '250';
|
| 195 |
|
| 196 |
/** Paths *************************************************************/
|
| 5 |
*
|
| 6 |
* bbPress is forum software with a twist from the creators of WordPress.
|
| 7 |
*
|
| 8 |
+
* $Id: bbpress.php 5249 2014-01-11 18:20:32Z johnjamesjacoby $
|
| 9 |
*
|
| 10 |
* @package bbPress
|
| 11 |
* @subpackage Main
|
| 17 |
* Description: bbPress is forum software with a twist from the creators of WordPress.
|
| 18 |
* Author: The bbPress Community
|
| 19 |
* Author URI: http://bbpress.org
|
| 20 |
+
* Version: 2.5.3
|
| 21 |
* Text Domain: bbpress
|
| 22 |
* Domain Path: /languages/
|
| 23 |
*/
|
| 190 |
|
| 191 |
/** Versions **********************************************************/
|
| 192 |
|
| 193 |
+
$this->version = '2.5.3-5249';
|
| 194 |
$this->db_version = '250';
|
| 195 |
|
| 196 |
/** Paths *************************************************************/
|
includes/admin/admin.php
CHANGED
|
@@ -44,6 +44,16 @@ class BBP_Admin {
|
|
| 44 |
*/
|
| 45 |
public $styles_url = '';
|
| 46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
/** Capability ************************************************************/
|
| 48 |
|
| 49 |
/**
|
|
@@ -87,6 +97,8 @@ class BBP_Admin {
|
|
| 87 |
$this->admin_url = trailingslashit( $bbp->includes_url . 'admin' ); // Admin url
|
| 88 |
$this->images_url = trailingslashit( $this->admin_url . 'images' ); // Admin images URL
|
| 89 |
$this->styles_url = trailingslashit( $this->admin_url . 'styles' ); // Admin styles URL
|
|
|
|
|
|
|
| 90 |
}
|
| 91 |
|
| 92 |
/**
|
|
@@ -130,7 +142,8 @@ class BBP_Admin {
|
|
| 130 |
add_action( 'bbp_register_admin_style', array( $this, 'register_admin_style' ) ); // Add green admin style
|
| 131 |
add_action( 'bbp_register_admin_settings', array( $this, 'register_admin_settings' ) ); // Add settings
|
| 132 |
add_action( 'bbp_activation', array( $this, 'new_install' ) ); // Add menu item to settings menu
|
| 133 |
-
add_action( 'admin_enqueue_scripts', array( $this, '
|
|
|
|
| 134 |
add_action( 'wp_dashboard_setup', array( $this, 'dashboard_widget_right_now' ) ); // Forums 'Right now' Dashboard widget
|
| 135 |
add_action( 'admin_bar_menu', array( $this, 'admin_bar_about_link' ), 15 ); // Add a link to bbPress about page to the admin bar
|
| 136 |
|
|
@@ -375,7 +388,6 @@ class BBP_Admin {
|
|
| 375 |
* @param int $user_id User id
|
| 376 |
* @param mixed $args Arguments
|
| 377 |
* @uses get_post() To get the post
|
| 378 |
-
* @uses get_post_type_object() To get the post type object
|
| 379 |
* @uses apply_filters() Calls 'bbp_map_meta_caps' with caps, cap, user id and
|
| 380 |
* args
|
| 381 |
* @return array Actual capabilities for meta capability
|
|
@@ -542,757 +554,61 @@ class BBP_Admin {
|
|
| 542 |
|
| 543 |
/**
|
| 544 |
* Enqueue any admin scripts we might need
|
|
|
|
| 545 |
* @since bbPress (r4260)
|
| 546 |
*/
|
| 547 |
public function enqueue_scripts() {
|
| 548 |
wp_enqueue_script( 'suggest' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 549 |
}
|
| 550 |
|
| 551 |
/**
|
| 552 |
-
*
|
|
|
|
| 553 |
*
|
| 554 |
* @since bbPress (r2464)
|
| 555 |
*
|
| 556 |
-
* @uses
|
| 557 |
-
* @uses bbp_get_topic_post_type() To get the topic post type
|
| 558 |
-
* @uses bbp_get_reply_post_type() To get the reply post type
|
| 559 |
-
* @uses sanitize_html_class() To sanitize the classes
|
| 560 |
*/
|
| 561 |
public function admin_head() {
|
| 562 |
-
|
| 563 |
-
// Remove the individual recount and converter menus.
|
| 564 |
-
// They are grouped together by h2 tabs
|
| 565 |
remove_submenu_page( 'tools.php', 'bbp-repair' );
|
| 566 |
remove_submenu_page( 'tools.php', 'bbp-converter' );
|
| 567 |
remove_submenu_page( 'tools.php', 'bbp-reset' );
|
| 568 |
remove_submenu_page( 'index.php', 'bbp-about' );
|
| 569 |
remove_submenu_page( 'index.php', 'bbp-credits' );
|
| 570 |
-
|
| 571 |
-
// The /wp-admin/images/ folder
|
| 572 |
-
$wp_admin_url = admin_url( 'images/' );
|
| 573 |
-
|
| 574 |
-
// Icons for top level admin menus
|
| 575 |
-
$version = bbp_get_version();
|
| 576 |
-
$menu_icon_url = $this->images_url . 'menu.png?ver=' . $version;
|
| 577 |
-
$icon32_url = $this->images_url . 'icons32.png?ver=' . $version;
|
| 578 |
-
$menu_icon_url_2x = $this->images_url . 'menu-2x.png?ver=' . $version;
|
| 579 |
-
$icon32_url_2x = $this->images_url . 'icons32-2x.png?ver=' . $version;
|
| 580 |
-
$badge_url = $this->images_url . 'badge.png?ver=' . $version;
|
| 581 |
-
$badge_url_2x = $this->images_url . 'badge-2x.png?ver=' . $version;
|
| 582 |
-
|
| 583 |
-
// The image size changed in WordPress 3.5
|
| 584 |
-
if ( function_exists( 'wp_enqueue_media' ) ) {
|
| 585 |
-
$icon32_size = '756px 45px';
|
| 586 |
-
} else {
|
| 587 |
-
$icon32_size = '708px 45px';
|
| 588 |
-
}
|
| 589 |
-
|
| 590 |
-
// Top level menu classes
|
| 591 |
-
$forum_class = sanitize_html_class( bbp_get_forum_post_type() );
|
| 592 |
-
$topic_class = sanitize_html_class( bbp_get_topic_post_type() );
|
| 593 |
-
$reply_class = sanitize_html_class( bbp_get_reply_post_type() );
|
| 594 |
-
|
| 595 |
-
// Post type checker (only topics and replies)
|
| 596 |
-
if ( 'post' === get_current_screen()->base ) :
|
| 597 |
-
switch( get_current_screen()->post_type ) :
|
| 598 |
-
case bbp_get_reply_post_type() :
|
| 599 |
-
case bbp_get_topic_post_type() : ?>
|
| 600 |
-
<script type="text/javascript">
|
| 601 |
-
jQuery(document).ready(function() {
|
| 602 |
-
var bbp_author_id = jQuery( '#bbp_author_id' );
|
| 603 |
-
bbp_author_id.suggest( ajaxurl + '?action=bbp_suggest_user', {
|
| 604 |
-
onSelect: function() {
|
| 605 |
-
var value = this.value;
|
| 606 |
-
bbp_author_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
|
| 607 |
-
}
|
| 608 |
-
} );
|
| 609 |
-
<?php if ( bbp_get_topic_post_type() === get_current_screen()->post_type ) : ?>
|
| 610 |
-
jQuery( '#misc-publishing-actions' ).find( '.misc-pub-section' ).first().remove();
|
| 611 |
-
jQuery( '#save-action' ).remove();
|
| 612 |
-
<?php elseif ( bbp_get_reply_post_type() === get_current_screen()->post_type ) : ?>
|
| 613 |
-
var bbp_topic_id = jQuery( '#bbp_topic_id' );
|
| 614 |
-
bbp_topic_id.suggest( ajaxurl + '?action=bbp_suggest_topic', {
|
| 615 |
-
onSelect: function() {
|
| 616 |
-
var value = this.value;
|
| 617 |
-
bbp_topic_id.val( value.substr( 0, value.indexOf( ' ' ) ) );
|
| 618 |
-
}
|
| 619 |
-
} );
|
| 620 |
-
<?php endif; ?>
|
| 621 |
-
});
|
| 622 |
-
|
| 623 |
-
</script><?php
|
| 624 |
-
|
| 625 |
-
break;
|
| 626 |
-
endswitch;
|
| 627 |
-
endif; ?>
|
| 628 |
-
|
| 629 |
-
<style type="text/css" media="screen">
|
| 630 |
-
/*<![CDATA[*/
|
| 631 |
-
|
| 632 |
-
/* Kludge for too-wide forums dropdown */
|
| 633 |
-
#poststuff #bbp_forum_attributes select#parent_id,
|
| 634 |
-
#poststuff #bbp_topic_attributes select#parent_id,
|
| 635 |
-
#poststuff #bbp_reply_attributes select#bbp_forum_id {
|
| 636 |
-
max-width: 170px;
|
| 637 |
-
}
|
| 638 |
-
|
| 639 |
-
/* Version Badge */
|
| 640 |
-
|
| 641 |
-
.bbp-badge {
|
| 642 |
-
padding-top: 142px;
|
| 643 |
-
height: 50px;
|
| 644 |
-
width: 173px;
|
| 645 |
-
color: #fafafa;
|
| 646 |
-
font-weight: bold;
|
| 647 |
-
font-size: 14px;
|
| 648 |
-
text-align: center;
|
| 649 |
-
margin: 0 -5px;
|
| 650 |
-
background: url('<?php echo $badge_url; ?>') no-repeat;
|
| 651 |
-
}
|
| 652 |
-
|
| 653 |
-
.about-wrap .bbp-badge {
|
| 654 |
-
position: absolute;
|
| 655 |
-
top: 0;
|
| 656 |
-
right: 0;
|
| 657 |
-
}
|
| 658 |
-
body.rtl .about-wrap .bbp-badge {
|
| 659 |
-
right: auto;
|
| 660 |
-
left: 0;
|
| 661 |
-
}
|
| 662 |
-
|
| 663 |
-
#bbp-dashboard-right-now p.sub,
|
| 664 |
-
#bbp-dashboard-right-now .table,
|
| 665 |
-
#bbp-dashboard-right-now .versions {
|
| 666 |
-
margin: -12px;
|
| 667 |
-
}
|
| 668 |
-
|
| 669 |
-
#bbp-dashboard-right-now .inside {
|
| 670 |
-
font-size: 12px;
|
| 671 |
-
padding-top: 20px;
|
| 672 |
-
margin-bottom: 0;
|
| 673 |
-
}
|
| 674 |
-
|
| 675 |
-
#bbp-dashboard-right-now p.sub {
|
| 676 |
-
padding: 5px 0 15px;
|
| 677 |
-
color: #8f8f8f;
|
| 678 |
-
font-size: 14px;
|
| 679 |
-
position: absolute;
|
| 680 |
-
top: -17px;
|
| 681 |
-
left: 15px;
|
| 682 |
-
}
|
| 683 |
-
body.rtl #bbp-dashboard-right-now p.sub {
|
| 684 |
-
right: 15px;
|
| 685 |
-
left: 0;
|
| 686 |
-
}
|
| 687 |
-
|
| 688 |
-
#bbp-dashboard-right-now .table {
|
| 689 |
-
margin: 0;
|
| 690 |
-
padding: 0;
|
| 691 |
-
position: relative;
|
| 692 |
-
}
|
| 693 |
-
|
| 694 |
-
#bbp-dashboard-right-now .table_content {
|
| 695 |
-
float: left;
|
| 696 |
-
border-top: #ececec 1px solid;
|
| 697 |
-
width: 45%;
|
| 698 |
-
}
|
| 699 |
-
body.rtl #bbp-dashboard-right-now .table_content {
|
| 700 |
-
float: right;
|
| 701 |
-
}
|
| 702 |
-
|
| 703 |
-
#bbp-dashboard-right-now .table_discussion {
|
| 704 |
-
float: right;
|
| 705 |
-
border-top: #ececec 1px solid;
|
| 706 |
-
width: 45%;
|
| 707 |
-
}
|
| 708 |
-
body.rtl #bbp-dashboard-right-now .table_discussion {
|
| 709 |
-
float: left;
|
| 710 |
-
}
|
| 711 |
-
|
| 712 |
-
#bbp-dashboard-right-now table td {
|
| 713 |
-
padding: 3px 0;
|
| 714 |
-
white-space: nowrap;
|
| 715 |
-
}
|
| 716 |
-
|
| 717 |
-
#bbp-dashboard-right-now table tr.first td {
|
| 718 |
-
border-top: none;
|
| 719 |
-
}
|
| 720 |
-
|
| 721 |
-
#bbp-dashboard-right-now td.b {
|
| 722 |
-
padding-right: 6px;
|
| 723 |
-
text-align: right;
|
| 724 |
-
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
|
| 725 |
-
font-size: 14px;
|
| 726 |
-
width: 1%;
|
| 727 |
-
}
|
| 728 |
-
body.rtl #bbp-dashboard-right-now td.b {
|
| 729 |
-
padding-left: 6px;
|
| 730 |
-
padding-right: 0;
|
| 731 |
-
}
|
| 732 |
-
|
| 733 |
-
#bbp-dashboard-right-now td.b a {
|
| 734 |
-
font-size: 18px;
|
| 735 |
-
}
|
| 736 |
-
|
| 737 |
-
#bbp-dashboard-right-now td.b a:hover {
|
| 738 |
-
color: #d54e21;
|
| 739 |
-
}
|
| 740 |
-
|
| 741 |
-
#bbp-dashboard-right-now .t {
|
| 742 |
-
font-size: 12px;
|
| 743 |
-
padding-right: 12px;
|
| 744 |
-
padding-top: 6px;
|
| 745 |
-
color: #777;
|
| 746 |
-
}
|
| 747 |
-
body.rtl #bbp-dashboard-right-now .t {
|
| 748 |
-
padding-left: 12px;
|
| 749 |
-
padding-right: 0;
|
| 750 |
-
}
|
| 751 |
-
|
| 752 |
-
#bbp-dashboard-right-now .t a {
|
| 753 |
-
white-space: nowrap;
|
| 754 |
-
}
|
| 755 |
-
|
| 756 |
-
#bbp-dashboard-right-now .spam {
|
| 757 |
-
color: red;
|
| 758 |
-
}
|
| 759 |
-
|
| 760 |
-
#bbp-dashboard-right-now .waiting {
|
| 761 |
-
color: #e66f00;
|
| 762 |
-
}
|
| 763 |
-
|
| 764 |
-
#bbp-dashboard-right-now .approved {
|
| 765 |
-
color: green;
|
| 766 |
-
}
|
| 767 |
-
|
| 768 |
-
#bbp-dashboard-right-now .versions {
|
| 769 |
-
padding: 6px 10px 12px;
|
| 770 |
-
clear: both;
|
| 771 |
-
}
|
| 772 |
-
|
| 773 |
-
#bbp-dashboard-right-now .versions .b {
|
| 774 |
-
font-weight: bold;
|
| 775 |
-
}
|
| 776 |
-
|
| 777 |
-
#bbp-dashboard-right-now a.button {
|
| 778 |
-
float: right;
|
| 779 |
-
clear: right;
|
| 780 |
-
position: relative;
|
| 781 |
-
top: -5px;
|
| 782 |
-
}
|
| 783 |
-
body.rtl #bbp-dashboard-right-now a.button {
|
| 784 |
-
float: left;
|
| 785 |
-
clear: left;
|
| 786 |
-
}
|
| 787 |
-
|
| 788 |
-
/* Icon 32 */
|
| 789 |
-
#icon-edit.icon32-posts-<?php echo $forum_class; ?>,
|
| 790 |
-
#icon-edit.icon32-posts-<?php echo $topic_class; ?>,
|
| 791 |
-
#icon-edit.icon32-posts-<?php echo $reply_class; ?> {
|
| 792 |
-
background: url('<?php echo $icon32_url; ?>');
|
| 793 |
-
background-repeat: no-repeat;
|
| 794 |
-
}
|
| 795 |
-
|
| 796 |
-
/* Icon Positions */
|
| 797 |
-
#icon-edit.icon32-posts-<?php echo $forum_class; ?> {
|
| 798 |
-
background-position: -4px 0px;
|
| 799 |
-
}
|
| 800 |
-
|
| 801 |
-
#icon-edit.icon32-posts-<?php echo $topic_class; ?> {
|
| 802 |
-
background-position: -4px -90px;
|
| 803 |
-
}
|
| 804 |
-
|
| 805 |
-
#icon-edit.icon32-posts-<?php echo $reply_class; ?> {
|
| 806 |
-
background-position: -4px -180px;
|
| 807 |
-
}
|
| 808 |
-
|
| 809 |
-
/* Icon 32 2x */
|
| 810 |
-
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
| 811 |
-
#icon-edit.icon32-posts-<?php echo $forum_class; ?>,
|
| 812 |
-
#icon-edit.icon32-posts-<?php echo $topic_class; ?>,
|
| 813 |
-
#icon-edit.icon32-posts-<?php echo $reply_class; ?> {
|
| 814 |
-
background-image: url('<?php echo $icon32_url_2x; ?>');
|
| 815 |
-
background-size: 45px 255px;
|
| 816 |
-
}
|
| 817 |
-
}
|
| 818 |
-
|
| 819 |
-
/* Menu */
|
| 820 |
-
#menu-posts-<?php echo $forum_class; ?> .wp-menu-image,
|
| 821 |
-
#menu-posts-<?php echo $topic_class; ?> .wp-menu-image,
|
| 822 |
-
#menu-posts-<?php echo $reply_class; ?> .wp-menu-image,
|
| 823 |
-
|
| 824 |
-
#menu-posts-<?php echo $forum_class; ?>:hover .wp-menu-image,
|
| 825 |
-
#menu-posts-<?php echo $topic_class; ?>:hover .wp-menu-image,
|
| 826 |
-
#menu-posts-<?php echo $reply_class; ?>:hover .wp-menu-image,
|
| 827 |
-
|
| 828 |
-
#menu-posts-<?php echo $forum_class; ?>.wp-has-current-submenu .wp-menu-image,
|
| 829 |
-
#menu-posts-<?php echo $topic_class; ?>.wp-has-current-submenu .wp-menu-image,
|
| 830 |
-
#menu-posts-<?php echo $reply_class; ?>.wp-has-current-submenu .wp-menu-image {
|
| 831 |
-
background: url('<?php echo $menu_icon_url; ?>');
|
| 832 |
-
background-repeat: no-repeat;
|
| 833 |
-
}
|
| 834 |
-
|
| 835 |
-
/* Menu Positions */
|
| 836 |
-
#menu-posts-<?php echo $forum_class; ?> .wp-menu-image {
|
| 837 |
-
background-position: 0px -32px;
|
| 838 |
-
}
|
| 839 |
-
#menu-posts-<?php echo $forum_class; ?>:hover .wp-menu-image,
|
| 840 |
-
#menu-posts-<?php echo $forum_class; ?>.wp-has-current-submenu .wp-menu-image {
|
| 841 |
-
background-position: 0px 0px;
|
| 842 |
-
}
|
| 843 |
-
#menu-posts-<?php echo $topic_class; ?> .wp-menu-image {
|
| 844 |
-
background-position: -70px -32px;
|
| 845 |
-
}
|
| 846 |
-
#menu-posts-<?php echo $topic_class; ?>:hover .wp-menu-image,
|
| 847 |
-
#menu-posts-<?php echo $topic_class; ?>.wp-has-current-submenu .wp-menu-image {
|
| 848 |
-
background-position: -70px 0px;
|
| 849 |
-
}
|
| 850 |
-
#menu-posts-<?php echo $reply_class; ?> .wp-menu-image {
|
| 851 |
-
background-position: -35px -32px;
|
| 852 |
-
}
|
| 853 |
-
#menu-posts-<?php echo $reply_class; ?>:hover .wp-menu-image,
|
| 854 |
-
#menu-posts-<?php echo $reply_class; ?>.wp-has-current-submenu .wp-menu-image {
|
| 855 |
-
background-position: -35px 0px;
|
| 856 |
-
}
|
| 857 |
-
|
| 858 |
-
/* Menu 2x */
|
| 859 |
-
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
| 860 |
-
#menu-posts-<?php echo $forum_class; ?> .wp-menu-image,
|
| 861 |
-
#menu-posts-<?php echo $topic_class; ?> .wp-menu-image,
|
| 862 |
-
#menu-posts-<?php echo $reply_class; ?> .wp-menu-image,
|
| 863 |
-
|
| 864 |
-
#menu-posts-<?php echo $forum_class; ?>:hover .wp-menu-image,
|
| 865 |
-
#menu-posts-<?php echo $topic_class; ?>:hover .wp-menu-image,
|
| 866 |
-
#menu-posts-<?php echo $reply_class; ?>:hover .wp-menu-image,
|
| 867 |
-
|
| 868 |
-
#menu-posts-<?php echo $forum_class; ?>.wp-has-current-submenu .wp-menu-image,
|
| 869 |
-
#menu-posts-<?php echo $topic_class; ?>.wp-has-current-submenu .wp-menu-image,
|
| 870 |
-
#menu-posts-<?php echo $reply_class; ?>.wp-has-current-submenu .wp-menu-image {
|
| 871 |
-
background-image: url('<?php echo $menu_icon_url_2x; ?>');
|
| 872 |
-
background-size: 100px 64px;
|
| 873 |
-
}
|
| 874 |
-
|
| 875 |
-
.bbp-badge {
|
| 876 |
-
background-image: url('<?php echo $badge_url_2x; ?>');
|
| 877 |
-
background-size: 173px 194px;
|
| 878 |
-
}
|
| 879 |
-
}
|
| 880 |
-
|
| 881 |
-
<?php if ( 'bbpress' === get_user_option( 'admin_color' ) ) : ?>
|
| 882 |
-
|
| 883 |
-
/* Green Scheme Images */
|
| 884 |
-
|
| 885 |
-
.post-com-count {
|
| 886 |
-
background-image: url('<?php echo $wp_admin_url; ?>bubble_bg.gif');
|
| 887 |
-
}
|
| 888 |
-
|
| 889 |
-
.button,
|
| 890 |
-
.submit input,
|
| 891 |
-
.button-secondary {
|
| 892 |
-
background-image: url('<?php echo $wp_admin_url; ?>white-grad.png');
|
| 893 |
-
}
|
| 894 |
-
|
| 895 |
-
.button:active,
|
| 896 |
-
.submit input:active,
|
| 897 |
-
.button-secondary:active {
|
| 898 |
-
background-image: url('<?php echo $wp_admin_url; ?>white-grad-active.png');
|
| 899 |
-
}
|
| 900 |
-
|
| 901 |
-
.curtime #timestamp {
|
| 902 |
-
background-image: url('<?php echo $wp_admin_url; ?>date-button.gif');
|
| 903 |
-
}
|
| 904 |
-
|
| 905 |
-
.tagchecklist span a,
|
| 906 |
-
#bulk-titles div a {
|
| 907 |
-
background-image: url('<?php echo $wp_admin_url; ?>xit.gif');
|
| 908 |
-
}
|
| 909 |
-
|
| 910 |
-
.tagchecklist span a:hover,
|
| 911 |
-
#bulk-titles div a:hover {
|
| 912 |
-
background-image: url('<?php echo $wp_admin_url; ?>xit.gif');
|
| 913 |
-
}
|
| 914 |
-
#screen-meta-links a.show-settings {
|
| 915 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 916 |
-
}
|
| 917 |
-
|
| 918 |
-
#screen-meta-links a.show-settings.screen-meta-active {
|
| 919 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 920 |
-
}
|
| 921 |
-
|
| 922 |
-
#adminmenushadow,
|
| 923 |
-
#adminmenuback {
|
| 924 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu-shadow.png');
|
| 925 |
-
}
|
| 926 |
-
|
| 927 |
-
#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 928 |
-
#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 929 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
| 930 |
-
}
|
| 931 |
-
|
| 932 |
-
#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 933 |
-
#adminmenu .wp-menu-open .wp-menu-toggle {
|
| 934 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 935 |
-
}
|
| 936 |
-
|
| 937 |
-
#collapse-button div {
|
| 938 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 939 |
-
}
|
| 940 |
-
|
| 941 |
-
/* menu and screen icons */
|
| 942 |
-
.icon16.icon-dashboard,
|
| 943 |
-
#adminmenu .menu-icon-dashboard div.wp-menu-image {
|
| 944 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 945 |
-
}
|
| 946 |
-
|
| 947 |
-
#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
|
| 948 |
-
#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
|
| 949 |
-
#adminmenu .menu-icon-dashboard.current div.wp-menu-image {
|
| 950 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 951 |
-
}
|
| 952 |
-
|
| 953 |
-
.icon16.icon-post,
|
| 954 |
-
#adminmenu .menu-icon-post div.wp-menu-image {
|
| 955 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 956 |
-
}
|
| 957 |
-
|
| 958 |
-
#adminmenu .menu-icon-post:hover div.wp-menu-image,
|
| 959 |
-
#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
|
| 960 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 961 |
-
}
|
| 962 |
-
|
| 963 |
-
.icon16.icon-media,
|
| 964 |
-
#adminmenu .menu-icon-media div.wp-menu-image {
|
| 965 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 966 |
-
}
|
| 967 |
-
|
| 968 |
-
#adminmenu .menu-icon-media:hover div.wp-menu-image,
|
| 969 |
-
#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
|
| 970 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 971 |
-
}
|
| 972 |
-
|
| 973 |
-
.icon16.icon-links,
|
| 974 |
-
#adminmenu .menu-icon-links div.wp-menu-image {
|
| 975 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 976 |
-
}
|
| 977 |
-
|
| 978 |
-
#adminmenu .menu-icon-links:hover div.wp-menu-image,
|
| 979 |
-
#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
|
| 980 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 981 |
-
}
|
| 982 |
-
|
| 983 |
-
.icon16.icon-page,
|
| 984 |
-
#adminmenu .menu-icon-page div.wp-menu-image {
|
| 985 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 986 |
-
}
|
| 987 |
-
|
| 988 |
-
#adminmenu .menu-icon-page:hover div.wp-menu-image,
|
| 989 |
-
#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
|
| 990 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 991 |
-
}
|
| 992 |
-
|
| 993 |
-
.icon16.icon-comments,
|
| 994 |
-
#adminmenu .menu-icon-comments div.wp-menu-image {
|
| 995 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 996 |
-
}
|
| 997 |
-
|
| 998 |
-
#adminmenu .menu-icon-comments:hover div.wp-menu-image,
|
| 999 |
-
#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
|
| 1000 |
-
#adminmenu .menu-icon-comments.current div.wp-menu-image {
|
| 1001 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1002 |
-
}
|
| 1003 |
-
|
| 1004 |
-
.icon16.icon-appearance,
|
| 1005 |
-
#adminmenu .menu-icon-appearance div.wp-menu-image {
|
| 1006 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1007 |
-
}
|
| 1008 |
-
|
| 1009 |
-
#adminmenu .menu-icon-appearance:hover div.wp-menu-image,
|
| 1010 |
-
#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
|
| 1011 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1012 |
-
}
|
| 1013 |
-
|
| 1014 |
-
.icon16.icon-plugins,
|
| 1015 |
-
#adminmenu .menu-icon-plugins div.wp-menu-image {
|
| 1016 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1017 |
-
}
|
| 1018 |
-
|
| 1019 |
-
#adminmenu .menu-icon-plugins:hover div.wp-menu-image,
|
| 1020 |
-
#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
|
| 1021 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1022 |
-
}
|
| 1023 |
-
|
| 1024 |
-
.icon16.icon-users,
|
| 1025 |
-
#adminmenu .menu-icon-users div.wp-menu-image {
|
| 1026 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1027 |
-
}
|
| 1028 |
-
|
| 1029 |
-
#adminmenu .menu-icon-users:hover div.wp-menu-image,
|
| 1030 |
-
#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
|
| 1031 |
-
#adminmenu .menu-icon-users.current div.wp-menu-image {
|
| 1032 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1033 |
-
}
|
| 1034 |
-
|
| 1035 |
-
.icon16.icon-tools,
|
| 1036 |
-
#adminmenu .menu-icon-tools div.wp-menu-image {
|
| 1037 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1038 |
-
}
|
| 1039 |
-
|
| 1040 |
-
#adminmenu .menu-icon-tools:hover div.wp-menu-image,
|
| 1041 |
-
#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
|
| 1042 |
-
#adminmenu .menu-icon-tools.current div.wp-menu-image {
|
| 1043 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1044 |
-
}
|
| 1045 |
-
|
| 1046 |
-
.icon16.icon-settings,
|
| 1047 |
-
#adminmenu .menu-icon-settings div.wp-menu-image {
|
| 1048 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1049 |
-
}
|
| 1050 |
-
|
| 1051 |
-
#adminmenu .menu-icon-settings:hover div.wp-menu-image,
|
| 1052 |
-
#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
|
| 1053 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1054 |
-
}
|
| 1055 |
-
|
| 1056 |
-
.icon16.icon-site,
|
| 1057 |
-
#adminmenu .menu-icon-site div.wp-menu-image {
|
| 1058 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1059 |
-
}
|
| 1060 |
-
|
| 1061 |
-
#adminmenu .menu-icon-site:hover div.wp-menu-image,
|
| 1062 |
-
#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
|
| 1063 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu.png?ver=20100531');
|
| 1064 |
-
}
|
| 1065 |
-
/* end menu and screen icons */
|
| 1066 |
-
|
| 1067 |
-
/* Screen Icons */
|
| 1068 |
-
.icon32.icon-post,
|
| 1069 |
-
#icon-edit,
|
| 1070 |
-
#icon-post {
|
| 1071 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1072 |
-
}
|
| 1073 |
-
|
| 1074 |
-
.icon32.icon-dashboard,
|
| 1075 |
-
#icon-index {
|
| 1076 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1077 |
-
}
|
| 1078 |
-
|
| 1079 |
-
.icon32.icon-media,
|
| 1080 |
-
#icon-upload {
|
| 1081 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1082 |
-
}
|
| 1083 |
-
|
| 1084 |
-
.icon32.icon-links,
|
| 1085 |
-
#icon-link-manager,
|
| 1086 |
-
#icon-link,
|
| 1087 |
-
#icon-link-category {
|
| 1088 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1089 |
-
}
|
| 1090 |
-
|
| 1091 |
-
.icon32.icon-page,
|
| 1092 |
-
#icon-edit-pages,
|
| 1093 |
-
#icon-page {
|
| 1094 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1095 |
-
}
|
| 1096 |
-
|
| 1097 |
-
.icon32.icon-comments,
|
| 1098 |
-
#icon-edit-comments {
|
| 1099 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1100 |
-
}
|
| 1101 |
-
|
| 1102 |
-
.icon32.icon-appearance,
|
| 1103 |
-
#icon-themes {
|
| 1104 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1105 |
-
}
|
| 1106 |
-
|
| 1107 |
-
.icon32.icon-plugins,
|
| 1108 |
-
#icon-plugins {
|
| 1109 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1110 |
-
}
|
| 1111 |
-
|
| 1112 |
-
.icon32.icon-users,
|
| 1113 |
-
#icon-users,
|
| 1114 |
-
#icon-profile,
|
| 1115 |
-
#icon-user-edit {
|
| 1116 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1117 |
-
}
|
| 1118 |
-
|
| 1119 |
-
.icon32.icon-tools,
|
| 1120 |
-
#icon-tools,
|
| 1121 |
-
#icon-admin {
|
| 1122 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1123 |
-
}
|
| 1124 |
-
|
| 1125 |
-
.icon32.icon-settings,
|
| 1126 |
-
#icon-options-general {
|
| 1127 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1128 |
-
}
|
| 1129 |
-
|
| 1130 |
-
.icon32.icon-site,
|
| 1131 |
-
#icon-ms-admin {
|
| 1132 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32.png?ver=20100531');
|
| 1133 |
-
}
|
| 1134 |
-
/* end screen icons */
|
| 1135 |
-
|
| 1136 |
-
.meta-box-sortables .postbox:hover .handlediv {
|
| 1137 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 1138 |
-
}
|
| 1139 |
-
|
| 1140 |
-
.tablenav .tablenav-pages a {
|
| 1141 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu-bits.gif?ver=20100610');
|
| 1142 |
-
}
|
| 1143 |
-
|
| 1144 |
-
.view-switch #view-switch-list {
|
| 1145 |
-
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
| 1146 |
-
}
|
| 1147 |
-
|
| 1148 |
-
.view-switch .current #view-switch-list {
|
| 1149 |
-
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
| 1150 |
-
}
|
| 1151 |
-
|
| 1152 |
-
.view-switch #view-switch-excerpt {
|
| 1153 |
-
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
| 1154 |
-
}
|
| 1155 |
-
|
| 1156 |
-
.view-switch .current #view-switch-excerpt {
|
| 1157 |
-
background-image: url('<?php echo $wp_admin_url; ?>list.png');
|
| 1158 |
-
}
|
| 1159 |
-
|
| 1160 |
-
#header-logo {
|
| 1161 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-logo.png?ver=20110504');
|
| 1162 |
-
}
|
| 1163 |
-
|
| 1164 |
-
.sidebar-name-arrow {
|
| 1165 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 1166 |
-
}
|
| 1167 |
-
|
| 1168 |
-
.sidebar-name:hover .sidebar-name-arrow {
|
| 1169 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
| 1170 |
-
}
|
| 1171 |
-
|
| 1172 |
-
.item-edit {
|
| 1173 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 1174 |
-
}
|
| 1175 |
-
|
| 1176 |
-
.item-edit:hover {
|
| 1177 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
| 1178 |
-
}
|
| 1179 |
-
|
| 1180 |
-
.wp-badge {
|
| 1181 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png');
|
| 1182 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -ms-linear-gradient(top, #378aac, #165d84); /* IE10 */
|
| 1183 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -moz-linear-gradient(top, #378aac, #165d84); /* Firefox */
|
| 1184 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -o-linear-gradient(top, #378aac, #165d84); /* Opera */
|
| 1185 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -webkit-gradient(linear, left top, left bottom, from(#378aac), to(#165d84)); /* old Webkit */
|
| 1186 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), -webkit-linear-gradient(top, #378aac, #165d84); /* new Webkit */
|
| 1187 |
-
background-image: url('<?php echo $wp_admin_url; ?>wp-badge.png'), linear-gradient(top, #378aac, #165d84); /* proposed W3C Markup */
|
| 1188 |
-
}
|
| 1189 |
-
|
| 1190 |
-
.rtl .post-com-count {
|
| 1191 |
-
background-image: url('<?php echo $wp_admin_url; ?>bubble_bg-rtl.gif');
|
| 1192 |
-
}
|
| 1193 |
-
|
| 1194 |
-
/* Menu */
|
| 1195 |
-
.rtl #adminmenushadow,
|
| 1196 |
-
.rtl #adminmenuback {
|
| 1197 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu-shadow-rtl.png');
|
| 1198 |
-
}
|
| 1199 |
-
|
| 1200 |
-
.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
|
| 1201 |
-
.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
|
| 1202 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
| 1203 |
-
}
|
| 1204 |
-
|
| 1205 |
-
.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
|
| 1206 |
-
.rtl #adminmenu .wp-menu-open .wp-menu-toggle {
|
| 1207 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 1208 |
-
}
|
| 1209 |
-
|
| 1210 |
-
.rtl .meta-box-sortables .postbox:hover .handlediv {
|
| 1211 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 1212 |
-
}
|
| 1213 |
-
|
| 1214 |
-
.rtl .tablenav .tablenav-pages a {
|
| 1215 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu-bits-rtl.gif?ver=20100610');
|
| 1216 |
-
}
|
| 1217 |
-
|
| 1218 |
-
.rtl .sidebar-name-arrow {
|
| 1219 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows.png');
|
| 1220 |
-
}
|
| 1221 |
-
|
| 1222 |
-
.rtl .sidebar-name:hover .sidebar-name-arrow {
|
| 1223 |
-
background-image: url('<?php echo $wp_admin_url; ?>arrows-dark.png');
|
| 1224 |
-
}
|
| 1225 |
-
|
| 1226 |
-
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
| 1227 |
-
.icon32.icon-post,
|
| 1228 |
-
#icon-edit,
|
| 1229 |
-
#icon-post,
|
| 1230 |
-
.icon32.icon-dashboard,
|
| 1231 |
-
#icon-index,
|
| 1232 |
-
.icon32.icon-media,
|
| 1233 |
-
#icon-upload,
|
| 1234 |
-
.icon32.icon-links,
|
| 1235 |
-
#icon-link-manager,
|
| 1236 |
-
#icon-link,
|
| 1237 |
-
#icon-link-category,
|
| 1238 |
-
.icon32.icon-page,
|
| 1239 |
-
#icon-edit-pages,
|
| 1240 |
-
#icon-page,
|
| 1241 |
-
.icon32.icon-comments,
|
| 1242 |
-
#icon-edit-comments,
|
| 1243 |
-
.icon32.icon-appearance,
|
| 1244 |
-
#icon-themes,
|
| 1245 |
-
.icon32.icon-plugins,
|
| 1246 |
-
#icon-plugins,
|
| 1247 |
-
.icon32.icon-users,
|
| 1248 |
-
#icon-users,
|
| 1249 |
-
#icon-profile,
|
| 1250 |
-
#icon-user-edit,
|
| 1251 |
-
.icon32.icon-tools,
|
| 1252 |
-
#icon-tools,
|
| 1253 |
-
#icon-admin,
|
| 1254 |
-
.icon32.icon-settings,
|
| 1255 |
-
#icon-options-general,
|
| 1256 |
-
.icon32.icon-site,
|
| 1257 |
-
#icon-ms-admin {
|
| 1258 |
-
background-image: url('<?php echo $wp_admin_url; ?>icons32-2x.png?ver=20120412') !important;
|
| 1259 |
-
background-size: <?php echo $icon32_size; ?>
|
| 1260 |
-
}
|
| 1261 |
-
|
| 1262 |
-
.icon16.icon-dashboard,
|
| 1263 |
-
.menu-icon-dashboard div.wp-menu-image,
|
| 1264 |
-
.icon16.icon-post,
|
| 1265 |
-
.menu-icon-post div.wp-menu-image,
|
| 1266 |
-
.icon16.icon-media,
|
| 1267 |
-
.menu-icon-media div.wp-menu-image,
|
| 1268 |
-
.icon16.icon-links,
|
| 1269 |
-
.menu-icon-links div.wp-menu-image,
|
| 1270 |
-
.icon16.icon-page,
|
| 1271 |
-
.menu-icon-page div.wp-menu-image,
|
| 1272 |
-
.icon16.icon-comments,
|
| 1273 |
-
.menu-icon-comments div.wp-menu-image,
|
| 1274 |
-
.icon16.icon-appearance,
|
| 1275 |
-
.menu-icon-appearance div.wp-menu-image,
|
| 1276 |
-
.icon16.icon-plugins,
|
| 1277 |
-
.menu-icon-plugins div.wp-menu-image,
|
| 1278 |
-
.icon16.icon-users,
|
| 1279 |
-
.menu-icon-users div.wp-menu-image,
|
| 1280 |
-
.icon16.icon-tools,
|
| 1281 |
-
.menu-icon-tools div.wp-menu-image,
|
| 1282 |
-
.icon16.icon-settings,
|
| 1283 |
-
.menu-icon-settings div.wp-menu-image,
|
| 1284 |
-
.icon16.icon-site,
|
| 1285 |
-
.menu-icon-site div.wp-menu-image {
|
| 1286 |
-
background-image: url('<?php echo $wp_admin_url; ?>menu-2x.png?ver=20120412') !important;
|
| 1287 |
-
background-size: 390px 64px;
|
| 1288 |
-
}
|
| 1289 |
-
}
|
| 1290 |
-
<?php endif; ?>
|
| 1291 |
-
|
| 1292 |
-
/*]]>*/
|
| 1293 |
-
</style>
|
| 1294 |
-
|
| 1295 |
-
<?php
|
| 1296 |
}
|
| 1297 |
|
| 1298 |
/**
|
|
@@ -1308,16 +624,36 @@ class BBP_Admin {
|
|
| 1308 |
*/
|
| 1309 |
public function register_admin_style () {
|
| 1310 |
|
| 1311 |
-
//
|
| 1312 |
-
|
| 1313 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1314 |
|
| 1315 |
-
|
| 1316 |
-
|
|
|
|
| 1317 |
}
|
| 1318 |
|
| 1319 |
-
//
|
| 1320 |
-
|
|
|
|
| 1321 |
}
|
| 1322 |
|
| 1323 |
/**
|
| 44 |
*/
|
| 45 |
public $styles_url = '';
|
| 46 |
|
| 47 |
+
/**
|
| 48 |
+
* @var string URL to the bbPress admin css directory
|
| 49 |
+
*/
|
| 50 |
+
public $css_url = '';
|
| 51 |
+
|
| 52 |
+
/**
|
| 53 |
+
* @var string URL to the bbPress admin js directory
|
| 54 |
+
*/
|
| 55 |
+
public $js_url = '';
|
| 56 |
+
|
| 57 |
/** Capability ************************************************************/
|
| 58 |
|
| 59 |
/**
|
| 97 |
$this->admin_url = trailingslashit( $bbp->includes_url . 'admin' ); // Admin url
|
| 98 |
$this->images_url = trailingslashit( $this->admin_url . 'images' ); // Admin images URL
|
| 99 |
$this->styles_url = trailingslashit( $this->admin_url . 'styles' ); // Admin styles URL
|
| 100 |
+
$this->css_url = trailingslashit( $this->admin_url . 'css' ); // Admin css URL
|
| 101 |
+
$this->js_url = trailingslashit( $this->admin_url . 'js' ); // Admin js URL
|
| 102 |
}
|
| 103 |
|
| 104 |
/**
|
| 142 |
add_action( 'bbp_register_admin_style', array( $this, 'register_admin_style' ) ); // Add green admin style
|
| 143 |
add_action( 'bbp_register_admin_settings', array( $this, 'register_admin_settings' ) ); // Add settings
|
| 144 |
add_action( 'bbp_activation', array( $this, 'new_install' ) ); // Add menu item to settings menu
|
| 145 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) ); // Add enqueued CSS
|
| 146 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); // Add enqueued JS
|
| 147 |
add_action( 'wp_dashboard_setup', array( $this, 'dashboard_widget_right_now' ) ); // Forums 'Right now' Dashboard widget
|
| 148 |
add_action( 'admin_bar_menu', array( $this, 'admin_bar_about_link' ), 15 ); // Add a link to bbPress about page to the admin bar
|
| 149 |
|
| 388 |
* @param int $user_id User id
|
| 389 |
* @param mixed $args Arguments
|
| 390 |
* @uses get_post() To get the post
|
|
|
|
| 391 |
* @uses apply_filters() Calls 'bbp_map_meta_caps' with caps, cap, user id and
|
| 392 |
* args
|
| 393 |
* @return array Actual capabilities for meta capability
|
| 554 |
|
| 555 |
/**
|
| 556 |
* Enqueue any admin scripts we might need
|
| 557 |
+
*
|
| 558 |
* @since bbPress (r4260)
|
| 559 |
*/
|
| 560 |
public function enqueue_scripts() {
|
| 561 |
wp_enqueue_script( 'suggest' );
|
| 562 |
+
|
| 563 |
+
// Get the version to use for JS
|
| 564 |
+
$version = bbp_get_version();
|
| 565 |
+
|
| 566 |
+
// Post type checker (only topics and replies)
|
| 567 |
+
if ( 'post' === get_current_screen()->base ) {
|
| 568 |
+
switch( get_current_screen()->post_type ) {
|
| 569 |
+
case bbp_get_reply_post_type() :
|
| 570 |
+
case bbp_get_topic_post_type() :
|
| 571 |
+
|
| 572 |
+
// Enqueue the common JS
|
| 573 |
+
wp_enqueue_script( 'bbp-admin-common-js', $this->js_url . 'common.js', array( 'jquery' ), $version );
|
| 574 |
+
|
| 575 |
+
// Topics admin
|
| 576 |
+
if ( bbp_get_topic_post_type() === get_current_screen()->post_type ) {
|
| 577 |
+
wp_enqueue_script( 'bbp-admin-topics-js', $this->js_url . 'topics.js', array( 'jquery' ), $version );
|
| 578 |
+
|
| 579 |
+
// Replies admin
|
| 580 |
+
} elseif ( bbp_get_reply_post_type() === get_current_screen()->post_type ) {
|
| 581 |
+
wp_enqueue_script( 'bbp-admin-replies-js', $this->js_url . 'replies.js', array( 'jquery' ), $version );
|
| 582 |
+
}
|
| 583 |
+
|
| 584 |
+
break;
|
| 585 |
+
}
|
| 586 |
+
}
|
| 587 |
+
}
|
| 588 |
+
|
| 589 |
+
/**
|
| 590 |
+
* Enqueue any admin scripts we might need
|
| 591 |
+
*
|
| 592 |
+
* @since bbPress (r5224)
|
| 593 |
+
*/
|
| 594 |
+
public function enqueue_styles() {
|
| 595 |
+
wp_enqueue_style( 'bbp-admin-css', $this->css_url . 'admin.css', array( 'dashicons' ), bbp_get_version() );
|
| 596 |
}
|
| 597 |
|
| 598 |
/**
|
| 599 |
+
* Remove the individual recount and converter menus.
|
| 600 |
+
* They are grouped together by h2 tabs
|
| 601 |
*
|
| 602 |
* @since bbPress (r2464)
|
| 603 |
*
|
| 604 |
+
* @uses remove_submenu_page() To remove menu items with alternat navigation
|
|
|
|
|
|
|
|
|
|
| 605 |
*/
|
| 606 |
public function admin_head() {
|
|
|
|
|
|
|
|
|
|
| 607 |
remove_submenu_page( 'tools.php', 'bbp-repair' );
|
| 608 |
remove_submenu_page( 'tools.php', 'bbp-converter' );
|
| 609 |
remove_submenu_page( 'tools.php', 'bbp-reset' );
|
| 610 |
remove_submenu_page( 'index.php', 'bbp-about' );
|
| 611 |
remove_submenu_page( 'index.php', 'bbp-credits' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 612 |
}
|
| 613 |
|
| 614 |
/**
|
| 624 |
*/
|
| 625 |
public function register_admin_style () {
|
| 626 |
|
| 627 |
+
// RTL and/or minified
|
| 628 |
+
$suffix = is_rtl() ? '-rtl' : '';
|
| 629 |
+
//$suffix .= defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
| 630 |
+
|
| 631 |
+
// Mint
|
| 632 |
+
wp_admin_css_color(
|
| 633 |
+
'bbp-mint',
|
| 634 |
+
esc_html_x( 'Mint', 'admin color scheme', 'bbpress' ),
|
| 635 |
+
$this->styles_url . 'mint' . $suffix . '.css',
|
| 636 |
+
array( '#4f6d59', '#33834e', '#5FB37C', '#81c498' ),
|
| 637 |
+
array( 'base' => '#f1f3f2', 'focus' => '#fff', 'current' => '#fff' )
|
| 638 |
+
);
|
| 639 |
+
|
| 640 |
+
// Evergreen
|
| 641 |
+
wp_admin_css_color(
|
| 642 |
+
'bbp-evergreen',
|
| 643 |
+
esc_html_x( 'Evergreen', 'admin color scheme', 'bbpress' ),
|
| 644 |
+
$this->styles_url . 'evergreen' . $suffix . '.css',
|
| 645 |
+
array( '#324d3a', '#446950', '#56b274', '#324d3a' ),
|
| 646 |
+
array( 'base' => '#f1f3f2', 'focus' => '#fff', 'current' => '#fff' )
|
| 647 |
+
);
|
| 648 |
|
| 649 |
+
// Bail if already using the fresh color scheme
|
| 650 |
+
if ( 'fresh' === get_user_option( 'admin_color' ) ) {
|
| 651 |
+
return;
|
| 652 |
}
|
| 653 |
|
| 654 |
+
// Force 'colors-fresh' dependency
|
| 655 |
+
global $wp_styles;
|
| 656 |
+
$wp_styles->registered[ 'colors' ]->deps[] = 'colors-fresh';
|
| 657 |
}
|
| 658 |
|
| 659 |
/**
|
includes/admin/settings.php
CHANGED
|
@@ -516,15 +516,15 @@ function bbp_admin_setting_callback_global_access() {
|
|
| 516 |
// Start the output buffer for the select dropdown
|
| 517 |
ob_start(); ?>
|
| 518 |
|
| 519 |
-
|
| 520 |
-
|
|
|
|
| 521 |
<?php foreach ( bbp_get_dynamic_roles() as $role => $details ) : ?>
|
| 522 |
|
| 523 |
<option <?php selected( $default_role, $role ); ?> value="<?php echo esc_attr( $role ); ?>"><?php echo translate_user_role( $details['name'] ); ?></option>
|
| 524 |
|
| 525 |
<?php endforeach; ?>
|
| 526 |
-
|
| 527 |
-
</select>
|
| 528 |
|
| 529 |
<?php $select = ob_get_clean(); ?>
|
| 530 |
|
|
@@ -635,13 +635,15 @@ function bbp_admin_setting_callback_thread_replies_depth() {
|
|
| 635 |
// Start an output buffer for the select dropdown
|
| 636 |
ob_start(); ?>
|
| 637 |
|
| 638 |
-
|
| 639 |
-
|
|
|
|
|
|
|
| 640 |
|
| 641 |
-
|
| 642 |
|
| 643 |
-
|
| 644 |
-
|
| 645 |
|
| 646 |
<?php $select = ob_get_clean(); ?>
|
| 647 |
|
| 516 |
// Start the output buffer for the select dropdown
|
| 517 |
ob_start(); ?>
|
| 518 |
|
| 519 |
+
</label>
|
| 520 |
+
<label for="_bbp_default_role">
|
| 521 |
+
<select name="_bbp_default_role" id="_bbp_default_role" <?php bbp_maybe_admin_setting_disabled( '_bbp_default_role' ); ?>>
|
| 522 |
<?php foreach ( bbp_get_dynamic_roles() as $role => $details ) : ?>
|
| 523 |
|
| 524 |
<option <?php selected( $default_role, $role ); ?> value="<?php echo esc_attr( $role ); ?>"><?php echo translate_user_role( $details['name'] ); ?></option>
|
| 525 |
|
| 526 |
<?php endforeach; ?>
|
| 527 |
+
</select>
|
|
|
|
| 528 |
|
| 529 |
<?php $select = ob_get_clean(); ?>
|
| 530 |
|
| 635 |
// Start an output buffer for the select dropdown
|
| 636 |
ob_start(); ?>
|
| 637 |
|
| 638 |
+
</label>
|
| 639 |
+
<label for="_bbp_thread_replies_depth">
|
| 640 |
+
<select name="_bbp_thread_replies_depth" id="_bbp_thread_replies_depth" <?php bbp_maybe_admin_setting_disabled( '_bbp_thread_replies_depth' ); ?>>
|
| 641 |
+
<?php for ( $i = 2; $i <= $max_depth; $i++ ) : ?>
|
| 642 |
|
| 643 |
+
<option value="<?php echo esc_attr( $i ); ?>" <?php selected( $i, $current_depth ); ?>><?php echo esc_html( $i ); ?></option>
|
| 644 |
|
| 645 |
+
<?php endfor; ?>
|
| 646 |
+
</select>
|
| 647 |
|
| 648 |
<?php $select = ob_get_clean(); ?>
|
| 649 |
|
includes/common/functions.php
CHANGED
|
@@ -1590,7 +1590,7 @@ function bbp_verify_nonce_request( $action = '', $query_arg = '_wpnonce' ) {
|
|
| 1590 |
|
| 1591 |
// Parse home_url() into pieces to remove query-strings, strange characters,
|
| 1592 |
// and other funny things that plugins might to do to it.
|
| 1593 |
-
$parsed_home = parse_url( home_url( '/', ( is_ssl() ? 'https
|
| 1594 |
|
| 1595 |
// Maybe include the port, if it's included
|
| 1596 |
if ( isset( $parsed_home['port'] ) ) {
|
| 1590 |
|
| 1591 |
// Parse home_url() into pieces to remove query-strings, strange characters,
|
| 1592 |
// and other funny things that plugins might to do to it.
|
| 1593 |
+
$parsed_home = parse_url( home_url( '/', ( is_ssl() ? 'https' : 'http' ) ) );
|
| 1594 |
|
| 1595 |
// Maybe include the port, if it's included
|
| 1596 |
if ( isset( $parsed_home['port'] ) ) {
|
includes/common/template.php
CHANGED
|
@@ -2585,28 +2585,28 @@ function bbp_title( $title = '', $sep = '»', $seplocation = '' ) {
|
|
| 2585 |
|
| 2586 |
// User is viewing someone else's profile (so use their display name)
|
| 2587 |
} else {
|
| 2588 |
-
$new_title['text'] = get_userdata( bbp_get_user_id() )->display_name;
|
| 2589 |
}
|
| 2590 |
|
| 2591 |
// User topics created
|
| 2592 |
if ( bbp_is_single_user_topics() ) {
|
| 2593 |
-
$new_title['format'] = esc_attr__( "%s
|
| 2594 |
|
| 2595 |
// User rueplies created
|
| 2596 |
} elseif ( bbp_is_single_user_replies() ) {
|
| 2597 |
-
$new_title['format'] = esc_attr__( "%s
|
| 2598 |
|
| 2599 |
// User favorites
|
| 2600 |
} elseif ( bbp_is_favorites() ) {
|
| 2601 |
-
$new_title['format'] = esc_attr__( "%s
|
| 2602 |
|
| 2603 |
// User subscriptions
|
| 2604 |
} elseif ( bbp_is_subscriptions() ) {
|
| 2605 |
-
$new_title['format'] = esc_attr__( "%s
|
| 2606 |
|
| 2607 |
// User "home"
|
| 2608 |
} else {
|
| 2609 |
-
$new_title['format'] = esc_attr__( "%s
|
| 2610 |
}
|
| 2611 |
|
| 2612 |
// Profile edit page
|
| 2585 |
|
| 2586 |
// User is viewing someone else's profile (so use their display name)
|
| 2587 |
} else {
|
| 2588 |
+
$new_title['text'] = sprintf( esc_attr_x( "%s's", 'User viewing another users profile', 'bbpress' ), get_userdata( bbp_get_user_id() )->display_name );
|
| 2589 |
}
|
| 2590 |
|
| 2591 |
// User topics created
|
| 2592 |
if ( bbp_is_single_user_topics() ) {
|
| 2593 |
+
$new_title['format'] = esc_attr__( "%s Topics", 'bbpress' );
|
| 2594 |
|
| 2595 |
// User rueplies created
|
| 2596 |
} elseif ( bbp_is_single_user_replies() ) {
|
| 2597 |
+
$new_title['format'] = esc_attr__( "%s Replies", 'bbpress' );
|
| 2598 |
|
| 2599 |
// User favorites
|
| 2600 |
} elseif ( bbp_is_favorites() ) {
|
| 2601 |
+
$new_title['format'] = esc_attr__( "%s Favorites", 'bbpress' );
|
| 2602 |
|
| 2603 |
// User subscriptions
|
| 2604 |
} elseif ( bbp_is_subscriptions() ) {
|
| 2605 |
+
$new_title['format'] = esc_attr__( "%s Subscriptions", 'bbpress' );
|
| 2606 |
|
| 2607 |
// User "home"
|
| 2608 |
} else {
|
| 2609 |
+
$new_title['format'] = esc_attr__( "%s Profile", 'bbpress' );
|
| 2610 |
}
|
| 2611 |
|
| 2612 |
// Profile edit page
|
includes/forums/template.php
CHANGED
|
@@ -2245,8 +2245,8 @@ function bbp_form_forum_subscribed() {
|
|
| 2245 |
* @uses bbp_is_forum_edit() To check if it's the forum edit page
|
| 2246 |
* @uses bbp_get_global_post_field() To get current post author
|
| 2247 |
* @uses bbp_get_current_user_id() To get the current user id
|
| 2248 |
-
* @uses
|
| 2249 |
-
*
|
| 2250 |
* @uses apply_filters() Calls 'bbp_get_form_forum_subscribed' with the
|
| 2251 |
* option
|
| 2252 |
* @return string Checked value of forum subscription
|
|
@@ -2265,16 +2265,16 @@ function bbp_form_forum_subscribed() {
|
|
| 2265 |
|
| 2266 |
// Post author is not the current user
|
| 2267 |
if ( bbp_get_current_user_id() !== $post_author ) {
|
| 2268 |
-
$forum_subscribed =
|
| 2269 |
|
| 2270 |
// Post author is the current user
|
| 2271 |
} else {
|
| 2272 |
-
$forum_subscribed =
|
| 2273 |
}
|
| 2274 |
|
| 2275 |
// Get current status
|
| 2276 |
} elseif ( bbp_is_single_forum() ) {
|
| 2277 |
-
$forum_subscribed =
|
| 2278 |
|
| 2279 |
// No data
|
| 2280 |
} else {
|
| 2245 |
* @uses bbp_is_forum_edit() To check if it's the forum edit page
|
| 2246 |
* @uses bbp_get_global_post_field() To get current post author
|
| 2247 |
* @uses bbp_get_current_user_id() To get the current user id
|
| 2248 |
+
* @uses bbp_is_user_subscribed_to_forum() To check if the user is
|
| 2249 |
+
* subscribed to the forum
|
| 2250 |
* @uses apply_filters() Calls 'bbp_get_form_forum_subscribed' with the
|
| 2251 |
* option
|
| 2252 |
* @return string Checked value of forum subscription
|
| 2265 |
|
| 2266 |
// Post author is not the current user
|
| 2267 |
if ( bbp_get_current_user_id() !== $post_author ) {
|
| 2268 |
+
$forum_subscribed = bbp_is_user_subscribed_to_forum( $post_author );
|
| 2269 |
|
| 2270 |
// Post author is the current user
|
| 2271 |
} else {
|
| 2272 |
+
$forum_subscribed = bbp_is_user_subscribed_to_forum( bbp_get_current_user_id() );
|
| 2273 |
}
|
| 2274 |
|
| 2275 |
// Get current status
|
| 2276 |
} elseif ( bbp_is_single_forum() ) {
|
| 2277 |
+
$forum_subscribed = bbp_is_user_subscribed_to_forum( bbp_get_current_user_id() );
|
| 2278 |
|
| 2279 |
// No data
|
| 2280 |
} else {
|
includes/replies/template.php
CHANGED
|
@@ -1206,7 +1206,7 @@ function bbp_reply_author_link( $args = '' ) {
|
|
| 1206 |
$anonymous = bbp_is_reply_anonymous( $reply_id );
|
| 1207 |
|
| 1208 |
// Tweak link title if empty
|
| 1209 |
-
if ( empty(
|
| 1210 |
$link_title = sprintf( empty( $anonymous ) ? __( 'View %s\'s profile', 'bbpress' ) : __( 'Visit %s\'s website', 'bbpress' ), bbp_get_reply_author_display_name( $reply_id ) );
|
| 1211 |
|
| 1212 |
// Use what was passed if not
|
| 1206 |
$anonymous = bbp_is_reply_anonymous( $reply_id );
|
| 1207 |
|
| 1208 |
// Tweak link title if empty
|
| 1209 |
+
if ( empty( $r['link_title'] ) ) {
|
| 1210 |
$link_title = sprintf( empty( $anonymous ) ? __( 'View %s\'s profile', 'bbpress' ) : __( 'Visit %s\'s website', 'bbpress' ), bbp_get_reply_author_display_name( $reply_id ) );
|
| 1211 |
|
| 1212 |
// Use what was passed if not
|
includes/topics/template.php
CHANGED
|
@@ -3898,8 +3898,8 @@ function bbp_form_topic_subscribed() {
|
|
| 3898 |
* @since bbPress (r2976)
|
| 3899 |
*
|
| 3900 |
* @uses bbp_is_topic_edit() To check if it's the topic edit page
|
| 3901 |
-
* @uses
|
| 3902 |
-
*
|
| 3903 |
* @uses apply_filters() Calls 'bbp_get_form_topic_subscribed' with the
|
| 3904 |
* option
|
| 3905 |
* @return string Checked value of topic subscription
|
|
@@ -3918,16 +3918,16 @@ function bbp_form_topic_subscribed() {
|
|
| 3918 |
|
| 3919 |
// Post author is not the current user
|
| 3920 |
if ( bbp_get_current_user_id() !== $post_author ) {
|
| 3921 |
-
$topic_subscribed =
|
| 3922 |
|
| 3923 |
// Post author is the current user
|
| 3924 |
} else {
|
| 3925 |
-
$topic_subscribed =
|
| 3926 |
}
|
| 3927 |
|
| 3928 |
// Get current status
|
| 3929 |
} elseif ( bbp_is_single_topic() ) {
|
| 3930 |
-
$topic_subscribed =
|
| 3931 |
|
| 3932 |
// No data
|
| 3933 |
} else {
|
| 3898 |
* @since bbPress (r2976)
|
| 3899 |
*
|
| 3900 |
* @uses bbp_is_topic_edit() To check if it's the topic edit page
|
| 3901 |
+
* @uses bbp_is_user_subscribed_to_topic() To check if the user is
|
| 3902 |
+
* subscribed to the topic
|
| 3903 |
* @uses apply_filters() Calls 'bbp_get_form_topic_subscribed' with the
|
| 3904 |
* option
|
| 3905 |
* @return string Checked value of topic subscription
|
| 3918 |
|
| 3919 |
// Post author is not the current user
|
| 3920 |
if ( bbp_get_current_user_id() !== $post_author ) {
|
| 3921 |
+
$topic_subscribed = bbp_is_user_subscribed_to_topic( $post_author );
|
| 3922 |
|
| 3923 |
// Post author is the current user
|
| 3924 |
} else {
|
| 3925 |
+
$topic_subscribed = bbp_is_user_subscribed_to_topic( bbp_get_current_user_id() );
|
| 3926 |
}
|
| 3927 |
|
| 3928 |
// Get current status
|
| 3929 |
} elseif ( bbp_is_single_topic() ) {
|
| 3930 |
+
$topic_subscribed = bbp_is_user_subscribed_to_topic( bbp_get_current_user_id() );
|
| 3931 |
|
| 3932 |
// No data
|
| 3933 |
} else {
|
languages/bbpress.pot
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
# Copyright (C)
|
| 2 |
# This file is distributed under the same license as the bbPress package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: bbPress 2.5\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
|
| 7 |
-
"POT-Creation-Date:
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -88,35 +88,35 @@ msgstr ""
|
|
| 88 |
msgid "Topics with no replies"
|
| 89 |
msgstr ""
|
| 90 |
|
| 91 |
-
#: includes/admin/admin.php:
|
| 92 |
#: includes/admin/tools.php:34
|
| 93 |
msgid "Repair Forums"
|
| 94 |
msgstr ""
|
| 95 |
|
| 96 |
-
#: includes/admin/admin.php:
|
| 97 |
msgid "Forum Repair"
|
| 98 |
msgstr ""
|
| 99 |
|
| 100 |
-
#: includes/admin/admin.php:
|
| 101 |
-
#: includes/admin/settings.php:
|
| 102 |
msgid "Import Forums"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
-
#: includes/admin/admin.php:
|
| 106 |
msgid "Forum Import"
|
| 107 |
msgstr ""
|
| 108 |
|
| 109 |
-
#: includes/admin/admin.php:
|
| 110 |
#: includes/admin/tools.php:1132
|
| 111 |
msgid "Reset Forums"
|
| 112 |
msgstr ""
|
| 113 |
|
| 114 |
-
#: includes/admin/admin.php:
|
| 115 |
msgid "Forum Reset"
|
| 116 |
msgstr ""
|
| 117 |
|
| 118 |
-
#: includes/admin/admin.php:
|
| 119 |
-
#: includes/admin/admin.php:
|
| 120 |
#: includes/admin/users.php:82 includes/common/widgets.php:662
|
| 121 |
#: includes/extend/buddypress/loader.php:42
|
| 122 |
#: includes/extend/buddypress/loader.php:175
|
|
@@ -127,90 +127,95 @@ msgstr ""
|
|
| 127 |
msgid "Forums"
|
| 128 |
msgstr ""
|
| 129 |
|
| 130 |
-
#: includes/admin/admin.php:
|
| 131 |
-
#: includes/admin/admin.php:
|
| 132 |
msgid "Welcome to bbPress"
|
| 133 |
msgstr ""
|
| 134 |
|
| 135 |
-
#: includes/admin/admin.php:
|
| 136 |
-
#: includes/admin/admin.php:
|
| 137 |
-
#: includes/admin/admin.php:
|
| 138 |
msgid "Update Forums"
|
| 139 |
msgstr ""
|
| 140 |
|
| 141 |
-
#: includes/admin/admin.php:
|
| 142 |
msgid "Settings"
|
| 143 |
msgstr ""
|
| 144 |
|
| 145 |
-
#: includes/admin/admin.php:
|
| 146 |
msgid "About"
|
| 147 |
msgstr ""
|
| 148 |
|
| 149 |
-
#: includes/admin/admin.php:
|
| 150 |
msgid "Right Now in Forums"
|
| 151 |
msgstr ""
|
| 152 |
|
| 153 |
-
#: includes/admin/admin.php:
|
| 154 |
msgid "About bbPress"
|
| 155 |
msgstr ""
|
| 156 |
|
| 157 |
-
#: includes/admin/admin.php:
|
| 158 |
msgctxt "admin color scheme"
|
| 159 |
-
msgid "
|
| 160 |
msgstr ""
|
| 161 |
|
| 162 |
-
#: includes/admin/admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 163 |
msgid "%s - %s"
|
| 164 |
msgstr ""
|
| 165 |
|
| 166 |
-
#: includes/admin/admin.php:
|
| 167 |
msgid "Welcome to bbPress %s"
|
| 168 |
msgstr ""
|
| 169 |
|
| 170 |
-
#: includes/admin/admin.php:
|
| 171 |
msgid ""
|
| 172 |
"Thank you for updating! bbPress %s is bundled up and ready to weather the "
|
| 173 |
"storm of users in your community!"
|
| 174 |
msgstr ""
|
| 175 |
|
| 176 |
-
#: includes/admin/admin.php:
|
| 177 |
msgid "Version %s"
|
| 178 |
msgstr ""
|
| 179 |
|
| 180 |
-
#: includes/admin/admin.php:
|
| 181 |
msgid "What’s New"
|
| 182 |
msgstr ""
|
| 183 |
|
| 184 |
-
#: includes/admin/admin.php:
|
| 185 |
msgid "Credits"
|
| 186 |
msgstr ""
|
| 187 |
|
| 188 |
-
#: includes/admin/admin.php:
|
| 189 |
msgid "Forum Subscriptions"
|
| 190 |
msgstr ""
|
| 191 |
|
| 192 |
-
#: includes/admin/admin.php:
|
| 193 |
msgid "Subscribe to Forums"
|
| 194 |
msgstr ""
|
| 195 |
|
| 196 |
-
#: includes/admin/admin.php:
|
| 197 |
msgid "Now your users can subscribe to new topics in specific forums."
|
| 198 |
msgstr ""
|
| 199 |
|
| 200 |
-
#: includes/admin/admin.php:
|
| 201 |
msgid "Manage Subscriptions"
|
| 202 |
msgstr ""
|
| 203 |
|
| 204 |
-
#: includes/admin/admin.php:
|
| 205 |
msgid ""
|
| 206 |
"Your users can manage all of their subscriptions in one convenient location."
|
| 207 |
msgstr ""
|
| 208 |
|
| 209 |
-
#: includes/admin/admin.php:
|
| 210 |
msgid "Converters"
|
| 211 |
msgstr ""
|
| 212 |
|
| 213 |
-
#: includes/admin/admin.php:
|
| 214 |
msgid ""
|
| 215 |
"We’re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
|
| 216 |
"Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
|
|
@@ -219,111 +224,111 @@ msgid ""
|
|
| 219 |
"if you need to remove imported users."
|
| 220 |
msgstr ""
|
| 221 |
|
| 222 |
-
#: includes/admin/admin.php:
|
| 223 |
msgid "Theme Compatibility"
|
| 224 |
msgstr ""
|
| 225 |
|
| 226 |
-
#: includes/admin/admin.php:
|
| 227 |
msgid "Better handling of styles and scripts in the template stack."
|
| 228 |
msgstr ""
|
| 229 |
|
| 230 |
-
#: includes/admin/admin.php:
|
| 231 |
msgid "Polyglot support"
|
| 232 |
msgstr ""
|
| 233 |
|
| 234 |
-
#: includes/admin/admin.php:
|
| 235 |
msgid "bbPress fully supports automatic translation updates."
|
| 236 |
msgstr ""
|
| 237 |
|
| 238 |
-
#: includes/admin/admin.php:
|
| 239 |
msgid "User capabilities"
|
| 240 |
msgstr ""
|
| 241 |
|
| 242 |
-
#: includes/admin/admin.php:
|
| 243 |
msgid ""
|
| 244 |
"Roles and capabilities have been swept through, cleaned up, and simplified."
|
| 245 |
msgstr ""
|
| 246 |
|
| 247 |
-
#: includes/admin/admin.php:
|
| 248 |
msgid "Go to Forum Settings"
|
| 249 |
msgstr ""
|
| 250 |
|
| 251 |
-
#: includes/admin/admin.php:
|
| 252 |
msgid ""
|
| 253 |
"Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
|
| 254 |
"take it for a lap or two around the block!"
|
| 255 |
msgstr ""
|
| 256 |
|
| 257 |
-
#: includes/admin/admin.php:
|
| 258 |
msgid "bbPress is created by a worldwide swarm of busy, busy bees."
|
| 259 |
msgstr ""
|
| 260 |
|
| 261 |
-
#: includes/admin/admin.php:
|
| 262 |
msgid "Project Leaders"
|
| 263 |
msgstr ""
|
| 264 |
|
| 265 |
-
#: includes/admin/admin.php:
|
| 266 |
msgid "Founding Developer"
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
-
#: includes/admin/admin.php:
|
| 270 |
msgid "Lead Developer"
|
| 271 |
msgstr ""
|
| 272 |
|
| 273 |
-
#: includes/admin/admin.php:
|
| 274 |
msgid "Feature Developer"
|
| 275 |
msgstr ""
|
| 276 |
|
| 277 |
-
#: includes/admin/admin.php:
|
| 278 |
msgid "Converter Specialist"
|
| 279 |
msgstr ""
|
| 280 |
|
| 281 |
-
#: includes/admin/admin.php:
|
| 282 |
msgid "Contributing Developers"
|
| 283 |
msgstr ""
|
| 284 |
|
| 285 |
-
#: includes/admin/admin.php:
|
| 286 |
msgid "Bug Testing"
|
| 287 |
msgstr ""
|
| 288 |
|
| 289 |
-
#: includes/admin/admin.php:
|
| 290 |
msgid "Core Contributors to bbPress 2.5"
|
| 291 |
msgstr ""
|
| 292 |
|
| 293 |
-
#: includes/admin/admin.php:
|
| 294 |
msgid "Update Forum"
|
| 295 |
msgstr ""
|
| 296 |
|
| 297 |
-
#: includes/admin/admin.php:
|
| 298 |
msgid "All done!"
|
| 299 |
msgstr ""
|
| 300 |
|
| 301 |
-
#: includes/admin/admin.php:
|
| 302 |
msgid "Go Back"
|
| 303 |
msgstr ""
|
| 304 |
|
| 305 |
-
#: includes/admin/admin.php:
|
| 306 |
msgid ""
|
| 307 |
"You can update your forum through this page. Hit the link below to update."
|
| 308 |
msgstr ""
|
| 309 |
|
| 310 |
-
#: includes/admin/admin.php:
|
| 311 |
msgid ""
|
| 312 |
"Warning! Problem updating %1$s. Your server may not be able to connect to "
|
| 313 |
"sites running on it. Error message: <em>%2$s</em>"
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
-
#: includes/admin/admin.php:
|
| 317 |
msgid ""
|
| 318 |
"If your browser doesn’t start loading the next page automatically, "
|
| 319 |
"click this link:"
|
| 320 |
msgstr ""
|
| 321 |
|
| 322 |
-
#: includes/admin/admin.php:
|
| 323 |
msgid "Next Forums"
|
| 324 |
msgstr ""
|
| 325 |
|
| 326 |
-
#: includes/admin/admin.php:
|
| 327 |
msgid ""
|
| 328 |
"You can update all the forums on your network through this page. It works by "
|
| 329 |
"calling the update script of each site automatically. Hit the link below to "
|
|
@@ -503,7 +508,7 @@ msgid "Re: "
|
|
| 503 |
msgstr ""
|
| 504 |
|
| 505 |
#: includes/admin/forums.php:121 includes/admin/replies.php:132
|
| 506 |
-
#: includes/admin/settings.php:
|
| 507 |
msgid "Overview"
|
| 508 |
msgstr ""
|
| 509 |
|
|
@@ -597,14 +602,14 @@ msgstr ""
|
|
| 597 |
|
| 598 |
#: includes/admin/forums.php:163 includes/admin/forums.php:222
|
| 599 |
#: includes/admin/replies.php:177 includes/admin/replies.php:234
|
| 600 |
-
#: includes/admin/settings.php:
|
| 601 |
#: includes/admin/topics.php:234
|
| 602 |
msgid "For more information:"
|
| 603 |
msgstr ""
|
| 604 |
|
| 605 |
#: includes/admin/forums.php:164 includes/admin/forums.php:223
|
| 606 |
#: includes/admin/replies.php:178 includes/admin/replies.php:235
|
| 607 |
-
#: includes/admin/settings.php:
|
| 608 |
#: includes/admin/topics.php:235
|
| 609 |
msgid ""
|
| 610 |
"<a href=\"http://codex.bbpress.org\" target=\"_blank\">bbPress "
|
|
@@ -613,7 +618,7 @@ msgstr ""
|
|
| 613 |
|
| 614 |
#: includes/admin/forums.php:165 includes/admin/forums.php:224
|
| 615 |
#: includes/admin/replies.php:179 includes/admin/replies.php:236
|
| 616 |
-
#: includes/admin/settings.php:
|
| 617 |
#: includes/admin/topics.php:236
|
| 618 |
msgid ""
|
| 619 |
"<a href=\"http://bbpress.org/forums/\" target=\"_blank\">bbPress Support "
|
|
@@ -731,7 +736,7 @@ msgstr ""
|
|
| 731 |
#: includes/admin/forums.php:410 includes/admin/settings.php:222
|
| 732 |
#: includes/admin/settings.php:243 includes/admin/topics.php:632
|
| 733 |
#: includes/extend/buddypress/activity.php:354
|
| 734 |
-
#: includes/forums/template.php:
|
| 735 |
#: includes/topics/template.php:48
|
| 736 |
#: templates/default/bbpress/content-statistics.php:27
|
| 737 |
#: templates/default/bbpress/loop-forums.php:20
|
|
@@ -742,7 +747,7 @@ msgstr ""
|
|
| 742 |
#: includes/admin/settings.php:251 includes/admin/topics.php:634
|
| 743 |
#: includes/core/theme-compat.php:646
|
| 744 |
#: includes/extend/buddypress/activity.php:355
|
| 745 |
-
#: includes/forums/template.php:
|
| 746 |
#: includes/replies/template.php:48
|
| 747 |
#: templates/default/bbpress/content-statistics.php:32
|
| 748 |
#: templates/default/bbpress/loop-forums.php:21
|
|
@@ -769,7 +774,7 @@ msgstr ""
|
|
| 769 |
msgid "Freshness"
|
| 770 |
msgstr ""
|
| 771 |
|
| 772 |
-
#: includes/admin/forums.php:463 includes/forums/template.php:
|
| 773 |
msgid "No Topics"
|
| 774 |
msgstr ""
|
| 775 |
|
|
@@ -1358,7 +1363,7 @@ msgstr ""
|
|
| 1358 |
msgid "Auto role"
|
| 1359 |
msgstr ""
|
| 1360 |
|
| 1361 |
-
#: includes/admin/settings.php:134 includes/admin/settings.php:
|
| 1362 |
msgid "Revisions"
|
| 1363 |
msgstr ""
|
| 1364 |
|
|
@@ -1490,335 +1495,335 @@ msgstr ""
|
|
| 1490 |
msgid "Allow forum wide search"
|
| 1491 |
msgstr ""
|
| 1492 |
|
| 1493 |
-
#: includes/admin/settings.php:
|
| 1494 |
msgid "Enable threaded (nested) replies %s levels deep"
|
| 1495 |
msgstr ""
|
| 1496 |
|
| 1497 |
-
#: includes/admin/settings.php:
|
| 1498 |
msgid "Allow topic and reply revision logging"
|
| 1499 |
msgstr ""
|
| 1500 |
|
| 1501 |
-
#: includes/admin/settings.php:
|
| 1502 |
msgid "Add toolbar & buttons to textareas to help with HTML formatting"
|
| 1503 |
msgstr ""
|
| 1504 |
|
| 1505 |
-
#: includes/admin/settings.php:
|
| 1506 |
msgid "How your forum content is displayed within your existing theme."
|
| 1507 |
msgstr ""
|
| 1508 |
|
| 1509 |
-
#: includes/admin/settings.php:
|
| 1510 |
msgid "%1$s - %2$s"
|
| 1511 |
msgstr ""
|
| 1512 |
|
| 1513 |
-
#: includes/admin/settings.php:
|
| 1514 |
msgid "will serve all bbPress templates"
|
| 1515 |
msgstr ""
|
| 1516 |
|
| 1517 |
-
#: includes/admin/settings.php:
|
| 1518 |
msgid "No template packages available."
|
| 1519 |
msgstr ""
|
| 1520 |
|
| 1521 |
-
#: includes/admin/settings.php:
|
| 1522 |
msgid ""
|
| 1523 |
"Embed media (YouTube, Twitter, Flickr, etc...) directly into topics and "
|
| 1524 |
"replies"
|
| 1525 |
msgstr ""
|
| 1526 |
|
| 1527 |
-
#: includes/admin/settings.php:
|
| 1528 |
msgid "How many topics and replies to show per page"
|
| 1529 |
msgstr ""
|
| 1530 |
|
| 1531 |
-
#: includes/admin/settings.php:
|
| 1532 |
-
#: includes/admin/settings.php:
|
| 1533 |
msgid "per page"
|
| 1534 |
msgstr ""
|
| 1535 |
|
| 1536 |
-
#: includes/admin/settings.php:
|
| 1537 |
msgid "How many topics and replies to show per RSS page"
|
| 1538 |
msgstr ""
|
| 1539 |
|
| 1540 |
-
#: includes/admin/settings.php:
|
| 1541 |
msgid ""
|
| 1542 |
"Customize your Forums root. Partner with a WordPress Page and use Shortcodes "
|
| 1543 |
"for more flexibility."
|
| 1544 |
msgstr ""
|
| 1545 |
|
| 1546 |
-
#: includes/admin/settings.php:
|
| 1547 |
msgid "Prefix all forum content with the Forum Root slug (Recommended)"
|
| 1548 |
msgstr ""
|
| 1549 |
|
| 1550 |
-
#: includes/admin/settings.php:
|
| 1551 |
msgid "Forum Index"
|
| 1552 |
msgstr ""
|
| 1553 |
|
| 1554 |
-
#: includes/admin/settings.php:
|
| 1555 |
msgid "Topics by Freshness"
|
| 1556 |
msgstr ""
|
| 1557 |
|
| 1558 |
-
#: includes/admin/settings.php:
|
| 1559 |
msgid "Customize your user profile slugs."
|
| 1560 |
msgstr ""
|
| 1561 |
|
| 1562 |
-
#: includes/admin/settings.php:
|
| 1563 |
msgid ""
|
| 1564 |
"Custom slugs for single forums, topics, replies, tags, views, and search."
|
| 1565 |
msgstr ""
|
| 1566 |
|
| 1567 |
-
#: includes/admin/settings.php:
|
| 1568 |
msgid "Forum settings for BuddyPress"
|
| 1569 |
msgstr ""
|
| 1570 |
|
| 1571 |
-
#: includes/admin/settings.php:
|
| 1572 |
msgid "Allow BuddyPress Groups to have their own forums"
|
| 1573 |
msgstr ""
|
| 1574 |
|
| 1575 |
-
#: includes/admin/settings.php:
|
| 1576 |
msgid "— Forum root —"
|
| 1577 |
msgstr ""
|
| 1578 |
|
| 1579 |
-
#: includes/admin/settings.php:
|
| 1580 |
msgid "is the parent for all group forums"
|
| 1581 |
msgstr ""
|
| 1582 |
|
| 1583 |
-
#: includes/admin/settings.php:
|
| 1584 |
msgid ""
|
| 1585 |
"Using the Forum Root is not recommended. Changing this does not move "
|
| 1586 |
"existing forums."
|
| 1587 |
msgstr ""
|
| 1588 |
|
| 1589 |
-
#: includes/admin/settings.php:
|
| 1590 |
msgid "Forum settings for Akismet"
|
| 1591 |
msgstr ""
|
| 1592 |
|
| 1593 |
-
#: includes/admin/settings.php:
|
| 1594 |
msgid "Allow Akismet to actively prevent forum spam."
|
| 1595 |
msgstr ""
|
| 1596 |
|
| 1597 |
-
#: includes/admin/settings.php:
|
| 1598 |
msgid "Forums Settings"
|
| 1599 |
msgstr ""
|
| 1600 |
|
| 1601 |
-
#: includes/admin/settings.php:
|
| 1602 |
#: templates/default/bbpress/form-user-edit.php:173
|
| 1603 |
msgid "Save Changes"
|
| 1604 |
msgstr ""
|
| 1605 |
|
| 1606 |
-
#: includes/admin/settings.php:
|
| 1607 |
msgid ""
|
| 1608 |
"Information about your previous forums database so that they can be "
|
| 1609 |
"converted. <strong>Backup your database before proceeding.</strong>"
|
| 1610 |
msgstr ""
|
| 1611 |
|
| 1612 |
-
#: includes/admin/settings.php:
|
| 1613 |
msgid "is the previous forum software"
|
| 1614 |
msgstr ""
|
| 1615 |
|
| 1616 |
-
#: includes/admin/settings.php:
|
| 1617 |
msgid "IP or hostname"
|
| 1618 |
msgstr ""
|
| 1619 |
|
| 1620 |
-
#: includes/admin/settings.php:
|
| 1621 |
msgid "Use default 3306 if unsure"
|
| 1622 |
msgstr ""
|
| 1623 |
|
| 1624 |
-
#: includes/admin/settings.php:
|
| 1625 |
msgid "User for your database connection"
|
| 1626 |
msgstr ""
|
| 1627 |
|
| 1628 |
-
#: includes/admin/settings.php:
|
| 1629 |
msgid "Password to access the database"
|
| 1630 |
msgstr ""
|
| 1631 |
|
| 1632 |
-
#: includes/admin/settings.php:
|
| 1633 |
msgid "Name of the database with your old forum data"
|
| 1634 |
msgstr ""
|
| 1635 |
|
| 1636 |
-
#: includes/admin/settings.php:
|
| 1637 |
msgid "Some optional parameters to help tune the conversion process."
|
| 1638 |
msgstr ""
|
| 1639 |
|
| 1640 |
-
#: includes/admin/settings.php:
|
| 1641 |
msgid ""
|
| 1642 |
"(If converting from BuddyPress Forums, use \"wp_bb_\" or your custom prefix)"
|
| 1643 |
msgstr ""
|
| 1644 |
|
| 1645 |
-
#: includes/admin/settings.php:
|
| 1646 |
msgid "rows to process at a time"
|
| 1647 |
msgstr ""
|
| 1648 |
|
| 1649 |
-
#: includes/admin/settings.php:
|
| 1650 |
msgid "Keep this low if you experience out-of-memory issues."
|
| 1651 |
msgstr ""
|
| 1652 |
|
| 1653 |
-
#: includes/admin/settings.php:
|
| 1654 |
msgid "second(s) delay between each group of rows"
|
| 1655 |
msgstr ""
|
| 1656 |
|
| 1657 |
-
#: includes/admin/settings.php:
|
| 1658 |
msgid "Keep this high to prevent too-many-connection issues."
|
| 1659 |
msgstr ""
|
| 1660 |
|
| 1661 |
-
#: includes/admin/settings.php:
|
| 1662 |
msgid "Start a fresh conversion from the beginning"
|
| 1663 |
msgstr ""
|
| 1664 |
|
| 1665 |
-
#: includes/admin/settings.php:
|
| 1666 |
msgid "You should clean old conversion information before starting over."
|
| 1667 |
msgstr ""
|
| 1668 |
|
| 1669 |
-
#: includes/admin/settings.php:
|
| 1670 |
msgid "Purge all information from a previously attempted import"
|
| 1671 |
msgstr ""
|
| 1672 |
|
| 1673 |
-
#: includes/admin/settings.php:
|
| 1674 |
msgid ""
|
| 1675 |
"Use this if an import failed and you want to remove that incomplete data."
|
| 1676 |
msgstr ""
|
| 1677 |
|
| 1678 |
-
#: includes/admin/settings.php:
|
| 1679 |
msgid "Attempt to import user accounts from previous forums"
|
| 1680 |
msgstr ""
|
| 1681 |
|
| 1682 |
-
#: includes/admin/settings.php:
|
| 1683 |
msgid ""
|
| 1684 |
"Non-bbPress passwords cannot be automatically converted. They will be "
|
| 1685 |
"converted as each user logs in."
|
| 1686 |
msgstr ""
|
| 1687 |
|
| 1688 |
-
#: includes/admin/settings.php:
|
| 1689 |
msgid "Start"
|
| 1690 |
msgstr ""
|
| 1691 |
|
| 1692 |
-
#: includes/admin/settings.php:
|
| 1693 |
msgid "Stop"
|
| 1694 |
msgstr ""
|
| 1695 |
|
| 1696 |
-
#: includes/admin/settings.php:
|
| 1697 |
msgid "This screen provides access to all of the Forums settings."
|
| 1698 |
msgstr ""
|
| 1699 |
|
| 1700 |
-
#: includes/admin/settings.php:
|
| 1701 |
msgid ""
|
| 1702 |
"Please see the additional help tabs for more information on each indiviual "
|
| 1703 |
"section."
|
| 1704 |
msgstr ""
|
| 1705 |
|
| 1706 |
-
#: includes/admin/settings.php:
|
| 1707 |
msgid "Main Settings"
|
| 1708 |
msgstr ""
|
| 1709 |
|
| 1710 |
-
#: includes/admin/settings.php:
|
| 1711 |
msgid "In the Main Settings you have a number of options:"
|
| 1712 |
msgstr ""
|
| 1713 |
|
| 1714 |
-
#: includes/admin/settings.php:
|
| 1715 |
msgid ""
|
| 1716 |
"You can choose to lock a post after a certain number of minutes. \"Locking "
|
| 1717 |
"post editing\" will prevent the author from editing some amount of time "
|
| 1718 |
"after saving a post."
|
| 1719 |
msgstr ""
|
| 1720 |
|
| 1721 |
-
#: includes/admin/settings.php:
|
| 1722 |
msgid ""
|
| 1723 |
"\"Throttle time\" is the amount of time required between posts from a single "
|
| 1724 |
"author. The higher the throttle time, the longer a user will need to wait "
|
| 1725 |
"between posting to the forum."
|
| 1726 |
msgstr ""
|
| 1727 |
|
| 1728 |
-
#: includes/admin/settings.php:
|
| 1729 |
msgid ""
|
| 1730 |
"Favorites are a way for users to save and later return to topics they favor. "
|
| 1731 |
"This is enabled by default."
|
| 1732 |
msgstr ""
|
| 1733 |
|
| 1734 |
-
#: includes/admin/settings.php:
|
| 1735 |
msgid ""
|
| 1736 |
"Subscriptions allow users to subscribe for notifications to topics that "
|
| 1737 |
"interest them. This is enabled by default."
|
| 1738 |
msgstr ""
|
| 1739 |
|
| 1740 |
-
#: includes/admin/settings.php:
|
| 1741 |
msgid ""
|
| 1742 |
"Topic-Tags allow users to filter topics between forums. This is enabled by "
|
| 1743 |
"default."
|
| 1744 |
msgstr ""
|
| 1745 |
|
| 1746 |
-
#: includes/admin/settings.php:
|
| 1747 |
msgid ""
|
| 1748 |
"\"Anonymous Posting\" allows guest users who do not have accounts on your "
|
| 1749 |
"site to both create topics as well as replies."
|
| 1750 |
msgstr ""
|
| 1751 |
|
| 1752 |
-
#: includes/admin/settings.php:
|
| 1753 |
msgid ""
|
| 1754 |
"The Fancy Editor brings the luxury of the Visual editor and HTML editor from "
|
| 1755 |
"the traditional WordPress dashboard into your theme."
|
| 1756 |
msgstr ""
|
| 1757 |
|
| 1758 |
-
#: includes/admin/settings.php:
|
| 1759 |
msgid ""
|
| 1760 |
"Auto-embed will embed the media content from a URL directly into the "
|
| 1761 |
"replies. For example: links to Flickr and YouTube."
|
| 1762 |
msgstr ""
|
| 1763 |
|
| 1764 |
-
#: includes/admin/settings.php:
|
| 1765 |
msgid ""
|
| 1766 |
"You must click the Save Changes button at the bottom of the screen for new "
|
| 1767 |
"settings to take effect."
|
| 1768 |
msgstr ""
|
| 1769 |
|
| 1770 |
-
#: includes/admin/settings.php:
|
| 1771 |
msgid "Per Page"
|
| 1772 |
msgstr ""
|
| 1773 |
|
| 1774 |
-
#: includes/admin/settings.php:
|
| 1775 |
msgid ""
|
| 1776 |
"Per Page settings allow you to control the number of topics and replies "
|
| 1777 |
"appear on each page."
|
| 1778 |
msgstr ""
|
| 1779 |
|
| 1780 |
-
#: includes/admin/settings.php:
|
| 1781 |
msgid ""
|
| 1782 |
"This is comparable to the WordPress \"Reading Settings\" page, where you can "
|
| 1783 |
"set the number of posts that should show on blog pages and in feeds."
|
| 1784 |
msgstr ""
|
| 1785 |
|
| 1786 |
-
#: includes/admin/settings.php:
|
| 1787 |
msgid ""
|
| 1788 |
"These are broken up into two separate groups: one for what appears in your "
|
| 1789 |
"theme, another for RSS feeds."
|
| 1790 |
msgstr ""
|
| 1791 |
|
| 1792 |
-
#: includes/admin/settings.php:
|
| 1793 |
msgid "Slugs"
|
| 1794 |
msgstr ""
|
| 1795 |
|
| 1796 |
-
#: includes/admin/settings.php:
|
| 1797 |
msgid ""
|
| 1798 |
"The Slugs section allows you to control the permalink structure for your "
|
| 1799 |
"forums."
|
| 1800 |
msgstr ""
|
| 1801 |
|
| 1802 |
-
#: includes/admin/settings.php:
|
| 1803 |
msgid ""
|
| 1804 |
"\"Archive Slugs\" are used as the \"root\" for your forums and topics. If "
|
| 1805 |
"you combine these values with existing page slugs, bbPress will attempt to "
|
| 1806 |
"output the most correct title and content."
|
| 1807 |
msgstr ""
|
| 1808 |
|
| 1809 |
-
#: includes/admin/settings.php:
|
| 1810 |
msgid ""
|
| 1811 |
"\"Single Slugs\" are used as a prefix when viewing an individual forum, "
|
| 1812 |
"topic, reply, user, or view."
|
| 1813 |
msgstr ""
|
| 1814 |
|
| 1815 |
-
#: includes/admin/settings.php:
|
| 1816 |
msgid ""
|
| 1817 |
"In the event of a slug collision with WordPress or BuddyPress, a warning "
|
| 1818 |
"will appear next to the problem slug(s)."
|
| 1819 |
msgstr ""
|
| 1820 |
|
| 1821 |
-
#: includes/admin/settings.php:
|
| 1822 |
#: templates/default/bbpress/loop-forums.php:21
|
| 1823 |
#: templates/default/bbpress/loop-replies.php:24
|
| 1824 |
#: templates/default/bbpress/loop-replies.php:66
|
|
@@ -1826,63 +1831,63 @@ msgstr ""
|
|
| 1826 |
msgid "Posts"
|
| 1827 |
msgstr ""
|
| 1828 |
|
| 1829 |
-
#: includes/admin/settings.php:
|
| 1830 |
msgid "Pages"
|
| 1831 |
msgstr ""
|
| 1832 |
|
| 1833 |
-
#: includes/admin/settings.php:
|
| 1834 |
msgid "Attachments"
|
| 1835 |
msgstr ""
|
| 1836 |
|
| 1837 |
-
#: includes/admin/settings.php:
|
| 1838 |
msgid "Menus"
|
| 1839 |
msgstr ""
|
| 1840 |
|
| 1841 |
-
#: includes/admin/settings.php:
|
| 1842 |
msgid "Tag base"
|
| 1843 |
msgstr ""
|
| 1844 |
|
| 1845 |
-
#: includes/admin/settings.php:
|
| 1846 |
msgid "Category base"
|
| 1847 |
msgstr ""
|
| 1848 |
|
| 1849 |
-
#: includes/admin/settings.php:
|
| 1850 |
msgid "Forums base"
|
| 1851 |
msgstr ""
|
| 1852 |
|
| 1853 |
-
#: includes/admin/settings.php:
|
| 1854 |
msgid "Topics base"
|
| 1855 |
msgstr ""
|
| 1856 |
|
| 1857 |
-
#: includes/admin/settings.php:
|
| 1858 |
msgid "Forum slug"
|
| 1859 |
msgstr ""
|
| 1860 |
|
| 1861 |
-
#: includes/admin/settings.php:
|
| 1862 |
msgid "Topic slug"
|
| 1863 |
msgstr ""
|
| 1864 |
|
| 1865 |
-
#: includes/admin/settings.php:
|
| 1866 |
msgid "Reply slug"
|
| 1867 |
msgstr ""
|
| 1868 |
|
| 1869 |
-
#: includes/admin/settings.php:
|
| 1870 |
msgid "User base"
|
| 1871 |
msgstr ""
|
| 1872 |
|
| 1873 |
-
#: includes/admin/settings.php:
|
| 1874 |
msgid "View base"
|
| 1875 |
msgstr ""
|
| 1876 |
|
| 1877 |
-
#: includes/admin/settings.php:
|
| 1878 |
msgid "Topic tag slug"
|
| 1879 |
msgstr ""
|
| 1880 |
|
| 1881 |
-
#: includes/admin/settings.php:
|
| 1882 |
msgid "%s page"
|
| 1883 |
msgstr ""
|
| 1884 |
|
| 1885 |
-
#: includes/admin/settings.php:
|
| 1886 |
msgid "Possible %1$s conflict: %2$s"
|
| 1887 |
msgstr ""
|
| 1888 |
|
|
@@ -2764,27 +2769,29 @@ msgctxt "User viewing his/her own profile"
|
|
| 2764 |
msgid "Your"
|
| 2765 |
msgstr ""
|
| 2766 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2767 |
#: includes/common/template.php:2593
|
| 2768 |
-
msgid "%s
|
| 2769 |
msgstr ""
|
| 2770 |
|
| 2771 |
#: includes/common/template.php:2597
|
| 2772 |
-
msgid "%s
|
| 2773 |
msgstr ""
|
| 2774 |
|
| 2775 |
#: includes/common/template.php:2601
|
| 2776 |
-
|
| 2777 |
-
msgid "%s's Favorites"
|
| 2778 |
msgstr ""
|
| 2779 |
|
| 2780 |
#: includes/common/template.php:2605
|
| 2781 |
-
|
| 2782 |
-
msgid "%s's Subscriptions"
|
| 2783 |
msgstr ""
|
| 2784 |
|
| 2785 |
#: includes/common/template.php:2609
|
| 2786 |
-
|
| 2787 |
-
msgid "%s's Profile"
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
#: includes/common/template.php:2617
|
|
@@ -3136,7 +3143,7 @@ msgstr ""
|
|
| 3136 |
|
| 3137 |
#: includes/extend/buddypress/groups.php:335
|
| 3138 |
#: includes/extend/buddypress/groups.php:494
|
| 3139 |
-
#: includes/extend/buddypress/notifications.php:
|
| 3140 |
#: includes/forums/functions.php:118 includes/forums/functions.php:395
|
| 3141 |
#: includes/replies/functions.php:116 includes/replies/functions.php:518
|
| 3142 |
#: includes/replies/functions.php:1245 includes/topics/functions.php:122
|
|
@@ -3171,23 +3178,23 @@ msgstr ""
|
|
| 3171 |
msgid "Subscribed Topics"
|
| 3172 |
msgstr ""
|
| 3173 |
|
| 3174 |
-
#: includes/extend/buddypress/notifications.php:
|
| 3175 |
msgid "Topic Replies"
|
| 3176 |
msgstr ""
|
| 3177 |
|
| 3178 |
-
#: includes/extend/buddypress/notifications.php:
|
| 3179 |
msgid "You have %d new replies"
|
| 3180 |
msgstr ""
|
| 3181 |
|
| 3182 |
-
#: includes/extend/buddypress/notifications.php:
|
| 3183 |
msgid "You have %d new reply to %2$s from %3$s"
|
| 3184 |
msgstr ""
|
| 3185 |
|
| 3186 |
-
#: includes/extend/buddypress/notifications.php:
|
| 3187 |
msgid "You have %d new reply to %s"
|
| 3188 |
msgstr ""
|
| 3189 |
|
| 3190 |
-
#: includes/extend/buddypress/notifications.php:
|
| 3191 |
msgid ""
|
| 3192 |
"<strong>ERROR</strong>: You do not have permission to mark notifications for "
|
| 3193 |
"that user."
|
|
@@ -3325,66 +3332,66 @@ msgstr ""
|
|
| 3325 |
msgid "Parent Forum:"
|
| 3326 |
msgstr ""
|
| 3327 |
|
| 3328 |
-
#: includes/forums/template.php:
|
| 3329 |
#: includes/users/template.php:1058
|
| 3330 |
msgid "Subscribe"
|
| 3331 |
msgstr ""
|
| 3332 |
|
| 3333 |
-
#: includes/forums/template.php:
|
| 3334 |
#: includes/users/template.php:1059
|
| 3335 |
msgid "Unsubscribe"
|
| 3336 |
msgstr ""
|
| 3337 |
|
| 3338 |
-
#: includes/forums/template.php:
|
| 3339 |
msgid "%s topic"
|
| 3340 |
msgid_plural "%s topics"
|
| 3341 |
msgstr[0] ""
|
| 3342 |
msgstr[1] ""
|
| 3343 |
|
| 3344 |
-
#: includes/forums/template.php:
|
| 3345 |
msgid " (+ %d hidden)"
|
| 3346 |
msgstr ""
|
| 3347 |
|
| 3348 |
-
#: includes/forums/template.php:
|
| 3349 |
msgid "%s reply"
|
| 3350 |
msgid_plural "%s replies"
|
| 3351 |
msgstr[0] ""
|
| 3352 |
msgstr[1] ""
|
| 3353 |
|
| 3354 |
-
#: includes/forums/template.php:
|
| 3355 |
msgid ""
|
| 3356 |
"This category contains %1$s and %2$s, and was last updated by %3$s %4$s."
|
| 3357 |
msgstr ""
|
| 3358 |
|
| 3359 |
-
#: includes/forums/template.php:
|
| 3360 |
msgid "This forum contains %1$s and %2$s, and was last updated by %3$s %4$s."
|
| 3361 |
msgstr ""
|
| 3362 |
|
| 3363 |
-
#: includes/forums/template.php:
|
| 3364 |
msgid "This category contains %1$s, and was last updated by %2$s %3$s."
|
| 3365 |
msgstr ""
|
| 3366 |
|
| 3367 |
-
#: includes/forums/template.php:
|
| 3368 |
msgid "This forum contains %1$s, and was last updated by %2$s %3$s."
|
| 3369 |
msgstr ""
|
| 3370 |
|
| 3371 |
-
#: includes/forums/template.php:
|
| 3372 |
msgid "This category contains %1$s and %2$s."
|
| 3373 |
msgstr ""
|
| 3374 |
|
| 3375 |
-
#: includes/forums/template.php:
|
| 3376 |
msgid "This forum contains %1$s and %2$s."
|
| 3377 |
msgstr ""
|
| 3378 |
|
| 3379 |
-
#: includes/forums/template.php:
|
| 3380 |
msgid "This category contains %1$s."
|
| 3381 |
msgstr ""
|
| 3382 |
|
| 3383 |
-
#: includes/forums/template.php:
|
| 3384 |
msgid "This forum contains %1$s."
|
| 3385 |
msgstr ""
|
| 3386 |
|
| 3387 |
-
#: includes/forums/template.php:
|
| 3388 |
msgid "This forum is empty."
|
| 3389 |
msgstr ""
|
| 3390 |
|
|
@@ -4761,6 +4768,10 @@ msgstr ""
|
|
| 4761 |
msgid "in: <a href=\"%1$s\">%2$s</a>"
|
| 4762 |
msgstr ""
|
| 4763 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4764 |
#: templates/default/bbpress/user-details.php:29
|
| 4765 |
#: templates/default/bbpress/user-profile.php:15
|
| 4766 |
msgid "Profile"
|
|
@@ -4774,6 +4785,14 @@ msgstr ""
|
|
| 4774 |
msgid "%s's Replies Created"
|
| 4775 |
msgstr ""
|
| 4776 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4777 |
#: templates/default/bbpress/user-favorites.php:15
|
| 4778 |
msgid "Favorite Forum Topics"
|
| 4779 |
msgstr ""
|
|
@@ -4908,9 +4927,9 @@ msgstr ""
|
|
| 4908 |
msgid "bbPress"
|
| 4909 |
msgstr ""
|
| 4910 |
|
| 4911 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.5) #-#-#-#-#
|
| 4912 |
#. Plugin URI of the plugin/theme
|
| 4913 |
-
#. #-#-#-#-# plugin.pot (bbPress 2.5) #-#-#-#-#
|
| 4914 |
#. Author URI of the plugin/theme
|
| 4915 |
msgid "http://bbpress.org"
|
| 4916 |
msgstr ""
|
| 1 |
+
# Copyright (C) 2014 bbPress
|
| 2 |
# This file is distributed under the same license as the bbPress package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: bbPress 2.5.3\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bbpress\n"
|
| 7 |
+
"POT-Creation-Date: 2014-01-11 18:30:39+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 88 |
msgid "Topics with no replies"
|
| 89 |
msgstr ""
|
| 90 |
|
| 91 |
+
#: includes/admin/admin.php:200 includes/admin/functions.php:243
|
| 92 |
#: includes/admin/tools.php:34
|
| 93 |
msgid "Repair Forums"
|
| 94 |
msgstr ""
|
| 95 |
|
| 96 |
+
#: includes/admin/admin.php:201
|
| 97 |
msgid "Forum Repair"
|
| 98 |
msgstr ""
|
| 99 |
|
| 100 |
+
#: includes/admin/admin.php:210 includes/admin/functions.php:247
|
| 101 |
+
#: includes/admin/settings.php:1509
|
| 102 |
msgid "Import Forums"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
+
#: includes/admin/admin.php:211
|
| 106 |
msgid "Forum Import"
|
| 107 |
msgstr ""
|
| 108 |
|
| 109 |
+
#: includes/admin/admin.php:220 includes/admin/functions.php:251
|
| 110 |
#: includes/admin/tools.php:1132
|
| 111 |
msgid "Reset Forums"
|
| 112 |
msgstr ""
|
| 113 |
|
| 114 |
+
#: includes/admin/admin.php:221
|
| 115 |
msgid "Forum Reset"
|
| 116 |
msgstr ""
|
| 117 |
|
| 118 |
+
#: includes/admin/admin.php:235 includes/admin/admin.php:236
|
| 119 |
+
#: includes/admin/admin.php:246 includes/admin/admin.php:247
|
| 120 |
#: includes/admin/users.php:82 includes/common/widgets.php:662
|
| 121 |
#: includes/extend/buddypress/loader.php:42
|
| 122 |
#: includes/extend/buddypress/loader.php:175
|
| 127 |
msgid "Forums"
|
| 128 |
msgstr ""
|
| 129 |
|
| 130 |
+
#: includes/admin/admin.php:259 includes/admin/admin.php:260
|
| 131 |
+
#: includes/admin/admin.php:268 includes/admin/admin.php:269
|
| 132 |
msgid "Welcome to bbPress"
|
| 133 |
msgstr ""
|
| 134 |
|
| 135 |
+
#: includes/admin/admin.php:282 includes/admin/admin.php:283
|
| 136 |
+
#: includes/admin/admin.php:304 includes/admin/admin.php:305
|
| 137 |
+
#: includes/admin/admin.php:986 includes/admin/admin.php:1073
|
| 138 |
msgid "Update Forums"
|
| 139 |
msgstr ""
|
| 140 |
|
| 141 |
+
#: includes/admin/admin.php:512
|
| 142 |
msgid "Settings"
|
| 143 |
msgstr ""
|
| 144 |
|
| 145 |
+
#: includes/admin/admin.php:517
|
| 146 |
msgid "About"
|
| 147 |
msgstr ""
|
| 148 |
|
| 149 |
+
#: includes/admin/admin.php:532
|
| 150 |
msgid "Right Now in Forums"
|
| 151 |
msgstr ""
|
| 152 |
|
| 153 |
+
#: includes/admin/admin.php:549
|
| 154 |
msgid "About bbPress"
|
| 155 |
msgstr ""
|
| 156 |
|
| 157 |
+
#: includes/admin/admin.php:634
|
| 158 |
msgctxt "admin color scheme"
|
| 159 |
+
msgid "Mint"
|
| 160 |
msgstr ""
|
| 161 |
|
| 162 |
+
#: includes/admin/admin.php:643
|
| 163 |
+
msgctxt "admin color scheme"
|
| 164 |
+
msgid "Evergreen"
|
| 165 |
+
msgstr ""
|
| 166 |
+
|
| 167 |
+
#: includes/admin/admin.php:710 includes/admin/admin.php:734
|
| 168 |
msgid "%s - %s"
|
| 169 |
msgstr ""
|
| 170 |
|
| 171 |
+
#: includes/admin/admin.php:752 includes/admin/admin.php:829
|
| 172 |
msgid "Welcome to bbPress %s"
|
| 173 |
msgstr ""
|
| 174 |
|
| 175 |
+
#: includes/admin/admin.php:753
|
| 176 |
msgid ""
|
| 177 |
"Thank you for updating! bbPress %s is bundled up and ready to weather the "
|
| 178 |
"storm of users in your community!"
|
| 179 |
msgstr ""
|
| 180 |
|
| 181 |
+
#: includes/admin/admin.php:754 includes/admin/admin.php:831
|
| 182 |
msgid "Version %s"
|
| 183 |
msgstr ""
|
| 184 |
|
| 185 |
+
#: includes/admin/admin.php:758 includes/admin/admin.php:835
|
| 186 |
msgid "What’s New"
|
| 187 |
msgstr ""
|
| 188 |
|
| 189 |
+
#: includes/admin/admin.php:760 includes/admin/admin.php:837
|
| 190 |
msgid "Credits"
|
| 191 |
msgstr ""
|
| 192 |
|
| 193 |
+
#: includes/admin/admin.php:765
|
| 194 |
msgid "Forum Subscriptions"
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
+
#: includes/admin/admin.php:769
|
| 198 |
msgid "Subscribe to Forums"
|
| 199 |
msgstr ""
|
| 200 |
|
| 201 |
+
#: includes/admin/admin.php:770
|
| 202 |
msgid "Now your users can subscribe to new topics in specific forums."
|
| 203 |
msgstr ""
|
| 204 |
|
| 205 |
+
#: includes/admin/admin.php:774
|
| 206 |
msgid "Manage Subscriptions"
|
| 207 |
msgstr ""
|
| 208 |
|
| 209 |
+
#: includes/admin/admin.php:775
|
| 210 |
msgid ""
|
| 211 |
"Your users can manage all of their subscriptions in one convenient location."
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
+
#: includes/admin/admin.php:781
|
| 215 |
msgid "Converters"
|
| 216 |
msgstr ""
|
| 217 |
|
| 218 |
+
#: includes/admin/admin.php:785
|
| 219 |
msgid ""
|
| 220 |
"We’re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
|
| 221 |
"Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
|
| 224 |
"if you need to remove imported users."
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
+
#: includes/admin/admin.php:791
|
| 228 |
msgid "Theme Compatibility"
|
| 229 |
msgstr ""
|
| 230 |
|
| 231 |
+
#: includes/admin/admin.php:792
|
| 232 |
msgid "Better handling of styles and scripts in the template stack."
|
| 233 |
msgstr ""
|
| 234 |
|
| 235 |
+
#: includes/admin/admin.php:796
|
| 236 |
msgid "Polyglot support"
|
| 237 |
msgstr ""
|
| 238 |
|
| 239 |
+
#: includes/admin/admin.php:797
|
| 240 |
msgid "bbPress fully supports automatic translation updates."
|
| 241 |
msgstr ""
|
| 242 |
|
| 243 |
+
#: includes/admin/admin.php:801
|
| 244 |
msgid "User capabilities"
|
| 245 |
msgstr ""
|
| 246 |
|
| 247 |
+
#: includes/admin/admin.php:802
|
| 248 |
msgid ""
|
| 249 |
"Roles and capabilities have been swept through, cleaned up, and simplified."
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
+
#: includes/admin/admin.php:808 includes/admin/admin.php:912
|
| 253 |
msgid "Go to Forum Settings"
|
| 254 |
msgstr ""
|
| 255 |
|
| 256 |
+
#: includes/admin/admin.php:830
|
| 257 |
msgid ""
|
| 258 |
"Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
|
| 259 |
"take it for a lap or two around the block!"
|
| 260 |
msgstr ""
|
| 261 |
|
| 262 |
+
#: includes/admin/admin.php:841
|
| 263 |
msgid "bbPress is created by a worldwide swarm of busy, busy bees."
|
| 264 |
msgstr ""
|
| 265 |
|
| 266 |
+
#: includes/admin/admin.php:843
|
| 267 |
msgid "Project Leaders"
|
| 268 |
msgstr ""
|
| 269 |
|
| 270 |
+
#: includes/admin/admin.php:848
|
| 271 |
msgid "Founding Developer"
|
| 272 |
msgstr ""
|
| 273 |
|
| 274 |
+
#: includes/admin/admin.php:853
|
| 275 |
msgid "Lead Developer"
|
| 276 |
msgstr ""
|
| 277 |
|
| 278 |
+
#: includes/admin/admin.php:858 includes/admin/admin.php:877
|
| 279 |
msgid "Feature Developer"
|
| 280 |
msgstr ""
|
| 281 |
|
| 282 |
+
#: includes/admin/admin.php:863
|
| 283 |
msgid "Converter Specialist"
|
| 284 |
msgstr ""
|
| 285 |
|
| 286 |
+
#: includes/admin/admin.php:867
|
| 287 |
msgid "Contributing Developers"
|
| 288 |
msgstr ""
|
| 289 |
|
| 290 |
+
#: includes/admin/admin.php:872
|
| 291 |
msgid "Bug Testing"
|
| 292 |
msgstr ""
|
| 293 |
|
| 294 |
+
#: includes/admin/admin.php:881
|
| 295 |
msgid "Core Contributors to bbPress 2.5"
|
| 296 |
msgstr ""
|
| 297 |
|
| 298 |
+
#: includes/admin/admin.php:938 includes/admin/admin.php:960
|
| 299 |
msgid "Update Forum"
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
+
#: includes/admin/admin.php:949 includes/admin/admin.php:1003
|
| 303 |
msgid "All done!"
|
| 304 |
msgstr ""
|
| 305 |
|
| 306 |
+
#: includes/admin/admin.php:950 includes/admin/admin.php:1004
|
| 307 |
msgid "Go Back"
|
| 308 |
msgstr ""
|
| 309 |
|
| 310 |
+
#: includes/admin/admin.php:959
|
| 311 |
msgid ""
|
| 312 |
"You can update your forum through this page. Hit the link below to update."
|
| 313 |
msgstr ""
|
| 314 |
|
| 315 |
+
#: includes/admin/admin.php:1029
|
| 316 |
msgid ""
|
| 317 |
"Warning! Problem updating %1$s. Your server may not be able to connect to "
|
| 318 |
"sites running on it. Error message: <em>%2$s</em>"
|
| 319 |
msgstr ""
|
| 320 |
|
| 321 |
+
#: includes/admin/admin.php:1053
|
| 322 |
msgid ""
|
| 323 |
"If your browser doesn’t start loading the next page automatically, "
|
| 324 |
"click this link:"
|
| 325 |
msgstr ""
|
| 326 |
|
| 327 |
+
#: includes/admin/admin.php:1054
|
| 328 |
msgid "Next Forums"
|
| 329 |
msgstr ""
|
| 330 |
|
| 331 |
+
#: includes/admin/admin.php:1072
|
| 332 |
msgid ""
|
| 333 |
"You can update all the forums on your network through this page. It works by "
|
| 334 |
"calling the update script of each site automatically. Hit the link below to "
|
| 508 |
msgstr ""
|
| 509 |
|
| 510 |
#: includes/admin/forums.php:121 includes/admin/replies.php:132
|
| 511 |
+
#: includes/admin/settings.php:1549 includes/admin/topics.php:132
|
| 512 |
msgid "Overview"
|
| 513 |
msgstr ""
|
| 514 |
|
| 602 |
|
| 603 |
#: includes/admin/forums.php:163 includes/admin/forums.php:222
|
| 604 |
#: includes/admin/replies.php:177 includes/admin/replies.php:234
|
| 605 |
+
#: includes/admin/settings.php:1595 includes/admin/topics.php:178
|
| 606 |
#: includes/admin/topics.php:234
|
| 607 |
msgid "For more information:"
|
| 608 |
msgstr ""
|
| 609 |
|
| 610 |
#: includes/admin/forums.php:164 includes/admin/forums.php:223
|
| 611 |
#: includes/admin/replies.php:178 includes/admin/replies.php:235
|
| 612 |
+
#: includes/admin/settings.php:1596 includes/admin/topics.php:179
|
| 613 |
#: includes/admin/topics.php:235
|
| 614 |
msgid ""
|
| 615 |
"<a href=\"http://codex.bbpress.org\" target=\"_blank\">bbPress "
|
| 618 |
|
| 619 |
#: includes/admin/forums.php:165 includes/admin/forums.php:224
|
| 620 |
#: includes/admin/replies.php:179 includes/admin/replies.php:236
|
| 621 |
+
#: includes/admin/settings.php:1597 includes/admin/topics.php:180
|
| 622 |
#: includes/admin/topics.php:236
|
| 623 |
msgid ""
|
| 624 |
"<a href=\"http://bbpress.org/forums/\" target=\"_blank\">bbPress Support "
|
| 736 |
#: includes/admin/forums.php:410 includes/admin/settings.php:222
|
| 737 |
#: includes/admin/settings.php:243 includes/admin/topics.php:632
|
| 738 |
#: includes/extend/buddypress/activity.php:354
|
| 739 |
+
#: includes/forums/template.php:2602 includes/topics/template.php:47
|
| 740 |
#: includes/topics/template.php:48
|
| 741 |
#: templates/default/bbpress/content-statistics.php:27
|
| 742 |
#: templates/default/bbpress/loop-forums.php:20
|
| 747 |
#: includes/admin/settings.php:251 includes/admin/topics.php:634
|
| 748 |
#: includes/core/theme-compat.php:646
|
| 749 |
#: includes/extend/buddypress/activity.php:355
|
| 750 |
+
#: includes/forums/template.php:2666 includes/replies/template.php:47
|
| 751 |
#: includes/replies/template.php:48
|
| 752 |
#: templates/default/bbpress/content-statistics.php:32
|
| 753 |
#: templates/default/bbpress/loop-forums.php:21
|
| 774 |
msgid "Freshness"
|
| 775 |
msgstr ""
|
| 776 |
|
| 777 |
+
#: includes/admin/forums.php:463 includes/forums/template.php:601
|
| 778 |
msgid "No Topics"
|
| 779 |
msgstr ""
|
| 780 |
|
| 1363 |
msgid "Auto role"
|
| 1364 |
msgstr ""
|
| 1365 |
|
| 1366 |
+
#: includes/admin/settings.php:134 includes/admin/settings.php:1690
|
| 1367 |
msgid "Revisions"
|
| 1368 |
msgstr ""
|
| 1369 |
|
| 1495 |
msgid "Allow forum wide search"
|
| 1496 |
msgstr ""
|
| 1497 |
|
| 1498 |
+
#: includes/admin/settings.php:652
|
| 1499 |
msgid "Enable threaded (nested) replies %s levels deep"
|
| 1500 |
msgstr ""
|
| 1501 |
|
| 1502 |
+
#: includes/admin/settings.php:669
|
| 1503 |
msgid "Allow topic and reply revision logging"
|
| 1504 |
msgstr ""
|
| 1505 |
|
| 1506 |
+
#: includes/admin/settings.php:685
|
| 1507 |
msgid "Add toolbar & buttons to textareas to help with HTML formatting"
|
| 1508 |
msgstr ""
|
| 1509 |
|
| 1510 |
+
#: includes/admin/settings.php:698
|
| 1511 |
msgid "How your forum content is displayed within your existing theme."
|
| 1512 |
msgstr ""
|
| 1513 |
|
| 1514 |
+
#: includes/admin/settings.php:722
|
| 1515 |
msgid "%1$s - %2$s"
|
| 1516 |
msgstr ""
|
| 1517 |
|
| 1518 |
+
#: includes/admin/settings.php:728
|
| 1519 |
msgid "will serve all bbPress templates"
|
| 1520 |
msgstr ""
|
| 1521 |
|
| 1522 |
+
#: includes/admin/settings.php:732
|
| 1523 |
msgid "No template packages available."
|
| 1524 |
msgstr ""
|
| 1525 |
|
| 1526 |
+
#: includes/admin/settings.php:748
|
| 1527 |
msgid ""
|
| 1528 |
"Embed media (YouTube, Twitter, Flickr, etc...) directly into topics and "
|
| 1529 |
"replies"
|
| 1530 |
msgstr ""
|
| 1531 |
|
| 1532 |
+
#: includes/admin/settings.php:763
|
| 1533 |
msgid "How many topics and replies to show per page"
|
| 1534 |
msgstr ""
|
| 1535 |
|
| 1536 |
+
#: includes/admin/settings.php:779 includes/admin/settings.php:795
|
| 1537 |
+
#: includes/admin/settings.php:826 includes/admin/settings.php:842
|
| 1538 |
msgid "per page"
|
| 1539 |
msgstr ""
|
| 1540 |
|
| 1541 |
+
#: includes/admin/settings.php:810
|
| 1542 |
msgid "How many topics and replies to show per RSS page"
|
| 1543 |
msgstr ""
|
| 1544 |
|
| 1545 |
+
#: includes/admin/settings.php:860
|
| 1546 |
msgid ""
|
| 1547 |
"Customize your Forums root. Partner with a WordPress Page and use Shortcodes "
|
| 1548 |
"for more flexibility."
|
| 1549 |
msgstr ""
|
| 1550 |
|
| 1551 |
+
#: includes/admin/settings.php:893
|
| 1552 |
msgid "Prefix all forum content with the Forum Root slug (Recommended)"
|
| 1553 |
msgstr ""
|
| 1554 |
|
| 1555 |
+
#: includes/admin/settings.php:913
|
| 1556 |
msgid "Forum Index"
|
| 1557 |
msgstr ""
|
| 1558 |
|
| 1559 |
+
#: includes/admin/settings.php:916
|
| 1560 |
msgid "Topics by Freshness"
|
| 1561 |
msgstr ""
|
| 1562 |
|
| 1563 |
+
#: includes/admin/settings.php:943
|
| 1564 |
msgid "Customize your user profile slugs."
|
| 1565 |
msgstr ""
|
| 1566 |
|
| 1567 |
+
#: includes/admin/settings.php:1043
|
| 1568 |
msgid ""
|
| 1569 |
"Custom slugs for single forums, topics, replies, tags, views, and search."
|
| 1570 |
msgstr ""
|
| 1571 |
|
| 1572 |
+
#: includes/admin/settings.php:1161
|
| 1573 |
msgid "Forum settings for BuddyPress"
|
| 1574 |
msgstr ""
|
| 1575 |
|
| 1576 |
+
#: includes/admin/settings.php:1177
|
| 1577 |
msgid "Allow BuddyPress Groups to have their own forums"
|
| 1578 |
msgstr ""
|
| 1579 |
|
| 1580 |
+
#: includes/admin/settings.php:1194
|
| 1581 |
msgid "— Forum root —"
|
| 1582 |
msgstr ""
|
| 1583 |
|
| 1584 |
+
#: includes/admin/settings.php:1202
|
| 1585 |
msgid "is the parent for all group forums"
|
| 1586 |
msgstr ""
|
| 1587 |
|
| 1588 |
+
#: includes/admin/settings.php:1203
|
| 1589 |
msgid ""
|
| 1590 |
"Using the Forum Root is not recommended. Changing this does not move "
|
| 1591 |
"existing forums."
|
| 1592 |
msgstr ""
|
| 1593 |
|
| 1594 |
+
#: includes/admin/settings.php:1218
|
| 1595 |
msgid "Forum settings for Akismet"
|
| 1596 |
msgstr ""
|
| 1597 |
|
| 1598 |
+
#: includes/admin/settings.php:1235
|
| 1599 |
msgid "Allow Akismet to actively prevent forum spam."
|
| 1600 |
msgstr ""
|
| 1601 |
|
| 1602 |
+
#: includes/admin/settings.php:1258
|
| 1603 |
msgid "Forums Settings"
|
| 1604 |
msgstr ""
|
| 1605 |
|
| 1606 |
+
#: includes/admin/settings.php:1267
|
| 1607 |
#: templates/default/bbpress/form-user-edit.php:173
|
| 1608 |
msgid "Save Changes"
|
| 1609 |
msgstr ""
|
| 1610 |
|
| 1611 |
+
#: includes/admin/settings.php:1286
|
| 1612 |
msgid ""
|
| 1613 |
"Information about your previous forums database so that they can be "
|
| 1614 |
"converted. <strong>Backup your database before proceeding.</strong>"
|
| 1615 |
msgstr ""
|
| 1616 |
|
| 1617 |
+
#: includes/admin/settings.php:1316
|
| 1618 |
msgid "is the previous forum software"
|
| 1619 |
msgstr ""
|
| 1620 |
|
| 1621 |
+
#: includes/admin/settings.php:1330
|
| 1622 |
msgid "IP or hostname"
|
| 1623 |
msgstr ""
|
| 1624 |
|
| 1625 |
+
#: includes/admin/settings.php:1344
|
| 1626 |
msgid "Use default 3306 if unsure"
|
| 1627 |
msgstr ""
|
| 1628 |
|
| 1629 |
+
#: includes/admin/settings.php:1358
|
| 1630 |
msgid "User for your database connection"
|
| 1631 |
msgstr ""
|
| 1632 |
|
| 1633 |
+
#: includes/admin/settings.php:1372
|
| 1634 |
msgid "Password to access the database"
|
| 1635 |
msgstr ""
|
| 1636 |
|
| 1637 |
+
#: includes/admin/settings.php:1386
|
| 1638 |
msgid "Name of the database with your old forum data"
|
| 1639 |
msgstr ""
|
| 1640 |
|
| 1641 |
+
#: includes/admin/settings.php:1399
|
| 1642 |
msgid "Some optional parameters to help tune the conversion process."
|
| 1643 |
msgstr ""
|
| 1644 |
|
| 1645 |
+
#: includes/admin/settings.php:1413
|
| 1646 |
msgid ""
|
| 1647 |
"(If converting from BuddyPress Forums, use \"wp_bb_\" or your custom prefix)"
|
| 1648 |
msgstr ""
|
| 1649 |
|
| 1650 |
+
#: includes/admin/settings.php:1427
|
| 1651 |
msgid "rows to process at a time"
|
| 1652 |
msgstr ""
|
| 1653 |
|
| 1654 |
+
#: includes/admin/settings.php:1428
|
| 1655 |
msgid "Keep this low if you experience out-of-memory issues."
|
| 1656 |
msgstr ""
|
| 1657 |
|
| 1658 |
+
#: includes/admin/settings.php:1442
|
| 1659 |
msgid "second(s) delay between each group of rows"
|
| 1660 |
msgstr ""
|
| 1661 |
|
| 1662 |
+
#: includes/admin/settings.php:1443
|
| 1663 |
msgid "Keep this high to prevent too-many-connection issues."
|
| 1664 |
msgstr ""
|
| 1665 |
|
| 1666 |
+
#: includes/admin/settings.php:1457
|
| 1667 |
msgid "Start a fresh conversion from the beginning"
|
| 1668 |
msgstr ""
|
| 1669 |
|
| 1670 |
+
#: includes/admin/settings.php:1458
|
| 1671 |
msgid "You should clean old conversion information before starting over."
|
| 1672 |
msgstr ""
|
| 1673 |
|
| 1674 |
+
#: includes/admin/settings.php:1472
|
| 1675 |
msgid "Purge all information from a previously attempted import"
|
| 1676 |
msgstr ""
|
| 1677 |
|
| 1678 |
+
#: includes/admin/settings.php:1473
|
| 1679 |
msgid ""
|
| 1680 |
"Use this if an import failed and you want to remove that incomplete data."
|
| 1681 |
msgstr ""
|
| 1682 |
|
| 1683 |
+
#: includes/admin/settings.php:1487
|
| 1684 |
msgid "Attempt to import user accounts from previous forums"
|
| 1685 |
msgstr ""
|
| 1686 |
|
| 1687 |
+
#: includes/admin/settings.php:1488
|
| 1688 |
msgid ""
|
| 1689 |
"Non-bbPress passwords cannot be automatically converted. They will be "
|
| 1690 |
"converted as each user logs in."
|
| 1691 |
msgstr ""
|
| 1692 |
|
| 1693 |
+
#: includes/admin/settings.php:1518
|
| 1694 |
msgid "Start"
|
| 1695 |
msgstr ""
|
| 1696 |
|
| 1697 |
+
#: includes/admin/settings.php:1519
|
| 1698 |
msgid "Stop"
|
| 1699 |
msgstr ""
|
| 1700 |
|
| 1701 |
+
#: includes/admin/settings.php:1550
|
| 1702 |
msgid "This screen provides access to all of the Forums settings."
|
| 1703 |
msgstr ""
|
| 1704 |
|
| 1705 |
+
#: includes/admin/settings.php:1551
|
| 1706 |
msgid ""
|
| 1707 |
"Please see the additional help tabs for more information on each indiviual "
|
| 1708 |
"section."
|
| 1709 |
msgstr ""
|
| 1710 |
|
| 1711 |
+
#: includes/admin/settings.php:1557
|
| 1712 |
msgid "Main Settings"
|
| 1713 |
msgstr ""
|
| 1714 |
|
| 1715 |
+
#: includes/admin/settings.php:1558
|
| 1716 |
msgid "In the Main Settings you have a number of options:"
|
| 1717 |
msgstr ""
|
| 1718 |
|
| 1719 |
+
#: includes/admin/settings.php:1561
|
| 1720 |
msgid ""
|
| 1721 |
"You can choose to lock a post after a certain number of minutes. \"Locking "
|
| 1722 |
"post editing\" will prevent the author from editing some amount of time "
|
| 1723 |
"after saving a post."
|
| 1724 |
msgstr ""
|
| 1725 |
|
| 1726 |
+
#: includes/admin/settings.php:1562
|
| 1727 |
msgid ""
|
| 1728 |
"\"Throttle time\" is the amount of time required between posts from a single "
|
| 1729 |
"author. The higher the throttle time, the longer a user will need to wait "
|
| 1730 |
"between posting to the forum."
|
| 1731 |
msgstr ""
|
| 1732 |
|
| 1733 |
+
#: includes/admin/settings.php:1563
|
| 1734 |
msgid ""
|
| 1735 |
"Favorites are a way for users to save and later return to topics they favor. "
|
| 1736 |
"This is enabled by default."
|
| 1737 |
msgstr ""
|
| 1738 |
|
| 1739 |
+
#: includes/admin/settings.php:1564
|
| 1740 |
msgid ""
|
| 1741 |
"Subscriptions allow users to subscribe for notifications to topics that "
|
| 1742 |
"interest them. This is enabled by default."
|
| 1743 |
msgstr ""
|
| 1744 |
|
| 1745 |
+
#: includes/admin/settings.php:1565
|
| 1746 |
msgid ""
|
| 1747 |
"Topic-Tags allow users to filter topics between forums. This is enabled by "
|
| 1748 |
"default."
|
| 1749 |
msgstr ""
|
| 1750 |
|
| 1751 |
+
#: includes/admin/settings.php:1566
|
| 1752 |
msgid ""
|
| 1753 |
"\"Anonymous Posting\" allows guest users who do not have accounts on your "
|
| 1754 |
"site to both create topics as well as replies."
|
| 1755 |
msgstr ""
|
| 1756 |
|
| 1757 |
+
#: includes/admin/settings.php:1567
|
| 1758 |
msgid ""
|
| 1759 |
"The Fancy Editor brings the luxury of the Visual editor and HTML editor from "
|
| 1760 |
"the traditional WordPress dashboard into your theme."
|
| 1761 |
msgstr ""
|
| 1762 |
|
| 1763 |
+
#: includes/admin/settings.php:1568
|
| 1764 |
msgid ""
|
| 1765 |
"Auto-embed will embed the media content from a URL directly into the "
|
| 1766 |
"replies. For example: links to Flickr and YouTube."
|
| 1767 |
msgstr ""
|
| 1768 |
|
| 1769 |
+
#: includes/admin/settings.php:1571
|
| 1770 |
msgid ""
|
| 1771 |
"You must click the Save Changes button at the bottom of the screen for new "
|
| 1772 |
"settings to take effect."
|
| 1773 |
msgstr ""
|
| 1774 |
|
| 1775 |
+
#: includes/admin/settings.php:1577
|
| 1776 |
msgid "Per Page"
|
| 1777 |
msgstr ""
|
| 1778 |
|
| 1779 |
+
#: includes/admin/settings.php:1578
|
| 1780 |
msgid ""
|
| 1781 |
"Per Page settings allow you to control the number of topics and replies "
|
| 1782 |
"appear on each page."
|
| 1783 |
msgstr ""
|
| 1784 |
|
| 1785 |
+
#: includes/admin/settings.php:1579
|
| 1786 |
msgid ""
|
| 1787 |
"This is comparable to the WordPress \"Reading Settings\" page, where you can "
|
| 1788 |
"set the number of posts that should show on blog pages and in feeds."
|
| 1789 |
msgstr ""
|
| 1790 |
|
| 1791 |
+
#: includes/admin/settings.php:1580
|
| 1792 |
msgid ""
|
| 1793 |
"These are broken up into two separate groups: one for what appears in your "
|
| 1794 |
"theme, another for RSS feeds."
|
| 1795 |
msgstr ""
|
| 1796 |
|
| 1797 |
+
#: includes/admin/settings.php:1586
|
| 1798 |
msgid "Slugs"
|
| 1799 |
msgstr ""
|
| 1800 |
|
| 1801 |
+
#: includes/admin/settings.php:1587
|
| 1802 |
msgid ""
|
| 1803 |
"The Slugs section allows you to control the permalink structure for your "
|
| 1804 |
"forums."
|
| 1805 |
msgstr ""
|
| 1806 |
|
| 1807 |
+
#: includes/admin/settings.php:1588
|
| 1808 |
msgid ""
|
| 1809 |
"\"Archive Slugs\" are used as the \"root\" for your forums and topics. If "
|
| 1810 |
"you combine these values with existing page slugs, bbPress will attempt to "
|
| 1811 |
"output the most correct title and content."
|
| 1812 |
msgstr ""
|
| 1813 |
|
| 1814 |
+
#: includes/admin/settings.php:1589
|
| 1815 |
msgid ""
|
| 1816 |
"\"Single Slugs\" are used as a prefix when viewing an individual forum, "
|
| 1817 |
"topic, reply, user, or view."
|
| 1818 |
msgstr ""
|
| 1819 |
|
| 1820 |
+
#: includes/admin/settings.php:1590
|
| 1821 |
msgid ""
|
| 1822 |
"In the event of a slug collision with WordPress or BuddyPress, a warning "
|
| 1823 |
"will appear next to the problem slug(s)."
|
| 1824 |
msgstr ""
|
| 1825 |
|
| 1826 |
+
#: includes/admin/settings.php:1688
|
| 1827 |
#: templates/default/bbpress/loop-forums.php:21
|
| 1828 |
#: templates/default/bbpress/loop-replies.php:24
|
| 1829 |
#: templates/default/bbpress/loop-replies.php:66
|
| 1831 |
msgid "Posts"
|
| 1832 |
msgstr ""
|
| 1833 |
|
| 1834 |
+
#: includes/admin/settings.php:1689
|
| 1835 |
msgid "Pages"
|
| 1836 |
msgstr ""
|
| 1837 |
|
| 1838 |
+
#: includes/admin/settings.php:1691
|
| 1839 |
msgid "Attachments"
|
| 1840 |
msgstr ""
|
| 1841 |
|
| 1842 |
+
#: includes/admin/settings.php:1692
|
| 1843 |
msgid "Menus"
|
| 1844 |
msgstr ""
|
| 1845 |
|
| 1846 |
+
#: includes/admin/settings.php:1695
|
| 1847 |
msgid "Tag base"
|
| 1848 |
msgstr ""
|
| 1849 |
|
| 1850 |
+
#: includes/admin/settings.php:1698
|
| 1851 |
msgid "Category base"
|
| 1852 |
msgstr ""
|
| 1853 |
|
| 1854 |
+
#: includes/admin/settings.php:1703
|
| 1855 |
msgid "Forums base"
|
| 1856 |
msgstr ""
|
| 1857 |
|
| 1858 |
+
#: includes/admin/settings.php:1706
|
| 1859 |
msgid "Topics base"
|
| 1860 |
msgstr ""
|
| 1861 |
|
| 1862 |
+
#: includes/admin/settings.php:1709
|
| 1863 |
msgid "Forum slug"
|
| 1864 |
msgstr ""
|
| 1865 |
|
| 1866 |
+
#: includes/admin/settings.php:1712
|
| 1867 |
msgid "Topic slug"
|
| 1868 |
msgstr ""
|
| 1869 |
|
| 1870 |
+
#: includes/admin/settings.php:1715
|
| 1871 |
msgid "Reply slug"
|
| 1872 |
msgstr ""
|
| 1873 |
|
| 1874 |
+
#: includes/admin/settings.php:1718
|
| 1875 |
msgid "User base"
|
| 1876 |
msgstr ""
|
| 1877 |
|
| 1878 |
+
#: includes/admin/settings.php:1721
|
| 1879 |
msgid "View base"
|
| 1880 |
msgstr ""
|
| 1881 |
|
| 1882 |
+
#: includes/admin/settings.php:1724
|
| 1883 |
msgid "Topic tag slug"
|
| 1884 |
msgstr ""
|
| 1885 |
|
| 1886 |
+
#: includes/admin/settings.php:1736
|
| 1887 |
msgid "%s page"
|
| 1888 |
msgstr ""
|
| 1889 |
|
| 1890 |
+
#: includes/admin/settings.php:1755
|
| 1891 |
msgid "Possible %1$s conflict: %2$s"
|
| 1892 |
msgstr ""
|
| 1893 |
|
| 2769 |
msgid "Your"
|
| 2770 |
msgstr ""
|
| 2771 |
|
| 2772 |
+
#: includes/common/template.php:2588
|
| 2773 |
+
msgctxt "User viewing another users profile"
|
| 2774 |
+
msgid "%s's"
|
| 2775 |
+
msgstr ""
|
| 2776 |
+
|
| 2777 |
#: includes/common/template.php:2593
|
| 2778 |
+
msgid "%s Topics"
|
| 2779 |
msgstr ""
|
| 2780 |
|
| 2781 |
#: includes/common/template.php:2597
|
| 2782 |
+
msgid "%s Replies"
|
| 2783 |
msgstr ""
|
| 2784 |
|
| 2785 |
#: includes/common/template.php:2601
|
| 2786 |
+
msgid "%s Favorites"
|
|
|
|
| 2787 |
msgstr ""
|
| 2788 |
|
| 2789 |
#: includes/common/template.php:2605
|
| 2790 |
+
msgid "%s Subscriptions"
|
|
|
|
| 2791 |
msgstr ""
|
| 2792 |
|
| 2793 |
#: includes/common/template.php:2609
|
| 2794 |
+
msgid "%s Profile"
|
|
|
|
| 2795 |
msgstr ""
|
| 2796 |
|
| 2797 |
#: includes/common/template.php:2617
|
| 3143 |
|
| 3144 |
#: includes/extend/buddypress/groups.php:335
|
| 3145 |
#: includes/extend/buddypress/groups.php:494
|
| 3146 |
+
#: includes/extend/buddypress/notifications.php:161
|
| 3147 |
#: includes/forums/functions.php:118 includes/forums/functions.php:395
|
| 3148 |
#: includes/replies/functions.php:116 includes/replies/functions.php:518
|
| 3149 |
#: includes/replies/functions.php:1245 includes/topics/functions.php:122
|
| 3178 |
msgid "Subscribed Topics"
|
| 3179 |
msgstr ""
|
| 3180 |
|
| 3181 |
+
#: includes/extend/buddypress/notifications.php:48
|
| 3182 |
msgid "Topic Replies"
|
| 3183 |
msgstr ""
|
| 3184 |
|
| 3185 |
+
#: includes/extend/buddypress/notifications.php:51
|
| 3186 |
msgid "You have %d new replies"
|
| 3187 |
msgstr ""
|
| 3188 |
|
| 3189 |
+
#: includes/extend/buddypress/notifications.php:55
|
| 3190 |
msgid "You have %d new reply to %2$s from %3$s"
|
| 3191 |
msgstr ""
|
| 3192 |
|
| 3193 |
+
#: includes/extend/buddypress/notifications.php:57
|
| 3194 |
msgid "You have %d new reply to %s"
|
| 3195 |
msgstr ""
|
| 3196 |
|
| 3197 |
+
#: includes/extend/buddypress/notifications.php:165
|
| 3198 |
msgid ""
|
| 3199 |
"<strong>ERROR</strong>: You do not have permission to mark notifications for "
|
| 3200 |
"that user."
|
| 3332 |
msgid "Parent Forum:"
|
| 3333 |
msgstr ""
|
| 3334 |
|
| 3335 |
+
#: includes/forums/template.php:840 includes/topics/template.php:1846
|
| 3336 |
#: includes/users/template.php:1058
|
| 3337 |
msgid "Subscribe"
|
| 3338 |
msgstr ""
|
| 3339 |
|
| 3340 |
+
#: includes/forums/template.php:841 includes/topics/template.php:1847
|
| 3341 |
#: includes/users/template.php:1059
|
| 3342 |
msgid "Unsubscribe"
|
| 3343 |
msgstr ""
|
| 3344 |
|
| 3345 |
+
#: includes/forums/template.php:1239 includes/forums/template.php:1977
|
| 3346 |
msgid "%s topic"
|
| 3347 |
msgid_plural "%s topics"
|
| 3348 |
msgstr[0] ""
|
| 3349 |
msgstr[1] ""
|
| 3350 |
|
| 3351 |
+
#: includes/forums/template.php:1255 includes/topics/template.php:2120
|
| 3352 |
msgid " (+ %d hidden)"
|
| 3353 |
msgstr ""
|
| 3354 |
|
| 3355 |
+
#: includes/forums/template.php:1966 includes/topics/template.php:2104
|
| 3356 |
msgid "%s reply"
|
| 3357 |
msgid_plural "%s replies"
|
| 3358 |
msgstr[0] ""
|
| 3359 |
msgstr[1] ""
|
| 3360 |
|
| 3361 |
+
#: includes/forums/template.php:1986
|
| 3362 |
msgid ""
|
| 3363 |
"This category contains %1$s and %2$s, and was last updated by %3$s %4$s."
|
| 3364 |
msgstr ""
|
| 3365 |
|
| 3366 |
+
#: includes/forums/template.php:1988
|
| 3367 |
msgid "This forum contains %1$s and %2$s, and was last updated by %3$s %4$s."
|
| 3368 |
msgstr ""
|
| 3369 |
|
| 3370 |
+
#: includes/forums/template.php:1994
|
| 3371 |
msgid "This category contains %1$s, and was last updated by %2$s %3$s."
|
| 3372 |
msgstr ""
|
| 3373 |
|
| 3374 |
+
#: includes/forums/template.php:1996
|
| 3375 |
msgid "This forum contains %1$s, and was last updated by %2$s %3$s."
|
| 3376 |
msgstr ""
|
| 3377 |
|
| 3378 |
+
#: includes/forums/template.php:2006
|
| 3379 |
msgid "This category contains %1$s and %2$s."
|
| 3380 |
msgstr ""
|
| 3381 |
|
| 3382 |
+
#: includes/forums/template.php:2008
|
| 3383 |
msgid "This forum contains %1$s and %2$s."
|
| 3384 |
msgstr ""
|
| 3385 |
|
| 3386 |
+
#: includes/forums/template.php:2016
|
| 3387 |
msgid "This category contains %1$s."
|
| 3388 |
msgstr ""
|
| 3389 |
|
| 3390 |
+
#: includes/forums/template.php:2018
|
| 3391 |
msgid "This forum contains %1$s."
|
| 3392 |
msgstr ""
|
| 3393 |
|
| 3394 |
+
#: includes/forums/template.php:2022
|
| 3395 |
msgid "This forum is empty."
|
| 3396 |
msgstr ""
|
| 3397 |
|
| 4768 |
msgid "in: <a href=\"%1$s\">%2$s</a>"
|
| 4769 |
msgstr ""
|
| 4770 |
|
| 4771 |
+
#: templates/default/bbpress/user-details.php:29
|
| 4772 |
+
msgid "%s's Profile"
|
| 4773 |
+
msgstr ""
|
| 4774 |
+
|
| 4775 |
#: templates/default/bbpress/user-details.php:29
|
| 4776 |
#: templates/default/bbpress/user-profile.php:15
|
| 4777 |
msgid "Profile"
|
| 4785 |
msgid "%s's Replies Created"
|
| 4786 |
msgstr ""
|
| 4787 |
|
| 4788 |
+
#: templates/default/bbpress/user-details.php:48
|
| 4789 |
+
msgid "%s's Favorites"
|
| 4790 |
+
msgstr ""
|
| 4791 |
+
|
| 4792 |
+
#: templates/default/bbpress/user-details.php:58
|
| 4793 |
+
msgid "%s's Subscriptions"
|
| 4794 |
+
msgstr ""
|
| 4795 |
+
|
| 4796 |
#: templates/default/bbpress/user-favorites.php:15
|
| 4797 |
msgid "Favorite Forum Topics"
|
| 4798 |
msgstr ""
|
| 4927 |
msgid "bbPress"
|
| 4928 |
msgstr ""
|
| 4929 |
|
| 4930 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.5.3) #-#-#-#-#
|
| 4931 |
#. Plugin URI of the plugin/theme
|
| 4932 |
+
#. #-#-#-#-# plugin.pot (bbPress 2.5.3) #-#-#-#-#
|
| 4933 |
#. Author URI of the plugin/theme
|
| 4934 |
msgid "http://bbpress.org"
|
| 4935 |
msgstr ""
|
readme.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: matt, johnjamesjacoby, jmdodd, netweb
|
| 3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
| 4 |
Requires at least: 3.6
|
| 5 |
-
Tested up to: 3.
|
| 6 |
-
Stable tag: 2.5.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -42,6 +42,13 @@ We're keeping things as small and light as possible while still allowing for gre
|
|
| 42 |
|
| 43 |
== Changelog ==
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
= 2.5.2 =
|
| 46 |
* Fix BuddyPress (1.9.1) Notification integration
|
| 47 |
|
| 2 |
Contributors: matt, johnjamesjacoby, jmdodd, netweb
|
| 3 |
Tags: forums, discussion, support, theme, akismet, multisite
|
| 4 |
Requires at least: 3.6
|
| 5 |
+
Tested up to: 3.9
|
| 6 |
+
Stable tag: 2.5.3
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 42 |
|
| 43 |
== Changelog ==
|
| 44 |
|
| 45 |
+
= 2.5.3 =
|
| 46 |
+
* WordPress 3.8 support (dashicons, new color schemes)
|
| 47 |
+
* Fix dropdown selects in settings pages
|
| 48 |
+
* Fix accidental topic subscription removal on reply form
|
| 49 |
+
* Fix poor grammar in profile title element
|
| 50 |
+
* Fix admin area SSL support
|
| 51 |
+
|
| 52 |
= 2.5.2 =
|
| 53 |
* Fix BuddyPress (1.9.1) Notification integration
|
| 54 |
|
templates/default/bbpress/form-user-login.php
CHANGED
|
@@ -28,9 +28,9 @@
|
|
| 28 |
<label for="rememberme"><?php _e( 'Keep me signed in', 'bbpress' ); ?></label>
|
| 29 |
</div>
|
| 30 |
|
| 31 |
-
|
| 32 |
|
| 33 |
-
|
| 34 |
|
| 35 |
<button type="submit" tabindex="<?php bbp_tab_index(); ?>" name="user-submit" class="button submit user-submit"><?php _e( 'Log In', 'bbpress' ); ?></button>
|
| 36 |
|
| 28 |
<label for="rememberme"><?php _e( 'Keep me signed in', 'bbpress' ); ?></label>
|
| 29 |
</div>
|
| 30 |
|
| 31 |
+
<?php do_action( 'login_form' ); ?>
|
| 32 |
|
| 33 |
+
<div class="bbp-submit-wrapper">
|
| 34 |
|
| 35 |
<button type="submit" tabindex="<?php bbp_tab_index(); ?>" name="user-submit" class="button submit user-submit"><?php _e( 'Log In', 'bbpress' ); ?></button>
|
| 36 |
|
templates/default/bbpress/form-user-lost-pass.php
CHANGED
|
@@ -20,9 +20,9 @@
|
|
| 20 |
</p>
|
| 21 |
</div>
|
| 22 |
|
| 23 |
-
|
| 24 |
|
| 25 |
-
|
| 26 |
|
| 27 |
<button type="submit" tabindex="<?php bbp_tab_index(); ?>" name="user-submit" class="button submit user-submit"><?php _e( 'Reset My Password', 'bbpress' ); ?></button>
|
| 28 |
|
| 20 |
</p>
|
| 21 |
</div>
|
| 22 |
|
| 23 |
+
<?php do_action( 'login_form', 'resetpass' ); ?>
|
| 24 |
|
| 25 |
+
<div class="bbp-submit-wrapper">
|
| 26 |
|
| 27 |
<button type="submit" tabindex="<?php bbp_tab_index(); ?>" name="user-submit" class="button submit user-submit"><?php _e( 'Reset My Password', 'bbpress' ); ?></button>
|
| 28 |
|
