Created
September 27, 2019 01:34
-
-
Save HansMuller/064e6e3633d4dc608ab0baa576fd6e73 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"@@locale": "en", | |
"helloWorld": "Hello World", | |
"@helloWorld": { | |
"description": "The conventional newborn programmer greeting" | |
}, | |
"hello": "Hello {world}", | |
"@hello": { | |
"description": "A message with a single parameter", | |
"placeholders": { | |
"world": {} | |
} | |
}, | |
"greeting": "{hello} {world}", | |
"@greeting": { | |
"description": "A message with a two parameters", | |
"placeholders": { | |
"hello": {}, | |
"world": {} | |
} | |
}, | |
"helloWorlds": "{count,plural, =0{Hello}=1{Hello World}=2{Hello two worlds}few{Hello {count} worlds}many{Hello all {count} worlds}other{Hello other {count} worlds}}", | |
"@helloWorlds": { | |
"placeholders": { | |
"count": {} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment