Skip to content
Snippets Groups Projects

Issue #3336776: EbtSettingsDefaultWidget::formElement with t() without StringTranslationTrait

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -268,9 +268,9 @@ class EbtSettingsDefaultWidget extends WidgetBase {
$element['ebt_settings']['design_options']['other_settings']['background_media'] = [
'#type' => 'media_library',
'#allowed_bundles' => ['image', 'remote_video'],
'#title' => t('Background Image/Video'),
'#title' => $this->t('Background Image/Video'),
'#default_value' => $items[$delta]->ebt_settings['design_options']['other_settings']['background_media'] ?? NULL,
'#description' => t('Upload your image, video or Youtube video.'),
'#description' => $this->t(('Upload your image, video or Youtube video.'),
];
$element['ebt_settings']['design_options']['other_settings']['background_image_style'] = [
Loading