ImportRowModifier: Change description

This commit is contained in:
Marius Hein 2019-08-19 10:31:06 +02:00 committed by Thomas Gelf
parent cbd0b131fd
commit e51f9fa21a
1 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,12 @@ class ImportRowModifierForm extends DirectorObjectForm
$this->addElement('text', 'property_name', array(
'label' => $this->translate('Property'),
'description' => $this->translate('This must be an import source column (property)'),
'description' => $this->translate(
$this->translate('Please start typing for a list of suggestions. Dots allow you to access nested'
. ' properties: column.some.key. Such nested properties cannot be modified in-place,'
. ' but you can store the modified value to a new "target property"'
)
),
'required' => true,
'class' => 'autosubmit director-suggest',
'data-suggestion-context' => 'importsourceproperties!' . $this->source->id,