Open l-koehler opened 10 months ago
does not seem to work at all, the two if conditions here return false even when given valid locales/full paths: ./ffconverter/ffconverter.py 477-483
locale = QLocale.system().name()
qtTranslator = QTranslator()
if qtTranslator.load('qt_' + locale, ':/'):
app.installTranslator(qtTranslator)
appTranslator = QTranslator()
if appTranslator.load('ffconverter_' + locale, ':/'):
app.installTranslator(appTranslator)
The same thing does work in https://github.com/ilstam/FF-Multi-Converter, so it should be easy to fix
fixed the translations not working at all (d8c6098), now they are just incomplete.
be30272 updated german translation which is now complete. all other translations are still incomplete (english is complete, as it is the language this is developed in).
I don't have that much experience with translations, so updating them is going to take a while. Still totally usable, there is english text for everything that it will fall back to if a translation is broken. mainly ./ffconverter/dynamictab.py is missing translations.