Skip to content

Commit

Permalink
Add quotes to emphasize workspace name,
Browse files Browse the repository at this point in the history
to avoid confusion when workspace is named with a word
  • Loading branch information
krassowski committed Mar 19, 2024
1 parent 2872d00 commit f15ed80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/workspaces-extension/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export const commandsPlugin: JupyterFrontEndPlugin<IWorkspaceCommands> = {
const result = await showDialog({
title: trans.__('Delete workspace'),
body: trans.__(
'Deleting workspace %1 will also delete its URL. A deleted workspace cannot be recovered.',
'Deleting workspace "%1" will also delete its URL. A deleted workspace cannot be recovered.',
workspaceId
),
buttons: [
Expand Down Expand Up @@ -418,7 +418,7 @@ export const commandsPlugin: JupyterFrontEndPlugin<IWorkspaceCommands> = {
defaultPath: fileBrowser.model.path,
manager: fileBrowser.model.manager,
label: trans.__(
'The %1 workspace will be saved in the chosen directory as %1%2.',
'The "%1" workspace will be saved in the chosen directory as "%1%2".',
workspaceId,
WORKSPACE_EXT
),
Expand Down

0 comments on commit f15ed80

Please sign in to comment.