Skip to content

Commit 44d424d

Browse files
committed
Merge pull request #11 from iksela/patch-1
JSON examples weren't valid (no "" on the properties).
2 parents 1b602f0 + 1957248 commit 44d424d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.markdown

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Somewhere in your html:
2323
example-fr.json:
2424

2525
{
26-
greeting: "Bonjour!"
26+
"greeting": "Bonjour!"
2727
}
2828

2929
## Step 3. Use the localize plugin.
@@ -98,18 +98,18 @@ If you rely on the default callback and follow the "rel" attribute conventions t
9898
**application-es.json (fake spanish)**
9999

100100
{
101-
title: "Tracker Pro XT Deluxo",
102-
search: {
103-
placeholder: "Searcho...",
104-
button: "Vamos!"
101+
"title": "Tracker Pro XT Deluxo",
102+
"search": {
103+
"placeholder": "Searcho...",
104+
"button": "Vamos!"
105105
},
106-
footer: {
107-
disclaimer: "Bewaro."
106+
"footer": {
107+
"disclaimer": "Bewaro."
108108
},
109-
menu: {
110-
dashboard: "Dashboardo",
111-
list: "Bug Listo",
112-
logout: "Exito"
109+
"menu": {
110+
"dashboard": "Dashboardo",
111+
"list": "Bug Listo",
112+
"logout": "Exito"
113113
}
114114
}
115115

0 commit comments

Comments
 (0)