[PTRun]Add context buttons for VSCodeWorkspaces plugin (#36517)

This commit is contained in:
immi
2025-01-06 20:15:20 +05:00
committed by GitHub
parent 6ca02f0d3c
commit 5e9675eb4f
4 changed files with 164 additions and 25 deletions

View File

@@ -140,5 +140,32 @@ namespace Community.PowerToys.Run.Plugin.VSCodeWorkspaces.Properties {
return ResourceManager.GetString("Workspace", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copy Path.
/// </summary>
internal static string CopyPath {
get {
return ResourceManager.GetString("CopyPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open in console.
/// </summary>
internal static string OpenInConsole {
get {
return ResourceManager.GetString("OpenInConsole", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open in Explorer.
/// </summary>
internal static string OpenInExplorer {
get {
return ResourceManager.GetString("OpenInExplorer", resourceCulture);
}
}
}
}

View File

@@ -151,4 +151,13 @@
<value>Project Folder</value>
<comment>It refers to the Visual Studio Code Project Folders</comment>
</data>
<data name="CopyPath" xml:space="preserve">
<value>Copy path</value>
</data>
<data name="OpenInConsole" xml:space="preserve">
<value>Open in console</value>
</data>
<data name="OpenInExplorer" xml:space="preserve">
<value>Open in Explorer</value>
</data>
</root>