@activepieces/piece-savvycal 0.0.2 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/package.json +5 -5
  2. package/src/i18n/de.json +73 -94
  3. package/src/i18n/es.json +73 -94
  4. package/src/i18n/fr.json +81 -75
  5. package/src/i18n/ja.json +73 -94
  6. package/src/i18n/nl.json +72 -93
  7. package/src/i18n/pt.json +73 -94
  8. package/src/i18n/ru.json +74 -0
  9. package/src/i18n/translation.json +45 -13
  10. package/src/i18n/vi.json +74 -0
  11. package/src/i18n/zh.json +40 -61
  12. package/src/index.d.ts +3 -2
  13. package/src/index.js +27 -36
  14. package/src/index.js.map +1 -1
  15. package/src/lib/actions/cancel-event.d.ts +3 -1
  16. package/src/lib/actions/cancel-event.js +3 -3
  17. package/src/lib/actions/cancel-event.js.map +1 -1
  18. package/src/lib/actions/create-event.d.ts +10 -2
  19. package/src/lib/actions/create-event.js +32 -17
  20. package/src/lib/actions/create-event.js.map +1 -1
  21. package/src/lib/actions/delete-scheduling-link.d.ts +10 -0
  22. package/src/lib/actions/delete-scheduling-link.js +67 -0
  23. package/src/lib/actions/delete-scheduling-link.js.map +1 -0
  24. package/src/lib/actions/duplicate-scheduling-link.d.ts +10 -0
  25. package/src/lib/actions/duplicate-scheduling-link.js +63 -0
  26. package/src/lib/actions/duplicate-scheduling-link.js.map +1 -0
  27. package/src/lib/actions/find-events-by-email.d.ts +3 -1
  28. package/src/lib/actions/find-events-by-email.js +3 -3
  29. package/src/lib/actions/find-events-by-email.js.map +1 -1
  30. package/src/lib/actions/get-current-user.d.ts +3 -1
  31. package/src/lib/actions/get-current-user.js +3 -3
  32. package/src/lib/actions/get-current-user.js.map +1 -1
  33. package/src/lib/actions/get-event.d.ts +3 -1
  34. package/src/lib/actions/get-event.js +3 -3
  35. package/src/lib/actions/get-event.js.map +1 -1
  36. package/src/lib/actions/get-link-slots.d.ts +10 -0
  37. package/src/lib/actions/get-link-slots.js +70 -0
  38. package/src/lib/actions/get-link-slots.js.map +1 -0
  39. package/src/lib/actions/get-scheduling-link.d.ts +10 -0
  40. package/src/lib/actions/get-scheduling-link.js +63 -0
  41. package/src/lib/actions/get-scheduling-link.js.map +1 -0
  42. package/src/lib/actions/get-workflow-rules.d.ts +7 -0
  43. package/src/lib/actions/get-workflow-rules.js +50 -0
  44. package/src/lib/actions/get-workflow-rules.js.map +1 -0
  45. package/src/lib/actions/list-events.d.ts +10 -3
  46. package/src/lib/actions/list-events.js +70 -24
  47. package/src/lib/actions/list-events.js.map +1 -1
  48. package/src/lib/actions/list-scheduling-links.d.ts +7 -1
  49. package/src/lib/actions/list-scheduling-links.js +30 -17
  50. package/src/lib/actions/list-scheduling-links.js.map +1 -1
  51. package/src/lib/actions/list-workflows.d.ts +3 -0
  52. package/src/lib/actions/list-workflows.js +35 -0
  53. package/src/lib/actions/list-workflows.js.map +1 -0
  54. package/src/lib/actions/toggle-scheduling-link.d.ts +10 -0
  55. package/src/lib/actions/toggle-scheduling-link.js +63 -0
  56. package/src/lib/actions/toggle-scheduling-link.js.map +1 -0
  57. package/src/lib/auth.d.ts +14 -0
  58. package/src/lib/auth.js +59 -0
  59. package/src/lib/auth.js.map +1 -0
  60. package/src/lib/common/index.d.ts +13 -0
  61. package/src/lib/common/index.js +98 -29
  62. package/src/lib/common/index.js.map +1 -1
  63. package/src/lib/triggers/new-event.d.ts +36 -4
  64. package/src/lib/triggers/new-event.js +85 -18
  65. package/src/lib/triggers/new-event.js.map +1 -1
  66. package/src/lib/triggers/new-poll-response.d.ts +18 -0
  67. package/src/lib/triggers/new-poll-response.js +81 -0
  68. package/src/lib/triggers/new-poll-response.js.map +1 -0
  69. package/src/lib/triggers/workflow-action-triggered.d.ts +10 -0
  70. package/src/lib/triggers/workflow-action-triggered.js +65 -0
  71. package/src/lib/triggers/workflow-action-triggered.js.map +1 -0
  72. package/src/lib/common/webhook-trigger-factory.d.ts +0 -7
  73. package/src/lib/common/webhook-trigger-factory.js +0 -96
  74. package/src/lib/common/webhook-trigger-factory.js.map +0 -1
  75. package/src/lib/triggers/booking-canceled.d.ts +0 -1
  76. package/src/lib/triggers/booking-canceled.js +0 -11
  77. package/src/lib/triggers/booking-canceled.js.map +0 -1
  78. package/src/lib/triggers/booking-rescheduled.d.ts +0 -1
  79. package/src/lib/triggers/booking-rescheduled.js +0 -11
  80. package/src/lib/triggers/booking-rescheduled.js.map +0 -1
  81. package/src/lib/triggers/new-booking.d.ts +0 -1
  82. package/src/lib/triggers/new-booking.js +0 -11
  83. package/src/lib/triggers/new-booking.js.map +0 -1
package/src/i18n/fr.json CHANGED
@@ -1,81 +1,80 @@
1
1
  {
2
- "Scheduling tool that lets invitees overlay their calendar when picking a time.": "Outil de planification qui permet aux invités de superposer leur calendrier lors de la sélection d'une heure.",
3
- "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "Pour obtenir votre jeton API SavvyCal :\n1. Connectez-vous à votre compte SavvyCal sur https://savvycal.com\n2. Allez dans **Paramètres > Développeur**\n3. Cliquez sur **Créer un jeton**\n4. Donnez-lui un nom et copiez le jeton (il commence par `pt_secret_`)\n\n**Note:** Gardez ce jeton secret — il donne un accès complet à votre compte SavvyCal.",
4
- "Get Current User": "Obtenir l'utilisateur actuel",
5
- "List Events": "Liste des événements",
6
- "Get Event": "Obtenir un événement",
7
- "Cancel Event": "Annuler l'événement",
2
+ "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developers**\n3. Under **Personal Tokens**, click **Create a token**\n4. Give it a name, then click the **...** menu next to it to view the token\n5. Copy the **Private Key** (starts with `pt_secret_`) — not the Public Key\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "Pour obtenir votre jeton API SavvyCal :\n1. Connectez-vous à votre compte SavvyCal sur https://savvycal.com\n2. Allez dans **Paramètres > Développeurs**\n3. Sous **Personal Tokens**, cliquez sur **Create a token**\n4. Donnez-lui un nom, puis cliquez sur le menu **...** à côté pour afficher le jeton\n5. Copiez la **Clé privée** (commence par `pt_secret_`) — pas la Clé publique\n\n**Remarque :** Gardez ce jeton secret — il donne un accès complet à votre compte SavvyCal.",
3
+ "Personal Access Token (Private Key)": "Jeton d'accès personnel (Clé privée)",
4
+ "Cancel Event": "Annuler un événement",
5
+ "Cancels a scheduled meeting in SavvyCal.": "Annule une réunion planifiée dans SavvyCal.",
8
6
  "Create Event": "Créer un événement",
9
- "Find Events by Attendee Email": "Trouver des événements par e-mail des participants",
10
- "List Scheduling Links": "Liste des liens de planification",
11
- "Custom API Call": "Appel d'API personnalisé",
7
+ "Books a meeting on a scheduling link at a specific time slot.": "Réserve une réunion sur un lien de planification à un créneau horaire spécifique.",
8
+ "Find Events by Attendee Email": "Trouver des événements par e-mail du participant",
9
+ "Returns all events where the attendee's email matches the given address.": "Retourne tous les événements dont l'e-mail du participant correspond à l'adresse fournie.",
10
+ "Get Current User": "Obtenir l'utilisateur actuel",
12
11
  "Retrieves the profile of the currently authenticated SavvyCal user.": "Récupère le profil de l'utilisateur SavvyCal actuellement authentifié.",
13
- "Returns a list of scheduled meetings from your SavvyCal account.": "Renvoie une liste des réunions planifiées depuis votre compte SavvyCal.",
14
- "Retrieves the details of a specific scheduled meeting by its ID.": "Récupère les détails d'une réunion planifiée spécifique par son ID.",
15
- "Cancels a scheduled meeting in SavvyCal.": "Annule une réunion prévue à SavvyCal.",
16
- "Books a meeting on a scheduling link at a specific time slot.": "Réalise une réunion sur un lien de planification à un créneau horaire spécifique.",
17
- "Returns all events where the attendee's email matches the given address.": "Renvoie tous les événements l'email du participant correspond à l'adresse indiquée.",
18
- "Returns all scheduling links configured in your SavvyCal account.": "Renvoie tous les liens de planification configurés dans votre compte SavvyCal.",
19
- "Make a custom API call to a specific endpoint": "Passer un appel API personnalisé à un endpoint spécifique",
20
- "State": "État",
21
- "Start After": "Commencer après",
22
- "Start Before": "Commencer avant",
12
+ "Get Event": "Obtenir un événement",
13
+ "Retrieves the details of a specific scheduled meeting by its ID.": "Récupère les détails d'une réunion planifiée spécifique par son identifiant.",
14
+ "List Events": "Lister les événements",
15
+ "Returns a list of scheduled meetings from your SavvyCal account.": "Retourne la liste des réunions planifiées de votre compte SavvyCal.",
16
+ "List Scheduling Links": "Lister les liens de planification",
17
+ "Returns all scheduling links configured in your SavvyCal account.": "Retourne tous les liens de planification configurés dans votre compte SavvyCal.",
18
+ "Get Scheduling Link": "Obtenir un lien de planification",
19
+ "Retrieves the details of a specific scheduling link by its ID.": "Récupère les détails d'un lien de planification spécifique par son identifiant.",
20
+ "Delete Scheduling Link": "Supprimer un lien de planification",
21
+ "Permanently deletes a scheduling link from your SavvyCal account.": "Supprime définitivement un lien de planification de votre compte SavvyCal.",
22
+ "Duplicate Scheduling Link": "Dupliquer un lien de planification",
23
+ "Creates a copy of an existing scheduling link.": "Crée une copie d'un lien de planification existant.",
24
+ "Toggle Scheduling Link": "Activer/Désactiver un lien de planification",
25
+ "Switches a scheduling link between active and disabled states.": "Bascule un lien de planification entre les états actif et désactivé.",
26
+ "Get Available Slots": "Obtenir les créneaux disponibles",
27
+ "Returns available time slots for booking on a scheduling link. Useful for displaying availability or for picking a slot before calling Create Event.": "Retourne les créneaux disponibles pour réserver sur un lien de planification. Utile pour afficher la disponibilité ou choisir un créneau avant d'appeler Créer un événement.",
28
+ "List Workflows": "Lister les workflows",
29
+ "Returns all workflows configured in your SavvyCal account.": "Retourne tous les workflows configurés dans votre compte SavvyCal.",
30
+ "Get Workflow Rules": "Obtenir les règles d'un workflow",
31
+ "Returns the rules configured for a specific workflow.": "Retourne les règles configurées pour un workflow spécifique.",
32
+ "Select the scheduling link to retrieve.": "Sélectionnez le lien de planification à récupérer.",
33
+ "Select the scheduling link to delete. This action cannot be undone.": "Sélectionnez le lien de planification à supprimer. Cette action est irréversible.",
34
+ "Select the scheduling link to duplicate.": "Sélectionnez le lien de planification à dupliquer.",
35
+ "Select the scheduling link to toggle.": "Sélectionnez le lien de planification à activer/désactiver.",
36
+ "Select the scheduling link to query slots for.": "Sélectionnez le lien de planification dont vous voulez les créneaux.",
37
+ "Workflow": "Workflow",
38
+ "Select the workflow whose rules you want to retrieve.": "Sélectionnez le workflow dont vous voulez récupérer les règles.",
39
+ "Failed to load workflows.": "Impossible de charger les workflows.",
40
+ "New Event": "Nouvel événement",
41
+ "Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.": "Se déclenche lors d'un événement SavvyCal. Sélectionnez un ou plusieurs types, ou laissez vide pour tous les types.",
42
+ "Event Types": "Types d'événements",
43
+ "Select which event types to trigger on. Leave empty to trigger on all event types.": "Sélectionnez les types d'événements sur lesquels se déclencher. Laisser vide pour tous les types.",
44
+ "New Poll Response": "Nouvelle réponse au sondage",
45
+ "Triggers when a poll response is created or updated in SavvyCal.": "Se déclenche lors de la création ou la mise à jour d'une réponse à un sondage dans SavvyCal.",
46
+ "Poll Response Types": "Types de réponse au sondage",
47
+ "Select which poll response types to trigger on. Leave empty to trigger on all poll response types.": "Sélectionnez les types de réponse au sondage. Laisser vide pour tous les types.",
48
+ "Triggers when a workflow action is triggered in SavvyCal.": "Se déclenche lorsqu'une action de workflow est déclenchée dans SavvyCal.",
49
+ "Event ID": "Identifiant de l'événement",
50
+ "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "L'identifiant unique de l'événement à annuler. Vous pouvez le trouver dans la sortie d'un déclencheur ou des actions Lister les événements / Obtenir un événement.",
51
+ "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "L'identifiant unique de l'événement. Vous pouvez le trouver dans l'URL de l'événement dans SavvyCal, ou dans la sortie d'un déclencheur ou de l'action Lister les événements.",
23
52
  "Scheduling Link": "Lien de planification",
24
- "Maximum Results": "Nombre maximum de résultats",
25
- "Event ID": "ID de l'événement",
26
- "Start Time": "Start Time",
53
+ "Scheduling Links": "Liens de planification",
54
+ "Select the scheduling link to book a meeting on.": "Sélectionnez le lien de planification sur lequel réserver une réunion.",
55
+ "Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.": "Se déclencher uniquement pour les événements sur les liens de planification sélectionnés. Laisser vide pour tous les liens.",
56
+ "Only return events booked through the selected scheduling links. Leave empty for all links.": "Ne retourner que les événements réservés via les liens de planification sélectionnés. Laisser vide pour tous les liens.",
57
+ "Start Time": "Heure de début",
58
+ "The start date and time of the meeting. Must match an available slot on the scheduling link.": "La date et l'heure de début de la réunion. Doit correspondre à un créneau disponible sur le lien de planification.",
27
59
  "End Time": "Heure de fin",
60
+ "The End date and time of the meeting": "La date et l'heure de fin de la réunion",
28
61
  "Attendee Name": "Nom du participant",
29
- "Attendee Email": "Courriel des participants",
30
- "Method": "Méthode",
31
- "Headers": "Headers",
32
- "Query Parameters": "Paramètres de requête",
33
- "Body Type": "Body Type",
34
- "Body": "Body",
35
- "Response is Binary ?": "La réponse est Binaire ?",
36
- "No Error on Failure": "Aucune erreur en cas d'échec",
37
- "Timeout (in seconds)": "Délai d'expiration (en secondes)",
38
- "Follow redirects": "Suivre les redirections",
39
- "Filter events by their current status.": "Filtrer les événements par leur statut actuel.",
40
- "Only return events that start after this date and time.": "Renvoie uniquement les événements qui commencent après cette date et cette heure.",
41
- "Only return events that start before this date and time.": "Renvoie uniquement les événements qui commencent avant cette date et cette heure.",
42
- "Only return events booked through a specific scheduling link. Leave empty for all links.": "Renvoie uniquement les événements réservés via un lien de planification spécifique. Laisser vide pour tous les liens.",
62
+ "Full name of the person booking the meeting.": "Nom complet de la personne qui réserve la réunion.",
63
+ "Attendee Email": "E-mail du participant",
64
+ "Email address of the person booking the meeting.": "Adresse e-mail de la personne qui réserve la réunion.",
65
+ "The email address of the attendee to search for.": "L'adresse e-mail du participant à rechercher.",
66
+ "Start After": "Commencer après",
67
+ "Only return events that start after this date and time.": "Ne retourner que les événements qui commencent après cette date et heure.",
68
+ "Only search events starting after this date. Use this to limit the search scope and improve performance.": "Ne rechercher que les événements commençant après cette date. Utilisez ceci pour limiter la portée de la recherche et améliorer les performances.",
69
+ "Start Before": "Commencer avant",
70
+ "Only return events that start before this date and time.": "Ne retourner que les événements qui commencent avant cette date et heure.",
71
+ "Only search events starting before this date.": "Ne rechercher que les événements commençant avant cette date.",
72
+ "State": "Statut",
73
+ "Filter events by their current status. Leave empty to return all statuses.": "Filtrer les événements selon leur statut actuel. Laisser vide pour retourner tous les statuts.",
74
+ "Maximum Results": "Nombre maximum de résultats",
43
75
  "Maximum number of events to return. Leave empty to return all matching events.": "Nombre maximum d'événements à retourner. Laisser vide pour retourner tous les événements correspondants.",
44
- "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "L'ID unique de l'événement. Vous pouvez le trouver dans l'URL de l'événement dans SavvyCal, ou à partir de la sortie d'une action de déclencheur ou de liste d'événements.",
45
- "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "L'ID unique de l'événement à annuler. Vous pouvez le trouver à partir de la sortie d'un déclencheur ou de la liste des événements / Obtenir des actions d'événements.",
46
- "Select the scheduling link to book a meeting on.": "Sélectionnez le lien de planification pour réserver une réunion.",
47
- "The start date and time of the meeting. Must match an available slot on the scheduling link.": "La date et l'heure de début de la réunion. Doit correspondre à un créneau disponible sur le lien de planification.",
48
- "The End date and time of the meeting": "La date et l'heure de fin de la réunion",
49
- "Full name of the person booking the meeting.": "Nom complet de la personne qui a réservé la réunion.",
50
- "Email address of the person booking the meeting.": "Adresse e-mail de la personne qui a réservé la réunion.",
51
- "The email address of the attendee to search for.": "L'adresse email du participant à rechercher.",
52
- "Only search events starting after this date. Use this to limit the search scope and improve performance.": "Rechercher uniquement les événements à partir de cette date. Utilisez ceci pour limiter la portée de la recherche et améliorer les performances.",
53
- "Only search events starting before this date.": "Rechercher uniquement les événements commençant avant cette date.",
54
- "Authorization headers are injected automatically from your connection.": "Les Headers d'autorisation sont injectés automatiquement à partir de votre connexion.",
55
- "Enable for files like PDFs, images, etc.": "Activer pour les fichiers comme les PDFs, les images, etc.",
56
- "All": "Tous",
57
76
  "Confirmed": "Confirmé",
58
77
  "Canceled": "Annulé",
59
- "GET": "GET",
60
- "POST": "POST",
61
- "PATCH": "PATCH",
62
- "PUT": "PUT",
63
- "DELETE": "DELETE",
64
- "HEAD": "HEAD",
65
- "None": "Aucun",
66
- "JSON": "JSON",
67
- "Form Data": "Données du formulaire",
68
- "Raw": "Brut",
69
- "New Booking": "Nouvelle réservation",
70
- "Booking Canceled": "Réservation annulée",
71
- "Booking Rescheduled": "Réservation reprogrammée",
72
- "New Event": "Nouvel événement",
73
- "Triggers when a new meeting is booked on any scheduling link.": "Déclenche lorsqu'une nouvelle réunion est réservée sur n'importe quel lien de planification.",
74
- "Triggers when a scheduled meeting is canceled.": "Déclenche lorsqu'une réunion planifiée est annulée.",
75
- "Triggers when a scheduled meeting is rescheduled to a new time.": "Déclenche quand une réunion planifiée est reprogrammée à une nouvelle heure.",
76
- "Triggers on any SavvyCal event type, including checkout, attendee, and poll events. For the most common cases (new booking, cancellation, reschedule) use the dedicated triggers instead.": "Déclenche sur n'importe quel type d'événement SavvyCal, y compris les événements de paiement, les participants et les sondages. Pour les cas les plus courants (nouvelle réservation, annulation, rééchelon), utilisez plutôt les déclencheurs dédiés.",
77
- "Event Types": "Types d'événements",
78
- "Select which event types to trigger on. Leave empty to trigger on all event types.": "Sélectionnez les types d'événements à activer. Laissez vide pour déclencher sur tous les types d'événements.",
79
78
  "Event Created": "Événement créé",
80
79
  "Event Requested": "Événement demandé",
81
80
  "Event Approved": "Événement approuvé",
@@ -84,12 +83,19 @@
84
83
  "Event Changed": "Événement modifié",
85
84
  "Event Canceled": "Événement annulé",
86
85
  "Checkout Pending": "Paiement en attente",
87
- "Checkout Expired": "Le paiement a expiré",
88
- "Checkout Completed": "Paiement terminé",
86
+ "Checkout Expired": "Paiement expiré",
87
+ "Checkout Completed": "Paiement complété",
89
88
  "Attendee Added": "Participant ajouté",
90
89
  "Attendee Canceled": "Participant annulé",
91
90
  "Attendee Rescheduled": "Participant reprogrammé",
92
- "Poll Response Created": "Réponse du sondage créée",
93
- "Poll Response Updated": "Réponse du sondage mise à jour",
94
- "Workflow Action Triggered": "Action du flux de travail déclenchée"
95
- }
91
+ "Poll Response Created": "Réponse au sondage créée",
92
+ "Poll Response Updated": "Réponse au sondage mise à jour",
93
+ "Workflow Action Triggered": "Action de workflow déclenchée",
94
+ "Please connect your account first": "Veuillez d'abord connecter votre compte",
95
+ "Failed to load scheduling links.": "Impossible de charger les liens de planification.",
96
+ "Failed to load scheduling links. Check your connection.": "Impossible de charger les liens de planification. Vérifiez votre connexion.",
97
+ "Team": "Équipe",
98
+ "Filter scheduling links by team. Leave empty to show all teams.": "Filtrer les liens de planification par équipe. Laisser vide pour toutes les équipes.",
99
+ "Personal": "Personnel",
100
+ "Failed to load teams.": "Impossible de charger les équipes."
101
+ }
package/src/i18n/ja.json CHANGED
@@ -1,95 +1,74 @@
1
1
  {
2
- "Scheduling tool that lets invitees overlay their calendar when picking a time.": "招待者が時間を選択する際にカレンダーをオーバーレイさせるスケジューリングツール。",
3
- "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.",
4
- "Get Current User": "現在のユーザーを取得",
5
- "List Events": "イベントの一覧",
6
- "Get Event": "イベントを取得",
7
- "Cancel Event": "イベントをキャンセル",
8
- "Create Event": "イベントを作成",
9
- "Find Events by Attendee Email": "出席者メールによるイベントの検索",
10
- "List Scheduling Links": "スケジューリングリンクの一覧",
11
- "Custom API Call": "カスタムAPI呼び出し",
12
- "Retrieves the profile of the currently authenticated SavvyCal user.": "現在認証されているSavvyCalユーザーのプロファイルを取得します。",
13
- "Returns a list of scheduled meetings from your SavvyCal account.": "SavvyCalアカウントからスケジュールされたミーティングのリストを返します。",
14
- "Retrieves the details of a specific scheduled meeting by its ID.": "特定の会議の詳細を ID で取得します。",
15
- "Cancels a scheduled meeting in SavvyCal.": "SavvyCalでスケジュールされたミーティングをキャンセルします.",
16
- "Books a meeting on a scheduling link at a specific time slot.": "特定の時間帯のスケジューリングリンク上の会議を予約します。",
17
- "Returns all events where the attendee's email matches the given address.": "参加者のメールが指定されたアドレスに一致するすべてのイベントを返します。",
18
- "Returns all scheduling links configured in your SavvyCal account.": "SavvyCalアカウントで設定されたすべてのスケジューリングリンクを返します。",
19
- "Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
20
- "State": "都道府県:",
21
- "Start After": "開始後",
22
- "Start Before": "開始前",
23
- "Scheduling Link": "スケジュールリンク",
24
- "Maximum Results": "最大結果",
25
- "Event ID": "イベントID",
26
- "Start Time": "開始時刻",
27
- "End Time": "終了時刻",
28
- "Attendee Name": "参加者名",
29
- "Attendee Email": "出席者メール",
30
- "Method": "方法",
31
- "Headers": "ヘッダー",
32
- "Query Parameters": "クエリパラメータ",
33
- "Body Type": "ボディタイプ",
34
- "Body": "本文",
35
- "Response is Binary ?": "応答はバイナリですか?",
36
- "No Error on Failure": "失敗時にエラーはありません",
37
- "Timeout (in seconds)": "タイムアウト(秒)",
38
- "Follow redirects": "リダイレクトをフォローする",
39
- "Filter events by their current status.": "現在のステータスでイベントをフィルタリングします。",
40
- "Only return events that start after this date and time.": "この日付と時刻の後に始まるイベントのみを返します。",
41
- "Only return events that start before this date and time.": "この日付と時刻より前に始まるイベントのみを返します。",
42
- "Only return events booked through a specific scheduling link. Leave empty for all links.": "特定のスケジューリングリンクを通じて予約されたイベントのみを返します。すべてのリンクでは空のままにします。",
43
- "Maximum number of events to return. Leave empty to return all matching events.": "返却するイベントの最大数。一致するすべてのイベントを返す場合は空のままにします。",
44
- "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "イベントの一意のID。 イベントURLのSavvyCal、またはトリガーまたはリストイベントアクションの出力からこれを見つけることができます。",
45
- "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "キャンセルするイベントの一意のID。 トリガーの出力、またはイベントのリスト/イベントの取得アクションからこれを確認できます。",
46
- "Select the scheduling link to book a meeting on.": "会議を予約するスケジューリングリンクを選択します。",
47
- "The start date and time of the meeting. Must match an available slot on the scheduling link.": "ミーティングの開始日時です.スケジューリングリンクの利用可能なスロットと一致する必要があります.",
48
- "The End date and time of the meeting": "会議の終了日時",
49
- "Full name of the person booking the meeting.": "会議を予約する人のフルネーム。",
50
- "Email address of the person booking the meeting.": "ミーティングを予約した人のメールアドレス。",
51
- "The email address of the attendee to search for.": "検索する出席者のメールアドレス。",
52
- "Only search events starting after this date. Use this to limit the search scope and improve performance.": "この日付以降に始まる検索イベントのみです。検索範囲を制限し、パフォーマンスを向上させるには、これを使用してください。",
53
- "Only search events starting before this date.": "この日付より前に開始されているイベントのみを検索します。",
54
- "Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
55
- "Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
56
- "All": "すべて",
57
- "Confirmed": "確認済み",
58
- "Canceled": "キャンセルしました",
59
- "GET": "GET",
60
- "POST": "POST",
61
- "PATCH": "PATCH",
62
- "PUT": "PUT",
63
- "DELETE": "DELETE",
64
- "HEAD": "HEAD",
65
- "None": "なし",
66
- "JSON": "JSON",
67
- "Form Data": "フォームデータ",
68
- "Raw": "Raw",
69
- "New Booking": "新規予約",
70
- "Booking Canceled": "予約がキャンセルされました",
71
- "Booking Rescheduled": "予約の再スケジュール",
72
- "New Event": "新しいイベント",
73
- "Triggers when a new meeting is booked on any scheduling link.": "新しいミーティングが任意のスケジューリングリンクで予約されたときに発生します。",
74
- "Triggers when a scheduled meeting is canceled.": "スケジュールされたミーティングがキャンセルされたときにトリガします.",
75
- "Triggers when a scheduled meeting is rescheduled to a new time.": "スケジュールされたミーティングが新しい時間に再スケジュールされたときにトリガします.",
76
- "Triggers on any SavvyCal event type, including checkout, attendee, and poll events. For the most common cases (new booking, cancellation, reschedule) use the dedicated triggers instead.": "チェックアウト、参加者、投票イベントを含む任意のSavyCalイベントタイプをトリガーします。 最も一般的なケース(新規予約、キャンセル、スケジュール変更)では、代わりに専用のトリガーを使用してください。",
77
- "Event Types": "イベントタイプ",
78
- "Select which event types to trigger on. Leave empty to trigger on all event types.": "トリガーするイベントタイプを選択します。すべてのイベントタイプでトリガーする場合は空のままにします。",
79
- "Event Created": "イベントが作成されました",
80
- "Event Requested": "要求されたイベント",
81
- "Event Approved": "承認されたイベント",
82
- "Event Declined": "イベントが拒否されました",
83
- "Event Rescheduled": "イベントのスケジュールを変更しました",
84
- "Event Changed": "イベントが変更されました",
85
- "Event Canceled": "イベントがキャンセルされました",
86
- "Checkout Pending": "チェックアウト保留中",
87
- "Checkout Expired": "チェックアウト有効期限",
88
- "Checkout Completed": "チェックアウト完了",
89
- "Attendee Added": "参加者が追加されました",
90
- "Attendee Canceled": "参加者がキャンセルされました",
91
- "Attendee Rescheduled": "出席者のスケジュール変更",
92
- "Poll Response Created": "アンケート回答が作成されました",
93
- "Poll Response Updated": "アンケートの回答が更新されました",
94
- "Workflow Action Triggered": "トリガーされたワークフローアクション"
95
- }
2
+ "Personal Access Token (Private Key)": "Personal Access Token (Private Key)",
3
+ "Cancel Event": "Cancel Event",
4
+ "Cancels a scheduled meeting in SavvyCal.": "Cancels a scheduled meeting in SavvyCal.",
5
+ "Create Event": "Create Event",
6
+ "Books a meeting on a scheduling link at a specific time slot.": "Books a meeting on a scheduling link at a specific time slot.",
7
+ "Find Events by Attendee Email": "Find Events by Attendee Email",
8
+ "Returns all events where the attendee's email matches the given address.": "Returns all events where the attendee's email matches the given address.",
9
+ "Get Current User": "Get Current User",
10
+ "Retrieves the profile of the currently authenticated SavvyCal user.": "Retrieves the profile of the currently authenticated SavvyCal user.",
11
+ "Get Event": "Get Event",
12
+ "Retrieves the details of a specific scheduled meeting by its ID.": "Retrieves the details of a specific scheduled meeting by its ID.",
13
+ "List Events": "List Events",
14
+ "Returns a list of scheduled meetings from your SavvyCal account.": "Returns a list of scheduled meetings from your SavvyCal account.",
15
+ "List Scheduling Links": "List Scheduling Links",
16
+ "Returns all scheduling links configured in your SavvyCal account.": "Returns all scheduling links configured in your SavvyCal account.",
17
+ "New Event": "New Event",
18
+ "Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.": "Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.",
19
+ "Event ID": "Event ID",
20
+ "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.",
21
+ "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.",
22
+ "Scheduling Link": "Scheduling Link",
23
+ "Scheduling Links": "Scheduling Links",
24
+ "Select the scheduling link to book a meeting on.": "Select the scheduling link to book a meeting on.",
25
+ "Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.": "Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.",
26
+ "Only return events booked through the selected scheduling links. Leave empty for all links.": "Only return events booked through the selected scheduling links. Leave empty for all links.",
27
+ "Start Time": "Start Time",
28
+ "The start date and time of the meeting. Must match an available slot on the scheduling link.": "The start date and time of the meeting. Must match an available slot on the scheduling link.",
29
+ "End Time": "End Time",
30
+ "The End date and time of the meeting": "The End date and time of the meeting",
31
+ "Attendee Name": "Attendee Name",
32
+ "Full name of the person booking the meeting.": "Full name of the person booking the meeting.",
33
+ "Attendee Email": "Attendee Email",
34
+ "Email address of the person booking the meeting.": "Email address of the person booking the meeting.",
35
+ "The email address of the attendee to search for.": "The email address of the attendee to search for.",
36
+ "Start After": "Start After",
37
+ "Only return events that start after this date and time.": "Only return events that start after this date and time.",
38
+ "Only search events starting after this date. Use this to limit the search scope and improve performance.": "Only search events starting after this date. Use this to limit the search scope and improve performance.",
39
+ "Start Before": "Start Before",
40
+ "Only return events that start before this date and time.": "Only return events that start before this date and time.",
41
+ "Only search events starting before this date.": "Only search events starting before this date.",
42
+ "State": "State",
43
+ "Filter events by their current status. Leave empty to return all statuses.": "Filter events by their current status. Leave empty to return all statuses.",
44
+ "Maximum Results": "Maximum Results",
45
+ "Maximum number of events to return. Leave empty to return all matching events.": "Maximum number of events to return. Leave empty to return all matching events.",
46
+ "Event Types": "Event Types",
47
+ "Select which event types to trigger on. Leave empty to trigger on all event types.": "Select which event types to trigger on. Leave empty to trigger on all event types.",
48
+ "All": "All",
49
+ "Confirmed": "Confirmed",
50
+ "Canceled": "Canceled",
51
+ "Event Created": "Event Created",
52
+ "Event Requested": "Event Requested",
53
+ "Event Approved": "Event Approved",
54
+ "Event Declined": "Event Declined",
55
+ "Event Rescheduled": "Event Rescheduled",
56
+ "Event Changed": "Event Changed",
57
+ "Event Canceled": "Event Canceled",
58
+ "Checkout Pending": "Checkout Pending",
59
+ "Checkout Expired": "Checkout Expired",
60
+ "Checkout Completed": "Checkout Completed",
61
+ "Attendee Added": "Attendee Added",
62
+ "Attendee Canceled": "Attendee Canceled",
63
+ "Attendee Rescheduled": "Attendee Rescheduled",
64
+ "Poll Response Created": "Poll Response Created",
65
+ "Poll Response Updated": "Poll Response Updated",
66
+ "Workflow Action Triggered": "Workflow Action Triggered",
67
+ "Please connect your account first": "Please connect your account first",
68
+ "Failed to load scheduling links.": "Failed to load scheduling links.",
69
+ "Failed to load scheduling links. Check your connection.": "Failed to load scheduling links. Check your connection.",
70
+ "Team": "Team",
71
+ "Filter scheduling links by team. Leave empty to show all teams.": "Filter scheduling links by team. Leave empty to show all teams.",
72
+ "Personal": "Personal",
73
+ "Failed to load teams.": "Failed to load teams."
74
+ }
package/src/i18n/nl.json CHANGED
@@ -1,95 +1,74 @@
1
1
  {
2
- "Scheduling tool that lets invitees overlay their calendar when picking a time.": "Planningstool waarmee genodigden hun kalender kunnen overslaan wanneer ze een tijd kiezen.",
3
- "To get your SavvyCal API token:\n1. Log in to your SavvyCal account at https://savvycal.com\n2. Go to **Settings > Developer**\n3. Click **Create Token**\n4. Give it a name and copy the token (it starts with `pt_secret_`)\n\n**Note:** Keep this token secret — it gives full access to your SavvyCal account.": "Om je SavvyCal API te krijgen:\n1. Log in op je SavvyCal account op https://savvycal.com\n2. Ga naar **Instellingen > Ontwikkelaar**\n3. Klik **Token aanmaken**\n4. Geef het een naam en kopieer het token (het begint met `pt_secret_`)\n\n**Opmerking:** Houd dit token geheim — het geeft volledige toegang tot je SavvyCal account.",
4
- "Get Current User": "Verkrijg huidige gebruiker",
5
- "List Events": "Lijst gebeurtenissen",
6
- "Get Event": "Verkrijg Evenement",
7
- "Cancel Event": "Gebeurtenis annuleren",
8
- "Create Event": "Gebeurtenis aanmaken",
9
- "Find Events by Attendee Email": "Vind evenementen via de Deelnemer E-Mail",
10
- "List Scheduling Links": "Lijst planner links",
11
- "Custom API Call": "Custom API Call",
12
- "Retrieves the profile of the currently authenticated SavvyCal user.": "Ophalen van het profiel van de momenteel geverifieerde SavvyCal gebruiker.",
13
- "Returns a list of scheduled meetings from your SavvyCal account.": "Geeft een lijst van geplande vergaderingen terug van uw SavvyCal account.",
14
- "Retrieves the details of a specific scheduled meeting by its ID.": "Haal de details op van een specifieke geplande vergadering via het ID.",
15
- "Cancels a scheduled meeting in SavvyCal.": "Annuleert een geplande vergadering in SavvyCal.",
16
- "Books a meeting on a scheduling link at a specific time slot.": "Boekt een vergadering op een planningslink op een specifiek tijdstip.",
17
- "Returns all events where the attendee's email matches the given address.": "Retourneert alle gebeurtenissen waar de aanwezige e-mail overeenkomt met het opgegeven adres.",
18
- "Returns all scheduling links configured in your SavvyCal account.": "Retourneert alle geplande links geconfigureerd in uw SavvyCal account.",
19
- "Make a custom API call to a specific endpoint": "Maak een aangepaste API call naar een specifiek eindpunt",
20
- "State": "Provincie",
21
- "Start After": "Start na",
22
- "Start Before": "Start voor",
23
- "Scheduling Link": "Planning link",
24
- "Maximum Results": "Maximaal aantal resultaten",
25
- "Event ID": "Gebeurtenis ID",
26
- "Start Time": "Starttijd",
27
- "End Time": "Eind Tijd",
28
- "Attendee Name": "Naam deelnemer",
29
- "Attendee Email": "Aanwezige e-mail",
30
- "Method": "Methode",
31
- "Headers": "Kopteksten",
32
- "Query Parameters": "Query parameters",
33
- "Body Type": "Type lichaam",
34
- "Body": "Lichaam",
35
- "Response is Binary ?": "Antwoord is binair?",
36
- "No Error on Failure": "Geen fout bij fout",
37
- "Timeout (in seconds)": "Time-out (in seconden)",
38
- "Follow redirects": "Volg omleidingen",
39
- "Filter events by their current status.": "Filter gebeurtenissen op hun huidige status.",
40
- "Only return events that start after this date and time.": "Geeft alleen de gebeurtenis terug die begint na deze datum en tijd.",
41
- "Only return events that start before this date and time.": "Geeft alleen de gebeurtenis weer die voor deze datum en tijd begint.",
42
- "Only return events booked through a specific scheduling link. Leave empty for all links.": "Retourneer alleen gebeurtenissen die zijn geboekt via een specifieke planningslink. Laat leeg voor alle links.",
43
- "Maximum number of events to return. Leave empty to return all matching events.": "Maximum aantal gebeurtenissen om te retourneren. Laat leeg om alle overeenkomende evenementen te retourneren.",
44
- "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "Het unieke ID van de gebeurtenis. Je vindt dit in de event-URL in SavvyCal, of in de uitvoer van een trigger- of lijstgebeurtenisactie.",
45
- "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "Het unieke ID van het evenement om te annuleren. Je kunt dit vinden in de uitvoer van een trigger of de Lijst Gebeurtenissen / neem Event acties.",
46
- "Select the scheduling link to book a meeting on.": "Selecteer de planningslink om een vergadering aan te boeken.",
47
- "The start date and time of the meeting. Must match an available slot on the scheduling link.": "De startdatum en tijd van de vergadering. Moet overeenkomen met een beschikbaar slot op de planningslink.",
48
- "The End date and time of the meeting": "De einddatum en tijd van de vergadering",
49
- "Full name of the person booking the meeting.": "Volledige naam van de persoon die de vergadering heeft georganiseerd.",
50
- "Email address of the person booking the meeting.": "E-mailadres van de persoon die de vergadering boekt.",
51
- "The email address of the attendee to search for.": "Het e-mailadres van de aanwezige om naar te zoeken.",
52
- "Only search events starting after this date. Use this to limit the search scope and improve performance.": "Zoek alleen naar gebeurtenissen die beginnen na deze datum. Gebruik dit om het zoekbereik te beperken en de prestaties te verbeteren.",
53
- "Only search events starting before this date.": "Zoek alleen naar gebeurtenissen die beginnen voor deze datum.",
54
- "Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
55
- "Enable for files like PDFs, images, etc.": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc.",
56
- "All": "Allemaal",
57
- "Confirmed": "Bevestigd",
58
- "Canceled": "Geannuleerd",
59
- "GET": "KRIJG",
60
- "POST": "POSTE",
61
- "PATCH": "BEKIJK",
62
- "PUT": "PUT",
63
- "DELETE": "VERWIJDEREN",
64
- "HEAD": "HOOFD",
65
- "None": "geen",
66
- "JSON": "JSON",
67
- "Form Data": "Formulieren gegevens",
68
- "Raw": "Onbewerkte",
69
- "New Booking": "Nieuwe boeking",
70
- "Booking Canceled": "Boeking geannuleerd",
71
- "Booking Rescheduled": "Boeking gerepareerd",
72
- "New Event": "Nieuwe gebeurtenis",
73
- "Triggers when a new meeting is booked on any scheduling link.": "Triggert wanneer een nieuwe vergadering wordt geboekt op een planningslink.",
74
- "Triggers when a scheduled meeting is canceled.": "Triggert wanneer een geplande vergadering wordt geannuleerd.",
75
- "Triggers when a scheduled meeting is rescheduled to a new time.": "Triggert wanneer een geplande vergadering wordt verplaatst naar een nieuwe tijd.",
76
- "Triggers on any SavvyCal event type, including checkout, attendee, and poll events. For the most common cases (new booking, cancellation, reschedule) use the dedicated triggers instead.": "Triggers op elk SavvyCal event type, inclusief afrekenen, deelnemers en poll gebeurtenissen. Voor de meest voorkomende gevallen (nieuwe boeking, annulering, verloop) gebruik je de toegewijde triggers.",
2
+ "Personal Access Token (Private Key)": "Personal Access Token (Private Key)",
3
+ "Cancel Event": "Cancel Event",
4
+ "Cancels a scheduled meeting in SavvyCal.": "Cancels a scheduled meeting in SavvyCal.",
5
+ "Create Event": "Create Event",
6
+ "Books a meeting on a scheduling link at a specific time slot.": "Books a meeting on a scheduling link at a specific time slot.",
7
+ "Find Events by Attendee Email": "Find Events by Attendee Email",
8
+ "Returns all events where the attendee's email matches the given address.": "Returns all events where the attendee's email matches the given address.",
9
+ "Get Current User": "Get Current User",
10
+ "Retrieves the profile of the currently authenticated SavvyCal user.": "Retrieves the profile of the currently authenticated SavvyCal user.",
11
+ "Get Event": "Get Event",
12
+ "Retrieves the details of a specific scheduled meeting by its ID.": "Retrieves the details of a specific scheduled meeting by its ID.",
13
+ "List Events": "List Events",
14
+ "Returns a list of scheduled meetings from your SavvyCal account.": "Returns a list of scheduled meetings from your SavvyCal account.",
15
+ "List Scheduling Links": "List Scheduling Links",
16
+ "Returns all scheduling links configured in your SavvyCal account.": "Returns all scheduling links configured in your SavvyCal account.",
17
+ "New Event": "New Event",
18
+ "Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.": "Triggers when a SavvyCal event occurs. Select one or more event types, or leave empty to trigger on all types.",
19
+ "Event ID": "Event ID",
20
+ "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.": "The unique ID of the event to cancel. You can find this from the output of a trigger or the List Events / Get Event actions.",
21
+ "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.": "The unique ID of the event. You can find this in the event URL in SavvyCal, or from the output of a trigger or List Events action.",
22
+ "Scheduling Link": "Scheduling Link",
23
+ "Scheduling Links": "Scheduling Links",
24
+ "Select the scheduling link to book a meeting on.": "Select the scheduling link to book a meeting on.",
25
+ "Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.": "Only trigger for events on the selected scheduling links. Leave empty to trigger for all links.",
26
+ "Only return events booked through the selected scheduling links. Leave empty for all links.": "Only return events booked through the selected scheduling links. Leave empty for all links.",
27
+ "Start Time": "Start Time",
28
+ "The start date and time of the meeting. Must match an available slot on the scheduling link.": "The start date and time of the meeting. Must match an available slot on the scheduling link.",
29
+ "End Time": "End Time",
30
+ "The End date and time of the meeting": "The End date and time of the meeting",
31
+ "Attendee Name": "Attendee Name",
32
+ "Full name of the person booking the meeting.": "Full name of the person booking the meeting.",
33
+ "Attendee Email": "Attendee Email",
34
+ "Email address of the person booking the meeting.": "Email address of the person booking the meeting.",
35
+ "The email address of the attendee to search for.": "The email address of the attendee to search for.",
36
+ "Start After": "Start After",
37
+ "Only return events that start after this date and time.": "Only return events that start after this date and time.",
38
+ "Only search events starting after this date. Use this to limit the search scope and improve performance.": "Only search events starting after this date. Use this to limit the search scope and improve performance.",
39
+ "Start Before": "Start Before",
40
+ "Only return events that start before this date and time.": "Only return events that start before this date and time.",
41
+ "Only search events starting before this date.": "Only search events starting before this date.",
42
+ "State": "State",
43
+ "Filter events by their current status. Leave empty to return all statuses.": "Filter events by their current status. Leave empty to return all statuses.",
44
+ "Maximum Results": "Maximum Results",
45
+ "Maximum number of events to return. Leave empty to return all matching events.": "Maximum number of events to return. Leave empty to return all matching events.",
77
46
  "Event Types": "Event Types",
78
- "Select which event types to trigger on. Leave empty to trigger on all event types.": "Selecteer aan welke event types u wilt starten. Laat leeg om te triggeren op alle event types.",
79
- "Event Created": "Event aangemaakt",
80
- "Event Requested": "Evenement aangevraagd",
81
- "Event Approved": "Gebeurtenis goedgekeurd",
82
- "Event Declined": "Afspraak geweigerd",
83
- "Event Rescheduled": "Evenement verplaatst",
84
- "Event Changed": "Afspraak gewijzigd",
85
- "Event Canceled": "Afspraak Geannuleerd",
86
- "Checkout Pending": "Afrekenen in behandeling",
87
- "Checkout Expired": "Checkout verlopen",
88
- "Checkout Completed": "Afrekenen voltooid",
89
- "Attendee Added": "Aanwezige toegevoegd",
90
- "Attendee Canceled": "Aanwezige geannuleerd",
91
- "Attendee Rescheduled": "Aanwezige Verzet",
92
- "Poll Response Created": "Poll Response Gemaakt",
93
- "Poll Response Updated": "Poll Response Bijgewerkt",
94
- "Workflow Action Triggered": "Workflow Actie geactiveerd"
95
- }
47
+ "Select which event types to trigger on. Leave empty to trigger on all event types.": "Select which event types to trigger on. Leave empty to trigger on all event types.",
48
+ "All": "All",
49
+ "Confirmed": "Confirmed",
50
+ "Canceled": "Canceled",
51
+ "Event Created": "Event Created",
52
+ "Event Requested": "Event Requested",
53
+ "Event Approved": "Event Approved",
54
+ "Event Declined": "Event Declined",
55
+ "Event Rescheduled": "Event Rescheduled",
56
+ "Event Changed": "Event Changed",
57
+ "Event Canceled": "Event Canceled",
58
+ "Checkout Pending": "Checkout Pending",
59
+ "Checkout Expired": "Checkout Expired",
60
+ "Checkout Completed": "Checkout Completed",
61
+ "Attendee Added": "Attendee Added",
62
+ "Attendee Canceled": "Attendee Canceled",
63
+ "Attendee Rescheduled": "Attendee Rescheduled",
64
+ "Poll Response Created": "Poll Response Created",
65
+ "Poll Response Updated": "Poll Response Updated",
66
+ "Workflow Action Triggered": "Workflow Action Triggered",
67
+ "Please connect your account first": "Please connect your account first",
68
+ "Failed to load scheduling links.": "Failed to load scheduling links.",
69
+ "Failed to load scheduling links. Check your connection.": "Failed to load scheduling links. Check your connection.",
70
+ "Team": "Team",
71
+ "Filter scheduling links by team. Leave empty to show all teams.": "Filter scheduling links by team. Leave empty to show all teams.",
72
+ "Personal": "Personal",
73
+ "Failed to load teams.": "Failed to load teams."
74
+ }