-
Notifications
You must be signed in to change notification settings - Fork 20
i18n Support and Task improvements #66
New issue
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
Conversation
| import { taskGroups, type TaskGroup } from "./group"; | ||
|
|
||
| // a task that has been run | ||
| type FinishedTask = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably keep historic tasks in the database, perhaps with some sort of 'log rotation'?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, i was probably just gonna create a new task to cleanup logs older then x days
| switch (local) { | ||
| case "en": | ||
| case "en_gb": | ||
| case "en_ca": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add Australia and New Zealand (en_au and en_nz), or just match all en_*
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that was mostly just testing on my end, in the future they will just have their own emoji instead of using the US one
fixes #53, and lays the groundwork for #52