Skip to content

Commit

Permalink
remove obsolete "Preferences" term usage
Browse files Browse the repository at this point in the history
  • Loading branch information
YannCebron committed Mar 27, 2023
1 parent 22eb168 commit 1fd9ebd
Show file tree
Hide file tree
Showing 22 changed files with 82 additions and 82 deletions.
8 changes: 4 additions & 4 deletions action_basics/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.action</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Action Sample</name>

<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
<depends>com.intellij.modules.platform</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates implementing Action and Action Group patterns.<br> Adds entries to the Tools menu.
Expand All @@ -28,7 +28,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<!-- Declare the default resource location for localizing menu strings -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.codeInspection</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Comparing References Inspection Sample</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.java</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates implementing a Local Inspection Tool.<br> Adds entries to
<b>Preferences | Editor | Inspections | Java | Probable Bugs</b>.
<b>Settings | Editor | Inspections | Java | Probable Bugs</b>.
]]>
</description>
<change-notes>
Expand All @@ -30,7 +30,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<extensions defaultExtensionNs="com.intellij">
Expand All @@ -45,9 +45,9 @@
- language - inspection language ID
- shortName - not specified, will be computed by the underlying implementation classes
- bundle - name of the message bundle for the "key" attribute
- key - the key of the message to be shown in the Preferences | Editor | Inspections panel
- key - the key of the message to be shown in the Settings | Editor | Inspections panel
- groupPath - defines the outermost grouping for this inspection in
the Preferences | Editor | Inspections panel. Not localized.
the Settings | Editor | Inspections panel. Not localized.
- groupBundle - the name of a message bundle file to translate groupKey
In this case, reuse an IntelliJ Platform bundle file from intellij.platform.resources.en
- groupKey - the key to use for translation subgroup name using groupBundle file.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.intention</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Conditional Operator Converter</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.java</depends>
<depends>com.intellij.modules.platform</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Intention action that suggests converting a ternary operator into an 'if' block.<br>
Adds entry to <b>Preferences | Editor | Intentions | SDK Intentions<b>.
Adds entry to <b>Settings | Editor | Intentions | SDK Intentions<b>.
]]>
</description>
<change-notes>
Expand All @@ -30,7 +30,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<extensions defaultExtensionNs="com.intellij">
Expand Down
6 changes: 3 additions & 3 deletions editor_basics/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.editor</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Editor Sample</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.platform</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Illustrates various basic Editor APIs. Requires at least project to be open, and a file open in the editor
Expand All @@ -29,7 +29,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<actions>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.

package org.intellij.sdk.facet;

Expand Down Expand Up @@ -37,7 +37,7 @@ public DemoFacetEditorTab(@NotNull DemoFacetState state, @NotNull FacetEditorCon
}

/**
* Provides the {@link JPanel} displayed in the Preferences | Facet UI
* Provides the {@link JPanel} displayed in the Project Structure | Facet UI
*
* @return {@link JPanel} to be displayed in the {@link DemoFacetEditorTab}.
*/
Expand Down
8 changes: 4 additions & 4 deletions facet_basics/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.facet</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Facet Basics</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.lang</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates implementing the custom Facet pattern.<br>Adds <em>SDK Facet</em>
Expand All @@ -27,7 +27,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<extensions defaultExtensionNs="com.intellij">
Expand Down
8 changes: 4 additions & 4 deletions framework_basics/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.framework</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Framework Sample</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.java</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates basic Framework support. <br>Adds <i>SDK Demo Framework</i> to
Expand All @@ -29,7 +29,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>


Expand Down
8 changes: 4 additions & 4 deletions kotlin_demo/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.kotlin</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Kotlin Demo</name>

<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
<depends>com.intellij.modules.platform</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Adds a <i>Greeting</i> menu group anchored last in the <b>Main Menu</b>
Expand All @@ -27,7 +27,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<actions>
Expand Down
10 changes: 5 additions & 5 deletions live_templates/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.liveTemplates</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Live Templates Sample</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.lang</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates implementing live templates for Markdown language.<br> Adds an entry to the
<b>Preferences | Editor | Live Templates</b> dialog.
<b>Settings | Editor | Live Templates</b> dialog.
]]>
</description>
<change-notes>
Expand All @@ -29,7 +29,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<extensions defaultExtensionNs="com.intellij">
Expand Down
8 changes: 4 additions & 4 deletions max_opened_projects/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.maxOpenProjects</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Maximum Open Projects Sample</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.platform</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates adding application services and listeners. Shows warning dialog when more than 3 open projects
Expand All @@ -32,7 +32,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<applicationListeners>
Expand Down
6 changes: 3 additions & 3 deletions module/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.module</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Module Type Sample</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.platform</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates example of working with module types<br>Adds <i>SDK Demo Module</i> to <b>File | New | Project...</b>
Expand All @@ -27,7 +27,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<extensions defaultExtensionNs="com.intellij">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->

<idea-plugin>

<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.pycharm</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: PyCharm Sample</name>

<!-- Requires the python plugin to run -->
<depends>com.intellij.modules.python</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates how to configure a plugin project for a PyCharm plugin.
Expand All @@ -24,7 +24,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<actions>
Expand Down
6 changes: 3 additions & 3 deletions project_model/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.project.model</id>

<!-- Text to display as name on Preferences/Settings | Plugin page -->
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Project Model Sample</name>

<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.java</depends>

<!-- Text to display as description on Preferences/Settings | Plugin page -->
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates various aspects of interacting with project model.<br>Adds menu items to
Expand All @@ -29,7 +29,7 @@
]]>
</change-notes>

<!-- Text to display as company information on Preferences/Settings | Plugin page -->
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>

<actions>
Expand Down
Loading

0 comments on commit 1fd9ebd

Please sign in to comment.