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
minor symfony#14883 [Translator] Fix select & plural message format (mabar)
This PR was merged into the 4.4 branch.
Discussion
----------
[Translator] Fix select & plural message format
Current version produces spaces around message with both ext-int and symfony version of message formatter. This PR fixes it.
e.g. for parameters `['gender_of_host' => 'male', 'num_guests' => 2, 'host' => 'John', 'guest' => 'Mr. Bean']` output changes from: (select text to see spaces)
```txt
John invites Mr. Bean and one other person to his party.
```
To:
```txt
John invites Mr. Bean and one other person to his party.
```
Commits
-------
86b2834 Fix select & plural message format
0 commit comments