1010# * Angelo ZERR (Red Hat Inc.) - initial implementation
1111# * Pierre-Yves Bigourdan - Allow using TypeScript version specified by project
1212# * Pierre-Yves Bigourdan - Allow configuring directory of ESLint package
13+ # * Sebastian Thomschke (Vegard IT GmbH) - add CodeLensPreferencePage, FormatterPreferencePage translations
1314# *******************************************************************************/
1415
1516JSTSPreferencePage_typeScriptVersion =Typescript version used for JavaScript and TypeScript language features:
@@ -18,16 +19,48 @@ JSTSPreferencePage_typeScriptVersion_project=Project version
1819
1920JSTSPreferencePage_eslintNodePath =Absolute or project-relative path containing the eslint folder (node_modules used if blank):
2021
21- # TypeScript Inlay Hints preference page
22- TypeScriptInlayHintPreferencePage_showInlayHintsFor_label =Show inlay hints for:
23- TypeScriptInlayHintPreferencePage_includeInlayEnumMemberValueHints =member values in enum declarations.
24- TypeScriptInlayHintPreferencePage_includeInlayFunctionLikeReturnTypeHints =implicit return types on function signatures.
25- TypeScriptInlayHintPreferencePage_includeInlayFunctionParameterTypeHints =function parameter type.
26- TypeScriptInlayHintPreferencePage_includeInlayPropertyDeclarationTypeHints =property declaration type.
27- TypeScriptInlayHintPreferencePage_includeInlayParameterNameHints =parameter names:
28- TypeScriptInlayHintPreferencePage_includeInlayParameterNameHints_none =Disable parameter name hints.
29- TypeScriptInlayHintPreferencePage_includeInlayParameterNameHints_literals =Only for literal arguments.
30- TypeScriptInlayHintPreferencePage_includeInlayParameterNameHints_all =For literal and non-literal arguments.
31- TypeScriptInlayHintPreferencePage_includeInlayParameterNameHintsWhenArgumentMatchesName =also on arguments whose text is identical to the parameter name.
32- TypeScriptInlayHintPreferencePage_includeInlayVariableTypeHints =variable type.
33- TypeScriptInlayHintPreferencePage_includeInlayVariableTypeHintsWhenTypeMatchesName =also variables whose name is identical to the type name.
22+ # JavaScript / TypeScript Inlay Hints preference page
23+ InlayHintPreferencePage_showInlayHintsFor_label =Show inlay hints for:
24+ InlayHintPreferencePage_includeInlayEnumMemberValueHints =member values in enum declarations
25+ InlayHintPreferencePage_includeInlayFunctionLikeReturnTypeHints =implicit return types on function signatures
26+ InlayHintPreferencePage_includeInlayFunctionParameterTypeHints =function parameter type
27+ InlayHintPreferencePage_includeInlayPropertyDeclarationTypeHints =property declaration type
28+ InlayHintPreferencePage_includeInlayParameterNameHints =parameter names:
29+ InlayHintPreferencePage_includeInlayParameterNameHints_none =Disable parameter name hints
30+ InlayHintPreferencePage_includeInlayParameterNameHints_literals =Only for literal arguments
31+ InlayHintPreferencePage_includeInlayParameterNameHints_all =For literal and non-literal arguments
32+ InlayHintPreferencePage_includeInlayParameterNameHintsWhenArgumentMatchesName =also on arguments whose text is identical to the parameter name
33+ InlayHintPreferencePage_includeInlayVariableTypeHints =variable type
34+ InlayHintPreferencePage_includeInlayVariableTypeHintsWhenTypeMatchesName =also variables whose name is identical to the type name
35+
36+ # JavaScript / TypeScript Code Lens preference page
37+ CodeLensPreferencePage_showCodeLensFor_label =Show code lens for:
38+ CodeLensPreferencePage_implementationsCodeLens_enabled =Implementations (shows the number of implementations for symbols like classes or methods)
39+ CodeLensPreferencePage_referencesCodeLens_enabled =References (shows the number of references/usages for symbols in the project)
40+ CodeLensPreferencePage_referencesCodeLens_showOnAllFunctions =Show reference Code Lens on all functions (not just exported ones)
41+
42+ # JavaScript / TypeScript Formatter preference page
43+ FormatterPreferencePage_baseIndentSize =Base indentation size applied to the entire file
44+ FormatterPreferencePage_indentSize =Number of spaces used for each indentation level
45+ FormatterPreferencePage_indentStyle =Indentation style
46+ FormatterPreferencePage_insertSpaceAfterCommaDelimiter =Insert a space after each comma in lists (arrays, parameters, etc.)
47+ FormatterPreferencePage_insertSpaceAfterConstructor =Insert a space after the 'constructor' keyword before the parameter list
48+ FormatterPreferencePage_insertSpaceAfterFunctionKeywordForAnonymousFunctions =Insert a space after the 'function' keyword in anonymous or inline functions
49+ FormatterPreferencePage_insertSpaceAfterKeywordsInControlFlowStatements =Insert a space after control-flow keywords such as 'if', 'for', 'while', and 'switch'
50+ FormatterPreferencePage_insertSpaceAfterOpeningAndBeforeClosingEmptyBraces =Insert spaces inside empty curly braces (e.g., '{ }')
51+ FormatterPreferencePage_insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces =Insert spaces inside JSX expression braces (e.g., '{ value }')
52+ FormatterPreferencePage_insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces =Insert spaces inside non-empty curly braces (e.g., '{ a: 1 }')
53+ FormatterPreferencePage_insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets =Insert spaces inside brackets (e.g., '[ 1, 2 ]')
54+ FormatterPreferencePage_insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis =Insert spaces inside parentheses (e.g., '( a + b )')
55+ FormatterPreferencePage_insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces =Insert spaces inside template string expressions (e.g., `${ value }`)
56+ FormatterPreferencePage_insertSpaceAfterSemicolonInForStatements =Insert a space after each semicolon in 'for' statement headers
57+ FormatterPreferencePage_insertSpaceAfterTypeAssertion =Insert a space after a type assertion expression (e.g., '<T> value')
58+ FormatterPreferencePage_insertSpaceBeforeAndAfterBinaryOperators =Insert spaces around binary and logical operators (e.g., 'a + b', 'x && y')
59+ FormatterPreferencePage_insertSpaceBeforeFunctionParenthesis =Insert a space before the opening parenthesis in function declarations
60+ FormatterPreferencePage_insertSpaceBeforeTypeAnnotation =Insert a space before a colon in type annotations (e.g., 'let x : number')
61+ FormatterPreferencePage_newLineCharacter =Character(s) used for new lines
62+ FormatterPreferencePage_placeOpenBraceOnNewLineForControlBlocks =Place the opening brace of control blocks (e.g., 'if', 'for') on a new line
63+ FormatterPreferencePage_placeOpenBraceOnNewLineForFunctions =Place the opening brace of function declarations on a new line
64+ FormatterPreferencePage_semicolons =Semicolon handling
65+ FormatterPreferencePage_tabSize =Number of spaces a tab character
66+ FormatterPreferencePage_trimTrailingWhitespace =Remove trailing whitespace characters when formatting
0 commit comments