@activepieces/piece-lead-connector 0.1.2 → 0.1.4
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 +30 -11
- package/src/i18n/ca.json +88 -0
- package/src/i18n/de.json +88 -0
- package/src/i18n/es.json +88 -0
- package/src/i18n/fr.json +88 -0
- package/src/i18n/hi.json +88 -0
- package/src/i18n/id.json +88 -0
- package/src/i18n/ja.json +88 -0
- package/src/i18n/nl.json +88 -0
- package/src/i18n/pt.json +88 -0
- package/src/i18n/ru.json +88 -0
- package/src/i18n/translation.json +88 -0
- package/src/i18n/vi.json +88 -0
- package/src/i18n/zh.json +88 -0
- package/src/index.js +5 -5
- package/src/index.js.map +1 -1
- package/src/lib/actions/add-contact-to-campaign.js +4 -4
- package/src/lib/actions/add-contact-to-campaign.js.map +1 -1
- package/src/lib/actions/add-contact-to-workflow.js +4 -4
- package/src/lib/actions/add-contact-to-workflow.js.map +1 -1
- package/src/lib/actions/add-note-to-contact.js +4 -4
- package/src/lib/actions/add-note-to-contact.js.map +1 -1
- package/src/lib/actions/create-contact.js +11 -7
- package/src/lib/actions/create-contact.js.map +1 -1
- package/src/lib/actions/create-opportunity.js +11 -7
- package/src/lib/actions/create-opportunity.js.map +1 -1
- package/src/lib/actions/create-task.js +4 -4
- package/src/lib/actions/create-task.js.map +1 -1
- package/src/lib/actions/search-contacts.js +2 -2
- package/src/lib/actions/search-contacts.js.map +1 -1
- package/src/lib/actions/update-contact.js +11 -7
- package/src/lib/actions/update-contact.js.map +1 -1
- package/src/lib/actions/update-opportunity.js +12 -8
- package/src/lib/actions/update-opportunity.js.map +1 -1
- package/src/lib/actions/update-task.js +5 -5
- package/src/lib/actions/update-task.js.map +1 -1
- package/src/lib/common/index.js +26 -26
- package/src/lib/common/index.js.map +1 -1
- package/src/lib/triggers/contact-updated.js +6 -4
- package/src/lib/triggers/contact-updated.js.map +1 -1
- package/src/lib/triggers/new-contact.js +6 -14
- package/src/lib/triggers/new-contact.js.map +1 -1
- package/src/lib/triggers/new-form-submission.js +6 -4
- package/src/lib/triggers/new-form-submission.js.map +1 -1
- package/src/lib/triggers/new-opportunity.js +7 -5
- package/src/lib/triggers/new-opportunity.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,20 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-lead-connector",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
5
|
+
"@ai-sdk/anthropic": "1.2.12",
|
|
6
|
+
"@ai-sdk/google": "1.2.19",
|
|
7
|
+
"@ai-sdk/openai": "1.3.22",
|
|
8
|
+
"@ai-sdk/replicate": "0.2.8",
|
|
9
|
+
"@sinclair/typebox": "0.34.11",
|
|
10
|
+
"ai": "4.3.16",
|
|
11
|
+
"axios": "1.8.3",
|
|
12
|
+
"axios-retry": "4.4.1",
|
|
13
|
+
"deepmerge-ts": "7.1.0",
|
|
14
|
+
"fast-glob": "3.3.3",
|
|
9
15
|
"jsonwebtoken": "9.0.1",
|
|
10
|
-
"
|
|
11
|
-
"nanoid": "3.3.
|
|
16
|
+
"mime-types": "2.1.35",
|
|
17
|
+
"nanoid": "3.3.8",
|
|
12
18
|
"semver": "7.6.0",
|
|
13
|
-
"
|
|
14
|
-
"@activepieces/pieces-
|
|
15
|
-
"@activepieces/
|
|
16
|
-
"
|
|
19
|
+
"zod": "3.25.76",
|
|
20
|
+
"@activepieces/pieces-common": "0.6.4",
|
|
21
|
+
"@activepieces/pieces-framework": "0.18.3",
|
|
22
|
+
"@activepieces/shared": "0.18.0",
|
|
23
|
+
"tslib": "2.8.1"
|
|
17
24
|
},
|
|
25
|
+
"overrides": {
|
|
26
|
+
"@tryfabric/martian": {
|
|
27
|
+
"@notionhq/client": "$@notionhq/client"
|
|
28
|
+
},
|
|
29
|
+
"vite": {
|
|
30
|
+
"rollup": "npm:@rollup/wasm-node"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"resolutions": {
|
|
34
|
+
"rollup": "npm:@rollup/wasm-node"
|
|
35
|
+
},
|
|
36
|
+
"types": "./src/index.d.ts",
|
|
18
37
|
"main": "./src/index.js",
|
|
19
38
|
"type": "commonjs"
|
|
20
39
|
}
|
package/src/i18n/ca.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"LeadConnector": "LeadConnector",
|
|
3
|
+
"Lead Connector - Go High Level": "Lead Connector - Go High Level",
|
|
4
|
+
"\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - ": "\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - users.readonly\n - workflows.readonly\n - forms.readonly\n5. Add redirect URLs.\n6. Create new Client key with valid name.Copy Client ID and Client Secret.\n",
|
|
5
|
+
"Create Contact": "Create Contact",
|
|
6
|
+
"Update Contact": "Update Contact",
|
|
7
|
+
"Add Contact to Campaign": "Add Contact to Campaign",
|
|
8
|
+
"Add Contact to Workflow": "Add Contact to Workflow",
|
|
9
|
+
"Add Note to Contact": "Add Note to Contact",
|
|
10
|
+
"Search Contacts": "Search Contacts",
|
|
11
|
+
"Create Opportunity": "Create Opportunity",
|
|
12
|
+
"Update Opportunity": "Update Opportunity",
|
|
13
|
+
"Create Task": "Create Task",
|
|
14
|
+
"Update Task": "Update Task",
|
|
15
|
+
"Custom API Call": "Custom API Call",
|
|
16
|
+
"Create a new contact.": "Create a new contact.",
|
|
17
|
+
"Update an existing contact.": "Update an existing contact.",
|
|
18
|
+
"Add an existing contact to a campaign.": "Add an existing contact to a campaign.",
|
|
19
|
+
"Add an existing contact to a workflow.": "Add an existing contact to a workflow.",
|
|
20
|
+
"Add a new note to a contact.": "Add a new note to a contact.",
|
|
21
|
+
"Search for contacts with a search query.": "Search for contacts with a search query.",
|
|
22
|
+
"Create a new opportunity.": "Create a new opportunity.",
|
|
23
|
+
"Updates an existing opportunity.": "Updates an existing opportunity.",
|
|
24
|
+
"Create a new task.": "Create a new task.",
|
|
25
|
+
"Update a task.": "Update a task.",
|
|
26
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
27
|
+
"First Name": "First Name",
|
|
28
|
+
"Last Name": "Last Name",
|
|
29
|
+
"Email": "Email",
|
|
30
|
+
"Phone": "Phone",
|
|
31
|
+
"Company Name": "Nom de l'empresa",
|
|
32
|
+
"Website": "Website",
|
|
33
|
+
"Tags": "Tags",
|
|
34
|
+
"Source": "Source",
|
|
35
|
+
"Country": "Country",
|
|
36
|
+
"City": "City",
|
|
37
|
+
"State": "State",
|
|
38
|
+
"Address": "Address",
|
|
39
|
+
"Postal Code": "Postal Code",
|
|
40
|
+
"Time Zone": "Time Zone",
|
|
41
|
+
"Contact ID": "Contact ID",
|
|
42
|
+
"Contact": "Contact",
|
|
43
|
+
"Campaign": "Campaign",
|
|
44
|
+
"Workflow": "Workflow",
|
|
45
|
+
"Note": "Note",
|
|
46
|
+
"User": "User",
|
|
47
|
+
"Search Query": "Search Query",
|
|
48
|
+
"Pipeline": "Pipeline",
|
|
49
|
+
"Stage": "Stage",
|
|
50
|
+
"Title": "Title",
|
|
51
|
+
"Status": "Status",
|
|
52
|
+
"Assigned To": "Assigned To",
|
|
53
|
+
"Monetary Value": "Monetary Value",
|
|
54
|
+
"Opportunity": "Opportunity",
|
|
55
|
+
"Due Date": "Due Date",
|
|
56
|
+
"Description": "Description",
|
|
57
|
+
"Completed": "Completed",
|
|
58
|
+
"Task": "Task",
|
|
59
|
+
"Method": "Method",
|
|
60
|
+
"Headers": "Headers",
|
|
61
|
+
"Query Parameters": "Query Parameters",
|
|
62
|
+
"Body": "Body",
|
|
63
|
+
"No Error on Failure": "No Error on Failure",
|
|
64
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
65
|
+
"When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.": "When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.",
|
|
66
|
+
"The ID of the contact.": "The ID of the contact.",
|
|
67
|
+
"The contact to use.": "The contact to use.",
|
|
68
|
+
"The value you want to search for.": "The value you want to search for.",
|
|
69
|
+
"The ID of the pipeline to use.": "The ID of the pipeline to use.",
|
|
70
|
+
"The stage of the pipeline to use.": "The stage of the pipeline to use.",
|
|
71
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
72
|
+
"GET": "GET",
|
|
73
|
+
"POST": "POST",
|
|
74
|
+
"PATCH": "PATCH",
|
|
75
|
+
"PUT": "PUT",
|
|
76
|
+
"DELETE": "DELETE",
|
|
77
|
+
"HEAD": "HEAD",
|
|
78
|
+
"New Contact": "New Contact",
|
|
79
|
+
"Contact Created or Updated": "Contact Created or Updated",
|
|
80
|
+
"New Form Submission": "New Form Submission",
|
|
81
|
+
"New Opportunity": "New Opportunity",
|
|
82
|
+
"Trigger when a new contact is added.": "Trigger when a new contact is added.",
|
|
83
|
+
"Trigger when a contact is created or updated.": "Trigger when a contact is created or updated.",
|
|
84
|
+
"Trigger when a form is submitted.": "Trigger when a form is submitted.",
|
|
85
|
+
"Trigger when a new opportunity is added.": "Trigger when a new opportunity is added.",
|
|
86
|
+
"Form": "Form",
|
|
87
|
+
"The form you want to use.": "The form you want to use."
|
|
88
|
+
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"LeadConnector": "Lead-Connector",
|
|
3
|
+
"Lead Connector - Go High Level": "Lead-Connector - Hohes Level gehen",
|
|
4
|
+
"\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - ": "\n1. Gehe zur [Marketplace](https://marketplace.gohighlevel.com/) und melde dich für ein Entwicklerkonto an.\n2. Navigieren Sie zu **Meine Apps** und klicken Sie auf **App erstellen**.\n3. Geben Sie den App-Namen an. hen wähle **Privat** als App-Typ, **Unterkonten** als Vertriebstyp aus. Klicke auf **App erstellen** Schaltfläche.\n4. Folgende Bereiche hinzufügen.\n - campaigns.readonly\n - contacts.write\n - Kontakte. eadonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags. rite\n - opportunities.readonly\n - opportunities.write\n - users. eadonly\n - workflows.readonly\n - formulare.readonly\n5. Fügen Sie Umleitungs-URLs hinzu.\n6. Neuen Client-Schlüssel mit gültigem Namen anlegen. Kopiere Client-ID und Client-Geheimnis.\n",
|
|
5
|
+
"Create Contact": "Kontakt erstellen",
|
|
6
|
+
"Update Contact": "Kontakt aktualisieren",
|
|
7
|
+
"Add Contact to Campaign": "Kontakt zur Kampagne hinzufügen",
|
|
8
|
+
"Add Contact to Workflow": "Kontakt zum Workflow hinzufügen",
|
|
9
|
+
"Add Note to Contact": "Notiz zu Kontakt hinzufügen",
|
|
10
|
+
"Search Contacts": "Kontakte suchen",
|
|
11
|
+
"Create Opportunity": "Verkaufschance erstellen",
|
|
12
|
+
"Update Opportunity": "Update-Verkaufschance",
|
|
13
|
+
"Create Task": "Aufgabe erstellen",
|
|
14
|
+
"Update Task": "Aufgabe aktualisieren",
|
|
15
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
16
|
+
"Create a new contact.": "Neuen Kontakt anlegen.",
|
|
17
|
+
"Update an existing contact.": "Aktualisiere einen bestehenden Kontakt.",
|
|
18
|
+
"Add an existing contact to a campaign.": "Hinzufügen eines bestehenden Kontakts zu einer Kampagne.",
|
|
19
|
+
"Add an existing contact to a workflow.": "Fügen Sie einen bestehenden Kontakt zu einem Workflow hinzu.",
|
|
20
|
+
"Add a new note to a contact.": "Neue Notiz zu einem Kontakt hinzufügen.",
|
|
21
|
+
"Search for contacts with a search query.": "Suche nach Kontakten mit einer Suchabfrage.",
|
|
22
|
+
"Create a new opportunity.": "Erstelle eine neue Chance.",
|
|
23
|
+
"Updates an existing opportunity.": "Aktualisiert eine vorhandene Möglichkeit.",
|
|
24
|
+
"Create a new task.": "Erstellen Sie eine neue Aufgabe.",
|
|
25
|
+
"Update a task.": "Aufgabe aktualisieren.",
|
|
26
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
27
|
+
"First Name": "Vorname",
|
|
28
|
+
"Last Name": "Nachname",
|
|
29
|
+
"Email": "E-Mail",
|
|
30
|
+
"Phone": "Telefon",
|
|
31
|
+
"Company Name": "Firmenname",
|
|
32
|
+
"Website": "Webseite",
|
|
33
|
+
"Tags": "Tags",
|
|
34
|
+
"Source": "Quelle",
|
|
35
|
+
"Country": "Land",
|
|
36
|
+
"City": "Stadt",
|
|
37
|
+
"State": "Bundesland",
|
|
38
|
+
"Address": "Adresse",
|
|
39
|
+
"Postal Code": "Postleitzahl",
|
|
40
|
+
"Time Zone": "Zeitzone",
|
|
41
|
+
"Contact ID": "Kontakt-ID",
|
|
42
|
+
"Contact": "Kontakt",
|
|
43
|
+
"Campaign": "Kampagne",
|
|
44
|
+
"Workflow": "Workflow",
|
|
45
|
+
"Note": "Notiz",
|
|
46
|
+
"User": "Benutzer",
|
|
47
|
+
"Search Query": "Suchanfrage",
|
|
48
|
+
"Pipeline": "Pipeline",
|
|
49
|
+
"Stage": "Teil",
|
|
50
|
+
"Title": "Titel",
|
|
51
|
+
"Status": "Status",
|
|
52
|
+
"Assigned To": "Zugewiesen an",
|
|
53
|
+
"Monetary Value": "Geldwert",
|
|
54
|
+
"Opportunity": "Verkaufschance",
|
|
55
|
+
"Due Date": "Fälligkeitsdatum",
|
|
56
|
+
"Description": "Beschreibung",
|
|
57
|
+
"Completed": "Abgeschlossen",
|
|
58
|
+
"Task": "Aufgabe",
|
|
59
|
+
"Method": "Methode",
|
|
60
|
+
"Headers": "Kopfzeilen",
|
|
61
|
+
"Query Parameters": "Abfrageparameter",
|
|
62
|
+
"Body": "Körper",
|
|
63
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
64
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
65
|
+
"When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.": "Wenn Sie einen dynamischen Wert verwenden, stellen Sie sicher, dass Sie den ISO-2-Ländercode und nicht den Landesnamen verwenden.",
|
|
66
|
+
"The ID of the contact.": "Die ID des Kontakts.",
|
|
67
|
+
"The contact to use.": "Der zu verwendende Kontakt.",
|
|
68
|
+
"The value you want to search for.": "Der Wert, nach dem Sie suchen möchten.",
|
|
69
|
+
"The ID of the pipeline to use.": "Die ID der zu verwendenden Pipeline.",
|
|
70
|
+
"The stage of the pipeline to use.": "Die Phase der zu verwendenden Pipeline.",
|
|
71
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
72
|
+
"GET": "ERHALTEN",
|
|
73
|
+
"POST": "POST",
|
|
74
|
+
"PATCH": "PATCH",
|
|
75
|
+
"PUT": "PUT",
|
|
76
|
+
"DELETE": "LÖSCHEN",
|
|
77
|
+
"HEAD": "HEAD",
|
|
78
|
+
"New Contact": "Neuer Kontakt",
|
|
79
|
+
"Contact Created or Updated": "Kontakt erstellt oder aktualisiert",
|
|
80
|
+
"New Form Submission": "Neue Formulareinreichung",
|
|
81
|
+
"New Opportunity": "Neue Verkaufschance",
|
|
82
|
+
"Trigger when a new contact is added.": "Wird ausgelöst, wenn ein neuer Kontakt hinzugefügt wird.",
|
|
83
|
+
"Trigger when a contact is created or updated.": "Wird ausgelöst, wenn ein Kontakt erstellt oder aktualisiert wird.",
|
|
84
|
+
"Trigger when a form is submitted.": "Auslösen wenn ein Formular abgeschickt wird.",
|
|
85
|
+
"Trigger when a new opportunity is added.": "Auslösen wenn eine neue Chance hinzugefügt wird.",
|
|
86
|
+
"Form": "Formular",
|
|
87
|
+
"The form you want to use.": "Das Formular, das Sie verwenden möchten."
|
|
88
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"LeadConnector": "Conector líder",
|
|
3
|
+
"Lead Connector - Go High Level": "Conector líder - Ve a alto nivel",
|
|
4
|
+
"\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - ": "\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - users.readonly\n - workflows.readonly\n - forms.readonly\n5. Add redirect URLs.\n6. Create new Client key with valid name.Copy Client ID and Client Secret.\n",
|
|
5
|
+
"Create Contact": "Crear contacto",
|
|
6
|
+
"Update Contact": "Actualizar contacto",
|
|
7
|
+
"Add Contact to Campaign": "Añadir contacto a la campaña",
|
|
8
|
+
"Add Contact to Workflow": "Añadir contacto al flujo de trabajo",
|
|
9
|
+
"Add Note to Contact": "Añadir nota al contacto",
|
|
10
|
+
"Search Contacts": "Buscar contactos",
|
|
11
|
+
"Create Opportunity": "Crear Oportunidad",
|
|
12
|
+
"Update Opportunity": "Actualizar Oportunidad",
|
|
13
|
+
"Create Task": "Crear tarea",
|
|
14
|
+
"Update Task": "Actualizar tarea",
|
|
15
|
+
"Custom API Call": "Llamada API personalizada",
|
|
16
|
+
"Create a new contact.": "Crear un nuevo contacto.",
|
|
17
|
+
"Update an existing contact.": "Actualizar un contacto existente.",
|
|
18
|
+
"Add an existing contact to a campaign.": "Añadir un contacto existente a una campaña.",
|
|
19
|
+
"Add an existing contact to a workflow.": "Añadir un contacto existente a un flujo de trabajo.",
|
|
20
|
+
"Add a new note to a contact.": "Añadir una nueva nota a un contacto.",
|
|
21
|
+
"Search for contacts with a search query.": "Buscar contactos con una consulta de búsqueda.",
|
|
22
|
+
"Create a new opportunity.": "Crear una nueva oportunidad.",
|
|
23
|
+
"Updates an existing opportunity.": "Actualiza una oportunidad existente.",
|
|
24
|
+
"Create a new task.": "Crear una nueva tarea.",
|
|
25
|
+
"Update a task.": "Actualizar una tarea.",
|
|
26
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
27
|
+
"First Name": "Nombre",
|
|
28
|
+
"Last Name": "Apellido",
|
|
29
|
+
"Email": "E-mail",
|
|
30
|
+
"Phone": "Teléfono",
|
|
31
|
+
"Company Name": "Nombre De La Empresa",
|
|
32
|
+
"Website": "Sitio web",
|
|
33
|
+
"Tags": "Etiquetas",
|
|
34
|
+
"Source": "Fuente",
|
|
35
|
+
"Country": "País",
|
|
36
|
+
"City": "Ciudad",
|
|
37
|
+
"State": "Estado",
|
|
38
|
+
"Address": "Dirección",
|
|
39
|
+
"Postal Code": "Código postal",
|
|
40
|
+
"Time Zone": "Zona horaria",
|
|
41
|
+
"Contact ID": "ID de contacto",
|
|
42
|
+
"Contact": "Contacto",
|
|
43
|
+
"Campaign": "Campaña",
|
|
44
|
+
"Workflow": "Flujo trabajo",
|
|
45
|
+
"Note": "Nota",
|
|
46
|
+
"User": "Usuario",
|
|
47
|
+
"Search Query": "Buscar consulta",
|
|
48
|
+
"Pipeline": "Pipeline",
|
|
49
|
+
"Stage": "Etapa",
|
|
50
|
+
"Title": "Título",
|
|
51
|
+
"Status": "Estado",
|
|
52
|
+
"Assigned To": "Asignado a",
|
|
53
|
+
"Monetary Value": "Valor monetario",
|
|
54
|
+
"Opportunity": "Oportunidad",
|
|
55
|
+
"Due Date": "Fecha de fin",
|
|
56
|
+
"Description": "Descripción",
|
|
57
|
+
"Completed": "Completado",
|
|
58
|
+
"Task": "Tarea",
|
|
59
|
+
"Method": "Método",
|
|
60
|
+
"Headers": "Encabezados",
|
|
61
|
+
"Query Parameters": "Parámetros de consulta",
|
|
62
|
+
"Body": "Cuerpo",
|
|
63
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
64
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
65
|
+
"When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.": "Cuando utilice un valor dinámico, asegúrese de usar el código de país ISO-2, y no el nombre del país.",
|
|
66
|
+
"The ID of the contact.": "El ID del contacto.",
|
|
67
|
+
"The contact to use.": "El contacto a utilizar.",
|
|
68
|
+
"The value you want to search for.": "El valor que desea buscar.",
|
|
69
|
+
"The ID of the pipeline to use.": "El ID del pipeline a utilizar.",
|
|
70
|
+
"The stage of the pipeline to use.": "La etapa del pipeline a utilizar.",
|
|
71
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
72
|
+
"GET": "RECOGER",
|
|
73
|
+
"POST": "POST",
|
|
74
|
+
"PATCH": "PATCH",
|
|
75
|
+
"PUT": "PUT",
|
|
76
|
+
"DELETE": "BORRAR",
|
|
77
|
+
"HEAD": "LIMPIO",
|
|
78
|
+
"New Contact": "Nuevo contacto",
|
|
79
|
+
"Contact Created or Updated": "Contacto creado o actualizado",
|
|
80
|
+
"New Form Submission": "Nuevo envío de formulario",
|
|
81
|
+
"New Opportunity": "Nueva oportunidad",
|
|
82
|
+
"Trigger when a new contact is added.": "Activar cuando se añade un nuevo contacto.",
|
|
83
|
+
"Trigger when a contact is created or updated.": "Activar cuando un contacto es creado o actualizado.",
|
|
84
|
+
"Trigger when a form is submitted.": "Activar cuando se envía un formulario.",
|
|
85
|
+
"Trigger when a new opportunity is added.": "Activar cuando se añade una nueva oportunidad.",
|
|
86
|
+
"Form": "Forma",
|
|
87
|
+
"The form you want to use.": "El formulario que desea utilizar."
|
|
88
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"LeadConnector": "LeadConnector",
|
|
3
|
+
"Lead Connector - Go High Level": "Connecteur de Prospect - Aller au niveau supérieur",
|
|
4
|
+
"\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - ": "\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - users.readonly\n - workflows.readonly\n - forms.readonly\n5. Add redirect URLs.\n6. Create new Client key with valid name.Copy Client ID and Client Secret.\n",
|
|
5
|
+
"Create Contact": "Créer un contact",
|
|
6
|
+
"Update Contact": "Mettre à jour le contact",
|
|
7
|
+
"Add Contact to Campaign": "Ajouter un contact à la campagne",
|
|
8
|
+
"Add Contact to Workflow": "Ajouter un contact au flux de travail",
|
|
9
|
+
"Add Note to Contact": "Ajouter une note au contact",
|
|
10
|
+
"Search Contacts": "Rechercher dans les contacts",
|
|
11
|
+
"Create Opportunity": "Créer une Affaire",
|
|
12
|
+
"Update Opportunity": "Mettre à jour l'Affaire",
|
|
13
|
+
"Create Task": "Créer une tâche",
|
|
14
|
+
"Update Task": "Tâche de mise à jour",
|
|
15
|
+
"Custom API Call": "Appel API personnalisé",
|
|
16
|
+
"Create a new contact.": "Créer un nouveau contact.",
|
|
17
|
+
"Update an existing contact.": "Mettre à jour un contact existant.",
|
|
18
|
+
"Add an existing contact to a campaign.": "Ajouter un contact existant à une campagne.",
|
|
19
|
+
"Add an existing contact to a workflow.": "Ajouter un contact existant à un workflow.",
|
|
20
|
+
"Add a new note to a contact.": "Ajouter une nouvelle note à un contact.",
|
|
21
|
+
"Search for contacts with a search query.": "Rechercher des contacts avec une requête de recherche.",
|
|
22
|
+
"Create a new opportunity.": "Créer une nouvelle opportunité.",
|
|
23
|
+
"Updates an existing opportunity.": "Met à jour une opportunité existante.",
|
|
24
|
+
"Create a new task.": "Créer une nouvelle tâche.",
|
|
25
|
+
"Update a task.": "Mettre à jour une tâche.",
|
|
26
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
27
|
+
"First Name": "First Name",
|
|
28
|
+
"Last Name": "Last Name",
|
|
29
|
+
"Email": "Courriel",
|
|
30
|
+
"Phone": "Téléphone",
|
|
31
|
+
"Company Name": "Nom de l’entreprise",
|
|
32
|
+
"Website": "Site Web",
|
|
33
|
+
"Tags": "Tags",
|
|
34
|
+
"Source": "Source",
|
|
35
|
+
"Country": "Pays",
|
|
36
|
+
"City": "Ville",
|
|
37
|
+
"State": "État",
|
|
38
|
+
"Address": "Adresses",
|
|
39
|
+
"Postal Code": "Code postal",
|
|
40
|
+
"Time Zone": "Fuseau horaire",
|
|
41
|
+
"Contact ID": "ID du contact",
|
|
42
|
+
"Contact": "Contacter",
|
|
43
|
+
"Campaign": "Campagnes",
|
|
44
|
+
"Workflow": "Flux de travail",
|
|
45
|
+
"Note": "Note",
|
|
46
|
+
"User": "Utilisateur",
|
|
47
|
+
"Search Query": "Requête de recherche",
|
|
48
|
+
"Pipeline": "Pipeline",
|
|
49
|
+
"Stage": "Étape",
|
|
50
|
+
"Title": "Titre de la page",
|
|
51
|
+
"Status": "Statut",
|
|
52
|
+
"Assigned To": "Assigné à",
|
|
53
|
+
"Monetary Value": "Valeur monétaire",
|
|
54
|
+
"Opportunity": "Opportunité",
|
|
55
|
+
"Due Date": "Date de fin",
|
|
56
|
+
"Description": "Libellé",
|
|
57
|
+
"Completed": "Terminé",
|
|
58
|
+
"Task": "Tâche",
|
|
59
|
+
"Method": "Méthode",
|
|
60
|
+
"Headers": "En-têtes",
|
|
61
|
+
"Query Parameters": "Paramètres de requête",
|
|
62
|
+
"Body": "Corps",
|
|
63
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
64
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
65
|
+
"When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.": "Lorsque vous utilisez une valeur dynamique, assurez-vous d'utiliser le code de pays ISO-2, et non le nom du pays.",
|
|
66
|
+
"The ID of the contact.": "L'ID du contact.",
|
|
67
|
+
"The contact to use.": "Le contact à utiliser.",
|
|
68
|
+
"The value you want to search for.": "La valeur que vous voulez rechercher.",
|
|
69
|
+
"The ID of the pipeline to use.": "L'ID du pipeline à utiliser.",
|
|
70
|
+
"The stage of the pipeline to use.": "L'étape du pipeline à utiliser.",
|
|
71
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
72
|
+
"GET": "OBTENIR",
|
|
73
|
+
"POST": "POSTER",
|
|
74
|
+
"PATCH": "PATCH",
|
|
75
|
+
"PUT": "EFFACER",
|
|
76
|
+
"DELETE": "SUPPRIMER",
|
|
77
|
+
"HEAD": "TÊTE",
|
|
78
|
+
"New Contact": "Nouveau contact",
|
|
79
|
+
"Contact Created or Updated": "Contact créé ou mis à jour",
|
|
80
|
+
"New Form Submission": "Nouvelle soumission de formulaire",
|
|
81
|
+
"New Opportunity": "Nouvelle opportunité",
|
|
82
|
+
"Trigger when a new contact is added.": "Déclencher lorsqu'un nouveau contact est ajouté.",
|
|
83
|
+
"Trigger when a contact is created or updated.": "Déclencher lorsqu'un contact est créé ou mis à jour.",
|
|
84
|
+
"Trigger when a form is submitted.": "Déclencher lorsqu'un formulaire est soumis.",
|
|
85
|
+
"Trigger when a new opportunity is added.": "Déclencher quand une nouvelle opportunité est ajoutée.",
|
|
86
|
+
"Form": "Forme",
|
|
87
|
+
"The form you want to use.": "Le formulaire que vous souhaitez utiliser."
|
|
88
|
+
}
|
package/src/i18n/hi.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"LeadConnector": "LeadConnector",
|
|
3
|
+
"Lead Connector - Go High Level": "Lead Connector - Go High Level",
|
|
4
|
+
"\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - ": "\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - users.readonly\n - workflows.readonly\n - forms.readonly\n5. Add redirect URLs.\n6. Create new Client key with valid name.Copy Client ID and Client Secret.\n",
|
|
5
|
+
"Create Contact": "Create Contact",
|
|
6
|
+
"Update Contact": "Update Contact",
|
|
7
|
+
"Add Contact to Campaign": "Add Contact to Campaign",
|
|
8
|
+
"Add Contact to Workflow": "Add Contact to Workflow",
|
|
9
|
+
"Add Note to Contact": "Add Note to Contact",
|
|
10
|
+
"Search Contacts": "Search Contacts",
|
|
11
|
+
"Create Opportunity": "Create Opportunity",
|
|
12
|
+
"Update Opportunity": "Update Opportunity",
|
|
13
|
+
"Create Task": "Create Task",
|
|
14
|
+
"Update Task": "Update Task",
|
|
15
|
+
"Custom API Call": "Custom API Call",
|
|
16
|
+
"Create a new contact.": "Create a new contact.",
|
|
17
|
+
"Update an existing contact.": "Update an existing contact.",
|
|
18
|
+
"Add an existing contact to a campaign.": "Add an existing contact to a campaign.",
|
|
19
|
+
"Add an existing contact to a workflow.": "Add an existing contact to a workflow.",
|
|
20
|
+
"Add a new note to a contact.": "Add a new note to a contact.",
|
|
21
|
+
"Search for contacts with a search query.": "Search for contacts with a search query.",
|
|
22
|
+
"Create a new opportunity.": "Create a new opportunity.",
|
|
23
|
+
"Updates an existing opportunity.": "Updates an existing opportunity.",
|
|
24
|
+
"Create a new task.": "Create a new task.",
|
|
25
|
+
"Update a task.": "Update a task.",
|
|
26
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
27
|
+
"First Name": "First Name",
|
|
28
|
+
"Last Name": "Last Name",
|
|
29
|
+
"Email": "Email",
|
|
30
|
+
"Phone": "Phone",
|
|
31
|
+
"Company Name": "Company Name",
|
|
32
|
+
"Website": "Website",
|
|
33
|
+
"Tags": "Tags",
|
|
34
|
+
"Source": "Source",
|
|
35
|
+
"Country": "Country",
|
|
36
|
+
"City": "City",
|
|
37
|
+
"State": "State",
|
|
38
|
+
"Address": "Address",
|
|
39
|
+
"Postal Code": "Postal Code",
|
|
40
|
+
"Time Zone": "Time Zone",
|
|
41
|
+
"Contact ID": "Contact ID",
|
|
42
|
+
"Contact": "Contact",
|
|
43
|
+
"Campaign": "Campaign",
|
|
44
|
+
"Workflow": "Workflow",
|
|
45
|
+
"Note": "Note",
|
|
46
|
+
"User": "User",
|
|
47
|
+
"Search Query": "Search Query",
|
|
48
|
+
"Pipeline": "Pipeline",
|
|
49
|
+
"Stage": "Stage",
|
|
50
|
+
"Title": "Title",
|
|
51
|
+
"Status": "Status",
|
|
52
|
+
"Assigned To": "Assigned To",
|
|
53
|
+
"Monetary Value": "Monetary Value",
|
|
54
|
+
"Opportunity": "Opportunity",
|
|
55
|
+
"Due Date": "Due Date",
|
|
56
|
+
"Description": "Description",
|
|
57
|
+
"Completed": "Completed",
|
|
58
|
+
"Task": "Task",
|
|
59
|
+
"Method": "Method",
|
|
60
|
+
"Headers": "Headers",
|
|
61
|
+
"Query Parameters": "Query Parameters",
|
|
62
|
+
"Body": "Body",
|
|
63
|
+
"No Error on Failure": "No Error on Failure",
|
|
64
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
65
|
+
"When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.": "When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.",
|
|
66
|
+
"The ID of the contact.": "The ID of the contact.",
|
|
67
|
+
"The contact to use.": "The contact to use.",
|
|
68
|
+
"The value you want to search for.": "The value you want to search for.",
|
|
69
|
+
"The ID of the pipeline to use.": "The ID of the pipeline to use.",
|
|
70
|
+
"The stage of the pipeline to use.": "The stage of the pipeline to use.",
|
|
71
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
72
|
+
"GET": "GET",
|
|
73
|
+
"POST": "POST",
|
|
74
|
+
"PATCH": "PATCH",
|
|
75
|
+
"PUT": "PUT",
|
|
76
|
+
"DELETE": "DELETE",
|
|
77
|
+
"HEAD": "HEAD",
|
|
78
|
+
"New Contact": "New Contact",
|
|
79
|
+
"Contact Created or Updated": "Contact Created or Updated",
|
|
80
|
+
"New Form Submission": "New Form Submission",
|
|
81
|
+
"New Opportunity": "New Opportunity",
|
|
82
|
+
"Trigger when a new contact is added.": "Trigger when a new contact is added.",
|
|
83
|
+
"Trigger when a contact is created or updated.": "Trigger when a contact is created or updated.",
|
|
84
|
+
"Trigger when a form is submitted.": "Trigger when a form is submitted.",
|
|
85
|
+
"Trigger when a new opportunity is added.": "Trigger when a new opportunity is added.",
|
|
86
|
+
"Form": "Form",
|
|
87
|
+
"The form you want to use.": "The form you want to use."
|
|
88
|
+
}
|
package/src/i18n/id.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"LeadConnector": "LeadConnector",
|
|
3
|
+
"Lead Connector - Go High Level": "Lead Connector - Go High Level",
|
|
4
|
+
"\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - ": "\n1. Go to the [Marketplace](https://marketplace.gohighlevel.com/) and sign up for a developer account.\n2. Navigate to **My Apps** and click on **Create App**.\n3. Provide app name.Then select **Private** as App Type, **Sub-Account** as Distribution Type. Click **Create App** Button.\n4. Add following scopes.\n - campaigns.readonly\n - contacts.write\n - contacts.readonly\n - locations.readonly\n - locations/tags.readonly\n - locations/tags.write\n - opportunities.readonly\n - opportunities.write\n - users.readonly\n - workflows.readonly\n - forms.readonly\n5. Add redirect URLs.\n6. Create new Client key with valid name.Copy Client ID and Client Secret.\n",
|
|
5
|
+
"Create Contact": "Create Contact",
|
|
6
|
+
"Update Contact": "Update Contact",
|
|
7
|
+
"Add Contact to Campaign": "Add Contact to Campaign",
|
|
8
|
+
"Add Contact to Workflow": "Add Contact to Workflow",
|
|
9
|
+
"Add Note to Contact": "Add Note to Contact",
|
|
10
|
+
"Search Contacts": "Search Contacts",
|
|
11
|
+
"Create Opportunity": "Create Opportunity",
|
|
12
|
+
"Update Opportunity": "Update Opportunity",
|
|
13
|
+
"Create Task": "Create Task",
|
|
14
|
+
"Update Task": "Update Task",
|
|
15
|
+
"Custom API Call": "Custom API Call",
|
|
16
|
+
"Create a new contact.": "Create a new contact.",
|
|
17
|
+
"Update an existing contact.": "Update an existing contact.",
|
|
18
|
+
"Add an existing contact to a campaign.": "Add an existing contact to a campaign.",
|
|
19
|
+
"Add an existing contact to a workflow.": "Add an existing contact to a workflow.",
|
|
20
|
+
"Add a new note to a contact.": "Add a new note to a contact.",
|
|
21
|
+
"Search for contacts with a search query.": "Search for contacts with a search query.",
|
|
22
|
+
"Create a new opportunity.": "Create a new opportunity.",
|
|
23
|
+
"Updates an existing opportunity.": "Updates an existing opportunity.",
|
|
24
|
+
"Create a new task.": "Create a new task.",
|
|
25
|
+
"Update a task.": "Update a task.",
|
|
26
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
27
|
+
"First Name": "First Name",
|
|
28
|
+
"Last Name": "Last Name",
|
|
29
|
+
"Email": "Email",
|
|
30
|
+
"Phone": "Phone",
|
|
31
|
+
"Company Name": "Company Name",
|
|
32
|
+
"Website": "Website",
|
|
33
|
+
"Tags": "Tags",
|
|
34
|
+
"Source": "Source",
|
|
35
|
+
"Country": "Country",
|
|
36
|
+
"City": "City",
|
|
37
|
+
"State": "State",
|
|
38
|
+
"Address": "Address",
|
|
39
|
+
"Postal Code": "Postal Code",
|
|
40
|
+
"Time Zone": "Time Zone",
|
|
41
|
+
"Contact ID": "Contact ID",
|
|
42
|
+
"Contact": "Contact",
|
|
43
|
+
"Campaign": "Campaign",
|
|
44
|
+
"Workflow": "Workflow",
|
|
45
|
+
"Note": "Note",
|
|
46
|
+
"User": "User",
|
|
47
|
+
"Search Query": "Search Query",
|
|
48
|
+
"Pipeline": "Pipeline",
|
|
49
|
+
"Stage": "Stage",
|
|
50
|
+
"Title": "Title",
|
|
51
|
+
"Status": "Status",
|
|
52
|
+
"Assigned To": "Assigned To",
|
|
53
|
+
"Monetary Value": "Monetary Value",
|
|
54
|
+
"Opportunity": "Opportunity",
|
|
55
|
+
"Due Date": "Due Date",
|
|
56
|
+
"Description": "Description",
|
|
57
|
+
"Completed": "Completed",
|
|
58
|
+
"Task": "Task",
|
|
59
|
+
"Method": "Method",
|
|
60
|
+
"Headers": "Headers",
|
|
61
|
+
"Query Parameters": "Query Parameters",
|
|
62
|
+
"Body": "Body",
|
|
63
|
+
"No Error on Failure": "No Error on Failure",
|
|
64
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
65
|
+
"When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.": "When using a dynamic value, make sure to use the ISO-2 country code, and not the country name.",
|
|
66
|
+
"The ID of the contact.": "The ID of the contact.",
|
|
67
|
+
"The contact to use.": "The contact to use.",
|
|
68
|
+
"The value you want to search for.": "The value you want to search for.",
|
|
69
|
+
"The ID of the pipeline to use.": "The ID of the pipeline to use.",
|
|
70
|
+
"The stage of the pipeline to use.": "The stage of the pipeline to use.",
|
|
71
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
72
|
+
"GET": "GET",
|
|
73
|
+
"POST": "POST",
|
|
74
|
+
"PATCH": "PATCH",
|
|
75
|
+
"PUT": "PUT",
|
|
76
|
+
"DELETE": "DELETE",
|
|
77
|
+
"HEAD": "HEAD",
|
|
78
|
+
"New Contact": "New Contact",
|
|
79
|
+
"Contact Created or Updated": "Contact Created or Updated",
|
|
80
|
+
"New Form Submission": "New Form Submission",
|
|
81
|
+
"New Opportunity": "New Opportunity",
|
|
82
|
+
"Trigger when a new contact is added.": "Trigger when a new contact is added.",
|
|
83
|
+
"Trigger when a contact is created or updated.": "Trigger when a contact is created or updated.",
|
|
84
|
+
"Trigger when a form is submitted.": "Trigger when a form is submitted.",
|
|
85
|
+
"Trigger when a new opportunity is added.": "Trigger when a new opportunity is added.",
|
|
86
|
+
"Form": "Form",
|
|
87
|
+
"The form you want to use.": "The form you want to use."
|
|
88
|
+
}
|