Index: trunk/extensions/Translate/TranslatePage.php |
— | — | @@ -394,11 +394,11 @@ |
395 | 395 | $hasSubblocks = is_array($blocks) && count($blocks); |
396 | 396 | |
397 | 397 | if ( $desc !== null || $hasSubblocks ) { |
398 | | - $out = "\n<fieldset>\n"; |
| 398 | + $out = "\n<fieldset class=\"mw-sp-translate-group\">\n"; |
399 | 399 | $out .= Xml::tags( 'legend', null, $label ); |
400 | 400 | $out .= $desc; |
401 | 401 | } else { |
402 | | - $out = "\n<ul><li>$label</li></ul><hr />"; |
| 402 | + $out = "\n<div class=\"mw-sp-translate-group\">$label</div>"; |
403 | 403 | } |
404 | 404 | |
405 | 405 | if ( $hasSubblocks ) { |
Index: trunk/extensions/Translate/Translate.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
13 | 13 | */ |
14 | 14 | |
15 | | -define( 'TRANSLATE_VERSION', '9 (2008-06-29:2)' ); |
| 15 | +define( 'TRANSLATE_VERSION', '9 (2008-06-30:1)' ); |
16 | 16 | |
17 | 17 | $wgExtensionCredits['specialpage'][] = array( |
18 | 18 | 'name' => 'Translate', |
Index: trunk/extensions/Translate/Translate.css |
— | — | @@ -44,4 +44,15 @@ |
45 | 45 | line-height: normal; |
46 | 46 | } |
47 | 47 | |
| 48 | +fieldset.mw-sp-translate-group { |
| 49 | + border: 1px dotted black; |
| 50 | +} |
48 | 51 | |
| 52 | +div.mw-sp-translate-group { |
| 53 | + margin-left: 0.875em; |
| 54 | + border-bottom: 1px dotted black; |
| 55 | +} |
| 56 | + |
| 57 | +.mw-sp-translate-group legend, div.mw-sp-translate-group { |
| 58 | + font-weight: bold; |
| 59 | +} |
\ No newline at end of file |
Index: trunk/extensions/Translate/README |
— | — | @@ -34,6 +34,7 @@ |
35 | 35 | |
36 | 36 | == Changes in version 10 == |
37 | 37 | |
| 38 | +* 2008-06-30:1 More contrast in the new default page for Special translate |
38 | 39 | * 2008-06-29:2 Branched core messages now load translations from trunk files too |
39 | 40 | |
40 | 41 | == Changes in version 9 == |