mirror of
https://github.com/cupcakearmy/svelte-i18n.git
synced 2024-11-16 09:59:58 +01:00
docs: fix invalid JSON example (#64)
The JSON spec does not allow a trailing comma
This commit is contained in:
parent
a0409bf909
commit
58a179b599
@ -22,14 +22,14 @@ A locale dictionary is a regular JSON object which contains message definitions
|
||||
{
|
||||
"page_title": "Page titlte",
|
||||
"sign_in": "Sign in",
|
||||
"sign_up": "Sign up",
|
||||
"sign_up": "Sign up"
|
||||
}
|
||||
|
||||
// pt.json
|
||||
{
|
||||
"page_title": "Título da página",
|
||||
"sign_in": "Entrar",
|
||||
"sign_up": "Registrar",
|
||||
"sign_up": "Registrar"
|
||||
}
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user