diff options
author | Sergey Biryukov <sergeybiryukov@git.wordpress.org> | 2020-02-10 04:10:09 +0000 |
---|---|---|
committer | Sergey Biryukov <sergeybiryukov@git.wordpress.org> | 2020-02-10 04:10:09 +0000 |
commit | 023d4b2796a1353779e595a59e4043f353e070dd (patch) | |
tree | 4f01aec4c875b10e0e97a8e5532fc34b78786cff /src/js/_enqueues/admin/edit-comments.js | |
parent | 5302cd651411b61e078d25e7f4e37004abac8695 (diff) | |
download | wordpress-023d4b2796a1353779e595a59e4043f353e070dd.tar.gz wordpress-023d4b2796a1353779e595a59e4043f353e070dd.zip |
Administration: Capitalize `Trash` consistently in various messages and comments.
When used as a noun referring to the "virtual" place, `Trash` should be capitalized.
Props garrett-eclipse, aandrewdixon, Presskopp.
Fixes #45317.
git-svn-id: https://develop.svn.wordpress.org/trunk@47233 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'src/js/_enqueues/admin/edit-comments.js')
-rw-r--r-- | src/js/_enqueues/admin/edit-comments.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/_enqueues/admin/edit-comments.js b/src/js/_enqueues/admin/edit-comments.js index 1a64268b6a..88004e913d 100644 --- a/src/js/_enqueues/admin/edit-comments.js +++ b/src/js/_enqueues/admin/edit-comments.js @@ -538,7 +538,7 @@ window.setCommentsList = function() { // The comment is currently pending. } else if ( unapproved ) { pendingDiff = -1; - // The comment was in the trash. + // The comment was in the Trash. } else if ( trashed ) { trashDiff = -1; } |