🆙 distro

This commit is contained in:
Benjamin Pasero
2021-08-27 07:45:20 +02:00
parent cb842dcad0
commit 2cfe7266c3
4 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -390,14 +390,14 @@ class WindowIndicator implements IWindowIndicator {
// Repo
if (repositoryName && repositoryOwner) {
this.label = localize('playgroundLabelRepository', "$(remote) VS Code Web Playground: {0}/{1}", repositoryOwner, repositoryName);
this.tooltip = localize('playgroundRepositoryTooltip', "VS Code Web Playground: {0}/{1}", repositoryOwner, repositoryName);
this.label = localize('playgroundLabelRepository', "$(remote) Visual Studio Code Playground: {0}/{1}", repositoryOwner, repositoryName);
this.tooltip = localize('playgroundRepositoryTooltip', "Visual Studio Code Playground: {0}/{1}", repositoryOwner, repositoryName);
}
// No Repo
else {
this.label = localize('playgroundLabel', "$(remote) VS Code Web Playground");
this.tooltip = localize('playgroundTooltip', "VS Code Web Playground");
this.label = localize('playgroundLabel', "$(remote) Visual Studio Code Playground");
this.tooltip = localize('playgroundTooltip', "Visual Studio Code Playground");
}
}
}