You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current pre-release implementation, the Discord language applies to all webhooks. It would be more useful to be able to set a language per webhook.
Leave the current overarching language selector in place:
Add an override checkbox to apply to all webhooks.
When adding a new webhook, use the language chosen in the main selector.
The text was updated successfully, but these errors were encountered:
Implement `FormatterInterface` base class.
Split out all formatting code from `Activity` to new `DefaultFormatter`.
Start on groundwork for supporting language per webhook.
Relates to #195. Relates to #213.
The text is currently created once first, and then passed into the Discord class for posting. Instead, we'll need to re-work the way the text is generated so that it is done each time per webhook.
One way would be to pass in a dict containing text in all languages, but that is overkill as only one or two languages are likely to be used.
Better approach is to pass in a callable to the discord posting functions, which is called to fetch the text in the appropriate language as the posting function iterates through each webhook.
In the current pre-release implementation, the Discord language applies to all webhooks. It would be more useful to be able to set a language per webhook.
Leave the current overarching language selector in place:
The text was updated successfully, but these errors were encountered: