@activepieces/piece-pipedrive 0.6.3 → 0.7.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.
- package/package.json +10 -8
- package/src/i18n/de.json +18 -15
- package/src/i18n/es.json +18 -15
- package/src/i18n/fr.json +18 -15
- package/src/i18n/ja.json +18 -15
- package/src/i18n/nl.json +18 -15
- package/src/i18n/pt.json +18 -15
- package/src/i18n/translation.json +18 -15
- package/src/i18n/zh.json +18 -15
- package/src/index.js +1 -1
- package/src/index.js.map +1 -1
- package/src/lib/actions/add-follower.js +1 -1
- package/src/lib/actions/add-follower.js.map +1 -1
- package/src/lib/actions/add-label-to-person.js +10 -10
- package/src/lib/actions/add-label-to-person.js.map +1 -1
- package/src/lib/actions/add-product-to-deal.js +3 -3
- package/src/lib/actions/add-product-to-deal.js.map +1 -1
- package/src/lib/actions/create-activity.d.ts +2 -2
- package/src/lib/actions/create-activity.js +13 -11
- package/src/lib/actions/create-activity.js.map +1 -1
- package/src/lib/actions/create-deal.js +19 -19
- package/src/lib/actions/create-deal.js.map +1 -1
- package/src/lib/actions/create-lead.d.ts +1 -1
- package/src/lib/actions/create-lead.js +5 -5
- package/src/lib/actions/create-lead.js.map +1 -1
- package/src/lib/actions/create-note.js +4 -4
- package/src/lib/actions/create-note.js.map +1 -1
- package/src/lib/actions/create-organization.js +21 -17
- package/src/lib/actions/create-organization.js.map +1 -1
- package/src/lib/actions/create-person.d.ts +1 -1
- package/src/lib/actions/create-person.js +47 -29
- package/src/lib/actions/create-person.js.map +1 -1
- package/src/lib/actions/create-product.js +18 -17
- package/src/lib/actions/create-product.js.map +1 -1
- package/src/lib/actions/find-activity.js +24 -10
- package/src/lib/actions/find-activity.js.map +1 -1
- package/src/lib/actions/find-deal.js +12 -10
- package/src/lib/actions/find-deal.js.map +1 -1
- package/src/lib/actions/find-deals-associated-with-person.js +12 -6
- package/src/lib/actions/find-deals-associated-with-person.js.map +1 -1
- package/src/lib/actions/find-notes.js +3 -3
- package/src/lib/actions/find-notes.js.map +1 -1
- package/src/lib/actions/find-organization.js +9 -7
- package/src/lib/actions/find-organization.js.map +1 -1
- package/src/lib/actions/find-person.js +9 -6
- package/src/lib/actions/find-person.js.map +1 -1
- package/src/lib/actions/find-product.js +14 -10
- package/src/lib/actions/find-product.js.map +1 -1
- package/src/lib/actions/find-products.js +20 -12
- package/src/lib/actions/find-products.js.map +1 -1
- package/src/lib/actions/find-user.js +4 -4
- package/src/lib/actions/find-user.js.map +1 -1
- package/src/lib/actions/get-note.js +6 -5
- package/src/lib/actions/get-note.js.map +1 -1
- package/src/lib/actions/get-product.js +5 -5
- package/src/lib/actions/get-product.js.map +1 -1
- package/src/lib/actions/update-activity.d.ts +2 -2
- package/src/lib/actions/update-activity.js +15 -12
- package/src/lib/actions/update-activity.js.map +1 -1
- package/src/lib/actions/update-deal.js +19 -20
- package/src/lib/actions/update-deal.js.map +1 -1
- package/src/lib/actions/update-lead.d.ts +1 -1
- package/src/lib/actions/update-lead.js +5 -5
- package/src/lib/actions/update-lead.js.map +1 -1
- package/src/lib/actions/update-organization.js +21 -18
- package/src/lib/actions/update-organization.js.map +1 -1
- package/src/lib/actions/update-person.js +37 -26
- package/src/lib/actions/update-person.js.map +1 -1
- package/src/lib/common/constants.d.ts +3 -0
- package/src/lib/common/constants.js +64 -0
- package/src/lib/common/constants.js.map +1 -0
- package/src/lib/common/index.d.ts +5 -2
- package/src/lib/common/index.js +127 -10
- package/src/lib/common/index.js.map +1 -1
- package/src/lib/common/props.d.ts +62 -7
- package/src/lib/common/props.js +138 -81
- package/src/lib/common/props.js.map +1 -1
- package/src/lib/common/types.d.ts +319 -36
- package/src/lib/trigger/activity-matching-filter.js +10 -9
- package/src/lib/trigger/activity-matching-filter.js.map +1 -1
- package/src/lib/trigger/deal-matching-filter.js +15 -58
- package/src/lib/trigger/deal-matching-filter.js.map +1 -1
- package/src/lib/trigger/new-activity.js +51 -62
- package/src/lib/trigger/new-activity.js.map +1 -1
- package/src/lib/trigger/new-deal.js +37 -113
- package/src/lib/trigger/new-deal.js.map +1 -1
- package/src/lib/trigger/new-lead.js +13 -10
- package/src/lib/trigger/new-lead.js.map +1 -1
- package/src/lib/trigger/new-note.js +17 -23
- package/src/lib/trigger/new-note.js.map +1 -1
- package/src/lib/trigger/new-organization.js +35 -61
- package/src/lib/trigger/new-organization.js.map +1 -1
- package/src/lib/trigger/new-person.js +34 -81
- package/src/lib/trigger/new-person.js.map +1 -1
- package/src/lib/trigger/organization-matching-filter.js +46 -69
- package/src/lib/trigger/organization-matching-filter.js.map +1 -1
- package/src/lib/trigger/person-matching-filter.js +39 -84
- package/src/lib/trigger/person-matching-filter.js.map +1 -1
- package/src/lib/trigger/updated-deal-stage.js +50 -123
- package/src/lib/trigger/updated-deal-stage.js.map +1 -1
- package/src/lib/trigger/updated-deal.js +38 -128
- package/src/lib/trigger/updated-deal.js.map +1 -1
- package/src/lib/trigger/updated-organization.js +39 -68
- package/src/lib/trigger/updated-organization.js.map +1 -1
- package/src/lib/trigger/updated-person.js +39 -89
- package/src/lib/trigger/updated-person.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-pipedrive",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@ai-sdk/anthropic": "
|
|
6
|
-
"@ai-sdk/google": "
|
|
7
|
-
"@ai-sdk/openai": "
|
|
8
|
-
"@ai-sdk/
|
|
5
|
+
"@ai-sdk/anthropic": "2.0.3",
|
|
6
|
+
"@ai-sdk/google": "2.0.6",
|
|
7
|
+
"@ai-sdk/openai": "2.0.12",
|
|
8
|
+
"@ai-sdk/provider": "2.0.0",
|
|
9
|
+
"@ai-sdk/replicate": "1.0.3",
|
|
10
|
+
"@opentelemetry/api": "1.9.0",
|
|
9
11
|
"@sinclair/typebox": "0.34.11",
|
|
10
|
-
"ai": "
|
|
12
|
+
"ai": "5.0.12",
|
|
11
13
|
"axios": "1.8.3",
|
|
12
14
|
"axios-retry": "4.4.1",
|
|
13
15
|
"dayjs": "1.11.9",
|
|
@@ -18,9 +20,9 @@
|
|
|
18
20
|
"nanoid": "3.3.8",
|
|
19
21
|
"semver": "7.6.0",
|
|
20
22
|
"zod": "3.25.76",
|
|
21
|
-
"@activepieces/pieces-common": "0.6.
|
|
23
|
+
"@activepieces/pieces-common": "0.6.7",
|
|
22
24
|
"@activepieces/pieces-framework": "0.18.3",
|
|
23
|
-
"@activepieces/shared": "0.18.
|
|
25
|
+
"@activepieces/shared": "0.18.5",
|
|
24
26
|
"tslib": "2.8.1"
|
|
25
27
|
},
|
|
26
28
|
"overrides": {
|
package/src/i18n/de.json
CHANGED
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"Find User": "Benutzer finden",
|
|
31
31
|
"Custom API Call": "Eigener API-Aufruf",
|
|
32
32
|
"Adds a follower to a deal, person, organization or product.": "Fügt einem Deal, einer Person, Organisation oder einem Produkt einen Follower hinzu.",
|
|
33
|
-
"
|
|
33
|
+
"Finds a note by ID.": "Findet eine Notiz nach ID.",
|
|
34
34
|
"Creates a new note.": "Erstellt eine neue Notiz.",
|
|
35
|
-
"Adds
|
|
35
|
+
"Adds existing labels to an existing person.": "Fügt vorhandene Labels einer existierenden Person hinzu.",
|
|
36
36
|
"Adds a product to a deal.": "Fügt ein Produkt einem Deal hinzu.",
|
|
37
37
|
"Uploads a file and attaches it to a deal,person,organization,activity or product.": "Laden Sie eine Datei hoch und hängen Sie sie an Deal,Person,Organisation, Aktivität oder Produkt an.",
|
|
38
38
|
"Creates a new activity.": "Erstellt eine neue Aktivität.",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"Updates an existing person.": "Aktualisiert eine existierende Person.",
|
|
48
48
|
"Creates a new product.": "Erstellt ein neues Produkt.",
|
|
49
49
|
"Finds multiple deals related to a specific person.": "Findet mehrere Angebote im Zusammenhang mit einer bestimmten Person.",
|
|
50
|
-
"
|
|
50
|
+
"Finds a product by name ": "Findet ein Produkt nach Namen ",
|
|
51
51
|
"Finds a product or products by name or product code.": "Findet ein Produkt oder ein Produkt nach Namen oder Produktcode.",
|
|
52
|
-
"Finds notes by Deal,Lead,Person, or Organization ID.": "Findet Notizen von Deal,Lead,Person oder Organisations-ID.",
|
|
53
|
-
"
|
|
52
|
+
"Finds notes by Deal, Lead, Person, or Organization ID.": "Findet Notizen von Deal, Lead, Person oder Organisations-ID.",
|
|
53
|
+
"Finds a product by ID.": "Findet ein Produkt nach ID.",
|
|
54
54
|
"Finds an organization.": "Findet eine Organisation.",
|
|
55
55
|
"Finds a person.": "Findet eine Person.",
|
|
56
56
|
"Finds a deal by any field.": "Findet einen Deal nach jedem Feld.",
|
|
57
57
|
"Finds an activity by subject.": "Findet eine Aktivität nach Betreff.",
|
|
58
|
-
"
|
|
58
|
+
"Finds a user by name or email.": "Findet einen Benutzer nach Namen oder E-Mail.",
|
|
59
59
|
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
60
60
|
"Follower": "Follower",
|
|
61
61
|
"Target Object": "Target Object",
|
|
@@ -93,7 +93,6 @@
|
|
|
93
93
|
"Free or Busy": "Kostenlos oder besetzt",
|
|
94
94
|
"Note": "Notiz",
|
|
95
95
|
"Public Description": "Öffentliche Beschreibung",
|
|
96
|
-
"Activity": "Aktivität",
|
|
97
96
|
"Title": "Titel",
|
|
98
97
|
"Creation Time": "Erstellungszeit",
|
|
99
98
|
"Status": "Status",
|
|
@@ -107,7 +106,7 @@
|
|
|
107
106
|
"Visible To": "Sichtbar für",
|
|
108
107
|
"Custom Fields": "Eigene Felder",
|
|
109
108
|
"Channel": "Kanal",
|
|
110
|
-
"Lead Value": "
|
|
109
|
+
"Lead Value Amount": "Leadwert Betrag",
|
|
111
110
|
"Lead Value Currency": "Leadwert Währung",
|
|
112
111
|
"Name": "Name",
|
|
113
112
|
"Address": "Adresse",
|
|
@@ -134,6 +133,7 @@
|
|
|
134
133
|
"Headers": "Kopfzeilen",
|
|
135
134
|
"Query Parameters": "Abfrageparameter",
|
|
136
135
|
"Body": "Körper",
|
|
136
|
+
"Response is Binary ?": "Antwort ist binär?",
|
|
137
137
|
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
138
138
|
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
139
139
|
"Type of object to add the follower to.": "Typ des Objekts, zu dem der Follower hinzugefügt werden soll.",
|
|
@@ -144,10 +144,13 @@
|
|
|
144
144
|
"You can use Find Product action to retrieve product ID.": "Sie können Produkt-Suchen zum Abrufen der Produkt-ID verwenden.",
|
|
145
145
|
"Please enter date in YYYY-MM-DD format.": "Bitte geben Sie das Datum im Format JJJJJ-MM-TT ein.",
|
|
146
146
|
"Please enter time in HH:MM format.": "Bitte geben Sie die Zeit im HH:MM-Format ein.",
|
|
147
|
+
"Please enter time in HH:MM format (e.g., \"01:30\" for 1 hour 30 minutes).": "Bitte geben Sie die Zeit im Format HH:MM ein (z.B. \"01:30\" für 1 Stunde 30 Minuten).",
|
|
147
148
|
"If a stage is chosen above, the pipeline field will be ignored.": "Wird oben eine Stufe gewählt, wird das Pipeline-Feld ignoriert.",
|
|
148
|
-
"Please enter currency code.": "Bitte geben Sie den Währungscode ein.",
|
|
149
|
+
"Please enter currency code (e.g., \"USD\", \"EUR\").": "Bitte geben Sie den Währungscode ein (z.B. \"USD\", \"EUR\").",
|
|
150
|
+
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "Die Währung des Leadwertes (z.B. \"USD\", \"EUR\").",
|
|
149
151
|
"Marketing opt-in status": "Marketing-Opt-in-Status",
|
|
150
152
|
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
153
|
+
"Enable for files like PDFs, images, etc..": "Aktivieren für Dateien wie PDFs, Bilder, etc..",
|
|
151
154
|
"Deal": "Deal",
|
|
152
155
|
"Person": "Person",
|
|
153
156
|
"Organization": "Organisation",
|
|
@@ -163,8 +166,8 @@
|
|
|
163
166
|
"Won": "Gewonnen",
|
|
164
167
|
"Lost": "Verlorene",
|
|
165
168
|
"Deleted": "Gelöscht",
|
|
166
|
-
"
|
|
167
|
-
"
|
|
169
|
+
"Owner & followers": "Besitzer & Follower",
|
|
170
|
+
"Entire company": "Gesamte Firma",
|
|
168
171
|
"No Consent": "Keine Zustimmung",
|
|
169
172
|
"Unsubscribed": "Abgemeldet",
|
|
170
173
|
"Subscribed": "Abonniert",
|
|
@@ -197,16 +200,16 @@
|
|
|
197
200
|
"Triggers when a new deal is created.": "Wird ausgelöst, wenn ein neues Deal erstellt wird.",
|
|
198
201
|
"Triggers when a new activity is added": "Wird ausgelöst, wenn eine neue Aktivität hinzugefügt wird",
|
|
199
202
|
"Triggers when a new note is created.": "Wird ausgelöst, wenn eine neue Notiz erstellt wird.",
|
|
200
|
-
"Triggers when a person is updated": "Wird ausgelöst, wenn eine Person aktualisiert wird",
|
|
201
|
-
"Triggers when a deal is updated": "Wird ausgelöst, wenn ein Deal aktualisiert wird",
|
|
203
|
+
"Triggers when a person is updated.": "Wird ausgelöst, wenn eine Person aktualisiert wird.",
|
|
204
|
+
"Triggers when a deal is updated.": "Wird ausgelöst, wenn ein Deal aktualisiert wird.",
|
|
202
205
|
"Triggers when a deal's stage is updated.": "Wird ausgelöst, wenn die Phase eines Deals aktualisiert wird.",
|
|
203
206
|
"Triggers when a new lead is created.": "Wird ausgelöst, wenn ein neuer Lead erstellt wird.",
|
|
204
207
|
"Triggers when a new organization is created.": "Wird ausgelöst, wenn eine neue Organisation erstellt wird.",
|
|
205
208
|
"Triggers when an existing organization is updated.": "Wird ausgelöst, wenn eine existierende Organisation aktualisiert wird.",
|
|
206
209
|
"Trigges when an activity newly matches a Pipedrive filter for the first time.": "Wird ausgelöst, wenn eine Aktivität zum ersten Mal mit einem Pipedrive Filter übereinstimmt.",
|
|
207
210
|
"Trigges when a deal newly matches a Pipedrive filter for the first time.": "Wird ausgelöst, wenn ein Deal zum ersten Mal mit einem Pipedrive Filter übereinstimmt.",
|
|
208
|
-
"
|
|
209
|
-
"
|
|
211
|
+
"Triggers when a person newly matches a Pipedrive filter for the first time.": "Wird ausgelöst, wenn eine Person zum ersten Mal mit einem Pipedrive Filter übereinstimmt.",
|
|
212
|
+
"Triggers when an organization newly matches a Pipedrive filter for the first time.": "Wird ausgelöst, wenn eine Organisation zum ersten Mal mit einem Pipedrive Filter übereinstimmt.",
|
|
210
213
|
"Filter by": "Filtern nach",
|
|
211
214
|
"Field Values": "Feldwerte",
|
|
212
215
|
"Field to watch for Changes On": "Feld für Änderungen an",
|
package/src/i18n/es.json
CHANGED
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"Find User": "Buscar usuario",
|
|
31
31
|
"Custom API Call": "Llamada API personalizada",
|
|
32
32
|
"Adds a follower to a deal, person, organization or product.": "Añade un seguidor a un trato, persona, organización o producto.",
|
|
33
|
-
"
|
|
33
|
+
"Finds a note by ID.": "Encuentra una nota por ID.",
|
|
34
34
|
"Creates a new note.": "Crea una nueva nota.",
|
|
35
|
-
"Adds
|
|
35
|
+
"Adds existing labels to an existing person.": "Añade etiquetas existentes a una persona existente.",
|
|
36
36
|
"Adds a product to a deal.": "Añade un producto a una oferta.",
|
|
37
37
|
"Uploads a file and attaches it to a deal,person,organization,activity or product.": "Sube un archivo y lo adjunta a una oferta, persona, organización, actividad o producto.",
|
|
38
38
|
"Creates a new activity.": "Crea una nueva actividad.",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"Updates an existing person.": "Actualiza a una persona existente.",
|
|
48
48
|
"Creates a new product.": "Crea un nuevo producto.",
|
|
49
49
|
"Finds multiple deals related to a specific person.": "Encuentra múltiples ofertas relacionadas con una persona específica.",
|
|
50
|
-
"
|
|
50
|
+
"Finds a product by name ": "Encuentra un producto por nombre ",
|
|
51
51
|
"Finds a product or products by name or product code.": "Encuentra un producto o productos por nombre o código de producto.",
|
|
52
|
-
"Finds notes by Deal,Lead,Person, or Organization ID.": "Encuentra notas por Oferta,Líder,Persona
|
|
53
|
-
"
|
|
52
|
+
"Finds notes by Deal, Lead, Person, or Organization ID.": "Encuentra notas por Oferta, Líder, Persona o Organización ID.",
|
|
53
|
+
"Finds a product by ID.": "Encuentra un producto por ID.",
|
|
54
54
|
"Finds an organization.": "Encuentra una organización.",
|
|
55
55
|
"Finds a person.": "Encuentra a una persona.",
|
|
56
56
|
"Finds a deal by any field.": "Encuentra un trato por cualquier campo.",
|
|
57
57
|
"Finds an activity by subject.": "Encuentra una actividad por tema.",
|
|
58
|
-
"
|
|
58
|
+
"Finds a user by name or email.": "Encuentra un usuario por nombre o correo electrónico.",
|
|
59
59
|
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
60
60
|
"Follower": "Seguidor",
|
|
61
61
|
"Target Object": "Target Object",
|
|
@@ -93,7 +93,6 @@
|
|
|
93
93
|
"Free or Busy": "Libre o ocupado",
|
|
94
94
|
"Note": "Nota",
|
|
95
95
|
"Public Description": "Descripción pública",
|
|
96
|
-
"Activity": "Actividad",
|
|
97
96
|
"Title": "Título",
|
|
98
97
|
"Creation Time": "Tiempo de Creación",
|
|
99
98
|
"Status": "Estado",
|
|
@@ -107,7 +106,7 @@
|
|
|
107
106
|
"Visible To": "Visible a",
|
|
108
107
|
"Custom Fields": "Campos personalizados",
|
|
109
108
|
"Channel": "Canal",
|
|
110
|
-
"Lead Value": "Valor de
|
|
109
|
+
"Lead Value Amount": "Importe del Valor de Contacto",
|
|
111
110
|
"Lead Value Currency": "Moneda del valor principal",
|
|
112
111
|
"Name": "Nombre",
|
|
113
112
|
"Address": "Dirección",
|
|
@@ -134,6 +133,7 @@
|
|
|
134
133
|
"Headers": "Encabezados",
|
|
135
134
|
"Query Parameters": "Parámetros de consulta",
|
|
136
135
|
"Body": "Cuerpo",
|
|
136
|
+
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
137
137
|
"No Error on Failure": "No hay ningún error en fallo",
|
|
138
138
|
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
139
139
|
"Type of object to add the follower to.": "Tipo de objeto al que agregar el seguidor.",
|
|
@@ -144,10 +144,13 @@
|
|
|
144
144
|
"You can use Find Product action to retrieve product ID.": "Puede utilizar la acción Buscar producto para recuperar el ID del producto.",
|
|
145
145
|
"Please enter date in YYYY-MM-DD format.": "Por favor, introduzca la fecha en formato AAA-MM-DD.",
|
|
146
146
|
"Please enter time in HH:MM format.": "Por favor, introduzca la hora en formato HH:MM.",
|
|
147
|
+
"Please enter time in HH:MM format (e.g., \"01:30\" for 1 hour 30 minutes).": "Introduzca la hora en formato HH:MM (por ejemplo, \"01:30\" durante 1 hora 30 minutos).",
|
|
147
148
|
"If a stage is chosen above, the pipeline field will be ignored.": "Si una etapa es elegida arriba, el campo pipeline será ignorado.",
|
|
148
|
-
"Please enter currency code.": "Por favor, introduzca el código de la moneda.",
|
|
149
|
+
"Please enter currency code (e.g., \"USD\", \"EUR\").": "Por favor, introduzca el código de la moneda (por ejemplo, \"USD\", \"Click\").",
|
|
150
|
+
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "La moneda del valor inicial (por ej., \"USD\", \"Text\").",
|
|
149
151
|
"Marketing opt-in status": "Estado de marketing opt-in",
|
|
150
152
|
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
153
|
+
"Enable for files like PDFs, images, etc..": "Activar para archivos como PDFs, imágenes, etc.",
|
|
151
154
|
"Deal": "Oferta",
|
|
152
155
|
"Person": "Persona",
|
|
153
156
|
"Organization": "Organización",
|
|
@@ -163,8 +166,8 @@
|
|
|
163
166
|
"Won": "Ganado",
|
|
164
167
|
"Lost": "Perdido",
|
|
165
168
|
"Deleted": "Eliminado",
|
|
166
|
-
"
|
|
167
|
-
"
|
|
169
|
+
"Owner & followers": "Propietario y seguidores",
|
|
170
|
+
"Entire company": "Empresa entera",
|
|
168
171
|
"No Consent": "Sin consentimiento",
|
|
169
172
|
"Unsubscribed": "Desuscrito",
|
|
170
173
|
"Subscribed": "Suscrito",
|
|
@@ -197,16 +200,16 @@
|
|
|
197
200
|
"Triggers when a new deal is created.": "Dispara cuando se crea una nueva oferta.",
|
|
198
201
|
"Triggers when a new activity is added": "Dispara cuando se agrega una nueva actividad",
|
|
199
202
|
"Triggers when a new note is created.": "Se activa cuando se crea una nueva nota.",
|
|
200
|
-
"Triggers when a person is updated": "Dispara cuando una persona es actualizada",
|
|
201
|
-
"Triggers when a deal is updated": "Dispara cuando se actualiza una oferta",
|
|
203
|
+
"Triggers when a person is updated.": "Dispara cuando una persona es actualizada.",
|
|
204
|
+
"Triggers when a deal is updated.": "Dispara cuando se actualiza una oferta.",
|
|
202
205
|
"Triggers when a deal's stage is updated.": "Dispara cuando se actualiza la etapa de un acuerdo.",
|
|
203
206
|
"Triggers when a new lead is created.": "Dispara cuando se crea un nuevo plomo.",
|
|
204
207
|
"Triggers when a new organization is created.": "Dispara cuando se crea una nueva organización.",
|
|
205
208
|
"Triggers when an existing organization is updated.": "Se activa cuando se actualiza una organización existente.",
|
|
206
209
|
"Trigges when an activity newly matches a Pipedrive filter for the first time.": "Se activa cuando una actividad recientemente coincide con un filtro de Pipedrive por primera vez.",
|
|
207
210
|
"Trigges when a deal newly matches a Pipedrive filter for the first time.": "Se activa cuando una nueva oferta coincide con un filtro de Pipedrive por primera vez.",
|
|
208
|
-
"
|
|
209
|
-
"
|
|
211
|
+
"Triggers when a person newly matches a Pipedrive filter for the first time.": "Dispara cuando una persona recientemente coincide con un filtro de Pipedrive por primera vez.",
|
|
212
|
+
"Triggers when an organization newly matches a Pipedrive filter for the first time.": "Dispara cuando una organización recientemente coincide con un filtro de Pipedrive por primera vez.",
|
|
210
213
|
"Filter by": "Filtrar por",
|
|
211
214
|
"Field Values": "Valores de campo",
|
|
212
215
|
"Field to watch for Changes On": "Campo para ver los cambios en",
|
package/src/i18n/fr.json
CHANGED
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"Find User": "Trouver un utilisateur",
|
|
31
31
|
"Custom API Call": "Appel API personnalisé",
|
|
32
32
|
"Adds a follower to a deal, person, organization or product.": "Ajoute un abonné à une entente, une personne, une organisation ou un produit.",
|
|
33
|
-
"
|
|
33
|
+
"Finds a note by ID.": "Trouve une note par ID.",
|
|
34
34
|
"Creates a new note.": "Crée une nouvelle note.",
|
|
35
|
-
"Adds
|
|
35
|
+
"Adds existing labels to an existing person.": "Ajoute des étiquettes existantes à une personne existante.",
|
|
36
36
|
"Adds a product to a deal.": "Ajoute un produit à une offre.",
|
|
37
37
|
"Uploads a file and attaches it to a deal,person,organization,activity or product.": "Télécharge un fichier et le joint à une affaire, une personne, une organisation, une activité ou un produit.",
|
|
38
38
|
"Creates a new activity.": "Crée une nouvelle activité.",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"Updates an existing person.": "Met à jour une personne existante.",
|
|
48
48
|
"Creates a new product.": "Crée un nouveau produit.",
|
|
49
49
|
"Finds multiple deals related to a specific person.": "Trouve plusieurs affaires liées à une personne spécifique.",
|
|
50
|
-
"
|
|
50
|
+
"Finds a product by name ": "Trouve un produit par nom ",
|
|
51
51
|
"Finds a product or products by name or product code.": "Trouve un produit ou des produits par nom ou code produit.",
|
|
52
|
-
"Finds notes by Deal,Lead,Person, or Organization ID.": "Trouve des notes par Deal, Lead, Person, ou
|
|
53
|
-
"
|
|
52
|
+
"Finds notes by Deal, Lead, Person, or Organization ID.": "Trouve des notes par Deal, Lead, Person, ou Organization ID.",
|
|
53
|
+
"Finds a product by ID.": "Trouve un produit par ID.",
|
|
54
54
|
"Finds an organization.": "Trouve une organisation.",
|
|
55
55
|
"Finds a person.": "Trouve une personne.",
|
|
56
56
|
"Finds a deal by any field.": "Trouve une transaction par champ.",
|
|
57
57
|
"Finds an activity by subject.": "Trouve une activité par sujet.",
|
|
58
|
-
"
|
|
58
|
+
"Finds a user by name or email.": "Trouve un utilisateur par nom ou par email.",
|
|
59
59
|
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
60
60
|
"Follower": "Abonné",
|
|
61
61
|
"Target Object": "Target Object",
|
|
@@ -93,7 +93,6 @@
|
|
|
93
93
|
"Free or Busy": "Gratuit ou occupé",
|
|
94
94
|
"Note": "Note",
|
|
95
95
|
"Public Description": "Description publique",
|
|
96
|
-
"Activity": "Activité",
|
|
97
96
|
"Title": "Titre de la page",
|
|
98
97
|
"Creation Time": "Date de création",
|
|
99
98
|
"Status": "Statut",
|
|
@@ -107,7 +106,7 @@
|
|
|
107
106
|
"Visible To": "Visible pour",
|
|
108
107
|
"Custom Fields": "Champs personnalisés",
|
|
109
108
|
"Channel": "Chaîne",
|
|
110
|
-
"Lead Value": "
|
|
109
|
+
"Lead Value Amount": "Montant de la valeur de plomb",
|
|
111
110
|
"Lead Value Currency": "Devise de la valeur de plomb",
|
|
112
111
|
"Name": "Nom",
|
|
113
112
|
"Address": "Adresses",
|
|
@@ -134,6 +133,7 @@
|
|
|
134
133
|
"Headers": "En-têtes",
|
|
135
134
|
"Query Parameters": "Paramètres de requête",
|
|
136
135
|
"Body": "Corps",
|
|
136
|
+
"Response is Binary ?": "La réponse est Binaire ?",
|
|
137
137
|
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
138
138
|
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
139
139
|
"Type of object to add the follower to.": "Type d'objet auquel ajouter le suiveur.",
|
|
@@ -144,10 +144,13 @@
|
|
|
144
144
|
"You can use Find Product action to retrieve product ID.": "Vous pouvez utiliser l'action Rechercher un produit pour récupérer l'ID du produit.",
|
|
145
145
|
"Please enter date in YYYY-MM-DD format.": "Veuillez entrer la date au format AAAA-MM-JJ.",
|
|
146
146
|
"Please enter time in HH:MM format.": "Veuillez entrer l'heure au format HH:MM.",
|
|
147
|
+
"Please enter time in HH:MM format (e.g., \"01:30\" for 1 hour 30 minutes).": "Veuillez entrer l'heure au format HH:MM (par exemple, \"01:30\" pour 1 heure 30 minutes).",
|
|
147
148
|
"If a stage is chosen above, the pipeline field will be ignored.": "Si une étape est choisie ci-dessus, le champ pipeline sera ignoré.",
|
|
148
|
-
"Please enter currency code.": "Veuillez entrer le code de la devise.",
|
|
149
|
+
"Please enter currency code (e.g., \"USD\", \"EUR\").": "Veuillez entrer le code de la devise (par exemple, \"USD\", \"EUR\").",
|
|
150
|
+
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "La devise de la valeur principale (par exemple, \"USD\", \"EUR\").",
|
|
149
151
|
"Marketing opt-in status": "Statut de l'opt-in marketing",
|
|
150
152
|
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
153
|
+
"Enable for files like PDFs, images, etc..": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
151
154
|
"Deal": "Affaire",
|
|
152
155
|
"Person": "Personne",
|
|
153
156
|
"Organization": "Organisation",
|
|
@@ -163,8 +166,8 @@
|
|
|
163
166
|
"Won": "Gagné",
|
|
164
167
|
"Lost": "Perdu",
|
|
165
168
|
"Deleted": "Supprimé",
|
|
166
|
-
"
|
|
167
|
-
"
|
|
169
|
+
"Owner & followers": "Propriétaire & abonnés",
|
|
170
|
+
"Entire company": "Entreprise entière",
|
|
168
171
|
"No Consent": "Aucun consentement",
|
|
169
172
|
"Unsubscribed": "Désabonné",
|
|
170
173
|
"Subscribed": "Inscrit",
|
|
@@ -197,16 +200,16 @@
|
|
|
197
200
|
"Triggers when a new deal is created.": "Déclenche quand une nouvelle transaction est créée.",
|
|
198
201
|
"Triggers when a new activity is added": "Déclenche quand une nouvelle activité est ajoutée",
|
|
199
202
|
"Triggers when a new note is created.": "Déclenche quand une nouvelle note est créée.",
|
|
200
|
-
"Triggers when a person is updated": "Déclenche quand une personne est mise à jour",
|
|
201
|
-
"Triggers when a deal is updated": "Déclenche quand une transaction est mise à jour",
|
|
203
|
+
"Triggers when a person is updated.": "Déclenche quand une personne est mise à jour.",
|
|
204
|
+
"Triggers when a deal is updated.": "Déclenche quand une transaction est mise à jour.",
|
|
202
205
|
"Triggers when a deal's stage is updated.": "Déclenche quand l'étape d'un marché est mise à jour.",
|
|
203
206
|
"Triggers when a new lead is created.": "Déclenche lorsqu'un nouveau prospect est créé.",
|
|
204
207
|
"Triggers when a new organization is created.": "Déclenche quand une nouvelle organisation est créée.",
|
|
205
208
|
"Triggers when an existing organization is updated.": "Déclenche quand une organisation existante est mise à jour.",
|
|
206
209
|
"Trigges when an activity newly matches a Pipedrive filter for the first time.": "Déclenche quand une activité correspond à un filtre Pipedrive pour la première fois.",
|
|
207
210
|
"Trigges when a deal newly matches a Pipedrive filter for the first time.": "Déclenche lorsqu'une transaction correspond pour la première fois à un filtre Pipedrive.",
|
|
208
|
-
"
|
|
209
|
-
"
|
|
211
|
+
"Triggers when a person newly matches a Pipedrive filter for the first time.": "Déclenche quand une personne correspond récemment à un filtre Pipedrive pour la première fois.",
|
|
212
|
+
"Triggers when an organization newly matches a Pipedrive filter for the first time.": "Déclenche lorsqu'une organisation correspond pour la première fois à un filtre Pipedrive.",
|
|
210
213
|
"Filter by": "Filtrer par",
|
|
211
214
|
"Field Values": "Valeurs du champ",
|
|
212
215
|
"Field to watch for Changes On": "Champ à surveiller pour les changements activés",
|
package/src/i18n/ja.json
CHANGED
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"Find User": "ユーザーを検索",
|
|
31
31
|
"Custom API Call": "カスタムAPI通話",
|
|
32
32
|
"Adds a follower to a deal, person, organization or product.": "取引、人、組織、または製品にフォロワーを追加します。",
|
|
33
|
-
"
|
|
33
|
+
"Finds a note by ID.": "IDでノートを検索します。",
|
|
34
34
|
"Creates a new note.": "新しいノートを作成します。",
|
|
35
|
-
"Adds
|
|
35
|
+
"Adds existing labels to an existing person.": "既存のユーザーに既存のラベルを追加します。",
|
|
36
36
|
"Adds a product to a deal.": "取引に商品を追加",
|
|
37
37
|
"Uploads a file and attaches it to a deal,person,organization,activity or product.": "ファイルをアップロードし、取引、人、組織、活動または製品に添付します。",
|
|
38
38
|
"Creates a new activity.": "新しいアクティビティを作成します。",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"Updates an existing person.": "既存のユーザーを更新します。",
|
|
48
48
|
"Creates a new product.": "新しい商品を作成します。",
|
|
49
49
|
"Finds multiple deals related to a specific person.": "特定の人に関連する複数の取引を検索します。",
|
|
50
|
-
"
|
|
50
|
+
"Finds a product by name ": "名前で製品を検索 ",
|
|
51
51
|
"Finds a product or products by name or product code.": "名前または製品コードで製品または製品を検索します。",
|
|
52
|
-
"Finds notes by Deal,Lead,Person, or Organization ID.": "
|
|
53
|
-
"
|
|
52
|
+
"Finds notes by Deal, Lead, Person, or Organization ID.": "取引、リード、個人、または組織 ID でノートを検索します。",
|
|
53
|
+
"Finds a product by ID.": "ID で製品を検索します。",
|
|
54
54
|
"Finds an organization.": "組織を検索します。",
|
|
55
55
|
"Finds a person.": "人を見つけます。",
|
|
56
56
|
"Finds a deal by any field.": "任意のフィールドで取引を検索します。",
|
|
57
57
|
"Finds an activity by subject.": "件名によるアクティビティを検索します。",
|
|
58
|
-
"
|
|
58
|
+
"Finds a user by name or email.": "名前またはメールアドレスでユーザーを検索します。",
|
|
59
59
|
"Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
|
|
60
60
|
"Follower": "フォロワー",
|
|
61
61
|
"Target Object": "Target Object",
|
|
@@ -93,7 +93,6 @@
|
|
|
93
93
|
"Free or Busy": "空きまたは忙しいです",
|
|
94
94
|
"Note": "メモ",
|
|
95
95
|
"Public Description": "公開説明",
|
|
96
|
-
"Activity": "アクティビティ",
|
|
97
96
|
"Title": "タイトル",
|
|
98
97
|
"Creation Time": "作成日時",
|
|
99
98
|
"Status": "ステータス",
|
|
@@ -107,7 +106,7 @@
|
|
|
107
106
|
"Visible To": "表示先",
|
|
108
107
|
"Custom Fields": "カスタムフィールド",
|
|
109
108
|
"Channel": "チャンネル",
|
|
110
|
-
"Lead Value": "リード値",
|
|
109
|
+
"Lead Value Amount": "リード値",
|
|
111
110
|
"Lead Value Currency": "リード価値通貨",
|
|
112
111
|
"Name": "名前",
|
|
113
112
|
"Address": "住所",
|
|
@@ -134,6 +133,7 @@
|
|
|
134
133
|
"Headers": "ヘッダー",
|
|
135
134
|
"Query Parameters": "クエリパラメータ",
|
|
136
135
|
"Body": "本文",
|
|
136
|
+
"Response is Binary ?": "応答はバイナリですか?",
|
|
137
137
|
"No Error on Failure": "失敗時にエラーはありません",
|
|
138
138
|
"Timeout (in seconds)": "タイムアウト(秒)",
|
|
139
139
|
"Type of object to add the follower to.": "フォロワーを追加するオブジェクトのタイプ。",
|
|
@@ -144,10 +144,13 @@
|
|
|
144
144
|
"You can use Find Product action to retrieve product ID.": "format@@0アクションを使用して、製品IDを取得できます。",
|
|
145
145
|
"Please enter date in YYYY-MM-DD format.": "日付を YYYY-MM-DD 形式で入力してください。",
|
|
146
146
|
"Please enter time in HH:MM format.": "時間をHH:MM形式で入力してください。",
|
|
147
|
+
"Please enter time in HH:MM format (e.g., \"01:30\" for 1 hour 30 minutes).": "時間をHH:MM形式で入力してください(例:\"01:30\" 1時間30分)。",
|
|
147
148
|
"If a stage is chosen above, the pipeline field will be ignored.": "上記でステージを選択した場合、パイプラインフィールドは無視されます。",
|
|
148
|
-
"Please enter currency code.": "
|
|
149
|
+
"Please enter currency code (e.g., \"USD\", \"EUR\").": "通貨コードを入力してください(例:\"USD\"、\"EUR\")。",
|
|
150
|
+
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "リード値の通貨(例:\"USD\"、\"EUR\")。",
|
|
149
151
|
"Marketing opt-in status": "マーケティングオプトインのステータス",
|
|
150
152
|
"Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
|
|
153
|
+
"Enable for files like PDFs, images, etc..": "PDF、画像などのファイルを有効にします。",
|
|
151
154
|
"Deal": "取引",
|
|
152
155
|
"Person": "人",
|
|
153
156
|
"Organization": "組織",
|
|
@@ -163,8 +166,8 @@
|
|
|
163
166
|
"Won": "獲得日",
|
|
164
167
|
"Lost": "失われた",
|
|
165
168
|
"Deleted": "削除しました",
|
|
166
|
-
"
|
|
167
|
-
"
|
|
169
|
+
"Owner & followers": "オーナーとフォロワー",
|
|
170
|
+
"Entire company": "会社全体",
|
|
168
171
|
"No Consent": "同意なし",
|
|
169
172
|
"Unsubscribed": "購読解除済み",
|
|
170
173
|
"Subscribed": "購読中",
|
|
@@ -197,16 +200,16 @@
|
|
|
197
200
|
"Triggers when a new deal is created.": "新しい取引が作成されたときにトリガーします。",
|
|
198
201
|
"Triggers when a new activity is added": "新しいアクティビティが追加されたときにトリガーします",
|
|
199
202
|
"Triggers when a new note is created.": "新しいノートが作成されたときにトリガーされます。",
|
|
200
|
-
"Triggers when a person is updated": "
|
|
201
|
-
"Triggers when a deal is updated": "
|
|
203
|
+
"Triggers when a person is updated.": "人が更新されたときにトリガーします.",
|
|
204
|
+
"Triggers when a deal is updated.": "取引が更新されたときに発生する.",
|
|
202
205
|
"Triggers when a deal's stage is updated.": "取引のステージが更新されたときに発生します。",
|
|
203
206
|
"Triggers when a new lead is created.": "新しいリードが作成されたときにトリガーします。",
|
|
204
207
|
"Triggers when a new organization is created.": "新しい組織が作成されたときにトリガーします。",
|
|
205
208
|
"Triggers when an existing organization is updated.": "既存の組織が更新されたときにトリガーします。",
|
|
206
209
|
"Trigges when an activity newly matches a Pipedrive filter for the first time.": "アクティビティが初めてPipedriveフィルターに一致したときにトリガーされます。",
|
|
207
210
|
"Trigges when a deal newly matches a Pipedrive filter for the first time.": "新規取引がPipedriveフィルターに一致したときにトリガーされます。",
|
|
208
|
-
"
|
|
209
|
-
"
|
|
211
|
+
"Triggers when a person newly matches a Pipedrive filter for the first time.": "Pipedriveフィルタが新たに一致したときにトリガーします。",
|
|
212
|
+
"Triggers when an organization newly matches a Pipedrive filter for the first time.": "組織が初めてPipedriveフィルタに一致したときにトリガーします。",
|
|
210
213
|
"Filter by": "フィルター",
|
|
211
214
|
"Field Values": "フィールド値",
|
|
212
215
|
"Field to watch for Changes On": "変更を確認するフィールド",
|
package/src/i18n/nl.json
CHANGED
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"Find User": "Gebruiker zoeken",
|
|
31
31
|
"Custom API Call": "Custom API Call",
|
|
32
32
|
"Adds a follower to a deal, person, organization or product.": "Voegt een volger toe aan een overeenkomst, persoon, organisatie of product.",
|
|
33
|
-
"
|
|
33
|
+
"Finds a note by ID.": "Vindt een notitie per ID.",
|
|
34
34
|
"Creates a new note.": "Maakt een nieuwe notitie.",
|
|
35
|
-
"Adds
|
|
35
|
+
"Adds existing labels to an existing person.": "Voegt bestaande labels toe aan een bestaande persoon.",
|
|
36
36
|
"Adds a product to a deal.": "Voegt een product toe aan een deal.",
|
|
37
37
|
"Uploads a file and attaches it to a deal,person,organization,activity or product.": "Uploaden van een bestand en hecht aan een deal,persoon,organisatie, activiteit of product.",
|
|
38
38
|
"Creates a new activity.": "Maakt een nieuwe activiteit.",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"Updates an existing person.": "Een bestaande persoon bijwerken.",
|
|
48
48
|
"Creates a new product.": "Maakt een nieuw product aan.",
|
|
49
49
|
"Finds multiple deals related to a specific person.": "Vindt meerdere deals gerelateerd aan een specifieke persoon.",
|
|
50
|
-
"
|
|
50
|
+
"Finds a product by name ": "Gevonden product op naam ",
|
|
51
51
|
"Finds a product or products by name or product code.": "Vindt een product of product op naam of product code.",
|
|
52
|
-
"Finds notes by Deal,Lead,Person, or Organization ID.": "
|
|
53
|
-
"
|
|
52
|
+
"Finds notes by Deal, Lead, Person, or Organization ID.": "Vind notities van Deal, Lead, Persoon of Organisatie ID.",
|
|
53
|
+
"Finds a product by ID.": "Vindt een product via ID.",
|
|
54
54
|
"Finds an organization.": "Vindt een organisatie.",
|
|
55
55
|
"Finds a person.": "Vindt een persoon.",
|
|
56
56
|
"Finds a deal by any field.": "Vindt een deal door elk veld.",
|
|
57
57
|
"Finds an activity by subject.": "Vindt een activiteit per onderwerp.",
|
|
58
|
-
"
|
|
58
|
+
"Finds a user by name or email.": "Vindt een gebruiker op naam of e-mail.",
|
|
59
59
|
"Make a custom API call to a specific endpoint": "Maak een aangepaste API call naar een specifiek eindpunt",
|
|
60
60
|
"Follower": "Volger",
|
|
61
61
|
"Target Object": "Target Object",
|
|
@@ -93,7 +93,6 @@
|
|
|
93
93
|
"Free or Busy": "Gratis of bezet",
|
|
94
94
|
"Note": "Notitie",
|
|
95
95
|
"Public Description": "Openbare beschrijving",
|
|
96
|
-
"Activity": "Activiteit",
|
|
97
96
|
"Title": "Aanspreektitel",
|
|
98
97
|
"Creation Time": "Aanmaak tijd",
|
|
99
98
|
"Status": "status",
|
|
@@ -107,7 +106,7 @@
|
|
|
107
106
|
"Visible To": "Zichtbaar voor",
|
|
108
107
|
"Custom Fields": "Aangepaste velden",
|
|
109
108
|
"Channel": "Kanaal",
|
|
110
|
-
"Lead Value": "Lead waarde",
|
|
109
|
+
"Lead Value Amount": "Lead waarde bedrag",
|
|
111
110
|
"Lead Value Currency": "Lead waarde valuta",
|
|
112
111
|
"Name": "Naam",
|
|
113
112
|
"Address": "Adres:",
|
|
@@ -134,6 +133,7 @@
|
|
|
134
133
|
"Headers": "Kopteksten",
|
|
135
134
|
"Query Parameters": "Query parameters",
|
|
136
135
|
"Body": "Lichaam",
|
|
136
|
+
"Response is Binary ?": "Antwoord is binair?",
|
|
137
137
|
"No Error on Failure": "Geen fout bij fout",
|
|
138
138
|
"Timeout (in seconds)": "Time-out (in seconden)",
|
|
139
139
|
"Type of object to add the follower to.": "Type object waar de volger aan toe te voegen.",
|
|
@@ -144,10 +144,13 @@
|
|
|
144
144
|
"You can use Find Product action to retrieve product ID.": "U kunt \"Zoek product-actie\" gebruiken om product-ID op te halen.",
|
|
145
145
|
"Please enter date in YYYY-MM-DD format.": "Voer de datum in JJJJ-MM-DD formaat in.",
|
|
146
146
|
"Please enter time in HH:MM format.": "Voer de tijd in HH:MM formaat in.",
|
|
147
|
+
"Please enter time in HH:MM format (e.g., \"01:30\" for 1 hour 30 minutes).": "Voer tijd in in HH:MM-formaat (bijv. \"01:30\" gedurende 1 uur 30 minuten).",
|
|
147
148
|
"If a stage is chosen above, the pipeline field will be ignored.": "Als hierboven een fase is gekozen, wordt het pipeline veld genegeerd.",
|
|
148
|
-
"Please enter currency code.": "Voer een valutacode in.",
|
|
149
|
+
"Please enter currency code (e.g., \"USD\", \"EUR\").": "Voer een valutacode in (bijv. \"USD\", \"EUR\").",
|
|
150
|
+
"The currency of the lead value (e.g., \"USD\", \"EUR\").": "De valuta van de lead waarde (bijv. \"USD\", \"EUR\").",
|
|
149
151
|
"Marketing opt-in status": "Marketing opt-in status",
|
|
150
152
|
"Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
|
|
153
|
+
"Enable for files like PDFs, images, etc..": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc..",
|
|
151
154
|
"Deal": "Koopjes",
|
|
152
155
|
"Person": "Persoon",
|
|
153
156
|
"Organization": "Rekening",
|
|
@@ -163,8 +166,8 @@
|
|
|
163
166
|
"Won": "Gewonnen",
|
|
164
167
|
"Lost": "Verloren",
|
|
165
168
|
"Deleted": "Verwijderd",
|
|
166
|
-
"
|
|
167
|
-
"
|
|
169
|
+
"Owner & followers": "Eigenaar & volgers",
|
|
170
|
+
"Entire company": "Hele bedrijf",
|
|
168
171
|
"No Consent": "Geen toestemming",
|
|
169
172
|
"Unsubscribed": "Uitgeschreven",
|
|
170
173
|
"Subscribed": "Ingeschreven",
|
|
@@ -197,16 +200,16 @@
|
|
|
197
200
|
"Triggers when a new deal is created.": "Triggert wanneer een nieuwe transactie wordt aangemaakt.",
|
|
198
201
|
"Triggers when a new activity is added": "Triggert wanneer een nieuwe activiteit wordt toegevoegd",
|
|
199
202
|
"Triggers when a new note is created.": "Triggert wanneer een nieuwe notitie wordt aangemaakt.",
|
|
200
|
-
"Triggers when a person is updated": "Triggert wanneer een persoon wordt bijgewerkt",
|
|
201
|
-
"Triggers when a deal is updated": "Triggert wanneer een transactie wordt bijgewerkt",
|
|
203
|
+
"Triggers when a person is updated.": "Triggert wanneer een persoon wordt bijgewerkt.",
|
|
204
|
+
"Triggers when a deal is updated.": "Triggert wanneer een transactie wordt bijgewerkt.",
|
|
202
205
|
"Triggers when a deal's stage is updated.": "Triggert wanneer het podium van een transactie wordt bijgewerkt.",
|
|
203
206
|
"Triggers when a new lead is created.": "Triggert wanneer een nieuwe lead wordt gemaakt.",
|
|
204
207
|
"Triggers when a new organization is created.": "Triggert wanneer een nieuwe organisatie wordt aangemaakt.",
|
|
205
208
|
"Triggers when an existing organization is updated.": "Triggert wanneer een bestaande organisatie wordt bijgewerkt.",
|
|
206
209
|
"Trigges when an activity newly matches a Pipedrive filter for the first time.": "Dubbel wanneer een activiteit nieuw overeenkomt met een Pipedrive filter voor de eerste keer.",
|
|
207
210
|
"Trigges when a deal newly matches a Pipedrive filter for the first time.": "Dubbel wanneer een transactie voor de eerste keer overeenkomt met een Pipedrive filter.",
|
|
208
|
-
"
|
|
209
|
-
"
|
|
211
|
+
"Triggers when a person newly matches a Pipedrive filter for the first time.": "Triggert wanneer een persoon voor de eerste keer overeenkomt met een Pipedrive filter.",
|
|
212
|
+
"Triggers when an organization newly matches a Pipedrive filter for the first time.": "Triggert wanneer een organisatie voor de eerste keer overeenkomt met een Pipedrive filter.",
|
|
210
213
|
"Filter by": "Filteren op",
|
|
211
214
|
"Field Values": "Veld Waarden",
|
|
212
215
|
"Field to watch for Changes On": "Veld om wijzigingen te bekijken",
|