📝 Removes curley braces breaking gh build, and updates contribs

This commit is contained in:
Alicia Sykes
2021-07-31 17:12:55 +01:00
parent ce4d962cdc
commit c3c8876111
2 changed files with 55 additions and 69 deletions

View File

@@ -122,13 +122,13 @@ For example, you would set your translation to:
```
And then pass that variable (`name`) within a JSON object as the second parameter on `$t`, like:
```vue
<p>{{ $t('welcome-message', { name: 'Alicia' }) }}</p>
```javascript
$t('welcome-message', { name: 'Alicia' })
```
Which will render:
```html
<p>Hello Alicia!</p>
```text
Hello Alicia!
```
There are many other advanced features, including Pluralization, Datetime & Number Formatting, Message Support and more, all of which are outlined in the [Vue-i18n Docs](https://vue-i18n.intlify.dev/guide/).