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
This is due to a bug in the convertstrings function. It calls convertprop with a fixed personality value instead of passing the personality argument.
convertstrings
convertprop
def convertstrings( inputfile, outputfile, templatefile, personality="strings", includefuzzy=False, encoding=None, outputthreshold=None, remove_untranslated=False, ): """.strings specific convertor function.""" return convertprop( inputfile, outputfile, templatefile, personality="strings", # <-- Problem here: should be personality=personality includefuzzy=includefuzzy, encoding=encoding, outputthreshold=outputthreshold, remove_untranslated=remove_untranslated, )
The text was updated successfully, but these errors were encountered:
Pull requests with fixes are welcome.
Sorry, something went wrong.
def convertstrings( inputfile, outputfile, templatefile, personality="strings", includefuzzy=False, encoding=None, outputthreshold=None, remove_untranslated=False, ): """.strings specific convertor function.""" return convertprop( inputfile, outputfile, templatefile, personality=personality, # <-- Fixed: use the personality argument passed to the function includefuzzy=includefuzzy, encoding=encoding, outputthreshold=outputthreshold, remove_untranslated=remove_untranslated, )
I have made test case, its work perfect with jean's code
No branches or pull requests
This is due to a bug in the
convertstrings
function. It callsconvertprop
with a fixed personality value instead of passing the personality argument.The text was updated successfully, but these errors were encountered: