feat(i18n): update translations (#1734)

This commit is contained in:
Waleed
2025-10-26 18:35:20 -07:00
committed by GitHub
parent 274d5e3afc
commit ec2cc82b72
16 changed files with 61 additions and 51 deletions

View File

@@ -207,18 +207,18 @@ Populate Clay with data from a JSON file. Enables direct communication and notif
#### Input
| Parameter | Type | Required | Description |
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `webhookURL` | string | Yes | The webhook URL to populate |
| `data` | json | Yes | The data to populate |
| `authToken` | string | Yes | Auth token for Clay webhook authentication |
| `webhookURL` | string | Ja | Die Webhook-URL, die befüllt werden soll |
| `data` | json | Ja | Die Daten, die befüllt werden sollen |
| `authToken` | string | Nein | Optionaler Auth-Token für die Clay-Webhook-Authentifizierung \(die meisten Webhooks benötigen dies nicht\) |
#### Output
| Parameter | Type | Description |
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | json | Clay populate operation results including response data from Clay webhook |
| `data` | json | Antwortdaten vom Clay-Webhook |
| `metadata` | object | Webhook-Antwort-Metadaten |
## Notes

View File

@@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="discord"
color="#E0E0E0"
color="#5865F2"
icon={true}
iconSvg={`<svg className="block-icon"

View File

@@ -139,7 +139,8 @@ Suche nach ähnlichen Vektoren in einer Qdrant-Sammlung
| `collection` | string | Ja | Sammlungsname |
| `vector` | array | Ja | Zu suchender Vektor |
| `limit` | number | Nein | Anzahl der zurückzugebenden Ergebnisse |
| `filter` | object | Nein | Filter für die Suche |
| `filter` | object | Nein | Auf die Suche anzuwendender Filter |
| `search_return_data` | string | Nein | Aus der Suche zurückzugebende Daten |
| `with_payload` | boolean | Nein | Payload in Antwort einschließen |
| `with_vector` | boolean | Nein | Vektor in Antwort einschließen |
@@ -161,7 +162,8 @@ Punkte anhand der ID aus einer Qdrant-Sammlung abrufen
| `url` | string | Ja | Qdrant-Basis-URL |
| `apiKey` | string | Nein | Qdrant-API-Schlüssel \(optional\) |
| `collection` | string | Ja | Sammlungsname |
| `ids` | array | Ja | Array von abzurufenden Punkt-IDs |
| `ids` | array | Ja | Array von Punkt-IDs zum Abrufen |
| `fetch_return_data` | string | Nein | Aus dem Abruf zurückzugebende Daten |
| `with_payload` | boolean | Nein | Payload in Antwort einschließen |
| `with_vector` | boolean | Nein | Vektor in Antwort einschließen |

View File

@@ -207,18 +207,18 @@ Poblar Clay con datos de un archivo JSON. Permite comunicación directa y notifi
#### Entrada
| Parámetro | Tipo | Requerido | Descripción |
| --------- | ---- | -------- | ----------- |
| `webhookURL` | string | Sí | La URL del webhook para poblar |
| `data` | json | Sí | Los datos para poblar |
| `authToken` | string | | Token de autenticación para la autenticación del webhook de Clay |
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | ----------- | ----------- |
| `webhookURL` | string | Sí | La URL del webhook a completar |
| `data` | json | Sí | Los datos para completar |
| `authToken` | string | No | Token de autenticación opcional para la autenticación del webhook de Clay \(la mayoría de los webhooks no requieren esto\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `success` | boolean | Estado de éxito de la operación |
| `output` | json | Resultados de la operación de poblado de Clay incluyendo datos de respuesta del webhook de Clay |
| `data` | json | Datos de respuesta del webhook de Clay |
| `metadata` | object | Metadatos de respuesta del webhook |
## Notas

View File

@@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="discord"
color="#E0E0E0"
color="#5865F2"
icon={true}
iconSvg={`<svg className="block-icon"

View File

@@ -133,13 +133,14 @@ Buscar vectores similares en una colección de Qdrant
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| --------- | ---- | ----------- | ----------- |
| `url` | string | Sí | URL base de Qdrant |
| `apiKey` | string | No | Clave API de Qdrant \(opcional\) |
| `collection` | string | Sí | Nombre de la colección |
| `vector` | array | Sí | Vector a buscar |
| `vector` | array | Sí | Vector para buscar |
| `limit` | number | No | Número de resultados a devolver |
| `filter` | object | No | Filtro a aplicar a la búsqueda |
| `filter` | object | No | Filtro para aplicar a la búsqueda |
| `search_return_data` | string | No | Datos a devolver de la búsqueda |
| `with_payload` | boolean | No | Incluir payload en la respuesta |
| `with_vector` | boolean | No | Incluir vector en la respuesta |
@@ -157,11 +158,12 @@ Obtener puntos por ID desde una colección de Qdrant
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| --------- | ---- | ----------- | ----------- |
| `url` | string | Sí | URL base de Qdrant |
| `apiKey` | string | No | Clave API de Qdrant \(opcional\) |
| `collection` | string | Sí | Nombre de la colección |
| `ids` | array | Sí | Array de IDs de puntos a obtener |
| `ids` | array | Sí | Array de IDs de puntos para recuperar |
| `fetch_return_data` | string | No | Datos a devolver de la recuperación |
| `with_payload` | boolean | No | Incluir payload en la respuesta |
| `with_vector` | boolean | No | Incluir vector en la respuesta |

View File

@@ -211,14 +211,14 @@ Remplir Clay avec des données provenant d'un fichier JSON. Permet une communica
| --------- | ---- | ---------- | ----------- |
| `webhookURL` | string | Oui | L'URL du webhook à remplir |
| `data` | json | Oui | Les données à remplir |
| `authToken` | string | Oui | Jeton d'authentification pour l'authentification du webhook Clay |
| `authToken` | string | Non | Jeton d'authentification optionnel pour l'authentification du webhook Clay \(la plupart des webhooks ne nécessitent pas cela\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Statut de réussite de l'opération |
| `output` | json | Résultats de l'opération de remplissage Clay incluant les données de réponse du webhook Clay |
| `data` | json | Données de réponse du webhook Clay |
| `metadata` | object | Métadonnées de réponse du webhook |
## Notes

View File

@@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="discord"
color="#E0E0E0"
color="#5865F2"
icon={true}
iconSvg={`<svg className="block-icon"

View File

@@ -133,13 +133,14 @@ Rechercher des vecteurs similaires dans une collection Qdrant
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `url` | chaîne | Oui | URL de base Qdrant |
| --------- | ---- | ----------- | ----------- |
| `url` | chaîne | Oui | URL de base de Qdrant |
| `apiKey` | chaîne | Non | Clé API Qdrant \(facultative\) |
| `collection` | chaîne | Oui | Nom de la collection |
| `vector` | tableau | Oui | Vecteur à rechercher |
| `limit` | nombre | Non | Nombre de résultats à retourner |
| `filter` | objet | Non | Filtre à appliquer à la recherche |
| `search_return_data` | chaîne | Non | Données à retourner de la recherche |
| `with_payload` | booléen | Non | Inclure la charge utile dans la réponse |
| `with_vector` | booléen | Non | Inclure le vecteur dans la réponse |
@@ -157,11 +158,12 @@ Récupérer des points par ID depuis une collection Qdrant
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `url` | chaîne | Oui | URL de base Qdrant |
| --------- | ---- | ----------- | ----------- |
| `url` | chaîne | Oui | URL de base de Qdrant |
| `apiKey` | chaîne | Non | Clé API Qdrant \(facultative\) |
| `collection` | chaîne | Oui | Nom de la collection |
| `ids` | tableau | Oui | Tableau d'identifiants de points à récupérer |
| `fetch_return_data` | chaîne | Non | Données à retourner de la récupération |
| `with_payload` | booléen | Non | Inclure la charge utile dans la réponse |
| `with_vector` | booléen | Non | Inclure le vecteur dans la réponse |

View File

@@ -207,18 +207,18 @@ Populate Clay with data from a JSON file. Enables direct communication and notif
#### Input
| Parameter | Type | Required | Description |
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `webhookURL` | string | Yes | The webhook URL to populate |
| `data` | json | Yes | The data to populate |
| `authToken` | string | Yes | Auth token for Clay webhook authentication |
| `webhookURL` | string | はい | 設定するウェブフックURL |
| `data` | json | はい | 設定するデータ |
| `authToken` | string | いいえ | Clayウェブフック認証用のオプション認証トークンほとんどのウェブフックではこれは不要です |
#### Output
| Parameter | Type | Description |
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | Operation success status |
| `output` | json | Clay populate operation results including response data from Clay webhook |
| `data` | json | Clayウェブフックからのレスポンスデータ |
| `metadata` | object | ウェブフックレスポンスのメタデータ |
## Notes

View File

@@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="discord"
color="#E0E0E0"
color="#5865F2"
icon={true}
iconSvg={`<svg className="block-icon"

View File

@@ -140,6 +140,7 @@ Qdrantコレクション内で類似ベクトルを検索する
| `vector` | array | はい | 検索対象のベクトル |
| `limit` | number | いいえ | 返す結果の数 |
| `filter` | object | いいえ | 検索に適用するフィルター |
| `search_return_data` | string | いいえ | 検索から返すデータ |
| `with_payload` | boolean | いいえ | レスポンスにペイロードを含める |
| `with_vector` | boolean | いいえ | レスポンスにベクトルを含める |
@@ -162,6 +163,7 @@ QdrantコレクションからIDによってポイントを取得する
| `apiKey` | string | いいえ | Qdrant APIキーオプション |
| `collection` | string | はい | コレクション名 |
| `ids` | array | はい | 取得するポイントIDの配列 |
| `fetch_return_data` | string | いいえ | 取得から返すデータ |
| `with_payload` | boolean | いいえ | レスポンスにペイロードを含める |
| `with_vector` | boolean | いいえ | レスポンスにベクトルを含める |

View File

@@ -209,16 +209,16 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `webhookURL` | string | 是 | 用于填充的 webhook URL |
| `webhookURL` | string | 是 | 填充的 webhook URL |
| `data` | json | 是 | 要填充的数据 |
| `authToken` | string | | 用于 Clay webhook 认证的授权令牌 |
| `authToken` | string | | 用于 Clay webhook 认证的可选身份验证令牌(大多数 webhook 不需要此令牌) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `success` | boolean | 操作成功状态 |
| `output` | json | Clay 填充操作结果,包括来自 Clay webhook 响应数据 |
| `data` | json | 来自 Clay webhook 的响应数据 |
| `metadata` | object | webhook 响应数据 |
## 注意事项

View File

@@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="discord"
color="#E0E0E0"
color="#5865F2"
icon={true}
iconSvg={`<svg className="block-icon"

View File

@@ -138,8 +138,9 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
| `apiKey` | string | 否 | Qdrant API 密钥(可选)|
| `collection` | string | 是 | 集合名称 |
| `vector` | array | 是 | 要搜索的向量 |
| `limit` | number | 否 | 返回结果数量 |
| `filter` | object | 否 | 应用于搜索的过滤器 |
| `limit` | number | 否 | 返回结果数量 |
| `filter` | object | 否 | 应用于搜索的过滤器 |
| `search_return_data` | string | 否 | 搜索中要返回的数据 |
| `with_payload` | boolean | 否 | 在响应中包含有效负载 |
| `with_vector` | boolean | 否 | 在响应中包含向量 |
@@ -162,6 +163,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
| `apiKey` | string | 否 | Qdrant API 密钥(可选)|
| `collection` | string | 是 | 集合名称 |
| `ids` | array | 是 | 要获取的点 ID 数组 |
| `fetch_return_data` | string | 否 | 获取中要返回的数据 |
| `with_payload` | boolean | 否 | 在响应中包含有效负载 |
| `with_vector` | boolean | 否 | 在响应中包含向量 |

View File

@@ -945,13 +945,13 @@ checksums:
content/17: f5bef3db56ed3a56395f7ae1fa41ecf3
content/18: 7ca733ac5374e92a9cc8ef35e1075fb1
content/19: 371d0e46b4bd2c23f559b8bc112f6955
content/20: 8ce52b8ffed51482dff6fa0f2846c498
content/20: 0eada001684acb8efe28fcfed38a5163
content/21: bcadfc362b69078beee0088e5936c98b
content/22: b875ec2f16d200917e9860b49a5a9772
content/23: c0c2276dd4207eb2b08d4dc9132e7ec3
content/24: 85de953906920f3fb4eafa8fdb918feb
content/25: 371d0e46b4bd2c23f559b8bc112f6955
content/26: f63654037687387924343d8f7453f379
content/26: b0cf90320ac6b98d5bf00b87052cd76e
content/27: bcadfc362b69078beee0088e5936c98b
content/28: e62b89406f01af79e2e293d352aa2499
content/29: b3f310d5ef115bea5a8b75bf25d7ea9a
@@ -2183,7 +2183,7 @@ checksums:
meta/title: 06ec7d95ab44931ed9d1925e4063d703
meta/description: cc9ab492bdda4a2cb9085537d6e6a0c0
content/0: 1b031fb0c62c46b177aeed5c3d3f8f80
content/1: 73fb594a22fcf560087b53ea6aa592f6
content/1: f744e92fcc234d02bb9b352a2ab1e1e3
content/2: b229bf34f0106ccb5af6f0b2a044e21a
content/3: 45e7cee1fa342c4d13a1a6cb70733a14
content/4: 62db68be640983ea9a383ee162bd8463
@@ -2264,9 +2264,9 @@ checksums:
content/11: 3524f0dac9a9152db223bcc2682a842d
content/12: 341fbcb79af9a7cb1bf5ac653f51807c
content/13: 371d0e46b4bd2c23f559b8bc112f6955
content/14: 85aebdee44deb5b2f03e95112a776839
content/14: 6dba14b1346c18cd2342f502371a1042
content/15: bcadfc362b69078beee0088e5936c98b
content/16: 7062fc4e2ca6974003e0d209f2b52d9f
content/16: df68275133be883eac95664c3ed10063
content/17: b3f310d5ef115bea5a8b75bf25d7ea9a
content/18: 59815ce1d0dddd507d505b42aa01b648
44f1f9fe8d5081b7781dc70e012cb531: