Feature request: Whitelist default messages language
See original GitHub issueI’d like to be able to configure a language for all default translations. This would essentially treat any message that has a defaultMessage
as a whitelisted item for the specified language.
{
...
defaultMessagesLanguage: 'en',
}
Treat all messages with a defaultMessage
set as “en” and add to whitelist_en
.
Issue Analytics
- State:
- Created 8 years ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Whitelisting Best Practices for Email Marketing
Learn how to add email addresses to your safe senders list with our Whitelisting Best Practices Guide for both marketers and subscribers. Read...
Read more >Chat Bot Overview and Guide - StreamElements
The Chat Commands page is divided into several sections - Default Commands, Custom Commands, Command Variables and Bot Language.
Read more >What is Whitelist (Allowlist)? - TechTarget
A whitelist is based on a strict policy set and is managed by an IT administrator. When the administrator is certain about access...
Read more >Set the default language of a workspace or organization - Slack
You can select the default language for members of your Slack workspace or Enterprise Grid org. Only email invitations, SCIM-synced profiles, and Slackbot ......
Read more >MailGuard Management Console
The Release Management feature allows you to configure how you want users in your organization to release a quarantined email message and optionally,...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@alampros
We also found ourselves wanting to have the default messages in
en.json
, and went for this approach:This way you get the result you’re looking for without having the console complain about missing translations.
Thanks for sharing @mirague. This is exactly what I was looking for.