Skip to content

Commit 3d2b05a

Browse files
committed
push&pull from verbaria
1 parent c52b927 commit 3d2b05a

6 files changed

Lines changed: 735 additions & 663 deletions

File tree

base-api/src/main/resources/LOCALIZE-LIB/en_US/consulo.javascript.JavaScriptLocalize.yaml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ javascript.fix.implement.methods:
105105
javascript.fix.optimize.imports:
106106
text: Optimize imports
107107
javascript.fix.package.name:
108-
text: Set package name to ''{0}''
108+
text: "Set package name to ''{0}''"
109109
javascript.fix.remove.access.modifier:
110110
text: Remove access modifier
111111
javascript.fix.remove.circular.dependency:
@@ -245,11 +245,11 @@ javascript.parser.message.expected.equal:
245245
javascript.parser.message.expected.expression:
246246
text: expression expected
247247
javascript.parser.message.expected.forloop.in.of.or.semicolon:
248-
text: '''in'', ''of'' or ; expected'
248+
text: "'in', 'of' or ; expected"
249249
javascript.parser.message.expected.forloop.in.or.semicolon:
250-
text: '''in'' or ; expected'
250+
text: "'in' or ; expected"
251251
javascript.parser.message.expected.forloop.left.hand.side.expression.or.variable.declaration:
252-
text: left hand side expression or variable declaration expected before 'in'
252+
text: "left hand side expression or variable declaration expected before 'in'"
253253
javascript.parser.message.expected.formal.parameter.name:
254254
text: formal parameter name expected
255255
javascript.parser.message.expected.function.name:
@@ -265,23 +265,23 @@ javascript.parser.message.expected.identifier.string.literal.or.numeric.literal:
265265
javascript.parser.message.expected.instanceof:
266266
text: Expected instanceof
267267
javascript.parser.message.expected.lbrace:
268-
text: '''{'' expected'
268+
text: "'{' expected"
269269
javascript.parser.message.expected.lbrace.or.lbracket:
270-
text: '''{'' or ''['' expected'
270+
text: "'{' or '[' expected"
271271
javascript.parser.message.expected.lparen:
272272
text: ( expected
273273
javascript.parser.message.expected.lt:
274274
text: Expected >
275275
javascript.parser.message.expected.name:
276276
text: name expected
277277
javascript.parser.message.expected.name.or.lbrace:
278-
text: Expected package name or '{'
278+
text: "Expected package name or '{'"
279279
javascript.parser.message.expected.namespace:
280280
text: Namespace keyword expected
281281
javascript.parser.message.expected.parameter.name:
282282
text: parameter name expected
283283
javascript.parser.message.expected.rbrace:
284-
text: '''}'' expected'
284+
text: "'}' expected"
285285
javascript.parser.message.expected.rbracket:
286286
text: '] expected'
287287
javascript.parser.message.expected.rparen:
@@ -377,23 +377,23 @@ javascript.validation.message.access.modifier.allowed.only.for.package.members:
377377
javascript.validation.message.arguments.out.of.function:
378378
text: Using function arguments object outside function
379379
javascript.validation.message.arguments.with.rest.parameter:
380-
text: '''arguments'' object is not available when using rest parameter'
380+
text: "'arguments' object is not available when using rest parameter"
381381
javascript.validation.message.assignment.to.const:
382382
text: Attempt to assign to const variable
383383
javascript.validation.message.break.without.target:
384-
text: Cannot determine target for 'break'
384+
text: "Cannot determine target for 'break'"
385385
javascript.validation.message.circular.dependency:
386386
text: Circular dependency
387387
javascript.validation.message.class.name.expected.here:
388388
text: Class name expected here
389389
javascript.validation.message.class.should.be.in.file:
390-
text: Class ''{0}'' should be defined in file ''{1}''
390+
text: "Class ''{0}'' should be defined in file ''{1}''"
391391
javascript.validation.message.const.variable.without.initializer.:
392-
text: const variable without initializer. It won't be possible to assign meaningful value later.
392+
text: "const variable without initializer. It won't be possible to assign meaningful value later."
393393
javascript.validation.message.constructor.in.mxml.is.not.allowed:
394394
text: Constructor is not allowed for MXML class
395395
javascript.validation.message.continue.without.target:
396-
text: Cannot determine target for 'continue'
396+
text: "Cannot determine target for 'continue'"
397397
javascript.validation.message.duplicate.declaration:
398398
text: Duplicate declaration
399399
javascript.validation.message.duplicate.label:
@@ -407,51 +407,51 @@ javascript.validation.message.file.should.be.under.source.root:
407407
javascript.validation.message.function.override.for.object.method:
408408
text: Method inherited from Object does not need override
409409
javascript.validation.message.function.override.incompatible.access.modifier:
410-
text: Incompatible override, should have ''{0}'' access modifier
410+
text: "Incompatible override, should have ''{0}'' access modifier"
411411
javascript.validation.message.function.override.incompatible.signature:
412-
text: Incompatible override, should have signature ''{0}''
412+
text: "Incompatible override, should have signature ''{0}''"
413413
javascript.validation.message.function.override.incompatible.signature2:
414-
text: Incompatible override, should have return type ''{0}''
414+
text: "Incompatible override, should have return type ''{0}''"
415415
javascript.validation.message.function.override.without.override.modifier:
416416
text: Method overrides method in superclass {0} without override keyword
417417
javascript.validation.message.function.override.without.parent.method:
418418
text: Method does not override method from super class
419419
javascript.validation.message.function.should.be.in.file:
420-
text: Function ''{0}'' should be defined in file ''{1}''
420+
text: "Function ''{0}'' should be defined in file ''{1}''"
421421
javascript.validation.message.get.method.should.be.valid.type:
422422
text: Return type of a getter definition should not be {0}
423423
javascript.validation.message.get.method.should.have.no.parameter:
424424
text: A getter definition must have no parameters
425425
javascript.validation.message.implements.for.interface.not.allowed:
426426
text: Implements list is not allowed for interface
427427
javascript.validation.message.incorrect.package.name:
428-
text: Package name ''{0}'' does not correspond to file path ''{1}''
428+
text: "Package name ''{0}'' does not correspond to file path ''{1}''"
429429
javascript.validation.message.incorrect.parameter.name:
430430
text: Incorrect parameter name
431431
javascript.validation.message.incorrect.tag.value:
432432
text: Incorrect Tag Value
433433
javascript.validation.message.interface.members.cannot.have.access.modifiers:
434434
text: Interface members cannot have access modifiers
435435
javascript.validation.message.interface.method.invalid.access.modifier:
436-
text: Incompatible implementation, should have 'public' access modifier
436+
text: "Incompatible implementation, should have 'public' access modifier"
437437
javascript.validation.message.interface.method.invalid.signature:
438-
text: Incompatible implementation, should have signature ''{0}''
438+
text: "Incompatible implementation, should have signature ''{0}''"
439439
javascript.validation.message.interface.method.invalid.signature2:
440-
text: Incompatible implementation, should have return type ''{0}''
440+
text: "Incompatible implementation, should have return type ''{0}''"
441441
javascript.validation.message.interface.method.not.implemented:
442442
text: Method {0} from interface {1} is not implemented
443443
javascript.validation.message.interface.name.expected.here:
444444
text: Interface name expected here
445445
javascript.validation.message.missed.super.constructor.call:
446-
text: Missed superclass's constructor invokation
446+
text: "Missed superclass's constructor invokation"
447447
javascript.validation.message.more.than.one.externally.visible.symbol:
448448
text: More than one externally visible symbol defined in file
449449
javascript.validation.message.must.be.lvalue:
450450
text: Must be lvalue
451451
javascript.validation.message.namespace.allowed.only.for.class.members:
452452
text: Namespace allowed for class members only
453453
javascript.validation.message.namespace.should.be.in.file:
454-
text: Namespace ''{0}'' should be defined in file ''{1}''
454+
text: "Namespace ''{0}'' should be defined in file ''{1}''"
455455
javascript.validation.message.nested.classes.are.not.allowed:
456456
text: Nested classes are not allowed
457457
javascript.validation.message.package.shouldbe.first.statement:
@@ -465,27 +465,27 @@ javascript.validation.message.remove.unneeded.comma.fix:
465465
javascript.validation.message.rest.parameter.should.not.be.initialized:
466466
text: Rest parameter should not be initialized
467467
javascript.validation.message.return.outside.function.definition:
468-
text: '''return'' outside function definition'
468+
text: "'return' outside function definition"
469469
javascript.validation.message.return.value.of.type.is.required:
470470
text: Return value of type {0} is required
471471
javascript.validation.message.set.method.should.be.void.or.without.type:
472472
text: Return type of a setter definition must be unspecified or void
473473
javascript.validation.message.set.method.should.have.one.parameter:
474474
text: A setter definition must have exactly one parameter
475475
javascript.validation.message.super.referenced.from.static.context:
476-
text: '''super'' referenced in static context'
476+
text: "'super' referenced in static context"
477477
javascript.validation.message.super.referenced.without.class.instance.context:
478-
text: '''super'' referenced without class instance context'
478+
text: "'super' referenced without class instance context"
479479
javascript.validation.message.this.referenced.from.static.context:
480-
text: '''this'' referenced in static context'
480+
text: "'this' referenced in static context"
481481
javascript.validation.message.unexpected.type.for.rest.parameter:
482482
text: Rest parameter should have no type
483483
javascript.validation.message.unneeded.comma:
484484
text: Unneeded comma
485485
javascript.validation.message.use.namespace.reference.or.access.modifier:
486486
text: Use namespace OR access modifier
487487
javascript.validation.message.variable.should.be.in.file:
488-
text: Variable ''{0}'' should be defined in file ''{1}''
488+
text: "Variable ''{0}'' should be defined in file ''{1}''"
489489
javascript.validation.unused.import:
490490
text: Unused import
491491
js.classname.macro.description:
@@ -535,7 +535,7 @@ methods.to.override.chooser.title:
535535
preview.panel.title:
536536
text: Preview
537537
this.feature.is.not.supported.by.current.language:
538-
text: '''''{0}'''' is not supported by current language version'
538+
text: "''{0}'' is not supported by current language version"
539539
to.indent.package.statement.children:
540540
text: '&Indent package statement children'
541541
typescript.filetype.description:

0 commit comments

Comments
 (0)