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
You need to escape the double quotes in the msgid or the file is not valid.
Currently, you generate this:
#: OrchardCore.Flows\Views\Widget-Bag.Edit.cshtml:13 #. @T["{0} — <span class=\"hint\">{1}</span>", (await ContentManager.PopulateAspectAsync<ContentItemMetadata>(contentItem)).DisplayText, contentType] msgctxt "OrchardCore.Flows.Views.Widget-Bag.Edit" msgid "{0} — <span class="hint">{1}</span>" msgstr ""
but the msgid should be: msgid "{0} — <span class="\hint\">{1}</span>"
msgid "{0} — <span class="\hint\">{1}</span>"
The text was updated successfully, but these errors were encountered:
Also, please escape backslash \ with double backslashes \
Sorry, something went wrong.
#5 - Escape special characters
ea90166
#5 - Escape special characters (#7)
af39077
No branches or pull requests
You need to escape the double quotes in the msgid or the file is not valid.
Currently, you generate this:
but the msgid should be:
msgid "{0} — <span class="\hint\">{1}</span>"
The text was updated successfully, but these errors were encountered: