Skip to content

Commit 0d9370c

Browse files
committed
remove unnecessary translation
1 parent 23675f0 commit 0d9370c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/github/gists.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,19 +273,19 @@ func UpdateGist(getClient GetClientFn, t translations.TranslationHelperFunc) (mc
273273
Properties: map[string]*jsonschema.Schema{
274274
"gist_id": {
275275
Type: "string",
276-
Description: t("TOOL_UPDATE_GIST_GIST_ID_DESCRIPTION", "ID of the gist to update"),
276+
Description: "ID of the gist to update",
277277
},
278278
"description": {
279279
Type: "string",
280-
Description: t("TOOL_UPDATE_GIST_DESCRIPTION_DESCRIPTION", "Updated description of the gist"),
280+
Description: "Updated description of the gist",
281281
},
282282
"filename": {
283283
Type: "string",
284-
Description: t("TOOL_UPDATE_GIST_FILENAME_DESCRIPTION", "Filename to update or create"),
284+
Description: "Filename to update or create",
285285
},
286286
"content": {
287287
Type: "string",
288-
Description: t("TOOL_UPDATE_GIST_CONTENT_DESCRIPTION", "Content for the file"),
288+
Description: "Content for the file",
289289
},
290290
},
291291
Required: []string{"gist_id", "filename", "content"},

0 commit comments

Comments
 (0)