Changeset 32779
- Timestamp:
- 06/15/2015 03:47:54 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/updates.js
r32777 r32779 264 264 } 265 265 $message.removeClass( 'updating-message' ); 266 $message. text( wp.updates.l10n.updateFailed);266 $message.html( wp.updates.l10n.updateFailed.replace( '%s', response.error ) ); 267 267 wp.a11y.speak( wp.updates.l10n.updateFailed ); 268 268 -
trunk/src/wp-includes/script-loader.php
r32677 r32779 527 527 'updating' => __( 'Updating...' ), 528 528 'updated' => __( 'Updated!' ), 529 'updateFailed' => __( 'Update Failed' ), 529 /* translators: Error string for a failed update */ 530 'updateFailed' => __( 'Update Failed: %s' ), 530 531 /* translators: Plugin name and version */ 531 532 'updatingLabel' => __( 'Updating %s...' ),
Note: See TracChangeset
for help on using the changeset viewer.