Skip to content

Commit 541bdd3

Browse files
authored
feat(i18n): update translations (#1820)
1 parent 60d53ba commit 541bdd3

File tree

11 files changed

+754
-24
lines changed

11 files changed

+754
-24
lines changed

apps/docs/content/docs/de/tools/elevenlabs.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ TTS mit ElevenLabs-Stimmen konvertieren
6060
| Parameter | Typ | Beschreibung |
6161
| --------- | ---- | ----------- |
6262
| `audioUrl` | string | Die URL der generierten Audiodatei |
63+
| `audioFile` | file | Die generierte Audiodatei |
6364

6465
## Hinweise
6566

apps/docs/content/docs/de/tools/typeform.mdx

Lines changed: 143 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In Sim ermöglicht die Typeform-Integration Ihren Agenten, programmatisch mit Ih
4646

4747
## Nutzungsanleitung
4848

49-
Integrieren Sie Typeform in den Workflow. Kann Antworten abrufen, Dateien herunterladen und Formulareinblicke gewinnen. API-Schlüssel erforderlich.
49+
Integriert Typeform in den Workflow. Kann Antworten abrufen, Dateien herunterladen und Formularstatistiken erhalten. Kann im Trigger-Modus verwendet werden, um einen Workflow auszulösen, wenn ein Formular abgesendet wird. Erfordert API-Schlüssel.
5050

5151
## Tools
5252

@@ -69,9 +69,25 @@ Formularantworten von Typeform abrufen
6969

7070
| Parameter | Typ | Beschreibung |
7171
| --------- | ---- | ----------- |
72-
| `total_items` | number | Gesamtanzahl der Antworten |
73-
| `page_count` | number | Gesamtanzahl der Seiten |
74-
| `items` | json | Antwortelemente |
72+
| `total_items` | number | Gesamtzahl der Antworten/Formulare |
73+
| `page_count` | number | Gesamtseitenanzahl |
74+
| `items` | json | Array der Antwort-/Formularelemente |
75+
| `id` | string | Eindeutige Formular-ID |
76+
| `title` | string | Formulartitel |
77+
| `type` | string | Formulartyp |
78+
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
79+
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
80+
| `settings` | json | Formulareinstellungsobjekt |
81+
| `theme` | json | Theme-Konfigurationsobjekt |
82+
| `workspace` | json | Workspace-Informationen |
83+
| `fields` | json | Array der Formularfelder/Fragen |
84+
| `thankyou_screens` | json | Array der Dankesbildschirme |
85+
| `_links` | json | Links zu verwandten Ressourcen |
86+
| `deleted` | boolean | Ob das Formular erfolgreich gelöscht wurde |
87+
| `message` | string | Löschbestätigungsnachricht |
88+
| `fileUrl` | string | URL der heruntergeladenen Datei |
89+
| `contentType` | string | Datei-Content-Type |
90+
| `filename` | string | Dateiname |
7591

7692
### `typeform_files`
7793

@@ -113,6 +129,129 @@ Einblicke und Analysen für Typeform-Formulare abrufen
113129
| --------- | ---- | ----------- |
114130
| `fields` | array | Anzahl der Benutzer, die bei diesem Feld abgebrochen haben |
115131

132+
### `typeform_list_forms`
133+
134+
Eine Liste aller Formulare in Ihrem Typeform-Konto abrufen
135+
136+
#### Eingabe
137+
138+
| Parameter | Typ | Erforderlich | Beschreibung |
139+
| --------- | ---- | -------- | ----------- |
140+
| `apiKey` | string | Ja | Typeform persönliches Zugriffstoken |
141+
| `search` | string | Nein | Suchanfrage zum Filtern von Formularen nach Titel |
142+
| `page` | number | Nein | Seitennummer \(Standard: 1\) |
143+
| `pageSize` | number | Nein | Anzahl der Formulare pro Seite \(Standard: 10, max: 200\) |
144+
| `workspaceId` | string | Nein | Formulare nach Workspace-ID filtern |
145+
146+
#### Ausgabe
147+
148+
| Parameter | Typ | Beschreibung |
149+
| --------- | ---- | ----------- |
150+
| `total_items` | number | Gesamtanzahl der Formulare im Konto |
151+
| `page_count` | number | Gesamtanzahl der verfügbaren Seiten |
152+
| `items` | array | Array von Formularobjekten |
153+
154+
### `typeform_get_form`
155+
156+
Vollständige Details und Struktur eines bestimmten Formulars abrufen
157+
158+
#### Eingabe
159+
160+
| Parameter | Typ | Erforderlich | Beschreibung |
161+
| --------- | ---- | -------- | ----------- |
162+
| `apiKey` | string | Ja | Typeform persönliches Zugriffstoken |
163+
| `formId` | string | Ja | Eindeutige Formular-ID |
164+
165+
#### Ausgabe
166+
167+
| Parameter | Typ | Beschreibung |
168+
| --------- | ---- | ----------- |
169+
| `id` | string | Eindeutige Formular-ID |
170+
| `title` | string | Formulartitel |
171+
| `type` | string | Formulartyp \(form, quiz, etc.\) |
172+
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
173+
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
174+
| `settings` | object | Formulareinstellungen einschließlich Sprache, Fortschrittsbalken, etc. |
175+
| `theme` | object | Theme-Konfiguration mit Farben, Schriftarten und Design-Einstellungen |
176+
| `workspace` | object | Workspace-Informationen |
177+
178+
### `typeform_create_form`
179+
180+
Ein neues Formular mit Feldern und Einstellungen erstellen
181+
182+
#### Eingabe
183+
184+
| Parameter | Typ | Erforderlich | Beschreibung |
185+
| --------- | ---- | -------- | ----------- |
186+
| `apiKey` | string | Ja | Typeform persönliches Zugriffstoken |
187+
| `title` | string | Ja | Formulartitel |
188+
| `type` | string | Nein | Formulartyp \(Standard: "form"\). Optionen: "form", "quiz" |
189+
| `workspaceId` | string | Nein | Workspace-ID, in der das Formular erstellt werden soll |
190+
| `fields` | json | Nein | Array von Feldobjekten, die die Formularstruktur definieren. Jedes Feld benötigt: Typ, Titel und optionale Eigenschaften/Validierungen |
191+
| `settings` | json | Nein | Formulareinstellungsobjekt \(Sprache, Fortschrittsbalken, etc.\) |
192+
| `themeId` | string | Nein | Theme-ID, die auf das Formular angewendet werden soll |
193+
194+
#### Ausgabe
195+
196+
| Parameter | Typ | Beschreibung |
197+
| --------- | ---- | ----------- |
198+
| `id` | string | Eindeutige Kennung des erstellten Formulars |
199+
| `title` | string | Formulartitel |
200+
| `type` | string | Formulartyp |
201+
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
202+
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
203+
| `settings` | object | Formulareinstellungen |
204+
| `theme` | object | Angewandte Theme-Konfiguration |
205+
| `workspace` | object | Workspace-Informationen |
206+
| `fields` | array | Array der erstellten Formularfelder |
207+
| `_links` | object | Links zu verwandten Ressourcen |
208+
209+
### `typeform_update_form`
210+
211+
Ein bestehendes Formular mit JSON Patch-Operationen aktualisieren
212+
213+
#### Eingabe
214+
215+
| Parameter | Typ | Erforderlich | Beschreibung |
216+
| --------- | ---- | -------- | ----------- |
217+
| `apiKey` | string | Ja | Typeform persönliches Zugriffstoken |
218+
| `formId` | string | Ja | Eindeutige Kennung des zu aktualisierenden Formulars |
219+
| `operations` | json | Ja | Array von JSON Patch-Operationen \(RFC 6902\). Jede Operation benötigt: op \(add/remove/replace\), path und value \(für add/replace\) |
220+
221+
#### Ausgabe
222+
223+
| Parameter | Typ | Beschreibung |
224+
| --------- | ---- | ----------- |
225+
| `id` | string | Eindeutige Kennung des aktualisierten Formulars |
226+
| `title` | string | Formulartitel |
227+
| `type` | string | Formulartyp |
228+
| `created_at` | string | ISO-Zeitstempel der Formularerstellung |
229+
| `last_updated_at` | string | ISO-Zeitstempel der letzten Aktualisierung |
230+
| `settings` | object | Formulareinstellungen |
231+
| `theme` | object | Theme-Konfiguration |
232+
| `workspace` | object | Workspace-Informationen |
233+
| `fields` | array | Array der Formularfelder |
234+
| `thankyou_screens` | array | Array der Dankesbildschirme |
235+
| `_links` | object | Links zu verwandten Ressourcen |
236+
237+
### `typeform_delete_form`
238+
239+
Ein Formular und alle seine Antworten dauerhaft löschen
240+
241+
#### Eingabe
242+
243+
| Parameter | Typ | Erforderlich | Beschreibung |
244+
| --------- | ---- | -------- | ----------- |
245+
| `apiKey` | string | Ja | Typeform persönliches Zugriffstoken |
246+
| `formId` | string | Ja | Eindeutige Kennung des zu löschenden Formulars |
247+
248+
#### Ausgabe
249+
250+
| Parameter | Typ | Beschreibung |
251+
| --------- | ---- | ----------- |
252+
| `deleted` | boolean | Ob das Formular erfolgreich gelöscht wurde |
253+
| `message` | string | Löschbestätigungsnachricht |
254+
116255
## Hinweise
117256

118257
- Kategorie: `tools`

apps/docs/content/docs/es/tools/elevenlabs.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Convertir TTS usando voces de ElevenLabs
6060
| Parámetro | Tipo | Descripción |
6161
| --------- | ---- | ----------- |
6262
| `audioUrl` | string | La URL del audio generado |
63+
| `audioFile` | file | El archivo de audio generado |
6364

6465
## Notas
6566

apps/docs/content/docs/es/tools/typeform.mdx

Lines changed: 142 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ En Sim, la integración de Typeform permite a tus agentes interactuar programát
4646

4747
## Instrucciones de uso
4848

49-
Integra Typeform en el flujo de trabajo. Puede recuperar respuestas, descargar archivos y obtener información de formularios. Requiere clave API.
49+
Integra Typeform en el flujo de trabajo. Puede recuperar respuestas, descargar archivos y obtener información de formularios. Se puede usar en modo de activación para iniciar un flujo de trabajo cuando se envía un formulario. Requiere clave API.
5050

5151
## Herramientas
5252

@@ -69,9 +69,25 @@ Recuperar respuestas de formularios de Typeform
6969

7070
| Parámetro | Tipo | Descripción |
7171
| --------- | ---- | ----------- |
72-
| `total_items` | number | Recuento total de respuestas |
72+
| `total_items` | number | Recuento total de respuestas/formularios |
7373
| `page_count` | number | Recuento total de páginas |
74-
| `items` | json | Elementos de respuesta |
74+
| `items` | json | Array de elementos de respuesta/formulario |
75+
| `id` | string | Identificador único del formulario |
76+
| `title` | string | Título del formulario |
77+
| `type` | string | Tipo de formulario |
78+
| `created_at` | string | Marca de tiempo ISO de creación del formulario |
79+
| `last_updated_at` | string | Marca de tiempo ISO de última actualización |
80+
| `settings` | json | Objeto de configuración del formulario |
81+
| `theme` | json | Objeto de configuración del tema |
82+
| `workspace` | json | Información del espacio de trabajo |
83+
| `fields` | json | Array de campos/preguntas del formulario |
84+
| `thankyou_screens` | json | Array de pantallas de agradecimiento |
85+
| `_links` | json | Enlaces a recursos relacionados |
86+
| `deleted` | boolean | Si el formulario se eliminó correctamente |
87+
| `message` | string | Mensaje de confirmación de eliminación |
88+
| `fileUrl` | string | URL del archivo descargado |
89+
| `contentType` | string | Tipo de contenido del archivo |
90+
| `filename` | string | Nombre del archivo |
7591

7692
### `typeform_files`
7793

@@ -113,6 +129,129 @@ Obtener información y análisis para formularios de Typeform
113129
| --------- | ---- | ----------- |
114130
| `fields` | array | Número de usuarios que abandonaron en este campo |
115131

132+
### `typeform_list_forms`
133+
134+
Recupera una lista de todos los formularios en tu cuenta de Typeform
135+
136+
#### Entrada
137+
138+
| Parámetro | Tipo | Obligatorio | Descripción |
139+
| --------- | ---- | -------- | ----------- |
140+
| `apiKey` | string || Token de acceso personal de Typeform |
141+
| `search` | string | No | Consulta de búsqueda para filtrar formularios por título |
142+
| `page` | number | No | Número de página \(predeterminado: 1\) |
143+
| `pageSize` | number | No | Número de formularios por página \(predeterminado: 10, máx: 200\) |
144+
| `workspaceId` | string | No | Filtrar formularios por ID de espacio de trabajo |
145+
146+
#### Salida
147+
148+
| Parámetro | Tipo | Descripción |
149+
| --------- | ---- | ----------- |
150+
| `total_items` | number | Número total de formularios en la cuenta |
151+
| `page_count` | number | Número total de páginas disponibles |
152+
| `items` | array | Array de objetos de formulario |
153+
154+
### `typeform_get_form`
155+
156+
Recuperar detalles completos y estructura de un formulario específico
157+
158+
#### Entrada
159+
160+
| Parámetro | Tipo | Obligatorio | Descripción |
161+
| --------- | ---- | -------- | ----------- |
162+
| `apiKey` | string || Token de acceso personal de Typeform |
163+
| `formId` | string || Identificador único del formulario |
164+
165+
#### Salida
166+
167+
| Parámetro | Tipo | Descripción |
168+
| --------- | ---- | ----------- |
169+
| `id` | string | Identificador único del formulario |
170+
| `title` | string | Título del formulario |
171+
| `type` | string | Tipo de formulario \(form, quiz, etc.\) |
172+
| `created_at` | string | Marca de tiempo ISO de creación del formulario |
173+
| `last_updated_at` | string | Marca de tiempo ISO de última actualización |
174+
| `settings` | object | Configuración del formulario incluyendo idioma, barra de progreso, etc. |
175+
| `theme` | object | Configuración del tema con colores, fuentes y ajustes de diseño |
176+
| `workspace` | object | Información del espacio de trabajo |
177+
178+
### `typeform_create_form`
179+
180+
Crear un nuevo formulario con campos y configuraciones
181+
182+
#### Entrada
183+
184+
| Parámetro | Tipo | Obligatorio | Descripción |
185+
| --------- | ---- | -------- | ----------- |
186+
| `apiKey` | string || Token de acceso personal de Typeform |
187+
| `title` | string || Título del formulario |
188+
| `type` | string | No | Tipo de formulario \(predeterminado: "form"\). Opciones: "form", "quiz" |
189+
| `workspaceId` | string | No | ID del espacio de trabajo donde crear el formulario |
190+
| `fields` | json | No | Array de objetos de campo que definen la estructura del formulario. Cada campo necesita: tipo, título y propiedades/validaciones opcionales |
191+
| `settings` | json | No | Objeto de configuración del formulario \(idioma, barra_de_progreso, etc.\) |
192+
| `themeId` | string | No | ID del tema a aplicar al formulario |
193+
194+
#### Salida
195+
196+
| Parámetro | Tipo | Descripción |
197+
| --------- | ---- | ----------- |
198+
| `id` | string | Identificador único del formulario creado |
199+
| `title` | string | Título del formulario |
200+
| `type` | string | Tipo de formulario |
201+
| `created_at` | string | Marca de tiempo ISO de creación del formulario |
202+
| `last_updated_at` | string | Marca de tiempo ISO de última actualización |
203+
| `settings` | object | Configuración del formulario |
204+
| `theme` | object | Configuración del tema aplicado |
205+
| `workspace` | object | Información del espacio de trabajo |
206+
| `fields` | array | Array de campos del formulario creados |
207+
| `_links` | object | Enlaces a recursos relacionados |
208+
209+
### `typeform_update_form`
210+
211+
Actualizar un formulario existente usando operaciones JSON Patch
212+
213+
#### Entrada
214+
215+
| Parámetro | Tipo | Obligatorio | Descripción |
216+
| --------- | ---- | -------- | ----------- |
217+
| `apiKey` | string || Token de acceso personal de Typeform |
218+
| `formId` | string || Identificador único del formulario a actualizar |
219+
| `operations` | json || Array de operaciones JSON Patch \(RFC 6902\). Cada operación necesita: op \(add/remove/replace\), path, y value \(para add/replace\) |
220+
221+
#### Salida
222+
223+
| Parámetro | Tipo | Descripción |
224+
| --------- | ---- | ----------- |
225+
| `id` | string | Identificador único del formulario actualizado |
226+
| `title` | string | Título del formulario |
227+
| `type` | string | Tipo de formulario |
228+
| `created_at` | string | Marca de tiempo ISO de creación del formulario |
229+
| `last_updated_at` | string | Marca de tiempo ISO de última actualización |
230+
| `settings` | object | Configuración del formulario |
231+
| `theme` | object | Configuración del tema |
232+
| `workspace` | object | Información del espacio de trabajo |
233+
| `fields` | array | Array de campos del formulario |
234+
| `thankyou_screens` | array | Array de pantallas de agradecimiento |
235+
| `_links` | object | Enlaces a recursos relacionados |
236+
237+
### `typeform_delete_form`
238+
239+
Eliminar permanentemente un formulario y todas sus respuestas
240+
241+
#### Entrada
242+
243+
| Parámetro | Tipo | Obligatorio | Descripción |
244+
| --------- | ---- | -------- | ----------- |
245+
| `apiKey` | string || Token de acceso personal de Typeform |
246+
| `formId` | string || Identificador único del formulario a eliminar |
247+
248+
#### Salida
249+
250+
| Parámetro | Tipo | Descripción |
251+
| --------- | ---- | ----------- |
252+
| `deleted` | boolean | Si el formulario se eliminó correctamente |
253+
| `message` | string | Mensaje de confirmación de eliminación |
254+
116255
## Notas
117256

118257
- Categoría: `tools`

apps/docs/content/docs/fr/tools/elevenlabs.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Convertir TTS en utilisant les voix d'ElevenLabs
6060
| Paramètre | Type | Description |
6161
| --------- | ---- | ----------- |
6262
| `audioUrl` | string | L'URL de l'audio généré |
63+
| `audioFile` | file | Le fichier audio généré |
6364

6465
## Notes
6566

0 commit comments

Comments
 (0)