Skip to content

Commit c525016

Browse files
authored
feat(i18n): update translations (#2088)
Co-authored-by: waleedlatif1 <[email protected]>
1 parent 3dbf0f5 commit c525016

File tree

6 files changed

+257
-117
lines changed

6 files changed

+257
-117
lines changed

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

Lines changed: 51 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,24 @@ Tickets von Linear abrufen und filtern
3939

4040
| Parameter | Typ | Erforderlich | Beschreibung |
4141
| --------- | ---- | -------- | ----------- |
42-
| `teamId` | string | Ja | Linear Team-ID |
43-
| `projectId` | string | Ja | Linear Projekt-ID |
42+
| `teamId` | string | Nein | Linear Team-ID zum Filtern |
43+
| `projectId` | string | Nein | Linear Projekt-ID zum Filtern |
44+
| `assigneeId` | string | Nein | Benutzer-ID zum Filtern nach Zugewiesenem |
45+
| `stateId` | string | Nein | Workflow-Status-ID zum Filtern nach Status |
46+
| `priority` | number | Nein | Priorität zum Filtern \(0=Keine Priorität, 1=Dringend, 2=Hoch, 3=Normal, 4=Niedrig\) |
47+
| `labelIds` | array | Nein | Array von Label-IDs zum Filtern |
48+
| `createdAfter` | string | Nein | Tickets filtern, die nach diesem Datum erstellt wurden \(ISO 8601 Format\) |
49+
| `updatedAfter` | string | Nein | Tickets filtern, die nach diesem Datum aktualisiert wurden \(ISO 8601 Format\) |
50+
| `includeArchived` | boolean | Nein | Archivierte Tickets einschließen \(Standard: false\) |
51+
| `first` | number | Nein | Anzahl der zurückzugebenden Tickets \(Standard: 50, max: 250\) |
52+
| `after` | string | Nein | Paginierungscursor für die nächste Seite |
53+
| `orderBy` | string | Nein | Sortierreihenfolge: "createdAt" oder "updatedAt" \(Standard: "updatedAt"\) |
4454

4555
#### Ausgabe
4656

4757
| Parameter | Typ | Beschreibung |
4858
| --------- | ---- | ----------- |
49-
| `issues` | array | Array von Tickets aus dem angegebenen Linear Team und Projekt, jedes enthält id, title, description, state, teamId und projectId |
59+
| `issues` | array | Array von gefilterten Tickets aus Linear |
5060

5161
### `linear_get_issue`
5262

@@ -73,15 +83,25 @@ Ein neues Ticket in Linear erstellen
7383
| Parameter | Typ | Erforderlich | Beschreibung |
7484
| --------- | ---- | -------- | ----------- |
7585
| `teamId` | string | Ja | Linear Team-ID |
76-
| `projectId` | string | Ja | Linear Projekt-ID |
86+
| `projectId` | string | Nein | Linear Projekt-ID |
7787
| `title` | string | Ja | Ticket-Titel |
7888
| `description` | string | Nein | Ticket-Beschreibung |
89+
| `stateId` | string | Nein | Workflow-Status-ID \(Status\) |
90+
| `assigneeId` | string | Nein | Benutzer-ID, dem das Ticket zugewiesen werden soll |
91+
| `priority` | number | Nein | Priorität \(0=Keine Priorität, 1=Dringend, 2=Hoch, 3=Normal, 4=Niedrig\) |
92+
| `estimate` | number | Nein | Schätzung in Punkten |
93+
| `labelIds` | array | Nein | Array von Label-IDs, die dem Ticket zugewiesen werden sollen |
94+
| `cycleId` | string | Nein | Zyklus-ID, dem das Ticket zugewiesen werden soll |
95+
| `parentId` | string | Nein | Übergeordnete Ticket-ID \(für die Erstellung von Untertickets\) |
96+
| `dueDate` | string | Nein | Fälligkeitsdatum im ISO 8601-Format \(nur Datum: JJJJ-MM-TT\) |
97+
| `subscriberIds` | array | Nein | Array von Benutzer-IDs, die das Ticket abonnieren sollen |
98+
| `projectMilestoneId` | string | Nein | Projektmeilenstein-ID, die mit dem Ticket verknüpft werden soll |
7999

80100
#### Ausgabe
81101

82102
| Parameter | Typ | Beschreibung |
83103
| --------- | ---- | ----------- |
84-
| `issue` | object | Das erstellte Ticket mit id, title, description, state, teamId und projectId |
104+
| `issue` | object | Das erstellte Ticket mit allen seinen Eigenschaften |
85105

86106
### `linear_update_issue`
87107

@@ -98,7 +118,13 @@ Ein bestehendes Ticket in Linear aktualisieren
98118
| `assigneeId` | string | Nein | Benutzer-ID, dem das Ticket zugewiesen werden soll |
99119
| `priority` | number | Nein | Priorität \(0=Keine Priorität, 1=Dringend, 2=Hoch, 3=Normal, 4=Niedrig\) |
100120
| `estimate` | number | Nein | Schätzung in Punkten |
101-
| `labelIds` | array | Nein | Array von Label-IDs, die dem Ticket zugewiesen werden sollen |
121+
| `labelIds` | array | Nein | Array von Label-IDs, die für das Ticket gesetzt werden sollen \(ersetzt alle vorhandenen Labels\) |
122+
| `projectId` | string | Nein | Projekt-ID, zu der das Ticket verschoben werden soll |
123+
| `cycleId` | string | Nein | Zyklus-ID, dem das Ticket zugewiesen werden soll |
124+
| `parentId` | string | Nein | Übergeordnete Ticket-ID \(um dieses zu einem Unterticket zu machen\) |
125+
| `dueDate` | string | Nein | Fälligkeitsdatum im ISO 8601-Format \(nur Datum: JJJJ-MM-TT\) |
126+
| `addedLabelIds` | array | Nein | Array von Label-IDs, die dem Ticket hinzugefügt werden sollen \(ohne vorhandene Labels zu ersetzen\) |
127+
| `removedLabelIds` | array | Nein | Array von Label-IDs, die vom Ticket entfernt werden sollen |
102128

103129
#### Ausgabe
104130

@@ -236,8 +262,8 @@ Einen Kommentar in Linear bearbeiten
236262

237263
| Parameter | Typ | Erforderlich | Beschreibung |
238264
| --------- | ---- | -------- | ----------- |
239-
| `commentId` | string | Ja | Kommentar-ID, die aktualisiert werden soll |
240-
| `body` | string | Ja | Neuer Kommentartext \(unterstützt Markdown\) |
265+
| `commentId` | string | Ja | Kommentar-ID zum Aktualisieren |
266+
| `body` | string | Nein | Neuer Kommentartext \(unterstützt Markdown\) |
241267

242268
#### Ausgabe
243269

@@ -344,14 +370,14 @@ Ein bestehendes Projekt in Linear aktualisieren
344370

345371
| Parameter | Typ | Erforderlich | Beschreibung |
346372
| --------- | ---- | -------- | ----------- |
347-
| `projectId` | string | Ja | Projekt-ID, die aktualisiert werden soll |
373+
| `projectId` | string | Ja | Projekt-ID zum Aktualisieren |
348374
| `name` | string | Nein | Neuer Projektname |
349375
| `description` | string | Nein | Neue Projektbeschreibung |
350-
| `state` | string | Nein | Projektstatus (geplant, gestartet, abgeschlossen, abgebrochen) |
376+
| `state` | string | Nein | Projektstatus \(planned, started, completed, canceled\) |
351377
| `leadId` | string | Nein | Benutzer-ID des Projektleiters |
352-
| `startDate` | string | Nein | Projektstartdatum (ISO-Format) |
353-
| `targetDate` | string | Nein | Projektzieldatum (ISO-Format) |
354-
| `priority` | number | Nein | Projektpriorität (0-4) |
378+
| `startDate` | string | Nein | Projektstartdatum \(ISO-Format: JJJJ-MM-TT\) |
379+
| `targetDate` | string | Nein | Projektzieldatum \(ISO-Format: JJJJ-MM-TT\) |
380+
| `priority` | number | Nein | Projektpriorität \(0=Keine Priorität, 1=Dringend, 2=Hoch, 3=Normal, 4=Niedrig\) |
355381

356382
#### Ausgabe
357383

@@ -525,11 +551,11 @@ Einen neuen Workflow-Status in Linear erstellen
525551

526552
| Parameter | Typ | Erforderlich | Beschreibung |
527553
| --------- | ---- | -------- | ----------- |
528-
| `teamId` | string | Ja | Team-ID, in dem der Status erstellt werden soll |
529-
| `name` | string | Ja | Name des Status \(z.B. "In Prüfung"\) |
530-
| `color` | string | Ja | Farbe des Status \(Hex-Format\) |
554+
| `teamId` | string | Ja | Team-ID, in der der Status erstellt werden soll |
555+
| `name` | string | Ja | Statusname \(z.B. "In Prüfung"\) |
556+
| `color` | string | Nein | Statusfarbe \(Hex-Format\) |
531557
| `type` | string | Ja | Statustyp: "backlog", "unstarted", "started", "completed" oder "canceled" |
532-
| `description` | string | Nein | Beschreibung des Status |
558+
| `description` | string | Nein | Statusbeschreibung |
533559
| `position` | number | Nein | Position im Workflow |
534560

535561
#### Ausgabe
@@ -635,9 +661,9 @@ Einen Anhang zu einem Ticket in Linear hinzufügen
635661

636662
| Parameter | Typ | Erforderlich | Beschreibung |
637663
| --------- | ---- | -------- | ----------- |
638-
| `issueId` | string | Ja | Ticket-ID, an die der Anhang angehängt werden soll |
664+
| `issueId` | string | Ja | Ticket-ID, an die angehängt werden soll |
639665
| `url` | string | Ja | URL des Anhangs |
640-
| `title` | string | Nein | Titel des Anhangs |
666+
| `title` | string | Ja | Titel des Anhangs |
641667
| `subtitle` | string | Nein | Untertitel/Beschreibung des Anhangs |
642668

643669
#### Ausgabe
@@ -673,7 +699,7 @@ Metadaten eines Anhangs in Linear aktualisieren
673699
| Parameter | Typ | Erforderlich | Beschreibung |
674700
| --------- | ---- | -------- | ----------- |
675701
| `attachmentId` | string | Ja | Anhang-ID zum Aktualisieren |
676-
| `title` | string | Nein | Neuer Titel des Anhangs |
702+
| `title` | string | Ja | Neuer Titel des Anhangs |
677703
| `subtitle` | string | Nein | Neuer Untertitel des Anhangs |
678704

679705
#### Ausgabe
@@ -707,8 +733,8 @@ Zwei Tickets in Linear miteinander verknüpfen (blockiert, bezieht sich auf, dup
707733
| Parameter | Typ | Erforderlich | Beschreibung |
708734
| --------- | ---- | -------- | ----------- |
709735
| `issueId` | string | Ja | Quell-Ticket-ID |
710-
| `relatedIssueId` | string | Ja | Ziel-Ticket-ID für die Verknüpfung |
711-
| `type` | string | Ja | Beziehungstyp: "blocks", "blocked", "duplicate", "related" |
736+
| `relatedIssueId` | string | Ja | Ziel-Ticket-ID, mit der verknüpft werden soll |
737+
| `type` | string | Ja | Beziehungstyp: "blocks", "duplicate" oder "related". Hinweis: Wenn "blocks" von A nach B erstellt wird, wird die umgekehrte Beziehung \(B blockiert durch A\) automatisch erstellt. |
712738

713739
#### Ausgabe
714740

@@ -1217,7 +1243,8 @@ Ein neues Projekt-Label in Linear erstellen
12171243

12181244
| Parameter | Typ | Erforderlich | Beschreibung |
12191245
| --------- | ---- | -------- | ----------- |
1220-
| `name` | string | Ja | Projekt-Label-Name |
1246+
| `projectId` | string | Ja | Das Projekt für dieses Label |
1247+
| `name` | string | Ja | Projektlabel-Name |
12211248
| `color` | string | Nein | Label-Farbe \(Hex-Code\) |
12221249
| `description` | string | Nein | Label-Beschreibung |
12231250
| `isGroup` | boolean | Nein | Ob dies eine Label-Gruppe ist |
@@ -1394,6 +1421,7 @@ Einen neuen Projektstatus in Linear erstellen
13941421

13951422
| Parameter | Typ | Erforderlich | Beschreibung |
13961423
| --------- | ---- | -------- | ----------- |
1424+
| `projectId` | string | Ja | Das Projekt, für das der Status erstellt werden soll |
13971425
| `name` | string | Ja | Name des Projektstatus |
13981426
| `color` | string | Ja | Statusfarbe \(Hex-Code\) |
13991427
| `description` | string | Nein | Statusbeschreibung |

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

Lines changed: 51 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,24 @@ Obtener y filtrar incidencias de Linear
3939

4040
| Parámetro | Tipo | Obligatorio | Descripción |
4141
| --------- | ---- | ----------- | ----------- |
42-
| `teamId` | string || ID del equipo de Linear |
43-
| `projectId` | string || ID del proyecto de Linear |
42+
| `teamId` | string | No | ID del equipo de Linear para filtrar |
43+
| `projectId` | string | No | ID del proyecto de Linear para filtrar |
44+
| `assigneeId` | string | No | ID del usuario para filtrar por asignado |
45+
| `stateId` | string | No | ID del estado del flujo de trabajo para filtrar por estado |
46+
| `priority` | number | No | Prioridad para filtrar \(0=Sin prioridad, 1=Urgente, 2=Alta, 3=Normal, 4=Baja\) |
47+
| `labelIds` | array | No | Array de IDs de etiquetas para filtrar |
48+
| `createdAfter` | string | No | Filtrar incidencias creadas después de esta fecha \(formato ISO 8601\) |
49+
| `updatedAfter` | string | No | Filtrar incidencias actualizadas después de esta fecha \(formato ISO 8601\) |
50+
| `includeArchived` | boolean | No | Incluir incidencias archivadas \(predeterminado: false\) |
51+
| `first` | number | No | Número de incidencias a devolver \(predeterminado: 50, máximo: 250\) |
52+
| `after` | string | No | Cursor de paginación para la siguiente página |
53+
| `orderBy` | string | No | Orden de clasificación: "createdAt" o "updatedAt" \(predeterminado: "updatedAt"\) |
4454

4555
#### Salida
4656

4757
| Parámetro | Tipo | Descripción |
4858
| --------- | ---- | ----------- |
49-
| `issues` | array | Array de incidencias del equipo y proyecto de Linear especificados, cada una contiene id, título, descripción, estado, teamId y projectId |
59+
| `issues` | array | Array de incidencias filtradas de Linear |
5060

5161
### `linear_get_issue`
5262

@@ -73,15 +83,25 @@ Crear una nueva incidencia en Linear
7383
| Parámetro | Tipo | Obligatorio | Descripción |
7484
| --------- | ---- | ----------- | ----------- |
7585
| `teamId` | string || ID del equipo de Linear |
76-
| `projectId` | string | | ID del proyecto de Linear |
86+
| `projectId` | string | No | ID del proyecto de Linear |
7787
| `title` | string || Título de la incidencia |
7888
| `description` | string | No | Descripción de la incidencia |
89+
| `stateId` | string | No | ID del estado del flujo de trabajo \(estado\) |
90+
| `assigneeId` | string | No | ID del usuario al que asignar la incidencia |
91+
| `priority` | number | No | Prioridad \(0=Sin prioridad, 1=Urgente, 2=Alta, 3=Normal, 4=Baja\) |
92+
| `estimate` | number | No | Estimación en puntos |
93+
| `labelIds` | array | No | Array de IDs de etiquetas para establecer en la incidencia |
94+
| `cycleId` | string | No | ID del ciclo al que asignar la incidencia |
95+
| `parentId` | string | No | ID de la incidencia padre \(para crear subincidencias\) |
96+
| `dueDate` | string | No | Fecha de vencimiento en formato ISO 8601 \(solo fecha: AAAA-MM-DD\) |
97+
| `subscriberIds` | array | No | Array de IDs de usuarios para suscribirse a la incidencia |
98+
| `projectMilestoneId` | string | No | ID del hito del proyecto para asociar con la incidencia |
7999

80100
#### Salida
81101

82102
| Parámetro | Tipo | Descripción |
83103
| --------- | ---- | ----------- |
84-
| `issue` | object | La incidencia creada que contiene id, título, descripción, estado, teamId y projectId |
104+
| `issue` | object | La incidencia creada con todas sus propiedades |
85105

86106
### `linear_update_issue`
87107

@@ -91,14 +111,20 @@ Actualizar una incidencia existente en Linear
91111

92112
| Parámetro | Tipo | Obligatorio | Descripción |
93113
| --------- | ---- | ----------- | ----------- |
94-
| `issueId` | string || ID de la incidencia de Linear a actualizar |
114+
| `issueId` | string || ID de la incidencia de Linear para actualizar |
95115
| `title` | string | No | Nuevo título de la incidencia |
96116
| `description` | string | No | Nueva descripción de la incidencia |
97117
| `stateId` | string | No | ID del estado del flujo de trabajo \(estado\) |
98118
| `assigneeId` | string | No | ID del usuario al que asignar la incidencia |
99119
| `priority` | number | No | Prioridad \(0=Sin prioridad, 1=Urgente, 2=Alta, 3=Normal, 4=Baja\) |
100120
| `estimate` | number | No | Estimación en puntos |
101-
| `labelIds` | array | No | Array de IDs de etiquetas para establecer en la incidencia |
121+
| `labelIds` | array | No | Array de IDs de etiquetas para establecer en la incidencia \(reemplaza todas las etiquetas existentes\) |
122+
| `projectId` | string | No | ID del proyecto al que mover la incidencia |
123+
| `cycleId` | string | No | ID del ciclo al que asignar la incidencia |
124+
| `parentId` | string | No | ID de la incidencia padre \(para convertir esta en una subincidencia\) |
125+
| `dueDate` | string | No | Fecha de vencimiento en formato ISO 8601 \(solo fecha: AAAA-MM-DD\) |
126+
| `addedLabelIds` | array | No | Array de IDs de etiquetas para añadir a la incidencia \(sin reemplazar las etiquetas existentes\) |
127+
| `removedLabelIds` | array | No | Array de IDs de etiquetas para eliminar de la incidencia |
102128

103129
#### Salida
104130

@@ -237,7 +263,7 @@ Editar un comentario en Linear
237263
| Parámetro | Tipo | Obligatorio | Descripción |
238264
| --------- | ---- | ----------- | ----------- |
239265
| `commentId` | string || ID del comentario a actualizar |
240-
| `body` | string | | Nuevo texto del comentario \(admite Markdown\) |
266+
| `body` | string | No | Nuevo texto del comentario \(admite Markdown\) |
241267

242268
#### Salida
243269

@@ -347,11 +373,11 @@ Actualizar un proyecto existente en Linear
347373
| `projectId` | string || ID del proyecto a actualizar |
348374
| `name` | string | No | Nuevo nombre del proyecto |
349375
| `description` | string | No | Nueva descripción del proyecto |
350-
| `state` | string | No | Estado del proyecto (planned, started, completed, canceled) |
376+
| `state` | string | No | Estado del proyecto \(planned, started, completed, canceled\) |
351377
| `leadId` | string | No | ID del usuario líder del proyecto |
352-
| `startDate` | string | No | Fecha de inicio del proyecto (formato ISO) |
353-
| `targetDate` | string | No | Fecha objetivo del proyecto (formato ISO) |
354-
| `priority` | number | No | Prioridad del proyecto (0-4) |
378+
| `startDate` | string | No | Fecha de inicio del proyecto \(formato ISO: YYYY-MM-DD\) |
379+
| `targetDate` | string | No | Fecha objetivo del proyecto \(formato ISO: YYYY-MM-DD\) |
380+
| `priority` | number | No | Prioridad del proyecto \(0=Sin prioridad, 1=Urgente, 2=Alta, 3=Normal, 4=Baja\) |
355381

356382
#### Salida
357383

@@ -526,8 +552,8 @@ Crear un nuevo estado de flujo de trabajo (estado) en Linear
526552
| Parámetro | Tipo | Obligatorio | Descripción |
527553
| --------- | ---- | ----------- | ----------- |
528554
| `teamId` | string || ID del equipo donde crear el estado |
529-
| `name` | string || Nombre del estado (p. ej., "En revisión") |
530-
| `color` | string | | Color del estado (formato hex) |
555+
| `name` | string || Nombre del estado \(p. ej., "En revisión"\) |
556+
| `color` | string | No | Color del estado \(formato hex\) |
531557
| `type` | string || Tipo de estado: "backlog", "unstarted", "started", "completed", o "canceled" |
532558
| `description` | string | No | Descripción del estado |
533559
| `position` | number | No | Posición en el flujo de trabajo |
@@ -637,7 +663,7 @@ Añadir un adjunto a una incidencia en Linear
637663
| --------- | ---- | ----------- | ----------- |
638664
| `issueId` | string || ID de la incidencia a la que adjuntar |
639665
| `url` | string || URL del adjunto |
640-
| `title` | string | No | Título del adjunto |
666+
| `title` | string | | Título del adjunto |
641667
| `subtitle` | string | No | Subtítulo/descripción del adjunto |
642668

643669
#### Salida
@@ -673,7 +699,7 @@ Actualizar los metadatos de un adjunto en Linear
673699
| Parámetro | Tipo | Obligatorio | Descripción |
674700
| --------- | ---- | ----------- | ----------- |
675701
| `attachmentId` | string || ID del adjunto a actualizar |
676-
| `title` | string | No | Nuevo título del adjunto |
702+
| `title` | string | | Nuevo título del adjunto |
677703
| `subtitle` | string | No | Nuevo subtítulo del adjunto |
678704

679705
#### Salida
@@ -707,8 +733,8 @@ Vincular dos incidencias en Linear (bloquea, se relaciona con, duplica)
707733
| Parámetro | Tipo | Obligatorio | Descripción |
708734
| --------- | ---- | ----------- | ----------- |
709735
| `issueId` | string || ID de la incidencia de origen |
710-
| `relatedIssueId` | string || ID de la incidencia de destino a vincular |
711-
| `type` | string || Tipo de relación: "blocks", "blocked", "duplicate", "related" |
736+
| `relatedIssueId` | string || ID de la incidencia de destino a la que vincular |
737+
| `type` | string || Tipo de relación: "blocks", "duplicate", o "related". Nota: Al crear "blocks" de A a B, la relación inversa \(B bloqueada por A\) se crea automáticamente. |
712738

713739
#### Salida
714740

@@ -1217,10 +1243,11 @@ Crear una nueva etiqueta de proyecto en Linear
12171243

12181244
| Parámetro | Tipo | Obligatorio | Descripción |
12191245
| --------- | ---- | ----------- | ----------- |
1220-
| `name` | string || Nombre de la etiqueta de proyecto |
1221-
| `color` | string | No | Color de la etiqueta (código hexadecimal) |
1246+
| `projectId` | string || El proyecto para esta etiqueta |
1247+
| `name` | string || Nombre de la etiqueta del proyecto |
1248+
| `color` | string | No | Color de la etiqueta \(código hex\) |
12221249
| `description` | string | No | Descripción de la etiqueta |
1223-
| `isGroup` | boolean | No | Indica si es un grupo de etiquetas |
1250+
| `isGroup` | boolean | No | Indica si esta es un grupo de etiquetas |
12241251
| `parentId` | string | No | ID del grupo de etiquetas padre |
12251252

12261253
#### Salida
@@ -1394,10 +1421,11 @@ Crear un nuevo estado de proyecto en Linear
13941421

13951422
| Parámetro | Tipo | Obligatorio | Descripción |
13961423
| --------- | ---- | ----------- | ----------- |
1424+
| `projectId` | string || El proyecto para el que crear el estado |
13971425
| `name` | string || Nombre del estado del proyecto |
1398-
| `color` | string || Color del estado \(código hex\) |
1426+
| `color` | string || Color del estado (código hex) |
13991427
| `description` | string | No | Descripción del estado |
1400-
| `indefinite` | boolean | No | Indica si el estado es indefinido |
1428+
| `indefinite` | boolean | No | Si el estado es indefinido |
14011429
| `position` | number | No | Posición en la lista de estados |
14021430

14031431
#### Salida

0 commit comments

Comments
 (0)