Skip to:
Content

bbPress.org


Ignore:
Timestamp:
07/17/2015 11:49:26 PM (9 years ago)
Author:
johnjamesjacoby
Message:

Strings: prefer — over parenthesis when wrapping "No" style results.

This changeset normalizes the strings used to pick the parent of a forum, topic, and reply. The — may be changed later to improve localization, but for now this provides a good balance of visual separation and familiar UX.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/topics.php

    r5850 r5868  
    227227                '<p>' . __( 'Select the attributes that your topic should have:', 'bbpress' ) . '</p>' .
    228228                '<ul>' .
    229                     '<li>' . __( '<strong>Forum</strong> dropdown determines the parent forum that the topic belongs to. Select the forum or category from the dropdown, or leave the default (No Forum) to post the topic without an assigned forum.', 'bbpress' ) . '</li>' .
     229                    '<li>' . __( '<strong>Forum</strong> dropdown determines the parent forum that the topic belongs to. Select the forum or category from the dropdown, or leave the default "No forum" to post the topic without an assigned forum.', 'bbpress' ) . '</li>' .
    230230                    '<li>' . __( '<strong>Topic Type</strong> dropdown indicates the sticky status of the topic. Selecting the super sticky option would stick the topic to the front of your forums, i.e. the topic index, sticky option would stick the topic to its respective forum. Selecting normal would not stick the topic anywhere.', 'bbpress' ) . '</li>' .
    231231                '</ul>'
     
    780780
    781781                } else {
    782                     esc_html_e( '(No Forum)', 'bbpress' );
     782                    esc_html_e( '&mdash; No forum &mdash;', 'bbpress' );
    783783                }
    784784
Note: See TracChangeset for help on using the changeset viewer.