Please, add support for multi-line strings. This does not work: ``` _(""" Line 1 Line 2 Line 3 """) ``` This works: _("""Line 1 """ """Line 2""" """Line 3""") And it would be nice if it works in both cases.