Skip to content

Commit bd3f983

Browse files
committed
Media: Fix uploading media string.
Replace the incorrect three stops with an appropriate ellipsis in the string. Follow up to [62104]. Props presskopp, joedolson. See #64883. git-svn-id: https://develop.svn.wordpress.org/trunk@62105 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 6607b4d commit bd3f983

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/js/media/views/attachment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Attachment = View.extend(/** @lends wp.media.view.Attachment.prototype */{
2121
return {
2222
'tabIndex': 0,
2323
'role': 'checkbox',
24-
'aria-label': this.model.get( 'title' ) || wp.i18n.__( 'uploading...' ),
24+
'aria-label': this.model.get( 'title' ) || wp.i18n.__( 'uploading' ),
2525
'aria-checked': false,
2626
'data-id': this.model.get( 'id' )
2727
};

0 commit comments

Comments
 (0)