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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const translation = {
  2. daysInWeek: {
  3. Tue: 'Martedì',
  4. Thu: 'Giovedì',
  5. Mon: 'Mon',
  6. Fri: 'Venerdì',
  7. Sat: 'Sat',
  8. Wed: 'Mercoledì',
  9. Sun: 'Sole',
  10. },
  11. months: {
  12. February: 'Febbraio',
  13. April: 'Aprile',
  14. January: 'Gennaio',
  15. December: 'Dicembre',
  16. March: 'Marzo',
  17. May: 'Maggio',
  18. August: 'Agosto',
  19. June: 'Giugno',
  20. July: 'Luglio',
  21. October: 'Ottobre',
  22. September: 'Settembre',
  23. November: 'Novembre',
  24. },
  25. operation: {
  26. ok: 'OK',
  27. now: 'Ora',
  28. cancel: 'Annulla',
  29. pickDate: 'Seleziona Data',
  30. },
  31. title: {
  32. pickTime: 'Scegli Tempo',
  33. },
  34. defaultPlaceholder: 'Scegli un orario...',
  35. dateFormats: {
  36. display: 'MMMM D, YYYY',
  37. input: 'AAAA-MM-GG',
  38. output: 'AAAA-MM-GG',
  39. outputWithTime: 'AAAA-MM-GGTHH:mm:ss.SSSZ',
  40. displayWithTime: 'MMMM D, YYYY hh:mm A',
  41. },
  42. }
  43. export default translation