Index: trunk/extensions/Translate/scripts/export.php |
— | — | @@ -109,12 +109,17 @@ |
110 | 110 | |
111 | 111 | foreach ( $groups as $groupId => $group ) { |
112 | 112 | if ( !$group instanceof MessageGroup ) { |
113 | | - STDERR( "Invalid group: " . $groupId ); |
| 113 | + STDERR( "Unknown message group $groupId" ); |
114 | 114 | exit( 1 ); |
115 | 115 | } |
116 | 116 | |
117 | | - STDERR( 'Exporting ' . $groupId ); |
| 117 | + if ( $group->isMeta() ) { |
| 118 | + STDERR( "Skipping meta message group $groupId" ); |
| 119 | + continue; |
| 120 | + } |
118 | 121 | |
| 122 | + STDERR( "Exporting $groupId" ); |
| 123 | + |
119 | 124 | $langs = $reqLangs; |
120 | 125 | if ( $threshold ) { |
121 | 126 | $stats = MessageGroupStats::forGroup( $groupId ); |