Skip to content

Commit 292b2a0

Browse files
committed
Format Valid JSON - Removed trailing comma
1 parent 4935fa7 commit 292b2a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The `trans()` method can translate a given message.
168168
// lang/pt.json
169169
{
170170
"Welcome!": "Bem-vindo!",
171-
"Welcome, :name!": "Bem-vindo, :name!",
171+
"Welcome, :name!": "Bem-vindo, :name!"
172172
}
173173
174174
import { trans } from 'laravel-vue-i18n';
@@ -186,7 +186,7 @@ use it instead of `trans()` to watch any changes (language changes or lang files
186186
// lang/pt.json
187187
{
188188
"Welcome!": "Bem-vindo!",
189-
"Welcome, :name!": "Bem-vindo, :name!",
189+
"Welcome, :name!": "Bem-vindo, :name!"
190190
}
191191
192192
import { wTrans } from 'laravel-vue-i18n';
@@ -214,7 +214,7 @@ there is also available an `trans_choice` alias, and a mixin called `$tChoice()`
214214
{
215215
"There is one apple|There are many apples": "Existe uma maça|Existe muitas maças",
216216
"{0} There are none|[1,19] There are some|[20,*] There are many": "Não tem|Tem algumas|Tem muitas",
217-
"{1} :count minute ago|[2,*] :count minutes ago": "{1} há :count minuto|[2,*] há :count minutos",
217+
"{1} :count minute ago|[2,*] :count minutes ago": "{1} há :count minuto|[2,*] há :count minutos"
218218
}
219219
220220
import { transChoice } from 'laravel-vue-i18n';
@@ -236,7 +236,7 @@ use it instead of `transChoice()` to watch any changes (language changes or lang
236236
{
237237
"There is one apple|There are many apples": "Existe uma maça|Existe muitas maças",
238238
"{0} There are none|[1,19] There are some|[20,*] There are many": "Não tem|Tem algumas|Tem muitas",
239-
"{1} :count minute ago|[2,*] :count minutes ago": "{1} há :count minuto|[2,*] há :count minutos",
239+
"{1} :count minute ago|[2,*] :count minutes ago": "{1} há :count minuto|[2,*] há :count minutos"
240240
}
241241
242242
import { wTransChoice } from 'laravel-vue-i18n';

0 commit comments

Comments
 (0)