Making WordPress.org

Ticket #4609: 4609.diff

File 4609.diff, 1.5 KB (added by garrett-eclipse, 6 years ago)

Initial implementation

  • wordpress.org/public_html/style/trac/wp-trac.js

     
    2020                'needs-dev-note' : 'Ticket needs a post on the development blog.',
    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.',
    2527                'has-screenshots' : 'Visual changes are documented with screenshots.',
     
    11131115                                                wpTrac.workflow.removeKeyword( 'has-privacy-review' );
    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' );
    11181126                                        } else if ( 'needs-screenshots' === keyword ) {