Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@contember/admin
Advanced tools
@contember/admin
component?First, write a dictionary of messages that need to be translated:
export const myDictionary = {
myComponent: {
key1: '…',
key2: {
nestedKey: '…',
// …
},
},
}
export type MyDictionary = typeof myDictionary
Note the top-level myComponent
property under which all is scoped.
That is crucial so that we can easily compose dictionaries. Include one just like it and make its name unique.
You can nest objects and strings arbitrarily. The structure, however, will be public API so try to make it future-proof.
In your messages, you can make use of whatever syntax intl-messageformat
supports.
From your index.ts
file, don't export the dictionary! Use export type
to only expose its type:
export type { MyDictionary } from './myDictionary'
Then from your component, obtain a message formatter:
const formatMessage = useMessageFormatter(myDictionary)
That gives you a function that returns translations. There are two main ways of using it:
formatMessage('myComponent.key2.nestedKey')
or formatMessage('myComponent.key1', { variable: 123 })
.formatMessage(userSpecified, 'myComponent.key2.nestedKey')
or formatMessage(userSpecified, 'myComponent.key1', { variable: 123 })
.In both cases, the final parameter with variables is optional. In this case, the type of formatMessage
is MessageFormatter<MyDictionary>
. You can use this to pass it down as a prop.
⚠️ Lastly, add your newly created dictionary to adminDictionary.ts
. After you do that, you will likely
get TypeScript errors in @contember/admin-i18n
. Add any translations there as well.
For more inspiration, look up any existing dictionaries mentioned in adminDictionary.ts
and the way they are used.
FAQs
Unknown package
We found that @contember/admin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.