Skip to content

Commit

Permalink
Fix missing spaces in update prompt (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
shueja authored Jun 1, 2024
1 parent 8ef02e3 commit 5b08a6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vscode-wpilib/src/wpilibupdates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class WPILibUpdates {
const persistentState = WPILibUpdates.getUpdatePersistentState(wp);
if (newVersion !== undefined && persistentState.Value === false) {
const result = await vscode.window.showInformationMessage
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project` +
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project ` +
`to WPILib version {0}?`, newVersion, grVersion), {
modal: true,
}, i18n('ui', 'Yes'), i18n('ui', 'No'), i18n('ui', 'No, Don\'t ask again'));
Expand Down Expand Up @@ -78,7 +78,7 @@ export class WPILibUpdates {
return false;
} else {
const result = await vscode.window.showInformationMessage
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project` +
(i18n('message', `This project is currently using WPILib version ({1}). Would you like to update the project ` +
`to WPILib version {0}?`, newVersion.newVersion, grVersion), {
modal: true,
}, i18n('ui', 'Yes'), i18n('ui', 'No'));
Expand Down

0 comments on commit 5b08a6c

Please sign in to comment.