Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IJ Plugin] Correctly name Open In items #6151

Merged
merged 1 commit into from
Sep 17, 2024
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
5 changes: 1 addition & 4 deletions intellij-plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -377,10 +377,7 @@
>
<add-to-group group-id="ApolloToolsActionGroup" />
<add-to-group group-id="RevealGroup" />
<override-text place="EditorTabPopup" text="Apollo Sandbox" />
<override-text place="ProjectViewPopup" use-text-of-place="EditorTabPopup" />
<override-text place="EditorPopup" use-text-of-place="EditorTabPopup" />
<override-text place="FavoritesPopup" use-text-of-place="EditorTabPopup" />
<override-text place="RevealInPopup" />
</action>

<!-- Tools / Apollo / Fetch Field Latencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ action.ApolloV3ToV4MigrationAction.confirmDialog.message=This will migrate your
Before refactoring please make sure to commit any local changes and that the project builds with no errors.



action.CompatToOperationBasedCodegenMigrationAction.text=Migrate to operationBased Codegen...
action.CompatToOperationBasedCodegenMigrationAction.description=Run the helper to migrate from the compat to the operationBased codegen
action.CompatToOperationBasedCodegenMigrationAction.confirmDialog.title=Migrate to operationBased Codegen
Expand Down Expand Up @@ -70,6 +71,8 @@ action.ThrowAction.text=Throw an Exception
action.GraphQLExecuteEditor.text=Execute GraphQL
action.GraphQLExecuteEditor.description=Executes the current GraphQL file against the specified GraphQL endpoint

action.OpenInSandboxAction.RevealInPopup.text=Apollo Sandbox

ApolloMigrationRefactoringProcessor.codeReferences=Items to be migrated

ApolloV2ToV3MigrationProcessor.title=Migrate to Apollo Kotlin 3
Expand Down
Loading