sentence capitalization

This commit is contained in:
Dmitry Avdeev
2014-12-06 13:25:00 +03:00
parent c7fd713d76
commit 6811ae3de3
36 changed files with 43 additions and 43 deletions

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public class Test {
public static void main() {
new MyCollection(10);

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public class Test {
public void main2() {
new MyCollection(this);

View File

@@ -1,10 +1,10 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Outer {
public Outer(String s) {
}
void method(Outer other) {
other.new CreateConstructorFromUsage("parameter"); // invoke "Create Constructor" quick fix here
other.new CreateConstructorFromUsage("parameter"); // invoke "Create constructor" quick fix here
}
class CreateConstructorFromUsage {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test {
public void t() {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test extends A{
public Test(String a) {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test {
void foo() throws Ex1 {}
void bar() throws Ex2 {}

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test extends A{
public Test(String a) {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public enum ReportType {
AGING("Aging");

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public enum ReportType {
AGING("Aging"),;

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test extends A{
public Test(String a) {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public class Test {
public static void main() {
new My<caret>Collection(10);

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public class Test {
public void main2() {
new <caret>MyCollection(this);

View File

@@ -1,10 +1,10 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Outer {
public Outer(String s) {
}
void method(Outer other) {
other.new <caret>CreateConstructorFromUsage("parameter"); // invoke "Create Constructor" quick fix here
other.new <caret>CreateConstructorFromUsage("parameter"); // invoke "Create constructor" quick fix here
}
class CreateConstructorFromUsage {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test {
public void t() {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test extends A{
public void t() {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test {
void foo() throws Ex1 {}
void bar() throws Ex2 {}

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test extends A{
public void t() {

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public enum ReportType {
AGING("Aging")<caret>
}

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public enum ReportType {
AGING("Aging")<caret>,
}

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class Test extends A{
public void t() {

View File

@@ -1,4 +1,4 @@
// "Create Constructor In 'Base'" "true"
// "Create constructor in 'Base'" "true"
class Base {
public Base(int i, Object o) {

View File

@@ -1,4 +1,4 @@
// "Create Constructor In 'Base'" "true"
// "Create constructor in 'Base'" "true"
class Base {
}

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class FooBar {
FooBar(int i) {
}

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
class FooBar {
FooBar(int i) {
}

View File

@@ -1,4 +1,4 @@
// "Create Parameter 'popop'" "true"
// "Create parameter 'popop'" "true"
class Calculator {
public void printError(int popop) {
int i = popop;

View File

@@ -1,4 +1,4 @@
// "Create Parameter 'popop'" "true"
// "Create parameter 'popop'" "true"
class Calculator {
public void printError(String detail, int line, String file, String popop) {
int i = popop;

View File

@@ -1,4 +1,4 @@
// "Create Parameter 'popop'" "true"
// "Create parameter 'popop'" "true"
class Calculator {
public void printError(String detail, int line, String file, int popop) {
int i = <caret>popop;

View File

@@ -1,4 +1,4 @@
// "Create Parameter 'popop'" "true"
// "Create parameter 'popop'" "true"
class Calculator {
public void printError() {
int i = <caret>popop;

View File

@@ -1,4 +1,4 @@
// "Create Parameter 'popop'" "true"
// "Create parameter 'popop'" "true"
class Calculator {
public void printError(String detail, int line, String file) {
int i = popop;

View File

@@ -1,4 +1,4 @@
// "Create Parameter 'popop'" "true"
// "Create parameter 'popop'" "true"
class Calculator {
public void printError(String detail, int line, String file) {
int i = <caret>popop;

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public class Seq<T> {
public Seq() {}

View File

@@ -1,4 +1,4 @@
// "Create Constructor" "true"
// "Create constructor" "true"
public class Seq<T> {
public Seq() {}

View File

@@ -309,7 +309,7 @@ ellipsis.type.is.not.allowed.here=Ellipsis type is not allowed here
method.0.is.too.complex.too.analyze=Method ''{0}'' is too complex to analyze.\nTypes of local variables are not inferred.
closure.is.too.complex.to.analyze=Closure is complex to analyze.\nTypes of local variables are not inferred.
0.is.deprecated=''{0}'' is deprecated
create.parameter.from.usage=Create Parameter ''{0}''
create.parameter.from.usage=Create parameter ''{0}''
wrong.number.of.type.arguments=Wrong number of type arguments\: {0}; required\: {1}
type.argument.0.is.not.in.its.bound.should.extend.1=Type parameter ''{0}'' is not in its bound; should extend ''{1}''
catch.statement.parameter.type.should.be.a.subclass.of.throwable=Catch statement parameter type should be a subclass of Throwable

View File

@@ -8515,7 +8515,7 @@ javascript.validation.message.vector.without.parameters=Vector without type
javascript.validation.message.vector.without.parameters2=Vector without type can not be instantiated
javascript.parser.message.expected.declaration=Declaration expected
javascript.assign.parameter.to.field.intention.name=Assign parameter ''{0}'' to field
javascript.fix.create.parameter=Create Parameter
javascript.fix.create.parameter=Create parameter
javascript.introduce.parameter.introduced.variable.value=&Value:
action.JSExtractInterface.text=Extract _Interface...
action.JSExtractInterface.description=Extract interface from the selected class
@@ -24004,7 +24004,7 @@ javascript.validation.message.vector.without.parameters=Vector without type
javascript.validation.message.vector.without.parameters2=Vector without type can not be instantiated
javascript.parser.message.expected.declaration=Declaration expected
javascript.assign.parameter.to.field.intention.name=Assign parameter ''{0}'' to field
javascript.fix.create.parameter=Create Parameter
javascript.fix.create.parameter=Create parameter
javascript.introduce.parameter.introduced.variable.value=&Value:
action.JSExtractInterface.text=Extract _Interface...
action.JSExtractInterface.description=Extract interface from the selected class

View File

@@ -33,7 +33,7 @@ public class CreateParameterFix extends AddParamBase {
@NotNull
public String getText() {
return "Create Parameter '" + myReference.getReferencedName() + "'";
return "Create parameter '" + myReference.getReferencedName() + "'";
}
protected String getParamName() {

View File

@@ -60,10 +60,10 @@ create.constant.from.usage.family=Create Constant From Usage
create.constant.from.usage.text=Create constant field ''{0}''
create.enum.constant.from.usage.text=Create enum constant ''{0}''
create.constructor.from.new.family=Create Constructor from New
create.constructor.from.new.text=Create Constructor
create.constructor.from.new.text=Create constructor
create.constructor.from.super.call.family=Create Constructor From super() Call
create.constructor.from.this.call.family=Create Constructor From this() Call
create.constructor.text=Create Constructor In ''{0}''
create.constructor.text=Create constructor in ''{0}''
create.constructor.matching.super=Create constructor matching super
super.class.constructors.chooser.title=Choose Super Class Constructors
create.field.from.usage.family=Create field from Usage
@@ -89,9 +89,9 @@ create.local.from.instanceof.usage.family=Create Local Var from instanceof Usage
create.local.from.instanceof.usage.text=Insert ''({0}){1}'' declaration
create.method.from.usage.family=Create method from usage
create.method.from.usage.text=Create method ''{0}''
create.abstract.method.from.usage.text=Create Abstract Method ''{0}''
create.parameter.from.usage.family=Create Parameter from Usage
create.parameter.from.usage.text=Create Parameter ''{0}''
create.abstract.method.from.usage.text=Create abstract method ''{0}''
create.parameter.from.usage.family=Create parameter from Usage
create.parameter.from.usage.text=Create parameter ''{0}''
create.property.from.usage.family=Create property From Usage
create.getter=Create Getter
create.setter=Create Setter