diff --git a/json/resources/META-INF/plugin.xml b/json/resources/META-INF/plugin.xml index 5312040a13eb..d257452ed35b 100644 --- a/json/resources/META-INF/plugin.xml +++ b/json/resources/META-INF/plugin.xml @@ -13,15 +13,12 @@ JSON Schema languages ]]> - + - - - diff --git a/json/resources/messages/JsonBundle.properties b/json/resources/messages/JsonBundle.properties index 023105d7ae21..3d84677e4aa8 100644 --- a/json/resources/messages/JsonBundle.properties +++ b/json/resources/messages/JsonBundle.properties @@ -96,7 +96,7 @@ action.DumbAware.JsonSchemaMappingsConfigurable.text.add=Add action.DumbAware.JsonSchemaMappingsConfigurable.description.add=Add filetype.json.description=JSON filetype.json_lines.description=JSON lines -copy.json.pointer=Copy JSON Pointer +action.JsonCopyPointer.text=Copy JSON Pointer cannot.sort.properties=Cannot Sort Properties file.is.readonly=File is readonly not.applicable.in.batch.mode=Not Applicable in Batch Mode diff --git a/json/src/com/intellij/json/editor/JsonCopyPointerAction.java b/json/src/com/intellij/json/editor/JsonCopyPointerAction.java index 8fd2bf4418e1..45f587a57cae 100644 --- a/json/src/com/intellij/json/editor/JsonCopyPointerAction.java +++ b/json/src/com/intellij/json/editor/JsonCopyPointerAction.java @@ -28,7 +28,7 @@ public final class JsonCopyPointerAction extends CopyReferenceAction { @Override public void update(@NotNull AnActionEvent e) { super.update(e); - e.getPresentation().setText(JsonBundle.message("copy.json.pointer")); + e.getPresentation().setText(JsonBundle.message("action.JsonCopyPointer.text")); DataContext dataContext = e.getDataContext(); Editor editor = CommonDataKeys.EDITOR.getData(dataContext); VirtualFile file = editor == null ? null : FileDocumentManager.getInstance().getFile(editor.getDocument());