Created
December 3, 2018 11:25
-
-
Save maerzbow/17fb144d4e4da775a73f8c28187b4316 to your computer and use it in GitHub Desktop.
Lingohub example go-i18n.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "d_days", | |
"translation": { | |
"one": "{{.Count}} day", | |
"other": "{{.Count}} days" | |
} | |
}, | |
{ | |
"id": "my_height_in_meters", | |
"translation": { | |
"one": "I am {{.Count}} meter tall.", | |
"other": "I am {{.Count}} meters tall." | |
} | |
}, | |
{ | |
"id": "person_greeting", | |
"translation": "Hello {{.Person}}" | |
}, | |
{ | |
"id": "person_unread_email_count", | |
"translation": { | |
"one": "{{.Person}} has {{.Count}} unread email.", | |
"other": "{{.Person}} has {{.Count}} unread emails." | |
} | |
}, | |
{ | |
"id": "person_unread_email_count_timeframe", | |
"translation": { | |
"one": "{{.Person}} has {{.Count}} unread email in the past {{.Timeframe}}.", | |
"other": "{{.Person}} has {{.Count}} unread emails in the past {{.Timeframe}}." | |
} | |
}, | |
{ | |
"id": "program_greeting", | |
"translation": "Hello world" | |
}, | |
{ | |
"id": "your_unread_email_count", | |
"translation": { | |
"one": "You have {{.Count}} unread email.", | |
"other": "You have {{.Count}} unread emails." | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment