Index: trunk/extensions/Translate/scripts/export.php |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | } |
50 | 50 | |
51 | 51 | if ( !is_writable( $options['target'] ) ) { |
52 | | - STDERR( "Target directory is not writable" ); |
| 52 | + STDERR( "Target directory is not writable (" . $options['target'] . ")" ); |
53 | 53 | exit( 1 ); |
54 | 54 | } |
55 | 55 | if ( isset( $options['threshold'] ) && intval( $options['threshold'] ) ) { |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | $group = MessageGroups::getGroup( $options['group'] ); |
64 | 64 | |
65 | 65 | if ( !$group instanceof MessageGroup ) { |
66 | | - STDERR( "Invalid group" ); |
| 66 | + STDERR( "Invalid group: " . $group ); |
67 | 67 | exit( 1 ); |
68 | 68 | } |
69 | 69 | |