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
We should add a "nlg_date" function, witch have default behaviors depending on language
The text was updated successfully, but these errors were encountered:
Maybe we should add something like this:
if platform.system() == "Windows": date_format = "%A %#d %B %Y" locale.setlocale(locale.LC_TIME, 'fr') else: date_format = "%A %-d %B %Y" locale.setlocale(locale.LC_TIME, 'fr_FR.utf8')
day, month, year = (int(x) for x in date.split('/')) date = datetime.date(year, month, day)
Sorry, something went wrong.
I think it's more about changing the format of a date (from the input for example) than getting the system date. But maybe we can have both.
No branches or pull requests
We should add a "nlg_date" function, witch have default behaviors depending on language
The text was updated successfully, but these errors were encountered: