We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If a message contains a escaped character e.g. " go18n extract escapes it again.
"
go18n extract
E.g.: If you have two messages:
a = &i18n.Message{ ID: "a", Other: "a \" b", } b = &i18n.Message{ ID: "b", Other: `a " b`, }
go18n extract creates the following files:
"a": "a \\\" b", "b": "a \" b",
"a" = "a \\\" b" "b" = "a \" b"
a: a \" b b: a " b
As you can see the extracted messages for b are correct, but for a they contain two backslashes to much.
b
a
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If a message contains a escaped character e.g.
"
go18n extract
escapes it again.E.g.: If you have two messages:
go18n extract
creates the following files:json
toml
yaml
As you can see the extracted messages for
b
are correct, but fora
they contain two backslashes to much.The text was updated successfully, but these errors were encountered: