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
As identified in mozilla/pontoon#2470 (comment), this happens:
from fluent.syntax import ast, FluentParser, FluentSerializer parser = FluentParser() serializer = FluentSerializer() string = """places-open-in-container-tab = .label = Բացել նոր ներդիրում .accesskey = """ string 'places-open-in-container-tab =\n .label = Բացել նոր ներդիրում\n .accesskey = \t\n' serializer.serialize(parser.parse(string)) 'places-open-in-container-tab =\n .label = Բացել նոր ներդիրում\n .accesskey = \n'
Tabs should not be lost; they count as valid inline_text characters according to the spec.
inline_text
The text was updated successfully, but these errors were encountered:
Probably also a bug in js syntax parser, and the runtime parser.
Sorry, something went wrong.
Yeah, will need to check all the implementations.
Successfully merging a pull request may close this issue.
As identified in mozilla/pontoon#2470 (comment), this happens:
Tabs should not be lost; they count as valid
inline_text
characters according to the spec.The text was updated successfully, but these errors were encountered: