Index: trunk/extensions/SecurePoll/SecurePoll.i18n.php |
— | — | @@ -63,6 +63,7 @@ |
64 | 64 | 'securepoll-desc' => 'A short description of this extension shown in [[Special:Version]]. |
65 | 65 | {{doc-important|Do not translate tag names.}} |
66 | 66 | {{doc-important|Do not translate links.}}', |
| 67 | + 'securepoll-not-started' => '$1 is a data/time, $2 is the date of it, $3 is its time.', |
67 | 68 | 'securepoll-return' => '{{Identical|Return to $1}}', |
68 | 69 | 'securepoll-secret-gpg-error' => "<span style=\"color:red\">'''DO <u>NOT</u> translate LocalSettings.php and \$wgSecurePollShowErrorDetail=true;'''</span>", |
69 | 70 | ); |
Index: trunk/extensions/SecurePoll/includes/VotePage.php |
— | — | @@ -37,7 +37,9 @@ |
38 | 38 | |
39 | 39 | if ( !$this->election->isStarted() ) { |
40 | 40 | $wgOut->addWikiMsg( 'securepoll-not-started', |
41 | | - $wgLang->timeanddate( $this->election->getStartDate() ) ); |
| 41 | + $wgLang->timeanddate( $this->election->getStartDate() ) , |
| 42 | + $wgLang->date( $this->election->getStartDate() ) , |
| 43 | + $wgLang->time( $this->election->getStartDate() ) ); |
42 | 44 | return; |
43 | 45 | } |
44 | 46 | |