So that I end up with files that just have the PHP code but the values (translation strings) are empty.
From:
Code: Select all
'A' => 'One line of text'
'B' => 'Some
text
with newlines'
'C' => 'Some text with \' that also needs to work'
'D' => 'More text'
Code: Select all
'A' => ''
'B' => ''
'C' => ''
'D' => ''