locales.js 794 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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'];
  28. // French
  29. exports['fr'] = {
  30. current: 'actuel',
  31. time: 'heure'
  32. };
  33. exports['fr_FR'] = exports['fr'];
  34. exports['fr_CA'] = exports['fr'];
  35. exports['fr_BE'] = exports['fr'];
  36. // Espanol
  37. exports['es'] = {
  38. current: 'corriente',
  39. time: 'hora'
  40. };
  41. exports['es_ES'] = exports['es'];