Fix messages for script configuration loading
Remove word "dependencies" from UI, use "configuration" instead
This commit is contained in:
@@ -10,8 +10,8 @@ notification.action.text.load.script.configuration=Load configuration
|
||||
notification.text.there.is.a.new.script.context.available=There is a new script context available.
|
||||
notification.text.script.configuration.has.been.changed=Script Configuration has been changed.
|
||||
notification.description.text.script.configuration.has.been.changed=Load changes to get script code insight without loading the external Gradle project.
|
||||
text.kotlin.loading.script.dependencies=Kotlin: Loading script dependencies...
|
||||
text.kotlin.loading.script.configuration=Kotlin: Loading script configuration...
|
||||
text.loading.kotlin.script.definitions=Loading kotlin script definitions
|
||||
text.loading.kotlin.script.dependencies=Loading kotlin script dependencies
|
||||
text.loading.kotlin.script.configuration=Loading script configuration
|
||||
implement.members.handler.title=Implement Members
|
||||
override.members.handler.title=Override Members
|
||||
|
||||
+1
-1
@@ -34,7 +34,7 @@ class ScriptTrafficLightRendererContributor : TrafficLightRendererContributor {
|
||||
!ScriptConfigurationManager.getInstance(project).hasConfiguration(file)
|
||||
&& !ScriptConfigurationManager.isManualConfigurationLoading(file.originalFile.virtualFile)
|
||||
) {
|
||||
status.reasonWhySuspended = KotlinIdeaCoreBundle.message("text.loading.kotlin.script.dependencies")
|
||||
status.reasonWhySuspended = KotlinIdeaCoreBundle.message("text.loading.kotlin.script.configuration")
|
||||
status.errorAnalyzingFinished = false
|
||||
}
|
||||
return status
|
||||
|
||||
+1
-1
@@ -204,7 +204,7 @@ internal class DefaultBackgroundExecutor(
|
||||
override fun start() {
|
||||
super.start()
|
||||
|
||||
object : Task.Backgroundable(project, KotlinIdeaCoreBundle.message("text.kotlin.loading.script.dependencies"), true) {
|
||||
object : Task.Backgroundable(project, KotlinIdeaCoreBundle.message("text.kotlin.loading.script.configuration"), true) {
|
||||
override fun run(indicator: ProgressIndicator) {
|
||||
progressIndicator = indicator
|
||||
updateProgress()
|
||||
|
||||
Reference in New Issue
Block a user