@guayaba/workflow-piece-gmail 0.12.3
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/.babelrc +3 -0
- package/.eslintrc.json +37 -0
- package/README.md +5 -0
- package/assets/logo.png +0 -0
- package/package.json +31 -0
- package/src/i18n/ca.json +63 -0
- package/src/i18n/de.json +129 -0
- package/src/i18n/es.json +129 -0
- package/src/i18n/fr.json +129 -0
- package/src/i18n/hi.json +63 -0
- package/src/i18n/id.json +63 -0
- package/src/i18n/ja.json +129 -0
- package/src/i18n/nl.json +129 -0
- package/src/i18n/pt.json +129 -0
- package/src/i18n/ru.json +63 -0
- package/src/i18n/translation.json +129 -0
- package/src/i18n/vi.json +63 -0
- package/src/i18n/zh.json +129 -0
- package/src/index.ts +69 -0
- package/src/lib/actions/create-draft-reply-action.ts +306 -0
- package/src/lib/actions/get-mail-action.ts +44 -0
- package/src/lib/actions/get-thread-action.ts +39 -0
- package/src/lib/actions/reply-to-email-action.ts +220 -0
- package/src/lib/actions/request-approval-in-email.ts +194 -0
- package/src/lib/actions/search-email-action.ts +211 -0
- package/src/lib/actions/send-email-action.ts +205 -0
- package/src/lib/auth.ts +116 -0
- package/src/lib/common/data.ts +268 -0
- package/src/lib/common/models.ts +91 -0
- package/src/lib/common/props.ts +256 -0
- package/src/lib/triggers/new-attachment.ts +198 -0
- package/src/lib/triggers/new-conversation.ts +413 -0
- package/src/lib/triggers/new-email.ts +167 -0
- package/src/lib/triggers/new-label.ts +77 -0
- package/src/lib/triggers/new-labeled-email.ts +192 -0
- package/tsconfig.json +16 -0
- package/tsconfig.lib.json +15 -0
package/.babelrc
ADDED
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": [
|
|
3
|
+
"../../../../.eslintrc.json"
|
|
4
|
+
],
|
|
5
|
+
"ignorePatterns": [
|
|
6
|
+
"!**/*"
|
|
7
|
+
],
|
|
8
|
+
"overrides": [
|
|
9
|
+
{
|
|
10
|
+
"files": [
|
|
11
|
+
"*.ts",
|
|
12
|
+
"*.tsx",
|
|
13
|
+
"*.js",
|
|
14
|
+
"*.jsx"
|
|
15
|
+
],
|
|
16
|
+
"rules": {},
|
|
17
|
+
"extends": [
|
|
18
|
+
"plugin:prettier/recommended"
|
|
19
|
+
],
|
|
20
|
+
"plugins": ["prettier"]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"files": [
|
|
24
|
+
"*.ts",
|
|
25
|
+
"*.tsx"
|
|
26
|
+
],
|
|
27
|
+
"rules": {}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"files": [
|
|
31
|
+
"*.js",
|
|
32
|
+
"*.jsx"
|
|
33
|
+
],
|
|
34
|
+
"rules": {}
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
package/README.md
ADDED
package/assets/logo.png
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@guayaba/workflow-piece-gmail",
|
|
3
|
+
"version": "0.12.3",
|
|
4
|
+
"main": "./dist/src/index.js",
|
|
5
|
+
"types": "./dist/src/index.d.ts",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@guayaba/workflows-common": "workspace:*",
|
|
8
|
+
"@guayaba/workflows-framework": "workspace:*",
|
|
9
|
+
"@guayaba/workflows-shared": "workspace:*",
|
|
10
|
+
"dayjs": "1.11.9",
|
|
11
|
+
"googleapis": "129.0.0",
|
|
12
|
+
"googleapis-common": "7.2.0",
|
|
13
|
+
"mailparser": "3.9.3",
|
|
14
|
+
"mime-types": "2.1.35",
|
|
15
|
+
"nodemailer": "8.0.5",
|
|
16
|
+
"tslib": "2.6.2"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -p tsconfig.lib.json && cp package.json dist/",
|
|
20
|
+
"lint": "eslint 'src/**/*.ts'"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/mime-types": "2.1.1",
|
|
24
|
+
"@types/mailparser": "3.4.6",
|
|
25
|
+
"@types/nodemailer": "7.0.11"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"registry": "https://registry.npmjs.org",
|
|
29
|
+
"access": "public"
|
|
30
|
+
}
|
|
31
|
+
}
|
package/src/i18n/ca.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Gmail": "Gmail",
|
|
3
|
+
"Email service by Google": "Email service by Google",
|
|
4
|
+
"Send Email": "Send Email",
|
|
5
|
+
"Custom API Call": "Custom API Call",
|
|
6
|
+
"Send an email through a Gmail account": "Send an email through a Gmail account",
|
|
7
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
8
|
+
"Receiver Email (To)": "Receiver Email (To)",
|
|
9
|
+
"CC Email": "CC Email",
|
|
10
|
+
"BCC Email": "BCC Email",
|
|
11
|
+
"Subject": "Subject",
|
|
12
|
+
"Body Type": "Body Type",
|
|
13
|
+
"Body": "Body",
|
|
14
|
+
"Reply-To Email": "Reply-To Email",
|
|
15
|
+
"Sender Name": "Sender Name",
|
|
16
|
+
"Sender Email": "Sender Email",
|
|
17
|
+
"Attachment": "Attachment",
|
|
18
|
+
"Attachment Name": "Attachment Name",
|
|
19
|
+
"In reply to": "In reply to",
|
|
20
|
+
"Create draft": "Create draft",
|
|
21
|
+
"Method": "Method",
|
|
22
|
+
"Headers": "Headers",
|
|
23
|
+
"Query Parameters": "Query Parameters",
|
|
24
|
+
"No Error on Failure": "No Error on Failure",
|
|
25
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
26
|
+
"Body for the email you want to send": "Body for the email you want to send",
|
|
27
|
+
"Email address to set as the \"Reply-To\" header": "Email address to set as the \"Reply-To\" header",
|
|
28
|
+
"The address must be listed in your GMail account's settings": "The address must be listed in your GMail account's settings",
|
|
29
|
+
"File to attach to the email you want to send": "File to attach to the email you want to send",
|
|
30
|
+
"In case you want to change the name of the attachment": "In case you want to change the name of the attachment",
|
|
31
|
+
"Reply to this Message-ID": "Reply to this Message-ID",
|
|
32
|
+
"Create draft without sending the actual email": "Create draft without sending the actual email",
|
|
33
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
34
|
+
"plain text": "plain text",
|
|
35
|
+
"html": "html",
|
|
36
|
+
"GET": "GET",
|
|
37
|
+
"POST": "POST",
|
|
38
|
+
"PATCH": "PATCH",
|
|
39
|
+
"PUT": "PUT",
|
|
40
|
+
"DELETE": "DELETE",
|
|
41
|
+
"HEAD": "HEAD",
|
|
42
|
+
"New Email": "New Email",
|
|
43
|
+
"New Labeled Email": "New Labeled Email",
|
|
44
|
+
"Triggers when new mail is found in your Gmail inbox": "Triggers when new mail is found in your Gmail inbox",
|
|
45
|
+
"Triggers when a label is added to an email": "Triggers when a label is added to an email",
|
|
46
|
+
"Email subject": "Email subject",
|
|
47
|
+
"Email sender": "Email sender",
|
|
48
|
+
"Email recipient": "Email recipient",
|
|
49
|
+
"Label": "Label",
|
|
50
|
+
"Category": "Category",
|
|
51
|
+
"The email subject": "The email subject",
|
|
52
|
+
"Optional filteration, leave empty to filter based on the email sender": "Optional filteration, leave empty to filter based on the email sender",
|
|
53
|
+
"Optional filteration, leave empty to filter based on the email recipient": "Optional filteration, leave empty to filter based on the email recipient",
|
|
54
|
+
"Optional filteration, leave unselected to filter based on the email label": "Optional filteration, leave unselected to filter based on the email label",
|
|
55
|
+
"Optional filteration, leave unselected to filter based on the email category": "Optional filteration, leave unselected to filter based on the email category",
|
|
56
|
+
"Primary": "Primary",
|
|
57
|
+
"Social": "Social",
|
|
58
|
+
"Promotions": "Promotions",
|
|
59
|
+
"Updates": "Updates",
|
|
60
|
+
"Forums": "Forums",
|
|
61
|
+
"Reservations": "Reservations",
|
|
62
|
+
"Purchases": "Purchases"
|
|
63
|
+
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Email service by Google": "E-Mail-Dienst von Google",
|
|
3
|
+
"Send Email": "E-Mail senden",
|
|
4
|
+
"Request Approval in Email": "Genehmigung in E-Mail anfordern",
|
|
5
|
+
"Reply to Email": "Auf E-Mail antworten",
|
|
6
|
+
"Create Draft Reply": "Entwurf Antwort erstellen",
|
|
7
|
+
"Get Email": "E-Mail abrufen",
|
|
8
|
+
"Find Email": "E-Mail finden",
|
|
9
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
10
|
+
"Send an email through a Gmail account": "Senden Sie eine E-Mail über ein Gmail-Konto",
|
|
11
|
+
"Send approval request email and then wait until the email is approved or disapproved": "Senden Sie eine Bestätigungs-E-Mail und warten Sie, bis die E-Mail genehmigt oder abgelehnt wurde",
|
|
12
|
+
"Reply to an existing email.": "Auf eine bestehende E-Mail antworten.",
|
|
13
|
+
"Creates a draft reply to an existing email.": "Erstellt einen Entwurf einer Antwort auf eine bestehende E-Mail.",
|
|
14
|
+
"Get an email via Id.": "Erhalte eine E-Mail über Id.",
|
|
15
|
+
"Find emails using advanced search criteria. At least one search filter (from, to, subject, label, category, date, content, or attachment) is required.": "Suchen Sie E-Mails mit erweiterten Suchkriterien. Es wird mindestens ein Suchfilter (aus Themen, Beschriftung, Kategorie, Datum, Inhalt oder Anhang benötigt) benötigt.",
|
|
16
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
17
|
+
"Receiver Email (To)": "Empfänger E-Mail (An)",
|
|
18
|
+
"CC Email": "CC E-Mail",
|
|
19
|
+
"BCC Email": "BCC E-Mail",
|
|
20
|
+
"Subject": "Betreff",
|
|
21
|
+
"Body Type": "Körpertyp",
|
|
22
|
+
"Body": "Körper",
|
|
23
|
+
"Reply-To Email": "Antwort-An E-Mail",
|
|
24
|
+
"Sender Name": "Absendername",
|
|
25
|
+
"Sender Email": "Absender-E-Mail",
|
|
26
|
+
"Attachments": "Anhänge",
|
|
27
|
+
"In reply to": "In Antwort auf",
|
|
28
|
+
"Create draft": "Entwurf erstellen",
|
|
29
|
+
"Message": "Nachricht",
|
|
30
|
+
"Reply Type": "Antworttyp",
|
|
31
|
+
"Reply Body": "Antwort-Körper",
|
|
32
|
+
"Attachment": "Anhang",
|
|
33
|
+
"Attachment Name": "Anhangname",
|
|
34
|
+
"Draft Reply Body": "Entwurf Antwortkörper",
|
|
35
|
+
"Include Original Message": "Originalnachricht einbeziehen",
|
|
36
|
+
"Message ID": "Nachrichten-ID",
|
|
37
|
+
"Email sender": "E-Mail Absender",
|
|
38
|
+
"Email recipient": "E-Mail-Empfänger",
|
|
39
|
+
"Email subject": "E-Mail-Betreff",
|
|
40
|
+
"Email Content": "Email Content",
|
|
41
|
+
"Has Attachment": "Hat Anhang",
|
|
42
|
+
"Label": "Label",
|
|
43
|
+
"Category": "Kategorie",
|
|
44
|
+
"After Date": "Nach Datum",
|
|
45
|
+
"Before Date": "Vor Datum",
|
|
46
|
+
"Include Spam & Trash": "Spam & Papierkorb einschließen",
|
|
47
|
+
"Max Results": "Maximale Ergebnisse",
|
|
48
|
+
"Method": "Methode",
|
|
49
|
+
"Headers": "Kopfzeilen",
|
|
50
|
+
"Query Parameters": "Abfrageparameter",
|
|
51
|
+
"Response is Binary ?": "Antwort ist binär?",
|
|
52
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
53
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
54
|
+
"Follow redirects": "Weiterleitungen folgen",
|
|
55
|
+
"Body for the email you want to send": "Body für die E-Mail, die Sie senden möchten",
|
|
56
|
+
"Email address to set as the \"Reply-To\" header": "E-Mail-Adresse, die als \"Antwort-An\"-Header festgelegt wird",
|
|
57
|
+
"The address must be listed in your GMail account's settings": "Die Adresse muss in den Einstellungen Ihres GMail-Kontos aufgelistet werden",
|
|
58
|
+
"Reply to this Message-ID": "Auf diese Nachrichten-ID antworten",
|
|
59
|
+
"Create draft without sending the actual email": "Erstellen Sie einen Entwurf, ohne die eigentliche E-Mail zu senden",
|
|
60
|
+
"The email address of the recipient who will receive the approval request.": "Die E-Mail-Adresse des Empfängers, der die Genehmigungsanfrage erhalten wird.",
|
|
61
|
+
"The email addresses of the recipients who will receive a carbon copy of the approval request.": "Die E-Mail-Adressen der Empfänger, die eine Carbon-Kopie der Genehmigungsanfrage erhalten.",
|
|
62
|
+
"The email addresses of the recipients who will receive a blind carbon copy of the approval request.": "Die E-Mail-Adressen der Empfänger, die eine blinde Kohlenstoff-Kopie der Genehmigungsanfrage erhalten.",
|
|
63
|
+
"The subject of the approval request email.": "Der Betreff der Bestätigungs-E-Mail.",
|
|
64
|
+
"Select a message from the list or enter a message ID manually.": "Wählen Sie eine Nachricht aus der Liste aus oder geben Sie eine Nachrichten-ID manuell ein.",
|
|
65
|
+
"Choose whether to reply to sender only or to all recipients": "Wählen Sie, ob nur an den Absender oder an alle Empfänger geantwortet werden soll",
|
|
66
|
+
"Your reply message content": "Inhalt Ihrer Antwort",
|
|
67
|
+
"Optional sender name to display": "Optionaler Absendername",
|
|
68
|
+
"Optional file to attach to your reply": "Optionale Datei, die an Ihre Antwort angehängt wird",
|
|
69
|
+
"Custom name for the attachment": "Benutzerdefinierter Name für den Anhang",
|
|
70
|
+
"Your draft reply message content": "Inhalt Ihrer Antwortentwürfe",
|
|
71
|
+
"Include the original message content in the draft reply": "Den ursprünglichen Inhalt der Nachricht in den Entwurf der Antwort einfügen",
|
|
72
|
+
"Optional file to attach to your draft reply": "Optionale Datei, die an Ihren Antwortentwurf angehängt wird",
|
|
73
|
+
"The messageId of the mail to read.": "Die MessageId der zu lesenden Mail.",
|
|
74
|
+
"Optional filteration, leave empty to filter based on the email sender": "Optionale Filterung, leer lassen, um nach dem E-Mail-Absender zu filtern",
|
|
75
|
+
"Optional filteration, leave empty to filter based on the email recipient": "Optionale Filterung, leer lassen, um nach dem E-Mail-Empfänger zu filtern",
|
|
76
|
+
"The email subject": "Der E-Mail-Betreff",
|
|
77
|
+
"Search for specific text within email body": "Suche nach spezifischem Text im E-Mail-Text",
|
|
78
|
+
"Only find emails with attachments": "Nur E-Mails mit Anhängen finden",
|
|
79
|
+
"Search for emails with specific attachment filename": "Nach E-Mails mit spezifischem Dateinamen suchen",
|
|
80
|
+
"Optional filteration, leave unselected to filter based on the email label": "Optionale Filterung, lassen Sie nicht ausgewählt, um nach der E-Mail-Bezeichnung zu filtern",
|
|
81
|
+
"Optional filteration, leave unselected to filter based on the email category": "Optionale Filterung, lassen Sie nicht ausgewählt um nach der E-Mail-Kategorie zu filtern",
|
|
82
|
+
"Find emails sent after this date": "Nach diesem Datum gesendete E-Mails finden",
|
|
83
|
+
"Find emails sent before this date": "Vor diesem Datum gesendete E-Mails finden",
|
|
84
|
+
"Include emails from Spam and Trash folders in search results": "E-Mails aus Spam und Papierkorb in Suchergebnisse einbeziehen",
|
|
85
|
+
"Maximum number of emails to return (1-500)": "Maximale Anzahl der zurückzusendenden E-Mails (1-500)",
|
|
86
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
87
|
+
"Enable for files like PDFs, images, etc.": "Aktivieren für Dateien wie PDFs, Bilder usw.",
|
|
88
|
+
"plain text": "schlichter Text",
|
|
89
|
+
"html": "html",
|
|
90
|
+
"Reply (to sender only)": "Antwort (nur an Absender)",
|
|
91
|
+
"Reply All (to all recipients)": "Alle antworten (an alle Empfänger)",
|
|
92
|
+
"Plain text": "Einfacher Text",
|
|
93
|
+
"HTML": "HTML",
|
|
94
|
+
"Primary": "Primär",
|
|
95
|
+
"Social": "Soziale",
|
|
96
|
+
"Promotions": "Promotionen",
|
|
97
|
+
"Updates": "Updates",
|
|
98
|
+
"Forums": "Foren",
|
|
99
|
+
"Reservations": "Reservierungen",
|
|
100
|
+
"Purchases": "Einkäufe",
|
|
101
|
+
"GET": "ERHALTEN",
|
|
102
|
+
"POST": "POST",
|
|
103
|
+
"PATCH": "PATCH",
|
|
104
|
+
"PUT": "PUT",
|
|
105
|
+
"DELETE": "LÖSCHEN",
|
|
106
|
+
"HEAD": "HEAD",
|
|
107
|
+
"None": "Keine",
|
|
108
|
+
"JSON": "JSON",
|
|
109
|
+
"Form Data": "Formulardaten",
|
|
110
|
+
"Raw": "Rohe",
|
|
111
|
+
"New Email": "Neue E-Mail",
|
|
112
|
+
"New Labeled Email": "Neue etikettierte E-Mail",
|
|
113
|
+
"New Attachment": "Neuer Anhang",
|
|
114
|
+
"New Label": "Neue Bezeichnung",
|
|
115
|
+
"Triggers when new mail is found in your Gmail inbox": "Auslöser wenn neue Nachrichten in Ihrem Google Mail-Posteingang gefunden werden",
|
|
116
|
+
"Triggers when a label is added to an email": "Löst aus, wenn ein Label zu einer E-Mail hinzugefügt wird",
|
|
117
|
+
"Triggers when an email with an attachment arrives.": "Löst aus, wenn eine E-Mail mit einem Anhang eintrifft.",
|
|
118
|
+
"Triggers when a new label is created.": "Wird ausgelöst, wenn ein neues Label erstellt wird.",
|
|
119
|
+
"From": "Von",
|
|
120
|
+
"To": "An",
|
|
121
|
+
"Subject Contains": "Betreff enthält",
|
|
122
|
+
"File Extension": "Dateiendung",
|
|
123
|
+
"Filter by sender email.": "Nach Absender-E-Mail filtern.",
|
|
124
|
+
"Filter by recipient email.": "Nach Empfänger-E-Mail filtern.",
|
|
125
|
+
"Only trigger for emails containing this text in the subject.": "Trigger nur für E-Mails, die diesen Text im Betreff enthalten.",
|
|
126
|
+
"Filter by Gmail label.": "Nach Google Mail-Label filtern.",
|
|
127
|
+
"Filter by Gmail category.": "Nach Google Mail-Kategorie filtern.",
|
|
128
|
+
"Only trigger for attachments with this file extension (e.g., pdf, jpg, docx).": "Trigger nur für Anhänge mit dieser Dateiendung (z.B. pdf, jpg, docx)."
|
|
129
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Email service by Google": "Servicio de correo por Google",
|
|
3
|
+
"Send Email": "Enviar Email",
|
|
4
|
+
"Request Approval in Email": "Solicitud de aprobación en el correo electrónico",
|
|
5
|
+
"Reply to Email": "Responder al email",
|
|
6
|
+
"Create Draft Reply": "Crear respuesta borrador",
|
|
7
|
+
"Get Email": "Obtener Email",
|
|
8
|
+
"Find Email": "Buscar Email",
|
|
9
|
+
"Custom API Call": "Llamada API personalizada",
|
|
10
|
+
"Send an email through a Gmail account": "Enviar un correo electrónico a través de una cuenta de Gmail",
|
|
11
|
+
"Send approval request email and then wait until the email is approved or disapproved": "Enviar correo electrónico de solicitud de aprobación y luego esperar hasta que el correo electrónico sea aprobado o desaprobado",
|
|
12
|
+
"Reply to an existing email.": "Responder a un correo electrónico existente.",
|
|
13
|
+
"Creates a draft reply to an existing email.": "Crea un borrador de respuesta a un correo electrónico existente.",
|
|
14
|
+
"Get an email via Id.": "Obtener un correo electrónico a través de Id.",
|
|
15
|
+
"Find emails using advanced search criteria. At least one search filter (from, to, subject, label, category, date, content, or attachment) is required.": "Encontrar correos electrónicos usando criterios de búsqueda avanzados. Se requiere al menos un filtro de búsqueda (de, a, tema, etiqueta, categoría, fecha, contenido o adjunto).",
|
|
16
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
17
|
+
"Receiver Email (To)": "Email del receptor (Para)",
|
|
18
|
+
"CC Email": "Email CC",
|
|
19
|
+
"BCC Email": "Correo BCC",
|
|
20
|
+
"Subject": "Asunto",
|
|
21
|
+
"Body Type": "Tipo de cuerpo",
|
|
22
|
+
"Body": "Cuerpo",
|
|
23
|
+
"Reply-To Email": "Responder a Email",
|
|
24
|
+
"Sender Name": "Nombre del remitente",
|
|
25
|
+
"Sender Email": "Email del remitente",
|
|
26
|
+
"Attachments": "Adjuntos",
|
|
27
|
+
"In reply to": "En respuesta a",
|
|
28
|
+
"Create draft": "Crear borrador",
|
|
29
|
+
"Message": "Mensaje",
|
|
30
|
+
"Reply Type": "Tipo de respuesta",
|
|
31
|
+
"Reply Body": "Responder cuerpo",
|
|
32
|
+
"Attachment": "Adjunto",
|
|
33
|
+
"Attachment Name": "Nombre del archivo adjunto",
|
|
34
|
+
"Draft Reply Body": "Borra el cuerpo de respuesta",
|
|
35
|
+
"Include Original Message": "Incluye mensaje original",
|
|
36
|
+
"Message ID": "ID del mensaje",
|
|
37
|
+
"Email sender": "Remitente de email",
|
|
38
|
+
"Email recipient": "Destinatario de email",
|
|
39
|
+
"Email subject": "Asunto del email",
|
|
40
|
+
"Email Content": "Email Content",
|
|
41
|
+
"Has Attachment": "Tiene adjunto",
|
|
42
|
+
"Label": "Etiqueta",
|
|
43
|
+
"Category": "Categoría",
|
|
44
|
+
"After Date": "Después de la fecha",
|
|
45
|
+
"Before Date": "Antes de la fecha",
|
|
46
|
+
"Include Spam & Trash": "Incluye spam y papelera",
|
|
47
|
+
"Max Results": "Resultados máximos",
|
|
48
|
+
"Method": "Método",
|
|
49
|
+
"Headers": "Encabezados",
|
|
50
|
+
"Query Parameters": "Parámetros de consulta",
|
|
51
|
+
"Response is Binary ?": "¿Respuesta es binaria?",
|
|
52
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
53
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
54
|
+
"Follow redirects": "Seguir redirecciones",
|
|
55
|
+
"Body for the email you want to send": "Cuerpo para el correo electrónico que desea enviar",
|
|
56
|
+
"Email address to set as the \"Reply-To\" header": "Dirección de correo electrónico a establecer como la cabecera \"Responder a\"",
|
|
57
|
+
"The address must be listed in your GMail account's settings": "La dirección debe aparecer en la configuración de su cuenta de GMail",
|
|
58
|
+
"Reply to this Message-ID": "Responder a este mensaje-ID",
|
|
59
|
+
"Create draft without sending the actual email": "Crear borrador sin enviar el correo electrónico actual",
|
|
60
|
+
"The email address of the recipient who will receive the approval request.": "La dirección de correo electrónico del destinatario que recibirá la solicitud de aprobación.",
|
|
61
|
+
"The email addresses of the recipients who will receive a carbon copy of the approval request.": "Las direcciones de correo electrónico de los destinatarios que recibirán una copia de carbono de la solicitud de aprobación.",
|
|
62
|
+
"The email addresses of the recipients who will receive a blind carbon copy of the approval request.": "Las direcciones de correo electrónico de los destinatarios que recibirán una copia ciega de carbono de la solicitud de aprobación.",
|
|
63
|
+
"The subject of the approval request email.": "El asunto del correo electrónico de solicitud de aprobación.",
|
|
64
|
+
"Select a message from the list or enter a message ID manually.": "Seleccione un mensaje de la lista o ingrese un ID de mensaje manualmente.",
|
|
65
|
+
"Choose whether to reply to sender only or to all recipients": "Elija si responder sólo al remitente o a todos los destinatarios",
|
|
66
|
+
"Your reply message content": "Contenido del mensaje de respuesta",
|
|
67
|
+
"Optional sender name to display": "Nombre opcional del remitente para mostrar",
|
|
68
|
+
"Optional file to attach to your reply": "Archivo opcional para adjuntar a tu respuesta",
|
|
69
|
+
"Custom name for the attachment": "Nombre personalizado para el archivo adjunto",
|
|
70
|
+
"Your draft reply message content": "Contenido del borrador del mensaje de respuesta",
|
|
71
|
+
"Include the original message content in the draft reply": "Incluye el contenido del mensaje original en el borrador de respuesta",
|
|
72
|
+
"Optional file to attach to your draft reply": "Archivo opcional para adjuntar a su borrador de respuesta",
|
|
73
|
+
"The messageId of the mail to read.": "El messageId del correo a leer.",
|
|
74
|
+
"Optional filteration, leave empty to filter based on the email sender": "Filtro opcional, dejar vacío para filtrar basado en el remitente de correo electrónico",
|
|
75
|
+
"Optional filteration, leave empty to filter based on the email recipient": "Filtro opcional, dejar vacío para filtrar basado en el destinatario del correo electrónico",
|
|
76
|
+
"The email subject": "El asunto del correo electrónico",
|
|
77
|
+
"Search for specific text within email body": "Buscar texto específico dentro del cuerpo del email",
|
|
78
|
+
"Only find emails with attachments": "Sólo encontrar correos con archivos adjuntos",
|
|
79
|
+
"Search for emails with specific attachment filename": "Buscar correos electrónicos con nombre de archivo adjunto específico",
|
|
80
|
+
"Optional filteration, leave unselected to filter based on the email label": "Filtro opcional, dejar sin seleccionar para filtrar basado en la etiqueta de correo electrónico",
|
|
81
|
+
"Optional filteration, leave unselected to filter based on the email category": "Filtro opcional, dejar sin seleccionar para filtrar basado en la categoría de correo electrónico",
|
|
82
|
+
"Find emails sent after this date": "Buscar correos electrónicos enviados después de esta fecha",
|
|
83
|
+
"Find emails sent before this date": "Buscar correos enviados antes de esta fecha",
|
|
84
|
+
"Include emails from Spam and Trash folders in search results": "Incluye mensajes de correo no deseado y papelera en los resultados de la búsqueda",
|
|
85
|
+
"Maximum number of emails to return (1-500)": "Número máximo de correos electrónicos a devolver (1-500)",
|
|
86
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
87
|
+
"Enable for files like PDFs, images, etc.": "Activar para archivos como PDFs, imágenes, etc.",
|
|
88
|
+
"plain text": "texto plano",
|
|
89
|
+
"html": "html",
|
|
90
|
+
"Reply (to sender only)": "Responder (sólo al remitente)",
|
|
91
|
+
"Reply All (to all recipients)": "Responder a todos (a todos los destinatarios)",
|
|
92
|
+
"Plain text": "Texto simple",
|
|
93
|
+
"HTML": "HTML",
|
|
94
|
+
"Primary": "Principal",
|
|
95
|
+
"Social": "Social",
|
|
96
|
+
"Promotions": "Promociones",
|
|
97
|
+
"Updates": "Actualizaciones",
|
|
98
|
+
"Forums": "Foros",
|
|
99
|
+
"Reservations": "Reservas",
|
|
100
|
+
"Purchases": "Compras",
|
|
101
|
+
"GET": "RECOGER",
|
|
102
|
+
"POST": "POST",
|
|
103
|
+
"PATCH": "PATCH",
|
|
104
|
+
"PUT": "PUT",
|
|
105
|
+
"DELETE": "BORRAR",
|
|
106
|
+
"HEAD": "LIMPIO",
|
|
107
|
+
"None": "Ninguna",
|
|
108
|
+
"JSON": "JSON",
|
|
109
|
+
"Form Data": "Datos de Formulario",
|
|
110
|
+
"Raw": "Rápido",
|
|
111
|
+
"New Email": "Nuevo Email",
|
|
112
|
+
"New Labeled Email": "Nuevo Email Etiquetado",
|
|
113
|
+
"New Attachment": "Nuevo adjunto",
|
|
114
|
+
"New Label": "Nueva etiqueta",
|
|
115
|
+
"Triggers when new mail is found in your Gmail inbox": "Dispara cuando se encuentra un nuevo correo en tu bandeja de entrada de Gmail",
|
|
116
|
+
"Triggers when a label is added to an email": "Dispara cuando se agrega una etiqueta a un correo electrónico",
|
|
117
|
+
"Triggers when an email with an attachment arrives.": "Se activa cuando llega un correo electrónico con un archivo adjunto.",
|
|
118
|
+
"Triggers when a new label is created.": "Dispara cuando se crea una nueva etiqueta.",
|
|
119
|
+
"From": "De",
|
|
120
|
+
"To": "A",
|
|
121
|
+
"Subject Contains": "El asunto contiene",
|
|
122
|
+
"File Extension": "Extensión de archivo",
|
|
123
|
+
"Filter by sender email.": "Filtrar por email del remitente.",
|
|
124
|
+
"Filter by recipient email.": "Filtrar por email del destinatario.",
|
|
125
|
+
"Only trigger for emails containing this text in the subject.": "Disparador sólo para correos electrónicos que contengan este texto en el tema.",
|
|
126
|
+
"Filter by Gmail label.": "Filtrar por etiqueta Gmail.",
|
|
127
|
+
"Filter by Gmail category.": "Filtrar por categoría de Gmail.",
|
|
128
|
+
"Only trigger for attachments with this file extension (e.g., pdf, jpg, docx).": "Sólo para archivos adjuntos con esta extensión de archivo (por ejemplo, pdf, jpg, docx)."
|
|
129
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Email service by Google": "Service de messagerie par Google",
|
|
3
|
+
"Send Email": "Envoyer un e-mail",
|
|
4
|
+
"Request Approval in Email": "Demande d'approbation dans l'e-mail",
|
|
5
|
+
"Reply to Email": "Répondre à l'e-mail",
|
|
6
|
+
"Create Draft Reply": "Créer un brouillon de réponse",
|
|
7
|
+
"Get Email": "Obtenir un e-mail",
|
|
8
|
+
"Find Email": "Trouver un e-mail",
|
|
9
|
+
"Custom API Call": "Appel API personnalisé",
|
|
10
|
+
"Send an email through a Gmail account": "Envoyer un email via un compte Gmail",
|
|
11
|
+
"Send approval request email and then wait until the email is approved or disapproved": "Envoyez un e-mail de demande d'approbation puis attendez que l'e-mail soit approuvé ou désapprouvé",
|
|
12
|
+
"Reply to an existing email.": "Répondre à un e-mail existant.",
|
|
13
|
+
"Creates a draft reply to an existing email.": "Crée une ébauche de réponse à un e-mail existant.",
|
|
14
|
+
"Get an email via Id.": "Recevez un e-mail via Id.",
|
|
15
|
+
"Find emails using advanced search criteria. At least one search filter (from, to, subject, label, category, date, content, or attachment) is required.": "Trouver des e-mails en utilisant des critères de recherche avancés. Au moins un filtre de recherche (à partir de : sujet, étiquette, catégorie, date, contenu ou pièce jointe) est requis.",
|
|
16
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un endpoint spécifique",
|
|
17
|
+
"Receiver Email (To)": "E-mail du destinataire (À)",
|
|
18
|
+
"CC Email": "E-mail CC",
|
|
19
|
+
"BCC Email": "E-mail BCC",
|
|
20
|
+
"Subject": "Sujet",
|
|
21
|
+
"Body Type": "Type de Corps",
|
|
22
|
+
"Body": "Corps",
|
|
23
|
+
"Reply-To Email": "E-mail répondre-à",
|
|
24
|
+
"Sender Name": "Nom de l'expéditeur",
|
|
25
|
+
"Sender Email": "E-mail de l'expéditeur",
|
|
26
|
+
"Attachments": "Fichiers joints",
|
|
27
|
+
"In reply to": "En réponse à",
|
|
28
|
+
"Create draft": "Créer un brouillon",
|
|
29
|
+
"Message": "Message",
|
|
30
|
+
"Reply Type": "Type de réponse",
|
|
31
|
+
"Reply Body": "Corps de la réponse",
|
|
32
|
+
"Attachment": "Pièce jointe",
|
|
33
|
+
"Attachment Name": "Nom de la pièce jointe",
|
|
34
|
+
"Draft Reply Body": "Corps du brouillon de réponse",
|
|
35
|
+
"Include Original Message": "Inclure le message original",
|
|
36
|
+
"Message ID": "ID du message",
|
|
37
|
+
"Email sender": "Expéditeur de l'e-mail",
|
|
38
|
+
"Email recipient": "Destinataire de l'e-mail",
|
|
39
|
+
"Email subject": "Sujet de l'e-mail",
|
|
40
|
+
"Email Content": "Email Content",
|
|
41
|
+
"Has Attachment": "A une pièce jointe",
|
|
42
|
+
"Label": "Libellé",
|
|
43
|
+
"Category": "Catégorie",
|
|
44
|
+
"After Date": "Après la date",
|
|
45
|
+
"Before Date": "Avant la date",
|
|
46
|
+
"Include Spam & Trash": "Inclure Spam & Corbeille",
|
|
47
|
+
"Max Results": "Nombre maximum de résultats",
|
|
48
|
+
"Method": "Méthode",
|
|
49
|
+
"Headers": "En-têtes",
|
|
50
|
+
"Query Parameters": "Paramètres de requête",
|
|
51
|
+
"Response is Binary ?": "La réponse est Binaire ?",
|
|
52
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
53
|
+
"Timeout (in seconds)": "Délai d'expiration (en secondes)",
|
|
54
|
+
"Follow redirects": "Suivre les redirections",
|
|
55
|
+
"Body for the email you want to send": "Corps de l'e-mail que vous souhaitez envoyer",
|
|
56
|
+
"Email address to set as the \"Reply-To\" header": "Adresse e-mail à définir comme en-tête de \"Répondre à\"",
|
|
57
|
+
"The address must be listed in your GMail account's settings": "L'adresse doit être listée dans les paramètres de votre compte Gmail",
|
|
58
|
+
"Reply to this Message-ID": "Répondre à cet ID de message",
|
|
59
|
+
"Create draft without sending the actual email": "Créer un brouillon sans envoyer l'e-mail actuel",
|
|
60
|
+
"The email address of the recipient who will receive the approval request.": "L'adresse e-mail du destinataire qui recevra la demande d'approbation.",
|
|
61
|
+
"The email addresses of the recipients who will receive a carbon copy of the approval request.": "Les adresses e-mail des récipiendaires qui recevront une copie carbone de la demande d'approbation.",
|
|
62
|
+
"The email addresses of the recipients who will receive a blind carbon copy of the approval request.": "Les adresses électroniques des récipiendaires qui recevront une copie carbone aveugle de la demande d'approbation.",
|
|
63
|
+
"The subject of the approval request email.": "Le sujet de l'e-mail de demande d'approbation.",
|
|
64
|
+
"Select a message from the list or enter a message ID manually.": "Sélectionnez un message dans la liste ou entrez un ID de message manuellement.",
|
|
65
|
+
"Choose whether to reply to sender only or to all recipients": "Choisissez s'il faut répondre à l'expéditeur seulement ou à tous les destinataires",
|
|
66
|
+
"Your reply message content": "Contenu de votre message de réponse",
|
|
67
|
+
"Optional sender name to display": "Nom de l'expéditeur facultatif à afficher",
|
|
68
|
+
"Optional file to attach to your reply": "Fichier facultatif à joindre à votre réponse",
|
|
69
|
+
"Custom name for the attachment": "Nom personnalisé de la pièce jointe",
|
|
70
|
+
"Your draft reply message content": "Contenu de votre message de réponse brouillon",
|
|
71
|
+
"Include the original message content in the draft reply": "Inclure le contenu du message original dans la réponse du brouillon",
|
|
72
|
+
"Optional file to attach to your draft reply": "Fichier facultatif à joindre à votre ébauche de réponse",
|
|
73
|
+
"The messageId of the mail to read.": "L'Id du message à lire.",
|
|
74
|
+
"Optional filteration, leave empty to filter based on the email sender": "Filtrage facultatif, laisser vide pour filtrer en fonction de l'expéditeur de l'e-mail",
|
|
75
|
+
"Optional filteration, leave empty to filter based on the email recipient": "Filtrage facultatif, laisser vide pour filtrer en fonction du destinataire de l'e-mail",
|
|
76
|
+
"The email subject": "Le sujet de l'e-mail",
|
|
77
|
+
"Search for specific text within email body": "Rechercher un texte spécifique dans le corps de l'e-mail",
|
|
78
|
+
"Only find emails with attachments": "Ne trouver que les e-mails avec des pièces jointes",
|
|
79
|
+
"Search for emails with specific attachment filename": "Rechercher des e-mails avec un nom de fichier spécifique",
|
|
80
|
+
"Optional filteration, leave unselected to filter based on the email label": "Filtrage optionnel, laisser non sélectionné pour filtrer sur la base du libellé de l'e-mail",
|
|
81
|
+
"Optional filteration, leave unselected to filter based on the email category": "Filtrage optionnel, laisser non sélectionné pour filtrer selon la catégorie d'email",
|
|
82
|
+
"Find emails sent after this date": "Trouver les e-mails envoyés après cette date",
|
|
83
|
+
"Find emails sent before this date": "Trouver les e-mails envoyés avant cette date",
|
|
84
|
+
"Include emails from Spam and Trash folders in search results": "Inclure les e-mails des dossiers Spam et Corbeille dans les résultats de recherche",
|
|
85
|
+
"Maximum number of emails to return (1-500)": "Nombre maximum d'emails à retourner (1-500)",
|
|
86
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
87
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
88
|
+
"plain text": "texte brut",
|
|
89
|
+
"html": "html",
|
|
90
|
+
"Reply (to sender only)": "Répondre (à l'expéditeur uniquement)",
|
|
91
|
+
"Reply All (to all recipients)": "Répondre à tous (à tous les destinataires)",
|
|
92
|
+
"Plain text": "Texte brut",
|
|
93
|
+
"HTML": "HTML",
|
|
94
|
+
"Primary": "Primaire",
|
|
95
|
+
"Social": "Réseaux sociaux",
|
|
96
|
+
"Promotions": "Promotions",
|
|
97
|
+
"Updates": "Mises à jour",
|
|
98
|
+
"Forums": "Forums",
|
|
99
|
+
"Reservations": "Réservations",
|
|
100
|
+
"Purchases": "Achats",
|
|
101
|
+
"GET": "GET",
|
|
102
|
+
"POST": "POST",
|
|
103
|
+
"PATCH": "PATCH",
|
|
104
|
+
"PUT": "PUT",
|
|
105
|
+
"DELETE": "DELETE",
|
|
106
|
+
"HEAD": "HEAD",
|
|
107
|
+
"None": "Aucun",
|
|
108
|
+
"JSON": "JSON",
|
|
109
|
+
"Form Data": "Données du formulaire",
|
|
110
|
+
"Raw": "Brut",
|
|
111
|
+
"New Email": "Nouvel e-mail",
|
|
112
|
+
"New Labeled Email": "Nouvel e-mail libellé",
|
|
113
|
+
"New Attachment": "Nouvelle pièce jointe",
|
|
114
|
+
"New Label": "Nouveau libellé",
|
|
115
|
+
"Triggers when new mail is found in your Gmail inbox": "Se déclenche quand un nouveau courrier est trouvé dans votre boîte de réception Gmail",
|
|
116
|
+
"Triggers when a label is added to an email": "Se déclenche quand un label est ajouté à un e-mail",
|
|
117
|
+
"Triggers when an email with an attachment arrives.": "Déclenche lorsqu'un email avec une pièce jointe arrive.",
|
|
118
|
+
"Triggers when a new label is created.": "Déclenche quand une nouvelle étiquette est créée.",
|
|
119
|
+
"From": "A partir de",
|
|
120
|
+
"To": "À",
|
|
121
|
+
"Subject Contains": "Le sujet contient",
|
|
122
|
+
"File Extension": "Extension de fichier",
|
|
123
|
+
"Filter by sender email.": "Filtrer par email de l'expéditeur.",
|
|
124
|
+
"Filter by recipient email.": "Filtrer par email du destinataire.",
|
|
125
|
+
"Only trigger for emails containing this text in the subject.": "Ne déclenche que pour les e-mails contenant ce texte dans le sujet.",
|
|
126
|
+
"Filter by Gmail label.": "Filtrer par étiquette Gmail.",
|
|
127
|
+
"Filter by Gmail category.": "Filtrer par catégorie Gmail.",
|
|
128
|
+
"Only trigger for attachments with this file extension (e.g., pdf, jpg, docx).": "Déclenche uniquement les pièces jointes avec cette extension de fichier (par exemple, pdf, jpg, docx)."
|
|
129
|
+
}
|
package/src/i18n/hi.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Gmail": "Gmail",
|
|
3
|
+
"Email service by Google": "Email service by Google",
|
|
4
|
+
"Send Email": "Send Email",
|
|
5
|
+
"Custom API Call": "Custom API Call",
|
|
6
|
+
"Send an email through a Gmail account": "Send an email through a Gmail account",
|
|
7
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
8
|
+
"Receiver Email (To)": "Receiver Email (To)",
|
|
9
|
+
"CC Email": "CC Email",
|
|
10
|
+
"BCC Email": "BCC Email",
|
|
11
|
+
"Subject": "Subject",
|
|
12
|
+
"Body Type": "Body Type",
|
|
13
|
+
"Body": "Body",
|
|
14
|
+
"Reply-To Email": "Reply-To Email",
|
|
15
|
+
"Sender Name": "Sender Name",
|
|
16
|
+
"Sender Email": "Sender Email",
|
|
17
|
+
"Attachment": "Attachment",
|
|
18
|
+
"Attachment Name": "Attachment Name",
|
|
19
|
+
"In reply to": "In reply to",
|
|
20
|
+
"Create draft": "Create draft",
|
|
21
|
+
"Method": "Method",
|
|
22
|
+
"Headers": "Headers",
|
|
23
|
+
"Query Parameters": "Query Parameters",
|
|
24
|
+
"No Error on Failure": "No Error on Failure",
|
|
25
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
26
|
+
"Body for the email you want to send": "Body for the email you want to send",
|
|
27
|
+
"Email address to set as the \"Reply-To\" header": "Email address to set as the \"Reply-To\" header",
|
|
28
|
+
"The address must be listed in your GMail account's settings": "The address must be listed in your GMail account's settings",
|
|
29
|
+
"File to attach to the email you want to send": "File to attach to the email you want to send",
|
|
30
|
+
"In case you want to change the name of the attachment": "In case you want to change the name of the attachment",
|
|
31
|
+
"Reply to this Message-ID": "Reply to this Message-ID",
|
|
32
|
+
"Create draft without sending the actual email": "Create draft without sending the actual email",
|
|
33
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
34
|
+
"plain text": "plain text",
|
|
35
|
+
"html": "html",
|
|
36
|
+
"GET": "GET",
|
|
37
|
+
"POST": "POST",
|
|
38
|
+
"PATCH": "PATCH",
|
|
39
|
+
"PUT": "PUT",
|
|
40
|
+
"DELETE": "DELETE",
|
|
41
|
+
"HEAD": "HEAD",
|
|
42
|
+
"New Email": "New Email",
|
|
43
|
+
"New Labeled Email": "New Labeled Email",
|
|
44
|
+
"Triggers when new mail is found in your Gmail inbox": "Triggers when new mail is found in your Gmail inbox",
|
|
45
|
+
"Triggers when a label is added to an email": "Triggers when a label is added to an email",
|
|
46
|
+
"Email subject": "Email subject",
|
|
47
|
+
"Email sender": "Email sender",
|
|
48
|
+
"Email recipient": "Email recipient",
|
|
49
|
+
"Label": "Label",
|
|
50
|
+
"Category": "Category",
|
|
51
|
+
"The email subject": "The email subject",
|
|
52
|
+
"Optional filteration, leave empty to filter based on the email sender": "Optional filteration, leave empty to filter based on the email sender",
|
|
53
|
+
"Optional filteration, leave empty to filter based on the email recipient": "Optional filteration, leave empty to filter based on the email recipient",
|
|
54
|
+
"Optional filteration, leave unselected to filter based on the email label": "Optional filteration, leave unselected to filter based on the email label",
|
|
55
|
+
"Optional filteration, leave unselected to filter based on the email category": "Optional filteration, leave unselected to filter based on the email category",
|
|
56
|
+
"Primary": "Primary",
|
|
57
|
+
"Social": "Social",
|
|
58
|
+
"Promotions": "Promotions",
|
|
59
|
+
"Updates": "Updates",
|
|
60
|
+
"Forums": "Forums",
|
|
61
|
+
"Reservations": "Reservations",
|
|
62
|
+
"Purchases": "Purchases"
|
|
63
|
+
}
|