|
327 | 327 | ], |
328 | 328 | "configuration": { |
329 | 329 | "type": "object", |
330 | | - "title": "Java Debugger Configuration", |
| 330 | + "title": "%java.debugger.configuration.title%", |
331 | 331 | "properties": { |
332 | 332 | "java.debug.logLevel": { |
333 | 333 | "type": "string", |
334 | 334 | "default": "warn", |
335 | | - "description": "minimum level of debugger logs that are sent to VS Code", |
| 335 | + "description": "%java.debugger.configuration.logLevel.description%", |
336 | 336 | "enum": [ |
337 | 337 | "error", |
338 | 338 | "warn", |
|
342 | 342 | }, |
343 | 343 | "java.debug.settings.showHex": { |
344 | 344 | "type": "boolean", |
345 | | - "description": "show numbers in hex format in \"Variables\" viewlet.", |
| 345 | + "description": "%java.debugger.configuration.showHex.description%", |
346 | 346 | "default": false |
347 | 347 | }, |
348 | 348 | "java.debug.settings.showStaticVariables": { |
349 | 349 | "type": "boolean", |
350 | | - "description": "show static variables in \"Variables\" viewlet", |
| 350 | + "description": "%java.debugger.configuration.showStaticVariables.description%", |
351 | 351 | "default": true |
352 | 352 | }, |
353 | 353 | "java.debug.settings.showQualifiedNames": { |
354 | 354 | "type": "boolean", |
355 | | - "description": "show fully qualified class names in \"Variables\" viewlet", |
| 355 | + "description": "%java.debugger.configuration.showQualifiedNames.description%", |
356 | 356 | "default": false |
357 | 357 | }, |
358 | 358 | "java.debug.settings.maxStringLength": { |
359 | 359 | "type": "number", |
360 | | - "description": "the maximum length of string displayed in \"Variables\" or \"Debug Console\" viewlet, the string longer than this length will be trimmed, defaults to 0 which means no trim is performed.", |
| 360 | + "description": "%java.debugger.configuration.maxStringLength.description%", |
361 | 361 | "default": 0 |
362 | 362 | }, |
363 | 363 | "java.debug.settings.enableHotCodeReplace": { |
364 | 364 | "type": "boolean", |
365 | | - "description": "Enable hot code replace for Java code", |
| 365 | + "description": "%java.debugger.configuration.enableHotCodeReplace.description%", |
366 | 366 | "default": true |
367 | 367 | } |
368 | 368 | } |
|
0 commit comments