Index: trunk/extensions/SecurePoll/SecurePoll.i18n.php |
— | — | @@ -113,7 +113,7 @@ |
114 | 114 | # Dump page |
115 | 115 | 'securepoll-dump-title' => 'Dump: $1', |
116 | 116 | 'securepoll-dump-no-crypt' => 'No encrypted election record is available for this election, because the election is not configured to use encryption.', |
117 | | - 'securepoll-dump-not-finished' => 'Encrypted election records are only available after the finish date on $1 at $2', # FIXME: date/time split in message but not yet in file DumpPage.php because locked by Tim. |
| 117 | + 'securepoll-dump-not-finished' => 'Encrypted election records are only available after the finish date on $1 at $2', |
118 | 118 | 'securepoll-dump-no-urandom' => 'Cannot open /dev/urandom. |
119 | 119 | To maintain voter privacy, encrypted election records are only publically available when they can be shuffled with a secure random number stream.', |
120 | 120 | |
Index: trunk/extensions/SecurePoll/includes/DumpPage.php |
— | — | @@ -35,7 +35,8 @@ |
36 | 36 | if ( !$this->election->isFinished() ) { |
37 | 37 | global $wgLang; |
38 | 38 | $wgOut->addWikiMsg( 'securepoll-dump-not-finished', |
39 | | - $wgLang->timeanddate( $this->election->getEndDate() ) ); |
| 39 | + $wgLang->date( $this->election->getEndDate() ), |
| 40 | + $wgLang->time( $this->election->getEndDate() ) ); |
40 | 41 | return; |
41 | 42 | } |
42 | 43 | |