Skip to content

Commit f26451b

Browse files
Update environment selection tooltips from "Workspace" to "Project" (#434)
This PR updates the language in the environment selection tooltips to align with terminology used elsewhere in the extension. ## Changes: - Changed "Set Workspace Environment" to "Set Project Environment" in the command title - Changed "Set As Workspace environment" to "Set As Project environment" in the command title - Updated tooltip text from "This environment is selected for workspace files" to "This environment is selected for project files" These changes ensure consistency in the UI language, where "Project" is the preferred term according to the extension's documentation and UI. Fixes #328. > [!WARNING] > > <details> > <summary>Firewall rules blocked me from connecting to one or more addresses</summary> > > #### I tried to connect to the following addresses, but was blocked by firewall rules: > > - `cdn.fwupd.org` > - Triggering command: `/usr/bin/fwupdmgr refresh ` (dns block) > > If you need me to access, download, or install something from one of these locations, you can either: > > - Configure [Actions setup steps](https://gh.io/copilot/actions-setup-steps) to set up my environment, which run before the firewall is enabled > - Add the appropriate URLs or hosts to my [firewall allow list](https://gh.io/copilot/firewall-config) > > </details> --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com>
1 parent 522ffac commit f26451b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"python-envs.copyProjectPath.title": "Copy Project Path",
2020
"python-envs.create.title": "Create Environment",
2121
"python-envs.createAny.title": "Create Environment",
22-
"python-envs.set.title": "Set Workspace Environment",
23-
"python-envs.setEnv.title": "Set As Workspace Environment",
22+
"python-envs.set.title": "Set Project Environment",
23+
"python-envs.setEnv.title": "Set As Project Environment",
2424
"python-envs.reset.title": "Reset to Default",
2525
"python-envs.remove.title": "Delete Environment",
2626
"python-envs.refreshAllManagers.title": "Refresh All Environment Managers",

src/common/localize.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export namespace ProjectCreatorString {
172172

173173
export namespace EnvViewStrings {
174174
export const selectedGlobalTooltip = l10n.t('This environment is selected for non-workspace files');
175-
export const selectedWorkspaceTooltip = l10n.t('This environment is selected for workspace files');
175+
export const selectedWorkspaceTooltip = l10n.t('This environment is selected for project files');
176176
}
177177

178178
export namespace ActivationStrings {

0 commit comments

Comments
 (0)