Skip to content
Snippets Groups Projects
Commit f6b43a40 authored by Arti's avatar Arti Committed by Rajab Natshah
Browse files

Issue #3370023 by arti_parmar: Fix translation of description values

parent c88ebbf4
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@ class BootstrapLayoutsBase extends LayoutDefault implements PluginFormInterface
$form['layout']['attributes'] = [
'#type' => 'textfield',
'#title' => $this->t('Additional attributes'),
'#description' => 'E.g. id|custom-id,role|navigation,data-bs-something|some value',
'#description' => $this->t('E.g. id|custom-id,role|navigation,data-bs-something|some value'),
'#default_value' => $complete_form_state->getValue(['layout', 'attributes'], $configuration['layout']['attributes']),
];
......@@ -186,7 +186,7 @@ class BootstrapLayoutsBase extends LayoutDefault implements PluginFormInterface
$form[$region]['attributes'] = [
'#type' => 'textfield',
'#title' => $this->t('Additional attributes'),
'#description' => 'E.g. id|custom-id,role|navigation,data-bs-something|some value',
'#description' => $this->t('E.g. id|custom-id,role|navigation,data-bs-something|some value'),
'#default_value' => $default_values['attributes'],
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment