@scopieflows/app-copper 0.1.1

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 (112) hide show
  1. package/README.md +7 -0
  2. package/package.json +28 -0
  3. package/src/i18n/de.json +285 -0
  4. package/src/i18n/es.json +285 -0
  5. package/src/i18n/fr.json +285 -0
  6. package/src/i18n/ja.json +285 -0
  7. package/src/i18n/nl.json +285 -0
  8. package/src/i18n/pt.json +285 -0
  9. package/src/i18n/translation.json +285 -0
  10. package/src/i18n/zh.json +285 -0
  11. package/src/index.d.ts +4 -0
  12. package/src/index.js +94 -0
  13. package/src/index.js.map +1 -0
  14. package/src/lib/actions/convert-lead.d.ts +23 -0
  15. package/src/lib/actions/convert-lead.js +52 -0
  16. package/src/lib/actions/convert-lead.js.map +1 -0
  17. package/src/lib/actions/create-activity.d.ts +15 -0
  18. package/src/lib/actions/create-activity.js +108 -0
  19. package/src/lib/actions/create-activity.js.map +1 -0
  20. package/src/lib/actions/create-company.d.ts +21 -0
  21. package/src/lib/actions/create-company.js +103 -0
  22. package/src/lib/actions/create-company.js.map +1 -0
  23. package/src/lib/actions/create-lead.d.ts +14 -0
  24. package/src/lib/actions/create-lead.js +101 -0
  25. package/src/lib/actions/create-lead.js.map +1 -0
  26. package/src/lib/actions/create-opportunity.d.ts +24 -0
  27. package/src/lib/actions/create-opportunity.js +69 -0
  28. package/src/lib/actions/create-opportunity.js.map +1 -0
  29. package/src/lib/actions/create-person.d.ts +13 -0
  30. package/src/lib/actions/create-person.js +122 -0
  31. package/src/lib/actions/create-person.js.map +1 -0
  32. package/src/lib/actions/create-project.d.ts +7 -0
  33. package/src/lib/actions/create-project.js +35 -0
  34. package/src/lib/actions/create-project.js.map +1 -0
  35. package/src/lib/actions/create-task.d.ts +27 -0
  36. package/src/lib/actions/create-task.js +142 -0
  37. package/src/lib/actions/create-task.js.map +1 -0
  38. package/src/lib/actions/search-for-a-company.d.ts +40 -0
  39. package/src/lib/actions/search-for-a-company.js +258 -0
  40. package/src/lib/actions/search-for-a-company.js.map +1 -0
  41. package/src/lib/actions/search-for-a-lead.d.ts +52 -0
  42. package/src/lib/actions/search-for-a-lead.js +274 -0
  43. package/src/lib/actions/search-for-a-lead.js.map +1 -0
  44. package/src/lib/actions/search-for-a-person.d.ts +54 -0
  45. package/src/lib/actions/search-for-a-person.js +235 -0
  46. package/src/lib/actions/search-for-a-person.js.map +1 -0
  47. package/src/lib/actions/search-for-a-project.d.ts +24 -0
  48. package/src/lib/actions/search-for-a-project.js +165 -0
  49. package/src/lib/actions/search-for-a-project.js.map +1 -0
  50. package/src/lib/actions/search-for-an-activity.d.ts +22 -0
  51. package/src/lib/actions/search-for-an-activity.js +130 -0
  52. package/src/lib/actions/search-for-an-activity.js.map +1 -0
  53. package/src/lib/actions/search-for-an-opportunity.d.ts +74 -0
  54. package/src/lib/actions/search-for-an-opportunity.js +334 -0
  55. package/src/lib/actions/search-for-an-opportunity.js.map +1 -0
  56. package/src/lib/actions/update-company.d.ts +23 -0
  57. package/src/lib/actions/update-company.js +135 -0
  58. package/src/lib/actions/update-company.js.map +1 -0
  59. package/src/lib/actions/update-lead.d.ts +13 -0
  60. package/src/lib/actions/update-lead.js +136 -0
  61. package/src/lib/actions/update-lead.js.map +1 -0
  62. package/src/lib/actions/update-opportunity.d.ts +34 -0
  63. package/src/lib/actions/update-opportunity.js +89 -0
  64. package/src/lib/actions/update-opportunity.js.map +1 -0
  65. package/src/lib/actions/update-person.d.ts +13 -0
  66. package/src/lib/actions/update-person.js +155 -0
  67. package/src/lib/actions/update-person.js.map +1 -0
  68. package/src/lib/actions/update-project.d.ts +16 -0
  69. package/src/lib/actions/update-project.js +56 -0
  70. package/src/lib/actions/update-project.js.map +1 -0
  71. package/src/lib/common/constants.d.ts +35 -0
  72. package/src/lib/common/constants.js +54 -0
  73. package/src/lib/common/constants.js.map +1 -0
  74. package/src/lib/common/props.d.ts +168 -0
  75. package/src/lib/common/props.js +679 -0
  76. package/src/lib/common/props.js.map +1 -0
  77. package/src/lib/common/requests.d.ts +33 -0
  78. package/src/lib/common/requests.js +320 -0
  79. package/src/lib/common/requests.js.map +1 -0
  80. package/src/lib/triggers/new-activity.d.ts +14 -0
  81. package/src/lib/triggers/new-activity.js +74 -0
  82. package/src/lib/triggers/new-activity.js.map +1 -0
  83. package/src/lib/triggers/new-lead.d.ts +14 -0
  84. package/src/lib/triggers/new-lead.js +45 -0
  85. package/src/lib/triggers/new-lead.js.map +1 -0
  86. package/src/lib/triggers/new-person.d.ts +14 -0
  87. package/src/lib/triggers/new-person.js +45 -0
  88. package/src/lib/triggers/new-person.js.map +1 -0
  89. package/src/lib/triggers/new-task.d.ts +14 -0
  90. package/src/lib/triggers/new-task.js +45 -0
  91. package/src/lib/triggers/new-task.js.map +1 -0
  92. package/src/lib/triggers/updated-lead-status.d.ts +14 -0
  93. package/src/lib/triggers/updated-lead-status.js +66 -0
  94. package/src/lib/triggers/updated-lead-status.js.map +1 -0
  95. package/src/lib/triggers/updated-lead.d.ts +14 -0
  96. package/src/lib/triggers/updated-lead.js +45 -0
  97. package/src/lib/triggers/updated-lead.js.map +1 -0
  98. package/src/lib/triggers/updated-opportunity-stage.d.ts +14 -0
  99. package/src/lib/triggers/updated-opportunity-stage.js +73 -0
  100. package/src/lib/triggers/updated-opportunity-stage.js.map +1 -0
  101. package/src/lib/triggers/updated-opportunity-status.d.ts +14 -0
  102. package/src/lib/triggers/updated-opportunity-status.js +66 -0
  103. package/src/lib/triggers/updated-opportunity-status.js.map +1 -0
  104. package/src/lib/triggers/updated-opportunity.d.ts +14 -0
  105. package/src/lib/triggers/updated-opportunity.js +45 -0
  106. package/src/lib/triggers/updated-opportunity.js.map +1 -0
  107. package/src/lib/triggers/updated-project.d.ts +14 -0
  108. package/src/lib/triggers/updated-project.js +45 -0
  109. package/src/lib/triggers/updated-project.js.map +1 -0
  110. package/src/lib/triggers/updated-task.d.ts +14 -0
  111. package/src/lib/triggers/updated-task.js +45 -0
  112. package/src/lib/triggers/updated-task.js.map +1 -0
@@ -0,0 +1,285 @@
1
+ {
2
+ "Email Address": "Uw e-mailadres",
3
+ "API Key": "API Sleutel",
4
+ "Email Address of the Token Owner": "E-mailadres van de tokeneigenaar",
5
+ "Your API Key in settings > integrations": "Uw API-sleutel in instellingen > integraties",
6
+ "Create Person": "Maak persoon aan",
7
+ "Update Person": "Update Persoon",
8
+ "Create Lead": "Maak Lead",
9
+ "Update Lead": "Lead bijwerken",
10
+ "Convert Lead": "Converteer Lead",
11
+ "Create Company": "Bedrijf aanmaken",
12
+ "Update Company": "Bedrijf bijwerken",
13
+ "Create Opportunity": "Verkoopkans creëren",
14
+ "Update Opportunity": "Update Verkoopkans",
15
+ "Create Project": "Project aanmaken",
16
+ "Update Project": "Project bijwerken",
17
+ "Create Task": "Taak maken",
18
+ "Create Activity": "Activiteit aanmaken",
19
+ "Search for an Activity": "Een activiteit zoeken",
20
+ "Search for a Person": "Zoek naar een persoon",
21
+ "Search for a Lead": "Zoek naar een Lead",
22
+ "Search for a Company": "Zoek een bedrijf",
23
+ "Search for an Opportunity": "Zoek naar een kans",
24
+ "Search for a Project": "Zoek naar een project",
25
+ "Custom API Call": "Custom API Call",
26
+ "Adds a new person/contact.": "Voegt een nieuwe persoon/contactpersoon toe.",
27
+ "Updates a person based on matching criteria.": "Werkt een persoon bij op basis van overeenkomende criteria.",
28
+ "Adds a new lead.": "Voegt een nieuwe lead toe.",
29
+ "Updates an existing lead.": "Werkt een bestaande lead bij.",
30
+ "Converts a lead into a person (optionally with company/opportunity).": "Zet een lead om in een persoon (optioneel met bedrijf/opportuniteit).",
31
+ "Adds a new company.": "Voegt een nieuw bedrijf toe.",
32
+ "Updates a company record.": "Werkt een bedrijfsrecord bij.",
33
+ "Adds a new opportunity.": "Voegt een nieuwe kans toe.",
34
+ "Updates an opportunity using match criteria.": "Werkt een kans bij met behulp van overeenkomstcriteria.",
35
+ "Adds a new project.": "Voegt een nieuw project toe.",
36
+ "Updates a project record.": "Werkt een projectrecord bij.",
37
+ "Adds a new task under a person, lead, or opportunity.": "Voegt een nieuwe taak toe onder een persoon, leider of kans.",
38
+ "Logs an activity related to CRM entities.": "Logs een activiteit gerelateerd aan CRM-entiteiten.",
39
+ "Find an existing activity by type/criteria.": "Zoek een bestaande activiteit op type/criteria.",
40
+ "Lookup a person using match criteria.": "Zoek een persoon op met behulp van wedstrijdcriteria.",
41
+ "Lookup a lead using match criteria.": "Zoek een lead met behulp van wedstrijdcriteria.",
42
+ "Lookup a company.": "Zoek een bedrijf.",
43
+ "Lookup an opportunity.": "Zoek een kans.",
44
+ "Lookup a project.": "Zoek een project.",
45
+ "Make a custom API call to a specific endpoint": "Maak een aangepaste API call naar een specifiek eindpunt",
46
+ "Full Name": "Volledige naam",
47
+ "Emails": "E-mails",
48
+ "Phone Numbers": "Telefoon nummers",
49
+ "Street": "Straat",
50
+ "City": "Woonplaats",
51
+ "State/Region": "Staat/regio",
52
+ "Postal Code": "Postcode - Postcode",
53
+ "Country": "Land:",
54
+ "Person": "Persoon",
55
+ "Email": "E-mail",
56
+ "Category of the email address (e.g., work, personal)": "Categorie van het e-mailadres (bijv. werk, persoonlijk)",
57
+ "Lead": "Lood",
58
+ "Company": "Bedrijfsnaam",
59
+ "Opportunity": "Kans",
60
+ "Email Domain": "E-mail domein",
61
+ "Details": "Beschrijving",
62
+ "Primary Contact": "Primair contact",
63
+ "Name": "Naam",
64
+ "Pipeline": "Pijplijn",
65
+ "Pipeline Stage": "Pijplijn stadium",
66
+ "Project": "Project",
67
+ "Task Name": "Taak naam",
68
+ "Activity Type": "Type activiteit",
69
+ "Assignee": "Assignee",
70
+ "Related Record Type": "Verwante Record Type",
71
+ "Related Record": "Gerelateerde Record",
72
+ "Due Date/Time": "Vervaldatum / tijd",
73
+ "Reminder Date/Time": "Herinnering datum/tijd",
74
+ "Priority": "Prioriteit",
75
+ "Tags": "Labels",
76
+ "Parent Entity": "Bovenliggende entiteit",
77
+ "Parent Entity Resource": "Bovenliggende entiteit bron",
78
+ "Page Size": "Paginagrootte",
79
+ "Page Number": "Pagina Nummer",
80
+ "Minimum Activity Date": "Minimale Activiteit Datum",
81
+ "Maximum Activity Date": "Maximale Activiteit Datum",
82
+ "Full Result": "Volledig resultaat",
83
+ "Phone Number": "Telefoon nummer",
84
+ "Contact Type": "Type contactpersoon",
85
+ "State": "Provincie",
86
+ "Socials": "Socials",
87
+ "Followed": "Gevolgd",
88
+ "Age": "Leeftijd",
89
+ "Sort By": "Sorteren op",
90
+ "Sort Direction": "Sorteer richting",
91
+ "Minimum Interaction Count": "Minimum aantal interacties",
92
+ "Maximum Interaction Count": "Maximale Interactie Aantal",
93
+ "Minimum Interaction Date": "Minimale interactie datum",
94
+ "Maximum Interaction Date": "Maximale interactie datum",
95
+ "Minimum Created Date": "Minimum Aanmaakdatum",
96
+ "Maximum Created Date": "Maximale Aanmaakdatum",
97
+ "Lead Status": "Status lead",
98
+ "Customer Source": "Klant bron",
99
+ "Include Converted Leads": "Inclusief geconverteerde Leads",
100
+ "Minimum Monetary Value": "Minimale monetaire waarde",
101
+ "Maximum Monetary Value": "Maximale Monetaire waarde",
102
+ "Minimum Modified Date": "Minimale wijzigingsdatum",
103
+ "Maximum Modified Date": "Maximale wijzigingsdatum",
104
+ "Status": "status",
105
+ "Primary Contacts": "Primaire contactpersonen",
106
+ "Loss Reason": "Verlies Reden",
107
+ "Minimum Stage Change Date": "Minimale Fase Wijzigingsdatum",
108
+ "Maximum Stage Change Date": "Maximale datum wijzigen fase",
109
+ "Method": "Methode",
110
+ "Headers": "Kopteksten",
111
+ "Query Parameters": "Query parameters",
112
+ "Body Type": "Type lichaam",
113
+ "Body": "Lichaam",
114
+ "Response is Binary ?": "Antwoord is binair?",
115
+ "No Error on Failure": "Geen fout bij fout",
116
+ "Timeout (in seconds)": "Time-out (in seconden)",
117
+ "Follow redirects": "Volg omleidingen",
118
+ "select a person": "Selecteer een persoon",
119
+ "select a Lead": "selecteer een Lead",
120
+ "select a Company": "selecteer een bedrijf",
121
+ "select an Opportunity": "selecteer een kans",
122
+ "E.g. democompany.com": "Bijvoorbeeld demobedrijf.nl",
123
+ "select a primary contact": "Selecteer een primair contact",
124
+ "The name of the opportunity": "De naam van de mogelijkheid",
125
+ "select a Pipeline": "Selecteer een Pijplijn",
126
+ "Select a stage": "Selecteer een fase",
127
+ "The name of the project": "De naam van het project",
128
+ "The details of the project": "De details van het project",
129
+ "select a Project": "selecteer een project",
130
+ "Details fo this task": "Details van deze taak",
131
+ "Select activity Type": "Selecteer activiteitstype",
132
+ "select a user to assign to": "Selecteer een gebruiker aan toe te wijzen",
133
+ "Choose the type of Copper record this task should be linked to (e.g. Person, Company, Lead, Opportunity, or Project).": "Kies het type koper record waar deze taak aan gekoppeld moet worden (bijv. persoon, Bedrijf, Leiding, Opportunity, of Project).",
134
+ "Select the specific record (from the chosen type above) that this task should be attached to. For example, pick the Person or Opportunity the task relates to.": "Selecteer het specifieke record (uit het gekozen type hierboven) waaraan deze taak moet worden gekoppeld. Kies bijvoorbeeld de persoon of de kans waar de taak betrekking op heeft.",
135
+ "Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM).": "Voer datum en tijd in in 24-uurs formaat, bijv. `2025-09-09 11:40` (11:40 AM) of `2025-09-09 13:00` (1:00 PM).",
136
+ "Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM)": "Voer datum en tijd in in 24-uurs formaat, bijv. `2025-09-09 11:40` (11:40 AM) of `2025-09-09 13:00` (1:00 PM)",
137
+ "Select parent entity": "Selecteer bovenliggende entiteit",
138
+ "Select Resource": "Selecteer Document",
139
+ "Default 50. Max 200.": "Standaard 50. Max 200.",
140
+ "24-hour format, e.g. 2025-09-10 11:40. The timestamp of the earliest activity date.": "24-uurs formaat, b.v. 2025-09-10 11:40. De tijdstempel van de vroegste activiteit datum.",
141
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest activity date.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de laatste activiteit datum.",
142
+ "(Optional) If set, search performance improves but duplicate activity logs may be returned": "(Optioneel) Indien ingesteld verbetert de zoekprestatie, maar dubbele activiteit logs kunnen worden teruggegeven",
143
+ "Full name of the People to search for.": "De volledige naam van de mensen waarnaar gezocht moet worden.",
144
+ "Phone Number of the People to search for.": "Telefoonnummer van mensen waarnaar gezocht moet worden.",
145
+ "Emails of the People to search for.": "E-mails van de mensen waarnaar gezocht moet worden.",
146
+ "Select contact Type": "Selecteer contact type",
147
+ "select assignees": "selecteer verantwoordelijke personen",
148
+ "select Companies": "Bedrijven selecteren",
149
+ "select Opportunities": "selecteer kansen",
150
+ "The city in which People must be located.": "De stad waar mensen gevestigd moeten zijn.",
151
+ "The state or province in which People must be located.": "De staat of provincie waar mensen gevestigd moeten zijn.",
152
+ "The postal code in which People must be located.": "De postcode waarin mensen zich moeten bevinden.",
153
+ "The two character country code where People must be located.": "De landcode van twee tekens moet zich vestigen.",
154
+ "Filter People to those that match at least one of the tags specified.": "Filter mensen op diegene die ten minste één van de opgegeven tags hebben.",
155
+ "Filter People to those that match at least one of the social accounts specified.": "Filter mensen op mensen die overeenkomen met ten minste één van de opgegeven sociale accounts.",
156
+ "Filter by followed state": "Filter op gevolgde status",
157
+ "The maximum age in seconds that People must be.": "De maximale leeftijd in seconden die mensen moeten hebben.",
158
+ "The field on which to sort the results": "Het veld waarop de resultaten gesorteerd moeten worden",
159
+ "The direction in which to sort the result": "De richting waarin het resultaat gesorteerd moet worden",
160
+ "The minimum number of interactions People must have had.": "Het minimum aantal interacties dat mensen moeten hebben gehad.",
161
+ "The maximum number of interactions People must have had.": "Het maximale aantal interacties dat mensen hebben gehad.",
162
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of the last interaction.": "24-uurs formaat, bijvoorbeeld 2025-09-10 13:00. De tijdstempel van de vroegste datum van de laatste interactie.",
163
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of the last interaction.": "24-uurs formaat, bijv. 2025-09-10 13:00. De tijdstempel van de laatste datum van de laatste interactie.",
164
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date People are created.": "24-uurs formaat, bijv. 2025-09-10 13:00. De tijdstempel van de vroegste datum mensen worden aangemaakt.",
165
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date People are Created.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de laatste datum mensen zijn aangemaakt.",
166
+ "Full name of the Lead to search for.": "Volledige naam van de Lead waarnaar gezocht moet worden.",
167
+ "Phone Number of the Lead to search for.": "Telefoonnummer van de Lead waarnaar gezocht moet worden.",
168
+ "Emails of the Lead to search for.\t": "E-mails van de Lead om naar te zoeken\t",
169
+ "Select lead status": "Lead status selecteren",
170
+ "Select customer source.": "Selecteer klant bron.",
171
+ "The city in which Lead must be located.": "De stad waar lead moet worden gevestigd.",
172
+ "The state or province in which Lead must be located.": "De staat of provincie waar de lead moet worden gevestigd.",
173
+ "The postal code in which Lead must be located.": "De postcode waar Lead zich in moet bevinden.",
174
+ "The two character country code where Lead must be located.": "De landcode van twee karakters moet worden gevestigd.",
175
+ "Filter Lead to those that match at least one of the tags specified.": "Filter lead naar diegene die overeenkomen met minstens één van de tags gespecificeerd.",
176
+ "Filter Lead to those that match at least one of the social accounts specified.": "Filter lead naar degenen die overeenkomen met ten minste één van de opgegeven sociale accounts.",
177
+ "The maximum age in seconds that Lead must be.": "De maximale leeftijd in seconden die lead moet zijn.",
178
+ "Specify if response should contain converted leads.": "Geef aan of reactie geconverteerde lood moet bevatten.",
179
+ "The minimum monetary value Leads must have.": "De minimale monetaire waarde Leads moet zijn.",
180
+ "The maximum monetary value Leads must have.": "De maximale monetaire waarde Leads moet zijn.",
181
+ "The minimum number of interactions Lead must have had.": "Het minimumaantal leiding voor interacties moet zijn geweest.",
182
+ "The maximum number of interactions Lead must have had.": "Het maximale aantal steekpenningen dat geleid heeft moeten hebben.",
183
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are created.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de begindatum wordt aangemaakt.",
184
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Created.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de laatste datum Lead is aangemaakt.",
185
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are Modified.": "24-uurs formaat, bijvoorbeeld 2025-09-10 13:00. De tijdstempel van de vroegste datum Lead wordt aangepast.",
186
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Modified.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de laatste datum Lead is gewijzigd.",
187
+ "Full name of the Company to search for.": "Volledige naam van het bedrijf waarnaar gezocht moet worden.",
188
+ "Phone Number of the Company to search for.": "Telefoonnummer van het bedrijf waarnaar gezocht moet worden.",
189
+ "Email Domain of the Company to search for.": "E-maildomein van het bedrijf waar naar gezocht moet worden.",
190
+ "The city in which Company must be located.": "De stad waar het bedrijf zich moet vestigen.",
191
+ "The state or province in which Company must be located.": "De staat of provincie waarin het bedrijf moet worden gevestigd.",
192
+ "The postal code in which Company must be located.": "De postcode waarin het bedrijf moet worden gevestigd.",
193
+ "The two character country code where Company must be located.": "De twee karakterlandcode waar het bedrijf moet worden gevestigd.",
194
+ "Filter Company to those that match at least one of the tags specified.": "Filter bedrijf op diegene die ten minste één van de opgegeven tags overeenkomen.",
195
+ "Filter Company to those that match at least one of the social accounts specified.": "Filter bedrijf op degenen die overeenkomen met ten minste één van de opgegeven sociale accounts.",
196
+ "The maximum age in seconds that Company must be.": "De maximale leeftijd in seconden dat Bedrijf moet zijn.",
197
+ "The minimum number of interactions Company must have had.": "Het minimumaantal interacties dat de onderneming heeft gehad.",
198
+ "The maximum number of interactions Company must have had.": "Het maximale aantal interacties bedrijf moet gehad hebben.",
199
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Company are created.": "24-uurs formaat, bijv. 2025-09-10 13:00. De tijdstempel van het vroegste bedrijf wordt aangemaakt.",
200
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Company are Created.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van het laatste bedrijf worden aangemaakt.",
201
+ "Full name of the Opportunity to search for.": "Volledige naam van de Mogelijkheid om naar te zoeken.",
202
+ "Filter by Opportunity status": "Filter op Kans status",
203
+ "select primary contacts": "primaire contacten selecteren",
204
+ "Select loss reason.": "Selecteer verlies reden.",
205
+ "The minimum monetary value Opportunities must have.": "De minimale monetaire waarde Kansen moeten hebben.",
206
+ "The maximum monetary value Opportunities must have.": "De maximale monetaire waarde Kansen moeten hebben.",
207
+ "The minimum number of interactions Opportunity must have had.": "Het minimum aantal interacties Mogelijkheid moet zijn geweest.",
208
+ "The maximum number of interactions Opportunity must have had.": "Het maximale aantal interacties Mogelijkheid moet zijn geweest.",
209
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date close date.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de vroegste datum van sluiting.",
210
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date close date.": "24-uurs formaat, bijv. 2025-09-10 13:00. De tijdstempel van de laatste datum van sluitingsdatum.",
211
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of a stage change.": "24-uurs formaat, bijvoorbeeld 2025-09-10 13:00. De tijdstempel van de vroegste datum van wijziging van de fase.",
212
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of a stage change.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de laatste datum van wijziging van de fase.",
213
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are created.": "24-uurs formaat, bijv. 2025-09-10 13:00. De tijdstempel van de vroegste datum Mogelijkheid wordt gemaakt.",
214
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Created.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de laatste datum Mogelijkheid is aangemaakt.",
215
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are Modified.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de vroegste datum Mogelijkheid wordt gewijzigd.",
216
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Modified.": "24-uurs formaat, b.v. 2025-09-10 13:00. De tijdstempel van de laatste datum Mogelijkheid wordt gewijzigd.",
217
+ "Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
218
+ "Enable for files like PDFs, images, etc.": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc.",
219
+ "None": "geen",
220
+ "Low": "laag",
221
+ "Medium": "Middelgroot",
222
+ "High": "hoog",
223
+ "Task": "Opdracht",
224
+ "followed": "gevolgd",
225
+ "not followed": "niet gevolgd",
226
+ "Title": "Aanspreektitel",
227
+ "Phone": "Telefoonnummer",
228
+ "Date Modified": "Datum gewijzigd",
229
+ "Date Created": "Datum aangemaakt",
230
+ "Zip": "Postcode",
231
+ "Ascending": "Oplopend",
232
+ "Descending": "Aflopend",
233
+ "Company Name": "Bedrijfsnaam",
234
+ "Value": "Waarde",
235
+ "Inactive Days": "Dagen inactief",
236
+ "Contact": "Contactpersoon",
237
+ "Contact First Name": "Voornaam contactpersoon",
238
+ "Contact Last Name": "Achternaam contactpersoon",
239
+ "Contact Group": "Contactpersonen groep",
240
+ "Last Interaction": "Laatste interactie",
241
+ "Interaction Count": "Aantal interacties",
242
+ "Primary Website": "Primaire website",
243
+ "Open": "Open",
244
+ "Won": "Gewonnen",
245
+ "Lost": "Verloren",
246
+ "Abandoned": "Verlaten",
247
+ "Customer Source ID": "Klant bron ID",
248
+ "Monetary Unit": "Monetaire eenheid",
249
+ "Monetary Value": "Monetaire waarde",
250
+ "Stage": "Speelveld",
251
+ "Completed": "Voltooid",
252
+ "Assigned To": "Toegewezen Aan",
253
+ "Related To": "Gerelateerd aan",
254
+ "GET": "KRIJG",
255
+ "POST": "POSTE",
256
+ "PATCH": "BEKIJK",
257
+ "PUT": "PUT",
258
+ "DELETE": "VERWIJDEREN",
259
+ "HEAD": "HOOFD",
260
+ "JSON": "JSON",
261
+ "Form Data": "Formulieren gegevens",
262
+ "Raw": "Onbewerkte",
263
+ "New Activity": "Nieuwe activiteit",
264
+ "New Person": "Nieuw persoon",
265
+ "New Lead": "Nieuwe Lead",
266
+ "New Task": "Nieuwe taak",
267
+ "Updated Lead": "Bijgewerkt Lead",
268
+ "Updated Task": "Taak bijgewerkt",
269
+ "Updated Opportunity": "Bijgewerkte kans",
270
+ "Updated Opportunity Stage": "Gelegenheid fase bijgewerkt",
271
+ "Updated Opportunity Status": "Gelegenheid bijgewerkt",
272
+ "Updated Project": "Project bijgewerkt",
273
+ "Updated Lead Status": "Bijgewerkt Lead Status",
274
+ "Triggers when a new activity is logged": "Triggert wanneer een nieuwe activiteit wordt gelogd",
275
+ "Triggers when a new person/contact is created.": "Triggert wanneer een nieuwe persoon/contactpersoon wordt aangemaakt.",
276
+ "Triggers when a new lead is created.": "Triggert wanneer een nieuwe lead wordt gemaakt.",
277
+ "Triggers when a new task is created.": "Triggert wanneer een nieuwe taak is aangemaakt.",
278
+ "Triggers when a lead is modified.": "Triggert wanneer een lead is gewijzigd.",
279
+ "Triggers when a task is updated.": "Triggert wanneer een taak is bijgewerkt.",
280
+ "Triggers when an opportunity changes.": "Triggert wanneer een gelegenheid verandert.",
281
+ "Triggers when an opportunity stage changes": "Triggert wanneer een kansstadium verandert",
282
+ "Triggers when an opportunity's status changes.": "Triggert wanneer de status van een opportuniteit verandert.",
283
+ "Triggers when a project is updated.": "Triggert wanneer een project wordt bijgewerkt.",
284
+ "Triggers when the status of a lead changes.": "Triggert wanneer de status van een lead verandert."
285
+ }
@@ -0,0 +1,285 @@
1
+ {
2
+ "Email Address": "Endereço de e-mail",
3
+ "API Key": "Chave de API",
4
+ "Email Address of the Token Owner": "Endereço de e-mail do proprietário do token",
5
+ "Your API Key in settings > integrations": "Sua chave API em configurações > integrações",
6
+ "Create Person": "Criar Pessoa",
7
+ "Update Person": "Atualizar pessoa",
8
+ "Create Lead": "Criar Potencial",
9
+ "Update Lead": "Atualizar Lead",
10
+ "Convert Lead": "Converter Lead",
11
+ "Create Company": "Criar Empresa",
12
+ "Update Company": "Atualizar Empresa",
13
+ "Create Opportunity": "Criar Oportunidade",
14
+ "Update Opportunity": "Atualizar Oportunidade",
15
+ "Create Project": "Criar Projeto",
16
+ "Update Project": "Atualizar Projeto",
17
+ "Create Task": "Criar tarefa",
18
+ "Create Activity": "Criar Atividade",
19
+ "Search for an Activity": "Pesquisar por uma atividade",
20
+ "Search for a Person": "Procurar por uma pessoa",
21
+ "Search for a Lead": "Procurar por um Potencial",
22
+ "Search for a Company": "Procurar por uma empresa",
23
+ "Search for an Opportunity": "Procure por uma Oportunidade",
24
+ "Search for a Project": "Pesquisar por um projeto",
25
+ "Custom API Call": "Chamada de API personalizada",
26
+ "Adds a new person/contact.": "Adiciona uma nova pessoa/contato.",
27
+ "Updates a person based on matching criteria.": "Atualiza uma pessoa com base em critérios correspondentes.",
28
+ "Adds a new lead.": "Adiciona um novo lead.",
29
+ "Updates an existing lead.": "Atualiza um lead existente.",
30
+ "Converts a lead into a person (optionally with company/opportunity).": "Converte um lead para uma pessoa (opcionalmente com empresa/oportunidade).",
31
+ "Adds a new company.": "Adiciona uma nova empresa.",
32
+ "Updates a company record.": "Atualiza um registro da empresa.",
33
+ "Adds a new opportunity.": "Adiciona uma nova oportunidade.",
34
+ "Updates an opportunity using match criteria.": "Atualiza uma oportunidade usando critérios de partida.",
35
+ "Adds a new project.": "Adiciona um novo projeto.",
36
+ "Updates a project record.": "Atualiza um registro de projeto.",
37
+ "Adds a new task under a person, lead, or opportunity.": "Adiciona uma nova tarefa sob pessoa, liderança ou oportunidade.",
38
+ "Logs an activity related to CRM entities.": "Logs uma atividade relacionada a entidades CRM.",
39
+ "Find an existing activity by type/criteria.": "Localizar uma atividade existente por tipo/critério.",
40
+ "Lookup a person using match criteria.": "Procure uma pessoa usando critérios de correspondência.",
41
+ "Lookup a lead using match criteria.": "Procurar uma liderança usando critérios de correspondência.",
42
+ "Lookup a company.": "Busque uma empresa.",
43
+ "Lookup an opportunity.": "Procure uma oportunidade.",
44
+ "Lookup a project.": "Procurar um projeto.",
45
+ "Make a custom API call to a specific endpoint": "Faça uma chamada de API personalizada para um ponto de extremidade específico",
46
+ "Full Name": "Nome Completo",
47
+ "Emails": "e-mails",
48
+ "Phone Numbers": "Números de telefone",
49
+ "Street": "Rua",
50
+ "City": "cidade",
51
+ "State/Region": "Estado/Região",
52
+ "Postal Code": "Código Postal",
53
+ "Country": "País/região",
54
+ "Person": "Pessoa",
55
+ "Email": "e-mail",
56
+ "Category of the email address (e.g., work, personal)": "Categoria do endereço de e-mail (por exemplo, trabalho, pessoal)",
57
+ "Lead": "Conduzir",
58
+ "Company": "Empresas",
59
+ "Opportunity": "Oportunidade",
60
+ "Email Domain": "Domínio de e-mail",
61
+ "Details": "detalhes",
62
+ "Primary Contact": "Contato principal",
63
+ "Name": "Nome",
64
+ "Pipeline": "Pipeline",
65
+ "Pipeline Stage": "Estágio do pipeline",
66
+ "Project": "Projecto",
67
+ "Task Name": "Nome da tarefa",
68
+ "Activity Type": "Tipo de Atividade",
69
+ "Assignee": "Assignee",
70
+ "Related Record Type": "Tipo de registro relacionado",
71
+ "Related Record": "Registro relacionado",
72
+ "Due Date/Time": "Prazo determinado",
73
+ "Reminder Date/Time": "Data/Hora do Lembrete",
74
+ "Priority": "Prioridade",
75
+ "Tags": "Etiquetas",
76
+ "Parent Entity": "Entidade Pai",
77
+ "Parent Entity Resource": "Recurso Pai da Entidade",
78
+ "Page Size": "Tamanho da página",
79
+ "Page Number": "Número da página",
80
+ "Minimum Activity Date": "Mínimo da data de atividade",
81
+ "Maximum Activity Date": "Data máxima de atividade",
82
+ "Full Result": "Resultado completo",
83
+ "Phone Number": "Número de telefone",
84
+ "Contact Type": "Tipo de contato",
85
+ "State": "Estado:",
86
+ "Socials": "Socials",
87
+ "Followed": "Seguido",
88
+ "Age": "Idade",
89
+ "Sort By": "Classificar por",
90
+ "Sort Direction": "Ordenar direção",
91
+ "Minimum Interaction Count": "Contagem mínima de interação",
92
+ "Maximum Interaction Count": "Número máximo de interações",
93
+ "Minimum Interaction Date": "Data Mínima de Interação",
94
+ "Maximum Interaction Date": "Data máxima de interação",
95
+ "Minimum Created Date": "Data Mínima Criada",
96
+ "Maximum Created Date": "Data Máxima de Criação",
97
+ "Lead Status": "Status do Prospecto",
98
+ "Customer Source": "Fonte do Cliente",
99
+ "Include Converted Leads": "Incluir Potenciais Convertidos",
100
+ "Minimum Monetary Value": "Valor monetário mínimo",
101
+ "Maximum Monetary Value": "Valor monetário máximo",
102
+ "Minimum Modified Date": "Data Mínima Modificada",
103
+ "Maximum Modified Date": "Data Máxima de Modificação",
104
+ "Status": "Estado",
105
+ "Primary Contacts": "Contatos primários",
106
+ "Loss Reason": "Motivo da perda",
107
+ "Minimum Stage Change Date": "Alteração mínima do estágio",
108
+ "Maximum Stage Change Date": "Data Máxima de Etapa de Alteração",
109
+ "Method": "Método",
110
+ "Headers": "Cabeçalhos",
111
+ "Query Parameters": "Parâmetros da consulta",
112
+ "Body Type": "Tipo de Corpo",
113
+ "Body": "Conteúdo",
114
+ "Response is Binary ?": "A resposta é binária ?",
115
+ "No Error on Failure": "Nenhum erro no Failure",
116
+ "Timeout (in seconds)": "Tempo limite (em segundos)",
117
+ "Follow redirects": "Seguir redirecionamentos",
118
+ "select a person": "selecione uma pessoa",
119
+ "select a Lead": "selecione um Potencial",
120
+ "select a Company": "selecione uma empresa",
121
+ "select an Opportunity": "selecione uma Oportunidade",
122
+ "E.g. democompany.com": "Ex.: democompany.com",
123
+ "select a primary contact": "selecione um contato principal",
124
+ "The name of the opportunity": "O nome da oportunidade",
125
+ "select a Pipeline": "selecione um Pipeline",
126
+ "Select a stage": "Selecione um estágio",
127
+ "The name of the project": "O nome do projeto",
128
+ "The details of the project": "Os detalhes do projeto",
129
+ "select a Project": "selecione um projeto",
130
+ "Details fo this task": "Detalhes desta tarefa",
131
+ "Select activity Type": "Seleciona Tipo Atividade",
132
+ "select a user to assign to": "selecione um usuário para atribuir a",
133
+ "Choose the type of Copper record this task should be linked to (e.g. Person, Company, Lead, Opportunity, or Project).": "Escolha o tipo de registro de Cobre esta tarefa deve ser vinculada a (ex.: Pessoa, Empresa, Liderança, Oportunidade ou Projeto).",
134
+ "Select the specific record (from the chosen type above) that this task should be attached to. For example, pick the Person or Opportunity the task relates to.": "Selecione o registro específico (do tipo escolhido acima) ao qual esta tarefa deve ser anexada. Por exemplo, escolha a pessoa ou a oportunidade à qual a tarefa se relaciona.",
135
+ "Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM).": "Digite a data e a hora em formato de 24 horas, por exemplo, `2025-09-09 11:40` (11:40 AM) ou `2025-09-09 13:00` (1:00 PM).",
136
+ "Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM)": "Digite a data e a hora em formato de 24 horas, por exemplo, `2025-09-09 11:40` (11:40 AM) ou `2025-09-09 13:00` (1:00 PM)",
137
+ "Select parent entity": "Selecione a entidade pai",
138
+ "Select Resource": "Selecionar Recurso",
139
+ "Default 50. Max 200.": "Padrão 50. Máximo 200.",
140
+ "24-hour format, e.g. 2025-09-10 11:40. The timestamp of the earliest activity date.": "Formato de 24 horas, ex: 2025-09-10 11:40. O timestamp da primeira data de atividade.",
141
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest activity date.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais recente da atividade.",
142
+ "(Optional) If set, search performance improves but duplicate activity logs may be returned": "(Opcional) Se atribuído, o desempenho da pesquisa melhora mas logs de atividade duplicados podem ser retornados",
143
+ "Full name of the People to search for.": "Nome completo das pessoas para procurar.",
144
+ "Phone Number of the People to search for.": "Número de telefone das pessoas a procurar",
145
+ "Emails of the People to search for.": "E-mails das pessoas para procurar.",
146
+ "Select contact Type": "Selecionar tipo de contato",
147
+ "select assignees": "selecione os responsáveis",
148
+ "select Companies": "selecionar empresas",
149
+ "select Opportunities": "selecione Oportunidades",
150
+ "The city in which People must be located.": "A cidade na qual as pessoas devem estar localizadas.",
151
+ "The state or province in which People must be located.": "O estado ou província em que as pessoas devem se localizar.",
152
+ "The postal code in which People must be located.": "O código postal no qual as pessoas devem estar localizadas.",
153
+ "The two character country code where People must be located.": "O código do país de dois caracteres onde as pessoas devem estar localizadas.",
154
+ "Filter People to those that match at least one of the tags specified.": "Filtra as pessoas para aquelas que correspondem a pelo menos uma das tags especificadas.",
155
+ "Filter People to those that match at least one of the social accounts specified.": "Filtrar pessoas para aquelas que correspondam a pelo menos uma das contas sociais especificadas.",
156
+ "Filter by followed state": "Filtrar por estado seguido",
157
+ "The maximum age in seconds that People must be.": "A idade máxima em segundos que as pessoas devem ser.",
158
+ "The field on which to sort the results": "O campo no qual os resultados serão classificados",
159
+ "The direction in which to sort the result": "A direção na qual será classificado o resultado",
160
+ "The minimum number of interactions People must have had.": "O número mínimo de interações que as pessoas devem ter tido.",
161
+ "The maximum number of interactions People must have had.": "O número máximo de interações que as pessoas devem ter tido.",
162
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of the last interaction.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais antiga da última interação.",
163
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of the last interaction.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da última data da última interação.",
164
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date People are created.": "Formato de 24 horas, por exemplo, 2025-09-10 13:00. O timestamp da primeira data em que as pessoas são criadas.",
165
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date People are Created.": "Formato de 24 horas, por exemplo, 2025-09-10 13:00. O horário da última data que as pessoas são criadas.",
166
+ "Full name of the Lead to search for.": "Nome completo do Lead a procurar.",
167
+ "Phone Number of the Lead to search for.": "Número de telefone do Lead para procurar.",
168
+ "Emails of the Lead to search for.\t": "E-mails do Lead para pesquisar.\t",
169
+ "Select lead status": "Selecionar estado do prospecto",
170
+ "Select customer source.": "Selecionar fonte do cliente.",
171
+ "The city in which Lead must be located.": "A cidade em que o chumbo deve ser localizado.",
172
+ "The state or province in which Lead must be located.": "O estado ou província em que o chumbo deve ser localizado.",
173
+ "The postal code in which Lead must be located.": "O código postal no qual o Lead deve ser localizado.",
174
+ "The two character country code where Lead must be located.": "O código do país de dois caracteres em que o Líder deve estar localizado.",
175
+ "Filter Lead to those that match at least one of the tags specified.": "Filtrar Lead para aqueles que correspondam a pelo menos uma das tags especificadas.",
176
+ "Filter Lead to those that match at least one of the social accounts specified.": "Filtrar Lead para aqueles que correspondam a pelo menos uma das contas sociais especificadas.",
177
+ "The maximum age in seconds that Lead must be.": "A idade máxima em segundos que o chumbo deve ser.",
178
+ "Specify if response should contain converted leads.": "Especifica se a resposta deve conter leads convertidos.",
179
+ "The minimum monetary value Leads must have.": "O valor monetário mínimo Leads deve ter.",
180
+ "The maximum monetary value Leads must have.": "O valor monetário máximo Leads deve ter.",
181
+ "The minimum number of interactions Lead must have had.": "O número mínimo de interações do Lead deve ter passado.",
182
+ "The maximum number of interactions Lead must have had.": "O número máximo de interações do Lead deve ter passado.",
183
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are created.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais antiga é criado.",
184
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Created.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da última data Lead é criado.",
185
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are Modified.": "Formato de 24 horas, ex.: 2025-09-10 13:00. O timestamp da data mais antiga é modificado.",
186
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Modified.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais recente é modificado.",
187
+ "Full name of the Company to search for.": "Nome completo da Empresa para procurar.",
188
+ "Phone Number of the Company to search for.": "Número de telefone da Empresa para pesquisar.",
189
+ "Email Domain of the Company to search for.": "Domínio de e-mail da empresa para procurar.",
190
+ "The city in which Company must be located.": "A cidade em que a empresa deve ser localizada.",
191
+ "The state or province in which Company must be located.": "O estado ou província em que a empresa deve ser localizada.",
192
+ "The postal code in which Company must be located.": "O código postal em que a empresa deve estar localizada.",
193
+ "The two character country code where Company must be located.": "O código do país de dois caracteres onde a empresa deve estar localizada.",
194
+ "Filter Company to those that match at least one of the tags specified.": "Filtrar Empresa com aqueles que correspondam a pelo menos uma das tags especificadas.",
195
+ "Filter Company to those that match at least one of the social accounts specified.": "Filtrar Empresa com aqueles que correspondam a pelo menos uma das contas sociais especificadas.",
196
+ "The maximum age in seconds that Company must be.": "A idade máxima em segundos que a empresa deve ser.",
197
+ "The minimum number of interactions Company must have had.": "O número mínimo de interações da Empresa deve ter passado.",
198
+ "The maximum number of interactions Company must have had.": "O número máximo de interações da Empresa deve ter passado.",
199
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Company are created.": "Formato de 24 horas, por exemplo, 2025-09-10 13:00. O timestamp da primeira data em que a empresa foi criada.",
200
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Company are Created.": "Formato de 24 horas, por exemplo, 2025-09-10 13:00. O timestamp da data mais recente da Empresa é criado.",
201
+ "Full name of the Opportunity to search for.": "Nome completo da Oportunidade de busca.",
202
+ "Filter by Opportunity status": "Filtrar por Status de Oportunidade",
203
+ "select primary contacts": "selecionar contatos primários",
204
+ "Select loss reason.": "Selecione o motivo da perda.",
205
+ "The minimum monetary value Opportunities must have.": "As oportunidades de valor monetário mínimo devem ter.",
206
+ "The maximum monetary value Opportunities must have.": "As oportunidades de valor monetário máximo devem ter.",
207
+ "The minimum number of interactions Opportunity must have had.": "O número mínimo de oportunidades de interações deve ter sido.",
208
+ "The maximum number of interactions Opportunity must have had.": "O número máximo de oportunidades de interações deve ter passado.",
209
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date close date.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais anterior de fechamento.",
210
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date close date.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data de encerramento mais recente.",
211
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of a stage change.": "Formato de 24 horas, ex: 2025-09-10 13:00. O horário da primeira data de uma mudança de etapa.",
212
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of a stage change.": "Formato de 24 horas, ex: 2025-09-10 13:00. O horário da última data de uma mudança de etapa.",
213
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are created.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais antiga são criadas.",
214
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Created.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da última data é criado.",
215
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are Modified.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais antiga são Modificados.",
216
+ "24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Modified.": "Formato de 24 horas, ex: 2025-09-10 13:00. O timestamp da data mais recente é Modificado.",
217
+ "Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
218
+ "Enable for files like PDFs, images, etc.": "Habilitar para arquivos como PDFs, imagens, etc.",
219
+ "None": "Nenhuma",
220
+ "Low": "baixa",
221
+ "Medium": "Média",
222
+ "High": "alta",
223
+ "Task": "Tarefas",
224
+ "followed": "seguido",
225
+ "not followed": "não seguido",
226
+ "Title": "Título",
227
+ "Phone": "Smartphone",
228
+ "Date Modified": "Data de Modificação",
229
+ "Date Created": "Data de Criação",
230
+ "Zip": "CEP",
231
+ "Ascending": "Crescente",
232
+ "Descending": "Decrescente",
233
+ "Company Name": "Nome da Empresa",
234
+ "Value": "Valor",
235
+ "Inactive Days": "Dias Inativos",
236
+ "Contact": "contato",
237
+ "Contact First Name": "Primeiro Nome do Contato",
238
+ "Contact Last Name": "Último Nome do Contato",
239
+ "Contact Group": "Grupo de contato",
240
+ "Last Interaction": "Última Interação",
241
+ "Interaction Count": "Contagem de interação",
242
+ "Primary Website": "Site primário",
243
+ "Open": "Abertas",
244
+ "Won": "Ganhou",
245
+ "Lost": "Perdido",
246
+ "Abandoned": "Abandonado",
247
+ "Customer Source ID": "ID da Fonte do Cliente",
248
+ "Monetary Unit": "Unidade Monetária",
249
+ "Monetary Value": "Valor monetário",
250
+ "Stage": "Etapa",
251
+ "Completed": "Concluído",
252
+ "Assigned To": "Atribuído Para",
253
+ "Related To": "Relacionado a",
254
+ "GET": "OBTER",
255
+ "POST": "POSTAR",
256
+ "PATCH": "COMPRAR",
257
+ "PUT": "COLOCAR",
258
+ "DELETE": "EXCLUIR",
259
+ "HEAD": "CABEÇA",
260
+ "JSON": "JSON",
261
+ "Form Data": "Dados de Formulário",
262
+ "Raw": "RAW",
263
+ "New Activity": "Nova atividade",
264
+ "New Person": "Nova Pessoa",
265
+ "New Lead": "Novo Potencial",
266
+ "New Task": "Nova tarefa",
267
+ "Updated Lead": "Lead atualizado",
268
+ "Updated Task": "Tarefa atualizada",
269
+ "Updated Opportunity": "Oportunidade Atualizada",
270
+ "Updated Opportunity Stage": "Atualizado Opportunity Stage",
271
+ "Updated Opportunity Status": "Estado da Oportunidade Atualizada",
272
+ "Updated Project": "Projeto atualizado",
273
+ "Updated Lead Status": "Status atualizado do Potencial",
274
+ "Triggers when a new activity is logged": "Dispara quando uma nova atividade é registrada",
275
+ "Triggers when a new person/contact is created.": "Dispara quando uma nova pessoa/contato é criada.",
276
+ "Triggers when a new lead is created.": "Dispara quando um novo lead é criado.",
277
+ "Triggers when a new task is created.": "Dispara quando uma nova tarefa é criada.",
278
+ "Triggers when a lead is modified.": "Dispara quando uma vantagem é modificada.",
279
+ "Triggers when a task is updated.": "Dispara quando uma tarefa é atualizada.",
280
+ "Triggers when an opportunity changes.": "Dispara quando uma oportunidade for alterada.",
281
+ "Triggers when an opportunity stage changes": "Dispara quando um estágio de oportunidade muda",
282
+ "Triggers when an opportunity's status changes.": "Dispara quando o status de uma oportunidade muda.",
283
+ "Triggers when a project is updated.": "Dispara quando um projeto é atualizado.",
284
+ "Triggers when the status of a lead changes.": "Dispara quando o status de um lead muda."
285
+ }