[Kotlin] Update descriptions of multi-dollar inspections

KTIJ-31651
KTIJ-31819


(cherry picked from commit ca572821b422f84908e525b11b49dc261187f5f2)

KT-CR-18891

GitOrigin-RevId: 84478ca5d3df53f1d4196c8c1f3d0d955b5b83dc
This commit is contained in:
Pavel Kirpichenkov
2024-11-06 17:44:41 +02:00
committed by intellij-monorepo-bot
parent 6101bf71d5
commit 81ae9e99d7
2 changed files with 3 additions and 3 deletions

View File

@@ -2285,10 +2285,10 @@ inspection.remove.setter.parameter.type.display.name=Redundant setter parameter
inspection.convert.reference.to.lambda.display.name=Can be replaced with lambda
inspection.convert.lambda.to.reference.display.name=Can be replaced with function reference
inspection.can.be.primary.constructor.property.display.name=Property is explicitly assigned to constructor parameter
inspection.can.unescape.dollar.literal.inspection.display.name=Escaped dollar characters in string can be simplified
inspection.can.unescape.dollar.literal.inspection.display.name=Redundant escaped dollar characters in string literals (available since 2.1)
inspection.can.unescape.dollar.literal.inspection.problem.description=Escaped dollar characters in the string can be simplified
replace.with.dollar.literals=Replace escaped dollars with literals
inspection.can.convert.to.multi.dollar.string.display.name=Interpolation prefix can simplify string
inspection.can.convert.to.multi.dollar.string.display.name=Multi-dollar interpolation can be used in string literals (available since 2.1)
inspection.can.convert.to.multi.dollar.string.problem.description=An interpolation prefix can simplify the string
add.interpolation.prefix=Add interpolation prefix
inspection.has.platform.type.display.name=Function or property has platform type

View File

@@ -1,6 +1,6 @@
<html>
<body>
Reports that a string can benefit from a conversion to a version with an interpolation prefix.
Reports that a string can benefit from a conversion to a version with a multi-dollar interpolation prefix.
<p>
An interpolation prefix may make a string easier to comprehend, since prefixed strings can use dollar literals without additional escaping.
</p>