$this->
submitForm([ 'langcode' => 'fr',
'files[file]' =>
$name,
'customized' => 1,
], 'Import'
);
$file_system->
unlink($name);
// Create string without translation in the locales_source table.
$this->container
->
get('locale.storage'
) ->
createString() ->
setString('February'
) ->
save();
// Export only customized French translations.
$this->
drupalGet('admin/config/regional/translate/export'
);
$this->
submitForm([ 'langcode' => 'fr',
'content_options[not_customized]' => FALSE,
'content_options[customized]' => TRUE,
'content_options[not_translated]' => FALSE,
], 'Export'
);