Make WordPress Core

Changeset 44417


Ignore:
Timestamp:
01/07/2019 01:48:32 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Importers: Use correct l10n variable in wp.updates.installImporterError and filesystem credentials dialog.

Missed in [40034].

Props afercia, abhayvishwakarma.
Fixes #45765.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/_enqueues/wp/updates.js

    r43347 r44417  
    719719            .removeClass( 'updating-message' )
    720720            .text( wp.updates.l10n.installNow )
    721             .attr( 'aria-label', wp.updates.l10n.installNowLabel.replace( '%s', pluginName ) );
     721            .attr( 'aria-label', wp.updates.l10n.pluginInstallNowLabel.replace( '%s', pluginName ) );
    722722
    723723        wp.a11y.speak( errorMessage, 'assertive' );
     
    19321932                        .removeClass( 'updating-message' )
    19331933                        .text( wp.updates.l10n.installNow )
    1934                         .attr( 'aria-label', wp.updates.l10n.installNowLabel.replace( '%s', pluginName ) );
     1934                        .attr( 'aria-label', wp.updates.l10n.pluginInstallNowLabel.replace( '%s', pluginName ) );
    19351935
    19361936                    wp.a11y.speak( wp.updates.l10n.updateCancel, 'polite' );
  • trunk/src/wp-admin/import.php

    r43571 r44417  
    6262<?php if ( ! empty( $_GET['invalid'] ) ) : ?>
    6363    <div class="error">
    64         <p><strong><?php _e( 'ERROR:' ); ?></strong> 
     64        <p><strong><?php _e( 'ERROR:' ); ?></strong>
    6565                                <?php
    6666                                /* translators: %s: importer slug */
     
    156156                        esc_attr( $data[0] ),
    157157                        /* translators: %s: Importer name */
    158                         esc_attr( sprintf( __( 'Install %s' ), $data[0] ) ),
     158                        esc_attr( sprintf( __( 'Install %s now' ), $data[0] ) ),
    159159                        __( 'Install Now' )
    160160                    );
Note: See TracChangeset for help on using the changeset viewer.