mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-29 10:53:33 +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,
|
'checked'=>false,
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'help'=>$param['description']
|
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
|
@ -240,7 +240,7 @@ $(document).ready( function() {
|
||||||
'required'=>false
|
'required'=>false
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'help'=>$param['description']
|
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
|
@ -256,7 +256,7 @@ $(document).ready( function() {
|
||||||
'options'=>$param['options'],
|
'options'=>$param['options'],
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'help'=>$param['description']
|
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
|
@ -271,7 +271,7 @@ $(document).ready( function() {
|
||||||
'required'=>false
|
'required'=>false
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'help'=>$param['description']
|
'help'=>isset($param['description']) ? $param['description'] : getMLText("task_".$extname."_".$taskname."_".$param['name']."_desc")
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user