Skip to content

Commit

Permalink
docs: fix code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-lefebvre authored and yassinedoghri committed Apr 8, 2023
1 parent 221b8d1 commit 681e838
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,22 +270,22 @@ src
defaultLocale: "en",
locales: ["en", "fr", "es"],
routes: {
fr: {
"about": "a-propos",
"contact-us": "contactez-nous",
"products": {
"index": "produits",
"categories": "categories",
}
}
es: {
"about": "a-proposito",
"contact-us": "contactenos",
"products": {
"index": "productos",
"categories": "categorias",
}
}
fr: {
about: "a-propos",
"contact-us": "contactez-nous",
products: {
index: "produits",
categories: "categories",
},
},
es: {
about: "a-proposito",
"contact-us": "contactenos",
products: {
index: "productos",
categories: "categorias",
},
},
},
};
```
Expand Down

0 comments on commit 681e838

Please sign in to comment.