Make WordPress Core

Ticket #57675: 57675-translators-comment.diff

File 57675-translators-comment.diff, 604 bytes (added by costdev, 3 years ago)

WPCS: Move translators comment to just above the __() call.

  • src/wp-admin/options-general.php

    diff --git a/src/wp-admin/options-general.php b/src/wp-admin/options-general.php
    index 23a776b231..c79851badc 100644
    a b if ( ! is_multisite() ) {  
    8585        /* translators: %s: Network title. */
    8686        $sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name );
    8787}
    88 /* translators: %s: Site tagline example. */
    8988$tagline_description = sprintf(
     89        /* translators: %s: Site tagline example. */
    9090        __( 'In a few words, explain what this site is about. Example: “%s.”' ),
    9191        $sample_tagline
    9292);