|
...
|
...
|
@@ -31,10 +31,14 @@ class ProofreadingController extends BaseController |
|
|
|
if(empty($list)){
|
|
|
|
$data = [];
|
|
|
|
foreach ($new_list as $k => $v){
|
|
|
|
if($k < 20){
|
|
|
|
if($k < 50){
|
|
|
|
$data[] = [
|
|
|
|
'text'=>$v,
|
|
|
|
'translate'=>Translate::tran($v, $countryInfo['alias']),
|
|
|
|
'type'=>1,
|
|
|
|
'project_id'=>$this->user['project_id'],
|
|
|
|
'url'=>$this->param['url'],
|
|
|
|
'language_id'=>$this->param['language_id']
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
...
|
...
|
|