vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
517 B

  1. // English
  2. exports['en'] = {
  3. current: 'current',
  4. time: 'time'
  5. };
  6. exports['en_EN'] = exports['en'];
  7. exports['en_US'] = exports['en'];
  8. // Italiano
  9. exports['it'] = {
  10. current: 'attuale',
  11. time: 'tempo'
  12. };
  13. exports['it_IT'] = exports['it'];
  14. exports['it_CH'] = exports['it'];
  15. // Dutch
  16. exports['nl'] = {
  17. current: 'huidige',
  18. time: 'tijd'
  19. };
  20. exports['nl_NL'] = exports['nl'];
  21. exports['nl_BE'] = exports['nl'];
  22. // German
  23. exports['de'] = {
  24. current: 'Aktuelle',
  25. time: 'Zeit'
  26. };
  27. exports['de_DE'] = exports['de'];