Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/common/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ export namespace UvInstallStrings {
'No Python found. Would you like to install uv and use it to install Python? This will download and run an installer from https://astral.sh.',
);
export const installPython = l10n.t('Install Python');
export const installUv = l10n.t('Install uv');
export const installUvAndPython = l10n.t('Install uv and Python');
export function installPythonVersion(version: string): string {
return l10n.t('Install Python {0}', version);
Expand Down Expand Up @@ -281,6 +282,12 @@ export namespace UvInstallStrings {
'No Python installation is available for this script. Would you like to install uv and use it to install Python? This will download and run an installer from https://astral.sh.',
);
}
export function inlineScriptInstallUvForVersionLookupPrompt(requiresPython: string): string {
return l10n.t(
'No installed Python satisfies this script\'s requirement ({0}). Install uv to find a compatible Python version? This will download and run an installer from https://astral.sh.',
requiresPython,
);
}
export const installingUv = l10n.t('Installing uv...');
export const installingPython = l10n.t('Installing Python via uv...');
export const installComplete = l10n.t('Python installed successfully');
Expand Down
Loading
Loading