Skip to:
Content

bbPress.org

Changeset 5940


Ignore:
Timestamp:
10/16/2015 01:30:09 PM (10 years ago)
Author:
netweb
Message:

i18n: Merge similar translation strings

This changset brings consistency to failed warning strings in our repair tools and removes extra whitespace in two strings. This reduces the number of strings that our translation volunteers need to translate.

Props ramiy. Fixes #2880

Location:
trunk/src
Files:
3 edited

Legend:

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

    r5916 r5940  
    22152215    // Stores messages
    22162216    $messages = array();
    2217     $failed   = __( 'Failed',   'bbpress' );
     2217    $failed   = __( 'Failed!',   'bbpress' );
    22182218    $success  = __( 'Success!', 'bbpress' );
    22192219
  • trunk/src/templates/default/bbpress/loop-search-forum.php

    r5689 r5940  
    2020        <?php do_action( 'bbp_theme_before_forum_title' ); ?>
    2121
    22         <h3><?php esc_html_e( 'Forum: ', 'bbpress' ); ?><a href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a></h3>
     22        <h3><?php esc_html_e( 'Forum:', 'bbpress' ); ?>
     23        <a href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a></h3>
    2324
    2425        <?php do_action( 'bbp_theme_after_forum_title' ); ?>
  • trunk/src/templates/default/bbpress/loop-search-topic.php

    r5689 r5940  
    2020        <?php do_action( 'bbp_theme_before_topic_title' ); ?>
    2121
    22         <h3><?php esc_html_e( 'Topic: ', 'bbpress' ); ?>
     22        <h3><?php esc_html_e( 'Topic:', 'bbpress' ); ?>
    2323        <a href="<?php bbp_topic_permalink(); ?>"><?php bbp_topic_title(); ?></a></h3>
    2424
Note: See TracChangeset for help on using the changeset viewer.