|
|
@@ -566,10 +566,10 @@ class BetService extends BaseService
|
|
|
}
|
|
|
|
|
|
$text .= "-------------------------------------\n";
|
|
|
- $text .= "期数:{$v->issue_no} \n";
|
|
|
- $text .= "内容:{$v->keywords} \n";
|
|
|
- $text .= "金额:{$v->amount} \n";
|
|
|
- $text .= "盈亏:{$phase} \n";
|
|
|
+ $text .= lang("期数").":{$v->issue_no} \n";
|
|
|
+ $text .= lang("内容").":{$v->keywords} \n";
|
|
|
+ $text .= lang("金额").":{$v->amount} \n";
|
|
|
+ $text .= lang("盈亏").":{$phase} \n";
|
|
|
}
|
|
|
|
|
|
$msg['text'] = $text;
|
|
|
@@ -582,16 +582,16 @@ class BetService extends BaseService
|
|
|
|
|
|
if ($page > 1) {
|
|
|
$keyboard[] = [
|
|
|
- ['text' => "👆上一页", 'callback_data' => "betRecordNextPage@@" . ($page - 1)]
|
|
|
+ ['text' => "👆".lang("上一页"), 'callback_data' => "betRecordNextPage@@" . ($page - 1)]
|
|
|
];
|
|
|
}
|
|
|
$allPage = ceil($count / $limit);
|
|
|
if ($allPage > $page) {
|
|
|
if ($page > 1) {
|
|
|
- $keyboard[count($keyboard) - 1][] = ['text' => "👇下一页", 'callback_data' => "betRecordNextPage@@" . ($page + 1)];
|
|
|
+ $keyboard[count($keyboard) - 1][] = ['text' => "👇".lang("下一页"), 'callback_data' => "betRecordNextPage@@" . ($page + 1)];
|
|
|
} else {
|
|
|
$keyboard[] = [
|
|
|
- ['text' => "👇下一页", 'callback_data' => "betRecordNextPage@@" . ($page + 1)]
|
|
|
+ ['text' => "👇".lang("下一页"), 'callback_data' => "betRecordNextPage@@" . ($page + 1)]
|
|
|
];
|
|
|
}
|
|
|
}
|