Skip to content

Commit bd23e71

Browse files
authored
fix(beta): product name for Q beta #6036
1 parent f1cdbeb commit bd23e71

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/core/src/dev/beta.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ async function promptInstallToolkit(pluginPath: vscode.Uri, newVersion: string,
158158
const response = await vscode.window.showInformationMessage(
159159
localize(
160160
'AWS.dev.beta.updatePrompt',
161-
`New version of ${productName()} is available at the [beta URL]({0}). Install the new version "{1}" to continue using the beta.`,
161+
'New version of {0} is available at the [beta URL]({1}). Install the new version "{2}" to continue using the beta.',
162+
productName(),
162163
vsixUrl,
163164
newVersion
164165
),
@@ -174,7 +175,9 @@ async function promptInstallToolkit(pluginPath: vscode.Uri, newVersion: string,
174175
lastCheck: Date.now(),
175176
needUpdate: false,
176177
})
177-
reloadWindowPrompt(localize('AWS.dev.beta.reloadPrompt', 'Reload now to use the new beta AWS Toolkit.'))
178+
reloadWindowPrompt(
179+
localize('AWS.dev.beta.reloadPrompt', 'Reload now to use the new beta {0}.', productName())
180+
)
178181
} catch (e) {
179182
throw ToolkitError.chain(e, `Failed to install ${vsixName}`, { code: 'FailedExtensionInstall' })
180183
}

0 commit comments

Comments
 (0)