You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: WikiIntegration/Locale/de.json
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,16 @@
9
9
"WikiIntegration.WikiHyperlink.ProtoFlux": "Öffnet den Resonite Wiki Artikel über diese ProtoFlux Node.",
10
10
11
11
"WikiIntegration.OpenWikiArticleButton.Name": "Öffne Wiki Artikel Link",
12
-
"WikiIntegration.OpenWikiArticleButton.Description": "Fügt den Resonite Wiki Artikel Link zu Komponenten in Worker Inspektoren und ProtoFlux Nodes hinzu."
12
+
"WikiIntegration.OpenWikiArticleButton.Description": "Fügt den Resonite Wiki Artikel Link zu Komponenten in Worker Inspektoren und ProtoFlux Nodes hinzu.",
13
+
14
+
"WikiIntegration.Config.Buttons.Name": "Links",
15
+
"WikiIntegration.Config.Buttons.ProtoFlux.Description": "Ob der Resonite Wiki Artikel Link auf ProtoFlux Nodes angezeigt werden soll.",
"WikiIntegration.Config.Buttons.Components.Description": "Ob der Resonite Wiki Artikel Link auf Komponenten in Worker Inspektoren angezeigt werden soll.",
"WikiIntegration.Config.Buttons.ComponentOffset.Description": "Das Order Offset des Resonite Wiki Artikel Links bei Inspektor-Kopfzeilen. Erlaubter Wert: 0-16 - Höher ist weiter rechts.",
"WikiIntegration.ProtoFluxCategoryToggles.Description": "Ob der Resonite Wiki Artikel Link auf ProtoFlux Nodes in der Kategorie {0} angezeigt werden soll."
IEntity<IDefiningConfigKey<bool>>categoryKey=CreateDefiningKey(newConfigKey<bool>(GetToggleId(path)),$"Whether to show the Resonite Wiki button on ProtoFlux nodes in the category {path}.",()=>true);
Copy file name to clipboardExpand all lines: WikiIntegration/WikiButtonConfig.cs
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,12 @@ namespace WikiIntegration
9
9
{
10
10
internalsealedclassWikiButtonConfig:ConfigSection
11
11
{
12
-
privatestaticreadonlyDefiningConfigKey<bool>_components=new("Components","Whether to add the Wiki button to Components in Worker Inspectors.",()=>true)
12
+
privatestaticreadonlyDefiningConfigKey<bool>_components=new("Components","Whether to show the Wiki button on Components in Worker Inspectors.",()=>true)
13
13
{
14
14
newConfigKeySessionShare<bool>(true)
15
15
};
16
16
17
-
privatestaticreadonlyDefiningConfigKey<bool>_protoFlux=new("ProtoFlux","Whether to add the Wiki button to ProtoFlux nodes.",()=>true)
17
+
privatestaticreadonlyDefiningConfigKey<bool>_protoFlux=new("ProtoFlux","Whether to show the Wiki button on ProtoFlux nodes.",()=>true)
18
18
{
19
19
newConfigKeySessionShare<bool>(true)
20
20
};
@@ -33,6 +33,7 @@ internal sealed class WikiButtonConfig : ConfigSection
0 commit comments