Make WordPress Core


Ignore:
Timestamp:
01/31/2017 09:26:52 AM (8 years ago)
Author:
SergeyBiryukov
Message:

Update/Install: Give context to some more install/update strings to allow for differentiation between theme and plugin translations.

Fixes #39747. See #37290.

File:
1 edited

Legend:

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

    r40033 r40034  
    638638                'noItemsSelected'            => __( 'Please select at least one item to perform this action on.' ),
    639639                'updating'                   => __( 'Updating...' ), // No ellipsis.
    640                 'updated'                    => __( 'Updated!' ),
     640                'pluginUpdated'              => _x( 'Updated!', 'plugin' ),
     641                'themeUpdated'               => _x( 'Updated!', 'theme' ),
    641642                'update'                     => __( 'Update' ),
    642643                'updateNow'                  => __( 'Update Now' ),
    643644                /* translators: %s: Plugin name and version */
    644                 'updateNowLabel'             => __( 'Update %s now' ),
     645                'pluginUpdateNowLabel'       => _x( 'Update %s now', 'plugin' ),
    645646                'updateFailedShort'          => __( 'Update Failed!' ),
    646647                /* translators: %s: Error string for a failed update */
    647648                'updateFailed'               => __( 'Update Failed: %s' ),
    648649                /* translators: %s: Plugin name and version */
    649                 'updatingLabel'              => __( 'Updating %s...' ), // No ellipsis.
     650                'pluginUpdatingLabel'        => _x( 'Updating %s...', 'plugin' ), // No ellipsis.
    650651                /* translators: %s: Plugin name and version */
    651                 'updatedLabel'               => __( '%s updated!' ),
     652                'pluginUpdatedLabel'         => _x( '%s updated!', 'plugin' ),
    652653                /* translators: %s: Plugin name and version */
    653                 'updateFailedLabel'          => __( '%s update failed' ),
     654                'pluginUpdateFailedLabel'    => _x( '%s update failed', 'plugin' ),
    654655                /* translators: Accessibility text */
    655656                'updatingMsg'                => __( 'Updating... please wait.' ), // No ellipsis.
     
    661662                'installNow'                 => __( 'Install Now' ),
    662663                /* translators: %s: Plugin name */
    663                 'installNowLabel'            => __( 'Install %s now' ),
     664                'pluginInstallNowLabel'      => _x( 'Install %s now', 'plugin' ),
    664665                'installing'                 => __( 'Installing...' ),
    665                 'installed'                  => __( 'Installed!' ),
     666                'pluginInstalled'            => _x( 'Installed!', 'plugin' ),
     667                'themeInstalled'             => _x( 'Installed!', 'theme' ),
    666668                'installFailedShort'         => __( 'Install Failed!' ),
    667669                /* translators: %s: Error string for a failed installation */
Note: See TracChangeset for help on using the changeset viewer.