Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid escaping on export command #5

Closed
Lukasss93 opened this issue Sep 15, 2020 · 1 comment
Closed

Invalid escaping on export command #5

Lukasss93 opened this issue Sep 15, 2020 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@Lukasss93
Copy link
Owner

Value on CSV:

group;key;en
app;example;This is a \"string\"

Value after export command:

// resources/lang/en/app.php
<?php

return [
    'example' => 'This is a \"string\"'
];

How it should be:

// resources/lang/en/app.php
<?php

return [
    'example' => 'This is a "string"'
];
@Lukasss93 Lukasss93 self-assigned this Sep 15, 2020
@Lukasss93 Lukasss93 added the bug Something isn't working label Sep 15, 2020
@Lukasss93
Copy link
Owner Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant