Messages clarified, quotes added

GitOrigin-RevId: f191ad36a574aa3543758ce87ad0b03cc01cc550
This commit is contained in:
Tagir Valeev
2020-08-18 12:02:48 +00:00
committed by intellij-monorepo-bot
parent dd736b53c8
commit fa03a31c48
13 changed files with 18 additions and 18 deletions
@@ -1,4 +1,4 @@
// "Merge nested 'if's" "true"
// "Merge with nested 'if'" "true"
class Test {
// IDEA-179557
@@ -1,4 +1,4 @@
// "Merge nested 'if's" "true"
// "Merge with nested 'if'" "true"
class Test {
public static void main(String[] args) {
@@ -1,4 +1,4 @@
// "Merge nested 'if's" "true"
// "Merge with nested 'if'" "true"
class Test {
// IDEA-179557
@@ -1,4 +1,4 @@
// "Merge nested 'if's" "true"
// "Merge with nested 'if'" "true"
class Test {
public static void main(String[] args) {
@@ -1,4 +1,4 @@
// "Merge sequential 'if's" "true"
// "Merge with the next 'if' using ||" "true"
class Test {
public static void main(String[] args) {
@@ -1,4 +1,4 @@
// "Merge sequential 'if's" "true"
// "Merge with the next 'if' using ||" "true"
class ImplicitOr {
@@ -1,4 +1,4 @@
// "Merge sequential 'if's" "true"
// "Merge with the next 'if' using ||" "true"
class Test {
public static void main(String[] args) {
@@ -1,4 +1,4 @@
// "Merge sequential 'if's" "true"
// "Merge with the next 'if' using ||" "true"
class ImplicitOr {
@@ -807,7 +807,7 @@ intention.split.declaration.family=Split declaration
intention.split.filter.family=Split filter
intention.split.filter.text=Split into filter chain
intention.split.if.family=Split 'if'
intention.split.if.text=Split into 2 if's
intention.split.if.text=Split into 2 'if' statements
intention.split.switch.branch.with.several.case.values.copy.text=Copy 'switch' branch
intention.split.switch.branch.with.several.case.values.family=Split switch branch with several case values into individual 'switch' branches
intention.split.switch.branch.with.several.case.values.split.text=Split values of 'switch' branch
@@ -33,10 +33,10 @@ replace.switch.with.if.intention.family.name=Replace switch with if
constant.expression.intention.family.name=Compute constant value
create.assert.intention.name=Create JUnit assertion
create.assert.intention.family.name=Create JUnit assertion
merge.if.or.intention.name=Merge sequential 'if's
merge.if.or.intention.family.name=Merge sequential ifs
merge.if.and.intention.name=Merge nested 'if's
merge.if.and.intention.family.name=Merge nested ifs
merge.if.or.intention.name=Merge with the next 'if' using ||
merge.if.or.intention.family.name=Merge sequential 'if' statements
merge.if.and.intention.name=Merge with nested 'if'
merge.if.and.intention.family.name=Merge nested 'if' statements
replace.concatenation.with.string.buffer.intention.name=Replace '+' with 'StringBuffer.append()'
replace.concatenation.with.string.builder.intention.name=Replace '+' with 'StringBuilder.append()'
replace.concatenation.with.string.buffer.intention.family.name=Replace + with StringBuilder.append()
@@ -34,8 +34,8 @@ merge.else.if.intention.name=Merge else-if
merge.else.if.intention.family.name=Merge Else If
split.else.if.intention.name=Split else-if
split.else.if.intention.family.name=Split Else If
split.if.intention.name=Split into 2 if's
split.if.intention.family.name=Split into 2 if's
split.if.intention.name=Split into 2 'if' statements
split.if.intention.family.name=Split into 2 'if' statements
invert.if.intention.name=Invert 'if' condition
invert.if.intention.family.name=Invert 'if' condition
replace.ternary.with.if.else.intention.name=Replace ''?:'' with if else
@@ -25,7 +25,7 @@ class SplitIfTest extends GrIntentionTestCase {
c();
}
''',
'Split into 2 if\'s',
'Split into 2 \'if\' statements',
'''if (a) {
if (b) {
c();
@@ -42,6 +42,6 @@ class SplitIfTest extends GrIntentionTestCase {
d();
}
''',
'Split into 2 if\'s'
'Split into 2 \'if\' statements'
}
}
@@ -195,7 +195,7 @@ INTN.replace.list.comprehensions.with.for=Convert list comprehensions to for loo
INTN.replace.method=Replace method which is not supported in current Python version
INTN.split.if=Split if
INTN.split.if.text=Split into 2 if's
INTN.split.if.text=Split into 2 'if' statements
INTN.negate.comparison=Negate comparison
INTN.negate.$0.to.$1=Negate ''{0}'' to ''{1}''