From 1a72110d48b6204ae7ebecee9082d183f8ada4d9 Mon Sep 17 00:00:00 2001 From: "ricardo.junior" Date: Wed, 3 Jun 2026 09:11:28 -0300 Subject: [PATCH] fix: name settings --- package.json | 2 +- src/ccs/commands/atualizarConfiguracoes.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e28fd225..81a8d3f4 100644 --- a/package.json +++ b/package.json @@ -1383,7 +1383,7 @@ { "category": "Consistem", "command": "vscode-objectscript.ccs.atualizarConfiguracoes", - "title": "Atualizar Configurações" + "title": "Atualizar Config. / Gerar Backup" }, { "category": "ObjectScript", diff --git a/src/ccs/commands/atualizarConfiguracoes.ts b/src/ccs/commands/atualizarConfiguracoes.ts index 97ebcd14..34d8e01c 100644 --- a/src/ccs/commands/atualizarConfiguracoes.ts +++ b/src/ccs/commands/atualizarConfiguracoes.ts @@ -9,7 +9,7 @@ export async function atualizarConfiguracoes(): Promise { await vscode.window.withProgress( { location: vscode.ProgressLocation.Notification, - title: "Atualizando configurações...", + title: "Atualizando configurações e gerando backup...", cancellable: false, }, async () => { @@ -17,7 +17,7 @@ export async function atualizarConfiguracoes(): Promise { const responseText = await sharedClient.atualizarConfig(); renderOutput(responseText); } catch (error) { - handleError(error, "Falha ao atualizar configurações."); + handleError(error, "Falha ao atualizar configurações e gerar backup."); } } );