r110361 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r110360
|
r110361
|
r110362
>
Date:
07:28, 31 January 2012
Author:
nikerabbit
Status:
ok
Tags:
i18nreview
Comment:
Don't include discouraged groups in aggregate message groups. Causes mismatch of untranslated messages in stats and on the translation view.
Modified paths:
/trunk/extensions/Translate/Groups.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/Translate/Groups.php
—
—
@@ -619,6 +619,10 @@
620
620
continue;
621
621
}
622
622
623
+ if ( MessageGroups::getPriority( $group ) === 'discouraged' ) {
624
+ continue;
625
+ }
626
+
623
627
$groups[$id] = $group;
624
628
}
625
629
Status & tagging log
08:23, 31 January 2012
MaxSem
(
talk
|
contribs
)
changed the
status
of r110361
[
removed:
new
added:
ok]
07:38, 31 January 2012
Nikerabbit
(
talk
|
contribs
)
changed the
tags
for r110361
[
added:
i18nreview]