PMCORE-1062 [18214] Warning message of multiple file upload control is not translating

This commit is contained in:
Roly Rudy Gutierrez Pinto
2021-11-10 12:04:39 -04:00
parent 64c45e8215
commit 3882cde9f9
2 changed files with 46 additions and 74 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class Translation extends Model
{
protected $table = 'TRANSLATION';
protected $primaryKey = ['TRN_CATEGORY', 'TRN_ID', 'TRN_LANG'];
public $incrementing = false;
public $timestamps = false;
}