35 lines
2.3 KiB
PHP
35 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'No active game in progress' => 'No active game in progress',
|
|
'Current game status does not allow calculation' => 'Current game status does not allow calculation',
|
|
'Betting period has not ended; calculation is not available yet' => 'Betting period has not ended; calculation is not available yet',
|
|
'Manual draw number is out of the allowed range' => 'Manual draw number is out of the allowed range',
|
|
'Calculation completed' => 'Calculation completed',
|
|
'Draw number is out of the allowed range' => 'Draw number is out of the allowed range',
|
|
'Current game status does not allow scheduling the draw' => 'Current game status does not allow scheduling the draw',
|
|
'Betting has not ended; cannot schedule the draw' => 'Betting has not ended; cannot schedule the draw',
|
|
'This period has ended; please refresh the page' => 'This period has ended; please refresh the page',
|
|
'Draw number scheduled; it will be used when the countdown ends' => 'Draw number scheduled; it will be used when the countdown ends',
|
|
'Current game status does not allow drawing' => 'Current game status does not allow drawing',
|
|
'Betting period has not ended; drawing is not available yet' => 'Betting period has not ended; drawing is not available yet',
|
|
'Period countdown has not ended; cannot draw yet' => 'Period countdown has not ended; cannot draw yet',
|
|
'Draw completed; paying out' => 'Draw completed; paying out',
|
|
'Game live: settlement error' => 'Game live: settlement error',
|
|
'Calculation failed' => 'Calculation failed',
|
|
'Please enter the draw number' => 'Please enter the draw number',
|
|
'Schedule failed' => 'Schedule failed',
|
|
'Game runtime is paused' => 'Game runtime is paused',
|
|
'Void reason is required' => 'Void reason is required',
|
|
'Void reason is too long' => 'Void reason is too long',
|
|
'Void reason is too short' => 'Void reason is too short',
|
|
'Current period cannot be voided' => 'This period cannot be voided (only during betting or locked phase)',
|
|
'Void failed' => 'Void failed',
|
|
'Period voided' => 'Period voided',
|
|
'Concurrent balance update; please retry' => 'Concurrent balance update; please retry',
|
|
'Bet order state changed; please retry' => 'Bet order state changed; please retry',
|
|
'Period void refund' => 'Period void refund',
|
|
];
|