#The easiest "storage" plugin for inlang
- official inlang message format
- simple to manually edit
- typesafe via JSON schema
messages/en.json
{
"hello": "Hello {name}!"
}
messages/de.json
{
"hello": "Guten Tag {name}!"
}
#Settings
#pathPattern
The path pattern is used to find the files that contain the messages.
{
"pathPattern": "./messages/{languageTag}.json"
}
#Syntax
#Variable References
{
"hello": "Hello {name}!"
}