You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 9, 2019. It is now read-only.
Can the concatenation ever be valid? Thinking something like { '(' + translate( 'Edited' ) + ')' } to avoid creating a separate translation entry for (Edited). Correct me if that would be desirable though.
Given how many variations there are to this, it'd be hard to catch them all. Off the top of my head, here are a few variants:
<span>{translate('Post about ')+title}</span><span>{translate('Post about ')}{ title }</span><span>{[translate('Post about '),title].join('')}</span>
Something like this shouldn't be possible:
<Gridicon icon="create" /><span>{ translate( 'Post about ' ) + title } </span>
.I am not sure if and how we could catch it. This is probably just one of many ways that concat can happen.
The text was updated successfully, but these errors were encountered: