Skip to content

Commit 2f73986

Browse files
committed
Update LKG
1 parent c3dcc83 commit 2f73986

29 files changed

+44799
-40355
lines changed

lib/cs/diagnosticMessages.generated.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
"Add_initializer_to_property_0_95019": "Přidat inicializační výraz k vlastnosti {0}",
107107
"Add_initializers_to_all_uninitialized_properties_95027": "Přidat inicializátory do všech neinicializovaných vlastností",
108108
"Add_missing_super_call_90001": "Přidat chybějící volání metody super()",
109+
"Add_missing_typeof_95052": "Přidat chybějící typeof",
109110
"Add_qualifier_to_all_unresolved_variables_matching_a_member_name_95037": "Přidat kvalifikátor do všech nerozpoznaných proměnných odpovídajících názvu členu",
110111
"Add_to_all_uncalled_decorators_95044": "Přidat () do všech nevolaných dekorátorů",
111112
"Add_ts_ignore_to_all_error_messages_95042": "Přidat @ts-ignore do všech chybových zpráv",
@@ -119,6 +120,7 @@
119120
"All_declarations_of_an_abstract_method_must_be_consecutive_2516": "Všechny deklarace abstraktní metody musí jít po sobě.",
120121
"All_destructured_elements_are_unused_6198": "Žádný z destrukturovaných elementů se nepoužívá.",
121122
"All_imports_in_import_declaration_are_unused_6192": "Žádné importy z deklarace importu se nepoužívají.",
123+
"All_variables_are_unused_6199": "Žádná z proměnných se nepoužívá.",
122124
"Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typech_6011": "Povolte výchozí importy z modulů bez výchozího exportu. Nebude to mít vliv na generování kódu, jenom na kontrolu typů.",
123125
"Allow_javascript_files_to_be_compiled_6102": "Povolí kompilaci souborů javascript.",
124126
"Ambient_const_enums_are_not_allowed_when_the_isolatedModules_flag_is_provided_1209": "Když se zadá příznak --isolatedModules, nepovolují se ambientní výčty.",
@@ -255,6 +257,7 @@
255257
"Class_0_used_before_its_declaration_2449": "Třída {0} se používá dříve, než se deklaruje.",
256258
"Class_declarations_cannot_have_more_than_one_augments_or_extends_tag_8025": "Deklarace tříd nemůžou mít více než jednu značku @augments nebo @extends.",
257259
"Class_name_cannot_be_0_2414": "Třída nemůže mít název {0}.",
260+
"Class_name_cannot_be_Object_when_targeting_ES5_with_module_0_2725": "Když se cílí na ES5 s modulem {0}, název třídy nemůže být Object.",
258261
"Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417": "Statická strana třídy {0} nesprávně rozšiřuje statickou stranu základní třídy {1}.",
259262
"Classes_can_only_extend_a_single_class_1174": "Třídy můžou rozšířit jenom jednu třídu.",
260263
"Classes_containing_abstract_methods_must_be_marked_abstract_2514": "Třídy obsahující abstraktní metody musí být označené jako abstraktní.",
@@ -273,11 +276,14 @@
273276
"Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration_2674": "Konstruktor třídy {0} je chráněný a dostupný jenom v rámci deklarace třídy.",
274277
"Constructors_for_derived_classes_must_contain_a_super_call_2377": "Konstruktory odvozených tříd musí obsahovat volání příkazu super.",
275278
"Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_mod_6126": "Není zadaný obsažený soubor a nedá se určit kořenový adresář – přeskakuje se vyhledávání ve složce node_modules.",
279+
"Convert_0_to_mapped_object_type_95055": "Převést {0} na typ mapovaného objektu",
276280
"Convert_all_constructor_functions_to_classes_95045": "Převést všechny funkce konstruktoru na třídy",
277281
"Convert_all_require_to_import_95048": "Převést všechna volání require na import",
278282
"Convert_all_to_default_imports_95035": "Převést vše na výchozí importy",
279283
"Convert_function_0_to_class_95002": "Převést funkci {0} na třídu",
280284
"Convert_function_to_an_ES2015_class_95001": "Převést funkci na třídu ES2015",
285+
"Convert_named_imports_to_namespace_import_95057": "Převést pojmenované importy na import oboru názvů",
286+
"Convert_namespace_import_to_named_imports_95056": "Převést import oboru názvů na pojmenované importy",
281287
"Convert_require_to_import_95047": "Převést require na import",
282288
"Convert_to_ES6_module_95017": "Převést na modul ES6",
283289
"Convert_to_default_import_95013": "Převést na výchozí import",
@@ -580,6 +586,7 @@
580586
"Not_all_code_paths_return_a_value_7030": "Ne všechny cesty kódu vracejí hodnotu.",
581587
"Numeric_index_type_0_is_not_assignable_to_string_index_type_1_2413": "Typ číselného indexu {0} se nedá přiřadit k typu indexu řetězce {1}.",
582588
"Numeric_separators_are_not_allowed_here_6188": "Číselné oddělovače tady nejsou povolené.",
589+
"Object_is_of_type_unknown_2571": "Objekt je typu Neznámý.",
583590
"Object_is_possibly_null_2531": "Objekt je pravděpodobně null.",
584591
"Object_is_possibly_null_or_undefined_2533": "Objekt je pravděpodobně null nebo undefined.",
585592
"Object_is_possibly_undefined_2532": "Objekt je pravděpodobně undefined.",
@@ -708,10 +715,13 @@
708715
"Redirect_output_structure_to_the_directory_6006": "Přesměrování výstupní struktury do adresáře",
709716
"Referenced_project_0_must_have_setting_composite_Colon_true_6306": "Odkazovaný projekt {0} musí mít nastavení \"composite\": true.",
710717
"Remove_all_unreachable_code_95051": "Odebrat veškerý nedosažitelný kód",
718+
"Remove_all_unused_labels_95054": "Odebrat všechny nepoužívané popisky",
711719
"Remove_declaration_for_Colon_0_90004": "Odebrat deklaraci pro {0}",
712720
"Remove_destructuring_90009": "Odebrat destrukci",
713721
"Remove_import_from_0_90005": "Odebrat import z {0}",
714722
"Remove_unreachable_code_95050": "Odebrat nedosažitelný kód",
723+
"Remove_unused_label_95053": "Odebrat nepoužitý popisek",
724+
"Remove_variable_statement_90010": "Odebrat příkaz proměnné",
715725
"Replace_import_with_0_95015": "Nahradí import použitím: {0}.",
716726
"Report_error_when_not_all_code_paths_in_function_return_a_value_6075": "Oznámí se chyba, když některé cesty kódu ve funkci nevracejí hodnotu.",
717727
"Report_errors_for_fallthrough_cases_in_switch_statement_6076": "Oznámí se chyby v případech fallthrough v příkazu switch.",

lib/de/diagnosticMessages.generated.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@
106106
"Add_initializer_to_property_0_95019": "Initialisierer zu Eigenschaft \"{0}\" hinzufügen",
107107
"Add_initializers_to_all_uninitialized_properties_95027": "Allen nicht initialisierten Eigenschaften Initialisierer hinzufügen",
108108
"Add_missing_super_call_90001": "Fehlenden super()-Aufruf hinzufügen",
109+
"Add_missing_typeof_95052": "Fehlenden \"typeof\" hinzufügen",
109110
"Add_qualifier_to_all_unresolved_variables_matching_a_member_name_95037": "Allen nicht aufgelösten Variablen, die einem Membernamen entsprechen, Qualifizierer hinzufügen",
110111
"Add_to_all_uncalled_decorators_95044": "Allen nicht aufgerufenen Decorators \"()\" hinzufügen",
111112
"Add_ts_ignore_to_all_error_messages_95042": "Allen Fehlermeldungen \"@ts-ignore\" hinzufügen",
@@ -119,6 +120,7 @@
119120
"All_declarations_of_an_abstract_method_must_be_consecutive_2516": "Alle Deklarationen einer abstrakten Methode müssen aufeinanderfolgend sein.",
120121
"All_destructured_elements_are_unused_6198": "Alle destrukturierten Elemente werden nicht verwendet.",
121122
"All_imports_in_import_declaration_are_unused_6192": "Keiner der Importe in der Importdeklaration wird verwendet.",
123+
"All_variables_are_unused_6199": "Alle Variablen werden nicht verwendet.",
122124
"Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typech_6011": "Standardimporte von Modulen ohne Standardexport zulassen. Dies wirkt sich nicht auf die Codeausgabe aus, lediglich auf die Typprüfung.",
123125
"Allow_javascript_files_to_be_compiled_6102": "Kompilierung von JavaScript-Dateien zulassen.",
124126
"Ambient_const_enums_are_not_allowed_when_the_isolatedModules_flag_is_provided_1209": "const-Umgebungsenumerationen sind unzulässig, wenn das Flag \"-isolatedModules\" angegeben wird.",
@@ -255,6 +257,7 @@
255257
"Class_0_used_before_its_declaration_2449": "Klasse \"{0}\", die vor der Deklaration verwendet wurde.",
256258
"Class_declarations_cannot_have_more_than_one_augments_or_extends_tag_8025": "Klassendeklarationen dürfen maximal ein \"@augments\"- oder \"@extends\"-Tag aufweisen.",
257259
"Class_name_cannot_be_0_2414": "Der Klassenname darf nicht \"{0}\" sein.",
260+
"Class_name_cannot_be_Object_when_targeting_ES5_with_module_0_2725": "Der Klassenname darf nicht \"Object\" lauten, wenn ES5 mit Modul \"{0}\" als Ziel verwendet wird.",
258261
"Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417": "Die statische Seite der Klasse \"{0}\" erweitert fälschlicherweise die statische Seite der Basisklasse \"{1}\".",
259262
"Classes_can_only_extend_a_single_class_1174": "Klassen dürfen nur eine einzelne Klasse erweitern.",
260263
"Classes_containing_abstract_methods_must_be_marked_abstract_2514": "Klassen, die abstrakte Methoden enthalten, müssen als abstrakt markiert werden.",
@@ -273,6 +276,7 @@
273276
"Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration_2674": "Der Konstruktor der Klasse \"{0}\" ist geschützt. Auf ihn kann nur innerhalb der Klassendeklaration zugegriffen werden.",
274277
"Constructors_for_derived_classes_must_contain_a_super_call_2377": "Konstruktoren für abgeleitete Klassen müssen einen Aufruf \"super\" enthalten.",
275278
"Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_mod_6126": "Die enthaltene Datei wird nicht angegeben, und das Stammverzeichnis kann nicht ermittelt werden. Die Suche im Ordner \"node_modules\" wird übersprungen.",
279+
"Convert_0_to_mapped_object_type_95055": "\"{0}\" in zugeordneten Objekttyp konvertieren",
276280
"Convert_all_constructor_functions_to_classes_95045": "Alle Konstruktorfunktionen in Klassen konvertieren",
277281
"Convert_all_require_to_import_95048": "Alle Aufrufe von \"require\" in \"import\" konvertieren",
278282
"Convert_all_to_default_imports_95035": "Alle in Standardimporte konvertieren",
@@ -708,10 +712,13 @@
708712
"Redirect_output_structure_to_the_directory_6006": "Die Ausgabestruktur in das Verzeichnis umleiten.",
709713
"Referenced_project_0_must_have_setting_composite_Colon_true_6306": "Das referenzierte Projekt \"{0}\" muss für die Einstellung \"composite\" den Wert TRUE aufweisen.",
710714
"Remove_all_unreachable_code_95051": "Gesamten nicht erreichbaren Code entfernen",
715+
"Remove_all_unused_labels_95054": "Alle nicht verwendeten Bezeichnungen entfernen",
711716
"Remove_declaration_for_Colon_0_90004": "Deklaration entfernen für: {0}",
712717
"Remove_destructuring_90009": "Destrukturierung entfernen",
713718
"Remove_import_from_0_90005": "Import aus \"{0}\" entfernen",
714719
"Remove_unreachable_code_95050": "Nicht erreichbaren Code entfernen",
720+
"Remove_unused_label_95053": "Nicht verwendete Bezeichnung entfernen",
721+
"Remove_variable_statement_90010": "Variablenanweisung entfernen",
715722
"Replace_import_with_0_95015": "Ersetzen Sie den Import durch \"{0}\".",
716723
"Report_error_when_not_all_code_paths_in_function_return_a_value_6075": "Fehler melden, wenn nicht alle Codepfade in der Funktion einen Wert zurückgeben.",
717724
"Report_errors_for_fallthrough_cases_in_switch_statement_6076": "Für FallTrough-Fälle in switch-Anweisung Fehler melden.",

lib/enu/diagnosticMessages.generated.json.lcg

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,12 @@
735735
</Str>
736736
<Disp Icon="Str" />
737737
</Item>
738+
<Item ItemId=";All_variables_are_unused_6199" ItemType="0" PsrId="306" Leaf="true">
739+
<Str Cat="Text">
740+
<Val><![CDATA[All variables are unused.]]></Val>
741+
</Str>
742+
<Disp Icon="Str" />
743+
</Item>
738744
<Item ItemId=";Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typech_6011" ItemType="0" PsrId="306" Leaf="true">
739745
<Str Cat="Text">
740746
<Val><![CDATA[Allow default imports from modules with no default export. This does not affect code emit, just typechecking.]]></Val>
@@ -1551,6 +1557,12 @@
15511557
</Str>
15521558
<Disp Icon="Str" />
15531559
</Item>
1560+
<Item ItemId=";Class_name_cannot_be_Object_when_targeting_ES5_with_module_0_2725" ItemType="0" PsrId="306" Leaf="true">
1561+
<Str Cat="Text">
1562+
<Val><![CDATA[Class name cannot be 'Object' when targeting ES5 with module {0}.]]></Val>
1563+
</Str>
1564+
<Disp Icon="Str" />
1565+
</Item>
15541566
<Item ItemId=";Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417" ItemType="0" PsrId="306" Leaf="true">
15551567
<Str Cat="Text">
15561568
<Val><![CDATA[Class static side '{0}' incorrectly extends base class static side '{1}'.]]></Val>
@@ -1659,6 +1671,12 @@
16591671
</Str>
16601672
<Disp Icon="Str" />
16611673
</Item>
1674+
<Item ItemId=";Convert_0_to_mapped_object_type_95055" ItemType="0" PsrId="306" Leaf="true">
1675+
<Str Cat="Text">
1676+
<Val><![CDATA[Convert '{0}' to mapped object type]]></Val>
1677+
</Str>
1678+
<Disp Icon="Str" />
1679+
</Item>
16621680
<Item ItemId=";Convert_all_constructor_functions_to_classes_95045" ItemType="0" PsrId="306" Leaf="true">
16631681
<Str Cat="Text">
16641682
<Val><![CDATA[Convert all constructor functions to classes]]></Val>
@@ -1689,6 +1707,18 @@
16891707
</Str>
16901708
<Disp Icon="Str" />
16911709
</Item>
1710+
<Item ItemId=";Convert_named_imports_to_namespace_import_95057" ItemType="0" PsrId="306" Leaf="true">
1711+
<Str Cat="Text">
1712+
<Val><![CDATA[Convert named imports to namespace import]]></Val>
1713+
</Str>
1714+
<Disp Icon="Str" />
1715+
</Item>
1716+
<Item ItemId=";Convert_namespace_import_to_named_imports_95056" ItemType="0" PsrId="306" Leaf="true">
1717+
<Str Cat="Text">
1718+
<Val><![CDATA[Convert namespace import to named imports]]></Val>
1719+
</Str>
1720+
<Disp Icon="Str" />
1721+
</Item>
16921722
<Item ItemId=";Convert_require_to_import_95047" ItemType="0" PsrId="306" Leaf="true">
16931723
<Str Cat="Text">
16941724
<Val><![CDATA[Convert 'require' to 'import']]></Val>
@@ -3501,6 +3531,12 @@
35013531
</Str>
35023532
<Disp Icon="Str" />
35033533
</Item>
3534+
<Item ItemId=";Object_is_of_type_unknown_2571" ItemType="0" PsrId="306" Leaf="true">
3535+
<Str Cat="Text">
3536+
<Val><![CDATA[Object is of type 'unknown'.]]></Val>
3537+
</Str>
3538+
<Disp Icon="Str" />
3539+
</Item>
35043540
<Item ItemId=";Object_is_possibly_null_2531" ItemType="0" PsrId="306" Leaf="true">
35053541
<Str Cat="Text">
35063542
<Val><![CDATA[Object is possibly 'null'.]]></Val>
@@ -4305,6 +4341,12 @@
43054341
</Str>
43064342
<Disp Icon="Str" />
43074343
</Item>
4344+
<Item ItemId=";Remove_variable_statement_90010" ItemType="0" PsrId="306" Leaf="true">
4345+
<Str Cat="Text">
4346+
<Val><![CDATA[Remove variable statement]]></Val>
4347+
</Str>
4348+
<Disp Icon="Str" />
4349+
</Item>
43084350
<Item ItemId=";Replace_import_with_0_95015" ItemType="0" PsrId="306" Leaf="true">
43094351
<Str Cat="Text">
43104352
<Val><![CDATA[Replace import with '{0}'.]]></Val>
@@ -5619,6 +5661,12 @@
56195661
</Str>
56205662
<Disp Icon="Str" />
56215663
</Item>
5664+
<Item ItemId=";Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces_1069" ItemType="0" PsrId="306" Leaf="true">
5665+
<Str Cat="Text">
5666+
<Val><![CDATA[Unexpected token. A type parameter name was expected without curly braces.]]></Val>
5667+
</Str>
5668+
<Disp Icon="Str" />
5669+
</Item>
56225670
<Item ItemId=";Unexpected_token_expected_1179" ItemType="0" PsrId="306" Leaf="true">
56235671
<Str Cat="Text">
56245672
<Val><![CDATA[Unexpected token. '{' expected.]]></Val>

0 commit comments

Comments
 (0)