@spyglassmc/locales 0.3.22 → 0.3.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +2 -3
- package/lib/locales/de.json +268 -0
- package/lib/locales/en.json +266 -0
- package/lib/locales/es.json +161 -0
- package/lib/locales/fr.json +228 -0
- package/lib/locales/it.json +81 -0
- package/lib/locales/ja.json +181 -0
- package/lib/locales/pt-br.json +202 -0
- package/lib/locales/zh-cn.json +253 -0
- package/lib/locales/zh-tw.json +257 -0
- package/lib/tsconfig.json +10 -0
- package/package.json +1 -13
- package/lib/locales/de.js +0 -1
- package/lib/locales/en.js +0 -1
- package/lib/locales/es.js +0 -1
- package/lib/locales/fr.js +0 -1
- package/lib/locales/it.js +0 -1
- package/lib/locales/ja.js +0 -1
- package/lib/locales/pt-br.js +0 -1
- package/lib/locales/zh-cn.js +0 -1
- package/lib/locales/zh-tw.js +0 -1
package/lib/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/* istanbul ignore file */
|
|
2
|
-
|
|
3
|
-
import Fallback from './locales/en.js';
|
|
2
|
+
import Fallback from './locales/en.json' with { type: 'json' };
|
|
4
3
|
const Locales = { en: Fallback };
|
|
5
4
|
let language = 'en';
|
|
6
5
|
/**
|
|
@@ -54,7 +53,7 @@ function _resolveLocalePlaceholders(val, params) {
|
|
|
54
53
|
});
|
|
55
54
|
}
|
|
56
55
|
async function _setupLanguage(code, dry = false) {
|
|
57
|
-
const locale = await import(`./locales/${code}.
|
|
56
|
+
const locale = await import(`./locales/${code}.json`, { with: { type: 'json' } });
|
|
58
57
|
if (!dry) {
|
|
59
58
|
Locales[code] = locale;
|
|
60
59
|
language = code;
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
{
|
|
2
|
+
"array": "ein Array",
|
|
3
|
+
"boolean": "einen Wahrheitswert",
|
|
4
|
+
"bug-of-mc": "Aufgrund eines Fehlers in Minecraft (%0%), %1%. Bitte beheben, Mojang danke",
|
|
5
|
+
"code-action.add-default-namespace": "Standardnamensraum hinzufügen",
|
|
6
|
+
"code-action.add-leading-slash": "Führenden Schrägstrich hinzufügen",
|
|
7
|
+
"code-action.block-state-sort-keys": "Blockzustände sortieren",
|
|
8
|
+
"code-action.command-replaceitem": "Aktualisiere diesen Befehl zu /item ... replace",
|
|
9
|
+
"code-action.create-undeclared-file": "%0% %1% im selben Paket erstellen",
|
|
10
|
+
"code-action.fix-file": "Alle automatisch behebbaren Probleme in dieser Datei beheben",
|
|
11
|
+
"code-action.fix-workspace": "Alle automatisch behebbaren Probleme im Arbeitsbereich beheben",
|
|
12
|
+
"code-action.id-attribute-datafix": "Den Namen dieses Attributs auf Version 1.16 aktualisieren",
|
|
13
|
+
"code-action.id-complete-default-namespace": "Standardnamensraum vervollständigen",
|
|
14
|
+
"code-action.id-create-file": "%0% im selben Datenpaket erstellen",
|
|
15
|
+
"code-action.id-omit-default-namespace": "Standardnamensraum auslassen",
|
|
16
|
+
"code-action.id-zombified-piglin-datafix": "ID zu zombified_piglin ändern",
|
|
17
|
+
"code-action.nbt-compound-sort-keys": "NBT-Compound-Eigenschaften sortieren",
|
|
18
|
+
"code-action.nbt-type-to-byte": "In ein NBT-Byte-Tag umwandeln",
|
|
19
|
+
"code-action.nbt-type-to-double": "In ein NBT-Double-Tag umwandeln",
|
|
20
|
+
"code-action.nbt-type-to-float": "In ein NBT-Float-Tag umwandeln",
|
|
21
|
+
"code-action.nbt-type-to-int": "In ein NBT-Int-Tag umwandeln",
|
|
22
|
+
"code-action.nbt-type-to-long": "In ein NBT-Long-Tag umwandeln",
|
|
23
|
+
"code-action.nbt-type-to-short": "In ein NBT-Short-Tag umwandeln",
|
|
24
|
+
"code-action.nbt-uuid-datafix": "Diese UUID auf Version 1.16 aktualisieren",
|
|
25
|
+
"code-action.remove-leading-slash": "Führenden Schrägstrich entfernen",
|
|
26
|
+
"code-action.remove-trailing-separation": "Nachlaufende Trennung entfernen",
|
|
27
|
+
"code-action.selector-sort-keys": "Selektor-Argumente sortieren",
|
|
28
|
+
"code-action.string-double-quote": "Diese Zeichenkette in doppelte Anführungszeichen setzen",
|
|
29
|
+
"code-action.string-single-quote": "Diese Zeichenkette in einfache Anführungszeichen setzen",
|
|
30
|
+
"code-action.string-unquote": "Anführungszeichen von dieser Zeichenkette entfernen",
|
|
31
|
+
"code-action.vector-align-0.0": "Diesen Vektor am Ursprung des Blocks ausrichten",
|
|
32
|
+
"code-action.vector-align-0.5": "Diesen Vektor am Zentrum des Blocks ausrichten",
|
|
33
|
+
"comment": "ein Kommentar, der mit %0% beginnt",
|
|
34
|
+
"conjunction.and_2": " und ",
|
|
35
|
+
"conjunction.and_3+_1": ", ",
|
|
36
|
+
"conjunction.and_3+_2": ", und ",
|
|
37
|
+
"conjunction.or_2": " oder ",
|
|
38
|
+
"conjunction.or_3+_1": ", ",
|
|
39
|
+
"conjunction.or_3+_2": ", oder ",
|
|
40
|
+
"datafix.error.command-replaceitem": "/replaceitem wurde in 20w46a (dem zweiten Snapshot von 1.17) zugunsten von /item entfernt",
|
|
41
|
+
"duplicate-key": "Doppelter Schlüssel %0%",
|
|
42
|
+
"ending-quote": "ein schließendes Anführungszeichen %0%",
|
|
43
|
+
"entity": "eine Entität",
|
|
44
|
+
"error.unparseable-content": "Nicht analysierbarer Inhalt gefunden",
|
|
45
|
+
"expected": "%0% erwartet",
|
|
46
|
+
"expected-got": "%0% erwartet, aber %1% erhalten",
|
|
47
|
+
"float": "eine Gleitkommazahl",
|
|
48
|
+
"float.between": "eine Gleitkommazahl zwischen %0% und %1%",
|
|
49
|
+
"integer": "eine Ganzzahl",
|
|
50
|
+
"integer.between": "eine Ganzzahl zwischen %0% und %1%",
|
|
51
|
+
"invalid-key-combination": "Ungültige Schlüsselkombination %0%",
|
|
52
|
+
"invalid-regex-pattern": "Ungültiges Regex-Muster: %0%",
|
|
53
|
+
"java-edition.binder.wrong-folder": "Dateien im Ordner %0% werden in der geladenen Version %1% nicht erkannt, wollten Sie den Ordner %2% verwenden?",
|
|
54
|
+
"java-edition.binder.wrong-version": "Dateien im Ordner %0% werden in der geladenen Version %1% nicht erkannt",
|
|
55
|
+
"java-edition.translation-value.percent-escape-hint": "%0%. Wenn Sie ein wörtliches Prozentzeichen anzeigen möchten, verwenden Sie stattdessen „%%“",
|
|
56
|
+
"json.checker.array.length-between": "%0% mit einer Länge zwischen %1% und %2%",
|
|
57
|
+
"json.checker.item.duplicate": "Gegenstand aus der Liste duplizieren",
|
|
58
|
+
"json.checker.object.field.union-empty-members": "Unerlaubte Eigenschaft",
|
|
59
|
+
"json.checker.property.deprecated": "Eigenschaft %0% ist veraltet",
|
|
60
|
+
"json.checker.property.missing": "Fehlende Eigenschaft %0%",
|
|
61
|
+
"json.checker.property.unknown": "Unbekannte Eigenschaft %0%",
|
|
62
|
+
"json.checker.string.hex-color": "eine sechstellige Hexadezimalzahl",
|
|
63
|
+
"json.checker.tag-entry.duplicate": "Tag-Eintrag duplizieren",
|
|
64
|
+
"json.checker.value": "ein Wert",
|
|
65
|
+
"json.doc.advancement.display": "Anzeigeeinstellungen für Fortschritte. Falls vorhanden, wird der Fortschritt in den Fortschrittsregisterkarten angezeigt.",
|
|
66
|
+
"json.node.array": "ein Array",
|
|
67
|
+
"json.node.boolean": "ein Wahrheitswert",
|
|
68
|
+
"json.node.null": "ein null",
|
|
69
|
+
"json.node.number": "eine Zahl",
|
|
70
|
+
"json.node.object": "ein Objekt",
|
|
71
|
+
"json.node.string": "eine Zeichenkette",
|
|
72
|
+
"key-not-following-convention": "Der Schlüssel %0% entspricht nicht der Namenskonvention %1%",
|
|
73
|
+
"linter-config-validator.name-convention.type": "Erwartet eine Zeichenkette, die einen Regex-Ausdruck enthält, welcher den Bezeichner beschreibt",
|
|
74
|
+
"linter-config-validator.wrapper": "%0%. Siehe [die Dokumentation](%1) für mehr Informationen",
|
|
75
|
+
"linter.diagnostic-message-wrapper": "%0% (Regel: %1%)",
|
|
76
|
+
"linter.name-convention.illegal": "Bezeichner %0% passt nicht zu %1%",
|
|
77
|
+
"linter.undeclared-symbol.message": "Kann %0% %1% nicht finden",
|
|
78
|
+
"long": "eine lange Ganzzahl",
|
|
79
|
+
"long.between": "ein long zwischen %0% und %1%",
|
|
80
|
+
"mcdoc.binder.dispatcher-statement.duplicated-key": "Duplizierter Dispatcher-Fall %0%",
|
|
81
|
+
"mcdoc.binder.dispatcher-statement.duplicated-key.related": "%0% wurde bereits hierher versandt",
|
|
82
|
+
"mcdoc.binder.duplicated-declaration": "Deklaration von %0% dupliziert",
|
|
83
|
+
"mcdoc.binder.duplicated-declaration.related": "%0% ist bereits deklariert",
|
|
84
|
+
"mcdoc.binder.out-of-root": "Datei %0% liegt nicht im root-Verzeichnis eines mcdoc-Projektes; Semantische Überprüfung wird ausgelassen",
|
|
85
|
+
"mcdoc.binder.path.super-from-root": "Zugriff auf Superverzeichnis des Projektstamms nicht möglich",
|
|
86
|
+
"mcdoc.binder.path.unknown-identifier": "ID %0% existiert im Modul %1% nicht",
|
|
87
|
+
"mcdoc.binder.path.unknown-module": "Modul %0% existiert nicht",
|
|
88
|
+
"mcdoc.checker.entry.empty-mod-seg": "Sie können „mod.mcdoc“ nicht direkt unter einem Stammverzeichnis ablegen",
|
|
89
|
+
"mcdoc.checker.inject-clause.unmatched-injection": "%0% kann nicht mit %1% injiziert werden",
|
|
90
|
+
"mcdoc.checker.reference.unexpected-number-of-type-arguments": "Der Typ %0% erfordert Argumente vom Typ %1%, aber es wurden %2% empfangen",
|
|
91
|
+
"mcdoc.checker.type-not-assignable": "Typ %0% kann nicht dem Typ %1% zugewiesen werden",
|
|
92
|
+
"mcdoc.node.compound-definition": "eine zusammengesetzte Definition",
|
|
93
|
+
"mcdoc.node.enum-definition": "eine Enumerations-Definition",
|
|
94
|
+
"mcdoc.node.identifier": "ein Identifizierer",
|
|
95
|
+
"mcdoc.parser.compound-definition.field-type": "ein Feldtyp",
|
|
96
|
+
"mcdoc.parser.float.illegal": "Ungültige Fließkommazahl gefunden",
|
|
97
|
+
"mcdoc.parser.identifier.illegal": "%0% entspricht nicht dem Format von %1%",
|
|
98
|
+
"mcdoc.parser.identifier.reserved-word": "%0% ist ein reserviertes Wort und kann nicht als Identifizierungsname verwendet werden",
|
|
99
|
+
"mcdoc.parser.index-body.dynamic-index-not-allowed": "Dynamische Indizierung ist nicht erlaubt",
|
|
100
|
+
"mcdoc.parser.inject-clause.definition-expected": "Erwartet wurde entweder ein Enum-Inject oder ein Compound-Inject",
|
|
101
|
+
"mcdoc.parser.keyword.separation": "eine Trennung",
|
|
102
|
+
"mcdoc.parser.resource-location.colon-expected": "Erwarteter Doppelpunkt (%0%) der Ressourcenstandorte",
|
|
103
|
+
"mcdoc.parser.syntax.doc-comment-unexpected": "Doc-Kommentare sind hier nicht erlaubt; Sie sollten die drei Schrägstriche durch zwei Schrägstriche ersetzen",
|
|
104
|
+
"mcdoc.runtime.checker.key-value-pair": "ein Schlüssel-Wert-Paar",
|
|
105
|
+
"mcdoc.runtime.checker.range.collection": "Kollektionslänge soll %0% betragen",
|
|
106
|
+
"mcdoc.runtime.checker.range.concat": "%0% und %1%",
|
|
107
|
+
"mcdoc.runtime.checker.range.left-exclusive": "über %0%",
|
|
108
|
+
"mcdoc.runtime.checker.range.left-inclusive": "mindestens %0%",
|
|
109
|
+
"mcdoc.runtime.checker.range.number": "numerischer Wert soll %0% sein",
|
|
110
|
+
"mcdoc.runtime.checker.range.right-exclusive": "unter %0%",
|
|
111
|
+
"mcdoc.runtime.checker.range.right-inclusive": "höchstens %0%",
|
|
112
|
+
"mcdoc.runtime.checker.range.string": "Zeichenkettenlänge soll %0% sein",
|
|
113
|
+
"mcdoc.runtime.checker.some-missing-keys": "Mindestens einer der Schlüssel fehlt %0%",
|
|
114
|
+
"mcdoc.runtime.checker.trailing": "Nachgestellte Daten gefunden",
|
|
115
|
+
"mcdoc.runtime.checker.value": "ein Wert",
|
|
116
|
+
"mcdoc.type.boolean": "ein Boolescher Wert",
|
|
117
|
+
"mcdoc.type.byte": "ein Byte",
|
|
118
|
+
"mcdoc.type.byte_array": "ein Byte-Array",
|
|
119
|
+
"mcdoc.type.double": "ein Double",
|
|
120
|
+
"mcdoc.type.float": "ein Float",
|
|
121
|
+
"mcdoc.type.int": "ein Integer",
|
|
122
|
+
"mcdoc.type.int_array": "ein Integer-Array",
|
|
123
|
+
"mcdoc.type.list": "eine Liste",
|
|
124
|
+
"mcdoc.type.long": "ein Long",
|
|
125
|
+
"mcdoc.type.long_array": "ein Long-Array",
|
|
126
|
+
"mcdoc.type.short": "ein Short",
|
|
127
|
+
"mcdoc.type.string": "ein String",
|
|
128
|
+
"mcdoc.type.struct": "eine kartenähnliche",
|
|
129
|
+
"mcfunction.checker.command.data-modify-unapplicable-operation": "Operation %0% kann nur auf %1% angewendet werden; Zielpfad hat stattdessen Type %2%",
|
|
130
|
+
"mcfunction.completer.block.states.default-value": "Standard: %0%",
|
|
131
|
+
"mcfunction.parser.command-too-long": "Befehl mit Länge %0% ist länger als die maximale Länge %1%",
|
|
132
|
+
"mcfunction.parser.duplicate-components": "Doppelte Komponente",
|
|
133
|
+
"mcfunction.parser.entity-selector.arguments.not-applicable": "%0% kann hier nicht angewendet werden",
|
|
134
|
+
"mcfunction.parser.entity-selector.arguments.unknown": "Unbekanntes Entitäts-Auswahl Argument %0%",
|
|
135
|
+
"mcfunction.parser.entity-selector.entities-disallowed": "Der Selektor enthält Nicht-Spieler-Entitäten",
|
|
136
|
+
"mcfunction.parser.entity-selector.invalid": "Ungültiger Entitätsselektor: „%0%“",
|
|
137
|
+
"mcfunction.parser.entity-selector.multiple-disallowed": "Der Selektor enthält mehrere Entitäten",
|
|
138
|
+
"mcfunction.parser.entity-selector.player-name.too-long": "Spielernamen können nicht länger als %0% Zeichen sein",
|
|
139
|
+
"mcfunction.parser.eoc-unexpected": "Mehr Argumente erwartet",
|
|
140
|
+
"mcfunction.parser.leading-slash": "einen führenden Schrägstrich „/“",
|
|
141
|
+
"mcfunction.parser.leading-slash.unexpected": "Unerwarteter führender Schrägstrich „/“",
|
|
142
|
+
"mcfunction.parser.macro.at-least-one": "mindestens ein Makro-Argument",
|
|
143
|
+
"mcfunction.parser.macro.disallowed": "Makro-Zeilen werden erst seit Version 1.20.2 unterstützt",
|
|
144
|
+
"mcfunction.parser.macro.illegal-key": "Unzulässiges Schlüsselzeichen: „%0%“",
|
|
145
|
+
"mcfunction.parser.macro.key": "eine Makro-Taste",
|
|
146
|
+
"mcfunction.parser.no-permission": "Die Berechtigungsstufe %0% ist erforderlich, die höher ist als die in der Konfiguration definierte Stufe %1%",
|
|
147
|
+
"mcfunction.parser.objective.too-long": "Objektivnamen dürfen nicht länger als %0% Zeichen sein",
|
|
148
|
+
"mcfunction.parser.range.min>max": "Der Mindestwert %0% ist größer als Maximalwert %1%",
|
|
149
|
+
"mcfunction.parser.range.span-too-large": "Der Bereichswert %0% ist größer als der Maximalwert %1%",
|
|
150
|
+
"mcfunction.parser.range.span-too-small": "Der Bereichswert %0% ist kleiner als der Mindestwert %1%",
|
|
151
|
+
"mcfunction.parser.score_holder.fake-name.too-long": "Fake-Namen dürfen nicht länger als %0% Zeichen sein",
|
|
152
|
+
"mcfunction.parser.sep": "ein Leerzeichen (%0%)",
|
|
153
|
+
"mcfunction.parser.trailing": "Nachgestellte Daten gefunden: %0%",
|
|
154
|
+
"mcfunction.parser.unknown-parser": "Der Parser %0% wird noch nicht unterstützt",
|
|
155
|
+
"mcfunction.parser.uuid.invalid": "Ungültiges UUID Format",
|
|
156
|
+
"mcfunction.parser.vector.local-disallowed": "Lokale Koordinaten nicht zulässig",
|
|
157
|
+
"mcfunction.parser.vector.mixed": "Lokale Koordinaten und Weltkoordinaten können nicht miteinander kombiniert werden",
|
|
158
|
+
"mcfunction.signature-help.argument-parser-documentation": "[Minecraft Wiki: Argument-Parser `%0%`](https://minecraft.fandom.com/wiki/Argument_types#%0%)",
|
|
159
|
+
"mcfunction.signature-help.command-documentation": "[Minecraft Wiki: Befehl `%0%`](https://minecraft.fandom.com/wiki/Commands/%0%)",
|
|
160
|
+
"mismatching-regex-pattern": "Wert stimmt nicht mit Regex überein: %0%",
|
|
161
|
+
"missing-key": "Fehlender Schlüssel %0%",
|
|
162
|
+
"nbt.checker.block-states.fake-boolean": "Boolesche Blockzustandswerte sollten in Anführungszeichen gesetzt werden",
|
|
163
|
+
"nbt.checker.block-states.unexpected-value-type": "Blockzustandswerte sollten entweder eine Zeichenkette oder eine Ganzzahl sein",
|
|
164
|
+
"nbt.checker.block-states.unknown-state": "Unbekannter Blockstatus %0% für die folgenden Blöcke: %1%",
|
|
165
|
+
"nbt.checker.boolean.out-of-range": "Ein boolescher Wert sollte entweder %0% oder %1% sein",
|
|
166
|
+
"nbt.checker.collection.length-between": "%0% mit Länge zwischen %1% und %2%",
|
|
167
|
+
"nbt.checker.compound.field.union-empty-members": "Unerlaubte Eigenschaft",
|
|
168
|
+
"nbt.checker.path.index-out-of-bound": "Der angegebene Index %0% liegt außerhalb des Bereichs, da die Sammlung höchstens %1% Elemente enthalten kann",
|
|
169
|
+
"nbt.checker.path.unexpected-filter": "Zusammengesetzte Filter können nur für zusammengesetzte Tags verwendet werden",
|
|
170
|
+
"nbt.checker.path.unexpected-index": "Indizes können nur für Array- oder Listen-Tags verwendet werden",
|
|
171
|
+
"nbt.checker.path.unexpected-key": "String-Schlüssel können nur für zusammengesetzte Tags angegeben werden",
|
|
172
|
+
"nbt.node": "ein Tag",
|
|
173
|
+
"nbt.node.byte": "ein Byte-Tag",
|
|
174
|
+
"nbt.node.byte_array": "ein Byte-Array-Tag",
|
|
175
|
+
"nbt.node.compound": "ein zusammengesetztes Tag",
|
|
176
|
+
"nbt.node.double": "ein Double-Tag",
|
|
177
|
+
"nbt.node.float": "ein Float-Tag",
|
|
178
|
+
"nbt.node.int": "ein Integer-Tag",
|
|
179
|
+
"nbt.node.int_array": "ein Integer-Array-Tag",
|
|
180
|
+
"nbt.node.list": "ein Listen-Tag",
|
|
181
|
+
"nbt.node.long": "ein Long-Tag",
|
|
182
|
+
"nbt.node.long_array": "ein Long-Array-Tag",
|
|
183
|
+
"nbt.node.path.end": "das Ende des Pfades",
|
|
184
|
+
"nbt.node.path.filter": "ein zusammengesetzter Filter",
|
|
185
|
+
"nbt.node.path.index": "ein Index",
|
|
186
|
+
"nbt.node.path.key": "ein Schlüssel",
|
|
187
|
+
"nbt.node.short": "ein Short-Tag",
|
|
188
|
+
"nbt.node.string": "ein String-Tag",
|
|
189
|
+
"nbt.parser.number.out-of-range": "Dies sieht aus wie %0%, ist aber tatsächlich %1%, da der Zahlenwert außerhalb von [%2%, %3%] liegt",
|
|
190
|
+
"nbt.path": "ein NBT-Pfad",
|
|
191
|
+
"not-allowed-here": "Der Wert %0% ist hier nicht erlaubt",
|
|
192
|
+
"not-divisible-by": "Der Wert %0% ist nicht durch %1% teilbar",
|
|
193
|
+
"not-matching-any-child": "Ungültiger Argumenttyp",
|
|
194
|
+
"nothing": "nichts",
|
|
195
|
+
"number": "eine Zahl",
|
|
196
|
+
"number-range": "einen Wertebereich",
|
|
197
|
+
"number-range.missing-min-and-max": "Minimaler oder maximaler Wert erwartet",
|
|
198
|
+
"number.<=": "eine Zahl kleiner oder gleich %0%",
|
|
199
|
+
"number.>=": "eine Zahl größer oder gleich %0%",
|
|
200
|
+
"number.between": "eine Zahl zwischen %0% und %1%",
|
|
201
|
+
"object": "ein Objekt",
|
|
202
|
+
"objective": "ein Ziel",
|
|
203
|
+
"objective-not-following-convention": "Ungültiges Ziel %0%, das nicht der Konvention %1% entspricht",
|
|
204
|
+
"parser.float.illegal": "Unzulässige Gleitkommazahl, die nicht %0% folgt",
|
|
205
|
+
"parser.integer.illegal": "Unzulässige Ganzzahl, die nicht %0% folgt",
|
|
206
|
+
"parser.line-continuation-end-of-file": "Eine Zeilenfortsetzung darf nicht das Ende der Datei sein",
|
|
207
|
+
"parser.list.trailing-sep": "Nachlaufende Trennung",
|
|
208
|
+
"parser.list.value": "ein Wert",
|
|
209
|
+
"parser.long.illegal": "Unzulässige Long Zahl, die nicht %0% folgt",
|
|
210
|
+
"parser.record.key": "ein Schlüssel",
|
|
211
|
+
"parser.record.trailing-end": "Nachlaufende Trennung",
|
|
212
|
+
"parser.record.unexpected-char": "Unerwartetes Zeichen %0%",
|
|
213
|
+
"parser.record.value": "ein Wert",
|
|
214
|
+
"parser.resource-location.illegal": "Unzulässige(s) Zeichen: %0%",
|
|
215
|
+
"parser.resource-location.namespace-expected": "Namensräume dürfen hier nicht weggelassen werden",
|
|
216
|
+
"parser.resource-location.tag-disallowed": "Tags sind hier nicht erlaubt",
|
|
217
|
+
"parser.resource-location.tag-required": "Nur Tags sind hier erlaubt",
|
|
218
|
+
"parser.string.illegal-brigadier": "In %0% sind andere Zeichen als [0-9A-Za-z_.+-] aufgetreten",
|
|
219
|
+
"parser.string.illegal-escape": "Unerwartetes Escape-Zeichen %0%",
|
|
220
|
+
"parser.string.illegal-quote": "Nur %0% kann hier als Anführungszeichen für Zeichenketten verwendet werden",
|
|
221
|
+
"parser.string.illegal-unicode-escape": "Hexadezimalziffer erwartet",
|
|
222
|
+
"progress.initializing.title": "Spyglass wird initialisiert…",
|
|
223
|
+
"progress.reset-project-cache.title": "Projekt-Cache wird zurückgesetzt…",
|
|
224
|
+
"punc.period": ".",
|
|
225
|
+
"punc.quote": "„%0%“",
|
|
226
|
+
"quote": "ein Anführungszeichen („'“ oder „'“)",
|
|
227
|
+
"quote_prefer_double": "Doppelte Anführungszeichen („\"“) sind hier zu bevorzugen",
|
|
228
|
+
"quote_prefer_single": "Einfache Anführungszeichen („'“) sind hier zu bevorzugen",
|
|
229
|
+
"resource-location": "einen Ressourcenstandort",
|
|
230
|
+
"score-holder": "einen Punktehalter",
|
|
231
|
+
"scoreholder-not-following-convention": "Ungültiger Punktehalter %0%, der nicht der Konvention %1% entspricht",
|
|
232
|
+
"selector": "einen Selektor",
|
|
233
|
+
"server.new-version": "Der Datapack Language Server wurde aktualisiert: %0%",
|
|
234
|
+
"server.progress.fixing-workspace.begin": "Behebe alle automatisch behebbaren Probleme im Arbeitsbereich",
|
|
235
|
+
"server.progress.fixing-workspace.report": "behebe %0%",
|
|
236
|
+
"server.progress.preparing.title": "Vorbereiten der Spyglass-Sprachfunktionen",
|
|
237
|
+
"server.remove-cache-file": "Der Cache von DHP wurde in ein Verzeichnis von VSCode verschoben. Der „.datapack“-Ordner im Arbeitsbereich kann nun gelöscht werden.",
|
|
238
|
+
"server.show-release-notes": "Versionsinformationen anzeigen",
|
|
239
|
+
"string": "eine Zeichenkette",
|
|
240
|
+
"tag": "einen Tag",
|
|
241
|
+
"tag-not-following-convention": "Ungültiger Tag %0%, der nicht der Konvention %1% entspricht",
|
|
242
|
+
"team": "ein Team",
|
|
243
|
+
"team-not-following-convention": "Ungültiges Team %0%, das nicht der Konvention %1% entspricht",
|
|
244
|
+
"text-component": "eine Textkomponente",
|
|
245
|
+
"time-unit": "eine Zeiteinheit",
|
|
246
|
+
"too-many-block-affected": "Zu viele Blöcke im angegebenen Bereich (maximal %0%, angegeben %1%)",
|
|
247
|
+
"too-many-chunk-affected": "Zu viele Chunks im angegebenen Bereich (maximal %0%, angegeben %1%)",
|
|
248
|
+
"unexpected-character": "Zeichen gefunden, die nicht [a-z0-9/._-] entsprechen",
|
|
249
|
+
"unexpected-datapack-tag": "Aliasse sind hier nicht erlaubt",
|
|
250
|
+
"unexpected-default-namespace": "Der Standardnamensraum sollte hier ausgelassen werden",
|
|
251
|
+
"unexpected-local-coordinate": "Lokale Koordinate %0% ist nicht erlaubt",
|
|
252
|
+
"unexpected-nbt": "Diese Eigenschaft existiert hier nicht",
|
|
253
|
+
"unexpected-nbt-array-type": "Ungültiger Array-Typ %0%. Sollte entweder „B“, „I“ oder „L“ sein",
|
|
254
|
+
"unexpected-nbt-path-filter": "Pfadfilter funktionieren nur mit Compound-Eigenschaften",
|
|
255
|
+
"unexpected-nbt-path-index": "Indizes funktionieren nur mit Listen oder Array-Eigenschaften",
|
|
256
|
+
"unexpected-nbt-path-key": "Schlüssel funktionieren nur mit Compound-Eigenschaften",
|
|
257
|
+
"unexpected-nbt-path-sub": "Die aktuelle Eigenschaft hat keine weiteren Elemente",
|
|
258
|
+
"unexpected-omitted-default-namespace": "Der Standardnamensraum kann hier nicht ausgelassen werden",
|
|
259
|
+
"unexpected-relative-coordinate": "Die relative Koordinate %0% ist nicht erlaubt",
|
|
260
|
+
"unexpected-scoreboard-sub-slot": "Nur „sidebar“ hat Unterkategorien",
|
|
261
|
+
"unknown-command": "Unbekannter Befehl %0%",
|
|
262
|
+
"unknown-escape": "Unerwartetes Escape-Zeichen %0%",
|
|
263
|
+
"unknown-key": "Unbekannter Schlüssel %0%",
|
|
264
|
+
"unquoted-string": "eine Zeichenkette ohne Anführungszeichen",
|
|
265
|
+
"unsorted-keys": "Unsortierte Schlüssel",
|
|
266
|
+
"uuid": "eine UUID",
|
|
267
|
+
"vector": "einen Vektor"
|
|
268
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
{
|
|
2
|
+
"array": "an array",
|
|
3
|
+
"boolean": "a boolean",
|
|
4
|
+
"bug-of-mc": "Due to a bug of Minecraft (%0%), %1%. Please Mojang, fix your game",
|
|
5
|
+
"code-action.block-state-sort-keys": "Sort block state",
|
|
6
|
+
"code-action.command-replaceitem": "Update this command to /item … replace",
|
|
7
|
+
"code-action.fix-file": "Fix all auto-fixable problems in this file",
|
|
8
|
+
"code-action.fix-workspace": "Fix all auto-fixable problems in the workspace",
|
|
9
|
+
"code-action.id-attribute-datafix": "Update this attribute name to 1.16",
|
|
10
|
+
"code-action.add-default-namespace": "Add default namespace",
|
|
11
|
+
"code-action.add-leading-slash": "Add leading slash",
|
|
12
|
+
"code-action.create-undeclared-file": "Create %0% %1% in the same pack",
|
|
13
|
+
"code-action.id-omit-default-namespace": "Omit default namespace",
|
|
14
|
+
"code-action.id-zombified-piglin-datafix": "Change this ID to Zombified Piglin's",
|
|
15
|
+
"code-action.nbt-compound-sort-keys": "Sort NBT compound tag",
|
|
16
|
+
"code-action.nbt-type-to-byte": "Convert to an NBT byte tag",
|
|
17
|
+
"code-action.nbt-type-to-double": "Convert to an NBT double tag",
|
|
18
|
+
"code-action.nbt-type-to-float": "Convert to an NBT float tag",
|
|
19
|
+
"code-action.nbt-type-to-int": "Convert to an NBT int tag",
|
|
20
|
+
"code-action.nbt-type-to-long": "Convert to an NBT long tag",
|
|
21
|
+
"code-action.nbt-type-to-short": "Convert to an NBT short tag",
|
|
22
|
+
"code-action.nbt-uuid-datafix": "Update this UUID to 1.16",
|
|
23
|
+
"code-action.remove-leading-slash": "Remove leading slash",
|
|
24
|
+
"code-action.remove-trailing-separation": "Remove trailing separation",
|
|
25
|
+
"code-action.selector-sort-keys": "Sort selector argument",
|
|
26
|
+
"code-action.string-double-quote": "Quote this string with double quotation marks",
|
|
27
|
+
"code-action.string-single-quote": "Quote this string with single quotation marks",
|
|
28
|
+
"code-action.string-unquote": "Unquote this string",
|
|
29
|
+
"code-action.vector-align-0.0": "Align this vector to block origin",
|
|
30
|
+
"code-action.vector-align-0.5": "Align this vector to block center",
|
|
31
|
+
"comment": "a comment starting with %0%",
|
|
32
|
+
"conjunction.and_2": " and ",
|
|
33
|
+
"conjunction.and_3+_1": ", ",
|
|
34
|
+
"conjunction.and_3+_2": ", and ",
|
|
35
|
+
"conjunction.or_2": " or ",
|
|
36
|
+
"conjunction.or_3+_1": ", ",
|
|
37
|
+
"conjunction.or_3+_2": ", or ",
|
|
38
|
+
"datafix.error.command-replaceitem": "/replaceitem was removed in 20w46a (the second snapshot of 1.17) in favour of /item",
|
|
39
|
+
"duplicate-key": "Duplicate key %0%",
|
|
40
|
+
"ending-quote": "an ending quote %0%",
|
|
41
|
+
"entity": "an entity",
|
|
42
|
+
"error.unparseable-content": "Encountered unparseable content",
|
|
43
|
+
"expected": "Expected %0%",
|
|
44
|
+
"expected-got": "Expected %0% but got %1%",
|
|
45
|
+
"float": "a float",
|
|
46
|
+
"float.between": "a float between %0% and %1%",
|
|
47
|
+
"integer": "an integer",
|
|
48
|
+
"integer.between": "an integer between %0% and %1%",
|
|
49
|
+
"invalid-key-combination": "Invalid combination of keys %0%",
|
|
50
|
+
"invalid-regex-pattern": "Invalid regex pattern: %0%",
|
|
51
|
+
"mismatching-regex-pattern": "Value does not match regex: %0%",
|
|
52
|
+
"java-edition.binder.wrong-folder": "Files in the %0% folder are not recognized in loaded version %1%, did you meant to use the %2% folder?",
|
|
53
|
+
"java-edition.binder.wrong-version": "Files in the %0% folder are not recognized in loaded version %1%",
|
|
54
|
+
"java-edition.translation-value.percent-escape-hint": "%0%. If you want to display a literal percent sign, use “%%” instead",
|
|
55
|
+
"json.doc.advancement.display": "Advancement display settings. If present, the advancement will be visible in the advancement tabs.",
|
|
56
|
+
"json.checker.array.length-between": "%0% with length between %1% and %2%",
|
|
57
|
+
"json.checker.object.field.union-empty-members": "Disallowed property",
|
|
58
|
+
"json.checker.item.duplicate": "Duplicate list item",
|
|
59
|
+
"json.checker.property.deprecated": "Property %0% is deprecated",
|
|
60
|
+
"json.checker.property.missing": "Missing property %0%",
|
|
61
|
+
"json.checker.property.unknown": "Unknown property %0%",
|
|
62
|
+
"json.checker.string.hex-color": "a 6-digit hexadecimal number",
|
|
63
|
+
"json.checker.tag-entry.duplicate": "Duplicate tag entry",
|
|
64
|
+
"json.checker.value": "a value",
|
|
65
|
+
"json.node.array": "an array",
|
|
66
|
+
"json.node.boolean": "a boolean",
|
|
67
|
+
"json.node.null": "a null",
|
|
68
|
+
"json.node.number": "a number",
|
|
69
|
+
"json.node.object": "an object",
|
|
70
|
+
"json.node.string": "a string",
|
|
71
|
+
"key-not-following-convention": "Invalid key %0% which doesn't follow %1% convention",
|
|
72
|
+
"linter.diagnostic-message-wrapper": "%0% (rule: %1%)",
|
|
73
|
+
"linter.name-convention.illegal": "Name %0% doesn't match %1%",
|
|
74
|
+
"linter.undeclared-symbol.message": "Cannot find %0% %1%",
|
|
75
|
+
"linter-config-validator.name-convention.type": "Expects a string that contains a regular expression describing the name",
|
|
76
|
+
"linter-config-validator.wrapper": "%0%. See [the documentation](%1) for more information",
|
|
77
|
+
"long": "a long",
|
|
78
|
+
"long.between": "a long between %0% and %1%",
|
|
79
|
+
"mcdoc.binder.dispatcher-statement.duplicated-key": "Duplicated dispatcher case %0%",
|
|
80
|
+
"mcdoc.binder.dispatcher-statement.duplicated-key.related": "%0% has already been dispatched here",
|
|
81
|
+
"mcdoc.binder.duplicated-declaration": "Duplicated declaration for %0%",
|
|
82
|
+
"mcdoc.binder.duplicated-declaration.related": "%0% is already declared here",
|
|
83
|
+
"mcdoc.binder.out-of-root": "File %0% is not under the root directory of any mcdoc project; semantic checking will be skipped",
|
|
84
|
+
"mcdoc.binder.path.super-from-root": "Cannot access super of the project root",
|
|
85
|
+
"mcdoc.binder.path.unknown-identifier": "Identifier %0% does not exist in module %1%",
|
|
86
|
+
"mcdoc.binder.path.unknown-module": "Module %0% does not exist",
|
|
87
|
+
"mcdoc.checker.entry.empty-mod-seg": "You cannot put “mod.mcdoc” under a root directly",
|
|
88
|
+
"mcdoc.checker.inject-clause.unmatched-injection": "Cannot inject %0% with %1%",
|
|
89
|
+
"mcdoc.checker.type-not-assignable": "Type %0% is not assignable to type %1%",
|
|
90
|
+
"mcdoc.checker.reference.unexpected-number-of-type-arguments": "Type %0% requires %1% type arguments, but received %2%",
|
|
91
|
+
"mcdoc.node.compound-definition": "a compound definition",
|
|
92
|
+
"mcdoc.node.enum-definition": "an enum definition",
|
|
93
|
+
"mcdoc.node.identifier": "an identifier",
|
|
94
|
+
"mcdoc.parser.compound-definition.field-type": "a field type",
|
|
95
|
+
"mcdoc.parser.float.illegal": "Encountered illegal float number",
|
|
96
|
+
"mcdoc.parser.identifier.reserved-word": "%0% is a reserved word and cannot be used as an identifier name",
|
|
97
|
+
"mcdoc.parser.identifier.illegal": "%0% doesn't follow the format of %1%",
|
|
98
|
+
"mcdoc.parser.index-body.dynamic-index-not-allowed": "Dynamic indexing is not allowed",
|
|
99
|
+
"mcdoc.parser.inject-clause.definition-expected": "Expected either an enum inject or a compound inject",
|
|
100
|
+
"mcdoc.parser.keyword.separation": "a separation",
|
|
101
|
+
"mcdoc.parser.resource-location.colon-expected": "Expected the colon (%0%) of resource locations",
|
|
102
|
+
"mcdoc.parser.syntax.doc-comment-unexpected": "Doc comments are not allowed here; you might want to replace the three slashes with two slashes",
|
|
103
|
+
"mcdoc.runtime.checker.key-value-pair": "a key-value pair",
|
|
104
|
+
"mcdoc.runtime.checker.range.collection": "collection length to be %0%",
|
|
105
|
+
"mcdoc.runtime.checker.range.concat": "%0% and %1%",
|
|
106
|
+
"mcdoc.runtime.checker.range.left-exclusive": "above %0%",
|
|
107
|
+
"mcdoc.runtime.checker.range.left-inclusive": "at least %0%",
|
|
108
|
+
"mcdoc.runtime.checker.range.right-exclusive": "below %0%",
|
|
109
|
+
"mcdoc.runtime.checker.range.right-inclusive": "at most %0%",
|
|
110
|
+
"mcdoc.runtime.checker.range.number": "numeric value to be %0%",
|
|
111
|
+
"mcdoc.runtime.checker.range.string": "string length to be %0%",
|
|
112
|
+
"mcdoc.runtime.checker.some-missing-keys": "Missing at least one of the keys %0%",
|
|
113
|
+
"mcdoc.runtime.checker.trailing": "Trailing data encountered",
|
|
114
|
+
"mcdoc.runtime.checker.value": "a value",
|
|
115
|
+
"mcdoc.type.boolean": "a boolean",
|
|
116
|
+
"mcdoc.type.byte": "a byte",
|
|
117
|
+
"mcdoc.type.short": "a short",
|
|
118
|
+
"mcdoc.type.int": "an int",
|
|
119
|
+
"mcdoc.type.long": "a long",
|
|
120
|
+
"mcdoc.type.float": "a float",
|
|
121
|
+
"mcdoc.type.double": "a double",
|
|
122
|
+
"mcdoc.type.list": "a list",
|
|
123
|
+
"mcdoc.type.byte_array": "a byte array",
|
|
124
|
+
"mcdoc.type.int_array": "an int array",
|
|
125
|
+
"mcdoc.type.long_array": "a long array",
|
|
126
|
+
"mcdoc.type.string": "a string",
|
|
127
|
+
"mcdoc.type.struct": "a map-like",
|
|
128
|
+
"mcfunction.checker.command.data-modify-unapplicable-operation": "Operation %0% can only be used on %1%; the target path has type %2% instead",
|
|
129
|
+
"mcfunction.completer.block.states.default-value": "Default: %0%",
|
|
130
|
+
"mcfunction.parser.command-too-long": "Command with length %0% is longer than maximum length %1%",
|
|
131
|
+
"mcfunction.parser.duplicate-components": "Duplicate component",
|
|
132
|
+
"mcfunction.parser.entity-selector.arguments.not-applicable": "%0% is not applicable here",
|
|
133
|
+
"mcfunction.parser.entity-selector.arguments.unknown": "Unknown entity selector argument %0%",
|
|
134
|
+
"mcfunction.parser.entity-selector.entities-disallowed": "The selector contains non-player entities",
|
|
135
|
+
"mcfunction.parser.entity-selector.invalid": "Invalid entity selector: “%0%”",
|
|
136
|
+
"mcfunction.parser.entity-selector.multiple-disallowed": "The selector contains multiple entities",
|
|
137
|
+
"mcfunction.parser.entity-selector.player-name.too-long": "Player names cannot be longer than %0% characters",
|
|
138
|
+
"mcfunction.parser.eoc-unexpected": "Expected more arguments",
|
|
139
|
+
"mcfunction.parser.leading-slash": "a leading slash “/”",
|
|
140
|
+
"mcfunction.parser.leading-slash.unexpected": "Unexpected leading slash “/”",
|
|
141
|
+
"mcfunction.parser.macro.at-least-one": "at least one macro argument",
|
|
142
|
+
"mcfunction.parser.macro.disallowed": "Macro lines are only supported since 1.20.2",
|
|
143
|
+
"mcfunction.parser.macro.illegal-key": "Illegal key character: “%0%”",
|
|
144
|
+
"mcfunction.parser.macro.key": "a macro key",
|
|
145
|
+
"mcfunction.parser.no-permission": "Permission level %0% is required, which is higher than %1% defined in config",
|
|
146
|
+
"mcfunction.parser.objective.too-long": "Objective names cannot be longer than %0% characters",
|
|
147
|
+
"mcfunction.parser.range.min>max": "The minimum value %0% is larger than the maximum value %1%",
|
|
148
|
+
"mcfunction.parser.range.span-too-large": "The range size %0% is larger than the maximum %1%",
|
|
149
|
+
"mcfunction.parser.range.span-too-small": "The range size %0% is smaller than the minimum %1%",
|
|
150
|
+
"mcfunction.parser.score_holder.fake-name.too-long": "Fake names cannot be longer than %0% characters",
|
|
151
|
+
"mcfunction.parser.sep": "a space (%0%)",
|
|
152
|
+
"mcfunction.parser.trailing": "Trailing data encountered: %0%",
|
|
153
|
+
"mcfunction.parser.unknown-parser": "Parser %0% hasn't been supported yet",
|
|
154
|
+
"mcfunction.parser.uuid.invalid": "Invalid UUID format",
|
|
155
|
+
"mcfunction.parser.vector.local-disallowed": "Local coordinates disallowed",
|
|
156
|
+
"mcfunction.parser.vector.mixed": "Cannot mix local coordinates and world coordinates together",
|
|
157
|
+
"mcfunction.signature-help.command-documentation": "[Minecraft Wiki: `%0%` command](https://minecraft.fandom.com/wiki/Commands/%0%)",
|
|
158
|
+
"mcfunction.signature-help.argument-parser-documentation": "[Minecraft Wiki: `%0%` argument parser](https://minecraft.fandom.com/wiki/Argument_types#%0%)",
|
|
159
|
+
"missing-key": "Missing key %0%",
|
|
160
|
+
"nbt.checker.block-states.fake-boolean": "Boolean block state values should be quoted",
|
|
161
|
+
"nbt.checker.block-states.unexpected-value-type": "Block state values should be either a string or an int",
|
|
162
|
+
"nbt.checker.block-states.unknown-state": "Unknown block state %0% for the following block(s): %1%",
|
|
163
|
+
"nbt.checker.boolean.out-of-range": "A boolean value should be either %0% or %1%",
|
|
164
|
+
"nbt.checker.collection.length-between": "%0% with length between %1% and %2%",
|
|
165
|
+
"nbt.checker.compound.field.union-empty-members": "Disallowed property",
|
|
166
|
+
"nbt.checker.path.index-out-of-bound": "The provided index %0% is out of bound, as the collection can only have at most %1% elements",
|
|
167
|
+
"nbt.checker.path.unexpected-filter": "Compound filters can only be used on compound tags",
|
|
168
|
+
"nbt.checker.path.unexpected-index": "Indices can only be used on array or list tags",
|
|
169
|
+
"nbt.checker.path.unexpected-key": "String keys can only be specified for compound tags",
|
|
170
|
+
"nbt.node": "a tag",
|
|
171
|
+
"nbt.node.byte": "a byte tag",
|
|
172
|
+
"nbt.node.byte_array": "a byte array tag",
|
|
173
|
+
"nbt.node.compound": "a compound tag",
|
|
174
|
+
"nbt.node.double": "a double tag",
|
|
175
|
+
"nbt.node.float": "a float tag",
|
|
176
|
+
"nbt.node.int": "an int tag",
|
|
177
|
+
"nbt.node.int_array": "an int array tag",
|
|
178
|
+
"nbt.node.list": "a list tag",
|
|
179
|
+
"nbt.node.long": "a long tag",
|
|
180
|
+
"nbt.node.long_array": "a long array tag",
|
|
181
|
+
"nbt.node.path.end": "the end of path",
|
|
182
|
+
"nbt.node.path.filter": "a compound filter",
|
|
183
|
+
"nbt.node.path.index": "an index",
|
|
184
|
+
"nbt.node.path.key": "a key",
|
|
185
|
+
"nbt.node.short": "a short tag",
|
|
186
|
+
"nbt.node.string": "a string tag",
|
|
187
|
+
"nbt.path": "an NBT path",
|
|
188
|
+
"nbt.parser.number.out-of-range": "This looks like %0%, but it is actually %1% due to the numeral value being out of [%2%, %3%]",
|
|
189
|
+
"not-allowed-here": "Value %0% is not allowed here",
|
|
190
|
+
"not-divisible-by": "Value %0% is not divisible by %1%",
|
|
191
|
+
"not-matching-any-child": "Invalid argument type",
|
|
192
|
+
"nothing": "nothing",
|
|
193
|
+
"number": "a number",
|
|
194
|
+
"number-range": "a number range",
|
|
195
|
+
"number-range.missing-min-and-max": "Expected either a minimum value or a maximum value",
|
|
196
|
+
"number.<=": "a number smaller than or equal to %0%",
|
|
197
|
+
"number.>=": "a number greater than or equal to %0%",
|
|
198
|
+
"number.between": "a number between %0% and %1%",
|
|
199
|
+
"object": "an object",
|
|
200
|
+
"objective": "an objective",
|
|
201
|
+
"objective-not-following-convention": "Invalid objective %0% which doesn't follow %1% convention",
|
|
202
|
+
"parser.float.illegal": "Illegal float numeral that doesn't follow %0%",
|
|
203
|
+
"parser.integer.illegal": "Illegal integer that doesn't follow %0%",
|
|
204
|
+
"parser.line-continuation-end-of-file": "A line continuation cannot be the end of the file",
|
|
205
|
+
"parser.list.value": "a value",
|
|
206
|
+
"parser.list.trailing-sep": "Trailing separation",
|
|
207
|
+
"parser.long.illegal": "Illegal long numeral that doesn't follow %0%",
|
|
208
|
+
"parser.record.key": "a key",
|
|
209
|
+
"parser.record.trailing-end": "Trailing separation",
|
|
210
|
+
"parser.record.unexpected-char": "Unexpected character %0%",
|
|
211
|
+
"parser.record.value": "a value",
|
|
212
|
+
"parser.resource-location.illegal": "Illegal character(s): %0%",
|
|
213
|
+
"parser.resource-location.namespace-expected": "Namespaces cannot be omitted here",
|
|
214
|
+
"parser.resource-location.tag-disallowed": "Tags are not allowed here",
|
|
215
|
+
"parser.resource-location.tag-required": "Only tags are allowed here",
|
|
216
|
+
"parser.string.illegal-brigadier": "Encountered non-[0-9A-Za-z_.+-] characters in %0%",
|
|
217
|
+
"parser.string.illegal-escape": "Unexpected escape character %0%",
|
|
218
|
+
"parser.string.illegal-quote": "Only %0% can be used to quote strings here",
|
|
219
|
+
"parser.string.illegal-unicode-escape": "Hexadecimal digit expected",
|
|
220
|
+
"progress.initializing.title": "Initializing Spyglass…",
|
|
221
|
+
"progress.reset-project-cache.title": "Resetting Project Cache…",
|
|
222
|
+
"punc.period": ".",
|
|
223
|
+
"punc.quote": "“%0%”",
|
|
224
|
+
"quote": "a quote (“'” or “\"”)",
|
|
225
|
+
"quote_prefer_double": "Double quote (“\"”) is preferable here",
|
|
226
|
+
"quote_prefer_single": "Single quote (“'”) is preferable here",
|
|
227
|
+
"resource-location": "a resource location",
|
|
228
|
+
"score-holder": "a score holder",
|
|
229
|
+
"scoreholder-not-following-convention": "Invalid score_holder %0% which doesn't follow %1% convention",
|
|
230
|
+
"selector": "a selector",
|
|
231
|
+
"server.new-version": "The Data-pack Language Server has been updated to a newer version: %0%",
|
|
232
|
+
"server.progress.fixing-workspace.begin": "Fixing all auto-fixable problems in the workspace",
|
|
233
|
+
"server.progress.fixing-workspace.report": "fixing %0%",
|
|
234
|
+
"server.progress.preparing.title": "Preparing Spyglass language features",
|
|
235
|
+
"server.remove-cache-file": "The cache file of DHP was moved to a storage location provided by VSCode. You can safely delete the ugly “.datapack” folder in your workspace root.",
|
|
236
|
+
"server.show-release-notes": "Show Release Notes",
|
|
237
|
+
"string": "a string",
|
|
238
|
+
"tag": "a tag",
|
|
239
|
+
"tag-not-following-convention": "Invalid tag %0% which doesn't follow %1% convention",
|
|
240
|
+
"team": "a team",
|
|
241
|
+
"team-not-following-convention": "Invalid team %0% which doesn't follow %1% convention",
|
|
242
|
+
"text-component": "a text component",
|
|
243
|
+
"time-unit": "a time unit",
|
|
244
|
+
"too-many-block-affected": "Too many blocks in the specified area (maximum %0%, specified %1%)",
|
|
245
|
+
"too-many-chunk-affected": "Too many chunks in the specified area (maximum %0%, specified %1%)",
|
|
246
|
+
"unexpected-character": "Found non [a-z0-9/._-] character(s)",
|
|
247
|
+
"unexpected-datapack-tag": "Tags are not allowed here",
|
|
248
|
+
"unexpected-default-namespace": "Default namespace should be omitted here",
|
|
249
|
+
"unexpected-local-coordinate": "Local coordinate %0% is not allowed",
|
|
250
|
+
"unexpected-nbt": "This tag doesn't exist here",
|
|
251
|
+
"unexpected-nbt-array-type": "Invalid array type %0%. Should be one of “B”, “I”, and “L”",
|
|
252
|
+
"unexpected-nbt-path-filter": "Compound filters are only used for compound tags",
|
|
253
|
+
"unexpected-nbt-path-index": "Indices are only used for lists/arrays tags",
|
|
254
|
+
"unexpected-nbt-path-key": "Keys are only used for compound tags",
|
|
255
|
+
"unexpected-nbt-path-sub": "The current tag doesn't have extra items",
|
|
256
|
+
"unexpected-omitted-default-namespace": "Default namespace shouldn't be omitted here",
|
|
257
|
+
"unexpected-relative-coordinate": "Relative coordinate %0% is not allowed",
|
|
258
|
+
"unexpected-scoreboard-sub-slot": "Only “sidebar” has sub slots",
|
|
259
|
+
"unknown-command": "Unknown command %0%",
|
|
260
|
+
"unknown-escape": "Unexpected escape character %0%",
|
|
261
|
+
"unknown-key": "Unknown key %0%",
|
|
262
|
+
"unquoted-string": "an unquoted string",
|
|
263
|
+
"unsorted-keys": "Unsorted keys",
|
|
264
|
+
"uuid": "a UUID",
|
|
265
|
+
"vector": "a vector"
|
|
266
|
+
}
|