Files
openide/plugins/devkit/intellij.kotlin.devkit/resources/messages/DevKitKotlinBundle.properties
Elena Lyulina 64f639be03 [devkit] IDEA-298703 fix wording, make EP impl internal
GitOrigin-RevId: 7d7c0d2a1c1f81c1b69a0fd20e7b585cd76e8aeb
2023-08-23 11:03:10 +00:00

29 lines
2.9 KiB
INI

inspections.plugin.extension.registers.kotlin.object=Extension class is a Kotlin object
inspections.plugin.kotlin.object.registered.as.extension=Kotlin object registered as extension
inspections.forbidden.method.in.suspend.context=Forbidden in suspend context method usage
inspections.forbidden.method.in.suspend.context.text=Method ''{0}'' annotated with @RequiresBlockingContext. It is not designed to be called in suspend functions
inspections.forbidden.method.in.suspend.context.check.canceled.text=Do not call 'ProgressManager.checkCanceled' in suspend context. Use top-level 'checkCancelled' function
inspections.forbidden.method.in.suspend.context.check.canceled.fix.text=Replace 'ProgressManager.checkCanceled' with coroutine-friendly 'checkCancelled'
inspections.forbidden.method.in.suspend.context.invoke.and.wait.text='invokeAndWait' can block current coroutine. Use 'Dispatchers.EDT' instead
inspections.forbidden.method.in.suspend.context.invoke.and.wait.fix.text=Replace 'invokeAndWait' call with 'withContext(Dispatchers.EDT) {}'
inspections.forbidden.method.in.suspend.context.invoke.later.text='invokeLater' is not idiomatic in suspend context. Use 'Dispatchers.EDT' instead
inspections.forbidden.method.in.suspend.context.invoke.later.fix.with.context.text=(May change semantics) Replace 'invokeLater' call with 'withContext(Dispatchers.EDT) {}'
inspections.forbidden.method.in.suspend.context.invoke.later.fix.launch.text=Replace 'invokeLater' with 'launch(Dispatchers.EDT)'
inspections.forbidden.method.in.suspend.context.default.modality.state.text='defaultModalityState()' does not work in suspend context. If it is really necessary, use 'contextModality()'
inspections.forbidden.method.in.suspend.context.navigate.to.suspend.context=Navigate to suspend context
inspections.companion.object.in.extension=Companion object in extensions
inspections.companion.object.in.extension.message=Companion objects in IDE extension implementations may only contain a logger and constants
inspections.empty.companion.object.in.extension.message=Extensions should not contain a companion object
inspections.remove.empty.companion.object.fix.text=Remove empty companion object
inspections.create.object.and.move.prohibited.declarations.fix.text=Create an object and move the prohibited declarations
inspections.move.prohibited.declarations.to.top.level.fix.text=Move prohibited declarations to top level
inspection.light.service.must.not.be.open.message=Light service must not be open
inspection.extension.class.should.not.be.open.text=Extension class should not be open
inspections.application.service.as.static.immutable.property.with.backing.field.message=Application service must not be assigned to a static immutable property with a backing field
inspections.an.explicit.method.should.be.used.to.retrieve.an.application.service.message=Provide explicit 'getInstance()' method to access application service instead of a property