Index: trunk/extensions/Translate/MessageCollection.php |
— | — | @@ -595,8 +595,7 @@ |
596 | 596 | * @param $dbtype One of DB_* constants. |
597 | 597 | */ |
598 | 598 | protected function loadReviewInfo( array $keys, $dbtype = DB_SLAVE ) { |
599 | | - global $wgTranslateMessageReview; |
600 | | - if ( $this->dbReviewData !== null || !$wgTranslateMessageReview ) { |
| 599 | + if ( $this->dbReviewData !== null ) { |
601 | 600 | return; |
602 | 601 | } |
603 | 602 | |
Index: trunk/extensions/Translate/Translate.php |
— | — | @@ -554,9 +554,6 @@ |
555 | 555 | */ |
556 | 556 | $wgTranslateYamlLibrary = 'spyc'; |
557 | 557 | |
558 | | -# ==== Features in development ==== |
559 | | -$wgTranslateMessageReview = false; |
560 | | - |
561 | 558 | /** @cond cli_support */ |
562 | 559 | if ( !defined( 'TRANSLATE_CLI' ) ) { |
563 | 560 | function STDOUT() { } |
Index: trunk/extensions/Translate/TranslateHooks.php |
— | — | @@ -183,10 +183,7 @@ |
184 | 184 | $updater->addExtensionUpdate( array( 'addTable', 'translate_groupstats', "$dir/translate_groupstats.sql", true ) ); |
185 | 185 | $updater->addExtensionUpdate( array( 'addIndex', 'translate_sections', 'trs_page_order', "$dir/translate_sections-indexchange.sql", true ) ); |
186 | 186 | $updater->addExtensionUpdate( array( 'dropIndex', 'translate_sections', 'trs_page', "$dir/translate_sections-indexchange2.sql", true ) ); |
187 | | - global $wgTranslateMessageReview; |
188 | | - if ( $wgTranslateMessageReview ) { |
189 | | - $updater->addExtensionUpdate( array( 'addTable', 'translate_reviews', "$dir/translate_reviews.sql", true ) ); |
190 | | - } |
| 187 | + $updater->addExtensionUpdate( array( 'addTable', 'translate_reviews', "$dir/translate_reviews.sql", true ) ); |
191 | 188 | |
192 | 189 | return true; |
193 | 190 | } |
Index: trunk/extensions/Translate/README |
— | — | @@ -29,6 +29,10 @@ |
30 | 30 | http://translatewiki.net/docs/Translate/html/ |
31 | 31 | |
32 | 32 | == Change log == |
| 33 | +* 2011-10-28 |
| 34 | +- Message review feature, available to users in translate-proofr group |
| 35 | +- Message collections can now have properties and allow filtering on them |
| 36 | + This is still work in progress and is likely to get improvements over time |
33 | 37 | * 2011-10-14 |
34 | 38 | - New API module: messagetranslations |
35 | 39 | * 2011-10-12 |