Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. {
  2. "@@locale": "en",
  3.  
  4. "helloWorld": "Hello World",
  5. "@helloWorld": {
  6. "description": "The conventional newborn programmer greeting"
  7. },
  8.  
  9. "hello": "Hello {world}",
  10. "@hello": {
  11. "description": "A message with a single parameter",
  12. "placeholders": {
  13. "world": {}
  14. }
  15. },
  16.  
  17. "greeting": "{hello} {world}",
  18. "@greeting": {
  19. "description": "A message with a two parameters",
  20. "placeholders": {
  21. "hello": {},
  22. "world": {}
  23. }
  24. },
  25.  
  26. "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}}",
  27. "@helloWorlds": {
  28. "placeholders": {
  29. "count": {}
  30. }
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement