mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
use predefined key for translation of parameter description
This commit is contained in:
parent
e4be5465be
commit
1488cdcfca
|
@ -225,7 +225,7 @@ $(document).ready( function() {
|
|||
'checked'=>false,
|
||||
),
|
||||
array(
|
||||
'help'=>$param['description']
|
||||
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||
)
|
||||
);
|
||||
break;
|
||||
|
@ -240,7 +240,7 @@ $(document).ready( function() {
|
|||
'required'=>false
|
||||
),
|
||||
array(
|
||||
'help'=>$param['description']
|
||||
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||
)
|
||||
);
|
||||
break;
|
||||
|
@ -256,7 +256,7 @@ $(document).ready( function() {
|
|||
'options'=>$param['options'],
|
||||
),
|
||||
array(
|
||||
'help'=>$param['description']
|
||||
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||
)
|
||||
);
|
||||
break;
|
||||
|
@ -271,7 +271,7 @@ $(document).ready( function() {
|
|||
'required'=>false
|
||||
),
|
||||
array(
|
||||
'help'=>$param['description']
|
||||
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||
)
|
||||
);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue
Block a user