▲ | blami 3 months ago | |
I am not very familiar with Python. How do you localize (translate) first one? | ||
▲ | wzdd 3 months ago | parent | next [-] | |
You don't with f-strings because they're substituted eagerly. You could with the new t-strings proposed here because you can get at the individual parts. | ||
▲ | BiteCode_dev 3 months ago | parent | prev [-] | |
That's what t-strings are about. They are lazy, so you can mark them for translation "as-is". |