@activepieces/piece-savvycal 0.0.1 → 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.
- package/package.json +4 -4
- package/src/i18n/de.json +74 -0
- package/src/i18n/es.json +74 -0
- package/src/i18n/fr.json +101 -0
- package/src/i18n/ja.json +74 -0
- package/src/i18n/nl.json +74 -0
- package/src/i18n/pt.json +74 -0
- package/src/i18n/ru.json +74 -0
- package/src/i18n/translation.json +127 -0
- package/src/i18n/vi.json +74 -0
- package/src/i18n/zh.json +74 -0
- package/src/index.d.ts +3 -2
- package/src/index.js +27 -36
- package/src/index.js.map +1 -1
- package/src/lib/actions/cancel-event.d.ts +3 -1
- package/src/lib/actions/cancel-event.js +3 -3
- package/src/lib/actions/cancel-event.js.map +1 -1
- package/src/lib/actions/create-event.d.ts +10 -2
- package/src/lib/actions/create-event.js +32 -17
- package/src/lib/actions/create-event.js.map +1 -1
- package/src/lib/actions/delete-scheduling-link.d.ts +10 -0
- package/src/lib/actions/delete-scheduling-link.js +67 -0
- package/src/lib/actions/delete-scheduling-link.js.map +1 -0
- package/src/lib/actions/duplicate-scheduling-link.d.ts +10 -0
- package/src/lib/actions/duplicate-scheduling-link.js +63 -0
- package/src/lib/actions/duplicate-scheduling-link.js.map +1 -0
- package/src/lib/actions/find-events-by-email.d.ts +3 -1
- package/src/lib/actions/find-events-by-email.js +3 -3
- package/src/lib/actions/find-events-by-email.js.map +1 -1
- package/src/lib/actions/get-current-user.d.ts +3 -1
- package/src/lib/actions/get-current-user.js +3 -3
- package/src/lib/actions/get-current-user.js.map +1 -1
- package/src/lib/actions/get-event.d.ts +3 -1
- package/src/lib/actions/get-event.js +3 -3
- package/src/lib/actions/get-event.js.map +1 -1
- package/src/lib/actions/get-link-slots.d.ts +10 -0
- package/src/lib/actions/get-link-slots.js +70 -0
- package/src/lib/actions/get-link-slots.js.map +1 -0
- package/src/lib/actions/get-scheduling-link.d.ts +10 -0
- package/src/lib/actions/get-scheduling-link.js +63 -0
- package/src/lib/actions/get-scheduling-link.js.map +1 -0
- package/src/lib/actions/get-workflow-rules.d.ts +7 -0
- package/src/lib/actions/get-workflow-rules.js +50 -0
- package/src/lib/actions/get-workflow-rules.js.map +1 -0
- package/src/lib/actions/list-events.d.ts +10 -3
- package/src/lib/actions/list-events.js +70 -24
- package/src/lib/actions/list-events.js.map +1 -1
- package/src/lib/actions/list-scheduling-links.d.ts +7 -1
- package/src/lib/actions/list-scheduling-links.js +30 -17
- package/src/lib/actions/list-scheduling-links.js.map +1 -1
- package/src/lib/actions/list-workflows.d.ts +3 -0
- package/src/lib/actions/list-workflows.js +35 -0
- package/src/lib/actions/list-workflows.js.map +1 -0
- package/src/lib/actions/toggle-scheduling-link.d.ts +10 -0
- package/src/lib/actions/toggle-scheduling-link.js +63 -0
- package/src/lib/actions/toggle-scheduling-link.js.map +1 -0
- package/src/lib/auth.d.ts +14 -0
- package/src/lib/auth.js +59 -0
- package/src/lib/auth.js.map +1 -0
- package/src/lib/common/index.d.ts +13 -0
- package/src/lib/common/index.js +98 -29
- package/src/lib/common/index.js.map +1 -1
- package/src/lib/triggers/new-event.d.ts +36 -4
- package/src/lib/triggers/new-event.js +85 -18
- package/src/lib/triggers/new-event.js.map +1 -1
- package/src/lib/triggers/new-poll-response.d.ts +18 -0
- package/src/lib/triggers/new-poll-response.js +81 -0
- package/src/lib/triggers/new-poll-response.js.map +1 -0
- package/src/lib/triggers/workflow-action-triggered.d.ts +10 -0
- package/src/lib/triggers/workflow-action-triggered.js +65 -0
- package/src/lib/triggers/workflow-action-triggered.js.map +1 -0
- package/src/lib/common/webhook-trigger-factory.d.ts +0 -7
- package/src/lib/common/webhook-trigger-factory.js +0 -96
- package/src/lib/common/webhook-trigger-factory.js.map +0 -1
- package/src/lib/triggers/booking-canceled.d.ts +0 -1
- package/src/lib/triggers/booking-canceled.js +0 -11
- package/src/lib/triggers/booking-canceled.js.map +0 -1
- package/src/lib/triggers/booking-rescheduled.d.ts +0 -1
- package/src/lib/triggers/booking-rescheduled.js +0 -11
- package/src/lib/triggers/booking-rescheduled.js.map +0 -1
- package/src/lib/triggers/new-booking.d.ts +0 -1
- package/src/lib/triggers/new-booking.js +0 -11
- package/src/lib/triggers/new-booking.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-savvycal",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"lint": "eslint 'src/**/*.ts'"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@activepieces/pieces-common": "0.12.
|
|
12
|
-
"@activepieces/pieces-framework": "0.
|
|
13
|
-
"@activepieces/shared": "0.
|
|
11
|
+
"@activepieces/pieces-common": "0.12.3",
|
|
12
|
+
"@activepieces/pieces-framework": "0.28.1",
|
|
13
|
+
"@activepieces/shared": "0.71.3",
|
|
14
14
|
"tslib": "2.6.2"
|
|
15
15
|
}
|
|
16
16
|
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
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/es.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
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/fr.json
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
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.",
|
|
6
|
+
"Create Event": "Créer un événement",
|
|
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",
|
|
11
|
+
"Retrieves the profile of the currently authenticated SavvyCal user.": "Récupère le profil de l'utilisateur SavvyCal actuellement authentifié.",
|
|
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.",
|
|
52
|
+
"Scheduling Link": "Lien de planification",
|
|
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.",
|
|
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",
|
|
61
|
+
"Attendee Name": "Nom du participant",
|
|
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",
|
|
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.",
|
|
76
|
+
"Confirmed": "Confirmé",
|
|
77
|
+
"Canceled": "Annulé",
|
|
78
|
+
"Event Created": "Événement créé",
|
|
79
|
+
"Event Requested": "Événement demandé",
|
|
80
|
+
"Event Approved": "Événement approuvé",
|
|
81
|
+
"Event Declined": "Événement refusé",
|
|
82
|
+
"Event Rescheduled": "Événement reprogrammé",
|
|
83
|
+
"Event Changed": "Événement modifié",
|
|
84
|
+
"Event Canceled": "Événement annulé",
|
|
85
|
+
"Checkout Pending": "Paiement en attente",
|
|
86
|
+
"Checkout Expired": "Paiement expiré",
|
|
87
|
+
"Checkout Completed": "Paiement complété",
|
|
88
|
+
"Attendee Added": "Participant ajouté",
|
|
89
|
+
"Attendee Canceled": "Participant annulé",
|
|
90
|
+
"Attendee Rescheduled": "Participant reprogrammé",
|
|
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
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
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
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
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/pt.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
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/ru.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
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
|
+
}
|