Boris Verkhovskiy
Boris Verkhovskiy
Looking at the docs, gettext starts the msgid with an empty line on purpose for "better alignment": > Each of untranslated-string and translated-string respects the C syntax for a character...
Is there a xgettext command that re-textwraps a po file into the same format? That would work for my usecase, I could just call that command after every time I...
For reference, it looks like in the gettext source code, the width is set here https://git.savannah.gnu.org/cgit/gettext.git/tree/gettext-tools/src/write-po.c?id=cd861ce28d9c2bb98c05ff8b5580bec2c805d4bf#n1007 and then gets passed to `ulc_width_linebreaks` https://git.savannah.gnu.org/cgit/gettext.git/tree/gettext-tools/src/write-po.c?id=cd861ce28d9c2bb98c05ff8b5580bec2c805d4bf#n1035 and then the code does some stuff...
@d4g33z that is unrelated to this issue and bashlex lexes your example correctly. This is how bash interprets that: ```sh $ tag="world" $ echo hello=" $tag" hello= world $ ```...
Please paste your input curl command (with redacted stuff removed) so that I can use it for testing. If you use `-F` to submit form data, we handle that already.
Chrome would need to add an API for DevTools extensions to add stuff to the right click menu. I floated this idea to them: https://bugs.chromium.org/p/chromium/issues/detail?id=1352771 Or they could agree to...
If you would like to try out my "Copy as Python (requests)" right click option, tell Chrome to load [my fork of DevTools](https://github.com/verhovsky/devtools-frontend/tree/saveaspython). First, install Google's "git workflow-enhancing tools": ```sh...
At this point it's probably better to compile curl's arg parsing code to WASM, but I couldn't figure that out. curl reads files during arg parsing, so we would have...
The website has had a "pre-fill new issue from current output" issue template for a while which I think some people have made use of, though we should probably warn...
The only issue I see is that it doesn't extract the environment variables in the URL. In the output ```py import os import requests domainUserName = os.getenv('domainUserName') domainEncryptedPassword = os.getenv('domainEncryptedPassword')...