Skip to content

Commit a9626f1

Browse files
authored
fix: name settings (#131)
1 parent b99cbf1 commit a9626f1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@
13831383
{
13841384
"category": "Consistem",
13851385
"command": "vscode-objectscript.ccs.atualizarConfiguracoes",
1386-
"title": "Atualizar Configurações"
1386+
"title": "Atualizar Config. / Gerar Backup"
13871387
},
13881388
{
13891389
"category": "ObjectScript",

src/ccs/commands/atualizarConfiguracoes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ export async function atualizarConfiguracoes(): Promise<void> {
99
await vscode.window.withProgress(
1010
{
1111
location: vscode.ProgressLocation.Notification,
12-
title: "Atualizando configurações...",
12+
title: "Atualizando configurações e gerando backup...",
1313
cancellable: false,
1414
},
1515
async () => {
1616
try {
1717
const responseText = await sharedClient.atualizarConfig();
1818
renderOutput(responseText);
1919
} catch (error) {
20-
handleError(error, "Falha ao atualizar configurações.");
20+
handleError(error, "Falha ao atualizar configurações e gerar backup.");
2121
}
2222
}
2323
);

0 commit comments

Comments
 (0)