@scopieflows/app-copper 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +28 -0
- package/src/i18n/de.json +285 -0
- package/src/i18n/es.json +285 -0
- package/src/i18n/fr.json +285 -0
- package/src/i18n/ja.json +285 -0
- package/src/i18n/nl.json +285 -0
- package/src/i18n/pt.json +285 -0
- package/src/i18n/translation.json +285 -0
- package/src/i18n/zh.json +285 -0
- package/src/index.d.ts +4 -0
- package/src/index.js +94 -0
- package/src/index.js.map +1 -0
- package/src/lib/actions/convert-lead.d.ts +23 -0
- package/src/lib/actions/convert-lead.js +52 -0
- package/src/lib/actions/convert-lead.js.map +1 -0
- package/src/lib/actions/create-activity.d.ts +15 -0
- package/src/lib/actions/create-activity.js +108 -0
- package/src/lib/actions/create-activity.js.map +1 -0
- package/src/lib/actions/create-company.d.ts +21 -0
- package/src/lib/actions/create-company.js +103 -0
- package/src/lib/actions/create-company.js.map +1 -0
- package/src/lib/actions/create-lead.d.ts +14 -0
- package/src/lib/actions/create-lead.js +101 -0
- package/src/lib/actions/create-lead.js.map +1 -0
- package/src/lib/actions/create-opportunity.d.ts +24 -0
- package/src/lib/actions/create-opportunity.js +69 -0
- package/src/lib/actions/create-opportunity.js.map +1 -0
- package/src/lib/actions/create-person.d.ts +13 -0
- package/src/lib/actions/create-person.js +122 -0
- package/src/lib/actions/create-person.js.map +1 -0
- package/src/lib/actions/create-project.d.ts +7 -0
- package/src/lib/actions/create-project.js +35 -0
- package/src/lib/actions/create-project.js.map +1 -0
- package/src/lib/actions/create-task.d.ts +27 -0
- package/src/lib/actions/create-task.js +142 -0
- package/src/lib/actions/create-task.js.map +1 -0
- package/src/lib/actions/search-for-a-company.d.ts +40 -0
- package/src/lib/actions/search-for-a-company.js +258 -0
- package/src/lib/actions/search-for-a-company.js.map +1 -0
- package/src/lib/actions/search-for-a-lead.d.ts +52 -0
- package/src/lib/actions/search-for-a-lead.js +274 -0
- package/src/lib/actions/search-for-a-lead.js.map +1 -0
- package/src/lib/actions/search-for-a-person.d.ts +54 -0
- package/src/lib/actions/search-for-a-person.js +235 -0
- package/src/lib/actions/search-for-a-person.js.map +1 -0
- package/src/lib/actions/search-for-a-project.d.ts +24 -0
- package/src/lib/actions/search-for-a-project.js +165 -0
- package/src/lib/actions/search-for-a-project.js.map +1 -0
- package/src/lib/actions/search-for-an-activity.d.ts +22 -0
- package/src/lib/actions/search-for-an-activity.js +130 -0
- package/src/lib/actions/search-for-an-activity.js.map +1 -0
- package/src/lib/actions/search-for-an-opportunity.d.ts +74 -0
- package/src/lib/actions/search-for-an-opportunity.js +334 -0
- package/src/lib/actions/search-for-an-opportunity.js.map +1 -0
- package/src/lib/actions/update-company.d.ts +23 -0
- package/src/lib/actions/update-company.js +135 -0
- package/src/lib/actions/update-company.js.map +1 -0
- package/src/lib/actions/update-lead.d.ts +13 -0
- package/src/lib/actions/update-lead.js +136 -0
- package/src/lib/actions/update-lead.js.map +1 -0
- package/src/lib/actions/update-opportunity.d.ts +34 -0
- package/src/lib/actions/update-opportunity.js +89 -0
- package/src/lib/actions/update-opportunity.js.map +1 -0
- package/src/lib/actions/update-person.d.ts +13 -0
- package/src/lib/actions/update-person.js +155 -0
- package/src/lib/actions/update-person.js.map +1 -0
- package/src/lib/actions/update-project.d.ts +16 -0
- package/src/lib/actions/update-project.js +56 -0
- package/src/lib/actions/update-project.js.map +1 -0
- package/src/lib/common/constants.d.ts +35 -0
- package/src/lib/common/constants.js +54 -0
- package/src/lib/common/constants.js.map +1 -0
- package/src/lib/common/props.d.ts +168 -0
- package/src/lib/common/props.js +679 -0
- package/src/lib/common/props.js.map +1 -0
- package/src/lib/common/requests.d.ts +33 -0
- package/src/lib/common/requests.js +320 -0
- package/src/lib/common/requests.js.map +1 -0
- package/src/lib/triggers/new-activity.d.ts +14 -0
- package/src/lib/triggers/new-activity.js +74 -0
- package/src/lib/triggers/new-activity.js.map +1 -0
- package/src/lib/triggers/new-lead.d.ts +14 -0
- package/src/lib/triggers/new-lead.js +45 -0
- package/src/lib/triggers/new-lead.js.map +1 -0
- package/src/lib/triggers/new-person.d.ts +14 -0
- package/src/lib/triggers/new-person.js +45 -0
- package/src/lib/triggers/new-person.js.map +1 -0
- package/src/lib/triggers/new-task.d.ts +14 -0
- package/src/lib/triggers/new-task.js +45 -0
- package/src/lib/triggers/new-task.js.map +1 -0
- package/src/lib/triggers/updated-lead-status.d.ts +14 -0
- package/src/lib/triggers/updated-lead-status.js +66 -0
- package/src/lib/triggers/updated-lead-status.js.map +1 -0
- package/src/lib/triggers/updated-lead.d.ts +14 -0
- package/src/lib/triggers/updated-lead.js +45 -0
- package/src/lib/triggers/updated-lead.js.map +1 -0
- package/src/lib/triggers/updated-opportunity-stage.d.ts +14 -0
- package/src/lib/triggers/updated-opportunity-stage.js +73 -0
- package/src/lib/triggers/updated-opportunity-stage.js.map +1 -0
- package/src/lib/triggers/updated-opportunity-status.d.ts +14 -0
- package/src/lib/triggers/updated-opportunity-status.js +66 -0
- package/src/lib/triggers/updated-opportunity-status.js.map +1 -0
- package/src/lib/triggers/updated-opportunity.d.ts +14 -0
- package/src/lib/triggers/updated-opportunity.js +45 -0
- package/src/lib/triggers/updated-opportunity.js.map +1 -0
- package/src/lib/triggers/updated-project.d.ts +14 -0
- package/src/lib/triggers/updated-project.js +45 -0
- package/src/lib/triggers/updated-project.js.map +1 -0
- package/src/lib/triggers/updated-task.d.ts +14 -0
- package/src/lib/triggers/updated-task.js +45 -0
- package/src/lib/triggers/updated-task.js.map +1 -0
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Email Address": "Adresse e-mail",
|
|
3
|
+
"API Key": "Clé API",
|
|
4
|
+
"Email Address of the Token Owner": "Adresse e-mail du propriétaire du jeton",
|
|
5
|
+
"Your API Key in settings > integrations": "Votre clé API dans les paramètres > intégrations",
|
|
6
|
+
"Create Person": "Créer une personne",
|
|
7
|
+
"Update Person": "Mettre à jour la personne",
|
|
8
|
+
"Create Lead": "Créer Prospect",
|
|
9
|
+
"Update Lead": "Mettre à jour le prospect",
|
|
10
|
+
"Convert Lead": "Convertir Prospect",
|
|
11
|
+
"Create Company": "Créer une entreprise",
|
|
12
|
+
"Update Company": "Mettre à jour la société",
|
|
13
|
+
"Create Opportunity": "Créer une Affaire",
|
|
14
|
+
"Update Opportunity": "Mettre à jour l'Affaire",
|
|
15
|
+
"Create Project": "Créer un projet",
|
|
16
|
+
"Update Project": "Mettre à jour le projet",
|
|
17
|
+
"Create Task": "Créer une tâche",
|
|
18
|
+
"Create Activity": "Créer une activité",
|
|
19
|
+
"Search for an Activity": "Rechercher une activité",
|
|
20
|
+
"Search for a Person": "Rechercher une personne",
|
|
21
|
+
"Search for a Lead": "Rechercher un prospect",
|
|
22
|
+
"Search for a Company": "Rechercher une entreprise",
|
|
23
|
+
"Search for an Opportunity": "Rechercher une opportunité",
|
|
24
|
+
"Search for a Project": "Rechercher un projet",
|
|
25
|
+
"Custom API Call": "Appel d'API personnalisé",
|
|
26
|
+
"Adds a new person/contact.": "Ajoute une nouvelle personne/contact.",
|
|
27
|
+
"Updates a person based on matching criteria.": "Met à jour une personne en fonction des critères de correspondance.",
|
|
28
|
+
"Adds a new lead.": "Ajoute un nouveau prospect.",
|
|
29
|
+
"Updates an existing lead.": "Met à jour un prospect existant.",
|
|
30
|
+
"Converts a lead into a person (optionally with company/opportunity).": "Convertit un plomb en une personne (éventuellement avec l'entreprise/opportunité).",
|
|
31
|
+
"Adds a new company.": "Ajoute une nouvelle société.",
|
|
32
|
+
"Updates a company record.": "Met à jour un dossier d'entreprise.",
|
|
33
|
+
"Adds a new opportunity.": "Ajoute une nouvelle opportunité.",
|
|
34
|
+
"Updates an opportunity using match criteria.": "Met à jour une opportunité en utilisant des critères de match.",
|
|
35
|
+
"Adds a new project.": "Ajoute un nouveau projet.",
|
|
36
|
+
"Updates a project record.": "Met à jour un enregistrement de projet.",
|
|
37
|
+
"Adds a new task under a person, lead, or opportunity.": "Ajoute une nouvelle tâche sous une personne, un prospect ou une opportunité.",
|
|
38
|
+
"Logs an activity related to CRM entities.": "Enregistre une activité liée aux entités CRM.",
|
|
39
|
+
"Find an existing activity by type/criteria.": "Trouver une activité existante par type/critère.",
|
|
40
|
+
"Lookup a person using match criteria.": "Rechercher une personne en utilisant les critères de correspondance.",
|
|
41
|
+
"Lookup a lead using match criteria.": "Rechercher un prospect en utilisant des critères de correspondance.",
|
|
42
|
+
"Lookup a company.": "Recherche une société.",
|
|
43
|
+
"Lookup an opportunity.": "Rechercher une opportunité.",
|
|
44
|
+
"Lookup a project.": "Recherche un projet.",
|
|
45
|
+
"Make a custom API call to a specific endpoint": "Passer un appel API personnalisé à un endpoint spécifique",
|
|
46
|
+
"Full Name": "Nom complet",
|
|
47
|
+
"Emails": "E-mails",
|
|
48
|
+
"Phone Numbers": "Numéros de téléphone",
|
|
49
|
+
"Street": "Rue",
|
|
50
|
+
"City": "Ville",
|
|
51
|
+
"State/Region": "État/Région",
|
|
52
|
+
"Postal Code": "Code postal",
|
|
53
|
+
"Country": "Pays",
|
|
54
|
+
"Person": "Personne",
|
|
55
|
+
"Email": "Courriel",
|
|
56
|
+
"Category of the email address (e.g., work, personal)": "Catégorie de l'adresse e-mail (par exemple, travail, personnel)",
|
|
57
|
+
"Lead": "Prospect",
|
|
58
|
+
"Company": "Entreprise",
|
|
59
|
+
"Opportunity": "Opportunité",
|
|
60
|
+
"Email Domain": "Domaine des E-mails",
|
|
61
|
+
"Details": "Détails",
|
|
62
|
+
"Primary Contact": "Contact principal",
|
|
63
|
+
"Name": "Nom",
|
|
64
|
+
"Pipeline": "Pipeline",
|
|
65
|
+
"Pipeline Stage": "Étape du pipeline",
|
|
66
|
+
"Project": "Votre compte",
|
|
67
|
+
"Task Name": "Nom de la tâche",
|
|
68
|
+
"Activity Type": "Type d'activité",
|
|
69
|
+
"Assignee": "Assignee",
|
|
70
|
+
"Related Record Type": "Type d'enregistrement lié",
|
|
71
|
+
"Related Record": "Enregistrement lié",
|
|
72
|
+
"Due Date/Time": "Date/Heure d'échéance",
|
|
73
|
+
"Reminder Date/Time": "Date/heure de rappel",
|
|
74
|
+
"Priority": "Priorité",
|
|
75
|
+
"Tags": "Tags",
|
|
76
|
+
"Parent Entity": "Entité Parente",
|
|
77
|
+
"Parent Entity Resource": "Ressource d'Entité Parente",
|
|
78
|
+
"Page Size": "Nombre d'élément",
|
|
79
|
+
"Page Number": "Numéro de page",
|
|
80
|
+
"Minimum Activity Date": "Date minimale d'activité",
|
|
81
|
+
"Maximum Activity Date": "Date maximum d'activité",
|
|
82
|
+
"Full Result": "Résultat complet",
|
|
83
|
+
"Phone Number": "Numéro de téléphone",
|
|
84
|
+
"Contact Type": "Type de contact",
|
|
85
|
+
"State": "État",
|
|
86
|
+
"Socials": "Socials",
|
|
87
|
+
"Followed": "Suivi",
|
|
88
|
+
"Age": "Âge",
|
|
89
|
+
"Sort By": "Trier par",
|
|
90
|
+
"Sort Direction": "Direction de tri",
|
|
91
|
+
"Minimum Interaction Count": "Nombre minimum d'interactions",
|
|
92
|
+
"Maximum Interaction Count": "Nombre maximum d'interactions",
|
|
93
|
+
"Minimum Interaction Date": "Date minimale d'interaction",
|
|
94
|
+
"Maximum Interaction Date": "Date maximale d'interaction",
|
|
95
|
+
"Minimum Created Date": "Date de création minimale",
|
|
96
|
+
"Maximum Created Date": "Date de création maximale",
|
|
97
|
+
"Lead Status": "Statut du prospect",
|
|
98
|
+
"Customer Source": "Source du client",
|
|
99
|
+
"Include Converted Leads": "Inclure les prospects convertis",
|
|
100
|
+
"Minimum Monetary Value": "Valeur monétaire minimale",
|
|
101
|
+
"Maximum Monetary Value": "Valeur monétaire maximale",
|
|
102
|
+
"Minimum Modified Date": "Date de modification minimale",
|
|
103
|
+
"Maximum Modified Date": "Date de modification maximale",
|
|
104
|
+
"Status": "Statut",
|
|
105
|
+
"Primary Contacts": "Contacts Principaux",
|
|
106
|
+
"Loss Reason": "Raison de la perte",
|
|
107
|
+
"Minimum Stage Change Date": "Date minimale de changement d'étape",
|
|
108
|
+
"Maximum Stage Change Date": "Date maximale de changement d'étape",
|
|
109
|
+
"Method": "Méthode",
|
|
110
|
+
"Headers": "Headers",
|
|
111
|
+
"Query Parameters": "Paramètres de requête",
|
|
112
|
+
"Body Type": "Body Type",
|
|
113
|
+
"Body": "Body",
|
|
114
|
+
"Response is Binary ?": "La réponse est Binaire ?",
|
|
115
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
116
|
+
"Timeout (in seconds)": "Délai d'expiration (en secondes)",
|
|
117
|
+
"Follow redirects": "Suivre les redirections",
|
|
118
|
+
"select a person": "sélectionner une personne",
|
|
119
|
+
"select a Lead": "sélectionner un prospect",
|
|
120
|
+
"select a Company": "sélectionner une entreprise",
|
|
121
|
+
"select an Opportunity": "sélectionner une opportunité",
|
|
122
|
+
"E.g. democompany.com": "Par exemple democompany.com",
|
|
123
|
+
"select a primary contact": "sélectionner un contact principal",
|
|
124
|
+
"The name of the opportunity": "Le nom de l'opportunité",
|
|
125
|
+
"select a Pipeline": "sélectionner un Pipeline",
|
|
126
|
+
"Select a stage": "Sélectionnez une étape",
|
|
127
|
+
"The name of the project": "Le nom du projet",
|
|
128
|
+
"The details of the project": "Les détails du projet",
|
|
129
|
+
"select a Project": "sélectionner un projet",
|
|
130
|
+
"Details fo this task": "Détails de cette tâche",
|
|
131
|
+
"Select activity Type": "Sélectionnez le type d'activité",
|
|
132
|
+
"select a user to assign to": "sélectionner un utilisateur à assigner",
|
|
133
|
+
"Choose the type of Copper record this task should be linked to (e.g. Person, Company, Lead, Opportunity, or Project).": "Choisissez le type d'enregistrement du cuivre auquel cette tâche doit être liée (par exemple, personne, entreprise, plomb, opportunité ou projet).",
|
|
134
|
+
"Select the specific record (from the chosen type above) that this task should be attached to. For example, pick the Person or Opportunity the task relates to.": "Sélectionnez l'enregistrement spécifique (à partir du type choisi ci-dessus) auquel cette tâche doit être attachée. Par exemple, choisissez la personne ou l'opportunité à laquelle se rapporte la tâche.",
|
|
135
|
+
"Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM).": "Entrez la date et l'heure au format 24 heures, par exemple `2025-09-09 11:40` (11:40 AM) ou `2025-09-09 13:00` (1:00 PM).",
|
|
136
|
+
"Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM)": "Entrez la date et l'heure au format 24 heures, par exemple `2025-09-09 11:40` (11:40 AM) ou `2025-09-09 13:00` (1:00 PM)",
|
|
137
|
+
"Select parent entity": "Sélectionner l'entité parente",
|
|
138
|
+
"Select Resource": "Sélectionner une ressource",
|
|
139
|
+
"Default 50. Max 200.": "Par défaut 50. Maximum 200.",
|
|
140
|
+
"24-hour format, e.g. 2025-09-10 11:40. The timestamp of the earliest activity date.": "Format 24 heures, par exemple 2025-09-10 11:40. L'horodatage de la date d'activité la plus ancienne.",
|
|
141
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest activity date.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la dernière date d'activité.",
|
|
142
|
+
"(Optional) If set, search performance improves but duplicate activity logs may be returned": "(Facultatif) Si défini, les performances de la recherche s'améliorent, mais les journaux d'activité en double peuvent être retournés",
|
|
143
|
+
"Full name of the People to search for.": "Nom complet du peuple à rechercher.",
|
|
144
|
+
"Phone Number of the People to search for.": "Numéro de téléphone des personnes à rechercher.",
|
|
145
|
+
"Emails of the People to search for.": "Emails du peuple à rechercher.",
|
|
146
|
+
"Select contact Type": "Sélectionner le type de contact",
|
|
147
|
+
"select assignees": "sélectionner les personnes assignées",
|
|
148
|
+
"select Companies": "sélectionner Entreprises",
|
|
149
|
+
"select Opportunities": "sélectionner les opportunités",
|
|
150
|
+
"The city in which People must be located.": "La ville dans laquelle les gens doivent être situés.",
|
|
151
|
+
"The state or province in which People must be located.": "L'état ou la province dans laquelle les personnes doivent être situées.",
|
|
152
|
+
"The postal code in which People must be located.": "Le code postal dans lequel les gens doivent être localisés.",
|
|
153
|
+
"The two character country code where People must be located.": "Le code pays à deux caractères où les gens doivent être localisés.",
|
|
154
|
+
"Filter People to those that match at least one of the tags specified.": "Filtrer les personnes à celles qui correspondent à au moins un des tags spécifiés.",
|
|
155
|
+
"Filter People to those that match at least one of the social accounts specified.": "Filtrer les personnes à celles qui correspondent à au moins un des comptes sociaux spécifiés.",
|
|
156
|
+
"Filter by followed state": "Filtrer par état suivi",
|
|
157
|
+
"The maximum age in seconds that People must be.": "L'âge maximum en secondes que les gens doivent être.",
|
|
158
|
+
"The field on which to sort the results": "Le champ sur lequel trier les résultats",
|
|
159
|
+
"The direction in which to sort the result": "La direction dans laquelle trier le résultat",
|
|
160
|
+
"The minimum number of interactions People must have had.": "Le nombre minimum d'interactions que les gens doivent avoir.",
|
|
161
|
+
"The maximum number of interactions People must have had.": "Le nombre maximum d'interactions que les gens doivent avoir.",
|
|
162
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of the last interaction.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus ancienne de la dernière interaction.",
|
|
163
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of the last interaction.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la dernière date de la dernière interaction.",
|
|
164
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date People are created.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la première date de création des personnes.",
|
|
165
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date People are Created.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date à laquelle les gens sont créés.",
|
|
166
|
+
"Full name of the Lead to search for.": "Nom complet du prospect à rechercher.",
|
|
167
|
+
"Phone Number of the Lead to search for.": "Numéro de téléphone du prospect à rechercher.",
|
|
168
|
+
"Emails of the Lead to search for.\t": "E-mails du prospect à rechercher\t",
|
|
169
|
+
"Select lead status": "Sélectionnez le statut du prospect",
|
|
170
|
+
"Select customer source.": "Sélectionnez la source du client.",
|
|
171
|
+
"The city in which Lead must be located.": "La ville dans laquelle le plomb doit être situé.",
|
|
172
|
+
"The state or province in which Lead must be located.": "L'état ou la province dans laquelle le plomb doit être situé.",
|
|
173
|
+
"The postal code in which Lead must be located.": "Le code postal dans lequel le plomb doit être situé.",
|
|
174
|
+
"The two character country code where Lead must be located.": "Le code pays de deux caractères où le prospect doit être situé.",
|
|
175
|
+
"Filter Lead to those that match at least one of the tags specified.": "Filtrer le prospect à ceux qui correspondent à au moins un des tags spécifiés.",
|
|
176
|
+
"Filter Lead to those that match at least one of the social accounts specified.": "Filtrer le prospect à ceux qui correspondent à au moins un des comptes sociaux spécifiés.",
|
|
177
|
+
"The maximum age in seconds that Lead must be.": "L'âge maximum en secondes que doit être le plomb.",
|
|
178
|
+
"Specify if response should contain converted leads.": "Spécifie si la réponse doit contenir des prospects convertis.",
|
|
179
|
+
"The minimum monetary value Leads must have.": "La valeur monétaire minimale des plombs doit avoir.",
|
|
180
|
+
"The maximum monetary value Leads must have.": "La valeur monétaire maximale que doivent avoir.",
|
|
181
|
+
"The minimum number of interactions Lead must have had.": "Le nombre minimum d'interactions que le plomb a dû avoir.",
|
|
182
|
+
"The maximum number of interactions Lead must have had.": "Le nombre maximum d'interactions que le plomb doit avoir.",
|
|
183
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are created.": "Format 24 heures sur 24, par exemple 2025-09-10 13:00. L'horodatage de la date la plus ancienne de création du plomb.",
|
|
184
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Created.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus récente est créé.",
|
|
185
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are Modified.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus ancienne de modification du prospect est modifiée.",
|
|
186
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Modified.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus récente est modifiée.",
|
|
187
|
+
"Full name of the Company to search for.": "Nom complet de la Société à rechercher.",
|
|
188
|
+
"Phone Number of the Company to search for.": "Numéro de téléphone de la société à rechercher.",
|
|
189
|
+
"Email Domain of the Company to search for.": "Domaine de messagerie de la société à rechercher.",
|
|
190
|
+
"The city in which Company must be located.": "La ville dans laquelle la compagnie doit être située.",
|
|
191
|
+
"The state or province in which Company must be located.": "L'état ou la province dans laquelle la compagnie doit être située.",
|
|
192
|
+
"The postal code in which Company must be located.": "Le code postal dans lequel la société doit être située.",
|
|
193
|
+
"The two character country code where Company must be located.": "Le code pays de deux caractères où la société doit être située.",
|
|
194
|
+
"Filter Company to those that match at least one of the tags specified.": "Filtrer la société à celles qui correspondent à au moins un des tags spécifiés.",
|
|
195
|
+
"Filter Company to those that match at least one of the social accounts specified.": "Filtrer la société à ceux qui correspondent à au moins un des comptes sociaux spécifiés.",
|
|
196
|
+
"The maximum age in seconds that Company must be.": "L'âge maximum en secondes que la société doit être.",
|
|
197
|
+
"The minimum number of interactions Company must have had.": "Le nombre minimum d'interactions que la société a dû avoir.",
|
|
198
|
+
"The maximum number of interactions Company must have had.": "Le nombre maximum d'interactions que la Société a dû avoir.",
|
|
199
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Company are created.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus ancienne de création de la société.",
|
|
200
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Company are Created.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la dernière date de création de la société.",
|
|
201
|
+
"Full name of the Opportunity to search for.": "Nom complet de l'opportunité à rechercher.",
|
|
202
|
+
"Filter by Opportunity status": "Filtrer par statut d'opportunité",
|
|
203
|
+
"select primary contacts": "sélectionner les contacts principaux",
|
|
204
|
+
"Select loss reason.": "Sélectionnez la raison de la perte.",
|
|
205
|
+
"The minimum monetary value Opportunities must have.": "La valeur monétaire minimale des opportunités doit avoir.",
|
|
206
|
+
"The maximum monetary value Opportunities must have.": "La valeur monétaire maximale que doivent avoir les opportunités.",
|
|
207
|
+
"The minimum number of interactions Opportunity must have had.": "Le nombre minimum d'interactions a dû être atteint par l'opportunité.",
|
|
208
|
+
"The maximum number of interactions Opportunity must have had.": "Le nombre maximum d'interactions que l'Occasion a dû avoir.",
|
|
209
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date close date.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date de clôture la plus ancienne.",
|
|
210
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date close date.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date de clôture la plus récente.",
|
|
211
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of a stage change.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus ancienne d'un changement d'étape.",
|
|
212
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of a stage change.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la dernière date d'un changement de étape.",
|
|
213
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are created.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus ancienne Occasion est créée.",
|
|
214
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Created.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus récente Occasion est créée.",
|
|
215
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are Modified.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus ancienne d'Affaire est modifiée.",
|
|
216
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Modified.": "Format 24 heures, par exemple 2025-09-10 13:00. L'horodatage de la date la plus récente Occasion est modifiée.",
|
|
217
|
+
"Authorization headers are injected automatically from your connection.": "Les Headers d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
218
|
+
"Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
|
|
219
|
+
"None": "Aucun",
|
|
220
|
+
"Low": "Bas",
|
|
221
|
+
"Medium": "Moyenne",
|
|
222
|
+
"High": "Élevé",
|
|
223
|
+
"Task": "Tâche",
|
|
224
|
+
"followed": "suivis",
|
|
225
|
+
"not followed": "non suivi",
|
|
226
|
+
"Title": "Titre de la feuille de calcul",
|
|
227
|
+
"Phone": "Téléphone",
|
|
228
|
+
"Date Modified": "Date de modification",
|
|
229
|
+
"Date Created": "Date de création",
|
|
230
|
+
"Zip": "Code postal",
|
|
231
|
+
"Ascending": "Ascendant",
|
|
232
|
+
"Descending": "Descendant",
|
|
233
|
+
"Company Name": "Nom de l’entreprise",
|
|
234
|
+
"Value": "Valeur",
|
|
235
|
+
"Inactive Days": "Jours inactifs",
|
|
236
|
+
"Contact": "Contacter",
|
|
237
|
+
"Contact First Name": "Prénom du contact",
|
|
238
|
+
"Contact Last Name": "Nom du contact",
|
|
239
|
+
"Contact Group": "Groupe de contacts",
|
|
240
|
+
"Last Interaction": "Dernière interaction",
|
|
241
|
+
"Interaction Count": "Nombre d'interactions",
|
|
242
|
+
"Primary Website": "Site Web principal",
|
|
243
|
+
"Open": "Ouvert",
|
|
244
|
+
"Won": "Gagné",
|
|
245
|
+
"Lost": "Perdu",
|
|
246
|
+
"Abandoned": "Abandonné",
|
|
247
|
+
"Customer Source ID": "ID de la source du client",
|
|
248
|
+
"Monetary Unit": "Unité monétaire",
|
|
249
|
+
"Monetary Value": "Valeur monétaire",
|
|
250
|
+
"Stage": "Étape",
|
|
251
|
+
"Completed": "Terminé",
|
|
252
|
+
"Assigned To": "Assigné à",
|
|
253
|
+
"Related To": "Lié à",
|
|
254
|
+
"GET": "GET",
|
|
255
|
+
"POST": "POST",
|
|
256
|
+
"PATCH": "PATCH",
|
|
257
|
+
"PUT": "PUT",
|
|
258
|
+
"DELETE": "DELETE",
|
|
259
|
+
"HEAD": "HEAD",
|
|
260
|
+
"JSON": "JSON",
|
|
261
|
+
"Form Data": "Données du formulaire",
|
|
262
|
+
"Raw": "Brut",
|
|
263
|
+
"New Activity": "Nouvelle activité",
|
|
264
|
+
"New Person": "Nouvelle Personne",
|
|
265
|
+
"New Lead": "Nouveau prospect",
|
|
266
|
+
"New Task": "Nouvelle tâche",
|
|
267
|
+
"Updated Lead": "Prospect mis à jour",
|
|
268
|
+
"Updated Task": "Tâche mise à jour",
|
|
269
|
+
"Updated Opportunity": "Affaire mise à jour",
|
|
270
|
+
"Updated Opportunity Stage": "Étape d'Affaire mise à jour",
|
|
271
|
+
"Updated Opportunity Status": "Mise à jour du statut d'opportunité",
|
|
272
|
+
"Updated Project": "Projet mis à jour",
|
|
273
|
+
"Updated Lead Status": "Statut du prospect mis à jour",
|
|
274
|
+
"Triggers when a new activity is logged": "Déclenche quand une nouvelle activité est loguée",
|
|
275
|
+
"Triggers when a new person/contact is created.": "Déclenche quand une nouvelle personne/contact est créée.",
|
|
276
|
+
"Triggers when a new lead is created.": "Déclenche lorsqu'un nouveau prospect est créé.",
|
|
277
|
+
"Triggers when a new task is created.": "Déclenche quand une nouvelle tâche est créée.",
|
|
278
|
+
"Triggers when a lead is modified.": "Déclenche lorsqu'un prospect est modifié.",
|
|
279
|
+
"Triggers when a task is updated.": "Déclenche quand une tâche est mise à jour.",
|
|
280
|
+
"Triggers when an opportunity changes.": "Déclenche quand une opportunité change.",
|
|
281
|
+
"Triggers when an opportunity stage changes": "Déclenche quand une étape d'opportunité change",
|
|
282
|
+
"Triggers when an opportunity's status changes.": "Déclenche quand le statut d'une opportunité change.",
|
|
283
|
+
"Triggers when a project is updated.": "Déclenche lorsqu'un projet est mis à jour.",
|
|
284
|
+
"Triggers when the status of a lead changes.": "Déclenche lorsque le statut d'un prospect change."
|
|
285
|
+
}
|
package/src/i18n/ja.json
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Email Address": "メールアドレス",
|
|
3
|
+
"API Key": "API キー",
|
|
4
|
+
"Email Address of the Token Owner": "トークン所有者のメールアドレス",
|
|
5
|
+
"Your API Key in settings > integrations": "設定 > 統合",
|
|
6
|
+
"Create Person": "ユーザーを作成",
|
|
7
|
+
"Update Person": "担当者を更新",
|
|
8
|
+
"Create Lead": "リードを作成",
|
|
9
|
+
"Update Lead": "潜在顧客を更新",
|
|
10
|
+
"Convert Lead": "リードを変換",
|
|
11
|
+
"Create Company": "所属を作成",
|
|
12
|
+
"Update Company": "所属を更新",
|
|
13
|
+
"Create Opportunity": "案件を作成",
|
|
14
|
+
"Update Opportunity": "商談を更新",
|
|
15
|
+
"Create Project": "プロジェクトを作成",
|
|
16
|
+
"Update Project": "プロジェクトを更新",
|
|
17
|
+
"Create Task": "タスクを作成",
|
|
18
|
+
"Create Activity": "アクティビティを作成",
|
|
19
|
+
"Search for an Activity": "アクティビティを検索",
|
|
20
|
+
"Search for a Person": "人を検索",
|
|
21
|
+
"Search for a Lead": "リードを検索",
|
|
22
|
+
"Search for a Company": "会社を検索",
|
|
23
|
+
"Search for an Opportunity": "商談を検索",
|
|
24
|
+
"Search for a Project": "プロジェクトを検索",
|
|
25
|
+
"Custom API Call": "カスタムAPI通話",
|
|
26
|
+
"Adds a new person/contact.": "新しい人/連絡先を追加します。",
|
|
27
|
+
"Updates a person based on matching criteria.": "一致する条件に基づいて個人を更新します。",
|
|
28
|
+
"Adds a new lead.": "新しいリードを追加します。",
|
|
29
|
+
"Updates an existing lead.": "既存のリードを更新する。",
|
|
30
|
+
"Converts a lead into a person (optionally with company/opportunity).": "リードを人物に変換します(会社/機会とオプション)。",
|
|
31
|
+
"Adds a new company.": "新しい会社を追加",
|
|
32
|
+
"Updates a company record.": "会社レコードを更新します。",
|
|
33
|
+
"Adds a new opportunity.": "新しい機会を追加",
|
|
34
|
+
"Updates an opportunity using match criteria.": "一致条件を使用して商談を更新します。",
|
|
35
|
+
"Adds a new project.": "新規プロジェクトを追加",
|
|
36
|
+
"Updates a project record.": "プロジェクト レコードを更新します。",
|
|
37
|
+
"Adds a new task under a person, lead, or opportunity.": "人、リード、または商談の下に新しいタスクを追加します。",
|
|
38
|
+
"Logs an activity related to CRM entities.": "CRMエンティティに関連するアクティビティをログに記録します。",
|
|
39
|
+
"Find an existing activity by type/criteria.": "タイプ/基準で既存のアクティビティを検索します。",
|
|
40
|
+
"Lookup a person using match criteria.": "マッチ条件を使用して人を検索します。",
|
|
41
|
+
"Lookup a lead using match criteria.": "一致条件を使用してリードを検索します。",
|
|
42
|
+
"Lookup a company.": "会社を探します。",
|
|
43
|
+
"Lookup an opportunity.": "機会を探しましょう。",
|
|
44
|
+
"Lookup a project.": "プロジェクトを検索します。",
|
|
45
|
+
"Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
|
|
46
|
+
"Full Name": "フルネーム",
|
|
47
|
+
"Emails": "E-mail",
|
|
48
|
+
"Phone Numbers": "電話番号",
|
|
49
|
+
"Street": "番地",
|
|
50
|
+
"City": "市区町村名",
|
|
51
|
+
"State/Region": "都道府県/地域",
|
|
52
|
+
"Postal Code": "郵便番号",
|
|
53
|
+
"Country": "国",
|
|
54
|
+
"Person": "人",
|
|
55
|
+
"Email": "Eメールアドレス",
|
|
56
|
+
"Category of the email address (e.g., work, personal)": "Eメールアドレスのカテゴリ (例, 仕事, 個人)",
|
|
57
|
+
"Lead": "リード",
|
|
58
|
+
"Company": "会社名",
|
|
59
|
+
"Opportunity": "機会",
|
|
60
|
+
"Email Domain": "メールドメイン",
|
|
61
|
+
"Details": "詳細",
|
|
62
|
+
"Primary Contact": "主要連絡先",
|
|
63
|
+
"Name": "名前",
|
|
64
|
+
"Pipeline": "パイプライン",
|
|
65
|
+
"Pipeline Stage": "パイプラインステージ",
|
|
66
|
+
"Project": "プロジェクト",
|
|
67
|
+
"Task Name": "タスク名",
|
|
68
|
+
"Activity Type": "活動タイプ",
|
|
69
|
+
"Assignee": "Assignee",
|
|
70
|
+
"Related Record Type": "関連レコードタイプ",
|
|
71
|
+
"Related Record": "関連レコード",
|
|
72
|
+
"Due Date/Time": "締切日時",
|
|
73
|
+
"Reminder Date/Time": "リマインダーの日時",
|
|
74
|
+
"Priority": "優先度",
|
|
75
|
+
"Tags": "タグ",
|
|
76
|
+
"Parent Entity": "親エンティティ",
|
|
77
|
+
"Parent Entity Resource": "親エンティティリソース",
|
|
78
|
+
"Page Size": "ページサイズ",
|
|
79
|
+
"Page Number": "ページ番号",
|
|
80
|
+
"Minimum Activity Date": "最小活動日",
|
|
81
|
+
"Maximum Activity Date": "活動日時の上限",
|
|
82
|
+
"Full Result": "完全な結果",
|
|
83
|
+
"Phone Number": "電話番号",
|
|
84
|
+
"Contact Type": "連絡先の種類",
|
|
85
|
+
"State": "都道府県:",
|
|
86
|
+
"Socials": "Socials",
|
|
87
|
+
"Followed": "フォロー中",
|
|
88
|
+
"Age": "年齢",
|
|
89
|
+
"Sort By": "並び替え",
|
|
90
|
+
"Sort Direction": "並べ替え方向",
|
|
91
|
+
"Minimum Interaction Count": "最小操作数",
|
|
92
|
+
"Maximum Interaction Count": "最大インタラクション数",
|
|
93
|
+
"Minimum Interaction Date": "最小操作日",
|
|
94
|
+
"Maximum Interaction Date": "最大インタラクション日",
|
|
95
|
+
"Minimum Created Date": "作成日時の最小値",
|
|
96
|
+
"Maximum Created Date": "作成日時の最大値",
|
|
97
|
+
"Lead Status": "リードステータス",
|
|
98
|
+
"Customer Source": "顧客ソース",
|
|
99
|
+
"Include Converted Leads": "変換済みリードを含める",
|
|
100
|
+
"Minimum Monetary Value": "最小通貨価値",
|
|
101
|
+
"Maximum Monetary Value": "最大通貨価値",
|
|
102
|
+
"Minimum Modified Date": "最小変更日",
|
|
103
|
+
"Maximum Modified Date": "最大修正日",
|
|
104
|
+
"Status": "ステータス",
|
|
105
|
+
"Primary Contacts": "主要連絡先",
|
|
106
|
+
"Loss Reason": "損失の理由",
|
|
107
|
+
"Minimum Stage Change Date": "最小ステージ変更日",
|
|
108
|
+
"Maximum Stage Change Date": "最大ステージ変更日",
|
|
109
|
+
"Method": "方法",
|
|
110
|
+
"Headers": "ヘッダー",
|
|
111
|
+
"Query Parameters": "クエリパラメータ",
|
|
112
|
+
"Body Type": "ボディタイプ",
|
|
113
|
+
"Body": "本文",
|
|
114
|
+
"Response is Binary ?": "応答はバイナリですか?",
|
|
115
|
+
"No Error on Failure": "失敗時にエラーはありません",
|
|
116
|
+
"Timeout (in seconds)": "タイムアウト(秒)",
|
|
117
|
+
"Follow redirects": "リダイレクトをフォローする",
|
|
118
|
+
"select a person": "人を選択",
|
|
119
|
+
"select a Lead": "リードを選択",
|
|
120
|
+
"select a Company": "所属を選択",
|
|
121
|
+
"select an Opportunity": "商談を選択",
|
|
122
|
+
"E.g. democompany.com": "例: democompany.com",
|
|
123
|
+
"select a primary contact": "プライマリ・コンタクトを選択",
|
|
124
|
+
"The name of the opportunity": "商談の名前",
|
|
125
|
+
"select a Pipeline": "パイプラインを選択",
|
|
126
|
+
"Select a stage": "ステージを選択",
|
|
127
|
+
"The name of the project": "プロジェクトの名前",
|
|
128
|
+
"The details of the project": "プロジェクトの詳細",
|
|
129
|
+
"select a Project": "プロジェクトを選択",
|
|
130
|
+
"Details fo this task": "このタスクの詳細",
|
|
131
|
+
"Select activity Type": "アクティビティの種類を選択",
|
|
132
|
+
"select a user to assign to": "割り当てるユーザーを選択します",
|
|
133
|
+
"Choose the type of Copper record this task should be linked to (e.g. Person, Company, Lead, Opportunity, or Project).": "このタスクをリンクする銅レコードの種類を選択します(個人、会社、リード、商談、またはプロジェクトなど)。",
|
|
134
|
+
"Select the specific record (from the chosen type above) that this task should be attached to. For example, pick the Person or Opportunity the task relates to.": "このタスクに添付する特定のレコード(上の選択したタイプから)を選択します。 たとえば、タスクに関連する人または機会を選択します。",
|
|
135
|
+
"Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM).": "`2025-09-09 11:40` (11:40 AM) または `2025-09-09 13:00` (午後1:00 PM) など、24 時間形式で日付と時刻を入力します。",
|
|
136
|
+
"Enter date and time in 24-hour format, e.g. `2025-09-09 11:40` (11:40 AM) or `2025-09-09 13:00` (1:00 PM)": "24時間形式で日付と時刻を入力します。例えば、`2025-09-09 11:40` (11:40 AM) または `2025-09-09 13:00` (午後1:00 PM)",
|
|
137
|
+
"Select parent entity": "親エンティティを選択",
|
|
138
|
+
"Select Resource": "リソースを選択",
|
|
139
|
+
"Default 50. Max 200.": "デフォルトの50。最大200。",
|
|
140
|
+
"24-hour format, e.g. 2025-09-10 11:40. The timestamp of the earliest activity date.": "24時間形式、例: 2025-09-10 11:40。最も古いアクティビティ日時のタイムスタンプ。",
|
|
141
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest activity date.": "24 時間形式, 例: 2025-09-10 13:00. 最新のアクティビティ日時のタイムスタンプ。",
|
|
142
|
+
"(Optional) If set, search performance improves but duplicate activity logs may be returned": "(オプション)設定した場合、検索パフォーマンスは向上しますが、重複したアクティビティログが返される可能性があります。",
|
|
143
|
+
"Full name of the People to search for.": "検索する人物のフルネーム。",
|
|
144
|
+
"Phone Number of the People to search for.": "検索する人物の電話番号",
|
|
145
|
+
"Emails of the People to search for.": "検索する人々の電子メール。",
|
|
146
|
+
"Select contact Type": "連絡先の種類を選択",
|
|
147
|
+
"select assignees": "担当者を選択",
|
|
148
|
+
"select Companies": "企業を選択",
|
|
149
|
+
"select Opportunities": "商談を選択",
|
|
150
|
+
"The city in which People must be located.": "人々が位置している必要がある都市。",
|
|
151
|
+
"The state or province in which People must be located.": "Peopleが所在する州または州。",
|
|
152
|
+
"The postal code in which People must be located.": "Peopleが所在する郵便番号。",
|
|
153
|
+
"The two character country code where People must be located.": "Peopleが存在する必要がある2文字の国コード。",
|
|
154
|
+
"Filter People to those that match at least one of the tags specified.": "指定されたタグの少なくとも 1 つに一致するユーザにフィルタリングします。",
|
|
155
|
+
"Filter People to those that match at least one of the social accounts specified.": "指定されたソーシャルアカウントの少なくとも1つに一致するユーザーにフィルタリングします。",
|
|
156
|
+
"Filter by followed state": "フォロー中の状態でフィルター",
|
|
157
|
+
"The maximum age in seconds that People must be.": "人がする必要があります秒単位の最大年齢。",
|
|
158
|
+
"The field on which to sort the results": "結果をソートするフィールド",
|
|
159
|
+
"The direction in which to sort the result": "結果を並べ替える方向",
|
|
160
|
+
"The minimum number of interactions People must have had.": "人々が持っていたに違いない相互作用の最小数。",
|
|
161
|
+
"The maximum number of interactions People must have had.": "人々が持っていた相互作用の最大数。",
|
|
162
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of the last interaction.": "24時間形式、例: 2025-09-10 13:00。最後の操作の最初の日付のタイムスタンプ。",
|
|
163
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of the last interaction.": "24 時間形式, 例: 2025-09-10 13:00. 最後の操作の最新日付のタイムスタンプ。",
|
|
164
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date People are created.": "24時間形式、例: 2025-09-10 13:00。最も古い日付のタイムスタンプが作成されます。",
|
|
165
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date People are Created.": "24時間形式, 例: 2025-09-10 13:00. 最新の日付のタイムスタンプが作成されます.",
|
|
166
|
+
"Full name of the Lead to search for.": "検索するリードのフルネーム。",
|
|
167
|
+
"Phone Number of the Lead to search for.": "検索するリードの電話番号。",
|
|
168
|
+
"Emails of the Lead to search for.\t": "検索するリードのメール\t",
|
|
169
|
+
"Select lead status": "リードのステータスを選択",
|
|
170
|
+
"Select customer source.": "顧客ソースを選択します。",
|
|
171
|
+
"The city in which Lead must be located.": "リードが置かなければならない都市。",
|
|
172
|
+
"The state or province in which Lead must be located.": "リードを置く必要がある州または州。",
|
|
173
|
+
"The postal code in which Lead must be located.": "リードが所在する郵便番号。",
|
|
174
|
+
"The two character country code where Lead must be located.": "リードを配置する必要がある2文字の国コード。",
|
|
175
|
+
"Filter Lead to those that match at least one of the tags specified.": "指定されたタグの少なくとも1つに一致するものにリードを絞り込みます。",
|
|
176
|
+
"Filter Lead to those that match at least one of the social accounts specified.": "指定されたソーシャルアカウントの少なくとも1つに一致するアカウントにリードを絞り込みます。",
|
|
177
|
+
"The maximum age in seconds that Lead must be.": "リードの最大年齢は数秒でなければなりません。",
|
|
178
|
+
"Specify if response should contain converted leads.": "レスポンスに変換されたリードを含めるかどうかを指定します。",
|
|
179
|
+
"The minimum monetary value Leads must have.": "リードが持っている最低限の金銭的価値。",
|
|
180
|
+
"The maximum monetary value Leads must have.": "リードの最大貨幣価値は必須である。",
|
|
181
|
+
"The minimum number of interactions Lead must have had.": "相互作用リードの最小数があったに違いありません。",
|
|
182
|
+
"The maximum number of interactions Lead must have had.": "リード相互作用の最大数があった必要があります。",
|
|
183
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are created.": "24時間形式, 例: 2025-09-10 13:00. リードの最も古い日付のタイムスタンプが作成されます.",
|
|
184
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Created.": "24時間形式, 例: 2025-09-10 13:00. 最新の日付リードのタイムスタンプが作成されます.",
|
|
185
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Lead are Modified.": "24時間形式, 例: 2025-09-10 13:00. リードの最も古い日付のタイムスタンプが変更されます。",
|
|
186
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Lead are Modified.": "24時間形式, 例: 2025-09-10 13:00. 最新の日付「リード」のタイムスタンプが変更されます。",
|
|
187
|
+
"Full name of the Company to search for.": "検索する会社のフルネーム。",
|
|
188
|
+
"Phone Number of the Company to search for.": "検索する会社の電話番号。",
|
|
189
|
+
"Email Domain of the Company to search for.": "検索する会社のメールドメイン。",
|
|
190
|
+
"The city in which Company must be located.": "会社が設置されなければならない市町村。",
|
|
191
|
+
"The state or province in which Company must be located.": "会社が設立されなければならない州または州。",
|
|
192
|
+
"The postal code in which Company must be located.": "会社が所在する郵便番号。",
|
|
193
|
+
"The two character country code where Company must be located.": "会社が存在する必要がある2文字の国コード。",
|
|
194
|
+
"Filter Company to those that match at least one of the tags specified.": "指定されたタグの少なくとも 1 つに一致するものに会社をフィルタリングします。",
|
|
195
|
+
"Filter Company to those that match at least one of the social accounts specified.": "指定されたソーシャルアカウントの少なくとも1つに一致するアカウントに会社をフィルタリングします。",
|
|
196
|
+
"The maximum age in seconds that Company must be.": "会社がする必要があります秒単位の最大年齢。",
|
|
197
|
+
"The minimum number of interactions Company must have had.": "企業とのやり取りの最小数があったに違いありません。",
|
|
198
|
+
"The maximum number of interactions Company must have had.": "カンパニーが持っていた相互作用の最大数。",
|
|
199
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Company are created.": "24時間形式, 例: 2025-09-10 13:00. 会社の最も古い日付のタイムスタンプが作成されます.",
|
|
200
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Company are Created.": "24時間形式, 例: 2025-09-10 13:00. 最新の日付会社のタイムスタンプが作成されます.",
|
|
201
|
+
"Full name of the Opportunity to search for.": "検索する商談のフルネーム。",
|
|
202
|
+
"Filter by Opportunity status": "案件状況でフィルター",
|
|
203
|
+
"select primary contacts": "プライマリの連絡先を選択",
|
|
204
|
+
"Select loss reason.": "損失の理由を選択してください。",
|
|
205
|
+
"The minimum monetary value Opportunities must have.": "最小貨幣価値の機会は持たなければなりません。",
|
|
206
|
+
"The maximum monetary value Opportunities must have.": "機会の最大貨幣価値が必要です。",
|
|
207
|
+
"The minimum number of interactions Opportunity must have had.": "インタラクション機会の最小数があったに違いありません。",
|
|
208
|
+
"The maximum number of interactions Opportunity must have had.": "インタラクション機会の最大数があったに違いありません。",
|
|
209
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date close date.": "24時間形式、例: 2025-09-10 13:00。最も古い終了日のタイムスタンプ。",
|
|
210
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date close date.": "24 時間形式, 例: 2025-09-10 13:00. 最新の日付終了日のタイムスタンプ。",
|
|
211
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date of a stage change.": "24 時間形式, 例: 2025-09-10 13:00. ステージ変更の最初の日付のタイムスタンプ。",
|
|
212
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date of a stage change.": "24 時間形式, 例: 2025-09-10 13:00. ステージ変更の最新日付のタイムスタンプ。",
|
|
213
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are created.": "24時間形式, 例: 2025-09-10 13:00. 最も古い日付のタイムスタンプが作成されます.",
|
|
214
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Created.": "24時間形式, 例: 2025-09-10 13:00. 最新の日付のタイムスタンプが作成されます.",
|
|
215
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the earliest date Opportunity are Modified.": "24時間形式, 例: 2025-09-10 13:00. 最も古い日付のタイムスタンプが変更されます.",
|
|
216
|
+
"24-hour format, e.g. 2025-09-10 13:00. The timestamp of the latest date Opportunity are Modified.": "24時間形式, 例: 2025-09-10 13:00. 最新の日付のタイムスタンプが変更されます.",
|
|
217
|
+
"Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
|
|
218
|
+
"Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
|
|
219
|
+
"None": "なし",
|
|
220
|
+
"Low": "低い",
|
|
221
|
+
"Medium": "ミディアム",
|
|
222
|
+
"High": "高い",
|
|
223
|
+
"Task": "タスク",
|
|
224
|
+
"followed": "フォローしました",
|
|
225
|
+
"not followed": "フォローしていません",
|
|
226
|
+
"Title": "タイトル",
|
|
227
|
+
"Phone": "電話番号",
|
|
228
|
+
"Date Modified": "変更日",
|
|
229
|
+
"Date Created": "作成日",
|
|
230
|
+
"Zip": "郵便番号",
|
|
231
|
+
"Ascending": "昇順",
|
|
232
|
+
"Descending": "降順",
|
|
233
|
+
"Company Name": "会社名",
|
|
234
|
+
"Value": "値",
|
|
235
|
+
"Inactive Days": "アクティブでない日数",
|
|
236
|
+
"Contact": "お問い合わせ",
|
|
237
|
+
"Contact First Name": "連絡先名",
|
|
238
|
+
"Contact Last Name": "連絡先の姓",
|
|
239
|
+
"Contact Group": "連絡先グループ",
|
|
240
|
+
"Last Interaction": "前回の相互作用",
|
|
241
|
+
"Interaction Count": "インタラクション数",
|
|
242
|
+
"Primary Website": "プライマリウェブサイト",
|
|
243
|
+
"Open": "開く",
|
|
244
|
+
"Won": "獲得日",
|
|
245
|
+
"Lost": "失われた",
|
|
246
|
+
"Abandoned": "放棄されました",
|
|
247
|
+
"Customer Source ID": "顧客ソースID",
|
|
248
|
+
"Monetary Unit": "通貨単位",
|
|
249
|
+
"Monetary Value": "金銭的価値",
|
|
250
|
+
"Stage": "ステージ",
|
|
251
|
+
"Completed": "完了",
|
|
252
|
+
"Assigned To": "割り当て先",
|
|
253
|
+
"Related To": "関連先",
|
|
254
|
+
"GET": "取得",
|
|
255
|
+
"POST": "POST",
|
|
256
|
+
"PATCH": "PATCH",
|
|
257
|
+
"PUT": "PUT",
|
|
258
|
+
"DELETE": "削除",
|
|
259
|
+
"HEAD": "頭",
|
|
260
|
+
"JSON": "JSON",
|
|
261
|
+
"Form Data": "フォームデータ",
|
|
262
|
+
"Raw": "Raw",
|
|
263
|
+
"New Activity": "新しいアクティビティ",
|
|
264
|
+
"New Person": "新しい人",
|
|
265
|
+
"New Lead": "新しいリード",
|
|
266
|
+
"New Task": "新しいタスク",
|
|
267
|
+
"Updated Lead": "更新されたリード",
|
|
268
|
+
"Updated Task": "更新されたタスク",
|
|
269
|
+
"Updated Opportunity": "更新された機会",
|
|
270
|
+
"Updated Opportunity Stage": "更新された商談ステージ",
|
|
271
|
+
"Updated Opportunity Status": "更新された商談ステータス",
|
|
272
|
+
"Updated Project": "更新されたプロジェクト",
|
|
273
|
+
"Updated Lead Status": "更新された見込み客ステータス",
|
|
274
|
+
"Triggers when a new activity is logged": "新しいアクティビティが記録されたときにトリガーします",
|
|
275
|
+
"Triggers when a new person/contact is created.": "新しい人/連絡先が作成されたときにトリガーします。",
|
|
276
|
+
"Triggers when a new lead is created.": "新しいリードが作成されたときにトリガーします。",
|
|
277
|
+
"Triggers when a new task is created.": "新しいタスクが作成されたときにトリガーされます。",
|
|
278
|
+
"Triggers when a lead is modified.": "リードが変更されたときにトリガーします。",
|
|
279
|
+
"Triggers when a task is updated.": "タスクが更新されたときにトリガーされます。",
|
|
280
|
+
"Triggers when an opportunity changes.": "商談が変更されたときにトリガーします。",
|
|
281
|
+
"Triggers when an opportunity stage changes": "商談ステージが変更されたときにトリガーします",
|
|
282
|
+
"Triggers when an opportunity's status changes.": "商談のステータスが変更されたときに発生します。",
|
|
283
|
+
"Triggers when a project is updated.": "プロジェクトが更新されたときにトリガーします。",
|
|
284
|
+
"Triggers when the status of a lead changes.": "リードのステータスが変更されたときにトリガーします。"
|
|
285
|
+
}
|