Closed (fixed)
Project:
Paragraphs
Version:
8.x-1.0
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
19 Dec 2016 at 09:39 UTC
Updated:
8 May 2018 at 15:30 UTC
Jump to comment: Most recent
Comments
Comment #2
lukas.fischer commentedComment #3
berdirAt least the first string is translatable, the "problem" is that Paragraphs is a configurable string, but if you search for "added yet" you should find it:
'#markup' => $this->t('No @title added yet.', ['@title' => $this->getSetting('title')]),
Same for the second part:
$add_more_elements['#suffix'] = $this->t(' to %type', ['%type' => $title]);
Comment #5
mpp commented@berdir, this could actiually be a bug.
The schema defines these properties as a string but the
translatableproperty is not set. This should probably be a label (which is translatable) or we shoud addtranslatable: true:See https://www.drupal.org/project/maxlength/issues/2823995 for a similar example.