Make WordPress Core


Ignore:
Timestamp:
09/03/2019 12:39:13 AM (5 years ago)
Author:
SergeyBiryukov
Message:

I18N: Capitalize translator comments consistently, add trailing punctuation.

Includes minor code layout fixes.

See #44360.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-recovery-mode-email-service.php

    r45447 r45932  
    7474
    7575        $err_message = sprintf(
    76             /* translators: 1. Last sent as a human time diff 2. Wait time as a human time diff. */
     76            /* translators: 1. Last sent as a human time diff, 2. Wait time as a human time diff. */
    7777            __( 'A recovery link was already sent %1$s ago. Please wait another %2$s before requesting a new email.' ),
    7878            human_time_diff( $last_sent ),
     
    181181        $email = array(
    182182            'to'      => $this->get_recovery_mode_email_address(),
    183             /* translators: %s: site name */
     183            /* translators: %s: Site title. */
    184184            'subject' => __( '[%s] Your Site is Experiencing a Technical Issue' ),
    185185            'message' => $message,
     
    261261            }
    262262
    263             /* translators: %s: plugin name */
     263            /* translators: %s: Plugin name. */
    264264            $cause = sprintf( __( 'In this case, WordPress caught an error with one of your plugins, %s.' ), $name );
    265265        } else {
     
    267267            $name  = $theme->exists() ? $theme->display( 'Name' ) : $extension['slug'];
    268268
    269             /* translators: %s: theme name */
     269            /* translators: %s: Theme name. */
    270270            $cause = sprintf( __( 'In this case, WordPress caught an error with your theme, %s.' ), $name );
    271271        }
Note: See TracChangeset for help on using the changeset viewer.