@open-mercato/core 0.5.1-develop.2996.ce62fd491c → 0.5.1-develop.3032.01699048cb

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/dist/modules/customers/api/companies/[id]/route.js +30 -20
  3. package/dist/modules/customers/api/companies/[id]/route.js.map +2 -2
  4. package/dist/modules/customers/api/companies/route.js +12 -7
  5. package/dist/modules/customers/api/companies/route.js.map +2 -2
  6. package/dist/modules/customers/api/people/[id]/companies/enriched/route.js +12 -7
  7. package/dist/modules/customers/api/people/[id]/companies/enriched/route.js.map +2 -2
  8. package/dist/modules/customers/api/people/route.js +12 -7
  9. package/dist/modules/customers/api/people/route.js.map +2 -2
  10. package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js +21 -0
  11. package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js.map +2 -2
  12. package/dist/modules/customers/backend/customers/people-v2/[id]/page.js +27 -30
  13. package/dist/modules/customers/backend/customers/people-v2/[id]/page.js.map +2 -2
  14. package/dist/modules/customers/components/detail/ActivitiesAddNewMenu.js +56 -0
  15. package/dist/modules/customers/components/detail/ActivitiesAddNewMenu.js.map +7 -0
  16. package/dist/modules/customers/components/detail/ActivitiesCard.js +175 -0
  17. package/dist/modules/customers/components/detail/ActivitiesCard.js.map +7 -0
  18. package/dist/modules/customers/components/detail/ActivitiesDayStrip.js +324 -0
  19. package/dist/modules/customers/components/detail/ActivitiesDayStrip.js.map +7 -0
  20. package/dist/modules/customers/components/detail/ActivitiesSection.js +62 -13
  21. package/dist/modules/customers/components/detail/ActivitiesSection.js.map +2 -2
  22. package/dist/modules/customers/components/detail/ActivityLogTab.js +14 -23
  23. package/dist/modules/customers/components/detail/ActivityLogTab.js.map +2 -2
  24. package/dist/modules/customers/components/detail/ActivityTimeline.js +13 -13
  25. package/dist/modules/customers/components/detail/ActivityTimeline.js.map +2 -2
  26. package/dist/modules/customers/components/detail/ActivityTimelineFilters.js +35 -22
  27. package/dist/modules/customers/components/detail/ActivityTimelineFilters.js.map +2 -2
  28. package/dist/modules/customers/components/detail/AiActionChips.js +15 -22
  29. package/dist/modules/customers/components/detail/AiActionChips.js.map +2 -2
  30. package/dist/modules/customers/components/detail/ScheduleActivityDialog.js +196 -28
  31. package/dist/modules/customers/components/detail/ScheduleActivityDialog.js.map +2 -2
  32. package/dist/modules/customers/components/detail/schedule/DateTimeFields.js +2 -2
  33. package/dist/modules/customers/components/detail/schedule/DateTimeFields.js.map +2 -2
  34. package/dist/modules/customers/components/detail/schedule/FooterFields.js +14 -2
  35. package/dist/modules/customers/components/detail/schedule/FooterFields.js.map +2 -2
  36. package/dist/modules/customers/components/detail/schedule/LinkedEntitiesField.js +9 -2
  37. package/dist/modules/customers/components/detail/schedule/LinkedEntitiesField.js.map +2 -2
  38. package/dist/modules/customers/components/detail/schedule/ParticipantsField.js +9 -2
  39. package/dist/modules/customers/components/detail/schedule/ParticipantsField.js.map +2 -2
  40. package/dist/modules/customers/components/detail/schedule/fieldConfig.js +25 -4
  41. package/dist/modules/customers/components/detail/schedule/fieldConfig.js.map +2 -2
  42. package/dist/modules/customers/components/detail/schedule/useScheduleFormState.js +20 -3
  43. package/dist/modules/customers/components/detail/schedule/useScheduleFormState.js.map +2 -2
  44. package/package.json +3 -3
  45. package/src/modules/customers/api/companies/[id]/route.ts +30 -20
  46. package/src/modules/customers/api/companies/route.ts +12 -7
  47. package/src/modules/customers/api/people/[id]/companies/enriched/route.ts +12 -7
  48. package/src/modules/customers/api/people/route.ts +12 -7
  49. package/src/modules/customers/backend/customers/companies-v2/[id]/page.tsx +22 -0
  50. package/src/modules/customers/backend/customers/people-v2/[id]/page.tsx +28 -21
  51. package/src/modules/customers/components/detail/ActivitiesAddNewMenu.tsx +67 -0
  52. package/src/modules/customers/components/detail/ActivitiesCard.tsx +231 -0
  53. package/src/modules/customers/components/detail/ActivitiesDayStrip.tsx +390 -0
  54. package/src/modules/customers/components/detail/ActivitiesSection.tsx +91 -40
  55. package/src/modules/customers/components/detail/ActivityLogTab.tsx +25 -23
  56. package/src/modules/customers/components/detail/ActivityTimeline.tsx +15 -19
  57. package/src/modules/customers/components/detail/ActivityTimelineFilters.tsx +36 -29
  58. package/src/modules/customers/components/detail/AiActionChips.tsx +17 -23
  59. package/src/modules/customers/components/detail/ScheduleActivityDialog.tsx +233 -41
  60. package/src/modules/customers/components/detail/schedule/DateTimeFields.tsx +6 -2
  61. package/src/modules/customers/components/detail/schedule/FooterFields.tsx +22 -2
  62. package/src/modules/customers/components/detail/schedule/LinkedEntitiesField.tsx +10 -2
  63. package/src/modules/customers/components/detail/schedule/ParticipantsField.tsx +10 -2
  64. package/src/modules/customers/components/detail/schedule/fieldConfig.ts +26 -6
  65. package/src/modules/customers/components/detail/schedule/useScheduleFormState.ts +32 -3
  66. package/src/modules/customers/i18n/de.json +69 -2
  67. package/src/modules/customers/i18n/en.json +69 -2
  68. package/src/modules/customers/i18n/es.json +69 -2
  69. package/src/modules/customers/i18n/pl.json +68 -1
@@ -4,12 +4,33 @@
4
4
  "audit_logs.resource_kind.customers.comment": "Kommentar",
5
5
  "audit_logs.resource_kind.customers.todoLink": "Aufgabe",
6
6
  "backend.nav.configuration": "Konfiguration",
7
+ "customers.activities.add.call": "Anruf protokollieren",
8
+ "customers.activities.add.email": "E-Mail verfassen",
9
+ "customers.activities.add.meeting": "Neues Meeting",
10
+ "customers.activities.add.task": "Neue Aufgabe",
11
+ "customers.activities.addNew": "Neu hinzufügen",
12
+ "customers.activities.calendar.eventPlural": "Ereignisse",
13
+ "customers.activities.calendar.eventSingular": "Ereignis",
14
+ "customers.activities.calendar.eventsSummary": "{count} {countLabel} · {duration}",
15
+ "customers.activities.calendar.hoursMinutesShort": "{hours}h {minutes}m",
16
+ "customers.activities.calendar.hoursShort": "{hours}h",
17
+ "customers.activities.calendar.minutesShort": "{minutes}m",
18
+ "customers.activities.calendar.monthYear": "{month} {year}",
19
+ "customers.activities.calendar.nextMonth": "Nächster Monat",
20
+ "customers.activities.calendar.nextWindow": "Nächste Tage",
21
+ "customers.activities.calendar.prevMonth": "Vorheriger Monat",
22
+ "customers.activities.calendar.prevWindow": "Vorherige Tage",
23
+ "customers.activities.calendar.weekend": "Wochenende",
24
+ "customers.activities.card.empty": "Für diesen Tag ist nichts geplant.",
25
+ "customers.activities.card.overdue": "{count} überfällig",
26
+ "customers.activities.card.title": "Aktivitäten",
7
27
  "customers.activities.filters.clearAll": "Clear filters",
8
28
  "customers.activities.filters.dateRange": "Date range",
9
29
  "customers.activities.loadFailed": "Aktivitäten konnten nicht geladen werden.",
10
30
  "customers.activities.loadMore": "Load more",
11
31
  "customers.activities.overdue": "",
12
32
  "customers.activities.seeAll": "",
33
+ "customers.activities.seeMatching": "",
13
34
  "customers.activities.yearSeparator": "",
14
35
  "customers.activityComposer.cancel": "Cancel",
15
36
  "customers.activityComposer.dateLabel": "Date",
@@ -1781,22 +1802,46 @@
1781
1802
  "customers.schedule.addVisibleLinks": "Alle sichtbaren hinzufügen",
1782
1803
  "customers.schedule.addVisibleParticipants": "Alle sichtbaren hinzufügen",
1783
1804
  "customers.schedule.allDay": "All day",
1805
+ "customers.schedule.attendees": "Attendees",
1784
1806
  "customers.schedule.body": "Inhalt",
1807
+ "customers.schedule.call.direction.inbound": "Eingehend",
1808
+ "customers.schedule.call.direction.outbound": "Ausgehend",
1809
+ "customers.schedule.call.directionLabel": "Richtung",
1810
+ "customers.schedule.call.outcome.badNumber": "Falsche Nummer",
1811
+ "customers.schedule.call.outcome.busy": "Besetzt",
1812
+ "customers.schedule.call.outcome.connected": "Verbunden",
1813
+ "customers.schedule.call.outcome.noAnswer": "Keine Antwort",
1814
+ "customers.schedule.call.outcome.voicemail": "Voicemail",
1815
+ "customers.schedule.call.outcomeLabel": "Ergebnis",
1816
+ "customers.schedule.call.phoneLabel": "Telefonnummer",
1817
+ "customers.schedule.call.phonePlaceholder": "+1 555 000 0000",
1818
+ "customers.schedule.call.save": "Anruf protokollieren",
1819
+ "customers.schedule.call.subtitle": "Protokollieren Sie einen gerade geführten Anruf oder planen Sie einen",
1820
+ "customers.schedule.call.title": "Anruf protokollieren",
1821
+ "customers.schedule.callNotes": "Call notes",
1785
1822
  "customers.schedule.cancel": "Cancel",
1786
1823
  "customers.schedule.conflict.description": "Overlaps with: {{items}}",
1787
1824
  "customers.schedule.conflict.title": "Calendar conflict",
1825
+ "customers.schedule.connections": "Connections",
1826
+ "customers.schedule.contact": "Contact",
1788
1827
  "customers.schedule.context": "On timeline: {{name}}",
1789
1828
  "customers.schedule.date": "Date",
1790
1829
  "customers.schedule.description": "Description",
1791
1830
  "customers.schedule.descriptionPlaceholder": "Add details...",
1831
+ "customers.schedule.details": "Details",
1792
1832
  "customers.schedule.discardConfirm.cancel": "Weiter bearbeiten",
1793
1833
  "customers.schedule.discardConfirm.confirm": "Verwerfen",
1794
1834
  "customers.schedule.discardConfirm.description": "Sie haben nicht gespeicherte Änderungen in dieser Aktivität. Speichern Sie sie zuerst oder fahren Sie fort, um sie zu verwerfen.",
1795
1835
  "customers.schedule.discardConfirm.title": "Nicht gespeicherte Änderungen verwerfen?",
1796
1836
  "customers.schedule.dueDate": "Fälligkeitsdatum",
1837
+ "customers.schedule.dueTime": "Due time",
1797
1838
  "customers.schedule.duration": "Duration",
1798
1839
  "customers.schedule.editTitle": "Aktivität bearbeiten",
1840
+ "customers.schedule.email.save": "E-Mail senden",
1841
+ "customers.schedule.email.subtitle": "Verfassen und senden Sie eine getrackte E-Mail",
1842
+ "customers.schedule.email.title": "E-Mail verfassen",
1799
1843
  "customers.schedule.error": "Failed to schedule activity",
1844
+ "customers.schedule.estimate": "Estimate",
1800
1845
  "customers.schedule.guestPerm.invite": "Invite others",
1801
1846
  "customers.schedule.guestPerm.modify": "Modify",
1802
1847
  "customers.schedule.guestPerm.seeList": "See list",
@@ -1808,6 +1853,10 @@
1808
1853
  "customers.schedule.loadMore": "Load more",
1809
1854
  "customers.schedule.location": "Location",
1810
1855
  "customers.schedule.locationPlaceholder": "Add location or meeting link...",
1856
+ "customers.schedule.meeting.save": "Aktivität speichern",
1857
+ "customers.schedule.meeting.subtitle": "Termin im Kalender mit Teilnehmern blockieren",
1858
+ "customers.schedule.meeting.title": "Neues Meeting",
1859
+ "customers.schedule.message": "Message",
1811
1860
  "customers.schedule.noResults": "No results",
1812
1861
  "customers.schedule.participants": "Participants",
1813
1862
  "customers.schedule.recurrence.active": "Repeats",
@@ -1815,10 +1864,15 @@
1815
1864
  "customers.schedule.recurrence.edit": "Bearbeiten",
1816
1865
  "customers.schedule.recurrence.ends": "Ends",
1817
1866
  "customers.schedule.recurrence.never": "Never",
1818
- "customers.schedule.recurrence.none": "No repeat",
1867
+ "customers.schedule.recurrence.none": "Does not repeat",
1819
1868
  "customers.schedule.recurrence.onDate": "On date",
1820
1869
  "customers.schedule.recurrence.title": "Recurrence",
1821
1870
  "customers.schedule.reminder": "Reminder",
1871
+ "customers.schedule.reminder.dayBefore": "1 day before",
1872
+ "customers.schedule.reminder.daysBefore": "{days} days before",
1873
+ "customers.schedule.reminder.hourBefore": "1 hour before",
1874
+ "customers.schedule.reminder.hoursBefore": "{hours} hours before",
1875
+ "customers.schedule.reminder.minutesBefore": "{minutes} min before",
1822
1876
  "customers.schedule.reminder.none": "None",
1823
1877
  "customers.schedule.removeLink": "Verknüpfung entfernen",
1824
1878
  "customers.schedule.removeParticipant": "Teilnehmer entfernen",
@@ -1834,9 +1888,19 @@
1834
1888
  "customers.schedule.searching": "Searching...",
1835
1889
  "customers.schedule.start": "Start",
1836
1890
  "customers.schedule.subject": "Betreff",
1891
+ "customers.schedule.subjectPlaceholder": "Subject...",
1892
+ "customers.schedule.task.priority.high": "Hoch",
1893
+ "customers.schedule.task.priority.low": "Niedrig",
1894
+ "customers.schedule.task.priority.medium": "Mittel",
1895
+ "customers.schedule.task.priority.urgent": "Dringend",
1896
+ "customers.schedule.task.priorityLabel": "Priorität",
1897
+ "customers.schedule.task.save": "Aufgabe speichern",
1898
+ "customers.schedule.task.subtitle": "Erfassen Sie etwas zum Nachverfolgen",
1899
+ "customers.schedule.task.title": "Neue Aufgabe",
1837
1900
  "customers.schedule.title": "Schedule activity",
1838
1901
  "customers.schedule.titleLabel": "Title",
1839
1902
  "customers.schedule.titlePlaceholder": "Activity title...",
1903
+ "customers.schedule.to": "To",
1840
1904
  "customers.schedule.types.call": "Call",
1841
1905
  "customers.schedule.types.email": "Email",
1842
1906
  "customers.schedule.types.meeting": "Meeting",
@@ -1923,10 +1987,11 @@
1923
1987
  "customers.temperature.warm": "High Interest",
1924
1988
  "customers.timeline.author": "by {{name}}",
1925
1989
  "customers.timeline.date.today": "today",
1990
+ "customers.timeline.date.tomorrow": "tomorrow",
1926
1991
  "customers.timeline.date.yesterday": "yesterday",
1927
1992
  "customers.timeline.edit": "Edit",
1928
1993
  "customers.timeline.empty": "No activities match the current filters.",
1929
- "customers.timeline.filter.all": "All",
1994
+ "customers.timeline.filter.all": "All Activities",
1930
1995
  "customers.timeline.filter.call": "Call",
1931
1996
  "customers.timeline.filter.email": "Email",
1932
1997
  "customers.timeline.filter.from": "From date",
@@ -1934,6 +1999,8 @@
1934
1999
  "customers.timeline.filter.note": "Note",
1935
2000
  "customers.timeline.filter.to": "To date",
1936
2001
  "customers.timeline.history.filtered": "filtered: {{types}} · {{count}} results",
2002
+ "customers.timeline.history.searchAriaLabel": "",
2003
+ "customers.timeline.history.searchPlaceholder": "",
1937
2004
  "customers.timeline.history.seeAll": "See all {{count}} activities",
1938
2005
  "customers.timeline.history.title": "Interaction history with {{name}}",
1939
2006
  "customers.timeline.history.titleGeneric": "Interaction history",
@@ -4,12 +4,33 @@
4
4
  "audit_logs.resource_kind.customers.comment": "Comment",
5
5
  "audit_logs.resource_kind.customers.todoLink": "Todo",
6
6
  "backend.nav.configuration": "Configuration",
7
+ "customers.activities.add.call": "Log call",
8
+ "customers.activities.add.email": "Compose email",
9
+ "customers.activities.add.meeting": "New meeting",
10
+ "customers.activities.add.task": "New task",
11
+ "customers.activities.addNew": "Add new",
12
+ "customers.activities.calendar.eventPlural": "events",
13
+ "customers.activities.calendar.eventSingular": "event",
14
+ "customers.activities.calendar.eventsSummary": "{count} {countLabel} · {duration}",
15
+ "customers.activities.calendar.hoursMinutesShort": "{hours}h {minutes}m",
16
+ "customers.activities.calendar.hoursShort": "{hours}h",
17
+ "customers.activities.calendar.minutesShort": "{minutes}m",
18
+ "customers.activities.calendar.monthYear": "{month} {year}",
19
+ "customers.activities.calendar.nextMonth": "Next month",
20
+ "customers.activities.calendar.nextWindow": "Next days",
21
+ "customers.activities.calendar.prevMonth": "Previous month",
22
+ "customers.activities.calendar.prevWindow": "Previous days",
23
+ "customers.activities.calendar.weekend": "Weekend",
24
+ "customers.activities.card.empty": "Nothing scheduled for this day.",
25
+ "customers.activities.card.overdue": "{count} overdue",
26
+ "customers.activities.card.title": "Activities",
7
27
  "customers.activities.filters.clearAll": "Clear filters",
8
28
  "customers.activities.filters.dateRange": "Date range",
9
29
  "customers.activities.loadFailed": "Failed to load activities.",
10
30
  "customers.activities.loadMore": "Load more",
11
31
  "customers.activities.overdue": "{count} overdue",
12
32
  "customers.activities.seeAll": "See all {count} activities",
33
+ "customers.activities.seeMatching": "Showing {visible} of {total} activities",
13
34
  "customers.activities.yearSeparator": "{year}",
14
35
  "customers.activityComposer.cancel": "Cancel",
15
36
  "customers.activityComposer.dateLabel": "Date",
@@ -1781,22 +1802,46 @@
1781
1802
  "customers.schedule.addVisibleLinks": "Add all visible",
1782
1803
  "customers.schedule.addVisibleParticipants": "Add all visible",
1783
1804
  "customers.schedule.allDay": "All day",
1805
+ "customers.schedule.attendees": "Attendees",
1784
1806
  "customers.schedule.body": "Body",
1807
+ "customers.schedule.call.direction.inbound": "Inbound",
1808
+ "customers.schedule.call.direction.outbound": "Outbound",
1809
+ "customers.schedule.call.directionLabel": "Direction",
1810
+ "customers.schedule.call.outcome.badNumber": "Bad number",
1811
+ "customers.schedule.call.outcome.busy": "Busy",
1812
+ "customers.schedule.call.outcome.connected": "Connected",
1813
+ "customers.schedule.call.outcome.noAnswer": "No answer",
1814
+ "customers.schedule.call.outcome.voicemail": "Voicemail",
1815
+ "customers.schedule.call.outcomeLabel": "Outcome",
1816
+ "customers.schedule.call.phoneLabel": "Phone number",
1817
+ "customers.schedule.call.phonePlaceholder": "+1 555 000 0000",
1818
+ "customers.schedule.call.save": "Log call",
1819
+ "customers.schedule.call.subtitle": "Log a call you just had or schedule one",
1820
+ "customers.schedule.call.title": "Log call",
1821
+ "customers.schedule.callNotes": "Call notes",
1785
1822
  "customers.schedule.cancel": "Cancel",
1786
1823
  "customers.schedule.conflict.description": "Overlaps with: {{items}}",
1787
1824
  "customers.schedule.conflict.title": "Calendar conflict",
1825
+ "customers.schedule.connections": "Connections",
1826
+ "customers.schedule.contact": "Contact",
1788
1827
  "customers.schedule.context": "On timeline: {{name}}",
1789
1828
  "customers.schedule.date": "Date",
1790
1829
  "customers.schedule.description": "Description",
1791
1830
  "customers.schedule.descriptionPlaceholder": "Add details...",
1831
+ "customers.schedule.details": "Details",
1792
1832
  "customers.schedule.discardConfirm.cancel": "Keep editing",
1793
1833
  "customers.schedule.discardConfirm.confirm": "Discard",
1794
1834
  "customers.schedule.discardConfirm.description": "You have unsaved edits in this activity. Save them first or continue to discard them.",
1795
1835
  "customers.schedule.discardConfirm.title": "Discard unsaved changes?",
1796
1836
  "customers.schedule.dueDate": "Due date",
1837
+ "customers.schedule.dueTime": "Due time",
1797
1838
  "customers.schedule.duration": "Duration",
1798
1839
  "customers.schedule.editTitle": "Edit activity",
1840
+ "customers.schedule.email.save": "Send email",
1841
+ "customers.schedule.email.subtitle": "Compose and send a tracked email",
1842
+ "customers.schedule.email.title": "Compose email",
1799
1843
  "customers.schedule.error": "Failed to schedule activity",
1844
+ "customers.schedule.estimate": "Estimate",
1800
1845
  "customers.schedule.guestPerm.invite": "Invite others",
1801
1846
  "customers.schedule.guestPerm.modify": "Modify",
1802
1847
  "customers.schedule.guestPerm.seeList": "See list",
@@ -1808,6 +1853,10 @@
1808
1853
  "customers.schedule.loadMore": "Load more",
1809
1854
  "customers.schedule.location": "Location",
1810
1855
  "customers.schedule.locationPlaceholder": "Add location or meeting link...",
1856
+ "customers.schedule.meeting.save": "Save activity",
1857
+ "customers.schedule.meeting.subtitle": "Block time on the calendar with attendees",
1858
+ "customers.schedule.meeting.title": "New meeting",
1859
+ "customers.schedule.message": "Message",
1811
1860
  "customers.schedule.noResults": "No results",
1812
1861
  "customers.schedule.participants": "Participants",
1813
1862
  "customers.schedule.recurrence.active": "Repeats",
@@ -1815,10 +1864,15 @@
1815
1864
  "customers.schedule.recurrence.edit": "Edit",
1816
1865
  "customers.schedule.recurrence.ends": "Ends",
1817
1866
  "customers.schedule.recurrence.never": "Never",
1818
- "customers.schedule.recurrence.none": "No repeat",
1867
+ "customers.schedule.recurrence.none": "Does not repeat",
1819
1868
  "customers.schedule.recurrence.onDate": "On date",
1820
1869
  "customers.schedule.recurrence.title": "Recurrence",
1821
1870
  "customers.schedule.reminder": "Reminder",
1871
+ "customers.schedule.reminder.dayBefore": "1 day before",
1872
+ "customers.schedule.reminder.daysBefore": "{days} days before",
1873
+ "customers.schedule.reminder.hourBefore": "1 hour before",
1874
+ "customers.schedule.reminder.hoursBefore": "{hours} hours before",
1875
+ "customers.schedule.reminder.minutesBefore": "{minutes} min before",
1822
1876
  "customers.schedule.reminder.none": "None",
1823
1877
  "customers.schedule.removeLink": "Remove link",
1824
1878
  "customers.schedule.removeParticipant": "Remove participant",
@@ -1834,9 +1888,19 @@
1834
1888
  "customers.schedule.searching": "Searching...",
1835
1889
  "customers.schedule.start": "Start",
1836
1890
  "customers.schedule.subject": "Subject",
1891
+ "customers.schedule.subjectPlaceholder": "Subject...",
1892
+ "customers.schedule.task.priority.high": "High",
1893
+ "customers.schedule.task.priority.low": "Low",
1894
+ "customers.schedule.task.priority.medium": "Medium",
1895
+ "customers.schedule.task.priority.urgent": "Urgent",
1896
+ "customers.schedule.task.priorityLabel": "Priority",
1897
+ "customers.schedule.task.save": "Save task",
1898
+ "customers.schedule.task.subtitle": "Capture something to follow up on",
1899
+ "customers.schedule.task.title": "New task",
1837
1900
  "customers.schedule.title": "Schedule activity",
1838
1901
  "customers.schedule.titleLabel": "Title",
1839
1902
  "customers.schedule.titlePlaceholder": "Activity title...",
1903
+ "customers.schedule.to": "To",
1840
1904
  "customers.schedule.types.call": "Call",
1841
1905
  "customers.schedule.types.email": "Email",
1842
1906
  "customers.schedule.types.meeting": "Meeting",
@@ -1923,10 +1987,11 @@
1923
1987
  "customers.temperature.warm": "High Interest",
1924
1988
  "customers.timeline.author": "by {{name}}",
1925
1989
  "customers.timeline.date.today": "today",
1990
+ "customers.timeline.date.tomorrow": "tomorrow",
1926
1991
  "customers.timeline.date.yesterday": "yesterday",
1927
1992
  "customers.timeline.edit": "Edit",
1928
1993
  "customers.timeline.empty": "No activities match the current filters.",
1929
- "customers.timeline.filter.all": "All",
1994
+ "customers.timeline.filter.all": "All Activities",
1930
1995
  "customers.timeline.filter.call": "Call",
1931
1996
  "customers.timeline.filter.email": "Email",
1932
1997
  "customers.timeline.filter.from": "From date",
@@ -1934,6 +1999,8 @@
1934
1999
  "customers.timeline.filter.note": "Note",
1935
2000
  "customers.timeline.filter.to": "To date",
1936
2001
  "customers.timeline.history.filtered": "filtered: {{types}} · {{count}} results",
2002
+ "customers.timeline.history.searchAriaLabel": "Search interaction history",
2003
+ "customers.timeline.history.searchPlaceholder": "Search...",
1937
2004
  "customers.timeline.history.seeAll": "See all {{count}} activities",
1938
2005
  "customers.timeline.history.title": "Interaction history with {{name}}",
1939
2006
  "customers.timeline.history.titleGeneric": "Interaction history",
@@ -4,12 +4,33 @@
4
4
  "audit_logs.resource_kind.customers.comment": "Comentario",
5
5
  "audit_logs.resource_kind.customers.todoLink": "Tarea",
6
6
  "backend.nav.configuration": "Configuración",
7
+ "customers.activities.add.call": "Registrar llamada",
8
+ "customers.activities.add.email": "Redactar correo",
9
+ "customers.activities.add.meeting": "Nueva reunión",
10
+ "customers.activities.add.task": "Nueva tarea",
11
+ "customers.activities.addNew": "Añadir nuevo",
12
+ "customers.activities.calendar.eventPlural": "eventos",
13
+ "customers.activities.calendar.eventSingular": "evento",
14
+ "customers.activities.calendar.eventsSummary": "{count} {countLabel} · {duration}",
15
+ "customers.activities.calendar.hoursMinutesShort": "{hours}h {minutes}m",
16
+ "customers.activities.calendar.hoursShort": "{hours}h",
17
+ "customers.activities.calendar.minutesShort": "{minutes}m",
18
+ "customers.activities.calendar.monthYear": "{month} {year}",
19
+ "customers.activities.calendar.nextMonth": "Próximo mes",
20
+ "customers.activities.calendar.nextWindow": "Días siguientes",
21
+ "customers.activities.calendar.prevMonth": "Mes anterior",
22
+ "customers.activities.calendar.prevWindow": "Días anteriores",
23
+ "customers.activities.calendar.weekend": "Fin de semana",
24
+ "customers.activities.card.empty": "Nada programado para este día.",
25
+ "customers.activities.card.overdue": "{count} vencidas",
26
+ "customers.activities.card.title": "Actividades",
7
27
  "customers.activities.filters.clearAll": "Clear filters",
8
28
  "customers.activities.filters.dateRange": "Date range",
9
29
  "customers.activities.loadFailed": "No se pudieron cargar las actividades.",
10
30
  "customers.activities.loadMore": "Load more",
11
31
  "customers.activities.overdue": "",
12
32
  "customers.activities.seeAll": "",
33
+ "customers.activities.seeMatching": "",
13
34
  "customers.activities.yearSeparator": "",
14
35
  "customers.activityComposer.cancel": "Cancel",
15
36
  "customers.activityComposer.dateLabel": "Date",
@@ -1781,22 +1802,46 @@
1781
1802
  "customers.schedule.addVisibleLinks": "Agregar todos los visibles",
1782
1803
  "customers.schedule.addVisibleParticipants": "Agregar todos los visibles",
1783
1804
  "customers.schedule.allDay": "All day",
1805
+ "customers.schedule.attendees": "Attendees",
1784
1806
  "customers.schedule.body": "Contenido",
1807
+ "customers.schedule.call.direction.inbound": "Entrante",
1808
+ "customers.schedule.call.direction.outbound": "Saliente",
1809
+ "customers.schedule.call.directionLabel": "Dirección",
1810
+ "customers.schedule.call.outcome.badNumber": "Número incorrecto",
1811
+ "customers.schedule.call.outcome.busy": "Ocupado",
1812
+ "customers.schedule.call.outcome.connected": "Conectado",
1813
+ "customers.schedule.call.outcome.noAnswer": "Sin respuesta",
1814
+ "customers.schedule.call.outcome.voicemail": "Buzón de voz",
1815
+ "customers.schedule.call.outcomeLabel": "Resultado",
1816
+ "customers.schedule.call.phoneLabel": "Número de teléfono",
1817
+ "customers.schedule.call.phonePlaceholder": "+1 555 000 0000",
1818
+ "customers.schedule.call.save": "Registrar llamada",
1819
+ "customers.schedule.call.subtitle": "Registra una llamada que acabas de tener o programa una",
1820
+ "customers.schedule.call.title": "Registrar llamada",
1821
+ "customers.schedule.callNotes": "Call notes",
1785
1822
  "customers.schedule.cancel": "Cancel",
1786
1823
  "customers.schedule.conflict.description": "Overlaps with: {{items}}",
1787
1824
  "customers.schedule.conflict.title": "Calendar conflict",
1825
+ "customers.schedule.connections": "Connections",
1826
+ "customers.schedule.contact": "Contact",
1788
1827
  "customers.schedule.context": "On timeline: {{name}}",
1789
1828
  "customers.schedule.date": "Date",
1790
1829
  "customers.schedule.description": "Description",
1791
1830
  "customers.schedule.descriptionPlaceholder": "Add details...",
1831
+ "customers.schedule.details": "Details",
1792
1832
  "customers.schedule.discardConfirm.cancel": "Seguir editando",
1793
1833
  "customers.schedule.discardConfirm.confirm": "Descartar",
1794
1834
  "customers.schedule.discardConfirm.description": "Tienes cambios sin guardar en esta actividad. Guárdalos primero o continúa para descartarlos.",
1795
1835
  "customers.schedule.discardConfirm.title": "¿Descartar cambios sin guardar?",
1796
1836
  "customers.schedule.dueDate": "Fecha límite",
1837
+ "customers.schedule.dueTime": "Due time",
1797
1838
  "customers.schedule.duration": "Duration",
1798
1839
  "customers.schedule.editTitle": "Editar actividad",
1840
+ "customers.schedule.email.save": "Enviar correo",
1841
+ "customers.schedule.email.subtitle": "Redacta y envía un correo con seguimiento",
1842
+ "customers.schedule.email.title": "Redactar correo",
1799
1843
  "customers.schedule.error": "Failed to schedule activity",
1844
+ "customers.schedule.estimate": "Estimate",
1800
1845
  "customers.schedule.guestPerm.invite": "Invite others",
1801
1846
  "customers.schedule.guestPerm.modify": "Modify",
1802
1847
  "customers.schedule.guestPerm.seeList": "See list",
@@ -1808,6 +1853,10 @@
1808
1853
  "customers.schedule.loadMore": "Load more",
1809
1854
  "customers.schedule.location": "Location",
1810
1855
  "customers.schedule.locationPlaceholder": "Add location or meeting link...",
1856
+ "customers.schedule.meeting.save": "Guardar actividad",
1857
+ "customers.schedule.meeting.subtitle": "Bloquea tiempo en el calendario con asistentes",
1858
+ "customers.schedule.meeting.title": "Nueva reunión",
1859
+ "customers.schedule.message": "Message",
1811
1860
  "customers.schedule.noResults": "No results",
1812
1861
  "customers.schedule.participants": "Participants",
1813
1862
  "customers.schedule.recurrence.active": "Repeats",
@@ -1815,10 +1864,15 @@
1815
1864
  "customers.schedule.recurrence.edit": "Editar",
1816
1865
  "customers.schedule.recurrence.ends": "Ends",
1817
1866
  "customers.schedule.recurrence.never": "Never",
1818
- "customers.schedule.recurrence.none": "No repeat",
1867
+ "customers.schedule.recurrence.none": "Does not repeat",
1819
1868
  "customers.schedule.recurrence.onDate": "On date",
1820
1869
  "customers.schedule.recurrence.title": "Recurrence",
1821
1870
  "customers.schedule.reminder": "Reminder",
1871
+ "customers.schedule.reminder.dayBefore": "1 day before",
1872
+ "customers.schedule.reminder.daysBefore": "{days} days before",
1873
+ "customers.schedule.reminder.hourBefore": "1 hour before",
1874
+ "customers.schedule.reminder.hoursBefore": "{hours} hours before",
1875
+ "customers.schedule.reminder.minutesBefore": "{minutes} min before",
1822
1876
  "customers.schedule.reminder.none": "None",
1823
1877
  "customers.schedule.removeLink": "Eliminar enlace",
1824
1878
  "customers.schedule.removeParticipant": "Eliminar participante",
@@ -1834,9 +1888,19 @@
1834
1888
  "customers.schedule.searching": "Searching...",
1835
1889
  "customers.schedule.start": "Start",
1836
1890
  "customers.schedule.subject": "Asunto",
1891
+ "customers.schedule.subjectPlaceholder": "Subject...",
1892
+ "customers.schedule.task.priority.high": "Alta",
1893
+ "customers.schedule.task.priority.low": "Baja",
1894
+ "customers.schedule.task.priority.medium": "Media",
1895
+ "customers.schedule.task.priority.urgent": "Urgente",
1896
+ "customers.schedule.task.priorityLabel": "Prioridad",
1897
+ "customers.schedule.task.save": "Guardar tarea",
1898
+ "customers.schedule.task.subtitle": "Captura algo para hacer seguimiento",
1899
+ "customers.schedule.task.title": "Nueva tarea",
1837
1900
  "customers.schedule.title": "Schedule activity",
1838
1901
  "customers.schedule.titleLabel": "Title",
1839
1902
  "customers.schedule.titlePlaceholder": "Activity title...",
1903
+ "customers.schedule.to": "To",
1840
1904
  "customers.schedule.types.call": "Call",
1841
1905
  "customers.schedule.types.email": "Email",
1842
1906
  "customers.schedule.types.meeting": "Meeting",
@@ -1923,10 +1987,11 @@
1923
1987
  "customers.temperature.warm": "High Interest",
1924
1988
  "customers.timeline.author": "by {{name}}",
1925
1989
  "customers.timeline.date.today": "today",
1990
+ "customers.timeline.date.tomorrow": "tomorrow",
1926
1991
  "customers.timeline.date.yesterday": "yesterday",
1927
1992
  "customers.timeline.edit": "Edit",
1928
1993
  "customers.timeline.empty": "No activities match the current filters.",
1929
- "customers.timeline.filter.all": "All",
1994
+ "customers.timeline.filter.all": "All Activities",
1930
1995
  "customers.timeline.filter.call": "Call",
1931
1996
  "customers.timeline.filter.email": "Email",
1932
1997
  "customers.timeline.filter.from": "From date",
@@ -1934,6 +1999,8 @@
1934
1999
  "customers.timeline.filter.note": "Note",
1935
2000
  "customers.timeline.filter.to": "To date",
1936
2001
  "customers.timeline.history.filtered": "filtered: {{types}} · {{count}} results",
2002
+ "customers.timeline.history.searchAriaLabel": "",
2003
+ "customers.timeline.history.searchPlaceholder": "",
1937
2004
  "customers.timeline.history.seeAll": "See all {{count}} activities",
1938
2005
  "customers.timeline.history.title": "Interaction history with {{name}}",
1939
2006
  "customers.timeline.history.titleGeneric": "Interaction history",
@@ -4,12 +4,33 @@
4
4
  "audit_logs.resource_kind.customers.comment": "Komentarz",
5
5
  "audit_logs.resource_kind.customers.todoLink": "Zadanie",
6
6
  "backend.nav.configuration": "Konfiguracja",
7
+ "customers.activities.add.call": "Zarejestruj rozmowę",
8
+ "customers.activities.add.email": "Napisz e-mail",
9
+ "customers.activities.add.meeting": "Nowe spotkanie",
10
+ "customers.activities.add.task": "Nowe zadanie",
11
+ "customers.activities.addNew": "Dodaj nowe",
12
+ "customers.activities.calendar.eventPlural": "wydarzeń",
13
+ "customers.activities.calendar.eventSingular": "wydarzenie",
14
+ "customers.activities.calendar.eventsSummary": "{count} {countLabel} · {duration}",
15
+ "customers.activities.calendar.hoursMinutesShort": "{hours}h {minutes}m",
16
+ "customers.activities.calendar.hoursShort": "{hours}h",
17
+ "customers.activities.calendar.minutesShort": "{minutes}m",
18
+ "customers.activities.calendar.monthYear": "{month} {year}",
19
+ "customers.activities.calendar.nextMonth": "Następny miesiąc",
20
+ "customers.activities.calendar.nextWindow": "Następne dni",
21
+ "customers.activities.calendar.prevMonth": "Poprzedni miesiąc",
22
+ "customers.activities.calendar.prevWindow": "Poprzednie dni",
23
+ "customers.activities.calendar.weekend": "Weekend",
24
+ "customers.activities.card.empty": "Nic nie zaplanowano na ten dzień.",
25
+ "customers.activities.card.overdue": "{count} zaległych",
26
+ "customers.activities.card.title": "Aktywności",
7
27
  "customers.activities.filters.clearAll": "Clear filters",
8
28
  "customers.activities.filters.dateRange": "Date range",
9
29
  "customers.activities.loadFailed": "Nie udało się załadować aktywności.",
10
30
  "customers.activities.loadMore": "Load more",
11
31
  "customers.activities.overdue": "{count} zaległe",
12
32
  "customers.activities.seeAll": "Zobacz wszystkie {count} aktywności",
33
+ "customers.activities.seeMatching": "Pokazuję {visible} z {total} aktywności",
13
34
  "customers.activities.yearSeparator": "{year}",
14
35
  "customers.activityComposer.cancel": "Anuluj",
15
36
  "customers.activityComposer.dateLabel": "Data",
@@ -1781,22 +1802,46 @@
1781
1802
  "customers.schedule.addVisibleLinks": "Dodaj wszystkie widoczne",
1782
1803
  "customers.schedule.addVisibleParticipants": "Dodaj wszystkich widocznych",
1783
1804
  "customers.schedule.allDay": "Cały dzień",
1805
+ "customers.schedule.attendees": "Uczestnicy",
1784
1806
  "customers.schedule.body": "Treść",
1807
+ "customers.schedule.call.direction.inbound": "Przychodzący",
1808
+ "customers.schedule.call.direction.outbound": "Wychodzący",
1809
+ "customers.schedule.call.directionLabel": "Kierunek",
1810
+ "customers.schedule.call.outcome.badNumber": "Zły numer",
1811
+ "customers.schedule.call.outcome.busy": "Zajęty",
1812
+ "customers.schedule.call.outcome.connected": "Połączono",
1813
+ "customers.schedule.call.outcome.noAnswer": "Brak odpowiedzi",
1814
+ "customers.schedule.call.outcome.voicemail": "Poczta głosowa",
1815
+ "customers.schedule.call.outcomeLabel": "Wynik",
1816
+ "customers.schedule.call.phoneLabel": "Numer telefonu",
1817
+ "customers.schedule.call.phonePlaceholder": "+1 555 000 0000",
1818
+ "customers.schedule.call.save": "Zarejestruj rozmowę",
1819
+ "customers.schedule.call.subtitle": "Zarejestruj odbytą rozmowę lub zaplanuj nową",
1820
+ "customers.schedule.call.title": "Zarejestruj rozmowę",
1821
+ "customers.schedule.callNotes": "Notatki z rozmowy",
1785
1822
  "customers.schedule.cancel": "Anuluj",
1786
1823
  "customers.schedule.conflict.description": "Overlaps with: {{items}}",
1787
1824
  "customers.schedule.conflict.title": "Konflikt w kalendarzu",
1825
+ "customers.schedule.connections": "Powiązania",
1826
+ "customers.schedule.contact": "Kontakt",
1788
1827
  "customers.schedule.context": "Na osi czasu: {{name}}",
1789
1828
  "customers.schedule.date": "Data",
1790
1829
  "customers.schedule.description": "Opis",
1791
1830
  "customers.schedule.descriptionPlaceholder": "Dodaj szczegóły...",
1831
+ "customers.schedule.details": "Szczegóły",
1792
1832
  "customers.schedule.discardConfirm.cancel": "Kontynuuj edycję",
1793
1833
  "customers.schedule.discardConfirm.confirm": "Odrzuć",
1794
1834
  "customers.schedule.discardConfirm.description": "Masz niezapisane zmiany w tej aktywności. Zapisz je lub kontynuuj, aby je odrzucić.",
1795
1835
  "customers.schedule.discardConfirm.title": "Odrzucić niezapisane zmiany?",
1796
1836
  "customers.schedule.dueDate": "Termin",
1837
+ "customers.schedule.dueTime": "Godzina",
1797
1838
  "customers.schedule.duration": "Czas trwania",
1798
1839
  "customers.schedule.editTitle": "Edytuj aktywność",
1840
+ "customers.schedule.email.save": "Wyślij e-mail",
1841
+ "customers.schedule.email.subtitle": "Napisz i wyślij śledzony e-mail",
1842
+ "customers.schedule.email.title": "Napisz e-mail",
1799
1843
  "customers.schedule.error": "Nie udało się zaplanować aktywności",
1844
+ "customers.schedule.estimate": "Szacowany czas",
1800
1845
  "customers.schedule.guestPerm.invite": "Invite others",
1801
1846
  "customers.schedule.guestPerm.modify": "Modify",
1802
1847
  "customers.schedule.guestPerm.seeList": "See list",
@@ -1808,6 +1853,10 @@
1808
1853
  "customers.schedule.loadMore": "Load more",
1809
1854
  "customers.schedule.location": "Lokalizacja",
1810
1855
  "customers.schedule.locationPlaceholder": "Dodaj lokalizację lub link do spotkania...",
1856
+ "customers.schedule.meeting.save": "Zapisz aktywność",
1857
+ "customers.schedule.meeting.subtitle": "Zarezerwuj czas w kalendarzu z uczestnikami",
1858
+ "customers.schedule.meeting.title": "Nowe spotkanie",
1859
+ "customers.schedule.message": "Wiadomość",
1811
1860
  "customers.schedule.noResults": "No results",
1812
1861
  "customers.schedule.participants": "Uczestnicy",
1813
1862
  "customers.schedule.recurrence.active": "Powtarza się",
@@ -1819,6 +1868,11 @@
1819
1868
  "customers.schedule.recurrence.onDate": "Dnia",
1820
1869
  "customers.schedule.recurrence.title": "Powtarzanie",
1821
1870
  "customers.schedule.reminder": "Przypomnienie",
1871
+ "customers.schedule.reminder.dayBefore": "1 dzień przed",
1872
+ "customers.schedule.reminder.daysBefore": "{days} dni przed",
1873
+ "customers.schedule.reminder.hourBefore": "1 godzinę przed",
1874
+ "customers.schedule.reminder.hoursBefore": "{hours} godz. przed",
1875
+ "customers.schedule.reminder.minutesBefore": "{minutes} min przed",
1822
1876
  "customers.schedule.reminder.none": "Brak",
1823
1877
  "customers.schedule.removeLink": "Usuń powiązanie",
1824
1878
  "customers.schedule.removeParticipant": "Usuń uczestnika",
@@ -1834,9 +1888,19 @@
1834
1888
  "customers.schedule.searching": "Searching...",
1835
1889
  "customers.schedule.start": "Start",
1836
1890
  "customers.schedule.subject": "Temat",
1891
+ "customers.schedule.subjectPlaceholder": "Temat...",
1892
+ "customers.schedule.task.priority.high": "Wysoki",
1893
+ "customers.schedule.task.priority.low": "Niski",
1894
+ "customers.schedule.task.priority.medium": "Średni",
1895
+ "customers.schedule.task.priority.urgent": "Pilny",
1896
+ "customers.schedule.task.priorityLabel": "Priorytet",
1897
+ "customers.schedule.task.save": "Zapisz zadanie",
1898
+ "customers.schedule.task.subtitle": "Zapisz coś do późniejszego wykonania",
1899
+ "customers.schedule.task.title": "Nowe zadanie",
1837
1900
  "customers.schedule.title": "Zaplanuj aktywność",
1838
1901
  "customers.schedule.titleLabel": "Tytuł",
1839
1902
  "customers.schedule.titlePlaceholder": "Tytuł aktywności...",
1903
+ "customers.schedule.to": "Do",
1840
1904
  "customers.schedule.types.call": "Połączenie",
1841
1905
  "customers.schedule.types.email": "E-mail",
1842
1906
  "customers.schedule.types.meeting": "Spotkanie",
@@ -1923,10 +1987,11 @@
1923
1987
  "customers.temperature.warm": "High Interest",
1924
1988
  "customers.timeline.author": "by {{name}}",
1925
1989
  "customers.timeline.date.today": "dziś",
1990
+ "customers.timeline.date.tomorrow": "tomorrow",
1926
1991
  "customers.timeline.date.yesterday": "wczoraj",
1927
1992
  "customers.timeline.edit": "Edytuj",
1928
1993
  "customers.timeline.empty": "Brak aktywności pasujących do filtrów.",
1929
- "customers.timeline.filter.all": "Wszystkie",
1994
+ "customers.timeline.filter.all": "Wszystkie aktywności",
1930
1995
  "customers.timeline.filter.call": "Telefon",
1931
1996
  "customers.timeline.filter.email": "E-mail",
1932
1997
  "customers.timeline.filter.from": "Od daty",
@@ -1934,6 +1999,8 @@
1934
1999
  "customers.timeline.filter.note": "Notatka",
1935
2000
  "customers.timeline.filter.to": "Do daty",
1936
2001
  "customers.timeline.history.filtered": "filtered: {{types}} · {{count}} wyników",
2002
+ "customers.timeline.history.searchAriaLabel": "Szukaj w historii interakcji",
2003
+ "customers.timeline.history.searchPlaceholder": "Szukaj...",
1937
2004
  "customers.timeline.history.seeAll": "Zobacz wszystkie {{count}} aktywności",
1938
2005
  "customers.timeline.history.title": "Historia interakcji z {{name}}",
1939
2006
  "customers.timeline.history.titleGeneric": "Historia interakcji",