@activepieces/piece-github 0.5.1 → 0.5.3
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 +16 -13
- package/src/i18n/ca.json +86 -0
- package/src/i18n/de.json +86 -0
- package/src/i18n/es.json +86 -0
- package/src/i18n/fr.json +86 -0
- package/src/i18n/hi.json +86 -0
- package/src/i18n/id.json +86 -0
- package/src/i18n/ja.json +86 -0
- package/src/i18n/nl.json +86 -0
- package/src/i18n/pt.json +86 -0
- package/src/i18n/ru.json +86 -0
- package/src/i18n/translation.json +86 -0
- package/src/i18n/vi.json +86 -0
- package/src/i18n/zh.json +86 -0
- package/src/lib/actions/create-comment-on-a-issue.js.map +1 -1
- package/src/lib/actions/create-commit-comment.js.map +1 -1
- package/src/lib/actions/create-discussion-comment.js.map +1 -1
- package/src/lib/actions/create-issue.js.map +1 -1
- package/src/lib/actions/create-pull-request-review-comment.js.map +1 -1
- package/src/lib/actions/get-issue-information.js.map +1 -1
- package/src/lib/actions/lock-issue.js.map +1 -1
- package/src/lib/actions/raw-graphql-query.js.map +1 -1
- package/src/lib/actions/unlock-issue.js.map +1 -1
- package/src/lib/common/index.js.map +1 -1
- package/src/lib/trigger/index.d.ts +548 -2
- package/src/lib/trigger/index.js +490 -8
- package/src/lib/trigger/index.js.map +1 -1
- package/src/lib/trigger/register-trigger.js +5 -1
- package/src/lib/trigger/register-trigger.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,36 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-github",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@
|
|
5
|
+
"@ai-sdk/anthropic": "1.2.12",
|
|
6
|
+
"@ai-sdk/google": "1.2.19",
|
|
7
|
+
"@ai-sdk/openai": "1.3.22",
|
|
8
|
+
"@ai-sdk/replicate": "0.2.8",
|
|
6
9
|
"@sinclair/typebox": "0.34.11",
|
|
10
|
+
"ai": "4.3.16",
|
|
7
11
|
"axios": "1.8.3",
|
|
8
12
|
"axios-retry": "4.4.1",
|
|
9
13
|
"deepmerge-ts": "7.1.0",
|
|
14
|
+
"fast-glob": "3.3.3",
|
|
10
15
|
"mime-types": "2.1.35",
|
|
11
16
|
"nanoid": "3.3.8",
|
|
12
|
-
"openai": "4.67.1",
|
|
13
|
-
"replicate": "0.34.1",
|
|
14
17
|
"semver": "7.6.0",
|
|
15
|
-
"zod": "3.
|
|
16
|
-
"@activepieces/pieces-common": "0.
|
|
17
|
-
"@activepieces/pieces-framework": "0.
|
|
18
|
-
"@activepieces/shared": "0.
|
|
19
|
-
"tslib": "
|
|
18
|
+
"zod": "3.25.76",
|
|
19
|
+
"@activepieces/pieces-common": "0.6.0",
|
|
20
|
+
"@activepieces/pieces-framework": "0.15.0",
|
|
21
|
+
"@activepieces/shared": "0.17.2",
|
|
22
|
+
"tslib": "2.8.1"
|
|
20
23
|
},
|
|
21
24
|
"overrides": {
|
|
22
|
-
"cross-spawn": "7.0.6",
|
|
23
25
|
"@tryfabric/martian": {
|
|
24
26
|
"@notionhq/client": "$@notionhq/client"
|
|
25
27
|
},
|
|
26
28
|
"vite": {
|
|
27
29
|
"rollup": "npm:@rollup/wasm-node"
|
|
28
|
-
}
|
|
30
|
+
},
|
|
31
|
+
"stylus": "0.0.1-security"
|
|
29
32
|
},
|
|
30
33
|
"resolutions": {
|
|
31
34
|
"rollup": "npm:@rollup/wasm-node"
|
|
32
35
|
},
|
|
36
|
+
"types": "./src/index.d.ts",
|
|
33
37
|
"main": "./src/index.js",
|
|
34
|
-
"type": "commonjs"
|
|
35
|
-
"types": "./src/index.d.ts"
|
|
38
|
+
"type": "commonjs"
|
|
36
39
|
}
|
package/src/i18n/ca.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GitHub": "GitHub",
|
|
3
|
+
"Developer platform that allows developers to create, store, manage and share their code": "Developer platform that allows developers to create, store, manage and share their code",
|
|
4
|
+
"Create Issue": "Create Issue",
|
|
5
|
+
"Get issue information": "Get issue information",
|
|
6
|
+
"Create comment on a issue": "Create comment on a issue",
|
|
7
|
+
"Lock issue": "Lock issue",
|
|
8
|
+
"Unlock issue": "Unlock issue",
|
|
9
|
+
"Raw GraphQL query": "Raw GraphQL query",
|
|
10
|
+
"Create Pull Request Review Comment": "Create Pull Request Review Comment",
|
|
11
|
+
"Create Commit Comment": "Create Commit Comment",
|
|
12
|
+
"Create Discussion Comment": "Create Discussion Comment",
|
|
13
|
+
"Custom API Call": "Custom API Call",
|
|
14
|
+
"Create Issue in GitHub Repository": "Create Issue in GitHub Repository",
|
|
15
|
+
"Grabs information from a specific issue": "Grabs information from a specific issue",
|
|
16
|
+
"Adds a comment to the specified issue (also works with pull requests)": "Adds a comment to the specified issue (also works with pull requests)",
|
|
17
|
+
"Locks the specified issue": "Locks the specified issue",
|
|
18
|
+
"Unlocks the specified issue": "Unlocks the specified issue",
|
|
19
|
+
"Perform a raw GraphQL query": "Perform a raw GraphQL query",
|
|
20
|
+
"Creates a review comment on a pull request in a GitHub repository": "Creates a review comment on a pull request in a GitHub repository",
|
|
21
|
+
"Creates a comment on a commit in a GitHub repository": "Creates a comment on a commit in a GitHub repository",
|
|
22
|
+
"Creates a comment on a discussion in a GitHub repository": "Creates a comment on a discussion in a GitHub repository",
|
|
23
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
24
|
+
"Repository": "Repository",
|
|
25
|
+
"Title": "Title",
|
|
26
|
+
"Description": "Description",
|
|
27
|
+
"Labels": "Labels",
|
|
28
|
+
"Assignees": "Assignees",
|
|
29
|
+
"Issue Number": "Issue Number",
|
|
30
|
+
"Issue number": "Issue number",
|
|
31
|
+
"Comment": "Comment",
|
|
32
|
+
"Lock Reason": "Lock Reason",
|
|
33
|
+
"Query": "Query",
|
|
34
|
+
"Parameters": "Parameters",
|
|
35
|
+
"Pull Request Number": "Pull Request Number",
|
|
36
|
+
"Commit SHA": "Commit SHA",
|
|
37
|
+
"File Path": "File Path",
|
|
38
|
+
"Comment Body": "Comment Body",
|
|
39
|
+
"Position": "Position",
|
|
40
|
+
"Discussion Number": "Discussion Number",
|
|
41
|
+
"Method": "Method",
|
|
42
|
+
"Headers": "Headers",
|
|
43
|
+
"Query Parameters": "Query Parameters",
|
|
44
|
+
"Body": "Body",
|
|
45
|
+
"No Error on Failure": "No Error on Failure",
|
|
46
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
47
|
+
"The title of the issue": "The title of the issue",
|
|
48
|
+
"The description of the issue": "The description of the issue",
|
|
49
|
+
"Labels for the Issue": "Labels for the Issue",
|
|
50
|
+
"Assignees for the Issue": "Assignees for the Issue",
|
|
51
|
+
"The number of the issue you want to get information from": "The number of the issue you want to get information from",
|
|
52
|
+
"The number of the issue to comment on": "The number of the issue to comment on",
|
|
53
|
+
"The comment to add to the issue": "The comment to add to the issue",
|
|
54
|
+
"The number of the issue to be locked": "The number of the issue to be locked",
|
|
55
|
+
"The reason for locking the issue": "The reason for locking the issue",
|
|
56
|
+
"The number of the issue to be unlocked": "The number of the issue to be unlocked",
|
|
57
|
+
"The number of the pull request": "The number of the pull request",
|
|
58
|
+
"The SHA of the commit to comment on": "The SHA of the commit to comment on",
|
|
59
|
+
"The relative path to the file to comment on": "The relative path to the file to comment on",
|
|
60
|
+
"The content of the review comment": "The content of the review comment",
|
|
61
|
+
"The position in the diff where the comment should be placed": "The position in the diff where the comment should be placed",
|
|
62
|
+
"The content of the comment": "The content of the comment",
|
|
63
|
+
"The relative path to the file to comment on (optional)": "The relative path to the file to comment on (optional)",
|
|
64
|
+
"The line index in the diff to comment on (optional)": "The line index in the diff to comment on (optional)",
|
|
65
|
+
"The number of the discussion to comment on": "The number of the discussion to comment on",
|
|
66
|
+
"The content of the comment (supports markdown)": "The content of the comment (supports markdown)",
|
|
67
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
68
|
+
"GET": "GET",
|
|
69
|
+
"POST": "POST",
|
|
70
|
+
"PATCH": "PATCH",
|
|
71
|
+
"PUT": "PUT",
|
|
72
|
+
"DELETE": "DELETE",
|
|
73
|
+
"HEAD": "HEAD",
|
|
74
|
+
"New Pull Request": "New Pull Request",
|
|
75
|
+
"New Star": "New Star",
|
|
76
|
+
"New Issue": "New Issue",
|
|
77
|
+
"Push": "Push",
|
|
78
|
+
"New Discussion": "New Discussion",
|
|
79
|
+
"New Comment Posted": "New Comment Posted",
|
|
80
|
+
"Triggers when there is activity on a pull request.": "Triggers when there is activity on a pull request.",
|
|
81
|
+
"Trigger when there is activity relating to repository stars.": "Trigger when there is activity relating to repository stars.",
|
|
82
|
+
"Triggers when there is activity relating to an issue.": "Triggers when there is activity relating to an issue.",
|
|
83
|
+
"Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.": "Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.",
|
|
84
|
+
"Triggers when there is activity relating to a discussion.": "Triggers when there is activity relating to a discussion.",
|
|
85
|
+
"Triggers when there is a new comment posted on a discussion.": "Triggers when there is a new comment posted on a discussion."
|
|
86
|
+
}
|
package/src/i18n/de.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GitHub": "GitHub",
|
|
3
|
+
"Developer platform that allows developers to create, store, manage and share their code": "Entwicklerplattform, die es Entwicklern erlaubt Code zu erstellen, zu speichern, zu verwalten und zu teilen",
|
|
4
|
+
"Create Issue": "Ticket erstellen",
|
|
5
|
+
"Get issue information": "Ticket-Informationen abrufen",
|
|
6
|
+
"Create comment on a issue": "Kommentar zu einem Problem erstellen",
|
|
7
|
+
"Lock issue": "Problem sperren",
|
|
8
|
+
"Unlock issue": "Problem entsperren",
|
|
9
|
+
"Raw GraphQL query": "Rohe GraphQL-Abfrage",
|
|
10
|
+
"Create Pull Request Review Comment": "Pull Request Review Kommentar erstellen",
|
|
11
|
+
"Create Commit Comment": "Commit Kommentar erstellen",
|
|
12
|
+
"Create Discussion Comment": "Diskussionskommentar erstellen",
|
|
13
|
+
"Custom API Call": "Eigener API-Aufruf",
|
|
14
|
+
"Create Issue in GitHub Repository": "Problem in GitHub Repository erstellen",
|
|
15
|
+
"Grabs information from a specific issue": "Erfasse Informationen von einem bestimmten Problem",
|
|
16
|
+
"Adds a comment to the specified issue (also works with pull requests)": "Fügt dem angegebenen Problem einen Kommentar hinzu (funktioniert auch mit Pull-Requests)",
|
|
17
|
+
"Locks the specified issue": "Sperrt den angegebenen Fall",
|
|
18
|
+
"Unlocks the specified issue": "Entsperrt den angegebenen Fall",
|
|
19
|
+
"Perform a raw GraphQL query": "Eine rohe GraphQL-Abfrage ausführen",
|
|
20
|
+
"Creates a review comment on a pull request in a GitHub repository": "Erstellt einen Kommentar zu einem Pull-Request in einem GitHub Repository",
|
|
21
|
+
"Creates a comment on a commit in a GitHub repository": "Erstellt einen Kommentar zu einem Commit in einem GitHub Repository",
|
|
22
|
+
"Creates a comment on a discussion in a GitHub repository": "Erstellt einen Kommentar zu einer Diskussion in einem GitHub Repository",
|
|
23
|
+
"Make a custom API call to a specific endpoint": "Einen benutzerdefinierten API-Aufruf an einen bestimmten Endpunkt machen",
|
|
24
|
+
"Repository": "Repository",
|
|
25
|
+
"Title": "Titel",
|
|
26
|
+
"Description": "Beschreibung",
|
|
27
|
+
"Labels": "Etiketten",
|
|
28
|
+
"Assignees": "Beauftragte",
|
|
29
|
+
"Issue Number": "Ticket Nummer",
|
|
30
|
+
"Issue number": "Ticket Nummer",
|
|
31
|
+
"Comment": "Kommentar",
|
|
32
|
+
"Lock Reason": "Sperrgrund",
|
|
33
|
+
"Query": "Abfrage",
|
|
34
|
+
"Parameters": "Parameter",
|
|
35
|
+
"Pull Request Number": "Pull-Request-Nummer",
|
|
36
|
+
"Commit SHA": "Commit SHA",
|
|
37
|
+
"File Path": "Dateipfad",
|
|
38
|
+
"Comment Body": "Kommentar-Text",
|
|
39
|
+
"Position": "Position",
|
|
40
|
+
"Discussion Number": "Diskussionsnummer",
|
|
41
|
+
"Method": "Methode",
|
|
42
|
+
"Headers": "Kopfzeilen",
|
|
43
|
+
"Query Parameters": "Abfrageparameter",
|
|
44
|
+
"Body": "Körper",
|
|
45
|
+
"No Error on Failure": "Kein Fehler bei Fehler",
|
|
46
|
+
"Timeout (in seconds)": "Timeout (in Sekunden)",
|
|
47
|
+
"The title of the issue": "Der Titel des Tickets",
|
|
48
|
+
"The description of the issue": "Die Beschreibung des Problems",
|
|
49
|
+
"Labels for the Issue": "Bezeichnungen für den Fall",
|
|
50
|
+
"Assignees for the Issue": "Beauftragte für den Fall",
|
|
51
|
+
"The number of the issue you want to get information from": "Die Anzahl des Problems, von dem Sie Informationen erhalten möchten",
|
|
52
|
+
"The number of the issue to comment on": "Die Anzahl der zu kommentierenden Probleme",
|
|
53
|
+
"The comment to add to the issue": "Der Kommentar, der dem Problem hinzugefügt werden soll",
|
|
54
|
+
"The number of the issue to be locked": "Die Anzahl der zu sperrenden Probleme",
|
|
55
|
+
"The reason for locking the issue": "Der Grund für das Sperren des Problems",
|
|
56
|
+
"The number of the issue to be unlocked": "Die Anzahl der zu entspertenden Probleme",
|
|
57
|
+
"The number of the pull request": "Die Anzahl der Pull-Requests",
|
|
58
|
+
"The SHA of the commit to comment on": "Die SHA des Commit zu kommentieren",
|
|
59
|
+
"The relative path to the file to comment on": "Der relative Pfad zur zu kommentierenden Datei",
|
|
60
|
+
"The content of the review comment": "Der Inhalt des Bewertungskommentars",
|
|
61
|
+
"The position in the diff where the comment should be placed": "Die Position im Diff, wo der Kommentar platziert werden soll",
|
|
62
|
+
"The content of the comment": "Der Inhalt des Kommentars",
|
|
63
|
+
"The relative path to the file to comment on (optional)": "Der relative Pfad zur zu kommentierenden Datei (optional)",
|
|
64
|
+
"The line index in the diff to comment on (optional)": "Der Zeilenindex in dem zu kommentierenden Diff (optional)",
|
|
65
|
+
"The number of the discussion to comment on": "Die Anzahl der Diskussionen, die kommentiert werden sollen",
|
|
66
|
+
"The content of the comment (supports markdown)": "Der Inhalt des Kommentars (unterstützt Markdown)",
|
|
67
|
+
"Authorization headers are injected automatically from your connection.": "Autorisierungs-Header werden automatisch von Ihrer Verbindung injiziert.",
|
|
68
|
+
"GET": "ERHALTEN",
|
|
69
|
+
"POST": "POST",
|
|
70
|
+
"PATCH": "PATCH",
|
|
71
|
+
"PUT": "PUT",
|
|
72
|
+
"DELETE": "LÖSCHEN",
|
|
73
|
+
"HEAD": "HEAD",
|
|
74
|
+
"New Pull Request": "Neuer Pull-Request",
|
|
75
|
+
"New Star": "Neuer Stern",
|
|
76
|
+
"New Issue": "Neuer Fall",
|
|
77
|
+
"Push": "Push",
|
|
78
|
+
"New Discussion": "Neue Diskussion",
|
|
79
|
+
"New Comment Posted": "Neuer Kommentar veröffentlicht",
|
|
80
|
+
"Triggers when there is activity on a pull request.": "Wird ausgelöst, wenn ein Pull-Request aktiv ist.",
|
|
81
|
+
"Trigger when there is activity relating to repository stars.": "Auslösen wenn es Aktivitäten in Bezug auf Repository-Sterne gibt.",
|
|
82
|
+
"Triggers when there is activity relating to an issue.": "Wird ausgelöst, wenn es Aktivitäten im Zusammenhang mit einem Thema gibt.",
|
|
83
|
+
"Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.": "Wird ausgelöst, wenn es einen Push zu einem Repository-Zweig gibt. Dies schließt ein, wenn ein Commit gedrückt wird, wenn ein Commit-Tag gedrückt wird, wenn ein Branch gelöscht wird , wenn ein Tag gelöscht wird oder wenn ein Repository aus einer Vorlage erstellt wird.",
|
|
84
|
+
"Triggers when there is activity relating to a discussion.": "Wird ausgelöst, wenn es Aktivitäten im Zusammenhang mit einer Diskussion gibt.",
|
|
85
|
+
"Triggers when there is a new comment posted on a discussion.": "Trigger wenn es einen neuen Kommentar zu einer Diskussion gepostet."
|
|
86
|
+
}
|
package/src/i18n/es.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GitHub": "GitHub",
|
|
3
|
+
"Developer platform that allows developers to create, store, manage and share their code": "Plataforma de desarrollador que permite a los desarrolladores crear, almacenar, administrar y compartir su código",
|
|
4
|
+
"Create Issue": "Crear asunto",
|
|
5
|
+
"Get issue information": "Obtener información del problema",
|
|
6
|
+
"Create comment on a issue": "Crear comentario sobre un problema",
|
|
7
|
+
"Lock issue": "Bloquear incidencia",
|
|
8
|
+
"Unlock issue": "Desbloquear incidencia",
|
|
9
|
+
"Raw GraphQL query": "Consulta GraphQL Raw",
|
|
10
|
+
"Create Pull Request Review Comment": "Crear comentario de Revisión de Pull Request",
|
|
11
|
+
"Create Commit Comment": "Crear comentario de commit",
|
|
12
|
+
"Create Discussion Comment": "Crear comentario de discusión",
|
|
13
|
+
"Custom API Call": "Llamada API personalizada",
|
|
14
|
+
"Create Issue in GitHub Repository": "Crear problema en el repositorio de GitHub",
|
|
15
|
+
"Grabs information from a specific issue": "Agarra información de un problema específico",
|
|
16
|
+
"Adds a comment to the specified issue (also works with pull requests)": "Añade un comentario al problema especificado (también funciona con pull requests)",
|
|
17
|
+
"Locks the specified issue": "Bloquea el problema especificado",
|
|
18
|
+
"Unlocks the specified issue": "Desbloquea el problema especificado",
|
|
19
|
+
"Perform a raw GraphQL query": "Realizar una consulta GraphQL sin procesar",
|
|
20
|
+
"Creates a review comment on a pull request in a GitHub repository": "Crea un comentario de revisión en un pull request en un repositorio de GitHub",
|
|
21
|
+
"Creates a comment on a commit in a GitHub repository": "Crea un comentario en un commit en un repositorio de GitHub",
|
|
22
|
+
"Creates a comment on a discussion in a GitHub repository": "Crea un comentario en una discusión en un repositorio de GitHub",
|
|
23
|
+
"Make a custom API call to a specific endpoint": "Hacer una llamada API personalizada a un extremo específico",
|
|
24
|
+
"Repository": "Repositorio",
|
|
25
|
+
"Title": "Título",
|
|
26
|
+
"Description": "Descripción",
|
|
27
|
+
"Labels": "Etiquetas",
|
|
28
|
+
"Assignees": "Asignados",
|
|
29
|
+
"Issue Number": "Número de petición",
|
|
30
|
+
"Issue number": "Número de petición",
|
|
31
|
+
"Comment": "Comentario",
|
|
32
|
+
"Lock Reason": "Razón de bloqueo",
|
|
33
|
+
"Query": "Consulta",
|
|
34
|
+
"Parameters": "Parámetros",
|
|
35
|
+
"Pull Request Number": "Número de Pull Request",
|
|
36
|
+
"Commit SHA": "Commit SHA",
|
|
37
|
+
"File Path": "Ruta del archivo",
|
|
38
|
+
"Comment Body": "Comentar cuerpo",
|
|
39
|
+
"Position": "Posición",
|
|
40
|
+
"Discussion Number": "Número de discusión",
|
|
41
|
+
"Method": "Método",
|
|
42
|
+
"Headers": "Encabezados",
|
|
43
|
+
"Query Parameters": "Parámetros de consulta",
|
|
44
|
+
"Body": "Cuerpo",
|
|
45
|
+
"No Error on Failure": "No hay ningún error en fallo",
|
|
46
|
+
"Timeout (in seconds)": "Tiempo de espera (en segundos)",
|
|
47
|
+
"The title of the issue": "El título del asunto",
|
|
48
|
+
"The description of the issue": "La descripción del problema",
|
|
49
|
+
"Labels for the Issue": "Etiquetas para el problema",
|
|
50
|
+
"Assignees for the Issue": "Asignados para el problema",
|
|
51
|
+
"The number of the issue you want to get information from": "El número del problema del que desea obtener información",
|
|
52
|
+
"The number of the issue to comment on": "El número de la incidencia a comentar en",
|
|
53
|
+
"The comment to add to the issue": "El comentario a añadir al asunto",
|
|
54
|
+
"The number of the issue to be locked": "El número de la incidencia a bloquear",
|
|
55
|
+
"The reason for locking the issue": "La razón para bloquear el problema",
|
|
56
|
+
"The number of the issue to be unlocked": "El número del problema a desbloquear",
|
|
57
|
+
"The number of the pull request": "El número de pull request",
|
|
58
|
+
"The SHA of the commit to comment on": "El SHA del compromiso a comentar en",
|
|
59
|
+
"The relative path to the file to comment on": "La ruta relativa al archivo en el que comentar",
|
|
60
|
+
"The content of the review comment": "El contenido del comentario de revisión",
|
|
61
|
+
"The position in the diff where the comment should be placed": "La posición en la diferencia donde se debe colocar el comentario",
|
|
62
|
+
"The content of the comment": "El contenido del comentario",
|
|
63
|
+
"The relative path to the file to comment on (optional)": "La ruta relativa al archivo en el que comentar (opcional)",
|
|
64
|
+
"The line index in the diff to comment on (optional)": "El índice de línea en la diferencia para comentar (opcional)",
|
|
65
|
+
"The number of the discussion to comment on": "El número de discusión en la que comentar",
|
|
66
|
+
"The content of the comment (supports markdown)": "El contenido del comentario (soporta markdown)",
|
|
67
|
+
"Authorization headers are injected automatically from your connection.": "Las cabeceras de autorización se inyectan automáticamente desde tu conexión.",
|
|
68
|
+
"GET": "RECOGER",
|
|
69
|
+
"POST": "POST",
|
|
70
|
+
"PATCH": "PATCH",
|
|
71
|
+
"PUT": "PUT",
|
|
72
|
+
"DELETE": "BORRAR",
|
|
73
|
+
"HEAD": "LIMPIO",
|
|
74
|
+
"New Pull Request": "Nueva Pull Request",
|
|
75
|
+
"New Star": "Nueva estrella",
|
|
76
|
+
"New Issue": "Nuevo problema",
|
|
77
|
+
"Push": "Empujar",
|
|
78
|
+
"New Discussion": "Nueva discusión",
|
|
79
|
+
"New Comment Posted": "Nuevo comentario publicado",
|
|
80
|
+
"Triggers when there is activity on a pull request.": "Dispara cuando hay actividad en una solicitud de extracción.",
|
|
81
|
+
"Trigger when there is activity relating to repository stars.": "Activar cuando hay actividad relacionada con las estrellas del repositorio.",
|
|
82
|
+
"Triggers when there is activity relating to an issue.": "Disparadores cuando hay actividad relacionada con un problema.",
|
|
83
|
+
"Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.": "Desencadena cuando hay un push en una rama del repositorio. Esto incluye cuando un commit es pushed, cuando una etiqueta de commit es pushed, cuando una rama es eliminada, cuando se elimina una etiqueta, o cuando se crea un repositorio a partir de una plantilla.",
|
|
84
|
+
"Triggers when there is activity relating to a discussion.": "Disparadores cuando hay actividad relacionada con un debate.",
|
|
85
|
+
"Triggers when there is a new comment posted on a discussion.": "Dispara cuando hay un nuevo comentario publicado en una discusión."
|
|
86
|
+
}
|
package/src/i18n/fr.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GitHub": "GitHub",
|
|
3
|
+
"Developer platform that allows developers to create, store, manage and share their code": "Plateforme de développement qui permet aux développeurs de créer, stocker, gérer et partager leur code",
|
|
4
|
+
"Create Issue": "Créer un problème",
|
|
5
|
+
"Get issue information": "Obtenir des informations sur les tickets",
|
|
6
|
+
"Create comment on a issue": "Créer un commentaire sur un problème",
|
|
7
|
+
"Lock issue": "Problème de verrouillage",
|
|
8
|
+
"Unlock issue": "Problème de déverrouillage",
|
|
9
|
+
"Raw GraphQL query": "Requête GraphQL brute",
|
|
10
|
+
"Create Pull Request Review Comment": "Créer un commentaire de révision de Pull Request",
|
|
11
|
+
"Create Commit Comment": "Créer un commentaire de commit",
|
|
12
|
+
"Create Discussion Comment": "Créer un commentaire de discussion",
|
|
13
|
+
"Custom API Call": "Appel API personnalisé",
|
|
14
|
+
"Create Issue in GitHub Repository": "Créer un problème dans le dépôt GitHub",
|
|
15
|
+
"Grabs information from a specific issue": "Récupère des informations à partir d'un problème spécifique",
|
|
16
|
+
"Adds a comment to the specified issue (also works with pull requests)": "Ajoute un commentaire à la demande spécifiée (fonctionne également avec les pull requests)",
|
|
17
|
+
"Locks the specified issue": "Verrouille le problème spécifié",
|
|
18
|
+
"Unlocks the specified issue": "Débloque le problème spécifié",
|
|
19
|
+
"Perform a raw GraphQL query": "Effectuer une requête GraphQL brute",
|
|
20
|
+
"Creates a review comment on a pull request in a GitHub repository": "Crée un commentaire sur une pull request dans un dépôt GitHub",
|
|
21
|
+
"Creates a comment on a commit in a GitHub repository": "Crée un commentaire sur un commit dans un dépôt GitHub",
|
|
22
|
+
"Creates a comment on a discussion in a GitHub repository": "Crée un commentaire sur une discussion dans un dépôt GitHub",
|
|
23
|
+
"Make a custom API call to a specific endpoint": "Passez un appel API personnalisé à un point de terminaison spécifique",
|
|
24
|
+
"Repository": "Dépôt",
|
|
25
|
+
"Title": "Titre de la page",
|
|
26
|
+
"Description": "Libellé",
|
|
27
|
+
"Labels": "Étiquettes",
|
|
28
|
+
"Assignees": "Assignés",
|
|
29
|
+
"Issue Number": "Numéro du ticket",
|
|
30
|
+
"Issue number": "Numéro du ticket",
|
|
31
|
+
"Comment": "Commenter",
|
|
32
|
+
"Lock Reason": "Raison du verrouillage",
|
|
33
|
+
"Query": "Requête",
|
|
34
|
+
"Parameters": "Paramètres",
|
|
35
|
+
"Pull Request Number": "Numéro de la demande d'ajout",
|
|
36
|
+
"Commit SHA": "SHA de commit",
|
|
37
|
+
"File Path": "Chemin du fichier",
|
|
38
|
+
"Comment Body": "Corps du commentaire",
|
|
39
|
+
"Position": "Position",
|
|
40
|
+
"Discussion Number": "Numéro de discussion",
|
|
41
|
+
"Method": "Méthode",
|
|
42
|
+
"Headers": "En-têtes",
|
|
43
|
+
"Query Parameters": "Paramètres de requête",
|
|
44
|
+
"Body": "Corps",
|
|
45
|
+
"No Error on Failure": "Aucune erreur en cas d'échec",
|
|
46
|
+
"Timeout (in seconds)": "Délai d'attente (en secondes)",
|
|
47
|
+
"The title of the issue": "Le titre de la question",
|
|
48
|
+
"The description of the issue": "La description du problème",
|
|
49
|
+
"Labels for the Issue": "Étiquettes pour le problème",
|
|
50
|
+
"Assignees for the Issue": "Destinataires pour le ticket",
|
|
51
|
+
"The number of the issue you want to get information from": "Le numéro du problème sur lequel vous souhaitez obtenir des informations",
|
|
52
|
+
"The number of the issue to comment on": "Le numéro du problème à commenter",
|
|
53
|
+
"The comment to add to the issue": "Le commentaire à ajouter à la fiche",
|
|
54
|
+
"The number of the issue to be locked": "Le numéro du ticket à verrouiller",
|
|
55
|
+
"The reason for locking the issue": "La raison du verrouillage du problème",
|
|
56
|
+
"The number of the issue to be unlocked": "Le numéro du ticket à déverrouiller",
|
|
57
|
+
"The number of the pull request": "Le numéro de la pull request",
|
|
58
|
+
"The SHA of the commit to comment on": "SHA de l'engagement à commenter",
|
|
59
|
+
"The relative path to the file to comment on": "Le chemin relatif vers le fichier sur lequel commenter",
|
|
60
|
+
"The content of the review comment": "Le contenu du commentaire de révision",
|
|
61
|
+
"The position in the diff where the comment should be placed": "La position dans le diff où le commentaire doit être placé",
|
|
62
|
+
"The content of the comment": "Le contenu du commentaire",
|
|
63
|
+
"The relative path to the file to comment on (optional)": "Le chemin relatif vers le fichier à commenter (optionnel)",
|
|
64
|
+
"The line index in the diff to comment on (optional)": "L'index de ligne dans le diff à commenter (optionnel)",
|
|
65
|
+
"The number of the discussion to comment on": "Le numéro de la discussion à commenter",
|
|
66
|
+
"The content of the comment (supports markdown)": "Le contenu du commentaire (prend en charge markdown)",
|
|
67
|
+
"Authorization headers are injected automatically from your connection.": "Les en-têtes d'autorisation sont injectés automatiquement à partir de votre connexion.",
|
|
68
|
+
"GET": "OBTENIR",
|
|
69
|
+
"POST": "POSTER",
|
|
70
|
+
"PATCH": "PATCH",
|
|
71
|
+
"PUT": "EFFACER",
|
|
72
|
+
"DELETE": "SUPPRIMER",
|
|
73
|
+
"HEAD": "TÊTE",
|
|
74
|
+
"New Pull Request": "Nouvelle demande de tirage",
|
|
75
|
+
"New Star": "Nouvelle étoile",
|
|
76
|
+
"New Issue": "Nouveau problème",
|
|
77
|
+
"Push": "Pousser",
|
|
78
|
+
"New Discussion": "Nouvelle discussion",
|
|
79
|
+
"New Comment Posted": "Nouveau commentaire publié",
|
|
80
|
+
"Triggers when there is activity on a pull request.": "Déclenche lorsqu'il y a une activité sur une demande de pulling.",
|
|
81
|
+
"Trigger when there is activity relating to repository stars.": "Déclencher lorsqu'il y a une activité liée aux étoiles du référentiel.",
|
|
82
|
+
"Triggers when there is activity relating to an issue.": "Déclenche lorsqu'il y a une activité liée à un problème.",
|
|
83
|
+
"Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.": "Déclenche quand il y a une poussée vers une branche de référentiel. Cela inclut quand un commit est poussé, quand une balise de commit est poussée, quand une branche est supprimée, quand un tag est supprimé, ou quand un dépôt est créé à partir d'un template.",
|
|
84
|
+
"Triggers when there is activity relating to a discussion.": "Déclenche lorsqu'il y a une activité liée à une discussion.",
|
|
85
|
+
"Triggers when there is a new comment posted on a discussion.": "Déclenche quand il y a un nouveau commentaire posté sur une discussion."
|
|
86
|
+
}
|
package/src/i18n/hi.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GitHub": "GitHub",
|
|
3
|
+
"Developer platform that allows developers to create, store, manage and share their code": "Developer platform that allows developers to create, store, manage and share their code",
|
|
4
|
+
"Create Issue": "Create Issue",
|
|
5
|
+
"Get issue information": "Get issue information",
|
|
6
|
+
"Create comment on a issue": "Create comment on a issue",
|
|
7
|
+
"Lock issue": "Lock issue",
|
|
8
|
+
"Unlock issue": "Unlock issue",
|
|
9
|
+
"Raw GraphQL query": "Raw GraphQL query",
|
|
10
|
+
"Create Pull Request Review Comment": "Create Pull Request Review Comment",
|
|
11
|
+
"Create Commit Comment": "Create Commit Comment",
|
|
12
|
+
"Create Discussion Comment": "Create Discussion Comment",
|
|
13
|
+
"Custom API Call": "Custom API Call",
|
|
14
|
+
"Create Issue in GitHub Repository": "Create Issue in GitHub Repository",
|
|
15
|
+
"Grabs information from a specific issue": "Grabs information from a specific issue",
|
|
16
|
+
"Adds a comment to the specified issue (also works with pull requests)": "Adds a comment to the specified issue (also works with pull requests)",
|
|
17
|
+
"Locks the specified issue": "Locks the specified issue",
|
|
18
|
+
"Unlocks the specified issue": "Unlocks the specified issue",
|
|
19
|
+
"Perform a raw GraphQL query": "Perform a raw GraphQL query",
|
|
20
|
+
"Creates a review comment on a pull request in a GitHub repository": "Creates a review comment on a pull request in a GitHub repository",
|
|
21
|
+
"Creates a comment on a commit in a GitHub repository": "Creates a comment on a commit in a GitHub repository",
|
|
22
|
+
"Creates a comment on a discussion in a GitHub repository": "Creates a comment on a discussion in a GitHub repository",
|
|
23
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
24
|
+
"Repository": "Repository",
|
|
25
|
+
"Title": "Title",
|
|
26
|
+
"Description": "Description",
|
|
27
|
+
"Labels": "Labels",
|
|
28
|
+
"Assignees": "Assignees",
|
|
29
|
+
"Issue Number": "Issue Number",
|
|
30
|
+
"Issue number": "Issue number",
|
|
31
|
+
"Comment": "Comment",
|
|
32
|
+
"Lock Reason": "Lock Reason",
|
|
33
|
+
"Query": "Query",
|
|
34
|
+
"Parameters": "Parameters",
|
|
35
|
+
"Pull Request Number": "Pull Request Number",
|
|
36
|
+
"Commit SHA": "Commit SHA",
|
|
37
|
+
"File Path": "File Path",
|
|
38
|
+
"Comment Body": "Comment Body",
|
|
39
|
+
"Position": "Position",
|
|
40
|
+
"Discussion Number": "Discussion Number",
|
|
41
|
+
"Method": "Method",
|
|
42
|
+
"Headers": "Headers",
|
|
43
|
+
"Query Parameters": "Query Parameters",
|
|
44
|
+
"Body": "Body",
|
|
45
|
+
"No Error on Failure": "No Error on Failure",
|
|
46
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
47
|
+
"The title of the issue": "The title of the issue",
|
|
48
|
+
"The description of the issue": "The description of the issue",
|
|
49
|
+
"Labels for the Issue": "Labels for the Issue",
|
|
50
|
+
"Assignees for the Issue": "Assignees for the Issue",
|
|
51
|
+
"The number of the issue you want to get information from": "The number of the issue you want to get information from",
|
|
52
|
+
"The number of the issue to comment on": "The number of the issue to comment on",
|
|
53
|
+
"The comment to add to the issue": "The comment to add to the issue",
|
|
54
|
+
"The number of the issue to be locked": "The number of the issue to be locked",
|
|
55
|
+
"The reason for locking the issue": "The reason for locking the issue",
|
|
56
|
+
"The number of the issue to be unlocked": "The number of the issue to be unlocked",
|
|
57
|
+
"The number of the pull request": "The number of the pull request",
|
|
58
|
+
"The SHA of the commit to comment on": "The SHA of the commit to comment on",
|
|
59
|
+
"The relative path to the file to comment on": "The relative path to the file to comment on",
|
|
60
|
+
"The content of the review comment": "The content of the review comment",
|
|
61
|
+
"The position in the diff where the comment should be placed": "The position in the diff where the comment should be placed",
|
|
62
|
+
"The content of the comment": "The content of the comment",
|
|
63
|
+
"The relative path to the file to comment on (optional)": "The relative path to the file to comment on (optional)",
|
|
64
|
+
"The line index in the diff to comment on (optional)": "The line index in the diff to comment on (optional)",
|
|
65
|
+
"The number of the discussion to comment on": "The number of the discussion to comment on",
|
|
66
|
+
"The content of the comment (supports markdown)": "The content of the comment (supports markdown)",
|
|
67
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
68
|
+
"GET": "GET",
|
|
69
|
+
"POST": "POST",
|
|
70
|
+
"PATCH": "PATCH",
|
|
71
|
+
"PUT": "PUT",
|
|
72
|
+
"DELETE": "DELETE",
|
|
73
|
+
"HEAD": "HEAD",
|
|
74
|
+
"New Pull Request": "New Pull Request",
|
|
75
|
+
"New Star": "New Star",
|
|
76
|
+
"New Issue": "New Issue",
|
|
77
|
+
"Push": "Push",
|
|
78
|
+
"New Discussion": "New Discussion",
|
|
79
|
+
"New Comment Posted": "New Comment Posted",
|
|
80
|
+
"Triggers when there is activity on a pull request.": "Triggers when there is activity on a pull request.",
|
|
81
|
+
"Trigger when there is activity relating to repository stars.": "Trigger when there is activity relating to repository stars.",
|
|
82
|
+
"Triggers when there is activity relating to an issue.": "Triggers when there is activity relating to an issue.",
|
|
83
|
+
"Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.": "Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.",
|
|
84
|
+
"Triggers when there is activity relating to a discussion.": "Triggers when there is activity relating to a discussion.",
|
|
85
|
+
"Triggers when there is a new comment posted on a discussion.": "Triggers when there is a new comment posted on a discussion."
|
|
86
|
+
}
|
package/src/i18n/id.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GitHub": "GitHub",
|
|
3
|
+
"Developer platform that allows developers to create, store, manage and share their code": "Developer platform that allows developers to create, store, manage and share their code",
|
|
4
|
+
"Create Issue": "Create Issue",
|
|
5
|
+
"Get issue information": "Get issue information",
|
|
6
|
+
"Create comment on a issue": "Create comment on a issue",
|
|
7
|
+
"Lock issue": "Lock issue",
|
|
8
|
+
"Unlock issue": "Unlock issue",
|
|
9
|
+
"Raw GraphQL query": "Raw GraphQL query",
|
|
10
|
+
"Create Pull Request Review Comment": "Create Pull Request Review Comment",
|
|
11
|
+
"Create Commit Comment": "Create Commit Comment",
|
|
12
|
+
"Create Discussion Comment": "Create Discussion Comment",
|
|
13
|
+
"Custom API Call": "Custom API Call",
|
|
14
|
+
"Create Issue in GitHub Repository": "Create Issue in GitHub Repository",
|
|
15
|
+
"Grabs information from a specific issue": "Grabs information from a specific issue",
|
|
16
|
+
"Adds a comment to the specified issue (also works with pull requests)": "Adds a comment to the specified issue (also works with pull requests)",
|
|
17
|
+
"Locks the specified issue": "Locks the specified issue",
|
|
18
|
+
"Unlocks the specified issue": "Unlocks the specified issue",
|
|
19
|
+
"Perform a raw GraphQL query": "Perform a raw GraphQL query",
|
|
20
|
+
"Creates a review comment on a pull request in a GitHub repository": "Creates a review comment on a pull request in a GitHub repository",
|
|
21
|
+
"Creates a comment on a commit in a GitHub repository": "Creates a comment on a commit in a GitHub repository",
|
|
22
|
+
"Creates a comment on a discussion in a GitHub repository": "Creates a comment on a discussion in a GitHub repository",
|
|
23
|
+
"Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
|
|
24
|
+
"Repository": "Repository",
|
|
25
|
+
"Title": "Title",
|
|
26
|
+
"Description": "Description",
|
|
27
|
+
"Labels": "Labels",
|
|
28
|
+
"Assignees": "Assignees",
|
|
29
|
+
"Issue Number": "Issue Number",
|
|
30
|
+
"Issue number": "Issue number",
|
|
31
|
+
"Comment": "Comment",
|
|
32
|
+
"Lock Reason": "Lock Reason",
|
|
33
|
+
"Query": "Query",
|
|
34
|
+
"Parameters": "Parameters",
|
|
35
|
+
"Pull Request Number": "Pull Request Number",
|
|
36
|
+
"Commit SHA": "Commit SHA",
|
|
37
|
+
"File Path": "File Path",
|
|
38
|
+
"Comment Body": "Comment Body",
|
|
39
|
+
"Position": "Position",
|
|
40
|
+
"Discussion Number": "Discussion Number",
|
|
41
|
+
"Method": "Method",
|
|
42
|
+
"Headers": "Headers",
|
|
43
|
+
"Query Parameters": "Query Parameters",
|
|
44
|
+
"Body": "Body",
|
|
45
|
+
"No Error on Failure": "No Error on Failure",
|
|
46
|
+
"Timeout (in seconds)": "Timeout (in seconds)",
|
|
47
|
+
"The title of the issue": "The title of the issue",
|
|
48
|
+
"The description of the issue": "The description of the issue",
|
|
49
|
+
"Labels for the Issue": "Labels for the Issue",
|
|
50
|
+
"Assignees for the Issue": "Assignees for the Issue",
|
|
51
|
+
"The number of the issue you want to get information from": "The number of the issue you want to get information from",
|
|
52
|
+
"The number of the issue to comment on": "The number of the issue to comment on",
|
|
53
|
+
"The comment to add to the issue": "The comment to add to the issue",
|
|
54
|
+
"The number of the issue to be locked": "The number of the issue to be locked",
|
|
55
|
+
"The reason for locking the issue": "The reason for locking the issue",
|
|
56
|
+
"The number of the issue to be unlocked": "The number of the issue to be unlocked",
|
|
57
|
+
"The number of the pull request": "The number of the pull request",
|
|
58
|
+
"The SHA of the commit to comment on": "The SHA of the commit to comment on",
|
|
59
|
+
"The relative path to the file to comment on": "The relative path to the file to comment on",
|
|
60
|
+
"The content of the review comment": "The content of the review comment",
|
|
61
|
+
"The position in the diff where the comment should be placed": "The position in the diff where the comment should be placed",
|
|
62
|
+
"The content of the comment": "The content of the comment",
|
|
63
|
+
"The relative path to the file to comment on (optional)": "The relative path to the file to comment on (optional)",
|
|
64
|
+
"The line index in the diff to comment on (optional)": "The line index in the diff to comment on (optional)",
|
|
65
|
+
"The number of the discussion to comment on": "The number of the discussion to comment on",
|
|
66
|
+
"The content of the comment (supports markdown)": "The content of the comment (supports markdown)",
|
|
67
|
+
"Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
|
|
68
|
+
"GET": "GET",
|
|
69
|
+
"POST": "POST",
|
|
70
|
+
"PATCH": "PATCH",
|
|
71
|
+
"PUT": "PUT",
|
|
72
|
+
"DELETE": "DELETE",
|
|
73
|
+
"HEAD": "HEAD",
|
|
74
|
+
"New Pull Request": "New Pull Request",
|
|
75
|
+
"New Star": "New Star",
|
|
76
|
+
"New Issue": "New Issue",
|
|
77
|
+
"Push": "Push",
|
|
78
|
+
"New Discussion": "New Discussion",
|
|
79
|
+
"New Comment Posted": "New Comment Posted",
|
|
80
|
+
"Triggers when there is activity on a pull request.": "Triggers when there is activity on a pull request.",
|
|
81
|
+
"Trigger when there is activity relating to repository stars.": "Trigger when there is activity relating to repository stars.",
|
|
82
|
+
"Triggers when there is activity relating to an issue.": "Triggers when there is activity relating to an issue.",
|
|
83
|
+
"Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.": "Triggers when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template.",
|
|
84
|
+
"Triggers when there is activity relating to a discussion.": "Triggers when there is activity relating to a discussion.",
|
|
85
|
+
"Triggers when there is a new comment posted on a discussion.": "Triggers when there is a new comment posted on a discussion."
|
|
86
|
+
}
|