diff --git a/wordpress.org/public_html/style/trac/wp-trac.js b/wordpress.org/public_html/style/trac/wp-trac.js
index 10d0be6c3..dc734ea36 100644
a
|
b
|
var wpTrac, coreKeywordList, gardenerKeywordList, reservedTerms, coreFocusesList |
15 | 15 | 'needs-design' : 'Ticket needs design.', |
16 | 16 | 'ui-feedback' : 'Feedback is needed from the user interface perspective, generally from the UI team.', |
17 | 17 | 'ux-feedback' : 'Feedback is needed from the user experience perspective, generally from a UX lead.', |
| 18 | 'needs-privacy-review' : 'A review is requested from #core-privacy with regards to the problem or the solution.', |
| 19 | 'has-privacy-review' : 'A review has been given from #core-privacy with regards to the problem or the solution.', |
18 | 20 | 'has-unit-tests' : 'Proposed solution has unit test coverage.', |
19 | 21 | 'needs-unit-tests' : 'Ticket has a particular need for unit tests.', |
20 | 22 | 'needs-dev-note' : 'Ticket needs a post on the development blog.', |
… |
… |
var wpTrac, coreKeywordList, gardenerKeywordList, reservedTerms, coreFocusesList |
989 | 991 | wpTrac.workflow.removeKeyword( 'has-unit-tests' ); |
990 | 992 | } |
991 | 993 | |
| 994 | if ( 'has-privacy-review' === keyword ) { |
| 995 | wpTrac.workflow.removeKeyword( 'needs-privacy-review' ); |
| 996 | } else if ( 'needs-privacy-review' === keyword ) { |
| 997 | wpTrac.workflow.removeKeyword( 'has-privacy-review' ); |
| 998 | } |
| 999 | |
992 | 1000 | if ( 'has-screenshots' === keyword ) { |
993 | 1001 | wpTrac.workflow.removeKeyword( 'needs-screenshots' ); |
994 | 1002 | } else if ( 'needs-screenshots' === keyword ) { |