Making WordPress.org

Changeset 9053


Ignore:
Timestamp:
07/17/2019 09:55:13 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Trac: Add has-copy-review and needs-copy-review keywords.

Props garrett-eclipse.
Fixes #4609.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js

    r9048 r9053  
    2121        'has-privacy-review' : 'Input has been given from the core privacy team reviewing the privacy implications of the suggested changes.',
    2222        'needs-privacy-review' : 'Input is needed from the core privacy team with regards to the privacy implications of the suggested changes.',
     23        'has-copy-review' : 'Input has been given from a copywriter reviewing the suggested verbiage changes.',
     24        'needs-copy-review' : 'Input is needed from a copywriter with regards to the suggested verbiage changes.',
    2325        'needs-docs' : 'Inline documentation is needed.',
    2426        'needs-codex' : 'The Codex needs to be updated or expanded.',
     
    11141116                    }
    11151117
     1118                    if ( 'has-copy-review' === keyword ) {
     1119                        wpTrac.workflow.removeKeyword( 'needs-copy-review' );
     1120                    } else if ( 'needs-copy-review' === keyword ) {
     1121                        wpTrac.workflow.removeKeyword( 'has-copy-review' );
     1122                    }
     1123
    11161124                    if ( 'has-screenshots' === keyword ) {
    11171125                        wpTrac.workflow.removeKeyword( 'needs-screenshots' );
Note: See TracChangeset for help on using the changeset viewer.