mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
[devkit] AnalyzeUnloadablePluginsAction: I18n (IDEA-247667)
GitOrigin-RevId: 08d56276b78997c56931f8505f137bb31a430fdd
This commit is contained in:
committed by
intellij-monorepo-bot
parent
dba13ec801
commit
a2df7d3975
@@ -317,7 +317,9 @@ action.DevKit.ApplyTheme.text=Preview Theme
|
||||
action.DevKit.OpenThemeReferenceDocs.text=Open UI Themes Reference Documentation
|
||||
action.AnalyzeEPUsageIgnoreSafeClasses.text=Analyze EP Usage (Do not Follow Safe Types)
|
||||
action.AnalyzeEPUsage.text=Analyze EP Usage
|
||||
|
||||
action.AnalyzeUnloadablePlugins.text=Analyze Unloadable Plugins
|
||||
action.AnalyzeUnloadablePlugins.progress.title=Analyzing Plugins ({0})
|
||||
|
||||
action.DumpCleanTestData.text=Dump Highlighting-Markup-Free Data
|
||||
action.DumpCleanTestData.file.chooser.title=Choose Directory
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package org.jetbrains.idea.devkit.internal
|
||||
|
||||
import com.intellij.ide.plugins.PluginManagerCore
|
||||
@@ -16,6 +16,7 @@ import com.intellij.psi.search.GlobalSearchScopesCore
|
||||
import com.intellij.psi.xml.XmlFile
|
||||
import com.intellij.testFramework.LightVirtualFile
|
||||
import com.intellij.util.text.DateFormatUtil
|
||||
import org.jetbrains.idea.devkit.DevKitBundle
|
||||
import org.jetbrains.idea.devkit.dom.Dependency
|
||||
import org.jetbrains.idea.devkit.dom.IdeaPlugin
|
||||
import org.jetbrains.idea.devkit.util.DescriptorUtil
|
||||
@@ -62,7 +63,7 @@ class AnalyzeUnloadablePluginsAction : AnAction() {
|
||||
pi.text = status.pluginId
|
||||
}
|
||||
}
|
||||
}, "Analyzing Plugins (${dir?.name ?: "Project"})", true, e.project)
|
||||
}, DevKitBundle.message("action.AnalyzeUnloadablePlugins.progress.title", dir?.name ?: "Project"), true, e.project)
|
||||
|
||||
if (show) showReport(project, result)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user