Infernio

Results 249 comments of Infernio

In light of the GUI design thought this needs (plus it's BAIN), I'm tossing the good first issue label from it.

I'm currently using [ciopfs](http://www.brain-dump.org/projects/ciopfs/) for storing data that needs to be case-insensitive on a case-sensitive FS. It's an overlay FS based on FUSE, which I just slap on some folder,...

So I just now realized that f-strings don't work with gettext, [by design](https://bugs.python.org/issue33189). The substitution is done before the string goes to gettext, so f-strings straight up can't be used...

Yeah, probably use ```python _(u'Open the selected %(file_type)s for editing') % {u'file_type': sel_file_type} ``` for translatable, user-facing strings. We can still use f-strings for non-translatable internal stuff I guess?

> I would like to devise an algo to preserve translations however Do you mean an algorithm to keep translations for unchanged input strings around in the generated dump (which...

Unblocked since commit mentioned above, reopening.

Merged pt1 in, it doesn't do anything on its own but it saves me having to constantly rebase and resolve conflicts in requirements.txt.

Ref https://feedback.nexusmods.com/posts/11/mod-upload-api

Ran into this as well. Seems like DirDialog doesn't support this, I used [MultiDirDialog](https://wxpython.org/Phoenix/docs/html/wx.lib.agw.multidirdialog.MultiDirDialog.html) for now.

See #2255 for my patch fixing this - it's slightly different, I changed the division operators to use `//` instead.