Make WordPress Core


Ignore:
Timestamp:
11/21/2016 02:45:53 AM (8 years ago)
Author:
johnbillion
Message:

I18n: Introduce more translator comments for strings that contain placeholders but don't have an accompanying translator comment.

See #38882

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/dashboard.php

    r38825 r39326  
    393393    $c_blogs = get_blog_count();
    394394
     395    /* translators: 1: Number of users on the network */
    395396    $user_text = sprintf( _n( '%s user', '%s users', $c_users ), number_format_i18n( $c_users ) );
     397    /* translators: 1: Number of sites on the network */
    396398    $blog_text = sprintf( _n( '%s site', '%s sites', $c_blogs ), number_format_i18n( $c_blogs ) );
    397399
     400    /* translators: 1: Text indicating the number of sites on the network, 2: Text indicating the number of users on the network */
    398401    $sentence = sprintf( __( 'You have %1$s and %2$s.' ), $blog_text, $user_text );
    399402
Note: See TracChangeset for help on using the changeset viewer.