Make WordPress Core

Changeset 43831


Ignore:
Timestamp:
10/26/2018 08:14:49 AM (6 years ago)
Author:
pento
Message:

Script Loader: Add translator comments and remove textdomains.

The inline script for wp-date incorrectly included a textdomain, and lacked translator comments.

Props mukesh27.
Fixes #45191, #45162.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.0/src/wp-includes/script-loader.php

    r43818 r43831  
    403403                        'relative'      => array(
    404404                            /* translators: %s: duration */
    405                             'future' => __( '%s from now', 'default' ),
     405                            'future' => __( '%s from now' ),
    406406                            /* translators: %s: duration */
    407                             'past'   => __( '%s ago', 'default' ),
     407                            'past'   => __( '%s ago' ),
    408408                        ),
    409409                    ),
    410410                    'formats'  => array(
    411                         'time'                => get_option( 'time_format', __( 'g:i a', 'default' ) ),
    412                         'date'                => get_option( 'date_format', __( 'F j, Y', 'default' ) ),
    413                         'datetime'            => __( 'F j, Y g:i a', 'default' ),
    414                         'datetimeAbbreviated' => __( 'M j, Y g:i a', 'default' ),
     411                        /* translators: Time format, see https://secure.php.net/date */
     412                        'time'                => get_option( 'time_format', __( 'g:i a' ) ),
     413                        /* translators: Date format, see https://secure.php.net/date */
     414                        'date'                => get_option( 'date_format', __( 'F j, Y' ) ),
     415                        /* translators: Date/Time format, see https://secure.php.net/date */
     416                        'datetime'            => __( 'F j, Y g:i a' ),
     417                        /* translators: Abbreviated date/time format, see https://secure.php.net/date */
     418                        'datetimeAbbreviated' => __( 'M j, Y g:i a' ),
    415419                    ),
    416420                    'timezone' => array(
Note: See TracChangeset for help on using the changeset viewer.