Changeset 6441 for trunk/src/includes/admin/settings.php
- Timestamp:
- 05/28/2017 07:32:21 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/settings.php
r6438 r6441 1658 1658 'id' => 'main_settings', 1659 1659 'title' => esc_html__( 'Main Settings', 'bbpress' ), 1660 'content' => '<p>' . esc_html__( ' In the Main Settings you havea number of options:', 'bbpress' ) . '</p>' .1660 'content' => '<p>' . esc_html__( 'The "Main Settings" section includes a number of options:', 'bbpress' ) . '</p>' . 1661 1661 '<p>' . 1662 1662 '<ul>' . … … 1674 1674 ) ); 1675 1675 1676 // Theme Package 1677 $current_screen->add_help_tab( array( 1678 'id' => 'theme_packages', 1679 'title' => esc_html__( 'Theme Packages', 'bbpress' ), 1680 'content' => '<p>' . esc_html__( 'The "Theme Packages" section allows you to choose which theme package should be used.', 'bbpress' ) . '</p>' . 1681 '<p>' . 1682 '<ul>' . 1683 '<li>' . esc_html__( 'The "bbPress Default" package is installed by default.', 'bbpress' ) . '</li>' . 1684 '<li>' . esc_html__( 'Some themes may choose to ignore this setting entirely.', 'bbpress' ) . '</li>' . 1685 '<li>' . esc_html__( 'Packages can be stacked to allow for intelligent fallbacks.', 'bbpress' ) . '</li>' . 1686 '</ul>' . 1687 '</p>' 1688 ) ); 1689 1676 1690 // Per Page 1677 1691 $current_screen->add_help_tab( array( 1678 1692 'id' => 'per_page', 1679 1693 'title' => esc_html__( 'Per Page', 'bbpress' ), 1680 'content' => '<p>' . esc_html__( 'Per Page settings allow you to control the number of topics and replies appear on each page.', 'bbpress' ) . '</p>' . 1681 '<p>' . esc_html__( 'This is comparable to the WordPress "Reading Settings" page, where you can set the number of posts that should show on blog pages and in feeds.', 'bbpress' ) . '</p>' . 1682 '<p>' . esc_html__( 'These are broken up into two separate groups: one for what appears in your theme, another for RSS feeds.', 'bbpress' ) . '</p>' 1694 'content' => '<p>' . esc_html__( 'The "Per Page" section allows you to control the number of topics and replies appear on each page.', 'bbpress' ) . '</p>' . 1695 '<ul>' . 1696 '<li>' . esc_html__( 'This is comparable to the WordPress "Reading Settings" page, where you can set the number of posts that should show on blog pages and in feeds.', 'bbpress' ) . '</li>' . 1697 '<li>' . esc_html__( 'These are broken up into two separate groups: one for what appears in your theme, another for RSS feeds.', 'bbpress' ) . '</li>' . 1698 '</ul>' . 1699 '<p>' 1683 1700 ) ); 1684 1701 1685 1702 // Slugs 1686 1703 $current_screen->add_help_tab( array( 1687 'id' => 'slu s',1704 'id' => 'slugs', 1688 1705 'title' => esc_html__( 'Slugs', 'bbpress' ), 1689 'content' => '<p>' . esc_html__( 'The Slugs section allows you to control the permalink structure for your forums.', 'bbpress' ) . '</p>' . 1690 '<p>' . esc_html__( '"Archive Slugs" are used as the "root" for your forums and topics. If you combine these values with existing page slugs, bbPress will attempt to output the most correct title and content.', 'bbpress' ) . '</p>' . 1691 '<p>' . esc_html__( '"Single Slugs" are used as a prefix when viewing an individual forum, topic, reply, user, or view.', 'bbpress' ) . '</p>' . 1692 '<p>' . esc_html__( 'In the event of a slug collision with WordPress or BuddyPress, a warning will appear next to the problem slug(s).', 'bbpress' ) . '</p>' 1706 'content' => '<p>' . esc_html__( 'The "Slugs" section allows you to control the permalink structure for your forums.', 'bbpress' ) . '</p>' . 1707 '<ul>' . 1708 '<li>' . esc_html__( '"Archive Slugs" are used as the "root" for your forums and topics. If you combine these values with existing page slugs, bbPress will attempt to output the most correct title and content.', 'bbpress' ) . '</li>' . 1709 '<li>' . esc_html__( '"Single Slugs" are used as a prefix when viewing an individual forum, topic, reply, user, or view.', 'bbpress' ) . '</li>' . 1710 '<li>' . esc_html__( 'In the event of a slug collision with WordPress or BuddyPress, a warning will appear next to the problem slug(s).', 'bbpress' ) . '</li>' . 1711 '</ul>' . 1712 '<p>' 1693 1713 ) ); 1694 1714
Note: See TracChangeset
for help on using the changeset viewer.