asajs 3.0.2 → 3.0.5
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/dist/cjs/compilers/BindingCompiler.js +458 -0
- package/dist/cjs/compilers/BindingFunctions.js +267 -0
- package/dist/cjs/compilers/Compiler.js +158 -0
- package/dist/cjs/compilers/Compress.js +55 -0
- package/dist/cjs/compilers/Config.js +138 -0
- package/dist/cjs/compilers/Encoder.js +90 -0
- package/dist/cjs/compilers/Installer.js +123 -0
- package/dist/cjs/compilers/PreCompile.js +86 -0
- package/dist/cjs/compilers/generator/GenerateDir.js +51 -0
- package/dist/cjs/compilers/generator/JsonBuilder.js +66 -0
- package/dist/cjs/compilers/generator/LangBuilder.js +65 -0
- package/dist/cjs/compilers/generator/Log.js +45 -0
- package/dist/cjs/compilers/generator/Manifest.js +63 -0
- package/dist/cjs/compilers/generator/Save.js +87 -0
- package/dist/cjs/compilers/generator/SearchFiles.js +70 -0
- package/dist/cjs/compilers/generator/Sounds.js +91 -0
- package/dist/cjs/compilers/generator/Template.js +54 -0
- package/dist/cjs/compilers/generator/UIBuilder.js +123 -0
- package/dist/cjs/compilers/reader/Audio.js +81 -0
- package/dist/cjs/compilers/reader/Color.js +65 -0
- package/dist/cjs/compilers/reader/CurrentLine.js +36 -0
- package/dist/cjs/compilers/reader/Env.js +21 -0
- package/dist/cjs/compilers/reader/GlobalVariables.js +23 -0
- package/dist/cjs/compilers/reader/Object.js +44 -0
- package/dist/cjs/compilers/reader/ReadBinding.js +67 -0
- package/dist/cjs/compilers/reader/ReadProperties.js +118 -0
- package/dist/cjs/components/AddCollectionChill.js +41 -0
- package/dist/cjs/components/Animation.js +127 -0
- package/dist/cjs/components/AnimationKeyFrame.js +49 -0
- package/dist/cjs/components/Class.js +95 -0
- package/dist/cjs/components/LocalizeText.js +59 -0
- package/dist/cjs/components/Modify.js +377 -0
- package/dist/cjs/components/Random.js +104 -0
- package/dist/cjs/components/UI.js +387 -0
- package/dist/cjs/components/Vanilla.js +57915 -0
- package/dist/cjs/index.js +291 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/template.js +37 -0
- package/dist/cjs/types/components/ChildIdentifier.js +16 -0
- package/dist/cjs/types/components/Identifier.js +17 -0
- package/dist/cjs/types/components/NameCallback.js +16 -0
- package/dist/cjs/types/components/UIIdentifier.js +16 -0
- package/dist/cjs/types/components/UIInterface.js +16 -0
- package/dist/cjs/types/enums/Anchor.js +39 -0
- package/dist/cjs/types/enums/AnimTypes.js +39 -0
- package/dist/cjs/types/enums/BindingCondition.js +36 -0
- package/dist/cjs/types/enums/BindingName.js +4208 -0
- package/dist/cjs/types/enums/BindingType.js +35 -0
- package/dist/cjs/types/enums/ClipDirecion.js +35 -0
- package/dist/cjs/types/enums/Collection.js +202 -0
- package/dist/cjs/types/enums/Direction.js +33 -0
- package/dist/cjs/types/enums/EasingTypes.js +62 -0
- package/dist/cjs/types/enums/EnumColor.js +37 -0
- package/dist/cjs/types/enums/FocusNavigationMode.js +34 -0
- package/dist/cjs/types/enums/FontSize.js +34 -0
- package/dist/cjs/types/enums/FontType.js +35 -0
- package/dist/cjs/types/enums/GlobalVariables.js +345 -0
- package/dist/cjs/types/enums/InputModeCondition.js +33 -0
- package/dist/cjs/types/enums/ItemAuxID.js +31 -0
- package/dist/cjs/types/enums/JsonUIArrayName.js +36 -0
- package/dist/cjs/types/enums/MappingFrom.js +81 -0
- package/dist/cjs/types/enums/MappingTo.js +248 -0
- package/dist/cjs/types/enums/MappingTypes.js +34 -0
- package/dist/cjs/types/enums/Orientation.js +32 -0
- package/dist/cjs/types/enums/Renderer.js +68 -0
- package/dist/cjs/types/enums/Rotation.js +33 -0
- package/dist/cjs/types/enums/Scope.js +32 -0
- package/dist/cjs/types/enums/TextTypes.js +33 -0
- package/dist/cjs/types/enums/TextureFileSystem.js +41 -0
- package/dist/cjs/types/enums/Types.js +57 -0
- package/dist/cjs/types/objects/Animation.js +16 -0
- package/dist/cjs/types/objects/BindingHook.js +16 -0
- package/dist/cjs/types/objects/BindingInterface.js +16 -0
- package/dist/cjs/types/objects/ButtonMapping.js +16 -0
- package/dist/cjs/types/objects/Factory.js +16 -0
- package/dist/cjs/types/objects/Installer.js +53 -0
- package/dist/cjs/types/objects/Manifest.js +56 -0
- package/dist/cjs/types/objects/Modify.js +16 -0
- package/dist/cjs/types/objects/PropertyBag.js +16 -0
- package/dist/cjs/types/objects/Sound.js +16 -0
- package/dist/cjs/types/objects/Variables.js +16 -0
- package/dist/cjs/types/objects/elements/Button.js +17 -0
- package/dist/cjs/types/objects/elements/CollectionPanel.js +17 -0
- package/dist/cjs/types/objects/elements/Custom.js +17 -0
- package/dist/cjs/types/objects/elements/Dropdown.js +17 -0
- package/dist/cjs/types/objects/elements/EditBox.js +17 -0
- package/dist/cjs/types/objects/elements/Grid.js +16 -0
- package/dist/cjs/types/objects/elements/Image.js +17 -0
- package/dist/cjs/types/objects/elements/InputPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Label.js +17 -0
- package/dist/cjs/types/objects/elements/PropertiesType.js +17 -0
- package/dist/cjs/types/objects/elements/Screen.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollView.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarBox.js +17 -0
- package/dist/cjs/types/objects/elements/ScrollbarTrack.js +17 -0
- package/dist/cjs/types/objects/elements/SelectionWheel.js +17 -0
- package/dist/cjs/types/objects/elements/Slider.js +17 -0
- package/dist/cjs/types/objects/elements/SliderBox.js +17 -0
- package/dist/cjs/types/objects/elements/StackPanel.js +16 -0
- package/dist/cjs/types/objects/elements/Toggle.js +17 -0
- package/dist/cjs/types/objects/elements/TooltipTrigger.js +16 -0
- package/dist/cjs/types/objects/elements/panel.js +16 -0
- package/dist/cjs/types/objects/properties/Buttons.js +16 -0
- package/dist/cjs/types/objects/properties/CollectionIndexs.js +16 -0
- package/dist/cjs/types/objects/properties/Collections.js +16 -0
- package/dist/cjs/types/objects/properties/Controls.js +16 -0
- package/dist/cjs/types/objects/properties/Dropdowns.js +16 -0
- package/dist/cjs/types/objects/properties/Focus.js +16 -0
- package/dist/cjs/types/objects/properties/FocusContainerCustom.js +16 -0
- package/dist/cjs/types/objects/properties/Grids.js +16 -0
- package/dist/cjs/types/objects/properties/Inputs.js +16 -0
- package/dist/cjs/types/objects/properties/Layouts.js +16 -0
- package/dist/cjs/types/objects/properties/Properties.js +16 -0
- package/dist/cjs/types/objects/properties/Renderers.js +16 -0
- package/dist/cjs/types/objects/properties/Screens.js +16 -0
- package/dist/cjs/types/objects/properties/ScrollViews.js +16 -0
- package/dist/cjs/types/objects/properties/SelectionWheels.js +16 -0
- package/dist/cjs/types/objects/properties/SliderBoxs.js +16 -0
- package/dist/cjs/types/objects/properties/Sliders.js +16 -0
- package/dist/cjs/types/objects/properties/Sounds.js +16 -0
- package/dist/cjs/types/objects/properties/Specials.js +16 -0
- package/dist/cjs/types/objects/properties/Sprites.js +16 -0
- package/dist/cjs/types/objects/properties/StackPanels.js +16 -0
- package/dist/cjs/types/objects/properties/TTS.js +16 -0
- package/dist/cjs/types/objects/properties/TextEdits.js +16 -0
- package/dist/cjs/types/objects/properties/Texts.js +16 -0
- package/dist/cjs/types/objects/properties/Toggles.js +16 -0
- package/dist/cjs/types/objects/properties/TooltipTriggers.js +16 -0
- package/dist/cjs/types/objects/properties/Variables.js +16 -0
- package/dist/cjs/types/values/Any.js +16 -0
- package/dist/cjs/types/values/Binding.js +16 -0
- package/dist/cjs/types/values/Bool.js +16 -0
- package/dist/cjs/types/values/ColorVector.js +16 -0
- package/dist/cjs/types/values/ElementPath.js +16 -0
- package/dist/cjs/types/values/Hex.js +16 -0
- package/dist/cjs/types/values/Number.js +16 -0
- package/dist/cjs/types/values/RangeVector.js +16 -0
- package/dist/cjs/types/values/Str.js +16 -0
- package/dist/cjs/types/values/StringVector.js +16 -0
- package/dist/cjs/types/values/TargetElementPath.js +16 -0
- package/dist/cjs/types/values/Variable.js +16 -0
- package/dist/cjs/types/values/Vector.js +16 -0
- package/dist/esm/index.js +68470 -0
- package/dist/esm/package.json +1 -0
- package/dist/types/compilers/BindingCompiler.d.ts +44 -0
- package/dist/types/compilers/BindingFunctions.d.ts +10 -0
- package/dist/types/compilers/Compiler.d.ts +3 -0
- package/dist/types/compilers/Compress.d.ts +1 -0
- package/dist/types/compilers/Config.d.ts +95 -0
- package/dist/types/compilers/Encoder.d.ts +11 -0
- package/dist/types/compilers/Installer.d.ts +14 -0
- package/dist/types/compilers/PreCompile.d.ts +4 -0
- package/dist/types/compilers/generator/GenerateDir.d.ts +1 -0
- package/dist/types/compilers/generator/JsonBuilder.d.ts +28 -0
- package/dist/types/compilers/generator/LangBuilder.d.ts +4 -0
- package/dist/types/compilers/generator/Log.d.ts +9 -0
- package/dist/types/compilers/generator/Manifest.d.ts +21 -0
- package/dist/types/compilers/generator/Save.d.ts +16 -0
- package/dist/types/compilers/generator/SearchFiles.d.ts +11 -0
- package/dist/types/compilers/generator/Sounds.d.ts +5 -0
- package/dist/types/compilers/generator/Template.d.ts +1 -0
- package/dist/types/compilers/generator/UIBuilder.d.ts +9 -0
- package/dist/types/compilers/reader/Audio.d.ts +1 -0
- package/dist/types/compilers/reader/Color.d.ts +5 -0
- package/dist/types/compilers/reader/CurrentLine.d.ts +1 -0
- package/dist/types/compilers/reader/Env.d.ts +1 -0
- package/dist/types/compilers/reader/GlobalVariables.d.ts +1 -0
- package/dist/types/compilers/reader/Object.d.ts +11 -0
- package/dist/types/compilers/reader/ReadBinding.d.ts +6 -0
- package/dist/types/compilers/reader/ReadProperties.d.ts +3 -0
- package/dist/types/components/AddCollectionChill.d.ts +6 -0
- package/dist/types/components/Animation.d.ts +15 -0
- package/dist/types/components/AnimationKeyFrame.d.ts +10 -0
- package/dist/types/components/Class.d.ts +68 -0
- package/dist/types/components/LocalizeText.d.ts +21 -0
- package/dist/types/components/Modify.d.ts +30 -0
- package/dist/types/components/Random.d.ts +20 -0
- package/dist/types/components/UI.d.ts +89 -0
- package/dist/types/components/Vanilla.d.ts +19729 -0
- package/dist/types/index.d.ts +136 -0
- package/dist/types/template.d.ts +4 -0
- package/dist/types/types/components/ChildIdentifier.d.ts +11 -0
- package/dist/types/types/components/Identifier.d.ts +4 -0
- package/dist/types/types/components/NameCallback.d.ts +3 -0
- package/dist/types/types/components/UIIdentifier.d.ts +4 -0
- package/dist/types/types/components/UIInterface.d.ts +16 -0
- package/dist/types/types/enums/Anchor.d.ts +11 -0
- package/dist/types/types/enums/AnimTypes.d.ts +11 -0
- package/dist/types/types/enums/BindingCondition.d.ts +8 -0
- package/dist/types/types/enums/BindingName.d.ts +4180 -0
- package/dist/types/types/enums/BindingType.d.ts +7 -0
- package/dist/types/types/enums/ClipDirecion.d.ts +7 -0
- package/dist/types/types/enums/Collection.d.ts +174 -0
- package/dist/types/types/enums/Direction.d.ts +5 -0
- package/dist/types/types/enums/EasingTypes.d.ts +34 -0
- package/dist/types/types/enums/EnumColor.d.ts +9 -0
- package/dist/types/types/enums/FocusNavigationMode.d.ts +6 -0
- package/dist/types/types/enums/FontSize.d.ts +6 -0
- package/dist/types/types/enums/FontType.d.ts +7 -0
- package/dist/types/types/enums/GlobalVariables.d.ts +317 -0
- package/dist/types/types/enums/InputModeCondition.d.ts +5 -0
- package/dist/types/types/enums/ItemAuxID.d.ts +3 -0
- package/dist/types/types/enums/JsonUIArrayName.d.ts +7 -0
- package/dist/types/types/enums/MappingFrom.d.ts +53 -0
- package/dist/types/types/enums/MappingTo.d.ts +220 -0
- package/dist/types/types/enums/MappingTypes.d.ts +6 -0
- package/dist/types/types/enums/Orientation.d.ts +4 -0
- package/dist/types/types/enums/Renderer.d.ts +40 -0
- package/dist/types/types/enums/Rotation.d.ts +5 -0
- package/dist/types/types/enums/Scope.d.ts +4 -0
- package/dist/types/types/enums/TextTypes.d.ts +5 -0
- package/dist/types/types/enums/TextureFileSystem.d.ts +13 -0
- package/dist/types/types/enums/Types.d.ts +29 -0
- package/dist/types/types/objects/Animation.d.ts +36 -0
- package/dist/types/types/objects/BindingHook.d.ts +1 -0
- package/dist/types/types/objects/BindingInterface.d.ts +21 -0
- package/dist/types/types/objects/ButtonMapping.d.ts +18 -0
- package/dist/types/types/objects/Factory.d.ts +2 -0
- package/dist/types/types/objects/Installer.d.ts +26 -0
- package/dist/types/types/objects/Manifest.d.ts +74 -0
- package/dist/types/types/objects/Modify.d.ts +52 -0
- package/dist/types/types/objects/PropertyBag.d.ts +2 -0
- package/dist/types/types/objects/Sound.d.ts +8 -0
- package/dist/types/types/objects/Variables.d.ts +1 -0
- package/dist/types/types/objects/elements/Button.d.ts +4 -0
- package/dist/types/types/objects/elements/CollectionPanel.d.ts +4 -0
- package/dist/types/types/objects/elements/Custom.d.ts +5 -0
- package/dist/types/types/objects/elements/Dropdown.d.ts +4 -0
- package/dist/types/types/objects/elements/EditBox.d.ts +4 -0
- package/dist/types/types/objects/elements/Grid.d.ts +4 -0
- package/dist/types/types/objects/elements/Image.d.ts +4 -0
- package/dist/types/types/objects/elements/InputPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Label.d.ts +4 -0
- package/dist/types/types/objects/elements/PropertiesType.d.ts +45 -0
- package/dist/types/types/objects/elements/Screen.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollView.d.ts +5 -0
- package/dist/types/types/objects/elements/ScrollbarBox.d.ts +4 -0
- package/dist/types/types/objects/elements/ScrollbarTrack.d.ts +4 -0
- package/dist/types/types/objects/elements/SelectionWheel.d.ts +4 -0
- package/dist/types/types/objects/elements/Slider.d.ts +4 -0
- package/dist/types/types/objects/elements/SliderBox.d.ts +5 -0
- package/dist/types/types/objects/elements/StackPanel.d.ts +7 -0
- package/dist/types/types/objects/elements/Toggle.d.ts +4 -0
- package/dist/types/types/objects/elements/TooltipTrigger.d.ts +8 -0
- package/dist/types/types/objects/elements/panel.d.ts +6 -0
- package/dist/types/types/objects/properties/Buttons.d.ts +5 -0
- package/dist/types/types/objects/properties/CollectionIndexs.d.ts +4 -0
- package/dist/types/types/objects/properties/Collections.d.ts +6 -0
- package/dist/types/types/objects/properties/Controls.d.ts +27 -0
- package/dist/types/types/objects/properties/Dropdowns.d.ts +6 -0
- package/dist/types/types/objects/properties/Focus.d.ts +28 -0
- package/dist/types/types/objects/properties/FocusContainerCustom.d.ts +5 -0
- package/dist/types/types/objects/properties/Grids.d.ts +15 -0
- package/dist/types/types/objects/properties/Inputs.d.ts +13 -0
- package/dist/types/types/objects/properties/Layouts.d.ts +35 -0
- package/dist/types/types/objects/properties/Properties.d.ts +27 -0
- package/dist/types/types/objects/properties/Renderers.d.ts +5 -0
- package/dist/types/types/objects/properties/Screens.d.ts +23 -0
- package/dist/types/types/objects/properties/ScrollViews.d.ts +17 -0
- package/dist/types/types/objects/properties/SelectionWheels.d.ts +13 -0
- package/dist/types/types/objects/properties/SliderBoxs.d.ts +6 -0
- package/dist/types/types/objects/properties/Sliders.d.ts +23 -0
- package/dist/types/types/objects/properties/Sounds.d.ts +10 -0
- package/dist/types/types/objects/properties/Specials.d.ts +60 -0
- package/dist/types/types/objects/properties/Sprites.d.ts +33 -0
- package/dist/types/types/objects/properties/StackPanels.d.ts +5 -0
- package/dist/types/types/objects/properties/TTS.d.ts +24 -0
- package/dist/types/types/objects/properties/TextEdits.d.ts +19 -0
- package/dist/types/types/objects/properties/Texts.d.ts +26 -0
- package/dist/types/types/objects/properties/Toggles.d.ts +24 -0
- package/dist/types/types/objects/properties/TooltipTriggers.d.ts +7 -0
- package/dist/types/types/objects/properties/Variables.d.ts +3 -0
- package/dist/types/types/values/Any.d.ts +4 -0
- package/dist/types/types/values/Binding.d.ts +2 -0
- package/dist/types/types/values/Bool.d.ts +2 -0
- package/dist/types/types/values/ColorVector.d.ts +6 -0
- package/dist/types/types/values/ElementPath.d.ts +2 -0
- package/dist/types/types/values/Hex.d.ts +1 -0
- package/dist/types/types/values/Number.d.ts +4 -0
- package/dist/types/types/values/RangeVector.d.ts +5 -0
- package/dist/types/types/values/Str.d.ts +2 -0
- package/dist/types/types/values/StringVector.d.ts +6 -0
- package/dist/types/types/values/TargetElementPath.d.ts +1 -0
- package/dist/types/types/values/Variable.d.ts +1 -0
- package/dist/types/types/values/Vector.d.ts +5 -0
- package/package.json +4 -4
|
@@ -0,0 +1,4208 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var BindingName_exports = {};
|
|
20
|
+
__export(BindingName_exports, {
|
|
21
|
+
BindingName: () => BindingName
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(BindingName_exports);
|
|
24
|
+
var BindingName = /* @__PURE__ */ ((BindingName2) => {
|
|
25
|
+
BindingName2["PlayButtonEnabled"] = "#play_button_enabled";
|
|
26
|
+
BindingName2["Enabled"] = "#enabled";
|
|
27
|
+
BindingName2["PlayButtonDisabled"] = "#play_button_disabled";
|
|
28
|
+
BindingName2["Visible"] = "#visible";
|
|
29
|
+
BindingName2["SaveButtonEnabled"] = "#save_button_enabled";
|
|
30
|
+
BindingName2["SaveButtonDisabled"] = "#save_button_disabled";
|
|
31
|
+
BindingName2["TitleText"] = "#title_text";
|
|
32
|
+
BindingName2["NameTextBox"] = "#name_text_box";
|
|
33
|
+
BindingName2["NameTextBoxContent"] = "#name_text_box_content";
|
|
34
|
+
BindingName2["IpTextBox"] = "#ip_text_box";
|
|
35
|
+
BindingName2["IpTextBoxContent"] = "#ip_text_box_content";
|
|
36
|
+
BindingName2["PortTextBox"] = "#port_text_box";
|
|
37
|
+
BindingName2["PortTextBoxContent"] = "#port_text_box_content";
|
|
38
|
+
BindingName2["AdhocTitle"] = "#adhoc_title";
|
|
39
|
+
BindingName2["Region"] = "#region";
|
|
40
|
+
BindingName2["Endregion"] = "#endregion";
|
|
41
|
+
BindingName2["PropertyField"] = "#property_field";
|
|
42
|
+
BindingName2["ItemName"] = "#item_name";
|
|
43
|
+
BindingName2["TextBoxItemName"] = "#text_box_item_name";
|
|
44
|
+
BindingName2["CrossOutIcon"] = "#cross_out_icon";
|
|
45
|
+
BindingName2["Text"] = "#text";
|
|
46
|
+
BindingName2["CostText"] = "#cost_text";
|
|
47
|
+
BindingName2["CostTextRed"] = "#cost_text_red";
|
|
48
|
+
BindingName2["CostTextGreen"] = "#cost_text_green";
|
|
49
|
+
BindingName2["BodyText"] = "#body_text";
|
|
50
|
+
BindingName2["LeftButtonText"] = "#left_button_text";
|
|
51
|
+
BindingName2["RightButtonText"] = "#right_button_text";
|
|
52
|
+
BindingName2["None"] = "#none";
|
|
53
|
+
BindingName2["TtsEnabled"] = "#tts_enabled";
|
|
54
|
+
BindingName2["SignInButtonText"] = "#sign_in_button_text";
|
|
55
|
+
BindingName2["SignInButtonVisible"] = "#sign_in_button_visible";
|
|
56
|
+
BindingName2["AuthenticationMessage"] = "#authentication_message";
|
|
57
|
+
BindingName2["Hyperlink"] = "#hyperlink";
|
|
58
|
+
BindingName2["AgreeTermsAndConditions"] = "#agree_terms_and_conditions";
|
|
59
|
+
BindingName2["ConfirmButtonEnabled"] = "#confirm_button_enabled";
|
|
60
|
+
BindingName2["EduStorePurchaseInfo"] = "#edu_store_purchase_info";
|
|
61
|
+
BindingName2["EduStorePurchaseButtonText"] = "#edu_store_purchase_button_text";
|
|
62
|
+
BindingName2["AskingToBuyVisible"] = "#asking_to_buy_visible";
|
|
63
|
+
BindingName2["ConfirmingPurchaseVisible"] = "#confirming_purchase_visible";
|
|
64
|
+
BindingName2["SignInErrorVisible"] = "#sign_in_error_visible";
|
|
65
|
+
BindingName2["SignInErrorClientVisible"] = "#sign_in_error_client_visible";
|
|
66
|
+
BindingName2["SignInModalTitle"] = "#sign_in_modal_title";
|
|
67
|
+
BindingName2["SignInVisible"] = "#sign_in_visible";
|
|
68
|
+
BindingName2["SignInIosVisible"] = "#sign_in_ios_visible";
|
|
69
|
+
BindingName2["PackProgressVisible"] = "#pack_progress_visible";
|
|
70
|
+
BindingName2["WelcomeVisible"] = "#welcome_visible";
|
|
71
|
+
BindingName2["DemoVisible"] = "#demo_visible";
|
|
72
|
+
BindingName2["EulaVisible"] = "#eula_visible";
|
|
73
|
+
BindingName2["EduStoreVisible"] = "#edu_store_visible";
|
|
74
|
+
BindingName2["PopupTitle"] = "#popup_title";
|
|
75
|
+
BindingName2["PopupText"] = "#popup_text";
|
|
76
|
+
BindingName2["PopupMessageStudentText"] = "#popup_message_student_text";
|
|
77
|
+
BindingName2["PopupMessageStudentVisible"] = "#popup_message_student_visible";
|
|
78
|
+
BindingName2["HyperlinkPromptText"] = "#hyperlink_prompt_text";
|
|
79
|
+
BindingName2["GenericPopupLinkVisible"] = "#generic_popup_link_visible";
|
|
80
|
+
BindingName2["TrialPurchaseLinkVisible"] = "#trial_purchase_link_visible";
|
|
81
|
+
BindingName2["ShowPopupDismissButton"] = "#show_popup_dismiss_button";
|
|
82
|
+
BindingName2["LoadingText"] = "#loading_text";
|
|
83
|
+
BindingName2["SkipVisible"] = "#skip_visible";
|
|
84
|
+
BindingName2["SignInIosButtonsVisible"] = "#sign_in_ios_buttons_visible";
|
|
85
|
+
BindingName2["DebugJsonPopupEnabled"] = "#debug_json_popup_enabled";
|
|
86
|
+
BindingName2["DebugToggleIosText"] = "#debug_toggle_ios_text";
|
|
87
|
+
BindingName2["Popup_"] = "#popup_";
|
|
88
|
+
BindingName2["PopupHasTwoButtons"] = "#popup_has_two_buttons";
|
|
89
|
+
BindingName2["AutoSaveAnimationVisible"] = "#auto_save_animation_visible";
|
|
90
|
+
BindingName2["TtsDialogBody"] = "#tts_dialog_body";
|
|
91
|
+
BindingName2["ItemIdAux"] = "#item_id_aux";
|
|
92
|
+
BindingName2["SupportsNetherite"] = "#supports_netherite";
|
|
93
|
+
BindingName2["ButtonVisible"] = "#button_visible";
|
|
94
|
+
BindingName2["ButtonHover"] = "#button_hover";
|
|
95
|
+
BindingName2["HoverText"] = "#hover_text";
|
|
96
|
+
BindingName2["Selected"] = "#selected";
|
|
97
|
+
BindingName2["ToggleState"] = "#toggle_state";
|
|
98
|
+
BindingName2["Active"] = "#active";
|
|
99
|
+
BindingName2["Inactive"] = "#inactive";
|
|
100
|
+
BindingName2["ExtraImageSelection"] = "#extra_image_selection";
|
|
101
|
+
BindingName2["GamepadHelperVisible"] = "#gamepad_helper_visible";
|
|
102
|
+
BindingName2["ScreenshotPath"] = "#screenshot_path";
|
|
103
|
+
BindingName2["Texture"] = "#texture";
|
|
104
|
+
BindingName2["ItemScreenshotPath"] = "#item_screenshot_path";
|
|
105
|
+
BindingName2["InventoryScreenshotPath"] = "#inventory_screenshot_path";
|
|
106
|
+
BindingName2["Editable"] = "#editable";
|
|
107
|
+
BindingName2["FinalizeButtonEnabled"] = "#finalize_button_enabled";
|
|
108
|
+
BindingName2["PageTextBox"] = "#page_text_box";
|
|
109
|
+
BindingName2["IsTextPage"] = "#is_text_page";
|
|
110
|
+
BindingName2["PageNumber"] = "#page_number";
|
|
111
|
+
BindingName2["SwapLeftActive"] = "#swap_left_active";
|
|
112
|
+
BindingName2["InsertPageActive"] = "#insert_page_active";
|
|
113
|
+
BindingName2["InsertPhotoPageActive"] = "#insert_photo_page_active";
|
|
114
|
+
BindingName2["EditControlsActive"] = "#edit_controls_active";
|
|
115
|
+
BindingName2["SwapRightActive"] = "#swap_right_active";
|
|
116
|
+
BindingName2["IsPhotoPage"] = "#is_photo_page";
|
|
117
|
+
BindingName2["EditButtonActive"] = "#edit_button_active";
|
|
118
|
+
BindingName2["PageVisible"] = "#page_visible";
|
|
119
|
+
BindingName2["TitleTextBox"] = "#title_text_box";
|
|
120
|
+
BindingName2["TitleTextBoxItemName"] = "#title_text_box_item_name";
|
|
121
|
+
BindingName2["AuthorTextBox"] = "#author_text_box";
|
|
122
|
+
BindingName2["AuthorEditable"] = "#author_editable";
|
|
123
|
+
BindingName2["AuthorTextBoxItemName"] = "#author_text_box_item_name";
|
|
124
|
+
BindingName2["PrevPageButtonActive"] = "#prev_page_button_active";
|
|
125
|
+
BindingName2["NextPageButtonActive"] = "#next_page_button_active";
|
|
126
|
+
BindingName2["Viewing"] = "#viewing";
|
|
127
|
+
BindingName2["Signing"] = "#signing";
|
|
128
|
+
BindingName2["Picking"] = "#picking";
|
|
129
|
+
BindingName2["Exporting"] = "#exporting";
|
|
130
|
+
BindingName2["EmptyBottleImageVisible"] = "#empty_bottle_image_visible";
|
|
131
|
+
BindingName2["EmptyFuelImageVisible"] = "#empty_fuel_image_visible";
|
|
132
|
+
BindingName2["BrewingBubblesRatio"] = "#brewing_bubbles_ratio";
|
|
133
|
+
BindingName2["ClipRatio"] = "#clip_ratio";
|
|
134
|
+
BindingName2["BrewingArrowRatio"] = "#brewing_arrow_ratio";
|
|
135
|
+
BindingName2["BrewingFuelRatio"] = "#brewing_fuel_ratio";
|
|
136
|
+
BindingName2["BannerVisible"] = "#banner_visible";
|
|
137
|
+
BindingName2["IsUsingGamepad"] = "#is_using_gamepad";
|
|
138
|
+
BindingName2["FocusOverrideUp"] = "#focus_override_up";
|
|
139
|
+
BindingName2["FocusChangeUp"] = "#focus_change_up";
|
|
140
|
+
BindingName2["FocusOverrideDown"] = "#focus_override_down";
|
|
141
|
+
BindingName2["FocusChangeDown"] = "#focus_change_down";
|
|
142
|
+
BindingName2["FocusIdOverride"] = "#focus_id_override";
|
|
143
|
+
BindingName2["FocusIdentifier"] = "#focus_identifier";
|
|
144
|
+
BindingName2["KeyartPath"] = "#keyart_path";
|
|
145
|
+
BindingName2["KeyartTextureFileSystem"] = "#keyart_texture_file_system";
|
|
146
|
+
BindingName2["TextureFileSystem"] = "#texture_file_system";
|
|
147
|
+
BindingName2["OfferTitle"] = "#offer_title";
|
|
148
|
+
BindingName2["OwnedGridDimension"] = "#owned_grid_dimension";
|
|
149
|
+
BindingName2["UnownedGridDimension"] = "#unowned_grid_dimension";
|
|
150
|
+
BindingName2["BundlePurchaseConfirm"] = "#bundle_purchase_confirm";
|
|
151
|
+
BindingName2["BundlePurchaseWarningTitle"] = "#bundle_purchase_warning_title";
|
|
152
|
+
BindingName2["TextBoxPlaceholderName"] = "#text_box_placeholder_name";
|
|
153
|
+
BindingName2["IsNoneMode"] = "#is_none_mode";
|
|
154
|
+
BindingName2["IsCloneMode"] = "#is_clone_mode";
|
|
155
|
+
BindingName2["IsRenameMode"] = "#is_rename_mode";
|
|
156
|
+
BindingName2["IsBasicMapMode"] = "#is_basic_map_mode";
|
|
157
|
+
BindingName2["IsLocatorMapMode"] = "#is_locator_map_mode";
|
|
158
|
+
BindingName2["IsExtendMode"] = "#is_extend_mode";
|
|
159
|
+
BindingName2["IsLockedMode"] = "#is_locked_mode";
|
|
160
|
+
BindingName2["OutputDescription"] = "#output_description";
|
|
161
|
+
BindingName2["CollectionName"] = "#collection_name";
|
|
162
|
+
BindingName2["CollectionIndex"] = "#collection_index";
|
|
163
|
+
BindingName2["IsRightTabCartography"] = "#is_right_tab_cartography";
|
|
164
|
+
BindingName2["IsLeftTabInventory"] = "#is_left_tab_inventory";
|
|
165
|
+
BindingName2["Locked"] = "#locked";
|
|
166
|
+
BindingName2["LockVisible"] = "#lock_visible";
|
|
167
|
+
BindingName2["LockLabelText"] = "#lock_label_text";
|
|
168
|
+
BindingName2["KeyboardBeingUsed"] = "#keyboard_being_used";
|
|
169
|
+
BindingName2["KeyboardButtonFocusOverrideUp"] = "#keyboard_button_focus_override_up";
|
|
170
|
+
BindingName2["KeyboardButtonFocusOverrideDown"] = "#keyboard_button_focus_override_down";
|
|
171
|
+
BindingName2["KeyboardButtonVisible"] = "#keyboard_button_visible";
|
|
172
|
+
BindingName2["SendButtonAccessibilityText"] = "#send_button_accessibility_text";
|
|
173
|
+
BindingName2["SendButtonVisible"] = "#send_button_visible";
|
|
174
|
+
BindingName2["TextTts"] = "#text_tts";
|
|
175
|
+
BindingName2["ChatVisible"] = "#chat_visible";
|
|
176
|
+
BindingName2["HostOptionsMenuNotOpenAndTtsEnabled"] = "#host_options_menu_not_open_and_tts_enabled";
|
|
177
|
+
BindingName2["MessageTextBox"] = "#message_text_box";
|
|
178
|
+
BindingName2["MessageTextBoxContent"] = "#message_text_box_content";
|
|
179
|
+
BindingName2["TextEditBoxFocusOverrideUp"] = "#text_edit_box_focus_override_up";
|
|
180
|
+
BindingName2["TextEditBoxFocusOverrideDown"] = "#text_edit_box_focus_override_down";
|
|
181
|
+
BindingName2["AutoCompleteItem"] = "#auto_complete_item";
|
|
182
|
+
BindingName2["AutoCompleteText"] = "#auto_complete_text";
|
|
183
|
+
BindingName2["IsAutocompleteSuggestion"] = "#is_autocomplete_suggestion";
|
|
184
|
+
BindingName2["GetGridSize"] = "#get_grid_size";
|
|
185
|
+
BindingName2["ChatTitleText"] = "#chat_title_text";
|
|
186
|
+
BindingName2["BackButtonText"] = "#back_button_text";
|
|
187
|
+
BindingName2["BackButtonAccessibilityText"] = "#back_button_accessibility_text";
|
|
188
|
+
BindingName2["CoordinateTypePosition"] = "#coordinate_type_position";
|
|
189
|
+
BindingName2["CoordinateTypeFacing"] = "#coordinate_type_facing";
|
|
190
|
+
BindingName2["ChatCoordinateDropdownLabel"] = "#chat_coordinate_dropdown_label";
|
|
191
|
+
BindingName2["CopyButtonEnabled"] = "#copy_button_enabled";
|
|
192
|
+
BindingName2["ChatTitleVisible"] = "#chat_title_visible";
|
|
193
|
+
BindingName2["ChatCoordinateDropdownVisible"] = "#chat_coordinate_dropdown_visible";
|
|
194
|
+
BindingName2["CoordinatesText"] = "#coordinates_text";
|
|
195
|
+
BindingName2["HideChat"] = "#hide_chat";
|
|
196
|
+
BindingName2["ToggleEmoteChat"] = "#toggle_emote_chat";
|
|
197
|
+
BindingName2["ToggleTts"] = "#toggle_tts";
|
|
198
|
+
BindingName2["TypefaceRadioMojangles"] = "#typeface_radio_mojangles";
|
|
199
|
+
BindingName2["TypefaceRadioNotoSans"] = "#typeface_radio_notoSans";
|
|
200
|
+
BindingName2["ChatTypefaceDropdownEnabled"] = "#chat_typeface_dropdown_enabled";
|
|
201
|
+
BindingName2["ChatTypefaceDropdownLabel"] = "#chat_typeface_dropdown_label";
|
|
202
|
+
BindingName2["ChatTypefaceVisible"] = "#chat_typeface_visible";
|
|
203
|
+
BindingName2["ChatFontType"] = "#chat_font_type";
|
|
204
|
+
BindingName2["FontType"] = "#font_type";
|
|
205
|
+
BindingName2["FontColor"] = "#font_color";
|
|
206
|
+
BindingName2["FontColorLabel"] = "#font_color_label";
|
|
207
|
+
BindingName2["Color"] = "#color";
|
|
208
|
+
BindingName2["ChatToggleColor"] = "#chat_toggle_color";
|
|
209
|
+
BindingName2["MentionsToggleColor"] = "#mentions_toggle_color";
|
|
210
|
+
BindingName2["ChatFontSizeCustomLabel"] = "#chat_font_size_custom_label";
|
|
211
|
+
BindingName2["ChatFontSize"] = "#chat_font_size";
|
|
212
|
+
BindingName2["ChatFontSizeEnabled"] = "#chat_font_size_enabled";
|
|
213
|
+
BindingName2["ChatFontSizeSteps"] = "#chat_font_size_steps";
|
|
214
|
+
BindingName2["ChatFontSizeTextValue"] = "#chat_font_size_text_value";
|
|
215
|
+
BindingName2["ChatLineSpacingSliderLabel"] = "#chat_line_spacing_slider_label";
|
|
216
|
+
BindingName2["ChatLineSpacing"] = "#chat_line_spacing";
|
|
217
|
+
BindingName2["ChatLineSpacingEnabled"] = "#chat_line_spacing_enabled";
|
|
218
|
+
BindingName2["ChatLineSpacingTextValue"] = "#chat_line_spacing_text_value";
|
|
219
|
+
BindingName2["Slot"] = "#slot";
|
|
220
|
+
BindingName2["RealmsGridDimension"] = "#realms_grid_dimension";
|
|
221
|
+
BindingName2["WorldButtonFocusIdentifier"] = "#world_button_focus_identifier";
|
|
222
|
+
BindingName2["TenPlayerButtonVisible"] = "#ten_player_button_visible";
|
|
223
|
+
BindingName2["TwoPlayerButtonVisible"] = "#two_player_button_visible";
|
|
224
|
+
BindingName2["RealmsWorldHeader"] = "#realms_world_header";
|
|
225
|
+
BindingName2["RealmsWorldPlayerCount"] = "#realms_world_player_count";
|
|
226
|
+
BindingName2["RealmsGameOnline"] = "#realms_game_online";
|
|
227
|
+
BindingName2["RealmsGameUnavailable"] = "#realms_game_unavailable";
|
|
228
|
+
BindingName2["RealmsGameOffline"] = "#realms_game_offline";
|
|
229
|
+
BindingName2["ProgressLoadingVisible"] = "#progress_loading_visible";
|
|
230
|
+
BindingName2["RealmSlotIsFilled"] = "#realm_slot_is_filled";
|
|
231
|
+
BindingName2["SlotWorldImage"] = "#slot_world_image";
|
|
232
|
+
BindingName2["SlotWorldTextureSource"] = "#slot_world_texture_source";
|
|
233
|
+
BindingName2["SlotName"] = "#slot_name";
|
|
234
|
+
BindingName2["WindowTitleText"] = "#window_title_text";
|
|
235
|
+
BindingName2["SlotsViewToggle"] = "#slots_view_toggle";
|
|
236
|
+
BindingName2["SlotDialogHeader"] = "#slot_dialog_header";
|
|
237
|
+
BindingName2["UploadInProgress"] = "#upload_in_progress";
|
|
238
|
+
BindingName2["UploadButtonText"] = "#upload_button_text";
|
|
239
|
+
BindingName2["CloudUploadTermsAccepted"] = "#cloud_upload_terms_accepted";
|
|
240
|
+
BindingName2["UploadFailedDescription"] = "#upload_failed_description";
|
|
241
|
+
BindingName2["UploadFailedRetryableDescription"] = "#upload_failed_retryable_description";
|
|
242
|
+
BindingName2["CoinsWithoutBonus"] = "#coins_without_bonus";
|
|
243
|
+
BindingName2["AccessibilityCoinsWithoutBonus"] = "#accessibility_coins_without_bonus";
|
|
244
|
+
BindingName2["CallOutColor"] = "#call_out_color";
|
|
245
|
+
BindingName2["CallOutBannerColor"] = "#call_out_banner_color";
|
|
246
|
+
BindingName2["CallOutText"] = "#call_out_text";
|
|
247
|
+
BindingName2["CoinOfferTextureName"] = "#coin_offer_texture_name";
|
|
248
|
+
BindingName2["CoinOfferTextureFileSystem"] = "#coin_offer_texture_file_system";
|
|
249
|
+
BindingName2["BonusCoinsVisible"] = "#bonus_coins_visible";
|
|
250
|
+
BindingName2["BonusCoins"] = "#bonus_coins";
|
|
251
|
+
BindingName2["AccessibilityBonusCoins"] = "#accessibility_bonus_coins";
|
|
252
|
+
BindingName2["DebugPriceVisible"] = "#debug_price_visible";
|
|
253
|
+
BindingName2["PriceText"] = "#price_text";
|
|
254
|
+
BindingName2["IsCallOut"] = "#is_call_out";
|
|
255
|
+
BindingName2["CoinsText"] = "#coins_text";
|
|
256
|
+
BindingName2["CoinsRequiredForPurchase"] = "#coins_required_for_purchase";
|
|
257
|
+
BindingName2["ShowMissingCoins"] = "#show_missing_coins";
|
|
258
|
+
BindingName2["NeedsMoreCoins"] = "#needs_more_coins";
|
|
259
|
+
BindingName2["CoinOfferSize"] = "#coin_offer_size";
|
|
260
|
+
BindingName2["HasCoinOffers"] = "#has_coin_offers";
|
|
261
|
+
BindingName2["CoinLoadingVisible"] = "#coin_loading_visible";
|
|
262
|
+
BindingName2["CoinBundleDescriptionText"] = "#coin_bundle_description_text";
|
|
263
|
+
BindingName2["CoinBundleDescriptionTextTts"] = "#coin_bundle_description_text_tts";
|
|
264
|
+
BindingName2["CoinBundleDescriptionFontType"] = "#coin_bundle_description_font_type";
|
|
265
|
+
BindingName2["CoinBundleDescriptionFontSize"] = "#coin_bundle_description_font_size";
|
|
266
|
+
BindingName2["CoinBundleDescriptionFontColor"] = "#coin_bundle_description_font_color";
|
|
267
|
+
BindingName2["FontScaleFactor"] = "#font_scale_factor";
|
|
268
|
+
BindingName2["CoinBundleTitle"] = "#coin_bundle_title";
|
|
269
|
+
BindingName2["CoinBundleDescriptionSection"] = "#coin_bundle_description_section";
|
|
270
|
+
BindingName2["CollectionLength"] = "#collection_length";
|
|
271
|
+
BindingName2["BundleThumbnailTextureName"] = "#bundle_thumbnail_texture_name";
|
|
272
|
+
BindingName2["BundleThumbnailTextureFileSystem"] = "#bundle_thumbnail_texture_file_system";
|
|
273
|
+
BindingName2["BundleIsOwned"] = "#bundle_is_owned";
|
|
274
|
+
BindingName2["Grayscale"] = "#grayscale";
|
|
275
|
+
BindingName2["BundleCoinTextureName"] = "#bundle_coin_texture_name";
|
|
276
|
+
BindingName2["BundleCoinTextureFileSystem"] = "#bundle_coin_texture_file_system";
|
|
277
|
+
BindingName2["BundleBannerColor"] = "#bundle_banner_color";
|
|
278
|
+
BindingName2["ValidOfferIndex"] = "#valid_offer_index";
|
|
279
|
+
BindingName2["CoinBundleSectionContent"] = "#coin_bundle_section_content";
|
|
280
|
+
BindingName2["MaximizedInputVisible"] = "#maximized_input_visible";
|
|
281
|
+
BindingName2["BlockTypeIconTexture"] = "#block_type_icon_texture";
|
|
282
|
+
BindingName2["CloseButtonVisibleBindingName"] = "#close_button_visible_binding_name";
|
|
283
|
+
BindingName2["CommandImpulseMode"] = "#command_impulse_mode";
|
|
284
|
+
BindingName2["CommandChainMode"] = "#command_chain_mode";
|
|
285
|
+
BindingName2["CommandRepeatMode"] = "#command_repeat_mode";
|
|
286
|
+
BindingName2["BlockTypeDropdownLabelColorBinding"] = "#block_type_dropdown_label_color_binding";
|
|
287
|
+
BindingName2["BlockTypeDropdownEnabled"] = "#block_type_dropdown_enabled";
|
|
288
|
+
BindingName2["BlockTypeDropdownToggleLabel"] = "#block_type_dropdown_toggle_label";
|
|
289
|
+
BindingName2["CommandConditionalMode"] = "#command_conditional_mode";
|
|
290
|
+
BindingName2["CommandUnconditionalMode"] = "#command_unconditional_mode";
|
|
291
|
+
BindingName2["ConditionDropdownEnabled"] = "#condition_dropdown_enabled";
|
|
292
|
+
BindingName2["ConditionDropdownToggleLabel"] = "#condition_dropdown_toggle_label";
|
|
293
|
+
BindingName2["CommandAlwaysOnMode"] = "#command_always_on_mode";
|
|
294
|
+
BindingName2["CommandNeedsRedstoneMode"] = "#command_needs_redstone_mode";
|
|
295
|
+
BindingName2["RedstoneDropdownEnabled"] = "#redstone_dropdown_enabled";
|
|
296
|
+
BindingName2["RedstoneDropdownToggleLabel"] = "#redstone_dropdown_toggle_label";
|
|
297
|
+
BindingName2["CommandHoverNote"] = "#command_hover_note";
|
|
298
|
+
BindingName2["ExecuteOnFirstTick"] = "#execute_on_first_tick";
|
|
299
|
+
BindingName2["ExecuteOnFirstTickEnabled"] = "#execute_on_first_tick_enabled";
|
|
300
|
+
BindingName2["CommandTickDelay"] = "#command_tick_delay";
|
|
301
|
+
BindingName2["CharLimitWarningVisible"] = "#char_limit_warning_visible";
|
|
302
|
+
BindingName2["CommandTextEdit"] = "#command_text_edit";
|
|
303
|
+
BindingName2["TrackOutputBinding"] = "#track_output_binding";
|
|
304
|
+
BindingName2["CommandOutputText"] = "#command_output_text";
|
|
305
|
+
BindingName2["PreviousBlockTypeText"] = "#previous_block_type_text";
|
|
306
|
+
BindingName2["PreviousBlockTypeTextColor"] = "#previous_block_type_text_color";
|
|
307
|
+
BindingName2["PreviousConditionModeText"] = "#previous_condition_mode_text";
|
|
308
|
+
BindingName2["PreviousRedstoneModeText"] = "#previous_redstone_mode_text";
|
|
309
|
+
BindingName2["DividerVisible"] = "#divider_visible";
|
|
310
|
+
BindingName2["MinimizeButtonVisibleBindingName"] = "#minimize_button_visible_binding_name";
|
|
311
|
+
BindingName2["XoutButtonVisibleBindingName"] = "#Xout_button_visible_binding_name";
|
|
312
|
+
BindingName2["UnlinkWarningText"] = "#unlink_warning_text";
|
|
313
|
+
BindingName2["UnlinkConsequencesAcknowledged"] = "#unlink_consequences_acknowledged";
|
|
314
|
+
BindingName2["Confirm0"] = "#confirm_0";
|
|
315
|
+
BindingName2["Confirm0Enabled"] = "#confirm_0_enabled";
|
|
316
|
+
BindingName2["Confirm1"] = "#confirm_1";
|
|
317
|
+
BindingName2["Confirm1Enabled"] = "#confirm_1_enabled";
|
|
318
|
+
BindingName2["Confirm2"] = "#confirm_2";
|
|
319
|
+
BindingName2["Confirm2Enabled"] = "#confirm_2_enabled";
|
|
320
|
+
BindingName2["Confirm3"] = "#confirm_3";
|
|
321
|
+
BindingName2["Confirm3Enabled"] = "#confirm_3_enabled";
|
|
322
|
+
BindingName2["ContentLogText"] = "#content_log_text";
|
|
323
|
+
BindingName2["MessagesSize"] = "#messages_size";
|
|
324
|
+
BindingName2["ShowPersistentBundleHoverText"] = "#show_persistent_bundle_hover_text";
|
|
325
|
+
BindingName2["CraftingPreviewInfo"] = "#crafting_preview_info";
|
|
326
|
+
BindingName2["CrafterOutputItem"] = "#crafter_output_item";
|
|
327
|
+
BindingName2["CrafterOutputItemColor"] = "#crafter_output_item_color";
|
|
328
|
+
BindingName2["ItemCustomColor"] = "#item_custom_color";
|
|
329
|
+
BindingName2["CrafterOutputItemShieldBaseColorHovered"] = "#crafter_output_item_shield_base_color_hovered";
|
|
330
|
+
BindingName2["ShieldBaseColor"] = "#shield_base_color";
|
|
331
|
+
BindingName2["CrafterOutputItemBannerPatterns"] = "#crafter_output_item_banner_patterns";
|
|
332
|
+
BindingName2["BannerPatterns"] = "#banner_patterns";
|
|
333
|
+
BindingName2["CrafterOutputItemBannerColors"] = "#crafter_output_item_banner_colors";
|
|
334
|
+
BindingName2["BannerColors"] = "#banner_colors";
|
|
335
|
+
BindingName2["CrafterOutputItemBannerType"] = "#crafter_output_item_banner_type";
|
|
336
|
+
BindingName2["BannerType"] = "#banner_type";
|
|
337
|
+
BindingName2["CrafterOutputItemDecoratedPotSherds"] = "#crafter_output_item_decorated_pot_sherds";
|
|
338
|
+
BindingName2["DecoratedPotSherds"] = "#decorated_pot_sherds";
|
|
339
|
+
BindingName2["OutputStackCount"] = "#output_stack_count";
|
|
340
|
+
BindingName2["InventoryStackCount"] = "#inventory_stack_count";
|
|
341
|
+
BindingName2["ButtonVisible0"] = "#button_visible0";
|
|
342
|
+
BindingName2["ButtonVisible1"] = "#button_visible1";
|
|
343
|
+
BindingName2["ButtonVisible2"] = "#button_visible2";
|
|
344
|
+
BindingName2["ButtonVisible3"] = "#button_visible3";
|
|
345
|
+
BindingName2["ButtonVisible4"] = "#button_visible4";
|
|
346
|
+
BindingName2["ButtonVisible5"] = "#button_visible5";
|
|
347
|
+
BindingName2["ButtonVisible6"] = "#button_visible6";
|
|
348
|
+
BindingName2["ButtonVisible7"] = "#button_visible7";
|
|
349
|
+
BindingName2["ButtonVisible8"] = "#button_visible8";
|
|
350
|
+
BindingName2["RedstoneArrowTexture"] = "#redstone_arrow_texture";
|
|
351
|
+
BindingName2["AllowPurchaseRealm"] = "#allow_purchase_realm";
|
|
352
|
+
BindingName2["RealmButtonText"] = "#realm_button_text";
|
|
353
|
+
BindingName2["RealmTrialAvailable"] = "#realm_trial_available";
|
|
354
|
+
BindingName2["RealmPrice"] = "#realm_price";
|
|
355
|
+
BindingName2["RealmGridDimension"] = "#realm_grid_dimension";
|
|
356
|
+
BindingName2["TemplatesVisible"] = "#templates_visible";
|
|
357
|
+
BindingName2["DarkBannerVisible"] = "#dark_banner_visible";
|
|
358
|
+
BindingName2["GreyBannerVisible"] = "#grey_banner_visible";
|
|
359
|
+
BindingName2["UpsellText"] = "#upsell_text";
|
|
360
|
+
BindingName2["WorldGridDimension"] = "#world_grid_dimension";
|
|
361
|
+
BindingName2["SkipButtonVisible"] = "#skip_button_visible";
|
|
362
|
+
BindingName2["ShowEduIcon"] = "#show_edu_icon";
|
|
363
|
+
BindingName2["ShowEndPoem"] = "#show_end_poem";
|
|
364
|
+
BindingName2["PlayerName"] = "#player_name";
|
|
365
|
+
BindingName2["ScrollFaster"] = "#scroll_faster";
|
|
366
|
+
BindingName2["ErrorCode"] = "#error_code";
|
|
367
|
+
BindingName2["CorrelationId"] = "#correlation_id";
|
|
368
|
+
BindingName2["NavigationTabFocusPrecedence"] = "#navigation_tab_focus_precedence";
|
|
369
|
+
BindingName2["ToggleOnHover"] = "#toggle_on_hover";
|
|
370
|
+
BindingName2["BuyVisible"] = "#buy_visible";
|
|
371
|
+
BindingName2["SectionContent"] = "#section_content";
|
|
372
|
+
BindingName2["KeyArtTextureFileSystem"] = "#key_art_texture_file_system";
|
|
373
|
+
BindingName2["KeyArtTexturePath"] = "#key_art_texture_path";
|
|
374
|
+
BindingName2["TitleLabel"] = "#title_label";
|
|
375
|
+
BindingName2["RightMostGridItemFocusOverrideRight"] = "#right_most_grid_item_focus_override_right";
|
|
376
|
+
BindingName2["FocusChangeRight"] = "#focus_change_right";
|
|
377
|
+
BindingName2["ContentSectionText"] = "#content_section_text";
|
|
378
|
+
BindingName2["BannerTextureName"] = "#banner_texture_name";
|
|
379
|
+
BindingName2["BannerTextureFilepath"] = "#banner_texture_filepath";
|
|
380
|
+
BindingName2["BannerHoverTextureName"] = "#banner_hover_texture_name";
|
|
381
|
+
BindingName2["BannerHoverTextureFilepath"] = "#banner_hover_texture_filepath";
|
|
382
|
+
BindingName2["PromoPageIsReady"] = "#promo_page_is_ready";
|
|
383
|
+
BindingName2["BuyButtonEnabled"] = "#buy_button_enabled";
|
|
384
|
+
BindingName2["PlatformTermsText"] = "#platform_terms_text";
|
|
385
|
+
BindingName2["TrialDesciptionText"] = "#trial_desciption_text";
|
|
386
|
+
BindingName2["BuyNowBannerText"] = "#buy_now_banner_text";
|
|
387
|
+
BindingName2["BuyNowButtonText"] = "#buy_now_button_text";
|
|
388
|
+
BindingName2["HasCsbSubcription"] = "#has_csb_subcription";
|
|
389
|
+
BindingName2["HasCsbSubscription"] = "#has_csb_subscription";
|
|
390
|
+
BindingName2["ItemRealmsExpirationLabel"] = "#item_realms_expiration_label";
|
|
391
|
+
BindingName2["CsbExpirationBannerVisible"] = "#csb_expiration_banner_visible";
|
|
392
|
+
BindingName2["CsbBuyPanelVisible"] = "#csb_buy_panel_visible";
|
|
393
|
+
BindingName2["CsbPriceText"] = "#csb_price_text";
|
|
394
|
+
BindingName2["CsbPlatformMismatch"] = "#csb_platform_mismatch";
|
|
395
|
+
BindingName2["CsbLeftPrice"] = "#csb_left_price";
|
|
396
|
+
BindingName2["CsbRightPrice"] = "#csb_right_price";
|
|
397
|
+
BindingName2["PageLoadingVisible"] = "#page_loading_visible";
|
|
398
|
+
BindingName2["ViewPacksChevron"] = "#view_packs_chevron";
|
|
399
|
+
BindingName2["FaqPriceText"] = "#faq_price_text";
|
|
400
|
+
BindingName2["CsbOneMonthFreeTrialVisible"] = "#csb_one_month_free_trial_visible";
|
|
401
|
+
BindingName2["FreeTrialHeaderText"] = "#free_trial_header_text";
|
|
402
|
+
BindingName2["LandingInfoText"] = "#landing_info_text";
|
|
403
|
+
BindingName2["SubscriptionInfoText"] = "#subscription_info_text";
|
|
404
|
+
BindingName2["LandingInfoLine4"] = "#landing_info_line_4";
|
|
405
|
+
BindingName2["TemplatesGridDimension"] = "#templates_grid_dimension";
|
|
406
|
+
BindingName2["ScreenshotTexture"] = "#screenshot_texture";
|
|
407
|
+
BindingName2["ScreenshotZipFolder"] = "#screenshot_zip_folder";
|
|
408
|
+
BindingName2["ScreenshotFileSystem"] = "#screenshot_file_system";
|
|
409
|
+
BindingName2["ZipFolder"] = "#zip_folder";
|
|
410
|
+
BindingName2["TemplateName"] = "#template_name";
|
|
411
|
+
BindingName2["DownloadTextVisible"] = "#download_text_visible";
|
|
412
|
+
BindingName2["TemplateVersion"] = "#template_version";
|
|
413
|
+
BindingName2["ConvertedWorldPreviewName"] = "#converted_world_preview_name";
|
|
414
|
+
BindingName2["ConvertedWorldPreviewDate"] = "#converted_world_preview_date";
|
|
415
|
+
BindingName2["ConvertedWorldPreviewDateVisible"] = "#converted_world_preview_date_visible";
|
|
416
|
+
BindingName2["ConvertedWorldPreviewGameMode"] = "#converted_world_preview_game_mode";
|
|
417
|
+
BindingName2["ConvertedWorldPreviewFileSize"] = "#converted_world_preview_file_size";
|
|
418
|
+
BindingName2["ConvertedWorldPreviewImage"] = "#converted_world_preview_image";
|
|
419
|
+
BindingName2["ConvertedWorldPreviewTextureSource"] = "#converted_world_preview_texture_source";
|
|
420
|
+
BindingName2["Playername"] = "#playername";
|
|
421
|
+
BindingName2["XPadding"] = "#x_padding";
|
|
422
|
+
BindingName2["HasPreviousSkin"] = "#has_previous_skin";
|
|
423
|
+
BindingName2["SkinRotation"] = "#skin_rotation";
|
|
424
|
+
BindingName2["IsSkinRetrievalFinished"] = "#is_skin_retrieval_finished";
|
|
425
|
+
BindingName2["LegacySkin"] = "#legacy_skin";
|
|
426
|
+
BindingName2["NoNetworkMessageVisible"] = "#no_network_message_visible";
|
|
427
|
+
BindingName2["LegacyWorldItemGridDimension"] = "#legacy_world_item_grid_dimension";
|
|
428
|
+
BindingName2["LoadingLegacyWorldsGridVisible"] = "#loading_legacy_worlds_grid_visible";
|
|
429
|
+
BindingName2["NextButtonText"] = "#next_button_text";
|
|
430
|
+
BindingName2["NextButtonEnabled"] = "#next_button_enabled";
|
|
431
|
+
BindingName2["ShowNextButton"] = "#show_next_button";
|
|
432
|
+
BindingName2["CurrentDayOneTabIndex"] = "#current_day_one_tab_index";
|
|
433
|
+
BindingName2["DeathReasonText"] = "#death_reason_text";
|
|
434
|
+
BindingName2["RespawnEnabled"] = "#respawn_enabled";
|
|
435
|
+
BindingName2["RespawnVisible"] = "#respawn_visible";
|
|
436
|
+
BindingName2["QuitEnabled"] = "#quit_enabled";
|
|
437
|
+
BindingName2["QuitVisible"] = "#quit_visible";
|
|
438
|
+
BindingName2["ButtonsAndDeathmessageVisible"] = "#buttons_and_deathmessage_visible";
|
|
439
|
+
BindingName2["LoadingMessageVisible"] = "#loading_message_visible";
|
|
440
|
+
BindingName2["AccessScreenVisible"] = "#access_screen_visible";
|
|
441
|
+
BindingName2["KeyboardHelperVisible"] = "#keyboard_helper_visible";
|
|
442
|
+
BindingName2["DisconnectText"] = "#disconnect_text";
|
|
443
|
+
BindingName2["TtsDialogTitle"] = "#tts_dialog_title";
|
|
444
|
+
BindingName2["OpenUriButtonVisible"] = "#open_uri_button_visible";
|
|
445
|
+
BindingName2["ErrorCountMessage"] = "#error_count_message";
|
|
446
|
+
BindingName2["CopyButtonFocusOverrideUp"] = "#copy_button_focus_override_up";
|
|
447
|
+
BindingName2["ErrorContent"] = "#error_content";
|
|
448
|
+
BindingName2["ErrorFocusId"] = "#error_focus_id";
|
|
449
|
+
BindingName2["ErrorFocusOverrideUp"] = "#error_focus_override_up";
|
|
450
|
+
BindingName2["ErrorFocusOverrideDown"] = "#error_focus_override_down";
|
|
451
|
+
BindingName2["ErrorMessage"] = "#error_message";
|
|
452
|
+
BindingName2["ErrorExpandLabel"] = "#error_expand_label";
|
|
453
|
+
BindingName2["ServiceBodyText"] = "#service_body_text";
|
|
454
|
+
BindingName2["ServiceButtonText"] = "#service_button_text";
|
|
455
|
+
BindingName2["ServiceButtonVisible"] = "#service_button_visible";
|
|
456
|
+
BindingName2["ButtonCount"] = "#button_count";
|
|
457
|
+
BindingName2["ServiceTitleText"] = "#service_title_text";
|
|
458
|
+
BindingName2["Category"] = "#category";
|
|
459
|
+
BindingName2["EmoteScreenInstructions"] = "#emote_screen_instructions";
|
|
460
|
+
BindingName2["IsUsingGamepadOverride"] = "#is_using_gamepad_override";
|
|
461
|
+
BindingName2["EmoteScreenExit"] = "#emote_screen_exit";
|
|
462
|
+
BindingName2["IsUsingMouse"] = "#is_using_mouse";
|
|
463
|
+
BindingName2["IsTouchMode"] = "#is_touch_mode";
|
|
464
|
+
BindingName2["DressingRoomButtonVisible"] = "#dressing_room_button_visible";
|
|
465
|
+
BindingName2["EnchantButtons"] = "#enchant_buttons";
|
|
466
|
+
BindingName2["SelectableDustIsVisible"] = "#selectable_dust_is_visible";
|
|
467
|
+
BindingName2["UnselectableDustIsVisible"] = "#unselectable_dust_is_visible";
|
|
468
|
+
BindingName2["Runes"] = "#runes";
|
|
469
|
+
BindingName2["Cost"] = "#cost";
|
|
470
|
+
BindingName2["UnselectableButtonVisibility"] = "#unselectable_button_visibility";
|
|
471
|
+
BindingName2["SelectableButtonVisibility"] = "#selectable_button_visibility";
|
|
472
|
+
BindingName2["Open"] = "#open";
|
|
473
|
+
BindingName2["StartSelected"] = "#start_selected";
|
|
474
|
+
BindingName2["ShowSelectedButtonHighlight"] = "#show_selected_button_highlight";
|
|
475
|
+
BindingName2["ActiveEnchant"] = "#active_enchant";
|
|
476
|
+
BindingName2["InactiveEnchant"] = "#inactive_enchant";
|
|
477
|
+
BindingName2["FilteredLightMultiplier"] = "#filtered_light_multiplier";
|
|
478
|
+
BindingName2["InputItemId"] = "#input_item_id";
|
|
479
|
+
BindingName2["DisabledFilterVisible"] = "#disabled_filter_visible";
|
|
480
|
+
BindingName2["OutputItemId"] = "#output_item_id";
|
|
481
|
+
BindingName2["EnchantHint"] = "#enchant_hint";
|
|
482
|
+
BindingName2["PlayerLevelColor"] = "#player_level_color";
|
|
483
|
+
BindingName2["PlayerLevelInfo"] = "#player_level_info";
|
|
484
|
+
BindingName2["EnchantError"] = "#enchant_error";
|
|
485
|
+
BindingName2["PreProcess_"] = "#pre_process_";
|
|
486
|
+
BindingName2["TouchBeingUsed"] = "#touch_being_used";
|
|
487
|
+
BindingName2["PreviewSkin"] = "#preview_skin";
|
|
488
|
+
BindingName2["GestureDeltaSource"] = "#gesture_delta_source";
|
|
489
|
+
BindingName2["GestureMouseDeltaX"] = "#gesture_mouse_delta_x";
|
|
490
|
+
BindingName2["ShowPreviewSkinLock"] = "#show_preview_skin_lock";
|
|
491
|
+
BindingName2["UndoButtonEnabled"] = "#undo_button_enabled";
|
|
492
|
+
BindingName2["ConfirmSkinButtonEnabled"] = "#confirm_skin_button_enabled";
|
|
493
|
+
BindingName2["DelayRightSideButtonsVisible"] = "#delay_right_side_buttons_visible";
|
|
494
|
+
BindingName2["IsOwned"] = "#is_owned";
|
|
495
|
+
BindingName2["SkinIndex"] = "#skin_index";
|
|
496
|
+
BindingName2["PackName"] = "#pack_name";
|
|
497
|
+
BindingName2["CreatorName"] = "#creator_name";
|
|
498
|
+
BindingName2["SkinLocked"] = "#skin_locked";
|
|
499
|
+
BindingName2["SkinsGridDimensions"] = "#skins_grid_dimensions";
|
|
500
|
+
BindingName2["MaximumGridItems"] = "#maximum_grid_items";
|
|
501
|
+
BindingName2["SkinDefaultFocus"] = "#skin_default_focus";
|
|
502
|
+
BindingName2["DefaultFocusPrecedence"] = "#default_focus_precedence";
|
|
503
|
+
BindingName2["SkinName"] = "#skin_name";
|
|
504
|
+
BindingName2["SelectorAreaFocused"] = "#selector_area_focused";
|
|
505
|
+
BindingName2["ContentAreaFocused"] = "#content_area_focused";
|
|
506
|
+
BindingName2["NoFeedItemVisible"] = "#no_feed_item_visible";
|
|
507
|
+
BindingName2["Hidden"] = "#hidden";
|
|
508
|
+
BindingName2["ProgressPercentage"] = "#progress_percentage";
|
|
509
|
+
BindingName2["ProgressVisible"] = "#progress_visible";
|
|
510
|
+
BindingName2["LabelText"] = "#label_text";
|
|
511
|
+
BindingName2["ProgressTextVisible"] = "#progress_text_visible";
|
|
512
|
+
BindingName2["ProgressSizeLabel"] = "#progress_size_label";
|
|
513
|
+
BindingName2["TotalSizeLabel"] = "#total_size_label";
|
|
514
|
+
BindingName2["MessageTextVisible"] = "#message_text_visible";
|
|
515
|
+
BindingName2["MessageText"] = "#message_text";
|
|
516
|
+
BindingName2["SingleTitleLabel"] = "#single_title_label";
|
|
517
|
+
BindingName2["DualTitleLeftLabel"] = "#dual_title_left_label";
|
|
518
|
+
BindingName2["DualTitleRightLabel"] = "#dual_title_right_label";
|
|
519
|
+
BindingName2["SingleLabelVisible"] = "#single_label_visible";
|
|
520
|
+
BindingName2["DualLabelVisible"] = "#dual_label_visible";
|
|
521
|
+
BindingName2["UploadContentVisible"] = "#upload_content_visible";
|
|
522
|
+
BindingName2["WarningContentVisible"] = "#warning_content_visible";
|
|
523
|
+
BindingName2["PlayButtonVisible"] = "#play_button_visible";
|
|
524
|
+
BindingName2["CancelButtonVisible"] = "#cancel_button_visible";
|
|
525
|
+
BindingName2["WarningButton2Visible"] = "#warning_button2_visible";
|
|
526
|
+
BindingName2["FurnaceArrowRatio"] = "#furnace_arrow_ratio";
|
|
527
|
+
BindingName2["FurnaceFlameRatio"] = "#furnace_flame_ratio";
|
|
528
|
+
BindingName2["OutputName"] = "#output_name";
|
|
529
|
+
BindingName2["AnimationName"] = "#animation_name";
|
|
530
|
+
BindingName2["BundleSelectedItemVisible"] = "#bundle_selected_item_visible";
|
|
531
|
+
BindingName2["BundleItemRendererData"] = "#bundle_item_renderer_data";
|
|
532
|
+
BindingName2["UsingTouch"] = "#using_touch";
|
|
533
|
+
BindingName2["BundleOpenBack"] = "#bundle_open_back";
|
|
534
|
+
BindingName2["BundleOpenFront"] = "#bundle_open_front";
|
|
535
|
+
BindingName2["IsSelectedBundleItemSlot"] = "#is_selected_bundle_item_slot";
|
|
536
|
+
BindingName2["ShowBundleItemSlot"] = "#show_bundle_item_slot";
|
|
537
|
+
BindingName2["MoreHiddenItemsText"] = "#more_hidden_items_text";
|
|
538
|
+
BindingName2["IsHiddenItemsLabel"] = "#is_hidden_items_label";
|
|
539
|
+
BindingName2["SelectedBundleItemText"] = "#selected_bundle_item_text";
|
|
540
|
+
BindingName2["BundleHasSelectedItem"] = "#bundle_has_selected_item";
|
|
541
|
+
BindingName2["BundleName"] = "#bundle_name";
|
|
542
|
+
BindingName2["ShowBundleTooltipPocket"] = "#show_bundle_tooltip_pocket";
|
|
543
|
+
BindingName2["BundleTooltipGridDimensions"] = "#bundle_tooltip_grid_dimensions";
|
|
544
|
+
BindingName2["IsSelectedBundleEmpty"] = "#is_selected_bundle_empty";
|
|
545
|
+
BindingName2["BundleWeightBarRatio"] = "#bundle_weight_bar_ratio";
|
|
546
|
+
BindingName2["IsSelectedBundleFull"] = "#is_selected_bundle_full";
|
|
547
|
+
BindingName2["ShowBundleTooltipHover"] = "#show_bundle_tooltip_hover";
|
|
548
|
+
BindingName2["HeaderText"] = "#header_text";
|
|
549
|
+
BindingName2["EventImage"] = "#event_image";
|
|
550
|
+
BindingName2["ActionButtonText"] = "#action_button_text";
|
|
551
|
+
BindingName2["ActionButtonEnabled"] = "#action_button_enabled";
|
|
552
|
+
BindingName2["InfoButtonText"] = "#info_button_text";
|
|
553
|
+
BindingName2["GatheringIdLabel"] = "#gathering_id_label";
|
|
554
|
+
BindingName2["QrTexture"] = "#qr_texture";
|
|
555
|
+
BindingName2["QrPanelVisible"] = "#qr_panel_visible";
|
|
556
|
+
BindingName2["BodyImage"] = "#body_image";
|
|
557
|
+
BindingName2["QrTitleText"] = "#qr_title_text";
|
|
558
|
+
BindingName2["QrBodyText"] = "#qr_body_text";
|
|
559
|
+
BindingName2["HdrStrengthSliderLabel"] = "#hdr_strength_slider_label";
|
|
560
|
+
BindingName2["HdrStrengthEnabled"] = "#hdr_strength_enabled";
|
|
561
|
+
BindingName2["GammaCalibration"] = "#gamma_calibration";
|
|
562
|
+
BindingName2["GammaCalibrationTextValue"] = "#gamma_calibration_text_value";
|
|
563
|
+
BindingName2["EquipGridDimensions"] = "#equip_grid_dimensions";
|
|
564
|
+
BindingName2["InvGridDimensions"] = "#inv_grid_dimensions";
|
|
565
|
+
BindingName2["HasSaddleSlot"] = "#has_saddle_slot";
|
|
566
|
+
BindingName2["HasOnlyArmorSlot"] = "#has_only_armor_slot";
|
|
567
|
+
BindingName2["HasOnlyCarpetSlot"] = "#has_only_carpet_slot";
|
|
568
|
+
BindingName2["HasArmorAndSaddleSlot"] = "#has_armor_and_saddle_slot";
|
|
569
|
+
BindingName2["HasCarpetAndSaddleSlot"] = "#has_carpet_and_saddle_slot";
|
|
570
|
+
BindingName2["EntityId"] = "#entity_id";
|
|
571
|
+
BindingName2["IsCamel"] = "#is_camel";
|
|
572
|
+
BindingName2["SadleSlotCentered"] = "#sadle_slot_centered";
|
|
573
|
+
BindingName2["HasArmorSlot"] = "#has_armor_slot";
|
|
574
|
+
BindingName2["RendererTabToggle"] = "#renderer_tab_toggle";
|
|
575
|
+
BindingName2["ChestTabToggle"] = "#chest_tab_toggle";
|
|
576
|
+
BindingName2["IsChested"] = "#is_chested";
|
|
577
|
+
BindingName2["PanelTitle"] = "#panel_title";
|
|
578
|
+
BindingName2["SplitscreenEnabled"] = "#splitscreen_enabled";
|
|
579
|
+
BindingName2["GamepadBeingUsed"] = "#gamepad_being_used";
|
|
580
|
+
BindingName2["RiftControllerBeingUsed"] = "#rift_controller_being_used";
|
|
581
|
+
BindingName2["WindowsmrControllerBeingUsed"] = "#windowsmr_controller_being_used";
|
|
582
|
+
BindingName2["VrControlsBeingUsed"] = "#vr_controls_being_used";
|
|
583
|
+
BindingName2["TouchJoystickTapBeingUsed"] = "#touch_joystick_tap_being_used";
|
|
584
|
+
BindingName2["TouchClassicDpadBeingUsed"] = "#touch_classic_dpad_being_used";
|
|
585
|
+
BindingName2["TouchJoystickCrosshairBeingUsed"] = "#touch_joystick_crosshair_being_used";
|
|
586
|
+
BindingName2["TouchNotBeingUsed"] = "#touch_not_being_used";
|
|
587
|
+
BindingName2["SectionTitle"] = "#section_title";
|
|
588
|
+
BindingName2["ShouldShowSubscriptionTab"] = "#should_show_subscription_tab";
|
|
589
|
+
BindingName2["PaperDollVisible"] = "#paper_doll_visible";
|
|
590
|
+
BindingName2["HotbarVisible"] = "#hotbar_visible";
|
|
591
|
+
BindingName2["ShowSurvivalUi"] = "#show_survival_ui";
|
|
592
|
+
BindingName2["IsArmorVisible"] = "#is_armor_visible";
|
|
593
|
+
BindingName2["HotbarWithXpBar"] = "#hotbar_with_xp_bar";
|
|
594
|
+
BindingName2["HotbarNoXpBar"] = "#hotbar_no_xp_bar";
|
|
595
|
+
BindingName2["AnchoredOffsetValueY"] = "#anchored_offset_value_y";
|
|
596
|
+
BindingName2["SizeBindingX"] = "#size_binding_x";
|
|
597
|
+
BindingName2["SizeBindingY"] = "#size_binding_y";
|
|
598
|
+
BindingName2["ExpBarAndTextOffsetY"] = "#exp_bar_and_text_offset_y";
|
|
599
|
+
BindingName2["ExpBarSizeX"] = "#exp_bar_size_x";
|
|
600
|
+
BindingName2["ExpBarSizeY"] = "#exp_bar_size_y";
|
|
601
|
+
BindingName2["ExpProgress"] = "#exp_progress";
|
|
602
|
+
BindingName2["LevelNumber"] = "#level_number";
|
|
603
|
+
BindingName2["LevelNumberVisible"] = "#level_number_visible";
|
|
604
|
+
BindingName2["InventoryTouchButton"] = "#inventory_touch_button";
|
|
605
|
+
BindingName2["SlotSelected"] = "#slot_selected";
|
|
606
|
+
BindingName2["PlayerPositionText"] = "#player_position_text";
|
|
607
|
+
BindingName2["PlayerPositionVisible"] = "#player_position_visible";
|
|
608
|
+
BindingName2["NumberOfDaysPlayedText"] = "#number_of_days_played_text";
|
|
609
|
+
BindingName2["NumberOfDaysPlayedVisible"] = "#number_of_days_played_visible";
|
|
610
|
+
BindingName2["ChatText"] = "#chat_text";
|
|
611
|
+
BindingName2["OnNewDeathScreen"] = "#on_new_death_screen";
|
|
612
|
+
BindingName2["StackCountVisible"] = "#stack_count_visible";
|
|
613
|
+
BindingName2["HudVisibleCenteredGuiElements"] = "#hud_visible_centered_gui_elements";
|
|
614
|
+
BindingName2["CreativeHorseHearts"] = "#creative_horse_hearts";
|
|
615
|
+
BindingName2["SurvivalHorseHearts"] = "#survival_horse_hearts";
|
|
616
|
+
BindingName2["IsNotRidingBubbles"] = "#is_not_riding_bubbles";
|
|
617
|
+
BindingName2["IsRidingBubbles"] = "#is_riding_bubbles";
|
|
618
|
+
BindingName2["HudVisibleCentered"] = "#hud_visible_centered";
|
|
619
|
+
BindingName2["HudVisibleCenteredTouch"] = "#hud_visible_centered_touch";
|
|
620
|
+
BindingName2["HorseHeartsTouch"] = "#horse_hearts_touch";
|
|
621
|
+
BindingName2["HudVisibleNotCentered"] = "#hud_visible_not_centered";
|
|
622
|
+
BindingName2["HotbarElipsesRightVisible"] = "#hotbar_elipses_right_visible";
|
|
623
|
+
BindingName2["HotbarElipsesLeftVisible"] = "#hotbar_elipses_left_visible";
|
|
624
|
+
BindingName2["AnchoredOffsetValueX"] = "#anchored_offset_value_x";
|
|
625
|
+
BindingName2["HotbarOffsetX"] = "#hotbar_offset_x";
|
|
626
|
+
BindingName2["HotbarOffsetY"] = "#hotbar_offset_y";
|
|
627
|
+
BindingName2["HotbarSizeX"] = "#hotbar_size_x";
|
|
628
|
+
BindingName2["HotbarSizeY"] = "#hotbar_size_y";
|
|
629
|
+
BindingName2["HotbarGridDimensions"] = "#hotbar_grid_dimensions";
|
|
630
|
+
BindingName2["ItemText"] = "#item_text";
|
|
631
|
+
BindingName2["InteractVisible"] = "#interact_visible";
|
|
632
|
+
BindingName2["ItemNameTextOffset"] = "#item_name_text_offset";
|
|
633
|
+
BindingName2["Offset"] = "#offset";
|
|
634
|
+
BindingName2["JukeboxText"] = "#jukebox_text";
|
|
635
|
+
BindingName2["TipText"] = "#tip_text";
|
|
636
|
+
BindingName2["HudTitleTextString"] = "#hud_title_text_string";
|
|
637
|
+
BindingName2["HudSubtitleTextString"] = "#hud_subtitle_text_string";
|
|
638
|
+
BindingName2["BossName"] = "#bossName";
|
|
639
|
+
BindingName2["HelperDescription"] = "#helper_description";
|
|
640
|
+
BindingName2["IsGamepadTip"] = "#is_gamepad_tip";
|
|
641
|
+
BindingName2["TooltipVisible"] = "#tooltip_visible";
|
|
642
|
+
BindingName2["GamepadButtonIcon"] = "#gamepad_button_icon";
|
|
643
|
+
BindingName2["GamepadPostfixText"] = "#gamepad_postfix_text";
|
|
644
|
+
BindingName2["IsMouseButton"] = "#is_mouse_button";
|
|
645
|
+
BindingName2["KeyboardKeyText"] = "#keyboard_key_text";
|
|
646
|
+
BindingName2["LeftHelperCount"] = "#left_helper_count";
|
|
647
|
+
BindingName2["LeftTipsVisible"] = "#left_tips_visible";
|
|
648
|
+
BindingName2["LeftTipBackground"] = "#left_tip_background";
|
|
649
|
+
BindingName2["EmoteTipsVisible"] = "#emote_tips_visible";
|
|
650
|
+
BindingName2["ButtonEmote0Description"] = "#button_emote_0_description";
|
|
651
|
+
BindingName2["ButtonEmote1Description"] = "#button_emote_1_description";
|
|
652
|
+
BindingName2["ButtonEmote2Description"] = "#button_emote_2_description";
|
|
653
|
+
BindingName2["ButtonEmote3Description"] = "#button_emote_3_description";
|
|
654
|
+
BindingName2["RightHelperCount"] = "#right_helper_count";
|
|
655
|
+
BindingName2["BarVisible"] = "#bar_visible";
|
|
656
|
+
BindingName2["BossGridDimension"] = "#boss_grid_dimension";
|
|
657
|
+
BindingName2["ResetModalVisible"] = "#reset_modal_visible";
|
|
658
|
+
BindingName2["CloseWithoutSavingModalVisible"] = "#close_without_saving_modal_visible";
|
|
659
|
+
BindingName2["HintDragVisible"] = "#hint_drag_visible";
|
|
660
|
+
BindingName2["LayoutCustomizationHintOffsetY"] = "#layout_customization_hint_offset_y";
|
|
661
|
+
BindingName2["HintDeselectVisible"] = "#hint_deselect_visible";
|
|
662
|
+
BindingName2["HintSavedVisible"] = "#hint_saved_visible";
|
|
663
|
+
BindingName2["HudVisibleCenteredRidingvr"] = "#hud_visible_centered_ridingvr";
|
|
664
|
+
BindingName2["Gamertag"] = "#gamertag";
|
|
665
|
+
BindingName2["HotbarVisibleNotCentered"] = "#hotbar_visible_not_centered";
|
|
666
|
+
BindingName2["HotbarVisibleNotCenteredResizable"] = "#hotbar_visible_not_centered_resizable";
|
|
667
|
+
BindingName2["StatusEffectsVisible"] = "#status_effects_visible";
|
|
668
|
+
BindingName2["IsEditorModePastePreviewVisible"] = "#is_editor_mode_paste_preview_visible";
|
|
669
|
+
BindingName2["ScoreboardSidebarVisible"] = "#scoreboard_sidebar_visible";
|
|
670
|
+
BindingName2["PaperDollVisibleLivingRoom"] = "#paper_doll_visible_living_room";
|
|
671
|
+
BindingName2["VrRiding"] = "#vr_riding";
|
|
672
|
+
BindingName2["VrNonRiding"] = "#vr_non_riding";
|
|
673
|
+
BindingName2["BossHudPadding"] = "#boss_hud_padding";
|
|
674
|
+
BindingName2["BossHudTouchPadding"] = "#boss_hud_touch_padding";
|
|
675
|
+
BindingName2["HudVisible"] = "#hud_visible";
|
|
676
|
+
BindingName2["HudAlpha"] = "#hud_alpha";
|
|
677
|
+
BindingName2["Alpha"] = "#alpha";
|
|
678
|
+
BindingName2["HudPropagateAlpha"] = "#hud_propagate_alpha";
|
|
679
|
+
BindingName2["PropagateAlpha"] = "#propagateAlpha";
|
|
680
|
+
BindingName2["WysiwygResetButtonEnabled"] = "#wysiwyg_reset_button_enabled";
|
|
681
|
+
BindingName2["WysiwygNoControlSelected"] = "#wysiwyg_no_control_selected";
|
|
682
|
+
BindingName2["WysiwygControlSelected"] = "#wysiwyg_control_selected";
|
|
683
|
+
BindingName2["LayoutCustomizationMainPanelOffsetY"] = "#layout_customization_main_panel_offset_y";
|
|
684
|
+
BindingName2["LayoutCustomizationMainPanelSizeX"] = "#layout_customization_main_panel_size_x";
|
|
685
|
+
BindingName2["LayoutCustomizationMainPanelSizeY"] = "#layout_customization_main_panel_size_y";
|
|
686
|
+
BindingName2["LayoutCustomizationMainPanelVisible"] = "#layout_customization_main_panel_visible";
|
|
687
|
+
BindingName2["ScaleOptionSliderLabel"] = "#scale_option_slider_label";
|
|
688
|
+
BindingName2["ScaleOption"] = "#scale_option";
|
|
689
|
+
BindingName2["ScaleOptionTextValue"] = "#scale_option_text_value";
|
|
690
|
+
BindingName2["ScaleOptionEnabled"] = "#scale_option_enabled";
|
|
691
|
+
BindingName2["ScaleOptionVisible"] = "#scale_option_visible";
|
|
692
|
+
BindingName2["OpacityOptionSliderLabel"] = "#opacity_option_slider_label";
|
|
693
|
+
BindingName2["OpacityOption"] = "#opacity_option";
|
|
694
|
+
BindingName2["OpacityOptionTextValue"] = "#opacity_option_text_value";
|
|
695
|
+
BindingName2["OpacityOptionEnabled"] = "#opacity_option_enabled";
|
|
696
|
+
BindingName2["OpacityOptionVisible"] = "#opacity_option_visible";
|
|
697
|
+
BindingName2["ApplyToAllSelected"] = "#apply_to_all_selected";
|
|
698
|
+
BindingName2["ApplyToAllOptionVisible"] = "#apply_to_all_option_visible";
|
|
699
|
+
BindingName2["LayoutCustomizationOptionSizeY"] = "#layout_customization_option_size_y";
|
|
700
|
+
BindingName2["LayoutCustomizationDimension"] = "#layout_customization_dimension";
|
|
701
|
+
BindingName2["LayoutCustomizationSubPanelOffsetY"] = "#layout_customization_sub_panel_offset_y";
|
|
702
|
+
BindingName2["LayoutCustomizationSubPanelSizeX"] = "#layout_customization_sub_panel_size_x";
|
|
703
|
+
BindingName2["LayoutCustomizationSubPanelSizeY"] = "#layout_customization_sub_panel_size_y";
|
|
704
|
+
BindingName2["LayoutCustomizationSubPanelVisible"] = "#layout_customization_sub_panel_visible";
|
|
705
|
+
BindingName2["ButtonGlyphVisible"] = "#button_glyph_visible";
|
|
706
|
+
BindingName2["CheatsOn"] = "#cheats_on";
|
|
707
|
+
BindingName2["HostMainButtonFocusOverrideUp"] = "#host_main_button_focus_override_up";
|
|
708
|
+
BindingName2["HostMainButtonFocusOverrideDown"] = "#host_main_button_focus_override_down";
|
|
709
|
+
BindingName2["ButtonText"] = "#button_text";
|
|
710
|
+
BindingName2["SubCommand"] = "#sub_command";
|
|
711
|
+
BindingName2["PlayersGridDimension"] = "#players_grid_dimension";
|
|
712
|
+
BindingName2["ToggleSelected"] = "#toggle_selected";
|
|
713
|
+
BindingName2["HostTeleportVisible"] = "#host_teleport_visible";
|
|
714
|
+
BindingName2["TeleName"] = "#tele_name";
|
|
715
|
+
BindingName2["ButtonNavigation"] = "#button_navigation";
|
|
716
|
+
BindingName2["HostTeleportMainVisible"] = "#host_teleport_main_visible";
|
|
717
|
+
BindingName2["HostTeleportGridDimension"] = "#host_teleport_grid_dimension";
|
|
718
|
+
BindingName2["HostTeleportPlayersVisible"] = "#host_teleport_players_visible";
|
|
719
|
+
BindingName2["HostTimeVisible"] = "#host_time_visible";
|
|
720
|
+
BindingName2["HostTimeGridDimension"] = "#host_time_grid_dimension";
|
|
721
|
+
BindingName2["HostWeatherVisible"] = "#host_weather_visible";
|
|
722
|
+
BindingName2["HostWeatherGridDimension"] = "#host_weather_grid_dimension";
|
|
723
|
+
BindingName2["HostOptionFocusId"] = "#host_option_focus_id";
|
|
724
|
+
BindingName2["HostOptionFocusOverrideLeft"] = "#host_option_focus_override_left";
|
|
725
|
+
BindingName2["FocusChangeLeft"] = "#focus_change_left";
|
|
726
|
+
BindingName2["HostOptionFocusOverrideRight"] = "#host_option_focus_override_right";
|
|
727
|
+
BindingName2["HostOptionFocusOverrideUp"] = "#host_option_focus_override_up";
|
|
728
|
+
BindingName2["HostOptionFocusOverrideDown"] = "#host_option_focus_override_down";
|
|
729
|
+
BindingName2["HostMainGridDimension"] = "#host_main_grid_dimension";
|
|
730
|
+
BindingName2["HostMainVisible"] = "#host_main_visible";
|
|
731
|
+
BindingName2["WakeUpLabelPanel"] = "#wake_up_label_panel";
|
|
732
|
+
BindingName2["PackTitle"] = "#pack_title";
|
|
733
|
+
BindingName2["PackContentsDescription"] = "#pack_contents_description";
|
|
734
|
+
BindingName2["AuthorLabel"] = "#author_label";
|
|
735
|
+
BindingName2["PackDescription"] = "#pack_description";
|
|
736
|
+
BindingName2["WebviewUpdate"] = "#webview_update";
|
|
737
|
+
BindingName2["ImmersiveReaderRunning"] = "#immersive_reader_running";
|
|
738
|
+
BindingName2["ImmersiveReaderLoading"] = "#immersive_reader_loading";
|
|
739
|
+
BindingName2["CanRetry"] = "#can_retry";
|
|
740
|
+
BindingName2["ErrorText"] = "#error_text";
|
|
741
|
+
BindingName2["ImmersiveReaderError"] = "#immersive_reader_error";
|
|
742
|
+
BindingName2["GamepadHelperXVisible"] = "#gamepad_helper_x_visible";
|
|
743
|
+
BindingName2["GamepadHelperYVisible"] = "#gamepad_helper_y_visible";
|
|
744
|
+
BindingName2["GamepadHelperAVisible"] = "#gamepad_helper_a_visible";
|
|
745
|
+
BindingName2["GamepadHelperLsVisible"] = "#gamepad_helper_ls_visible";
|
|
746
|
+
BindingName2["GamepadHelperRsVisible"] = "#gamepad_helper_rs_visible";
|
|
747
|
+
BindingName2["IsLeftTabSearch"] = "#is_left_tab_search";
|
|
748
|
+
BindingName2["IsLeftTabConstruct"] = "#is_left_tab_construct";
|
|
749
|
+
BindingName2["IsLeftTabEquipment"] = "#is_left_tab_equipment";
|
|
750
|
+
BindingName2["IsLeftTabNature"] = "#is_left_tab_nature";
|
|
751
|
+
BindingName2["IsLeftTabItems"] = "#is_left_tab_items";
|
|
752
|
+
BindingName2["IsCreativeAndRecipeBookLayout"] = "#is_creative_and_recipe_book_layout";
|
|
753
|
+
BindingName2["IsCreativeAndCreativeLayout"] = "#is_creative_and_creative_layout";
|
|
754
|
+
BindingName2["IsCreativeMode"] = "#is_creative_mode";
|
|
755
|
+
BindingName2["EmptyArmorImageVisible"] = "#empty_armor_image_visible";
|
|
756
|
+
BindingName2["EmptyOffhandImageVisible"] = "#empty_offhand_image_visible";
|
|
757
|
+
BindingName2["LookAtCursor"] = "#look_at_cursor";
|
|
758
|
+
BindingName2["CraftingLabelText"] = "#crafting_label_text";
|
|
759
|
+
BindingName2["NeedsCraftingTable"] = "#needs_crafting_table";
|
|
760
|
+
BindingName2["ContainerItemBackgroundTexture"] = "#container_item_background_texture";
|
|
761
|
+
BindingName2["ContainerItemBackground"] = "#container_item_background";
|
|
762
|
+
BindingName2["ContainerItemModifier"] = "#container_item_modifier";
|
|
763
|
+
BindingName2["IsCreativeSelectedSlot"] = "#is_creative_selected_slot";
|
|
764
|
+
BindingName2["RecipeCraftableCount"] = "#recipe_craftable_count";
|
|
765
|
+
BindingName2["RecipeHoverText"] = "#recipe_hover_text";
|
|
766
|
+
BindingName2["RecipeBookTotalItems"] = "#recipe_book_total_items";
|
|
767
|
+
BindingName2["TabLabelText"] = "#tab_label_text";
|
|
768
|
+
BindingName2["FilteringEnabled"] = "#filtering_enabled";
|
|
769
|
+
BindingName2["IsCreativeLayout"] = "#is_creative_layout";
|
|
770
|
+
BindingName2["IsRecipeBookLayout"] = "#is_recipe_book_layout";
|
|
771
|
+
BindingName2["IsSurvivalLayout"] = "#is_survival_layout";
|
|
772
|
+
BindingName2["CreativeLayoutButtonVisible"] = "#creative_layout_button_visible";
|
|
773
|
+
BindingName2["CloseButtonVisible"] = "#close_button_visible";
|
|
774
|
+
BindingName2["RecipeItemName"] = "#recipe_item_name";
|
|
775
|
+
BindingName2["UseHeartOffset"] = "#use_heart_offset";
|
|
776
|
+
BindingName2["PocketRightPaneVisible"] = "#pocket_right_pane_visible";
|
|
777
|
+
BindingName2["IsLoading"] = "#is_loading";
|
|
778
|
+
BindingName2["ProfileImageOptions"] = "#profile_image_options";
|
|
779
|
+
BindingName2["ThirdPartyProfilePic"] = "#third_party_profile_pic";
|
|
780
|
+
BindingName2["ThirdPartyProfilePicFileSystem"] = "#third_party_profile_pic_file_system";
|
|
781
|
+
BindingName2["OnlineVisible"] = "#online_visible";
|
|
782
|
+
BindingName2["OfflineVisible"] = "#offline_visible";
|
|
783
|
+
BindingName2["XblGamertag"] = "#xbl_gamertag";
|
|
784
|
+
BindingName2["CurrentGameLabel"] = "#current_game_label";
|
|
785
|
+
BindingName2["ThirdPartyTag"] = "#third_party_tag";
|
|
786
|
+
BindingName2["ToggleInviteState"] = "#toggle_invite_state";
|
|
787
|
+
BindingName2["FriendButtonFocusOverrideUp"] = "#friend_button_focus_override_up";
|
|
788
|
+
BindingName2["FriendButtonFocusOverrideDown"] = "#friend_button_focus_override_down";
|
|
789
|
+
BindingName2["CrossPlatformEnabled"] = "#cross_platform_enabled";
|
|
790
|
+
BindingName2["OnlineXboxLiveFriendGridDimension"] = "#online_xbox_live_friend_grid_dimension";
|
|
791
|
+
BindingName2["OfflineXboxLiveFriendGridDimension"] = "#offline_xbox_live_friend_grid_dimension";
|
|
792
|
+
BindingName2["OnlinePlatformFriendGridDimension"] = "#online_platform_friend_grid_dimension";
|
|
793
|
+
BindingName2["OfflinePlatformFriendGridDimension"] = "#offline_platform_friend_grid_dimension";
|
|
794
|
+
BindingName2["OnlineLinkedAccountFriendGridDimension"] = "#online_linked_account_friend_grid_dimension";
|
|
795
|
+
BindingName2["OfflineLinkedAccountFriendGridDimension"] = "#offline_linked_account_friend_grid_dimension";
|
|
796
|
+
BindingName2["PreviousButtonEnabled"] = "#previous_button_enabled";
|
|
797
|
+
BindingName2["PageCounterLabel"] = "#page_counter_label";
|
|
798
|
+
BindingName2["FriendsPaginationVisible"] = "#friends_pagination_visible";
|
|
799
|
+
BindingName2["OnlinePlatformFriendsVisible"] = "#online_platform_friends_visible";
|
|
800
|
+
BindingName2["OnlineXboxLiveFriendsVisible"] = "#online_xbox_live_friends_visible";
|
|
801
|
+
BindingName2["OnlineLinkedAccountFriendsVisible"] = "#online_linked_account_friends_visible";
|
|
802
|
+
BindingName2["OfflinePlatformFriendsVisible"] = "#offline_platform_friends_visible";
|
|
803
|
+
BindingName2["NoPlatformFriendsVisible"] = "#no_platform_friends_visible";
|
|
804
|
+
BindingName2["OfflineXboxLiveFriendsVisible"] = "#offline_xbox_live_friends_visible";
|
|
805
|
+
BindingName2["OfflineLinkedAccountFriendsVisible"] = "#offline_linked_account_friends_visible";
|
|
806
|
+
BindingName2["NoXboxLiveFriendsVisible"] = "#no_xbox_live_friends_visible";
|
|
807
|
+
BindingName2["NoXboxLiveFriendsText"] = "#no_xbox_live_friends_text";
|
|
808
|
+
BindingName2["FindCrossPlatformFriendsEnabled"] = "#find_cross_platform_friends_enabled";
|
|
809
|
+
BindingName2["SendButton"] = "#send_button";
|
|
810
|
+
BindingName2["TargetPoolTextBoxValue"] = "#target_pool_text_box_value";
|
|
811
|
+
BindingName2["NameTextBoxValue"] = "#name_text_box_value";
|
|
812
|
+
BindingName2["TargetTextBoxValue"] = "#target_text_box_value";
|
|
813
|
+
BindingName2["FinalBlockTextBoxValue"] = "#final_block_text_box_value";
|
|
814
|
+
BindingName2["JointTypeToggleState"] = "#joint_type_toggle_state";
|
|
815
|
+
BindingName2["JointTypeEnabled"] = "#joint_type_enabled";
|
|
816
|
+
BindingName2["JointTypeToggleText"] = "#joint_type_toggle_text";
|
|
817
|
+
BindingName2["JointTypeDisabled"] = "#joint_type_disabled";
|
|
818
|
+
BindingName2["SelectionPriorityTextBoxValue"] = "#selection_priority_text_box_value";
|
|
819
|
+
BindingName2["PlacementPriorityTextBoxValue"] = "#placement_priority_text_box_value";
|
|
820
|
+
BindingName2["AnimatingText"] = "#animating_text";
|
|
821
|
+
BindingName2["AnimatingTextVisible"] = "#animating_text_visible";
|
|
822
|
+
BindingName2["ShowInGamePrompt"] = "#show_in_game_prompt";
|
|
823
|
+
BindingName2["ShowFetchError"] = "#show_fetch_error";
|
|
824
|
+
BindingName2["Welcome"] = "#welcome";
|
|
825
|
+
BindingName2["PatternCellBackgroundTexture"] = "#pattern_cell_background_texture";
|
|
826
|
+
BindingName2["ContainerCellBackgroundTexture"] = "#container_cell_background_texture";
|
|
827
|
+
BindingName2["EmptyImageVisible"] = "#empty_image_visible";
|
|
828
|
+
BindingName2["PatternSelectorTotalItems"] = "#pattern_selector_total_items";
|
|
829
|
+
BindingName2["ResultPatterns"] = "#result_patterns";
|
|
830
|
+
BindingName2["ResultColors"] = "#result_colors";
|
|
831
|
+
BindingName2["IsRightTabLoom"] = "#is_right_tab_loom";
|
|
832
|
+
BindingName2["IsLeftTabPatterns"] = "#is_left_tab_patterns";
|
|
833
|
+
BindingName2["ManageFeedButtonsVisible"] = "#manage_feed_buttons_visible";
|
|
834
|
+
BindingName2["ManageFeedPageIndexText"] = "#manage_feed_page_index_text";
|
|
835
|
+
BindingName2["ManageFeedPrevButtonVisible"] = "#manage_feed_prevButton_visible";
|
|
836
|
+
BindingName2["ManageFeedNextButtonVisible"] = "#manage_feed_nextButton_visible";
|
|
837
|
+
BindingName2["ManageFeedGridDimension"] = "#manage_feed_grid_dimension";
|
|
838
|
+
BindingName2["ManageContent"] = "#manage_content";
|
|
839
|
+
BindingName2["ManageFeedTextVisible"] = "#manage_feed_text_visible";
|
|
840
|
+
BindingName2["TimeSinceManageFeedPost"] = "#time_since_manage_feed_post";
|
|
841
|
+
BindingName2["Nrreports"] = "#nrreports";
|
|
842
|
+
BindingName2["ManageGamertag"] = "#manage_gamertag";
|
|
843
|
+
BindingName2["LoadingBarsAnimationVisible"] = "#loading_bars_animation_visible";
|
|
844
|
+
BindingName2["ManageFeedTexture"] = "#manage_feed_texture";
|
|
845
|
+
BindingName2["ManageFeedTextureSource"] = "#manage_feed_texture_source";
|
|
846
|
+
BindingName2["ManageTextpostContent"] = "#manage_textpost_content";
|
|
847
|
+
BindingName2["ManageTextpostVisible"] = "#manage_textpost_visible";
|
|
848
|
+
BindingName2["ManageProfileImageOptions"] = "#manage_profile_image_options";
|
|
849
|
+
BindingName2["ManageGamerpicVisible"] = "#manage_gamerpic_visible";
|
|
850
|
+
BindingName2["IsDeleting"] = "#is_deleting";
|
|
851
|
+
BindingName2["IsDoneValidating"] = "#is_done_validating";
|
|
852
|
+
BindingName2["IconPath"] = "#icon_path";
|
|
853
|
+
BindingName2["IconZip"] = "#icon_zip";
|
|
854
|
+
BindingName2["IconFileSystem"] = "#icon_file_system";
|
|
855
|
+
BindingName2["PackHeaderTitle"] = "#pack_header_title";
|
|
856
|
+
BindingName2["PackHeaderSize"] = "#pack_header_size";
|
|
857
|
+
BindingName2["PackHeaderSizeVisible"] = "#pack_header_size_visible";
|
|
858
|
+
BindingName2["PackHeaderDescription"] = "#pack_header_description";
|
|
859
|
+
BindingName2["RefreshVisible"] = "#refresh_visible";
|
|
860
|
+
BindingName2["DeleteVisible"] = "#delete_visible";
|
|
861
|
+
BindingName2["PackId"] = "#pack_id";
|
|
862
|
+
BindingName2["PackVersion"] = "#pack_version";
|
|
863
|
+
BindingName2["PackPath"] = "#pack_path";
|
|
864
|
+
BindingName2["ErrorTypeLabel"] = "#error_type_label";
|
|
865
|
+
BindingName2["HasErrorsOrWarnings"] = "#has_errors_or_warnings";
|
|
866
|
+
BindingName2["FileLabel"] = "#file_label";
|
|
867
|
+
BindingName2["FileError"] = "#file_error";
|
|
868
|
+
BindingName2["ErrorContentLabel"] = "#error_content_label";
|
|
869
|
+
BindingName2["IsWorking"] = "#is_working";
|
|
870
|
+
BindingName2["ErrorGridDimensions"] = "#error_grid_dimensions";
|
|
871
|
+
BindingName2["TextAlignment"] = "#text_alignment";
|
|
872
|
+
BindingName2["SdlDropdownRowExpanded"] = "#sdl_dropdown_row_expanded";
|
|
873
|
+
BindingName2["HeaderLabelFromStyle"] = "#header_label_from_style";
|
|
874
|
+
BindingName2["HeaderLabelColor"] = "#header_label_color";
|
|
875
|
+
BindingName2["HeaderLabelFontType"] = "#header_label_font_type";
|
|
876
|
+
BindingName2["HeaderLabelFontScale"] = "#header_label_font_scale";
|
|
877
|
+
BindingName2["HeaderLabelAlignment"] = "#header_label_alignment";
|
|
878
|
+
BindingName2["HeaderLabelId"] = "#header_label_id";
|
|
879
|
+
BindingName2["ImageRowIds"] = "#image_row_ids";
|
|
880
|
+
BindingName2["ScreenshotTextureImageRow"] = "#screenshot_texture_image_row";
|
|
881
|
+
BindingName2["ScreenshotTextureFileSystemImageRow"] = "#screenshot_texture_file_system_image_row";
|
|
882
|
+
BindingName2["3rdBorder"] = "#3rd_border";
|
|
883
|
+
BindingName2["2ndBorder"] = "#2nd_border";
|
|
884
|
+
BindingName2["1stBorder"] = "#1st_border";
|
|
885
|
+
BindingName2["TextRowLabel"] = "#text_row_label";
|
|
886
|
+
BindingName2["TextRowIds"] = "#text_row_ids";
|
|
887
|
+
BindingName2["TextRowFontScale"] = "#text_row_font_scale";
|
|
888
|
+
BindingName2["TextRowFontType"] = "#text_row_font_type";
|
|
889
|
+
BindingName2["TextRowTextColor"] = "#text_row_text_color";
|
|
890
|
+
BindingName2["TextRowAlignment"] = "#text_row_alignment";
|
|
891
|
+
BindingName2["TextRowShowBackground"] = "#text_row_show_background";
|
|
892
|
+
BindingName2["TextRowHighlightVisible"] = "#text_row_highlight_visible";
|
|
893
|
+
BindingName2["TextRowHighlightColor"] = "#text_row_highlight_color";
|
|
894
|
+
BindingName2["MobEffectName"] = "#mob_effect_name";
|
|
895
|
+
BindingName2["MobEffectTimer"] = "#mob_effect_timer";
|
|
896
|
+
BindingName2["MobEffectGridSize"] = "#mob_effect_grid_size";
|
|
897
|
+
BindingName2["ModalTitleText"] = "#modal_title_text";
|
|
898
|
+
BindingName2["ModalLabelText"] = "#modal_label_text";
|
|
899
|
+
BindingName2["ModalLeftButtonText"] = "#modal_left_button_text";
|
|
900
|
+
BindingName2["ModalMiddleButtonText"] = "#modal_middle_button_text";
|
|
901
|
+
BindingName2["ModalRightcancelButtonText"] = "#modal_rightcancel_button_text";
|
|
902
|
+
BindingName2["SkinVisible"] = "#skin_visible";
|
|
903
|
+
BindingName2["CyclePackLeftButtonVisible"] = "#cycle_pack_left_button_visible";
|
|
904
|
+
BindingName2["NameText"] = "#name_text";
|
|
905
|
+
BindingName2["BasicVisible"] = "#basic_visible";
|
|
906
|
+
BindingName2["ActionText"] = "#action_text";
|
|
907
|
+
BindingName2["CommandIdentifier"] = "#command_identifier";
|
|
908
|
+
BindingName2["AddCommandFocusOverrideUp"] = "#add_command_focus_override_up";
|
|
909
|
+
BindingName2["CommandFocusOverrideDown"] = "#command_focus_override_down";
|
|
910
|
+
BindingName2["MaximizedActionText"] = "#maximized_action_text";
|
|
911
|
+
BindingName2["MaximizedPlaceholderText"] = "#maximized_placeholder_text";
|
|
912
|
+
BindingName2["MaximizedEditVisible"] = "#maximized_edit_visible";
|
|
913
|
+
BindingName2["ButtonNameText"] = "#button_name_text";
|
|
914
|
+
BindingName2["ButtonNameEditVisible"] = "#button_name_edit_visible";
|
|
915
|
+
BindingName2["ButtonNameIdentifier"] = "#button_name_identifier";
|
|
916
|
+
BindingName2["ButtonNameFocusOverrideUp"] = "#button_name_focus_override_up";
|
|
917
|
+
BindingName2["ButtonModeIdentifier"] = "#button_mode_identifier";
|
|
918
|
+
BindingName2["ButtonModeFocusOverrideUp"] = "#button_mode_focus_override_up";
|
|
919
|
+
BindingName2["ButtonModeEnabled"] = "#button_mode_enabled";
|
|
920
|
+
BindingName2["OnEnterEnabled"] = "#on_enter_enabled";
|
|
921
|
+
BindingName2["OnExitEnabled"] = "#on_exit_enabled";
|
|
922
|
+
BindingName2["IsUrlAction"] = "#is_url_action";
|
|
923
|
+
BindingName2["ActionErrorStatus"] = "#action_error_status";
|
|
924
|
+
BindingName2["IsCommandAction"] = "#is_command_action";
|
|
925
|
+
BindingName2["CommandsEnabled"] = "#commands_enabled";
|
|
926
|
+
BindingName2["ActionCount"] = "#action_count";
|
|
927
|
+
BindingName2["HelpVisible"] = "#help_visible";
|
|
928
|
+
BindingName2["AddButtonsEnabled"] = "#add_buttons_enabled";
|
|
929
|
+
BindingName2["AdvancedVisible"] = "#advanced_visible";
|
|
930
|
+
BindingName2["StudentModelUpdate"] = "#student_model_update";
|
|
931
|
+
BindingName2["ImReaderButtonVisible"] = "#im_reader_button_visible";
|
|
932
|
+
BindingName2["Dialogtext"] = "#dialogtext";
|
|
933
|
+
BindingName2["PlaceholderDialogText"] = "#placeholder_dialog_text";
|
|
934
|
+
BindingName2["StudentButtonText"] = "#student_button_text";
|
|
935
|
+
BindingName2["IsUrlButton"] = "#is_url_button";
|
|
936
|
+
BindingName2["IsCommandButton"] = "#is_command_button";
|
|
937
|
+
BindingName2["StudentButtonVisible"] = "#student_button_visible";
|
|
938
|
+
BindingName2["StudentButtonGridDimensions"] = "#student_button_grid_dimensions";
|
|
939
|
+
BindingName2["StudentViewVisible"] = "#student_view_visible";
|
|
940
|
+
BindingName2["TeacherViewVisible"] = "#teacher_view_visible";
|
|
941
|
+
BindingName2["OnlineSafetyDoNotShowAgain"] = "#online_safety_do_not_show_again";
|
|
942
|
+
BindingName2["PackSettingsTitle"] = "#pack_settings_title";
|
|
943
|
+
BindingName2["HasContentTiering"] = "#has_content_tiering";
|
|
944
|
+
BindingName2["ContentTierLabel"] = "#content_tier_label";
|
|
945
|
+
BindingName2["ContentTierSupported"] = "#content_tier_supported";
|
|
946
|
+
BindingName2["ContentTierValue"] = "#content_tier_value";
|
|
947
|
+
BindingName2["ContentTierSteps"] = "#content_tier_steps";
|
|
948
|
+
BindingName2["ContentTierSliderTextValue"] = "#content_tier_slider_text_value";
|
|
949
|
+
BindingName2["IncompatibleReason"] = "#incompatible_reason";
|
|
950
|
+
BindingName2["PanoramaTexture"] = "#panorama_texture";
|
|
951
|
+
BindingName2["PanoramaTextureFileSystem"] = "#panorama_texture_file_system";
|
|
952
|
+
BindingName2["PanoramaView"] = "#panorama_view";
|
|
953
|
+
BindingName2["CanScrollLeft"] = "#can_scroll_left";
|
|
954
|
+
BindingName2["CanScrollRight"] = "#can_scroll_right";
|
|
955
|
+
BindingName2["LoadingPatchNotes"] = "#loading_patch_notes";
|
|
956
|
+
BindingName2["MainImageTexture"] = "#main_image_texture";
|
|
957
|
+
BindingName2["MainImageTextureSource"] = "#main_image_texture_source";
|
|
958
|
+
BindingName2["StoreImageTexture"] = "#store_image_texture";
|
|
959
|
+
BindingName2["StoreImageTextureSource"] = "#store_image_texture_source";
|
|
960
|
+
BindingName2["PatchLinkButtonText"] = "#patch_link_button_text";
|
|
961
|
+
BindingName2["TtsOfferName"] = "#tts_offer_name";
|
|
962
|
+
BindingName2["PatchDescription"] = "#patch_description";
|
|
963
|
+
BindingName2["DialogTitle"] = "#dialog_title";
|
|
964
|
+
BindingName2["SunsettingDoNotShowAgain"] = "#sunsetting_do_not_show_again";
|
|
965
|
+
BindingName2["CanChangeSkin"] = "#can_change_skin";
|
|
966
|
+
BindingName2["DressingRoomControllerButtonVisible"] = "#dressing_room_controller_button_visible";
|
|
967
|
+
BindingName2["ProfileButtonXIconVisible"] = "#profile_button_x_icon_visible";
|
|
968
|
+
BindingName2["IsSignedInXbl"] = "#is_signed_in_xbl";
|
|
969
|
+
BindingName2["PaperDollSkin"] = "#paper_doll_skin";
|
|
970
|
+
BindingName2["PlayernameVisible"] = "#playername_visible";
|
|
971
|
+
BindingName2["ProfileButtonBVisible"] = "#profile_button_b_visible";
|
|
972
|
+
BindingName2["IsRealmLevel"] = "#is_realm_level";
|
|
973
|
+
BindingName2["RealmsUnreadStoryCount"] = "#realms_unread_story_count";
|
|
974
|
+
BindingName2["RealmsUnreadStoryCountVisible"] = "#realms_unread_story_count_visible";
|
|
975
|
+
BindingName2["StoreButtonVisible"] = "#store_button_visible";
|
|
976
|
+
BindingName2["StoreErrorTooltipVisible"] = "#store_error_tooltip_visible";
|
|
977
|
+
BindingName2["StoreErrorText"] = "#store_error_text";
|
|
978
|
+
BindingName2["InviteButtonVisible"] = "#invite_button_visible";
|
|
979
|
+
BindingName2["InviteButtonEnabled"] = "#invite_button_enabled";
|
|
980
|
+
BindingName2["IsTrialVersion"] = "#is_trial_version";
|
|
981
|
+
BindingName2["AchievementsVisible"] = "#achievements_visible";
|
|
982
|
+
BindingName2["ScreenshotButtonVisible"] = "#screenshot_button_visible";
|
|
983
|
+
BindingName2["ProfileButtonAVisible"] = "#profile_button_a_visible";
|
|
984
|
+
BindingName2["ListHasDisplayObjective"] = "#list_has_display_objective";
|
|
985
|
+
BindingName2["DisconnectedFromXboxLiveLabelVisible"] = "#disconnected_from_xbox_live_label_visible";
|
|
986
|
+
BindingName2["DisconnectedFromThirdPartyLabelVisible"] = "#disconnected_from_third_party_label_visible";
|
|
987
|
+
BindingName2["DisconnectedFromAdhocLabelVisible"] = "#disconnected_from_adhoc_label_visible";
|
|
988
|
+
BindingName2["DisconnectedFromCrossplatformMultiplayer"] = "#disconnected_from_crossplatform_multiplayer";
|
|
989
|
+
BindingName2["DisconnectedFromMultiplayer"] = "#disconnected_from_multiplayer";
|
|
990
|
+
BindingName2["Ip"] = "#ip";
|
|
991
|
+
BindingName2["IpAddressText"] = "#ip_address_text";
|
|
992
|
+
BindingName2["Worldname"] = "#worldname";
|
|
993
|
+
BindingName2["PermissionsButtonVisible"] = "#permissions_button_visible";
|
|
994
|
+
BindingName2["PlayerPermissionLevelIconTexture"] = "#player_permission_level_icon_texture";
|
|
995
|
+
BindingName2["ButtonEnabled"] = "#button_enabled";
|
|
996
|
+
BindingName2["ButtonDisabled"] = "#button_disabled";
|
|
997
|
+
BindingName2["LocalIconVisible"] = "#local_icon_visible";
|
|
998
|
+
BindingName2["TextureSource"] = "#texture_source";
|
|
999
|
+
BindingName2["GamerpicVisible"] = "#gamerpic_visible";
|
|
1000
|
+
BindingName2["IsPlatformIconVisible"] = "#is_platform_icon_visible";
|
|
1001
|
+
BindingName2["EduKeyboardHelperVisible"] = "#edu_keyboard_helper_visible";
|
|
1002
|
+
BindingName2["DownloadInfoVisible"] = "#download_info_visible";
|
|
1003
|
+
BindingName2["DownloadInfoText"] = "#download_info_text";
|
|
1004
|
+
BindingName2["DownloadProgressBarVisible"] = "#download_progress_bar_visible";
|
|
1005
|
+
BindingName2["DownloadProgress"] = "#download_progress";
|
|
1006
|
+
BindingName2["MainButtonText"] = "#main_button_text";
|
|
1007
|
+
BindingName2["InteractionButtonText"] = "#interaction_button_text";
|
|
1008
|
+
BindingName2["InterationButtonEnabled"] = "#interation_button_enabled";
|
|
1009
|
+
BindingName2["InteractionButtonVisible"] = "#interaction_button_visible";
|
|
1010
|
+
BindingName2["DownloadProgressBarPercentage"] = "#download_progress_bar_percentage";
|
|
1011
|
+
BindingName2["ProgressLoadingAnimVisible"] = "#progress_loading_anim_visible";
|
|
1012
|
+
BindingName2["PurchaseButtonsEnabled"] = "#purchase_buttons_enabled";
|
|
1013
|
+
BindingName2["ActivatedPurchasePanelVisible"] = "#activated_purchase_panel_visible";
|
|
1014
|
+
BindingName2["DeactivatedPurchasePanelVisible"] = "#deactivated_purchase_panel_visible";
|
|
1015
|
+
BindingName2["ButtonsPanelVisible"] = "#buttons_panel_visible";
|
|
1016
|
+
BindingName2["PurchasePanelVisible"] = "#purchase_panel_visible";
|
|
1017
|
+
BindingName2["InteractButtonText"] = "#interact_button_text";
|
|
1018
|
+
BindingName2["ActionButtonVisible"] = "#action_button_visible";
|
|
1019
|
+
BindingName2["ExitWorldButtonVisible"] = "#exit_world_button_visible";
|
|
1020
|
+
BindingName2["CurrencyPurchaseVisible"] = "#currency_purchase_visible";
|
|
1021
|
+
BindingName2["ShareButtonEnabled"] = "#share_button_enabled";
|
|
1022
|
+
BindingName2["WishlistButtonVisible"] = "#wishlist_button_visible";
|
|
1023
|
+
BindingName2["WishlistButtonEnabled"] = "#wishlist_button_enabled";
|
|
1024
|
+
BindingName2["PurchaseWithCurrencyButtonText"] = "#purchase_with_currency_button_text";
|
|
1025
|
+
BindingName2["CoinVisible"] = "#coin_visible";
|
|
1026
|
+
BindingName2["IsOnSale"] = "#is_on_sale";
|
|
1027
|
+
BindingName2["MarkdownPercentage"] = "#markdown_percentage";
|
|
1028
|
+
BindingName2["TtsMarkdownPercentage"] = "#tts_markdown_percentage";
|
|
1029
|
+
BindingName2["PurchaseWithCoinsButtonText"] = "#purchase_with_coins_button_text";
|
|
1030
|
+
BindingName2["TtsPurchaseWithCoinsButtonText"] = "#tts_purchase_with_coins_button_text";
|
|
1031
|
+
BindingName2["IsOnWishlist"] = "#is_on_wishlist";
|
|
1032
|
+
BindingName2["FullPrice"] = "#full_price";
|
|
1033
|
+
BindingName2["TtsFullPrice"] = "#tts_full_price";
|
|
1034
|
+
BindingName2["SectionHeader"] = "#section_header";
|
|
1035
|
+
BindingName2["SectionTitleVisible"] = "#section_title_visible";
|
|
1036
|
+
BindingName2["SummaryContentVisible"] = "#summary_content_visible";
|
|
1037
|
+
BindingName2["TabSectionContent"] = "#tab_section_content";
|
|
1038
|
+
BindingName2["NavGridVisible"] = "#nav_grid_visible";
|
|
1039
|
+
BindingName2["UpdateNotificationSectionVisible"] = "#update_notification_section_visible";
|
|
1040
|
+
BindingName2["IsSkinPackSectionVisible"] = "#is_skin_pack_section_visible";
|
|
1041
|
+
BindingName2["SkinPackSectionVisible"] = "#skin_pack_section_visible";
|
|
1042
|
+
BindingName2["RatingsFocusContainerVisible"] = "#ratings_focus_container_visible";
|
|
1043
|
+
BindingName2["RecentlyViewedRowVisible"] = "#recently_viewed_row_visible";
|
|
1044
|
+
BindingName2["ItemPageSectionContent"] = "#item_page_section_content";
|
|
1045
|
+
BindingName2["WarningIconPath"] = "#warning_icon_path";
|
|
1046
|
+
BindingName2["ContentRating"] = "#content_rating";
|
|
1047
|
+
BindingName2["ContentRatingReverse"] = "#content_rating_reverse";
|
|
1048
|
+
BindingName2["5StarPercentNormalized"] = "#5_star_percent_normalized";
|
|
1049
|
+
BindingName2["5StarPercent"] = "#5_star_percent";
|
|
1050
|
+
BindingName2["4StarPercentNormalized"] = "#4_star_percent_normalized";
|
|
1051
|
+
BindingName2["4StarPercent"] = "#4_star_percent";
|
|
1052
|
+
BindingName2["3StarPercentNormalized"] = "#3_star_percent_normalized";
|
|
1053
|
+
BindingName2["3StarPercent"] = "#3_star_percent";
|
|
1054
|
+
BindingName2["2StarPercentNormalized"] = "#2_star_percent_normalized";
|
|
1055
|
+
BindingName2["2StarPercent"] = "#2_star_percent";
|
|
1056
|
+
BindingName2["1StarPercentNormalized"] = "#1_star_percent_normalized";
|
|
1057
|
+
BindingName2["1StarPercent"] = "#1_star_percent";
|
|
1058
|
+
BindingName2["RatingsPanel5starsVisible"] = "#ratings_panel_5stars_visible";
|
|
1059
|
+
BindingName2["RatingsPanelText"] = "#ratings_panel_text";
|
|
1060
|
+
BindingName2["NumberOfRatings"] = "#number_of_ratings";
|
|
1061
|
+
BindingName2["EmptyStarTexture"] = "#empty_star_texture";
|
|
1062
|
+
BindingName2["FilledStarTexture"] = "#filled_star_texture";
|
|
1063
|
+
BindingName2["UserRatingStarTexture"] = "#user_rating_star_texture";
|
|
1064
|
+
BindingName2["RatingsStarDimensions"] = "#ratings_star_dimensions";
|
|
1065
|
+
BindingName2["RatingsInteractPanelVisible"] = "#ratings_interact_panel_visible";
|
|
1066
|
+
BindingName2["SubmitRatingButtonText"] = "#submit_rating_button_text";
|
|
1067
|
+
BindingName2["RatingsButtonEnabled"] = "#ratings_button_enabled";
|
|
1068
|
+
BindingName2["RatingFooterText"] = "#rating_footer_text";
|
|
1069
|
+
BindingName2["ScreenshotTextureImageRowGlobal"] = "#screenshot_texture_image_row_global";
|
|
1070
|
+
BindingName2["ScreenshotTextureFileSystemImageRowGlobal"] = "#screenshot_texture_file_system_image_row_global";
|
|
1071
|
+
BindingName2["ItemCsbExpirationLabel"] = "#item_csb_expiration_label";
|
|
1072
|
+
BindingName2["VideoButtonEnabled"] = "#video_button_enabled";
|
|
1073
|
+
BindingName2["RtxLabelVisible"] = "#rtx_label_visible";
|
|
1074
|
+
BindingName2["MainMashupKeyArtTexture"] = "#main_mashup_key_art_texture";
|
|
1075
|
+
BindingName2["MainMashupKeyArtFileSystem"] = "#main_mashup_key_art_file_system";
|
|
1076
|
+
BindingName2["RatingStatusValid"] = "#rating_status_valid";
|
|
1077
|
+
BindingName2["RatingButtonStars"] = "#rating_button_stars";
|
|
1078
|
+
BindingName2["RatingButtonText"] = "#rating_button_text";
|
|
1079
|
+
BindingName2["CreatorLabel"] = "#creator_label";
|
|
1080
|
+
BindingName2["IsCreatorLabelVisible"] = "#is_creator_label_visible";
|
|
1081
|
+
BindingName2["DescriptionLabel"] = "#description_label";
|
|
1082
|
+
BindingName2["WarningTextString"] = "#warning_text_string";
|
|
1083
|
+
BindingName2["ShowWarningIcon"] = "#show_warning_icon";
|
|
1084
|
+
BindingName2["GlyphHoverVisible"] = "#glyph_hover_visible";
|
|
1085
|
+
BindingName2["ItemMashupCountAndLabel"] = "#item_mashup_count_and_label";
|
|
1086
|
+
BindingName2["ItemMashupCountVisible"] = "#item_mashup_count_visible";
|
|
1087
|
+
BindingName2["GlyphHoverTextMashup"] = "#glyph_hover_text_mashup";
|
|
1088
|
+
BindingName2["ItemSkinCountAndLabel"] = "#item_skin_count_and_label";
|
|
1089
|
+
BindingName2["GlyphSkinHoverVisible"] = "#glyph_skin_hover_visible";
|
|
1090
|
+
BindingName2["ItemSkinCountVisible"] = "#item_skin_count_visible";
|
|
1091
|
+
BindingName2["ItemResourcePackCountAndLabel"] = "#item_resource_pack_count_and_label";
|
|
1092
|
+
BindingName2["ItemResourcePackCountVisible"] = "#item_resource_pack_count_visible";
|
|
1093
|
+
BindingName2["ItemWorldTemplateCountAndLabel"] = "#item_world_template_count_and_label";
|
|
1094
|
+
BindingName2["ItemWorldTemplateCountVisible"] = "#item_world_template_count_visible";
|
|
1095
|
+
BindingName2["ItemAddonPackCountAndLabel"] = "#item_addon_pack_count_and_label";
|
|
1096
|
+
BindingName2["ItemAddonPackCountVisible"] = "#item_addon_pack_count_visible";
|
|
1097
|
+
BindingName2["TimeUntilSaleExpires"] = "#time_until_sale_expires";
|
|
1098
|
+
BindingName2["IsSaleTimerVisible"] = "#is_sale_timer_visible";
|
|
1099
|
+
BindingName2["CsbIncompatibleButtonVisible"] = "#csb_incompatible_button_visible";
|
|
1100
|
+
BindingName2["InCsbButtonVisible"] = "#in_csb_button_visible";
|
|
1101
|
+
BindingName2["EntitlementsRefreshingVisible"] = "#entitlements_refreshing_visible";
|
|
1102
|
+
BindingName2["UpdateNotificationVisible"] = "#update_notification_visible";
|
|
1103
|
+
BindingName2["UpdateCheckVisible"] = "#update_check_visible";
|
|
1104
|
+
BindingName2["LastUpdateText"] = "#last_update_text";
|
|
1105
|
+
BindingName2["TagLabel"] = "#tag_label";
|
|
1106
|
+
BindingName2["PlayerCountLabel"] = "#player_count_label";
|
|
1107
|
+
BindingName2["PlayerCountCommaVisible"] = "#player_count_comma_visible";
|
|
1108
|
+
BindingName2["PlayerCountCollectionLength"] = "#player_count_collection_length";
|
|
1109
|
+
BindingName2["LanguageLabel"] = "#language_label";
|
|
1110
|
+
BindingName2["HasTitleIcon"] = "#has_title_icon";
|
|
1111
|
+
BindingName2["DescriptionHeaderIcon"] = "#description_header_icon";
|
|
1112
|
+
BindingName2["DescriptionTitle"] = "#description_title";
|
|
1113
|
+
BindingName2["HasTitle"] = "#has_title";
|
|
1114
|
+
BindingName2["ShowWarning"] = "#show_warning";
|
|
1115
|
+
BindingName2["HasTags"] = "#has_tags";
|
|
1116
|
+
BindingName2["IsDescriptionExpanded"] = "#is_description_expanded";
|
|
1117
|
+
BindingName2["CollapsedShowMoreVisible"] = "#collapsed_show_more_visible";
|
|
1118
|
+
BindingName2["DescriptionExpandedVisible"] = "#description_expanded_visible";
|
|
1119
|
+
BindingName2["TagColumnsCollectionLength"] = "#tag_columns_collection_length";
|
|
1120
|
+
BindingName2["TagRowsCollectionLength"] = "#tag_rows_collection_length";
|
|
1121
|
+
BindingName2["DescriptionCollapsedVisible"] = "#description_collapsed_visible";
|
|
1122
|
+
BindingName2["TagCollapsedCollectionLength"] = "#tag_collapsed_collection_length";
|
|
1123
|
+
BindingName2["GenreLabel"] = "#genre_label";
|
|
1124
|
+
BindingName2["SubgenreLabel"] = "#subgenre_label";
|
|
1125
|
+
BindingName2["PlayerCountRangeLabel"] = "#player_count_range_label";
|
|
1126
|
+
BindingName2["LanguageColumnsCollectionLength"] = "#language_columns_collection_length";
|
|
1127
|
+
BindingName2["CommaVisible"] = "#comma_visible";
|
|
1128
|
+
BindingName2["LanguageRowsCollectionLength"] = "#language_rows_collection_length";
|
|
1129
|
+
BindingName2["ThumbnailTexturePath"] = "#thumbnail_texture_path";
|
|
1130
|
+
BindingName2["ThumbnailTextureFileSystem"] = "#thumbnail_texture_file_system";
|
|
1131
|
+
BindingName2["BundleThumbnailGridDimensions"] = "#bundle_thumbnail_grid_dimensions";
|
|
1132
|
+
BindingName2["OfferPromptText"] = "#offer_prompt_text";
|
|
1133
|
+
BindingName2["TtsOfferPromptText"] = "#tts_offer_prompt_text";
|
|
1134
|
+
BindingName2["DefaultPromptColor"] = "#default_prompt_color";
|
|
1135
|
+
BindingName2["CoinPromptColor"] = "#coin_prompt_color";
|
|
1136
|
+
BindingName2["OfferPromptTextColor"] = "#offer_prompt_text_color";
|
|
1137
|
+
BindingName2["OfferCoinVisible"] = "#offer_coin_visible";
|
|
1138
|
+
BindingName2["ItemDoesNotMeetRequirements"] = "#item_does_not_meet_requirements";
|
|
1139
|
+
BindingName2["OfferGridDimensions"] = "#offer_grid_dimensions";
|
|
1140
|
+
BindingName2["NOBINDING"] = "#NO_BINDING";
|
|
1141
|
+
BindingName2["OfferMarkdownVisible"] = "#offer_markdown_visible";
|
|
1142
|
+
BindingName2["BundleUpsellOtherPacksDescription"] = "#bundle_upsell_other_packs_description";
|
|
1143
|
+
BindingName2["BundleUpsellStrikethroughPriceVisible"] = "#bundle_upsell_strikethrough_price_visible";
|
|
1144
|
+
BindingName2["BundleUpsellOfferAlpha"] = "#bundle_upsell_offer_alpha";
|
|
1145
|
+
BindingName2["IsValidBundleUpsell"] = "#is_valid_bundle_upsell";
|
|
1146
|
+
BindingName2["IsBundleUpsellLoading"] = "#is_bundle_upsell_loading";
|
|
1147
|
+
BindingName2["LeftMostGridItemFocusOverrideLeft"] = "#left_most_grid_item_focus_override_left";
|
|
1148
|
+
BindingName2["MaxUpsellOffers"] = "#max_upsell_offers";
|
|
1149
|
+
BindingName2["BundleUpsellOfferCount"] = "#bundle_upsell_offer_count";
|
|
1150
|
+
BindingName2["BundleUpsellGridVisible"] = "#bundle_upsell_grid_visible";
|
|
1151
|
+
BindingName2["BundleUpsellContentVisible"] = "#bundle_upsell_content_visible";
|
|
1152
|
+
BindingName2["BundleUpsellProgressVisible"] = "#bundle_upsell_progress_visible";
|
|
1153
|
+
BindingName2["BundleUpsellRowVisible"] = "#bundle_upsell_row_visible";
|
|
1154
|
+
BindingName2["CycleScreenshotsLeftButtonEnabled"] = "#cycle_screenshots_left_button_enabled";
|
|
1155
|
+
BindingName2["CycleScreenshotsRightButtonEnabled"] = "#cycle_screenshots_right_button_enabled";
|
|
1156
|
+
BindingName2["ScreenshotFocusOverrideRight"] = "#screenshot_focus_override_right";
|
|
1157
|
+
BindingName2["ScreenshotTextureFileSystem"] = "#screenshot_texture_file_system";
|
|
1158
|
+
BindingName2["BButtonText"] = "#b_button_text";
|
|
1159
|
+
BindingName2["KickButtonVisible"] = "#kick_button_visible";
|
|
1160
|
+
BindingName2["KickButtonEnabled"] = "#kick_button_enabled";
|
|
1161
|
+
BindingName2["BanButtonVisible"] = "#ban_button_visible";
|
|
1162
|
+
BindingName2["BanButtonEnabled"] = "#ban_button_enabled";
|
|
1163
|
+
BindingName2["IsWorldTemplateLocked"] = "#is_world_template_locked";
|
|
1164
|
+
BindingName2["WorldTemplatePermissionsLockedWarningText"] = "#world_template_permissions_locked_warning_text";
|
|
1165
|
+
BindingName2["PermissionsGridDimension"] = "#permissions_grid_dimension";
|
|
1166
|
+
BindingName2["PermissionOptionsGridVisible"] = "#permission_options_grid_visible";
|
|
1167
|
+
BindingName2["OptionName"] = "#option_name";
|
|
1168
|
+
BindingName2["OptionStateName"] = "#option_state_name";
|
|
1169
|
+
BindingName2["PlayerToggleState"] = "#player_toggle_state";
|
|
1170
|
+
BindingName2["OptionToggleState"] = "#option_toggle_state";
|
|
1171
|
+
BindingName2["CanEditPermissions"] = "#can_edit_permissions";
|
|
1172
|
+
BindingName2["PermissionLevelDropdownLabel"] = "#permission_level_dropdown_label";
|
|
1173
|
+
BindingName2["PermissionLevelRadioVisitor"] = "#permission_level_radio_visitor";
|
|
1174
|
+
BindingName2["PermissionLevelRadioMember"] = "#permission_level_radio_member";
|
|
1175
|
+
BindingName2["PermissionLevelRadioOperator"] = "#permission_level_radio_operator";
|
|
1176
|
+
BindingName2["PermissionLevelRadioCustom"] = "#permission_level_radio_custom";
|
|
1177
|
+
BindingName2["PermissionLevelDropdownIconTexture"] = "#permission_level_dropdown_icon_texture";
|
|
1178
|
+
BindingName2["CastEnabledSelect"] = "#cast_enabled_select";
|
|
1179
|
+
BindingName2["CastCharacterOptionsDimensions"] = "#cast_character_options_dimensions";
|
|
1180
|
+
BindingName2["CastButtonSelected"] = "#cast_button_selected";
|
|
1181
|
+
BindingName2["CastButtonVisible"] = "#cast_button_visible";
|
|
1182
|
+
BindingName2["InUseTexture"] = "#in_use_texture";
|
|
1183
|
+
BindingName2["InUseTextureFileSystem"] = "#in_use_texture_file_system";
|
|
1184
|
+
BindingName2["IsCharacterLoading"] = "#is_character_loading";
|
|
1185
|
+
BindingName2["CastPreviewSkin"] = "#cast_preview_skin";
|
|
1186
|
+
BindingName2["SelectedCharacterName"] = "#selected_character_name";
|
|
1187
|
+
BindingName2["RarityBarTexture"] = "#rarity_bar_texture";
|
|
1188
|
+
BindingName2["RarityBarVisible"] = "#rarity_bar_visible";
|
|
1189
|
+
BindingName2["RarityColor"] = "#rarity_color";
|
|
1190
|
+
BindingName2["Common"] = "#common";
|
|
1191
|
+
BindingName2["Uncommon"] = "#uncommon";
|
|
1192
|
+
BindingName2["Rare"] = "#rare";
|
|
1193
|
+
BindingName2["Epic"] = "#epic";
|
|
1194
|
+
BindingName2["Legendary"] = "#legendary";
|
|
1195
|
+
BindingName2["EmoteLabel"] = "#emote_label";
|
|
1196
|
+
BindingName2["EmoteNameTouch"] = "#emote_name_touch";
|
|
1197
|
+
BindingName2["EmoteIsValid"] = "#emote_is_valid";
|
|
1198
|
+
BindingName2["EmoteImage"] = "#emote_image";
|
|
1199
|
+
BindingName2["EmoteImageFileSystem"] = "#emote_image_file_system";
|
|
1200
|
+
BindingName2["ImageIsValid"] = "#image_is_valid";
|
|
1201
|
+
BindingName2["EmoteIndexName"] = "#emote_index_name";
|
|
1202
|
+
BindingName2["AreGamepadQuickSelectHelpersVisible"] = "#are_gamepad_quick_select_helpers_visible";
|
|
1203
|
+
BindingName2["IsEmoteGamepadHelperVisible"] = "#is_emote_gamepad_helper_visible";
|
|
1204
|
+
BindingName2["Index"] = "#index";
|
|
1205
|
+
BindingName2["HoverSlice"] = "#hover_slice";
|
|
1206
|
+
BindingName2["InitSelectionWheelInputMode"] = "#init_selection_wheel_input_mode";
|
|
1207
|
+
BindingName2["EmoteName"] = "#emote_name";
|
|
1208
|
+
BindingName2["CanPaperdollRotate"] = "#can_paperdoll_rotate";
|
|
1209
|
+
BindingName2["AlwaysHandleControllerDirection"] = "#always_handle_controller_direction";
|
|
1210
|
+
BindingName2["PreviewAppearanceOn"] = "#preview_appearance_on";
|
|
1211
|
+
BindingName2["LeftSkinColorOptionOn"] = "#left_skin_color_option_on";
|
|
1212
|
+
BindingName2["ExpandedAppearanceVisible"] = "#expanded_appearance_visible";
|
|
1213
|
+
BindingName2["SkinColorOptionEnabled"] = "#skin_color_option_enabled";
|
|
1214
|
+
BindingName2["FocusEnabled"] = "#focus_enabled";
|
|
1215
|
+
BindingName2["PlayHighlightedEmoteHelperVisible"] = "#play_highlighted_emote_helper_visible";
|
|
1216
|
+
BindingName2["RightSkinColorOptionOn"] = "#right_skin_color_option_on";
|
|
1217
|
+
BindingName2["RestrictedInfoVisible"] = "#restricted_info_visible";
|
|
1218
|
+
BindingName2["PersonaIsUpdating"] = "#persona_is_updating";
|
|
1219
|
+
BindingName2["RealmsSavedCoinsLabel"] = "#realms_saved_coins_label";
|
|
1220
|
+
BindingName2["RealmsRedeemButtonVisible"] = "#realms_redeem_button_visible";
|
|
1221
|
+
BindingName2["RealmsSubscriptionButtonVisible"] = "#realms_subscription_button_visible";
|
|
1222
|
+
BindingName2["ShowEquipButtonHelper"] = "#show_equip_button_helper";
|
|
1223
|
+
BindingName2["IsSubcategoryEquipButtonVisible"] = "#is_subcategory_equip_button_visible";
|
|
1224
|
+
BindingName2["IsSkinEquipVisible"] = "#is_skin_equip_visible";
|
|
1225
|
+
BindingName2["IsSizeEquipVisible"] = "#is_size_equip_visible";
|
|
1226
|
+
BindingName2["IsCoinPurchaseVisible"] = "#is_coin_purchase_visible";
|
|
1227
|
+
BindingName2["IsCurrencyPurchaseVisible"] = "#is_currency_purchase_visible";
|
|
1228
|
+
BindingName2["IsAchievementAward"] = "#is_achievement_award";
|
|
1229
|
+
BindingName2["CanCollectAchievementAward"] = "#can_collect_achievement_award";
|
|
1230
|
+
BindingName2["IsSeeInStoreButtonVisible"] = "#is_see_in_store_button_visible";
|
|
1231
|
+
BindingName2["IsPurchaseButtonPaddingVisible"] = "#is_purchase_button_padding_visible";
|
|
1232
|
+
BindingName2["RightPanelTitle"] = "#right_panel_title";
|
|
1233
|
+
BindingName2["RightPanelTitleRarity"] = "#right_panel_title_rarity";
|
|
1234
|
+
BindingName2["IsRightPanelClassicCustomVisible"] = "#is_right_panel_classic_custom_visible";
|
|
1235
|
+
BindingName2["IsLimitedTimeOffer"] = "#is_limited_time_offer";
|
|
1236
|
+
BindingName2["SpecialBannerText"] = "#special_banner_text";
|
|
1237
|
+
BindingName2["IsSpecailOfferBannerVisible"] = "#is_specail_offer_banner_visible";
|
|
1238
|
+
BindingName2["LeftCycleButtonEnabled"] = "#left_cycle_button_enabled";
|
|
1239
|
+
BindingName2["RightCycleButtonEnabled"] = "#right_cycle_button_enabled";
|
|
1240
|
+
BindingName2["IsRightInfo_"] = "#is_right_info_";
|
|
1241
|
+
BindingName2["IsUsingDressingRoomDebugging"] = "#is_using_dressing_room_debugging";
|
|
1242
|
+
BindingName2["CurrentSkinName"] = "#current_skin_name";
|
|
1243
|
+
BindingName2["ActiveSkinName"] = "#active_skin_name";
|
|
1244
|
+
BindingName2["CurrentSkin"] = "#current_skin";
|
|
1245
|
+
BindingName2["ActiveSkin"] = "#active_skin";
|
|
1246
|
+
BindingName2["PreviewSkinName"] = "#preview_skin_name";
|
|
1247
|
+
BindingName2["IsGettingStartedVisible"] = "#is_getting_started_visible";
|
|
1248
|
+
BindingName2["ShowColorPicker"] = "#show_color_picker";
|
|
1249
|
+
BindingName2["FeaturedSkinPackDimensions"] = "#featured_skin_pack_dimensions";
|
|
1250
|
+
BindingName2["IsLeftCycleFeaturedSkinsButtonEnabled"] = "#is_left_cycle_featured_skins_button_enabled";
|
|
1251
|
+
BindingName2["IsRightCycleFeaturedSkinsButtonEnabled"] = "#is_right_cycle_featured_skins_button_enabled";
|
|
1252
|
+
BindingName2["EmotesActive"] = "#emotes_active";
|
|
1253
|
+
BindingName2["AchievementOfferLockStateTexture"] = "#achievement_offer_lock_state_texture";
|
|
1254
|
+
BindingName2["IsOfferAchievement"] = "#is_offer_achievement";
|
|
1255
|
+
BindingName2["RightPanelDescription"] = "#right_panel_description";
|
|
1256
|
+
BindingName2["IsLeftCycleFeaturedPiecesButtonEnabled"] = "#is_left_cycle_featured_pieces_button_enabled";
|
|
1257
|
+
BindingName2["IsRightCycleFeaturedPiecesButtonEnabled"] = "#is_right_cycle_featured_pieces_button_enabled";
|
|
1258
|
+
BindingName2["Is_"] = "#is_";
|
|
1259
|
+
BindingName2["ColorSinglePageSize"] = "#color_single_page_size";
|
|
1260
|
+
BindingName2["ColorPickerInfoPanelTitleColor"] = "#color_picker_info_panel_title_color";
|
|
1261
|
+
BindingName2["ColorPickerInfoPanelTitleName"] = "#color_picker_info_panel_title_name";
|
|
1262
|
+
BindingName2["SkinPackRightPanelUsageIsLimited"] = "#skin_pack_right_panel_usage_is_limited";
|
|
1263
|
+
BindingName2["SkinPackRightPanelUsageText"] = "#skin_pack_right_panel_usage_text";
|
|
1264
|
+
BindingName2["IsRightPanelClassicSkinPackVisible"] = "#is_right_panel_classic_skin_pack_visible";
|
|
1265
|
+
BindingName2["IsAppearanceStatusHoverPanelVisible"] = "#is_appearance_status_hover_panel_visible";
|
|
1266
|
+
BindingName2["SkinPackRightPanelUsageTooltipText"] = "#skin_pack_right_panel_usage_tooltip_text";
|
|
1267
|
+
BindingName2["SkinPackRightPanelSkinCountText"] = "#skin_pack_right_panel_skin_count_text";
|
|
1268
|
+
BindingName2["SkinPackRightPanelWorldCountText"] = "#skin_pack_right_panel_world_count_text";
|
|
1269
|
+
BindingName2["SkinPackRightPanelTexturePackCountText"] = "#skin_pack_right_panel_texture_pack_count_text";
|
|
1270
|
+
BindingName2["RealmsPlusSkinPackName"] = "#realms_plus_skin_pack_name";
|
|
1271
|
+
BindingName2["RealmsPlusSkinPackTexture"] = "#realms_plus_skin_pack_texture";
|
|
1272
|
+
BindingName2["RealmsPlusSkinPackTextureFileSystem"] = "#realms_plus_skin_pack_texture_file_system";
|
|
1273
|
+
BindingName2["IsFeaturedClassicSkinLoading"] = "#is_featured_classic_skin_loading";
|
|
1274
|
+
BindingName2["IsFeaturedPackVisible"] = "#is_featured_pack_visible";
|
|
1275
|
+
BindingName2["IsClassicSkinCurrentOfferLoading"] = "#is_classic_skin_current_offer_loading";
|
|
1276
|
+
BindingName2["CustomSkinButtonEnabled"] = "#custom_skin_button_enabled";
|
|
1277
|
+
BindingName2["SkinPackTitle"] = "#skin_pack_title";
|
|
1278
|
+
BindingName2["SkinPackAuthor"] = "#skin_pack_author";
|
|
1279
|
+
BindingName2["HeightImageBinding"] = "#height_image_binding";
|
|
1280
|
+
BindingName2["BodySizeDimensions"] = "#body_size_dimensions";
|
|
1281
|
+
BindingName2["BodySizeSelected"] = "#body_size_selected";
|
|
1282
|
+
BindingName2["BodySizeEquipped"] = "#body_size_equipped";
|
|
1283
|
+
BindingName2["ArmsImageBinding"] = "#arms_image_binding";
|
|
1284
|
+
BindingName2["ArmSizeDimensions"] = "#arm_size_dimensions";
|
|
1285
|
+
BindingName2["ArmSizeSelected"] = "#arm_size_selected";
|
|
1286
|
+
BindingName2["ArmSizeEquipped"] = "#arm_size_equipped";
|
|
1287
|
+
BindingName2["IsOfferOnSale"] = "#is_offer_on_sale";
|
|
1288
|
+
BindingName2["IsOfferPurchasableAndNotFree"] = "#is_offer_purchasable_and_not_free";
|
|
1289
|
+
BindingName2["IsRedeemable"] = "#is_redeemable";
|
|
1290
|
+
BindingName2["IsOfferNew"] = "#is_offer_new";
|
|
1291
|
+
BindingName2["IsOfferLocked"] = "#is_offer_locked";
|
|
1292
|
+
BindingName2["KeyBoundTexture"] = "#key_bound_texture";
|
|
1293
|
+
BindingName2["KeyBoundLabel"] = "#key_bound_label";
|
|
1294
|
+
BindingName2["IsKeyBound"] = "#is_key_bound";
|
|
1295
|
+
BindingName2["CurrentPanelColor"] = "#current_panel_color";
|
|
1296
|
+
BindingName2["ColorEquipped"] = "#color_equipped";
|
|
1297
|
+
BindingName2["ColorSelected"] = "#color_selected";
|
|
1298
|
+
BindingName2["LeftColorCycleEnabled"] = "#left_color_cycle_enabled";
|
|
1299
|
+
BindingName2["OtherChannels"] = "#other_channels";
|
|
1300
|
+
BindingName2["ColorPickerTitle"] = "#color_picker_title";
|
|
1301
|
+
BindingName2["RightColorCycleEnabled"] = "#right_color_cycle_enabled";
|
|
1302
|
+
BindingName2["IsSkinSelected"] = "#is_skin_selected";
|
|
1303
|
+
BindingName2["IsSkinEquipped"] = "#is_skin_equipped";
|
|
1304
|
+
BindingName2["ClassicSkinIndex"] = "#classic_skin_index";
|
|
1305
|
+
BindingName2["IsSkinLocked"] = "#is_skin_locked";
|
|
1306
|
+
BindingName2["IsSkinIndexVisible"] = "#is_skin_index_visible";
|
|
1307
|
+
BindingName2["IsSkinNotEquippable"] = "#is_skin_not_equippable";
|
|
1308
|
+
BindingName2["IsSkinRealmsPlus"] = "#is_skin_realms_plus";
|
|
1309
|
+
BindingName2["IsSkinNew"] = "#is_skin_new";
|
|
1310
|
+
BindingName2["SkinFocusId"] = "#skin_focus_id";
|
|
1311
|
+
BindingName2["SkinPackChangeRight"] = "#skin_pack_change_right";
|
|
1312
|
+
BindingName2["PieceContentDownloading"] = "#piece_content_downloading";
|
|
1313
|
+
BindingName2["IsPieceCsb"] = "#is_piece_csb";
|
|
1314
|
+
BindingName2["IsPieceEquipped"] = "#is_piece_equipped";
|
|
1315
|
+
BindingName2["IsPieceSelected"] = "#is_piece_selected";
|
|
1316
|
+
BindingName2["IsPieceBeingPreviewed"] = "#is_piece_being_previewed";
|
|
1317
|
+
BindingName2["IsPieceVisible"] = "#is_piece_visible";
|
|
1318
|
+
BindingName2["PiecePlusButtonText"] = "#piece_plus_button_text";
|
|
1319
|
+
BindingName2["IsPiecePlusButtonVisible"] = "#is_piece_plus_button_visible";
|
|
1320
|
+
BindingName2["PieceOfferCount"] = "#piece_offer_count";
|
|
1321
|
+
BindingName2["IsNoneOptionVisible"] = "#is_none_option_visible";
|
|
1322
|
+
BindingName2["PieceSectionTitle"] = "#piece_section_title";
|
|
1323
|
+
BindingName2["LeftLimbEnabled"] = "#left_limb_enabled";
|
|
1324
|
+
BindingName2["LimbTitle"] = "#limb_title";
|
|
1325
|
+
BindingName2["LimbTitleEnabled"] = "#limb_title_enabled";
|
|
1326
|
+
BindingName2["RightLimbEnabled"] = "#right_limb_enabled";
|
|
1327
|
+
BindingName2["IsLegOrArmsSelected"] = "#is_leg_or_arms_selected";
|
|
1328
|
+
BindingName2["NoneOptionText"] = "#none_option_text";
|
|
1329
|
+
BindingName2["IsNoneOptionEnabled"] = "#is_none_option_enabled";
|
|
1330
|
+
BindingName2["SizingOptionsOn"] = "#sizing_options_on";
|
|
1331
|
+
BindingName2["IsPieceSectionVisible"] = "#is_piece_section_visible";
|
|
1332
|
+
BindingName2["PieceSections"] = "#piece_sections";
|
|
1333
|
+
BindingName2["IsPieceListSectionVisible"] = "#is_piece_list_section_visible";
|
|
1334
|
+
BindingName2["IsCycleFeaturedSectionReady"] = "#is_cycle_featured_section_ready";
|
|
1335
|
+
BindingName2["SubCategoryFeaturedTitle"] = "#sub_category_featured_title";
|
|
1336
|
+
BindingName2["IsSubcategoryFeaturedSectionVisible"] = "#is_subcategory_featured_section_visible";
|
|
1337
|
+
BindingName2["SubcategoryTitle"] = "#subcategory_title";
|
|
1338
|
+
BindingName2["SubcategoryImage"] = "#subcategory_image";
|
|
1339
|
+
BindingName2["IsCategoryToggleSelected"] = "#is_category_toggle_selected";
|
|
1340
|
+
BindingName2["CategoryTitle"] = "#category_title";
|
|
1341
|
+
BindingName2["SubcategoryDimensionBinding"] = "#subcategory_dimension_binding";
|
|
1342
|
+
BindingName2["IsRightInfoMainRealmsPanelVisible"] = "#is_right_info_main_realms_panel_visible";
|
|
1343
|
+
BindingName2["CategorySectionContent"] = "#category_section_content";
|
|
1344
|
+
BindingName2["FeaturedSectionContent"] = "#featured_section_content";
|
|
1345
|
+
BindingName2["IsCategorySectionVisible"] = "#is_category_section_visible";
|
|
1346
|
+
BindingName2["SkinnySkinIndex"] = "#skinny_skin_index";
|
|
1347
|
+
BindingName2["FatSkinIndex"] = "#fat_skin_index";
|
|
1348
|
+
BindingName2["ToastTitle"] = "#toast_title";
|
|
1349
|
+
BindingName2["SwitchingPersonaSkinTitle"] = "#switching_persona_skin_title";
|
|
1350
|
+
BindingName2["SwitchingPersonaSkinMessage"] = "#switching_persona_skin_message";
|
|
1351
|
+
BindingName2["ClassicSkinPersonaSwitchToggle"] = "#classic_skin_persona_switch_toggle";
|
|
1352
|
+
BindingName2["IsCustomSkinPopupVisible"] = "#is_custom_skin_popup_visible";
|
|
1353
|
+
BindingName2["ExpandedPackDimensions"] = "#expanded_pack_dimensions";
|
|
1354
|
+
BindingName2["IsSkinPickerSectionVisible"] = "#is_skin_picker_section_visible";
|
|
1355
|
+
BindingName2["PackAdditionalSkinCountText"] = "#pack_additional_skin_count_text";
|
|
1356
|
+
BindingName2["IsClassicSkinPackLoading"] = "#is_classic_skin_pack_loading";
|
|
1357
|
+
BindingName2["SkinDimensions"] = "#skin_dimensions";
|
|
1358
|
+
BindingName2["ExpandButtonFocusId"] = "#expand_button_focus_id";
|
|
1359
|
+
BindingName2["SkinPackExpandPackFocusChangeLeft"] = "#skin_pack_expand_pack_focus_change_left";
|
|
1360
|
+
BindingName2["SkinPackDimensions"] = "#skin_pack_dimensions";
|
|
1361
|
+
BindingName2["ShowMorePackVisible"] = "#show_more_pack_visible";
|
|
1362
|
+
BindingName2["SkinPackCollectorSections"] = "#skin_pack_collector_sections";
|
|
1363
|
+
BindingName2["PersonaSkinPackCategoryName"] = "#persona_skin_pack_category_name";
|
|
1364
|
+
BindingName2["IsSkinPackScreenSearchLoading"] = "#is_skin_pack_screen_search_loading";
|
|
1365
|
+
BindingName2["IsClassicSkinSectionVisible"] = "#is_classic_skin_section_visible";
|
|
1366
|
+
BindingName2["CapeCount"] = "#cape_count";
|
|
1367
|
+
BindingName2["IsCapeSelectionVisible"] = "#is_cape_selection_visible";
|
|
1368
|
+
BindingName2["IsCapeSectionVisible"] = "#is_cape_section_visible";
|
|
1369
|
+
BindingName2["PersonaEmoteSlotName"] = "#persona_emote_slot_name";
|
|
1370
|
+
BindingName2["PersonaEmoteImageName"] = "#persona_emote_image_name";
|
|
1371
|
+
BindingName2["PersonaEmoteImageFileSystem"] = "#persona_emote_image_file_system";
|
|
1372
|
+
BindingName2["EmoteSlotDimensionBinding"] = "#emote_slot_dimension_binding";
|
|
1373
|
+
BindingName2["IsPlayAgainButtonVisible"] = "#is_play_again_button_visible";
|
|
1374
|
+
BindingName2["EmoteOfferCount"] = "#emote_offer_count";
|
|
1375
|
+
BindingName2["IsEmoteOfferListVisible"] = "#is_emote_offer_list_visible";
|
|
1376
|
+
BindingName2["IsNoneEmoteOptionEnabled"] = "#is_none_emote_option_enabled";
|
|
1377
|
+
BindingName2["EmotePopupTitle"] = "#emote_popup_title";
|
|
1378
|
+
BindingName2["PreviewSkinFull"] = "#preview_skin_full";
|
|
1379
|
+
BindingName2["PersonaCoinsFocusEnabled"] = "#persona_coins_focus_enabled";
|
|
1380
|
+
BindingName2["PersonaXBindEnabled"] = "#persona_x_bind_enabled";
|
|
1381
|
+
BindingName2["RealmsplusExpiredVisible"] = "#realmsplus_expired_visible";
|
|
1382
|
+
BindingName2["FriendsServerIconTextureName"] = "#friends_server_icon_texture_name";
|
|
1383
|
+
BindingName2["CrossPlatformFriendsServerIconTextureName"] = "#cross_platform_friends_server_icon_texture_name";
|
|
1384
|
+
BindingName2["PingReadyThirdparty"] = "#ping_ready_thirdparty";
|
|
1385
|
+
BindingName2["RealmsSignInPrompt"] = "#realms_sign_in_prompt";
|
|
1386
|
+
BindingName2["RealmsSignInPromptFriends"] = "#realms_sign_in_prompt_friends";
|
|
1387
|
+
BindingName2["RealmsSignInButtonVisible"] = "#realms_sign_in_button_visible";
|
|
1388
|
+
BindingName2["RealmsWorldDetails"] = "#realms_world_details";
|
|
1389
|
+
BindingName2["RealmsWorldIsHardcore"] = "#realms_world_is_hardcore";
|
|
1390
|
+
BindingName2["PlayerGamertag"] = "#player_gamertag";
|
|
1391
|
+
BindingName2["RealmsFeedButtonTtsHeader"] = "#realms_feed_button_tts_header";
|
|
1392
|
+
BindingName2["MenuRealmsFeedVisible"] = "#menu_realms_feed_visible";
|
|
1393
|
+
BindingName2["RealmsWorldExpiryNotificationVisible"] = "#realms_world_expiry_notification_visible";
|
|
1394
|
+
BindingName2["RealmsEditVisible"] = "#realms_edit_visible";
|
|
1395
|
+
BindingName2["LeaveRealmButtonVisible"] = "#leave_realm_button_visible";
|
|
1396
|
+
BindingName2["RealmsGridsVisible"] = "#realms_grids_visible";
|
|
1397
|
+
BindingName2["NetworkWorldHeaderIconTexturePath"] = "#network_world_header_icon_texture_path";
|
|
1398
|
+
BindingName2["NetworkWorldHeaderIconTextureLocation"] = "#network_world_header_icon_texture_location";
|
|
1399
|
+
BindingName2["NetworkWorldHeader"] = "#network_world_header";
|
|
1400
|
+
BindingName2["NetworkWorldDetails"] = "#network_world_details";
|
|
1401
|
+
BindingName2["NetworkWorldPlayerCount"] = "#network_world_player_count";
|
|
1402
|
+
BindingName2["NetworkWorldPlayerCountVisible"] = "#network_world_player_count_visible";
|
|
1403
|
+
BindingName2["GameOnline"] = "#game_online";
|
|
1404
|
+
BindingName2["GameUnavailable"] = "#game_unavailable";
|
|
1405
|
+
BindingName2["GameOffline"] = "#game_offline";
|
|
1406
|
+
BindingName2["NetworkWorldIsHardcore"] = "#network_world_is_hardcore";
|
|
1407
|
+
BindingName2["NetworkWorldButtonEnabled"] = "#network_world_button_enabled";
|
|
1408
|
+
BindingName2["PrivilegesBlockedText"] = "#privilegesBlockedText";
|
|
1409
|
+
BindingName2["ServersNetworkWorldItemGridDimension"] = "#servers_network_world_item_grid_dimension";
|
|
1410
|
+
BindingName2["AdditionalServerToggleIndex"] = "#additional_server_toggle_index";
|
|
1411
|
+
BindingName2["IsNetworkAvailableAndMultiplayerVisible"] = "#is_network_available_and_multiplayer_visible";
|
|
1412
|
+
BindingName2["InfoAdditionalServerName"] = "#info_additional_server_name";
|
|
1413
|
+
BindingName2["ServerPlayerCountIcon"] = "#server_player_count_icon";
|
|
1414
|
+
BindingName2["InfoAdditionalServerPlayerCount"] = "#info_additional_server_player_count";
|
|
1415
|
+
BindingName2["InfoAdditionalServerPingTextureName"] = "#info_additional_server_ping_texture_name";
|
|
1416
|
+
BindingName2["InfoAdditionalServerPing"] = "#info_additional_server_ping";
|
|
1417
|
+
BindingName2["PingReadyExternal"] = "#ping_ready_external";
|
|
1418
|
+
BindingName2["TextureName"] = "#texture_name";
|
|
1419
|
+
BindingName2["ServerPlayerCount"] = "#server_player_count";
|
|
1420
|
+
BindingName2["IsNetworkAvailableAndPingNotLoading"] = "#is_network_available_and_ping_not_loading";
|
|
1421
|
+
BindingName2["ThirdPartyFeaturedItemGridDimension"] = "#third_party_featured_item_grid_dimension";
|
|
1422
|
+
BindingName2["ThirdPartyToggleIndex"] = "#third_party_toggle_index";
|
|
1423
|
+
BindingName2["FeaturedServersVisible"] = "#featured_servers_visible";
|
|
1424
|
+
BindingName2["ThirdPartyScreenshotVisible"] = "#third_party_screenshot_visible";
|
|
1425
|
+
BindingName2["ThirdPartyServerName"] = "#third_party_server_name";
|
|
1426
|
+
BindingName2["IsServerInfoAvailableCollection"] = "#is_server_info_available_collection";
|
|
1427
|
+
BindingName2["ThirdPartyServerMessage"] = "#third_party_server_message";
|
|
1428
|
+
BindingName2["IsNetworkAvailable"] = "#is_network_available";
|
|
1429
|
+
BindingName2["ThirdPartyServerLogoTexturePath"] = "#third_party_server_logo_texture_path";
|
|
1430
|
+
BindingName2["ThirdPartyServerLogoResourceLocation"] = "#third_party_server_logo_resource_location";
|
|
1431
|
+
BindingName2["FeaturedServersVisibleAndAvailable"] = "#featured_servers_visible_and_available";
|
|
1432
|
+
BindingName2["IsServerInfoAvailable"] = "#is_server_info_available";
|
|
1433
|
+
BindingName2["InfoThirdPartyServerLogoTexturePath"] = "#info_third_party_server_logo_texture_path";
|
|
1434
|
+
BindingName2["InfoThirdPartyScreenshotVisible"] = "#info_third_party_screenshot_visible";
|
|
1435
|
+
BindingName2["InfoThirdPartyServerName"] = "#info_third_party_server_name";
|
|
1436
|
+
BindingName2["InfoThirdPartyServerPlayerCount"] = "#info_third_party_server_player_count";
|
|
1437
|
+
BindingName2["InfoPingTextureName"] = "#info_ping_texture_name";
|
|
1438
|
+
BindingName2["InfoServerPing"] = "#info_server_ping";
|
|
1439
|
+
BindingName2["ViewOffersVisible"] = "#view_offers_visible";
|
|
1440
|
+
BindingName2["ServerHasScreenshots"] = "#server_has_screenshots";
|
|
1441
|
+
BindingName2["ServerHasDescription"] = "#server_has_description";
|
|
1442
|
+
BindingName2["ServerHasGames"] = "#server_has_games";
|
|
1443
|
+
BindingName2["ServerHasNews"] = "#server_has_news";
|
|
1444
|
+
BindingName2["ThisScreenshotSelected"] = "#this_screenshot_selected";
|
|
1445
|
+
BindingName2["ScreenshotCollectionLength"] = "#screenshot_collection_length";
|
|
1446
|
+
BindingName2["DescriptionIsReadMore"] = "#description_is_read_more";
|
|
1447
|
+
BindingName2["DescriptionIsReadLess"] = "#description_is_read_less";
|
|
1448
|
+
BindingName2["UsingEllipses"] = "#using_ellipses";
|
|
1449
|
+
BindingName2["AvailableGameImage"] = "#available_game_image";
|
|
1450
|
+
BindingName2["AvailableGameImageVisible"] = "#available_game_image_visible";
|
|
1451
|
+
BindingName2["AvailableGameTitle"] = "#available_game_title";
|
|
1452
|
+
BindingName2["AvailableGameSubtitle"] = "#available_game_subtitle";
|
|
1453
|
+
BindingName2["AvailableGameDescription"] = "#available_game_description";
|
|
1454
|
+
BindingName2["GamesCollectionLength"] = "#games_collection_length";
|
|
1455
|
+
BindingName2["NewsText"] = "#news_text";
|
|
1456
|
+
BindingName2["NewsLabel"] = "#news_label";
|
|
1457
|
+
BindingName2["NewsIsReadMore"] = "#news_is_read_more";
|
|
1458
|
+
BindingName2["NewsIsReadLess"] = "#news_is_read_less";
|
|
1459
|
+
BindingName2["LocalWorldsStorageSize"] = "#local_worlds_storage_size";
|
|
1460
|
+
BindingName2["LegacyWorldsStorageSize"] = "#legacy_worlds_storage_size";
|
|
1461
|
+
BindingName2["LocalWorldName"] = "#local_world_name";
|
|
1462
|
+
BindingName2["LegacyWorldName"] = "#legacy_world_name";
|
|
1463
|
+
BindingName2["LocalWorldGameMode"] = "#local_world_game_mode";
|
|
1464
|
+
BindingName2["LegacyWorldGameMode"] = "#legacy_world_game_mode";
|
|
1465
|
+
BindingName2["LocalWorldDate"] = "#local_world_date";
|
|
1466
|
+
BindingName2["LegacyWorldDate"] = "#legacy_world_date";
|
|
1467
|
+
BindingName2["LegacyWorldDateVisible"] = "#legacy_world_date_visible";
|
|
1468
|
+
BindingName2["LocalWorldfileSize"] = "#local_worldfile_size";
|
|
1469
|
+
BindingName2["LegacyWorldfileSize"] = "#legacy_worldfile_size";
|
|
1470
|
+
BindingName2["LocalAndCloudStorageVisible"] = "#local_and_cloud_storage_visible";
|
|
1471
|
+
BindingName2["LocalOnlyStorageVisible"] = "#local_only_storage_visible";
|
|
1472
|
+
BindingName2["CloudOnlyStorageVisible"] = "#cloud_only_storage_visible";
|
|
1473
|
+
BindingName2["WorldLockVisible"] = "#world_lock_visible";
|
|
1474
|
+
BindingName2["RealmsChevronVisible"] = "#realms_chevron_visible";
|
|
1475
|
+
BindingName2["OwnershipVerificationStateText"] = "#ownership_verification_state_text";
|
|
1476
|
+
BindingName2["IsOwnershipVerificationInProgress"] = "#is_ownership_verification_in_progress";
|
|
1477
|
+
BindingName2["LocalWorldImage"] = "#local_world_image";
|
|
1478
|
+
BindingName2["LocalWorldTextureSource"] = "#local_world_texture_source";
|
|
1479
|
+
BindingName2["LegacyWorldImage"] = "#legacy_world_image";
|
|
1480
|
+
BindingName2["LegacyWorldTextureSource"] = "#legacy_world_texture_source";
|
|
1481
|
+
BindingName2["CloudUploadEnabled"] = "#cloud_upload_enabled";
|
|
1482
|
+
BindingName2["LocalWorldItemGridDimension"] = "#local_world_item_grid_dimension";
|
|
1483
|
+
BindingName2["BetaRetailLocalWorldItemGridDimension"] = "#beta_retail_local_world_item_grid_dimension";
|
|
1484
|
+
BindingName2["BetaRetailLocalWorldName"] = "#beta_retail_local_world_name";
|
|
1485
|
+
BindingName2["BetaRetailLocalWorldDate"] = "#beta_retail_local_world_date";
|
|
1486
|
+
BindingName2["BetaRetailLocalWorldGameMode"] = "#beta_retail_local_world_game_mode";
|
|
1487
|
+
BindingName2["BetaRetailLocalWorldFilesize"] = "#beta_retail_local_world_filesize";
|
|
1488
|
+
BindingName2["BetaRetailLocalWorldImage"] = "#beta_retail_local_world_image";
|
|
1489
|
+
BindingName2["BetaRetailLocalWorldTextureSource"] = "#beta_retail_local_world_texture_source";
|
|
1490
|
+
BindingName2["BetaRetailLegacyWorldItemGridDimension"] = "#beta_retail_legacy_world_item_grid_dimension";
|
|
1491
|
+
BindingName2["BetaRetailLegacyWorldName"] = "#beta_retail_legacy_world_name";
|
|
1492
|
+
BindingName2["BetaRetailLegacyWorldDate"] = "#beta_retail_legacy_world_date";
|
|
1493
|
+
BindingName2["BetaRetailLegacyWorldGameMode"] = "#beta_retail_legacy_world_game_mode";
|
|
1494
|
+
BindingName2["BetaRetailLegacyWorldFilesize"] = "#beta_retail_legacy_world_filesize";
|
|
1495
|
+
BindingName2["BetaRetailLegacyWorldImage"] = "#beta_retail_legacy_world_image";
|
|
1496
|
+
BindingName2["BetaRetailLegacyWorldTextureSource"] = "#beta_retail_legacy_world_texture_source";
|
|
1497
|
+
BindingName2["AddFriendButtonVisible"] = "#add_friend_button_visible";
|
|
1498
|
+
BindingName2["RealmsNotificationButtonVisible"] = "#realms_notification_button_visible";
|
|
1499
|
+
BindingName2["JoinByCodeVisible"] = "#join_by_code_visible";
|
|
1500
|
+
BindingName2["AddServerEnabled"] = "#add_server_enabled";
|
|
1501
|
+
BindingName2["CreateOnRealmsButtonVisible"] = "#create_on_realms_button_visible";
|
|
1502
|
+
BindingName2["WorldsTabImportButtonFocusDownOverride"] = "#worlds_tab_import_button_focus_down_override";
|
|
1503
|
+
BindingName2["SyncLegacyButtonText"] = "#sync_legacy_button_text";
|
|
1504
|
+
BindingName2["SyncLegacyWorldsButtonVisible"] = "#sync_legacy_worlds_button_visible";
|
|
1505
|
+
BindingName2["InboxEnabled"] = "#inbox_enabled";
|
|
1506
|
+
BindingName2["FriendsTabInvitationButtonFocusDownOverride"] = "#friends_tab_invitation_button_focus_down_override";
|
|
1507
|
+
BindingName2["OpenAccountSettingButtonGamecoreVisible"] = "#open_account_setting_button_gamecore_visible";
|
|
1508
|
+
BindingName2["RealmsWarningText"] = "#realms_warning_text";
|
|
1509
|
+
BindingName2["DeviceSunsetting"] = "#device_sunsetting";
|
|
1510
|
+
BindingName2["ShowNewPlayScreenOptIn"] = "#show_new_play_screen_opt_in";
|
|
1511
|
+
BindingName2["ShowNewPlayScreenServersOptIn"] = "#show_new_play_screen_servers_opt_in";
|
|
1512
|
+
BindingName2["PersonalRealmsGridVisible"] = "#personal_realms_grid_visible";
|
|
1513
|
+
BindingName2["RealmLabelVisible"] = "#realm_label_visible";
|
|
1514
|
+
BindingName2["FreePreviewRealmButtonVisible"] = "#free_preview_realm_button_visible";
|
|
1515
|
+
BindingName2["FreePreviewRealmNewButtonVisible"] = "#free_preview_realm_new_button_visible";
|
|
1516
|
+
BindingName2["FreePreviewRealmAvailable"] = "#free_preview_realm_available";
|
|
1517
|
+
BindingName2["PersonalRealmsGridDimension"] = "#personal_realms_grid_dimension";
|
|
1518
|
+
BindingName2["LoadingPersonalRealmsGridDimension"] = "#loading_personal_realms_grid_dimension";
|
|
1519
|
+
BindingName2["RealmsLoadingDisplayMessage"] = "#realms_loading_display_message";
|
|
1520
|
+
BindingName2["LoadingPersonalRealmsGridVisible"] = "#loading_personal_realms_grid_visible";
|
|
1521
|
+
BindingName2["RealmsTrialText"] = "#realms_trial_text";
|
|
1522
|
+
BindingName2["RealmTrialButtonVisible"] = "#realm_trial_button_visible";
|
|
1523
|
+
BindingName2["RealmNintendoFirstRealmPurchaseButtonVisible"] = "#realm_nintendo_first_realm_purchase_button_visible";
|
|
1524
|
+
BindingName2["MultiplayerBlockedPanelVisible"] = "#multiplayer_blocked_panel_visible";
|
|
1525
|
+
BindingName2["MultiplayerSessions"] = "#multiplayer_sessions";
|
|
1526
|
+
BindingName2["LocalWorldsVisible"] = "#local_worlds_visible";
|
|
1527
|
+
BindingName2["NoLocalWorlds"] = "#no_local_worlds";
|
|
1528
|
+
BindingName2["BetaRetailLocalWorldsVisible"] = "#beta_retail_local_worlds_visible";
|
|
1529
|
+
BindingName2["LegacyWorldsLoadingDisplayMessage"] = "#legacy_worlds_loading_display_message";
|
|
1530
|
+
BindingName2["LegacyWorldsVisible"] = "#legacy_worlds_visible";
|
|
1531
|
+
BindingName2["BetaRetailLegacyWorldsVisible"] = "#beta_retail_legacy_worlds_visible";
|
|
1532
|
+
BindingName2["NoLocalWorldSwitchVisible"] = "#no_local_world_switch_visible";
|
|
1533
|
+
BindingName2["NoLocalWorldsHelpLabel"] = "#no_local_worlds_help_label";
|
|
1534
|
+
BindingName2["NoLocalWorldHelpVisible"] = "#no_local_world_help_visible";
|
|
1535
|
+
BindingName2["NoLocalWorldsSwitchSettingVisible"] = "#no_local_worlds_switch_setting_visible";
|
|
1536
|
+
BindingName2["NoLocalWorldsLaunchHelpButtonLabel"] = "#no_local_worlds_launch_help_button_label";
|
|
1537
|
+
BindingName2["SwitchStorageTypeEnabled"] = "#switch_storage_type_enabled";
|
|
1538
|
+
BindingName2["SwitchStorageTypeToggleLabel"] = "#switch_storage_type_toggle_label";
|
|
1539
|
+
BindingName2["StorageLocationRadioExternal"] = "#storage_location_radio_external";
|
|
1540
|
+
BindingName2["StorageLocationRadioPackage"] = "#storage_location_radio_package";
|
|
1541
|
+
BindingName2["LanNetworkWorldItemGridDimension"] = "#lan_network_world_item_grid_dimension";
|
|
1542
|
+
BindingName2["LanGridVisible"] = "#lan_grid_visible";
|
|
1543
|
+
BindingName2["JoinableRealmsPanelVisible"] = "#joinable_realms_panel_visible";
|
|
1544
|
+
BindingName2["FriendsRealmsVisible"] = "#friends_realms_visible";
|
|
1545
|
+
BindingName2["FriendRealmsGridDimension"] = "#friend_realms_grid_dimension";
|
|
1546
|
+
BindingName2["LoadingFriendsRealmsGridDimension"] = "#loading_friends_realms_grid_dimension";
|
|
1547
|
+
BindingName2["LoadingFriendsRealmsGridVisible"] = "#loading_friends_realms_grid_visible";
|
|
1548
|
+
BindingName2["GetOfflineAuthcodeMessagePanelVisible"] = "#get_offline_authcode_message_panel_visible";
|
|
1549
|
+
BindingName2["NoFriendsRealmsVisible"] = "#no_friends_realms_visible";
|
|
1550
|
+
BindingName2["FriendsNetworkWorldItemGridDimension"] = "#friends_network_world_item_grid_dimension";
|
|
1551
|
+
BindingName2["FriendsGridVisible"] = "#friends_grid_visible";
|
|
1552
|
+
BindingName2["NoFriendsGridMessageText"] = "#no_friends_grid_message_text";
|
|
1553
|
+
BindingName2["NoFriendsGridMessageVisible"] = "#no_friends_grid_message_visible";
|
|
1554
|
+
BindingName2["CrossPlatformFriendsNetworkWorldItemGridDimension"] = "#cross_platform_friends_network_world_item_grid_dimension";
|
|
1555
|
+
BindingName2["CrossPlatformFriendsGridVisible"] = "#cross_platform_friends_grid_visible";
|
|
1556
|
+
BindingName2["NoCrossPlatformFriendsGridMessageText"] = "#no_cross_platform_friends_grid_message_text";
|
|
1557
|
+
BindingName2["NoCrossPlatformFriendsGridMessageVisible"] = "#no_cross_platform_friends_grid_message_visible";
|
|
1558
|
+
BindingName2["GeneralNoMultiplayerGridMessageText"] = "#general_no_multiplayer_grid_message_text";
|
|
1559
|
+
BindingName2["GeneralNoMultiplayerGridMessageVisible"] = "#general_no_multiplayer_grid_message_visible";
|
|
1560
|
+
BindingName2["IsAdditionalServerLabelVisible"] = "#is_additional_server_label_visible";
|
|
1561
|
+
BindingName2["ServersGridVisible"] = "#servers_grid_visible";
|
|
1562
|
+
BindingName2["LoadingServersProgressVisible"] = "#loading_servers_progress_visible";
|
|
1563
|
+
BindingName2["InternetConnectionText"] = "#internet_connection_text";
|
|
1564
|
+
BindingName2["MultiplayerBlockedText"] = "#multiplayer_blocked_text";
|
|
1565
|
+
BindingName2["FeatureServerMessageVisible"] = "#feature_server_message_visible";
|
|
1566
|
+
BindingName2["FeatureServerMessageText"] = "#feature_server_message_text";
|
|
1567
|
+
BindingName2["IsThirdPartyServerSelected"] = "#is_third_party_server_selected";
|
|
1568
|
+
BindingName2["IsAdditionalServerSelected"] = "#is_additional_server_selected";
|
|
1569
|
+
BindingName2["AddServerInfoVisible"] = "#add_server_info_visible";
|
|
1570
|
+
BindingName2["WorldItemCount"] = "#world_item_count";
|
|
1571
|
+
BindingName2["FriendsTabShowBouncing"] = "#friends_tab_show_bouncing";
|
|
1572
|
+
BindingName2["FriendsTabShowNotBouncing"] = "#friends_tab_show_not_bouncing";
|
|
1573
|
+
BindingName2["FriendsTabShowInvites"] = "#friends_tab_show_invites";
|
|
1574
|
+
BindingName2["FriendWorldItemCount"] = "#friend_world_item_count";
|
|
1575
|
+
BindingName2["ServerWorldItemCount"] = "#server_world_item_count";
|
|
1576
|
+
BindingName2["ExitButtonVisible"] = "#exit_button_visible";
|
|
1577
|
+
BindingName2["BumperTooltipsVisible"] = "#bumper_tooltips_visible";
|
|
1578
|
+
BindingName2["JoinByCodeTextEdit"] = "#join_by_code_text_edit";
|
|
1579
|
+
BindingName2["DevelopmentVersion"] = "#development_version";
|
|
1580
|
+
BindingName2["Version"] = "#version";
|
|
1581
|
+
BindingName2["TurtleVisible"] = "#turtle_visible";
|
|
1582
|
+
BindingName2["TurtleText"] = "#turtle_text";
|
|
1583
|
+
BindingName2["TtsText"] = "#tts_text";
|
|
1584
|
+
BindingName2["ModalTitleTts"] = "#modal_title_tts";
|
|
1585
|
+
BindingName2["ModalLabelTts"] = "#modal_label_tts";
|
|
1586
|
+
BindingName2["ProgressLabel"] = "#progress_label";
|
|
1587
|
+
BindingName2["ProgressCurrentLabel"] = "#progress_current_label";
|
|
1588
|
+
BindingName2["ProgressTotalLabel"] = "#progress_total_label";
|
|
1589
|
+
BindingName2["LeftPhotoVisibility"] = "#left_photo_visibility";
|
|
1590
|
+
BindingName2["RightPhotoVisibility"] = "#right_photo_visibility";
|
|
1591
|
+
BindingName2["PhotoPageItemNameLeft"] = "#photo_page_item_name_left";
|
|
1592
|
+
BindingName2["PhotoPageItemNameRight"] = "#photo_page_item_name_right";
|
|
1593
|
+
BindingName2["NoPickPhotosAlertVisibility"] = "#no_pick_photos_alert_visibility";
|
|
1594
|
+
BindingName2["TextBoxPhotos"] = "#text_box_photos";
|
|
1595
|
+
BindingName2["PhotoVisibility"] = "#photo_visibility";
|
|
1596
|
+
BindingName2["PagePrevVisibility"] = "#page_prev_visibility";
|
|
1597
|
+
BindingName2["PageNextVisibility"] = "#page_next_visibility";
|
|
1598
|
+
BindingName2["ExportVisibility"] = "#export_visibility";
|
|
1599
|
+
BindingName2["NoPicsAlertVisibility"] = "#no_pics_alert_visibility";
|
|
1600
|
+
BindingName2["PlayerRating"] = "#player_rating";
|
|
1601
|
+
BindingName2["CurrentRating5"] = "#current_rating_5";
|
|
1602
|
+
BindingName2["CurrentRating4"] = "#current_rating_4";
|
|
1603
|
+
BindingName2["CurrentRating3"] = "#current_rating_3";
|
|
1604
|
+
BindingName2["CurrentRating2"] = "#current_rating_2";
|
|
1605
|
+
BindingName2["CurrentRating1"] = "#current_rating_1";
|
|
1606
|
+
BindingName2["FooterText"] = "#footer_text";
|
|
1607
|
+
BindingName2["PlatformPicturePath"] = "#platform_picture_path";
|
|
1608
|
+
BindingName2["PlatformPictureFileSystem"] = "#platform_picture_file_system";
|
|
1609
|
+
BindingName2["GamerScore"] = "#gamer_score";
|
|
1610
|
+
BindingName2["PlayerOnline"] = "#player_online";
|
|
1611
|
+
BindingName2["PlayerOffline"] = "#player_offline";
|
|
1612
|
+
BindingName2["PlatformInfoVisible"] = "#platform_info_visible";
|
|
1613
|
+
BindingName2["PlatformName"] = "#platform_name";
|
|
1614
|
+
BindingName2["XblInfoVisible"] = "#xbl_info_visible";
|
|
1615
|
+
BindingName2["CurrentlyPlaying"] = "#currently_playing";
|
|
1616
|
+
BindingName2["CurrentlyPlayingVisible"] = "#currently_playing_visible";
|
|
1617
|
+
BindingName2["AddFriendButtonText"] = "#add_friend_button_text";
|
|
1618
|
+
BindingName2["RemoveFriendButtonText"] = "#remove_friend_button_text";
|
|
1619
|
+
BindingName2["RemoveFriendButtonVisible"] = "#remove_friend_button_visible";
|
|
1620
|
+
BindingName2["AddRemoveInProgress"] = "#add_remove_in_progress";
|
|
1621
|
+
BindingName2["IsFriend"] = "#is_friend";
|
|
1622
|
+
BindingName2["FriendStatusDropdownToggleLabel"] = "#friend_status_dropdown_toggle_label";
|
|
1623
|
+
BindingName2["MutePlayer"] = "#mute_player";
|
|
1624
|
+
BindingName2["BlockPlayer"] = "#block_player";
|
|
1625
|
+
BindingName2["FriendOption"] = "#friend_option";
|
|
1626
|
+
BindingName2["FriendHelperText"] = "#friend_helper_text";
|
|
1627
|
+
BindingName2["FavoriteOption"] = "#favorite_option";
|
|
1628
|
+
BindingName2["RemoveFriendOption"] = "#remove_friend_option";
|
|
1629
|
+
BindingName2["PlayerUuid"] = "#player_uuid";
|
|
1630
|
+
BindingName2["EnableEditAppearance"] = "#enable_edit_appearance";
|
|
1631
|
+
BindingName2["ManageOptionsVisible"] = "#manage_options_visible";
|
|
1632
|
+
BindingName2["Modal"] = "#modal";
|
|
1633
|
+
BindingName2["ArrowLeftEnabled"] = "#arrow_left_enabled";
|
|
1634
|
+
BindingName2["ArrowRightEnabled"] = "#arrow_right_enabled";
|
|
1635
|
+
BindingName2["IsPresetVisible"] = "#is_preset_visible";
|
|
1636
|
+
BindingName2["IsPresetAddVisible"] = "#is_preset_add_visible";
|
|
1637
|
+
BindingName2["IsRetryVisible"] = "#is_retry_visible";
|
|
1638
|
+
BindingName2["IsPresetLoadingVisible"] = "#is_preset_loading_visible";
|
|
1639
|
+
BindingName2["AppearancePresetPreview"] = "#appearance_preset_preview";
|
|
1640
|
+
BindingName2["PreviewIdx"] = "#preview_idx";
|
|
1641
|
+
BindingName2["SelectedSkinName"] = "#selected_skin_name";
|
|
1642
|
+
BindingName2["SelectedSkin"] = "#selected_skin";
|
|
1643
|
+
BindingName2["CenterPresetSize"] = "#center_preset_size";
|
|
1644
|
+
BindingName2["EditAppearanceErrorTooltipVisible"] = "#edit_appearance_error_tooltip_visible";
|
|
1645
|
+
BindingName2["MarketplaceDisabled"] = "#marketplace_disabled";
|
|
1646
|
+
BindingName2["EditAppearanceText"] = "#edit_appearance_text";
|
|
1647
|
+
BindingName2["DeleteButtonEnabled"] = "#delete_button_enabled";
|
|
1648
|
+
BindingName2["SelectedPersonaSkinText"] = "#selected_persona_skin_text";
|
|
1649
|
+
BindingName2["SelectedPersonaSkinIcon"] = "#selected_persona_skin_icon";
|
|
1650
|
+
BindingName2["IsAProfileSelected"] = "#is_a_profile_selected";
|
|
1651
|
+
BindingName2["LeftPanelTitle"] = "#left_panel_title";
|
|
1652
|
+
BindingName2["IsClassicSkinProfileSelected"] = "#is_classic_skin_profile_selected";
|
|
1653
|
+
BindingName2["IsFeaturedPanelVisible"] = "#is_featured_panel_visible";
|
|
1654
|
+
BindingName2["DeepLinkProfileLoadingVisible"] = "#deep_link_profile_loading_visible";
|
|
1655
|
+
BindingName2["PersonaTypeToggleState"] = "#persona_type_toggle_state";
|
|
1656
|
+
BindingName2["CreatePersonaPopupConfirmText"] = "#create_persona_popup_confirm_text";
|
|
1657
|
+
BindingName2["CreatePersonaHasSelectedType"] = "#create_persona_has_selected_type";
|
|
1658
|
+
BindingName2["SelectedPacks"] = "#selectedPacks";
|
|
1659
|
+
BindingName2["SelectedPackSize"] = "#selectedPackSize";
|
|
1660
|
+
BindingName2["ResourcePackName"] = "#resource_pack_name";
|
|
1661
|
+
BindingName2["RequiredResourcePackGridDimension"] = "#required_resource_pack_grid_dimension";
|
|
1662
|
+
BindingName2["OptionalResourcePackGridDimension"] = "#optional_resource_pack_grid_dimension";
|
|
1663
|
+
BindingName2["ShowRayTracingWarning"] = "#show_ray_tracing_warning";
|
|
1664
|
+
BindingName2["PackDownloadTypeMessage"] = "#pack_download_type_message";
|
|
1665
|
+
BindingName2["RayTracingWarningMessage"] = "#ray_tracing_warning_message";
|
|
1666
|
+
BindingName2["EmptyBinding"] = "#empty_binding";
|
|
1667
|
+
BindingName2["JoinAndDownloadEverything"] = "#join_and_download_everything";
|
|
1668
|
+
BindingName2["JoinAndDownloadRequired"] = "#join_and_download_required";
|
|
1669
|
+
BindingName2["ProgressText"] = "#progress_text";
|
|
1670
|
+
BindingName2["CodeText"] = "#code_text";
|
|
1671
|
+
BindingName2["CodeNumber"] = "#code_number";
|
|
1672
|
+
BindingName2["BarAnimationVisible"] = "#bar_animation_visible";
|
|
1673
|
+
BindingName2["SpinnerAnimationVisible"] = "#spinner_animation_visible";
|
|
1674
|
+
BindingName2["LoadingBarPercentage"] = "#loading_bar_percentage";
|
|
1675
|
+
BindingName2["LoadingBarVisible"] = "#loading_bar_visible";
|
|
1676
|
+
BindingName2["TouchProgressBarVisible"] = "#touch_progress_bar_visible";
|
|
1677
|
+
BindingName2["LoadingBarTotalAmount"] = "#loading_bar_total_amount";
|
|
1678
|
+
BindingName2["ProgressBarTotalAmount"] = "#progress_bar_total_amount";
|
|
1679
|
+
BindingName2["LoadingBarCurrentAmount"] = "#loading_bar_current_amount";
|
|
1680
|
+
BindingName2["ProgressBarCurrentAmount"] = "#progress_bar_current_amount";
|
|
1681
|
+
BindingName2["UseDeterminateAnimation"] = "#use_determinate_animation";
|
|
1682
|
+
BindingName2["ProgressAnimationVisible"] = "#progress_animation_visible";
|
|
1683
|
+
BindingName2["CancelButtonText"] = "#cancel_button_text";
|
|
1684
|
+
BindingName2["CancelVisible"] = "#cancel_visible";
|
|
1685
|
+
BindingName2["RetryAndAbortVisible"] = "#retry_and_abort_visible";
|
|
1686
|
+
BindingName2["OkVisible"] = "#ok_visible";
|
|
1687
|
+
BindingName2["EduCloudUploadImagesVisible"] = "#edu_cloud_upload_images_visible";
|
|
1688
|
+
BindingName2["CloudLinkVisible"] = "#cloud_link_visible";
|
|
1689
|
+
BindingName2["EduCloudErrorHyperlinkLabel"] = "#edu_cloud_error_hyperlink_label";
|
|
1690
|
+
BindingName2["OneButtonPanel"] = "#one_button_panel";
|
|
1691
|
+
BindingName2["EduCloudUploadError"] = "#edu_cloud_upload_error";
|
|
1692
|
+
BindingName2["EduCloudDownloadError"] = "#edu_cloud_download_error";
|
|
1693
|
+
BindingName2["MobileDataIconVisible"] = "#mobile_data_icon_visible";
|
|
1694
|
+
BindingName2["ButtonName"] = "#ButtonName";
|
|
1695
|
+
BindingName2["Title"] = "#title";
|
|
1696
|
+
BindingName2["PendingInvitesVisible"] = "#pending_invites_visible";
|
|
1697
|
+
BindingName2["RealmsNameBox"] = "#realms_name_box";
|
|
1698
|
+
BindingName2["RealmsNameTextbox"] = "#realms_name_textbox";
|
|
1699
|
+
BindingName2["PlaceholderRealmName"] = "#placeholder_realm_name";
|
|
1700
|
+
BindingName2["SelectedDurationShort"] = "#selected_duration_short";
|
|
1701
|
+
BindingName2["SelectedDurationLong"] = "#selected_duration_long";
|
|
1702
|
+
BindingName2["PlayerCount2"] = "#player_count_2";
|
|
1703
|
+
BindingName2["HasCheckedTos"] = "#has_checked_tos";
|
|
1704
|
+
BindingName2["ConfirmationButtonText"] = "#confirmation_button_text";
|
|
1705
|
+
BindingName2["RealmsSwitchNsoInfo"] = "#realms_switch_nso_info";
|
|
1706
|
+
BindingName2["RealmsTermsInfo"] = "#realms_terms_info";
|
|
1707
|
+
BindingName2["RealmsTermsInfoExtra"] = "#realms_terms_info_extra";
|
|
1708
|
+
BindingName2["ResponseButtonsVisible"] = "#response_buttons_visible";
|
|
1709
|
+
BindingName2["RealmName"] = "#realm_name";
|
|
1710
|
+
BindingName2["RealmOwner"] = "#realm_owner";
|
|
1711
|
+
BindingName2["InviteStatus"] = "#invite_status";
|
|
1712
|
+
BindingName2["AcceptPanelVisible"] = "#accept_panel_visible";
|
|
1713
|
+
BindingName2["GamertagItemGridDimension"] = "#gamertag_item_grid_dimension";
|
|
1714
|
+
BindingName2["HideInvites"] = "#hide_invites";
|
|
1715
|
+
BindingName2["InviteToggleState"] = "#invite_toggle_state";
|
|
1716
|
+
BindingName2["NoInvitesVisible"] = "#no_invites_visible";
|
|
1717
|
+
BindingName2["WorldImage"] = "#world_image";
|
|
1718
|
+
BindingName2["WorldTextureSource"] = "#world_texture_source";
|
|
1719
|
+
BindingName2["SlotIsFilled"] = "#slot_is_filled";
|
|
1720
|
+
BindingName2["SlotIsCurrentWorld"] = "#slot_is_current_world";
|
|
1721
|
+
BindingName2["SlotEditButtonsToggle"] = "#slot_edit_buttons_toggle";
|
|
1722
|
+
BindingName2["SlotImageVisible"] = "#slot_image_visible";
|
|
1723
|
+
BindingName2["NewSlotLabel"] = "#new_slot_label";
|
|
1724
|
+
BindingName2["WorldSlotName"] = "#world_slot_name";
|
|
1725
|
+
BindingName2["WorldSlotType"] = "#world_slot_type";
|
|
1726
|
+
BindingName2["WarningTextVisible"] = "#warning_text_visible";
|
|
1727
|
+
BindingName2["SlotsScreenHeader"] = "#slots_screen_header";
|
|
1728
|
+
BindingName2["RealmPlayerCount"] = "#realm_player_count";
|
|
1729
|
+
BindingName2["RealmDurationLabel"] = "#realm_duration_label";
|
|
1730
|
+
BindingName2["RealmSubscriptionOrigin"] = "#realm_subscription_origin";
|
|
1731
|
+
BindingName2["RealmSubscriptionOriginAddendum"] = "#realm_subscription_origin_addendum";
|
|
1732
|
+
BindingName2["RealmSubscriptionOriginVisibility"] = "#realm_subscription_origin_visibility";
|
|
1733
|
+
BindingName2["RealmConsumableToSubscriptionInfo"] = "#realm_consumable_to_subscription_info";
|
|
1734
|
+
BindingName2["RealmConsumableToSubscriptionVisibility"] = "#realm_consumable_to_subscription_visibility";
|
|
1735
|
+
BindingName2["DeleteRealmButtonVisible"] = "#delete_realm_button_visible";
|
|
1736
|
+
BindingName2["OpenRealmButtonVisible"] = "#open_realm_button_visible";
|
|
1737
|
+
BindingName2["CloseRealmButtonVisible"] = "#close_realm_button_visible";
|
|
1738
|
+
BindingName2["RealmsSubscriptionLoadingMessageVisible"] = "#realms_subscription_loading_message_visible";
|
|
1739
|
+
BindingName2["RealmsSubscriptionLoadingFailedMessageVisible"] = "#realms_subscription_loading_failed_message_visible";
|
|
1740
|
+
BindingName2["RealmsPurchasedStore"] = "#realms_purchased_store";
|
|
1741
|
+
BindingName2["RealmsSubscriptionInfoVisible"] = "#realms_subscription_info_visible";
|
|
1742
|
+
BindingName2["LinkName"] = "#link_name";
|
|
1743
|
+
BindingName2["LinkNameTTS"] = "#link_name_TTS";
|
|
1744
|
+
BindingName2["LinkExpiry"] = "#link_expiry";
|
|
1745
|
+
BindingName2["LinkExpiryTTS"] = "#link_expiry_TTS";
|
|
1746
|
+
BindingName2["LinkState"] = "#link_state";
|
|
1747
|
+
BindingName2["RealmsInviteLinksLoadingMessageVisible"] = "#realms_invite_links_loading_message_visible";
|
|
1748
|
+
BindingName2["RealmsInviteLinksLoadingFailedMessageVisible"] = "#realms_invite_links_loading_failed_message_visible";
|
|
1749
|
+
BindingName2["RealmInviteLinksDescription"] = "#realm_invite_links_description";
|
|
1750
|
+
BindingName2["RealmsInviteLinksCollectionLength"] = "#realms_invite_links_collection_length";
|
|
1751
|
+
BindingName2["AddInviteLinkButtonVisible"] = "#add_invite_link_button_visible";
|
|
1752
|
+
BindingName2["AddInviteLinkButtonEnabled"] = "#add_invite_link_button_enabled";
|
|
1753
|
+
BindingName2["RealmsInviteLinksInfoVisible"] = "#realms_invite_links_info_visible";
|
|
1754
|
+
BindingName2["BranchName"] = "#branch_name";
|
|
1755
|
+
BindingName2["CommitId"] = "#commit_id";
|
|
1756
|
+
BindingName2["MatchingBranchName"] = "#matching_branch_name";
|
|
1757
|
+
BindingName2["MatchingCommitId"] = "#matching_commit_id";
|
|
1758
|
+
BindingName2["RealmsBranchGridDimension"] = "#realms_branch_grid_dimension";
|
|
1759
|
+
BindingName2["SelectedBranchCommitId"] = "#selected_branch_commit_id";
|
|
1760
|
+
BindingName2["VersionFilterTextBox"] = "#version_filter_text_box";
|
|
1761
|
+
BindingName2["PrevButtonVisible"] = "#prev_button_visible";
|
|
1762
|
+
BindingName2["PageIndexText"] = "#page_index_text";
|
|
1763
|
+
BindingName2["NextButtonVisible"] = "#next_button_visible";
|
|
1764
|
+
BindingName2["DateText"] = "#date_text";
|
|
1765
|
+
BindingName2["VersionText"] = "#version_text";
|
|
1766
|
+
BindingName2["TimeText"] = "#time_text";
|
|
1767
|
+
BindingName2["SizeText"] = "#size_text";
|
|
1768
|
+
BindingName2["BackupItemButtonEnabled"] = "#backup_item_button_enabled";
|
|
1769
|
+
BindingName2["RealmsBackupGridDimension"] = "#realms_backup_grid_dimension";
|
|
1770
|
+
BindingName2["BackupInfotext"] = "#backup_infotext";
|
|
1771
|
+
BindingName2["BackupNetworkErrormsg"] = "#backup_network_errormsg";
|
|
1772
|
+
BindingName2["ProgressLoadingBarsBackupsVisible"] = "#progress_loading_bars_backups_visible";
|
|
1773
|
+
BindingName2["BackupNetworkErrorVisible"] = "#backup_network_error_visible";
|
|
1774
|
+
BindingName2["CreateButtonVisible"] = "#create_button_visible";
|
|
1775
|
+
BindingName2["DisabledPlayButtonVisible"] = "#disabled_play_button_visible";
|
|
1776
|
+
BindingName2["IsRealmExpired"] = "#is_realm_expired";
|
|
1777
|
+
BindingName2["RealmDefaultPermissionDropdownToggleLabel"] = "#realm_default_permission_dropdown_toggle_label";
|
|
1778
|
+
BindingName2["RealmDefaultPermissionDropdownEnabled"] = "#realm_default_permission_dropdown_enabled";
|
|
1779
|
+
BindingName2["MembersSectionContent"] = "#members_section_content";
|
|
1780
|
+
BindingName2["MembersPageIndexText"] = "#members_page_index_text";
|
|
1781
|
+
BindingName2["MembersButtonsVisible"] = "#members_buttons_visible";
|
|
1782
|
+
BindingName2["MembersPrevButtonVisible"] = "#members_prevButton_visible";
|
|
1783
|
+
BindingName2["MembersNextButtonVisible"] = "#members_nextButton_visible";
|
|
1784
|
+
BindingName2["InvitedSectionContent"] = "#invited_section_content";
|
|
1785
|
+
BindingName2["InvitedFriendsPageIndexText"] = "#invited_friends_page_index_text";
|
|
1786
|
+
BindingName2["InvitedFriendsButtonsVisible"] = "#invited_friends_buttons_visible";
|
|
1787
|
+
BindingName2["InvitedFriendsPrevButtonVisible"] = "#invited_friends_prevButton_visible";
|
|
1788
|
+
BindingName2["InvitedFriendsNextButtonVisible"] = "#invited_friends_nextButton_visible";
|
|
1789
|
+
BindingName2["UninvitedSectionContent"] = "#uninvited_section_content";
|
|
1790
|
+
BindingName2["UninvitedFriendsPageIndexText"] = "#uninvited_friends_page_index_text";
|
|
1791
|
+
BindingName2["UninvitedFriendsButtonsVisible"] = "#uninvited_friends_buttons_visible";
|
|
1792
|
+
BindingName2["UninvitedFriendsPrevButtonVisible"] = "#uninvited_friends_prevButton_visible";
|
|
1793
|
+
BindingName2["UninvitedFriendsNextButtonVisible"] = "#uninvited_friends_nextButton_visible";
|
|
1794
|
+
BindingName2["BlockedSectionContent"] = "#blocked_section_content";
|
|
1795
|
+
BindingName2["BlockedPlayersPageIndexText"] = "#blocked_players_page_index_text";
|
|
1796
|
+
BindingName2["BlockedPlayersButtonsVisible"] = "#blocked_players_buttons_visible";
|
|
1797
|
+
BindingName2["BlockedPlayersPrevButtonVisible"] = "#blocked_players_prevButton_visible";
|
|
1798
|
+
BindingName2["BlockedPlayersNextButtonVisible"] = "#blocked_players_nextButton_visible";
|
|
1799
|
+
BindingName2["LoadingFriends"] = "#loading_friends";
|
|
1800
|
+
BindingName2["MembersListEnabled"] = "#members_list_enabled";
|
|
1801
|
+
BindingName2["OptionsVisible"] = "#options_visible";
|
|
1802
|
+
BindingName2["InvitedFriendsVisible"] = "#invited_friends_visible";
|
|
1803
|
+
BindingName2["MemberLoadingText"] = "#member_loading_text";
|
|
1804
|
+
BindingName2["MembersVisible"] = "#members_visible";
|
|
1805
|
+
BindingName2["BlockedPlayersVisible"] = "#blocked_players_visible";
|
|
1806
|
+
BindingName2["UninvitedFriendsVisible"] = "#uninvited_friends_visible";
|
|
1807
|
+
BindingName2["ThirdPartyProfileName"] = "#third_party_profile_name";
|
|
1808
|
+
BindingName2["RealName"] = "#real_name";
|
|
1809
|
+
BindingName2["ShowMemberSettings"] = "#show_member_settings";
|
|
1810
|
+
BindingName2["CollectionPermissionLevelDropdownIconTexture"] = "#collection_permission_level_dropdown_icon_texture";
|
|
1811
|
+
BindingName2["PlayerPermissionsDropdownToggleLabel"] = "#player_permissions_dropdown_toggle_label";
|
|
1812
|
+
BindingName2["PlayerPermissionsDropdownEnabled"] = "#player_permissions_dropdown_enabled";
|
|
1813
|
+
BindingName2["Operator"] = "#operator";
|
|
1814
|
+
BindingName2["PlayerFilterTextBox"] = "#player_filter_text_box";
|
|
1815
|
+
BindingName2["RealmInviteLinkUrl"] = "#realm_invite_link_url";
|
|
1816
|
+
BindingName2["RealmInviteLinkUrlTTS"] = "#realm_invite_link_url_TTS";
|
|
1817
|
+
BindingName2["CopyShareEnabled"] = "#copy_share_enabled";
|
|
1818
|
+
BindingName2["ActivateLink"] = "#activate_link";
|
|
1819
|
+
BindingName2["ActivateLinkEnabled"] = "#activate_link_enabled";
|
|
1820
|
+
BindingName2["InfiniteLink"] = "#infinite_link";
|
|
1821
|
+
BindingName2["InfiniteLinkEnabled"] = "#infinite_link_enabled";
|
|
1822
|
+
BindingName2["InviteLinkExpirationTime"] = "#invite_link_expiration_time";
|
|
1823
|
+
BindingName2["InviteLinkExpirationTimeTTS"] = "#invite_link_expiration_time_TTS";
|
|
1824
|
+
BindingName2["ExpirationDurationDropdownEnabled"] = "#expiration_duration_dropdown_enabled";
|
|
1825
|
+
BindingName2["ExpirationDurationDropdownToggleLabel"] = "#expiration_duration_dropdown_toggle_label";
|
|
1826
|
+
BindingName2["ExpirationDurationRadioNever"] = "#expiration_duration_radio_never";
|
|
1827
|
+
BindingName2["ExpirationDurationRadioHalfHour"] = "#expiration_duration_radio_halfHour";
|
|
1828
|
+
BindingName2["ExpirationDurationRadioHour"] = "#expiration_duration_radio_hour";
|
|
1829
|
+
BindingName2["ExpirationDurationRadioQuarterDay"] = "#expiration_duration_radio_quarterDay";
|
|
1830
|
+
BindingName2["ExpirationDurationRadioHalfDay"] = "#expiration_duration_radio_halfDay";
|
|
1831
|
+
BindingName2["ExpirationDurationRadioDay"] = "#expiration_duration_radio_day";
|
|
1832
|
+
BindingName2["ExpirationDurationRadioWeek"] = "#expiration_duration_radio_week";
|
|
1833
|
+
BindingName2["RealmInviteLinkActive"] = "#realm_invite_link_active";
|
|
1834
|
+
BindingName2["IsContentTab"] = "#is_content_tab";
|
|
1835
|
+
BindingName2["ContentTabSections"] = "#content_tab_sections";
|
|
1836
|
+
BindingName2["RealmsContentCreatorButtonVisible"] = "#realms_content_creator_button_visible";
|
|
1837
|
+
BindingName2["PacksLabel"] = "#packs_label";
|
|
1838
|
+
BindingName2["RealmsContentSubEnabled"] = "#realms_contentSub_enabled";
|
|
1839
|
+
BindingName2["RealmsPlusOneMonthFreeTrialVisible"] = "#realms_plus_one_month_free_trial_visible";
|
|
1840
|
+
BindingName2["LandingInfoSubscribe"] = "#landing_info_subscribe";
|
|
1841
|
+
BindingName2["LandingInfoPreviewLine1"] = "#landing_info_preview_line_1";
|
|
1842
|
+
BindingName2["LandingInfoPreviewLine2"] = "#landing_info_preview_line_2";
|
|
1843
|
+
BindingName2["LandingInfoPreviewLine3"] = "#landing_info_preview_line_3";
|
|
1844
|
+
BindingName2["LandingInfoPreviewLine4"] = "#landing_info_preview_line_4";
|
|
1845
|
+
BindingName2["PlatformTermControls"] = "#platform_term_controls";
|
|
1846
|
+
BindingName2["UnderstandPurchaseWarning"] = "#understand_purchase_warning";
|
|
1847
|
+
BindingName2["IsUnderstandChecked"] = "#is_understand_checked";
|
|
1848
|
+
BindingName2["CrafterOutputItemSelectedBannerColors"] = "#crafter_output_item_selected_banner_colors";
|
|
1849
|
+
BindingName2["CrafterOutputItemSelectedBannerType"] = "#crafter_output_item_selected_banner_type";
|
|
1850
|
+
BindingName2["CrafterOutputItemSelectedDecoratedPotSherds"] = "#crafter_output_item_selected_decorated_pot_sherds";
|
|
1851
|
+
BindingName2["HasErrors"] = "#has_errors";
|
|
1852
|
+
BindingName2["HasWarnings"] = "#has_warnings";
|
|
1853
|
+
BindingName2["ErrorFree"] = "#error_free";
|
|
1854
|
+
BindingName2["ReportGenerating"] = "#report_generating";
|
|
1855
|
+
BindingName2["AnyErrors"] = "#any_errors";
|
|
1856
|
+
BindingName2["AnyWarnings"] = "#any_warnings";
|
|
1857
|
+
BindingName2["NumWarnings"] = "#num_warnings";
|
|
1858
|
+
BindingName2["NumErrors"] = "#num_errors";
|
|
1859
|
+
BindingName2["HasExpired"] = "#has_expired";
|
|
1860
|
+
BindingName2["IsReadMore"] = "#is_read_more";
|
|
1861
|
+
BindingName2["IsReadLess"] = "#is_read_less";
|
|
1862
|
+
BindingName2["DirectionButtonVisible"] = "#direction_button_visible";
|
|
1863
|
+
BindingName2["IsSelected"] = "#is_selected";
|
|
1864
|
+
BindingName2["CanMove"] = "#can_move";
|
|
1865
|
+
BindingName2["CanGoToStore"] = "#can_go_to_store";
|
|
1866
|
+
BindingName2["CanSortUp"] = "#can_sort_up";
|
|
1867
|
+
BindingName2["CanSortDown"] = "#can_sort_down";
|
|
1868
|
+
BindingName2["ReportButtonVisible"] = "#report_button_visible";
|
|
1869
|
+
BindingName2["HasPackSettings"] = "#has_pack_settings";
|
|
1870
|
+
BindingName2["AvailableCount"] = "#available_count";
|
|
1871
|
+
BindingName2["AvailableGridVisible"] = "#available_grid_visible";
|
|
1872
|
+
BindingName2["RealmsCount"] = "#realms_count";
|
|
1873
|
+
BindingName2["RealmsGridVisible"] = "#realms_grid_visible";
|
|
1874
|
+
BindingName2["UnownedCount"] = "#unowned_count";
|
|
1875
|
+
BindingName2["UnownedGridVisible"] = "#unowned_grid_visible";
|
|
1876
|
+
BindingName2["SelectedCount"] = "#selected_count";
|
|
1877
|
+
BindingName2["SelectedGridVisible"] = "#selected_grid_visible";
|
|
1878
|
+
BindingName2["Name"] = "#name";
|
|
1879
|
+
BindingName2["Size"] = "#size";
|
|
1880
|
+
BindingName2["Description"] = "#description";
|
|
1881
|
+
BindingName2["ForceUserAgreementLevel"] = "#force_user_agreement_level";
|
|
1882
|
+
BindingName2["ForceUserAgreementLevelEnabled"] = "#force_user_agreement_level_enabled";
|
|
1883
|
+
BindingName2["WorldTemplateOptionLockedWarningText"] = "#world_template_option_locked_warning_text";
|
|
1884
|
+
BindingName2["ForcePackDownloadEnabledLevel"] = "#force_pack_download_enabled_level";
|
|
1885
|
+
BindingName2["ForcePackDownloadLockedLevel"] = "#force_pack_download_locked_level";
|
|
1886
|
+
BindingName2["WarnOrError"] = "#warn_or_error";
|
|
1887
|
+
BindingName2["AnyExceptions"] = "#any_exceptions";
|
|
1888
|
+
BindingName2["RealmsVisible"] = "#realms_visible";
|
|
1889
|
+
BindingName2["LeftSafeZoneOffset"] = "#left_safe_zone_offset";
|
|
1890
|
+
BindingName2["BottomSafeZoneOffset"] = "#bottom_safe_zone_offset";
|
|
1891
|
+
BindingName2["RightSafeZoneOffset"] = "#right_safe_zone_offset";
|
|
1892
|
+
BindingName2["TopSafeZoneOffset"] = "#top_safe_zone_offset";
|
|
1893
|
+
BindingName2["SafeZoneAllSliderLabel"] = "#safe_zone_all_slider_label";
|
|
1894
|
+
BindingName2["SafeZoneAll"] = "#safe_zone_all";
|
|
1895
|
+
BindingName2["SafeZoneAllEnabled"] = "#safe_zone_all_enabled";
|
|
1896
|
+
BindingName2["SafeZoneAllTextValue"] = "#safe_zone_all_text_value";
|
|
1897
|
+
BindingName2["SafeZoneXSliderLabel"] = "#safe_zone_x_slider_label";
|
|
1898
|
+
BindingName2["SafeZoneX"] = "#safe_zone_x";
|
|
1899
|
+
BindingName2["SafeZoneXEnabled"] = "#safe_zone_x_enabled";
|
|
1900
|
+
BindingName2["SafeZoneXTextValue"] = "#safe_zone_x_text_value";
|
|
1901
|
+
BindingName2["SafeZoneYSliderLabel"] = "#safe_zone_y_slider_label";
|
|
1902
|
+
BindingName2["SafeZoneY"] = "#safe_zone_y";
|
|
1903
|
+
BindingName2["SafeZoneYEnabled"] = "#safe_zone_y_enabled";
|
|
1904
|
+
BindingName2["SafeZoneYTextValue"] = "#safe_zone_y_text_value";
|
|
1905
|
+
BindingName2["ScreenPositionXSliderLabel"] = "#screen_position_x_slider_label";
|
|
1906
|
+
BindingName2["ScreenPositionX"] = "#screen_position_x";
|
|
1907
|
+
BindingName2["ScreenPositionXEnabled"] = "#screen_position_x_enabled";
|
|
1908
|
+
BindingName2["ScreenPositionXTextValue"] = "#screen_position_x_text_value";
|
|
1909
|
+
BindingName2["ScreenPositionYSliderLabel"] = "#screen_position_y_slider_label";
|
|
1910
|
+
BindingName2["ScreenPositionY"] = "#screen_position_y";
|
|
1911
|
+
BindingName2["ScreenPositionYEnabled"] = "#screen_position_y_enabled";
|
|
1912
|
+
BindingName2["ScreenPositionYTextValue"] = "#screen_position_y_text_value";
|
|
1913
|
+
BindingName2["FileSizeProgress"] = "#file_size_progress";
|
|
1914
|
+
BindingName2["HasFileSpaceAvailable"] = "#has_file_space_available";
|
|
1915
|
+
BindingName2["FileSizeTotal"] = "#file_size_total";
|
|
1916
|
+
BindingName2["FileSizeAvailable"] = "#file_size_available";
|
|
1917
|
+
BindingName2["SupportsAvailableSpaceQuery"] = "#supports_available_space_query";
|
|
1918
|
+
BindingName2["FileLocation"] = "#file_location";
|
|
1919
|
+
BindingName2["FileSizeNeeded"] = "#file_size_needed";
|
|
1920
|
+
BindingName2["ProgressPanelVisible"] = "#progress_panel_visible";
|
|
1921
|
+
BindingName2["TransferErrorDescription"] = "#transfer_error_description";
|
|
1922
|
+
BindingName2["PlayerScoreSidebar"] = "#player_score_sidebar";
|
|
1923
|
+
BindingName2["PlayerNameSidebar"] = "#player_name_sidebar";
|
|
1924
|
+
BindingName2["ObjectiveSidebarName"] = "#objective_sidebar_name";
|
|
1925
|
+
BindingName2["ScoreboardSidebarSize"] = "#scoreboard_sidebar_size";
|
|
1926
|
+
BindingName2["ListScoresNotEmpty"] = "#list_scores_not_empty";
|
|
1927
|
+
BindingName2["UnscoredNotEmpty"] = "#unscored_not_empty";
|
|
1928
|
+
BindingName2["PlayerListTitle"] = "#player_list_title";
|
|
1929
|
+
BindingName2["PlayerRank"] = "#player_rank";
|
|
1930
|
+
BindingName2["PlayerIcon"] = "#player_icon";
|
|
1931
|
+
BindingName2["PlayerIconFilesystem"] = "#player_icon_filesystem";
|
|
1932
|
+
BindingName2["PermissionIcon"] = "#permission_icon";
|
|
1933
|
+
BindingName2["PlayerScore"] = "#player_score";
|
|
1934
|
+
BindingName2["CanClickPlayerButton"] = "#can_click_player_button";
|
|
1935
|
+
BindingName2["UnscoredListSize"] = "#unscored_list_size";
|
|
1936
|
+
BindingName2["ScoredListSize"] = "#scored_list_size";
|
|
1937
|
+
BindingName2["ExistingWorldButtonEnabled"] = "#existing_world_button_enabled";
|
|
1938
|
+
BindingName2["ExistingWorldIcon"] = "#existing_world_icon";
|
|
1939
|
+
BindingName2["ExistingWorldIconFileSystem"] = "#existing_world_icon_file_system";
|
|
1940
|
+
BindingName2["RealmsWorldsTitleWithCount"] = "#realms_worlds_title_with_count";
|
|
1941
|
+
BindingName2["RealmsWorldItemGridDimension"] = "#realms_world_item_grid_dimension";
|
|
1942
|
+
BindingName2["LocalWorldsTitleWithCount"] = "#local_worlds_title_with_count";
|
|
1943
|
+
BindingName2["RealmsWorldTitle"] = "#realms_world_title";
|
|
1944
|
+
BindingName2["RealmsWorldDescription"] = "#realms_world_description";
|
|
1945
|
+
BindingName2["FormText"] = "#form_text";
|
|
1946
|
+
BindingName2["FormButtonLength"] = "#form_button_length";
|
|
1947
|
+
BindingName2["FormButtonTexture"] = "#form_button_texture";
|
|
1948
|
+
BindingName2["FormButtonTextureFileSystem"] = "#form_button_texture_file_system";
|
|
1949
|
+
BindingName2["FormButtonText"] = "#form_button_text";
|
|
1950
|
+
BindingName2["CustomFormLength"] = "#custom_form_length";
|
|
1951
|
+
BindingName2["SubmitText"] = "#submit_text";
|
|
1952
|
+
BindingName2["SubmitButtonVisible"] = "#submit_button_visible";
|
|
1953
|
+
BindingName2["CustomText"] = "#custom_text";
|
|
1954
|
+
BindingName2["CustomToggleState"] = "#custom_toggle_state";
|
|
1955
|
+
BindingName2["CustomToggleEnabled"] = "#custom_toggle_enabled";
|
|
1956
|
+
BindingName2["CustomSliderText"] = "#custom_slider_text";
|
|
1957
|
+
BindingName2["CustomSliderValue"] = "#custom_slider_value";
|
|
1958
|
+
BindingName2["CustomSliderTextValue"] = "#custom_slider_text_value";
|
|
1959
|
+
BindingName2["CustomSliderEnabled"] = "#custom_slider_enabled";
|
|
1960
|
+
BindingName2["CustomSliderStepText"] = "#custom_slider_step_text";
|
|
1961
|
+
BindingName2["CustomSliderStepValue"] = "#custom_slider_step_value";
|
|
1962
|
+
BindingName2["CustomSliderStepTextValue"] = "#custom_slider_step_text_value";
|
|
1963
|
+
BindingName2["CustomSliderSteps"] = "#custom_slider_steps";
|
|
1964
|
+
BindingName2["DropdownOptionText"] = "#dropdown_option_text";
|
|
1965
|
+
BindingName2["CustomDropdownLength"] = "#custom_dropdown_length";
|
|
1966
|
+
BindingName2["CustomRadioToggled"] = "#custom_radio_toggled";
|
|
1967
|
+
BindingName2["CustomRadioText"] = "#custom_radio_text";
|
|
1968
|
+
BindingName2["CustomPlaceholderText"] = "#custom_placeholder_text";
|
|
1969
|
+
BindingName2["CustomInputText"] = "#custom_input_text";
|
|
1970
|
+
BindingName2["CustomInputEnabled"] = "#custom_input_enabled";
|
|
1971
|
+
BindingName2["BindingButtonText"] = "#binding_button_text";
|
|
1972
|
+
BindingName2["BindingIconSprite"] = "#binding_icon_sprite";
|
|
1973
|
+
BindingName2["KeymappingName"] = "#keymapping_name";
|
|
1974
|
+
BindingName2["AudibleKeymappingName"] = "#audible_keymapping_name";
|
|
1975
|
+
BindingName2["KeyboardFullGridDimension"] = "#keyboard_full_grid_dimension";
|
|
1976
|
+
BindingName2["KeyboardStandardGridDimension"] = "#keyboard_standard_grid_dimension";
|
|
1977
|
+
BindingName2["KeyboardMouseSensitivitySliderLabel"] = "#keyboard_mouse_sensitivity_slider_label";
|
|
1978
|
+
BindingName2["KeyboardMouseSensitivity"] = "#keyboard_mouse_sensitivity";
|
|
1979
|
+
BindingName2["KeyboardMouseSensitivityTextValue"] = "#keyboard_mouse_sensitivity_text_value";
|
|
1980
|
+
BindingName2["KeyboardMouseSensitivityEnabled"] = "#keyboard_mouse_sensitivity_enabled";
|
|
1981
|
+
BindingName2["SpyglassMouseDampeningSliderLabel"] = "#spyglass_mouse_dampening_slider_label";
|
|
1982
|
+
BindingName2["SpyglassMouseDampening"] = "#spyglass_mouse_dampening";
|
|
1983
|
+
BindingName2["SpyglassMouseDampeningTextValue"] = "#spyglass_mouse_dampening_text_value";
|
|
1984
|
+
BindingName2["VrUiMouseSensitivitySliderLabel"] = "#vr_ui_mouse_sensitivity_slider_label";
|
|
1985
|
+
BindingName2["VrUiMouseSensitivity"] = "#vr_ui_mouse_sensitivity";
|
|
1986
|
+
BindingName2["VrUiMouseSensitivityTextValue"] = "#vr_ui_mouse_sensitivity_text_value";
|
|
1987
|
+
BindingName2["VrUiMouseSensitivityEnabled"] = "#vr_ui_mouse_sensitivity_enabled";
|
|
1988
|
+
BindingName2["KeyboardMouseInvertYAxis"] = "#keyboard_mouse_invert_y_axis";
|
|
1989
|
+
BindingName2["KeyboardMouseInvertYAxisEnabled"] = "#keyboard_mouse_invert_y_axis_enabled";
|
|
1990
|
+
BindingName2["KeyboardMouseAutojump"] = "#keyboard_mouse_autojump";
|
|
1991
|
+
BindingName2["KeyboardMouseAutojumpEnabled"] = "#keyboard_mouse_autojump_enabled";
|
|
1992
|
+
BindingName2["KeyboardMouseToggleCrouch"] = "#keyboard_mouse_toggle_crouch";
|
|
1993
|
+
BindingName2["KeyboardMouseToggleCrouchEnabled"] = "#keyboard_mouse_toggle_crouch_enabled";
|
|
1994
|
+
BindingName2["KeyboardShowFullKeyboardOptions"] = "#keyboard_show_full_keyboard_options";
|
|
1995
|
+
BindingName2["KeyboardShowFullKeyboardOptionsEnabled"] = "#keyboard_show_full_keyboard_options_enabled";
|
|
1996
|
+
BindingName2["ShowKeyboardPrompts"] = "#show_keyboard_prompts";
|
|
1997
|
+
BindingName2["HintTogglesEnabled"] = "#hint_toggles_enabled";
|
|
1998
|
+
BindingName2["ShowLearningPrompts"] = "#show_learning_prompts";
|
|
1999
|
+
BindingName2["KeyboardShowStandardKeyboardOptions"] = "#keyboard_show_standard_keyboard_options";
|
|
2000
|
+
BindingName2["ShowStandardCopyCoordinatesKeys"] = "#show_standard_copy_coordinates_keys";
|
|
2001
|
+
BindingName2["KeyboardStandardControlAltChordGridDimension"] = "#keyboard_standard_control_alt_chord_grid_dimension";
|
|
2002
|
+
BindingName2["KeyboardSmoothRotationSpeedSliderLabel"] = "#keyboard_smooth_rotation_speed_slider_label";
|
|
2003
|
+
BindingName2["KeyboardSmoothRotationSpeed"] = "#keyboard_smooth_rotation_speed";
|
|
2004
|
+
BindingName2["KeyboardSmoothRotationSpeedTextValue"] = "#keyboard_smooth_rotation_speed_text_value";
|
|
2005
|
+
BindingName2["KeyboardSmoothRotationSpeedEnabled"] = "#keyboard_smooth_rotation_speed_enabled";
|
|
2006
|
+
BindingName2["ShowFullCopyCoordinatesKeys"] = "#show_full_copy_coordinates_keys";
|
|
2007
|
+
BindingName2["KeyboardFullControlAltChordGridDimension"] = "#keyboard_full_control_alt_chord_grid_dimension";
|
|
2008
|
+
BindingName2["GamepadGridDimension"] = "#gamepad_grid_dimension";
|
|
2009
|
+
BindingName2["ControllerSensitivitySliderLabel"] = "#controller_sensitivity_slider_label";
|
|
2010
|
+
BindingName2["ControllerSensitivity"] = "#controller_sensitivity";
|
|
2011
|
+
BindingName2["ControllerSensitivityTextValue"] = "#controller_sensitivity_text_value";
|
|
2012
|
+
BindingName2["ControllerSensitivityEnabled"] = "#controller_sensitivity_enabled";
|
|
2013
|
+
BindingName2["SpyglassGamepadDampeningSliderLabel"] = "#spyglass_gamepad_dampening_slider_label";
|
|
2014
|
+
BindingName2["SpyglassGamepadDampening"] = "#spyglass_gamepad_dampening";
|
|
2015
|
+
BindingName2["SpyglassGamepadDampeningTextValue"] = "#spyglass_gamepad_dampening_text_value";
|
|
2016
|
+
BindingName2["VrSensitivitySliderLabel"] = "#vr_sensitivity_slider_label";
|
|
2017
|
+
BindingName2["VrSensitivity"] = "#vr_sensitivity";
|
|
2018
|
+
BindingName2["VrSensitivityTextValue"] = "#vr_sensitivity_text_value";
|
|
2019
|
+
BindingName2["VrSensitivityEnabled"] = "#vr_sensitivity_enabled";
|
|
2020
|
+
BindingName2["VrRollTurnSensitivitySliderLabel"] = "#vr_roll_turn_sensitivity_slider_label";
|
|
2021
|
+
BindingName2["VrRollTurnSensitivity"] = "#vr_roll_turn_sensitivity";
|
|
2022
|
+
BindingName2["VrRollTurnSensitivityTextValue"] = "#vr_roll_turn_sensitivity_text_value";
|
|
2023
|
+
BindingName2["VrRollTurnSensitivityEnabled"] = "#vr_roll_turn_sensitivity_enabled";
|
|
2024
|
+
BindingName2["VrRollTurnSensitivityVisible"] = "#vr_roll_turn_sensitivity_visible";
|
|
2025
|
+
BindingName2["ControllerInvertYAxis"] = "#controller_invert_y_axis";
|
|
2026
|
+
BindingName2["ControllerInvertYAxisEnabled"] = "#controller_invert_y_axis_enabled";
|
|
2027
|
+
BindingName2["ControllerAutojump"] = "#controller_autojump";
|
|
2028
|
+
BindingName2["ControllerAutojumpEnabled"] = "#controller_autojump_enabled";
|
|
2029
|
+
BindingName2["HideTooltips"] = "#hide_tooltips";
|
|
2030
|
+
BindingName2["HideGamepadCursor"] = "#hide_gamepad_cursor";
|
|
2031
|
+
BindingName2["HideGamepadCursorEnabled"] = "#hide_gamepad_cursor_enabled";
|
|
2032
|
+
BindingName2["ControllerClearHotbar"] = "#controller_clear_hotbar";
|
|
2033
|
+
BindingName2["ControllerClearHotbarEnabled"] = "#controller_clear_hotbar_enabled";
|
|
2034
|
+
BindingName2["SwapGamepadAb"] = "#swap_gamepad_ab";
|
|
2035
|
+
BindingName2["SwapGamepadAbButtons"] = "#swap_gamepad_ab_buttons";
|
|
2036
|
+
BindingName2["SwapGamepadAbButtonsEnabled"] = "#swap_gamepad_ab_buttons_enabled";
|
|
2037
|
+
BindingName2["SwapGamepadAbTts"] = "#swap_gamepad_ab_tts";
|
|
2038
|
+
BindingName2["SwapGamepadXy"] = "#swap_gamepad_xy";
|
|
2039
|
+
BindingName2["SwapGamepadXyButtons"] = "#swap_gamepad_xy_buttons";
|
|
2040
|
+
BindingName2["SwapGamepadXyButtonsEnabled"] = "#swap_gamepad_xy_buttons_enabled";
|
|
2041
|
+
BindingName2["SwapGamepadXyTts"] = "#swap_gamepad_xy_tts";
|
|
2042
|
+
BindingName2["GamepadCursorSensitivitySliderLabel"] = "#gamepad_cursor_sensitivity_slider_label";
|
|
2043
|
+
BindingName2["GamepadCursorSensitivity"] = "#gamepad_cursor_sensitivity";
|
|
2044
|
+
BindingName2["GamepadCursorSensitivityTextValue"] = "#gamepad_cursor_sensitivity_text_value";
|
|
2045
|
+
BindingName2["GamepadCursorSensitivityEnabled"] = "#gamepad_cursor_sensitivity_enabled";
|
|
2046
|
+
BindingName2["VrAutojump"] = "#vr_autojump";
|
|
2047
|
+
BindingName2["VrAutojumpEnabled"] = "#vr_autojump_enabled";
|
|
2048
|
+
BindingName2["ControllerToggleCrouch"] = "#controller_toggle_crouch";
|
|
2049
|
+
BindingName2["ControllerToggleCrouchEnabled"] = "#controller_toggle_crouch_enabled";
|
|
2050
|
+
BindingName2["ControllerDestroyVibration"] = "#controller_destroy_vibration";
|
|
2051
|
+
BindingName2["ControllerDestroyVibrationEnabled"] = "#controller_destroy_vibration_enabled";
|
|
2052
|
+
BindingName2["ControllerSplitVibration"] = "#controller_split_vibration";
|
|
2053
|
+
BindingName2["ControllerSplitVibrationEnabled"] = "#controller_split_vibration_enabled";
|
|
2054
|
+
BindingName2["EnableNewTouchControlSchemes"] = "#enable_new_touch_control_schemes";
|
|
2055
|
+
BindingName2["EnableNewTouchControlSchemesEnabled"] = "#enable_new_touch_control_schemes_enabled";
|
|
2056
|
+
BindingName2["NewTouchControlSchemesPreviewEnabled"] = "#new_touch_control_schemes_preview_enabled";
|
|
2057
|
+
BindingName2["TouchSelected"] = "#touch_selected";
|
|
2058
|
+
BindingName2["CrosshairSelected"] = "#crosshair_selected";
|
|
2059
|
+
BindingName2["ClassicSelected"] = "#classic_selected";
|
|
2060
|
+
BindingName2["SelectedControlScheme"] = "#selected_control_scheme";
|
|
2061
|
+
BindingName2["SelectedControlSchemeName"] = "#selected_control_scheme_name";
|
|
2062
|
+
BindingName2["NewTouchControlSchemesSettings"] = "#new_touch_control_schemes_settings";
|
|
2063
|
+
BindingName2["ResizableUi"] = "#resizable_ui";
|
|
2064
|
+
BindingName2["ResizableUiEnabled"] = "#resizable_ui_enabled";
|
|
2065
|
+
BindingName2["ModifyLayoutEnabled"] = "#modify_layout_enabled";
|
|
2066
|
+
BindingName2["ResizableUiActive"] = "#resizable_ui_active";
|
|
2067
|
+
BindingName2["TouchSensitivitySliderLabel"] = "#touch_sensitivity_slider_label";
|
|
2068
|
+
BindingName2["TouchSensitivity"] = "#touch_sensitivity";
|
|
2069
|
+
BindingName2["TouchSensitivityTextValue"] = "#touch_sensitivity_text_value";
|
|
2070
|
+
BindingName2["TouchSensitivityEnabled"] = "#touch_sensitivity_enabled";
|
|
2071
|
+
BindingName2["SpyglassTouchDampeningSliderLabel"] = "#spyglass_touch_dampening_slider_label";
|
|
2072
|
+
BindingName2["SpyglassTouchDampening"] = "#spyglass_touch_dampening";
|
|
2073
|
+
BindingName2["SpyglassTouchDampeningTextValue"] = "#spyglass_touch_dampening_text_value";
|
|
2074
|
+
BindingName2["ShowActionButton"] = "#show_action_button";
|
|
2075
|
+
BindingName2["ShowActionButtonEnabled"] = "#show_action_button_enabled";
|
|
2076
|
+
BindingName2["TouchControlsV2CrosshairMode"] = "#touch_controls_v2_crosshair_mode";
|
|
2077
|
+
BindingName2["ShowBlockSelectButton"] = "#show_block_select_button";
|
|
2078
|
+
BindingName2["ShowBlockSelectButtonEnabled"] = "#show_block_select_button_enabled";
|
|
2079
|
+
BindingName2["LeftHanded"] = "#left_handed";
|
|
2080
|
+
BindingName2["LeftHandedEnabled"] = "#left_handed_enabled";
|
|
2081
|
+
BindingName2["TouchAutojump"] = "#touch_autojump";
|
|
2082
|
+
BindingName2["TouchAutojumpEnabled"] = "#touch_autojump_enabled";
|
|
2083
|
+
BindingName2["SprintOnMovement"] = "#sprint_on_movement";
|
|
2084
|
+
BindingName2["SprintOnMovementEnabled"] = "#sprint_on_movement_enabled";
|
|
2085
|
+
BindingName2["TouchControlsV2"] = "#touch_controls_v2";
|
|
2086
|
+
BindingName2["JoystickVisibilityDropdownEnabled"] = "#joystick_visibility_dropdown_enabled";
|
|
2087
|
+
BindingName2["JoystickVisibilityDropdownToggleLabel"] = "#joystick_visibility_dropdown_toggle_label";
|
|
2088
|
+
BindingName2["ThumbstickOpacitySliderLabel"] = "#thumbstick_opacity_slider_label";
|
|
2089
|
+
BindingName2["ThumbstickOpacity"] = "#thumbstick_opacity";
|
|
2090
|
+
BindingName2["ThumbstickOpacityTextValue"] = "#thumbstick_opacity_text_value";
|
|
2091
|
+
BindingName2["ThumbstickOpacityEnabled"] = "#thumbstick_opacity_enabled";
|
|
2092
|
+
BindingName2["IsThumbstickVisible"] = "#is_thumbstick_visible";
|
|
2093
|
+
BindingName2["SneakDropdownEnabled"] = "#sneak_dropdown_enabled";
|
|
2094
|
+
BindingName2["SneakDropdownToggleLabel"] = "#sneak_dropdown_toggle_label";
|
|
2095
|
+
BindingName2["ButtonSizeSliderLabel"] = "#button_size_slider_label";
|
|
2096
|
+
BindingName2["ButtonSize"] = "#button_size";
|
|
2097
|
+
BindingName2["ButtonSizeTextValue"] = "#button_size_text_value";
|
|
2098
|
+
BindingName2["ButtonSizeEnabled"] = "#button_size_enabled";
|
|
2099
|
+
BindingName2["TouchDestroyVibration"] = "#touch_destroy_vibration";
|
|
2100
|
+
BindingName2["TouchDestroyVibrationEnabled"] = "#touch_destroy_vibration_enabled";
|
|
2101
|
+
BindingName2["TouchSplitVibration"] = "#touch_split_vibration";
|
|
2102
|
+
BindingName2["TouchSplitVibrationEnabled"] = "#touch_split_vibration_enabled";
|
|
2103
|
+
BindingName2["CreativeDelayedBlockBreaking"] = "#creative_delayed_block_breaking";
|
|
2104
|
+
BindingName2["CreativeDelayedBlockBreakingEnabled"] = "#creative_delayed_block_breaking_enabled";
|
|
2105
|
+
BindingName2["CrosshairActionButtonOn"] = "#crosshair_action_button_on";
|
|
2106
|
+
BindingName2["TouchInvertYAxis"] = "#touch_invert_y_axis";
|
|
2107
|
+
BindingName2["TouchInvertYAxisEnabled"] = "#touch_invert_y_axis_enabled";
|
|
2108
|
+
BindingName2["AlwaysHighlightHoveringBoxInCrosshair"] = "#always_highlight_hovering_box_in_crosshair";
|
|
2109
|
+
BindingName2["AlwaysHighlightHoveringBoxInCrosshairEnabled"] = "#always_highlight_hovering_box_in_crosshair_enabled";
|
|
2110
|
+
BindingName2["SplitControls"] = "#split_controls";
|
|
2111
|
+
BindingName2["SplitControlsEnabled"] = "#split_controls_enabled";
|
|
2112
|
+
BindingName2["SwapJumpAndSneak"] = "#swap_jump_and_sneak";
|
|
2113
|
+
BindingName2["SwapJumpAndSneakEnabled"] = "#swap_jump_and_sneak_enabled";
|
|
2114
|
+
BindingName2["HotbarOnlyTouch"] = "#hotbar_only_touch";
|
|
2115
|
+
BindingName2["HotbarOnlyTouchEnabled"] = "#hotbar_only_touch_enabled";
|
|
2116
|
+
BindingName2["JoystickVisibilityVisible"] = "#joystick_visibility_visible";
|
|
2117
|
+
BindingName2["JoystickVisibilityHidden"] = "#joystick_visibility_hidden";
|
|
2118
|
+
BindingName2["JoystickVisibilityHiddenWhenUnused"] = "#joystick_visibility_hidden_when_unused";
|
|
2119
|
+
BindingName2["SneakToggle"] = "#sneak_toggle";
|
|
2120
|
+
BindingName2["SneakHold"] = "#sneak_hold";
|
|
2121
|
+
BindingName2["CustomizeTooltipOptionVisible"] = "#customize_tooltip_option_visible";
|
|
2122
|
+
BindingName2["CustomizeTooltipOptionText"] = "#customize_tooltip_option_text";
|
|
2123
|
+
BindingName2["ResizableTooltipEnable"] = "#resizable_tooltip_enable";
|
|
2124
|
+
BindingName2["CrossplatformToggle"] = "#crossplatform_toggle";
|
|
2125
|
+
BindingName2["CrossplatformToggleEnabled"] = "#crossplatform_toggle_enabled";
|
|
2126
|
+
BindingName2["AllowCellularData"] = "#allow_cellular_data";
|
|
2127
|
+
BindingName2["AllowCellularDataEnabled"] = "#allow_cellular_data_enabled";
|
|
2128
|
+
BindingName2["WebsocketEncryption"] = "#websocket_encryption";
|
|
2129
|
+
BindingName2["WebsocketEncryptionEnabled"] = "#websocket_encryption_enabled";
|
|
2130
|
+
BindingName2["AutoUpdateModeDropdownToggleLabel"] = "#auto_update_mode_dropdown_toggle_label";
|
|
2131
|
+
BindingName2["AutoUpdateEnabled"] = "#auto_update_enabled";
|
|
2132
|
+
BindingName2["TutorialToggleEnabled"] = "#tutorial_toggle_enabled";
|
|
2133
|
+
BindingName2["TutorialOptionToggle"] = "#tutorial_option_toggle";
|
|
2134
|
+
BindingName2["TutorialShowAnimationsToggle"] = "#tutorial_show_animations_toggle";
|
|
2135
|
+
BindingName2["EduShowAnimationToggle"] = "#edu_show_animation_toggle";
|
|
2136
|
+
BindingName2["GametipsEnabled"] = "#gametips_enabled";
|
|
2137
|
+
BindingName2["OnlyTrustedSkinsAllowed"] = "#only_trusted_skins_allowed";
|
|
2138
|
+
BindingName2["OnlyTrustedSkinsAllowedEnabled"] = "#only_trusted_skins_allowed_enabled";
|
|
2139
|
+
BindingName2["EcomodeToggle"] = "#ecomode_toggle";
|
|
2140
|
+
BindingName2["EcomodeToggleEnabled"] = "#ecomode_toggle_enabled";
|
|
2141
|
+
BindingName2["TermsAndConditionsHyperlink"] = "#terms_and_conditions_hyperlink";
|
|
2142
|
+
BindingName2["BuildId"] = "#build_id";
|
|
2143
|
+
BindingName2["NetworkInfo"] = "#network_info";
|
|
2144
|
+
BindingName2["NetworkInfoVisible"] = "#network_info_visible";
|
|
2145
|
+
BindingName2["ProtocolVersion"] = "#protocol_version";
|
|
2146
|
+
BindingName2["TreatmentIds"] = "#treatment_ids";
|
|
2147
|
+
BindingName2["BuildDate"] = "#build_date";
|
|
2148
|
+
BindingName2["WorldConversionVersion"] = "#world_conversion_version";
|
|
2149
|
+
BindingName2["AdAccountName"] = "#ad_account_name";
|
|
2150
|
+
BindingName2["AdEduRememberMe"] = "#ad_edu_remember_me";
|
|
2151
|
+
BindingName2["CanChangeName"] = "#can_change_name";
|
|
2152
|
+
BindingName2["NotLoggedIn"] = "#not_logged_in";
|
|
2153
|
+
BindingName2["LoggedIn"] = "#logged_in";
|
|
2154
|
+
BindingName2["LoggedInNxLinkToggle"] = "#logged_in_nx_link_toggle";
|
|
2155
|
+
BindingName2["UseRemoteConnect"] = "#use_remote_connect";
|
|
2156
|
+
BindingName2["UseRemoteConnectEnabled"] = "#use_remote_connect_enabled";
|
|
2157
|
+
BindingName2["DeviceId"] = "#device_id";
|
|
2158
|
+
BindingName2["MinecraftAccountId"] = "#MinecraftAccount_id";
|
|
2159
|
+
BindingName2["PlayerNameEnabled"] = "#player_name_enabled";
|
|
2160
|
+
BindingName2["GamertagLabel"] = "#gamertag_label";
|
|
2161
|
+
BindingName2["NeedsOfflineTokenAuthorization"] = "#needs_offline_token_authorization";
|
|
2162
|
+
BindingName2["AutoUpdateModeOff"] = "#auto_update_mode_off";
|
|
2163
|
+
BindingName2["AutoUpdateModeOnWifiOnly"] = "#auto_update_mode_on_wifi_only";
|
|
2164
|
+
BindingName2["AutoUpdateModeOnWithCellular"] = "#auto_update_mode_on_with_cellular";
|
|
2165
|
+
BindingName2["CyclingIconPathGlobal"] = "#cycling_icon_path_global";
|
|
2166
|
+
BindingName2["CyclingIconZipGlobal"] = "#cycling_icon_zip_global";
|
|
2167
|
+
BindingName2["CyclingIconFileSystemGlobal"] = "#cycling_icon_file_system_global";
|
|
2168
|
+
BindingName2["SelectedPackItemsGlobal"] = "#selected_pack_items_global";
|
|
2169
|
+
BindingName2["AvailablePackItemsGlobal"] = "#available_pack_items_global";
|
|
2170
|
+
BindingName2["RealmsPackItemsGlobal"] = "#realms_pack_items_global";
|
|
2171
|
+
BindingName2["UnownedPackItemsGlobal"] = "#unowned_pack_items_global";
|
|
2172
|
+
BindingName2["SelectedGridDimensionsGlobal"] = "#selected_grid_dimensions_global";
|
|
2173
|
+
BindingName2["AvailableGridDimensionsGlobal"] = "#available_grid_dimensions_global";
|
|
2174
|
+
BindingName2["RealmsGridDimensionsGlobal"] = "#realms_grid_dimensions_global";
|
|
2175
|
+
BindingName2["UnownedGridDimensionsGlobal"] = "#unowned_grid_dimensions_global";
|
|
2176
|
+
BindingName2["UnownedVisibleGlobal"] = "#unowned_visible_global";
|
|
2177
|
+
BindingName2["PlatformLockedGlobal"] = "#platform_locked_global";
|
|
2178
|
+
BindingName2["DefaultItemTextureGlobal"] = "#default_item_texture_global";
|
|
2179
|
+
BindingName2["DefaultItemFileSystemGlobal"] = "#default_item_file_system_global";
|
|
2180
|
+
BindingName2["DefaultItemZipGlobal"] = "#default_item_zip_global";
|
|
2181
|
+
BindingName2["TotalSizeBindingGlobal"] = "#total_size_binding_global";
|
|
2182
|
+
BindingName2["InvalidPackItemsGlobal"] = "#invalid_pack_items_global";
|
|
2183
|
+
BindingName2["InvalidGridDimensionsGlobal"] = "#invalid_grid_dimensions_global";
|
|
2184
|
+
BindingName2["SuggestedOffersCollectionGlobal"] = "#suggested_offers_collection_global";
|
|
2185
|
+
BindingName2["SuggestedOffersLoadingGlobal"] = "#suggested_offers_loading_global";
|
|
2186
|
+
BindingName2["SuggestedOffersTitleGlobal"] = "#suggested_offers_title_global";
|
|
2187
|
+
BindingName2["NoAvailablePacksVisibilityGlobal"] = "#no_available_packs_visibility_global";
|
|
2188
|
+
BindingName2["NoRealmsPacksVisibilityGlobal"] = "#no_realms_packs_visibility_global";
|
|
2189
|
+
BindingName2["NoUnownedPacksVisibilityGlobal"] = "#no_unowned_packs_visibility_global";
|
|
2190
|
+
BindingName2["SuggestedContentVisibleGlobal"] = "#suggested_content_visible_global";
|
|
2191
|
+
BindingName2["ToggleEduCloudBackup"] = "#toggle_edu_cloud_backup";
|
|
2192
|
+
BindingName2["ToggleEduCloudBackupEnabled"] = "#toggle_edu_cloud_backup_enabled";
|
|
2193
|
+
BindingName2["EduCloudStorageBodyLabel"] = "#edu_cloud_storage_body_label";
|
|
2194
|
+
BindingName2["EduCloudStorageBodyLabelText"] = "#edu_cloud_storage_body_label_text";
|
|
2195
|
+
BindingName2["EditorActivityLabel"] = "#editor_activity_label";
|
|
2196
|
+
BindingName2["EditorLabel"] = "#editor_label";
|
|
2197
|
+
BindingName2["CopyCoordinateUi"] = "#copy_coordinate_ui";
|
|
2198
|
+
BindingName2["ShowKeybindsButton"] = "#show_keybinds_button";
|
|
2199
|
+
BindingName2["GoToKeybinds"] = "#go_to_keybinds";
|
|
2200
|
+
BindingName2["ScriptDebuggerOptionsEnabled"] = "#script_debugger_options_enabled";
|
|
2201
|
+
BindingName2["ServerboundClientDiagnosticsEnabled"] = "#serverbound_client_diagnostics_enabled";
|
|
2202
|
+
BindingName2["ScriptDebuggerPasscodeRequired"] = "#script_debugger_passcode_required";
|
|
2203
|
+
BindingName2["ScriptDebuggerPasscodeRequiredEnabled"] = "#script_debugger_passcode_required_enabled";
|
|
2204
|
+
BindingName2["ScriptDebuggerPasscode"] = "#script_debugger_passcode";
|
|
2205
|
+
BindingName2["ScriptDebuggerPasscodeVisible"] = "#script_debugger_passcode_visible";
|
|
2206
|
+
BindingName2["ScriptDebuggerAutoAttach"] = "#script_debugger_auto_attach";
|
|
2207
|
+
BindingName2["ScriptDebuggerAutoAttachEnabled"] = "#script_debugger_auto_attach_enabled";
|
|
2208
|
+
BindingName2["ScriptDebuggerAutoAttachOptionsVisible"] = "#script_debugger_auto_attach_options_visible";
|
|
2209
|
+
BindingName2["ScriptDebuggerAttachModeConnect"] = "#script_debugger_attach_mode_connect";
|
|
2210
|
+
BindingName2["ScriptDebuggerAttachModeListen"] = "#script_debugger_attach_mode_listen";
|
|
2211
|
+
BindingName2["ScriptDebuggerHost"] = "#script_debugger_host";
|
|
2212
|
+
BindingName2["ScriptDebuggerPort"] = "#script_debugger_port";
|
|
2213
|
+
BindingName2["ScriptDebuggerAutoAttachTimeoutSliderLabel"] = "#script_debugger_auto_attach_timeout_slider_label";
|
|
2214
|
+
BindingName2["ScriptDebuggerAutoAttachTimeout"] = "#script_debugger_auto_attach_timeout";
|
|
2215
|
+
BindingName2["ScriptDebuggerAutoAttachTimeoutTextValue"] = "#script_debugger_auto_attach_timeout_text_value";
|
|
2216
|
+
BindingName2["ScriptDebuggerAutoAttachTimeoutEnabled"] = "#script_debugger_auto_attach_timeout_enabled";
|
|
2217
|
+
BindingName2["ScriptDebuggerAutoAttachTimeoutSteps"] = "#script_debugger_auto_attach_timeout_steps";
|
|
2218
|
+
BindingName2["ScriptWatchdogOptionsEnabled"] = "#script_watchdog_options_enabled";
|
|
2219
|
+
BindingName2["ScriptWatchdogHangThresholdSliderLabel"] = "#script_watchdog_hang_threshold_slider_label";
|
|
2220
|
+
BindingName2["ScriptWatchdogHangThreshold"] = "#script_watchdog_hang_threshold";
|
|
2221
|
+
BindingName2["ScriptWatchdogHangThresholdTextValue"] = "#script_watchdog_hang_threshold_text_value";
|
|
2222
|
+
BindingName2["ScriptWatchdogHangThresholdEnabled"] = "#script_watchdog_hang_threshold_enabled";
|
|
2223
|
+
BindingName2["ScriptWatchdogHangThresholdSteps"] = "#script_watchdog_hang_threshold_steps";
|
|
2224
|
+
BindingName2["ScriptWatchdogSpikeWarning"] = "#script_watchdog_spike_warning";
|
|
2225
|
+
BindingName2["ScriptWatchdogSpikeWarningEnabled"] = "#script_watchdog_spike_warning_enabled";
|
|
2226
|
+
BindingName2["ScriptWatchdogSpikeThresholdSliderLabel"] = "#script_watchdog_spike_threshold_slider_label";
|
|
2227
|
+
BindingName2["ScriptWatchdogSpikeThreshold"] = "#script_watchdog_spike_threshold";
|
|
2228
|
+
BindingName2["ScriptWatchdogSpikeThresholdTextValue"] = "#script_watchdog_spike_threshold_text_value";
|
|
2229
|
+
BindingName2["ScriptWatchdogSpikeThresholdEnabled"] = "#script_watchdog_spike_threshold_enabled";
|
|
2230
|
+
BindingName2["ScriptWatchdogSpikeThresholdSteps"] = "#script_watchdog_spike_threshold_steps";
|
|
2231
|
+
BindingName2["ScriptWatchdogSpikeThresholdVisible"] = "#script_watchdog_spike_threshold_visible";
|
|
2232
|
+
BindingName2["ScriptWatchdogSlowWarning"] = "#script_watchdog_slow_warning";
|
|
2233
|
+
BindingName2["ScriptWatchdogSlowWarningEnabled"] = "#script_watchdog_slow_warning_enabled";
|
|
2234
|
+
BindingName2["ScriptWatchdogSlowThresholdSliderLabel"] = "#script_watchdog_slow_threshold_slider_label";
|
|
2235
|
+
BindingName2["ScriptWatchdogSlowThreshold"] = "#script_watchdog_slow_threshold";
|
|
2236
|
+
BindingName2["ScriptWatchdogSlowThresholdTextValue"] = "#script_watchdog_slow_threshold_text_value";
|
|
2237
|
+
BindingName2["ScriptWatchdogSlowThresholdEnabled"] = "#script_watchdog_slow_threshold_enabled";
|
|
2238
|
+
BindingName2["ScriptWatchdogSlowThresholdSteps"] = "#script_watchdog_slow_threshold_steps";
|
|
2239
|
+
BindingName2["ScriptWatchdogSlowThresholdVisible"] = "#script_watchdog_slow_threshold_visible";
|
|
2240
|
+
BindingName2["DeviceInfoOptionsEnabled"] = "#device_info_options_enabled";
|
|
2241
|
+
BindingName2["DeviceInfoUseMemoryTierOverride"] = "#device_info_use_memory_tier_override";
|
|
2242
|
+
BindingName2["DeviceInfoUseMemoryTierOverrideEnabled"] = "#device_info_use_memory_tier_override_enabled";
|
|
2243
|
+
BindingName2["DeviceInfoMemoryTierDropdownToggleLabel"] = "#device_info_memory_tier_dropdown_toggle_label";
|
|
2244
|
+
BindingName2["DeviceInfoMemoryTierOverrideEnabled"] = "#device_info_memory_tier_override_enabled";
|
|
2245
|
+
BindingName2["DeviceInfoMemoryTierVisible"] = "#device_info_memory_tier_visible";
|
|
2246
|
+
BindingName2["MemoryTierSuperLow"] = "#memory_tier_superLow";
|
|
2247
|
+
BindingName2["MemoryTierLow"] = "#memory_tier_low";
|
|
2248
|
+
BindingName2["MemoryTierMid"] = "#memory_tier_mid";
|
|
2249
|
+
BindingName2["MemoryTierHigh"] = "#memory_tier_high";
|
|
2250
|
+
BindingName2["MemoryTierSuperHigh"] = "#memory_tier_superHigh";
|
|
2251
|
+
BindingName2["ContentLogGuiLevelVerbose"] = "#content_log_gui_level_verbose";
|
|
2252
|
+
BindingName2["ContentLogGuiLevelInfo"] = "#content_log_gui_level_info";
|
|
2253
|
+
BindingName2["ContentLogGuiLevelWarn"] = "#content_log_gui_level_warn";
|
|
2254
|
+
BindingName2["ContentLogGuiLevelError"] = "#content_log_gui_level_error";
|
|
2255
|
+
BindingName2["ContentLogFile"] = "#content_log_file";
|
|
2256
|
+
BindingName2["ContentLogFileEnabled"] = "#content_log_file_enabled";
|
|
2257
|
+
BindingName2["ContentLogGui"] = "#content_log_gui";
|
|
2258
|
+
BindingName2["ContentLogGuiEnabled"] = "#content_log_gui_enabled";
|
|
2259
|
+
BindingName2["ContentLogGuiLevelDropdownToggleLabel"] = "#content_log_gui_level_dropdown_toggle_label";
|
|
2260
|
+
BindingName2["ContentLogGuiLevelDropdownEnabled"] = "#content_log_gui_level_dropdown_enabled";
|
|
2261
|
+
BindingName2["ContentLogGuiOptionEnabled"] = "#content_log_gui_option_enabled";
|
|
2262
|
+
BindingName2["AllowContentLogWriteToDisk"] = "#allow_content_log_write_to_disk";
|
|
2263
|
+
BindingName2["ContentLogLocationText"] = "#content_log_location_text";
|
|
2264
|
+
BindingName2["AdvancedVideoOptions"] = "#advanced_video_options";
|
|
2265
|
+
BindingName2["GammaSliderLabel"] = "#gamma_slider_label";
|
|
2266
|
+
BindingName2["Gamma"] = "#gamma";
|
|
2267
|
+
BindingName2["GammaTextValue"] = "#gamma_text_value";
|
|
2268
|
+
BindingName2["GammaEnabled"] = "#gamma_enabled";
|
|
2269
|
+
BindingName2["VrGammaSliderLabel"] = "#vr_gamma_slider_label";
|
|
2270
|
+
BindingName2["VrGamma"] = "#vr_gamma";
|
|
2271
|
+
BindingName2["VrGammaTextValue"] = "#vr_gamma_text_value";
|
|
2272
|
+
BindingName2["VrGammaEnabled"] = "#vr_gamma_enabled";
|
|
2273
|
+
BindingName2["ThirdPersonDropdownEnabled"] = "#third_person_dropdown_enabled";
|
|
2274
|
+
BindingName2["ThirdPersonDropdownToggleLabel"] = "#third_person_dropdown_toggle_label";
|
|
2275
|
+
BindingName2["FullScreen"] = "#full_screen";
|
|
2276
|
+
BindingName2["FullScreenEnabled"] = "#full_screen_enabled";
|
|
2277
|
+
BindingName2["HideHand"] = "#hide_hand";
|
|
2278
|
+
BindingName2["HideHandEnabled"] = "#hide_hand_enabled";
|
|
2279
|
+
BindingName2["VrHideHand"] = "#vr_hide_hand";
|
|
2280
|
+
BindingName2["VrHideHandEnabled"] = "#vr_hide_hand_enabled";
|
|
2281
|
+
BindingName2["HidePaperdoll"] = "#hide_paperdoll";
|
|
2282
|
+
BindingName2["HidePaperdollEnabled"] = "#hide_paperdoll_enabled";
|
|
2283
|
+
BindingName2["HideHud"] = "#hide_hud";
|
|
2284
|
+
BindingName2["HideHudEnabled"] = "#hide_hud_enabled";
|
|
2285
|
+
BindingName2["VrHideHud"] = "#vr_hide_hud";
|
|
2286
|
+
BindingName2["VrHideHudEnabled"] = "#vr_hide_hud_enabled";
|
|
2287
|
+
BindingName2["ScreenAnimations"] = "#screen_animations";
|
|
2288
|
+
BindingName2["ScreenAnimationsEnabled"] = "#screen_animations_enabled";
|
|
2289
|
+
BindingName2["ScreenAnimationsVisible"] = "#screen_animations_visible";
|
|
2290
|
+
BindingName2["InterfaceOpacitySliderLabel"] = "#interface_opacity_slider_label";
|
|
2291
|
+
BindingName2["InterfaceOpacity"] = "#interface_opacity";
|
|
2292
|
+
BindingName2["InterfaceOpacityTextValue"] = "#interface_opacity_text_value";
|
|
2293
|
+
BindingName2["InterfaceOpacityEnabled"] = "#interface_opacity_enabled";
|
|
2294
|
+
BindingName2["SplitscreenInterfaceOpacitySliderLabel"] = "#splitscreen_interface_opacity_slider_label";
|
|
2295
|
+
BindingName2["SplitscreenInterfaceOpacity"] = "#splitscreen_interface_opacity";
|
|
2296
|
+
BindingName2["SplitscreenInterfaceOpacityTextValue"] = "#splitscreen_interface_opacity_text_value";
|
|
2297
|
+
BindingName2["SplitscreenInterfaceOpacityEnabled"] = "#splitscreen_interface_opacity_enabled";
|
|
2298
|
+
BindingName2["FieldOfViewSliderLabel"] = "#field_of_view_slider_label";
|
|
2299
|
+
BindingName2["FieldOfViewTextValue"] = "#field_of_view_text_value";
|
|
2300
|
+
BindingName2["FieldOfView"] = "#field_of_view";
|
|
2301
|
+
BindingName2["FieldOfViewEnabled"] = "#field_of_view_enabled";
|
|
2302
|
+
BindingName2["SplitScreenDropdownEnabled"] = "#split_screen_dropdown_enabled";
|
|
2303
|
+
BindingName2["SplitScreenDropdownToggleLabel"] = "#split_screen_dropdown_toggle_label";
|
|
2304
|
+
BindingName2["ShowAutoSaveIcon"] = "#show_auto_save_icon";
|
|
2305
|
+
BindingName2["ShowAutoSaveIconEnabled"] = "#show_auto_save_icon_enabled";
|
|
2306
|
+
BindingName2["ClassicBoxSelection"] = "#classic_box_selection";
|
|
2307
|
+
BindingName2["ClassicBoxSelectionEnabled"] = "#classic_box_selection_enabled";
|
|
2308
|
+
BindingName2["VrClassicBoxSelection"] = "#vr_classic_box_selection";
|
|
2309
|
+
BindingName2["VrClassicBoxSelectionEnabled"] = "#vr_classic_box_selection_enabled";
|
|
2310
|
+
BindingName2["IngamePlayerNames"] = "#ingame_player_names";
|
|
2311
|
+
BindingName2["IngamePlayerNamesEnabled"] = "#ingame_player_names_enabled";
|
|
2312
|
+
BindingName2["SplitscreenIngamePlayerNames"] = "#splitscreen_ingame_player_names";
|
|
2313
|
+
BindingName2["SplitscreenIngamePlayerNamesEnabled"] = "#splitscreen_ingame_player_names_enabled";
|
|
2314
|
+
BindingName2["ViewBobbing"] = "#view_bobbing";
|
|
2315
|
+
BindingName2["ViewBobbingEnabled"] = "#view_bobbing_enabled";
|
|
2316
|
+
BindingName2["CameraShake"] = "#camera_shake";
|
|
2317
|
+
BindingName2["CameraShakeEnabled"] = "#camera_shake_enabled";
|
|
2318
|
+
BindingName2["TransparentLeaves"] = "#transparent_leaves";
|
|
2319
|
+
BindingName2["TransparentLeavesEnabled"] = "#transparent_leaves_enabled";
|
|
2320
|
+
BindingName2["VrTransparentLeaves"] = "#vr_transparent_leaves";
|
|
2321
|
+
BindingName2["VrTransparentLeavesEnabled"] = "#vr_transparent_leaves_enabled";
|
|
2322
|
+
BindingName2["BubbleParticles"] = "#bubble_particles";
|
|
2323
|
+
BindingName2["BubbleParticlesEnabled"] = "#bubble_particles_enabled";
|
|
2324
|
+
BindingName2["RenderClouds"] = "#render_clouds";
|
|
2325
|
+
BindingName2["RenderCloudsEnabled"] = "#render_clouds_enabled";
|
|
2326
|
+
BindingName2["FancySkies"] = "#fancy_skies";
|
|
2327
|
+
BindingName2["FancySkiesEnabled"] = "#fancy_skies_enabled";
|
|
2328
|
+
BindingName2["SmoothLighting"] = "#smooth_lighting";
|
|
2329
|
+
BindingName2["SmoothLightingEnabled"] = "#smooth_lighting_enabled";
|
|
2330
|
+
BindingName2["VrSmoothLighting"] = "#vr_smooth_lighting";
|
|
2331
|
+
BindingName2["VrSmoothLightingEnabled"] = "#vr_smooth_lighting_enabled";
|
|
2332
|
+
BindingName2["GraphicsToggle"] = "#graphics_toggle";
|
|
2333
|
+
BindingName2["GraphicsToggleEnabled"] = "#graphics_toggle_enabled";
|
|
2334
|
+
BindingName2["RenderingProfileSliderLabel"] = "#rendering_profile_slider_label";
|
|
2335
|
+
BindingName2["RenderingProfile"] = "#rendering_profile";
|
|
2336
|
+
BindingName2["RenderingProfileTextValue"] = "#rendering_profile_text_value";
|
|
2337
|
+
BindingName2["RenderingProfileSliderEnabled"] = "#rendering_profile_slider_enabled";
|
|
2338
|
+
BindingName2["RenderingProfileSteps"] = "#rendering_profile_steps";
|
|
2339
|
+
BindingName2["FieldOfViewToggle"] = "#field_of_view_toggle";
|
|
2340
|
+
BindingName2["FieldOfViewToggleEnabled"] = "#field_of_view_toggle_enabled";
|
|
2341
|
+
BindingName2["Atmospherics"] = "#atmospherics";
|
|
2342
|
+
BindingName2["AtmosphericsEnabled"] = "#atmospherics_enabled";
|
|
2343
|
+
BindingName2["EdgeHighlight"] = "#edge_highlight";
|
|
2344
|
+
BindingName2["EdgeHighlightEnabled"] = "#edge_highlight_enabled";
|
|
2345
|
+
BindingName2["Bloom"] = "#bloom";
|
|
2346
|
+
BindingName2["BloomEnabled"] = "#bloom_enabled";
|
|
2347
|
+
BindingName2["TerrainShadows"] = "#terrain_shadows";
|
|
2348
|
+
BindingName2["TerrainShadowsEnabled"] = "#terrain_shadows_enabled";
|
|
2349
|
+
BindingName2["SuperFancyWater"] = "#super_fancy_water";
|
|
2350
|
+
BindingName2["SuperFancyWaterEnabled"] = "#super_fancy_water_enabled";
|
|
2351
|
+
BindingName2["UiProfileDropdownEnabled"] = "#ui_profile_dropdown_enabled";
|
|
2352
|
+
BindingName2["UiProfileDropdownToggleLabel"] = "#ui_profile_dropdown_toggle_label";
|
|
2353
|
+
BindingName2["BetaNewBedScreenToggle"] = "#beta_new_bed_screen_toggle";
|
|
2354
|
+
BindingName2["BetaNewBedScreenToggleEnabled"] = "#beta_new_bed_screen_toggle_enabled";
|
|
2355
|
+
BindingName2["GuiScaleSliderLabel"] = "#gui_scale_slider_label";
|
|
2356
|
+
BindingName2["GuiScale"] = "#gui_scale";
|
|
2357
|
+
BindingName2["GuiScaleTextValue"] = "#gui_scale_text_value";
|
|
2358
|
+
BindingName2["GuiScaleEnabled"] = "#gui_scale_enabled";
|
|
2359
|
+
BindingName2["GuiScaleSteps"] = "#gui_scale_steps";
|
|
2360
|
+
BindingName2["GuiScaleVisible"] = "#gui_scale_visible";
|
|
2361
|
+
BindingName2["GuiScaleDisabledOptionVisible"] = "#gui_scale_disabled_option_visible";
|
|
2362
|
+
BindingName2["GuiScaleDisabledOptionTooltipVisible"] = "#gui_scale_disabled_option_tooltip_visible";
|
|
2363
|
+
BindingName2["GuiAccessibilityScaling"] = "#gui_accessibility_scaling";
|
|
2364
|
+
BindingName2["GuiAccessibilityScalingEnabled"] = "#gui_accessibility_scaling_enabled";
|
|
2365
|
+
BindingName2["ImprovedInputResponseOptions"] = "#improved_input_response_options";
|
|
2366
|
+
BindingName2["ImprovedInputResponseOptionsEnabled"] = "#improved_input_response_options_enabled";
|
|
2367
|
+
BindingName2["DynamicTextures"] = "#dynamic_textures";
|
|
2368
|
+
BindingName2["DynamicTexturesEnabled"] = "#dynamic_textures_enabled";
|
|
2369
|
+
BindingName2["Raytracing"] = "#raytracing";
|
|
2370
|
+
BindingName2["RaytracingEnabled"] = "#raytracing_enabled";
|
|
2371
|
+
BindingName2["RaytracingRenderDistanceSliderLabel"] = "#raytracing_render_distance_slider_label";
|
|
2372
|
+
BindingName2["RaytracingRenderDistance"] = "#raytracing_render_distance";
|
|
2373
|
+
BindingName2["RaytracingRenderDistanceTextValue"] = "#raytracing_render_distance_text_value";
|
|
2374
|
+
BindingName2["RaytracingRenderDistanceEnabled"] = "#raytracing_render_distance_enabled";
|
|
2375
|
+
BindingName2["RaytracingRenderDistanceSteps"] = "#raytracing_render_distance_steps";
|
|
2376
|
+
BindingName2["ShowRaytracingRenderDistance"] = "#show_raytracing_render_distance";
|
|
2377
|
+
BindingName2["DeferredRenderDistanceSliderLabel"] = "#deferred_render_distance_slider_label";
|
|
2378
|
+
BindingName2["DeferredRenderDistance"] = "#deferred_render_distance";
|
|
2379
|
+
BindingName2["DeferredRenderDistanceTextValue"] = "#deferred_render_distance_text_value";
|
|
2380
|
+
BindingName2["DeferredRenderDistanceEnabled"] = "#deferred_render_distance_enabled";
|
|
2381
|
+
BindingName2["DeferredRenderDistanceSteps"] = "#deferred_render_distance_steps";
|
|
2382
|
+
BindingName2["ShowDeferredRenderDistance"] = "#show_deferred_render_distance";
|
|
2383
|
+
BindingName2["RenderDistanceSliderLabel"] = "#render_distance_slider_label";
|
|
2384
|
+
BindingName2["RenderDistance"] = "#render_distance";
|
|
2385
|
+
BindingName2["RenderDistanceTextValue"] = "#render_distance_text_value";
|
|
2386
|
+
BindingName2["RenderDistanceEnabled"] = "#render_distance_enabled";
|
|
2387
|
+
BindingName2["RenderDistanceSteps"] = "#render_distance_steps";
|
|
2388
|
+
BindingName2["ShowRenderDistance"] = "#show_render_distance";
|
|
2389
|
+
BindingName2["RenderDistanceWarningVisible"] = "#render_distance_warning_visible";
|
|
2390
|
+
BindingName2["RenderDistancePerformanceTooltipText"] = "#render_distance_performance_tooltip_text";
|
|
2391
|
+
BindingName2["VrRenderDistanceSliderLabel"] = "#vr_render_distance_slider_label";
|
|
2392
|
+
BindingName2["VrRenderDistance"] = "#vr_render_distance";
|
|
2393
|
+
BindingName2["VrRenderDistanceTextValue"] = "#vr_render_distance_text_value";
|
|
2394
|
+
BindingName2["VrRenderDistanceEnabled"] = "#vr_render_distance_enabled";
|
|
2395
|
+
BindingName2["VrRenderDistanceSteps"] = "#vr_render_distance_steps";
|
|
2396
|
+
BindingName2["VrMsaaSliderLabel"] = "#vr_msaa_slider_label";
|
|
2397
|
+
BindingName2["VrMsaa"] = "#vr_msaa";
|
|
2398
|
+
BindingName2["VrMsaaTextValue"] = "#vr_msaa_text_value";
|
|
2399
|
+
BindingName2["VrMsaaEnabled"] = "#vr_msaa_enabled";
|
|
2400
|
+
BindingName2["VrMsaaSteps"] = "#vr_msaa_steps";
|
|
2401
|
+
BindingName2["ShowVrMsaa"] = "#show_vr_msaa";
|
|
2402
|
+
BindingName2["TexelAa"] = "#texel_aa";
|
|
2403
|
+
BindingName2["TexelAaEnabled"] = "#texel_aa_enabled";
|
|
2404
|
+
BindingName2["ShowTexelAa"] = "#show_texel_aa";
|
|
2405
|
+
BindingName2["Vr3dRendering"] = "#vr_3d_rendering";
|
|
2406
|
+
BindingName2["Vr3dRenderingEnabled"] = "#vr_3d_rendering_enabled";
|
|
2407
|
+
BindingName2["VrMirrorTexture"] = "#vr_mirror_texture";
|
|
2408
|
+
BindingName2["VrMirrorTextureEnabled"] = "#vr_mirror_texture_enabled";
|
|
2409
|
+
BindingName2["VrHandPointer"] = "#vr_hand_pointer";
|
|
2410
|
+
BindingName2["VrHandPointerEnabled"] = "#vr_hand_pointer_enabled";
|
|
2411
|
+
BindingName2["VrHandsVisible"] = "#vr_hands_visible";
|
|
2412
|
+
BindingName2["VrHandsVisibleEnabled"] = "#vr_hands_visible_enabled";
|
|
2413
|
+
BindingName2["GraphicsModeDropdownEnabled"] = "#graphics_mode_dropdown_enabled";
|
|
2414
|
+
BindingName2["GraphicsModeDropdownToggleLabel"] = "#graphics_mode_dropdown_toggle_label";
|
|
2415
|
+
BindingName2["AdvancedGraphicsOptionsGridVisible"] = "#advanced_graphics_options_grid_visible";
|
|
2416
|
+
BindingName2["MaxFramerateSliderLabel"] = "#max_framerate_slider_label";
|
|
2417
|
+
BindingName2["MaxFramerate"] = "#max_framerate";
|
|
2418
|
+
BindingName2["MaxFramerateTextValue"] = "#max_framerate_text_value";
|
|
2419
|
+
BindingName2["MaxFramerateEnabled"] = "#max_framerate_enabled";
|
|
2420
|
+
BindingName2["MaxFramerateSteps"] = "#max_framerate_steps";
|
|
2421
|
+
BindingName2["MsaaSliderLabel"] = "#msaa_slider_label";
|
|
2422
|
+
BindingName2["Msaa"] = "#msaa";
|
|
2423
|
+
BindingName2["MsaaTextValue"] = "#msaa_text_value";
|
|
2424
|
+
BindingName2["MsaaEnabled"] = "#msaa_enabled";
|
|
2425
|
+
BindingName2["MsaaSteps"] = "#msaa_steps";
|
|
2426
|
+
BindingName2["ShowMsaa"] = "#show_msaa";
|
|
2427
|
+
BindingName2["GraphicsUpscaling"] = "#graphics_upscaling";
|
|
2428
|
+
BindingName2["GraphicsUpscalingEnabled"] = "#graphics_upscaling_enabled";
|
|
2429
|
+
BindingName2["RtxUpscaleDisabledOptionUpsellVisible"] = "#rtx_upscale_disabled_option_upsell_visible";
|
|
2430
|
+
BindingName2["RtxUpscaleDisabledOptionUpsellTooltipVisible"] = "#rtx_upscale_disabled_option_upsell_tooltip_visible";
|
|
2431
|
+
BindingName2["NewDeathScreenToggleDisabledTooltipText"] = "#new_death_screen_toggle_disabled_tooltip_text";
|
|
2432
|
+
BindingName2["NewDeathScreenToggleDisabledVisible"] = "#new_death_screen_toggle_disabled_visible";
|
|
2433
|
+
BindingName2["NewDeathScreenToggleDisabledTooltipVisible"] = "#new_death_screen_toggle_disabled_tooltip_visible";
|
|
2434
|
+
BindingName2["BetaNewBedScreenToggleDisabledTooltipText"] = "#beta_new_bed_screen_toggle_disabled_tooltip_text";
|
|
2435
|
+
BindingName2["BetaNewBedScreenToggleDisabledVisible"] = "#beta_new_bed_screen_toggle_disabled_visible";
|
|
2436
|
+
BindingName2["BetaNewBedScreenToggleDisabledTooltipVisible"] = "#beta_new_bed_screen_toggle_disabled_tooltip_visible";
|
|
2437
|
+
BindingName2["RtxRenderDistanceWarningTooltipVisible"] = "#rtx_render_distance_warning_tooltip_visible";
|
|
2438
|
+
BindingName2["RtxRenderdistPerformanceTooltipText"] = "#rtx_renderdist_performance_tooltip_text";
|
|
2439
|
+
BindingName2["RtxRenderDistanceWarningVisible"] = "#rtx_render_distance_warning_visible";
|
|
2440
|
+
BindingName2["AccessibilityScalingOptionTooltipVisible"] = "#accessibility_scaling_option_tooltip_visible";
|
|
2441
|
+
BindingName2["AccessibilityScalingOptionTooltipText"] = "#accessibility_scaling_option_tooltip_text";
|
|
2442
|
+
BindingName2["ImprovedInputResponseOptionTooltipVisible"] = "#improved_input_response_option_tooltip_visible";
|
|
2443
|
+
BindingName2["ImprovedInputResponseOptionTooltipText"] = "#improved_input_response_option_tooltip_text";
|
|
2444
|
+
BindingName2["DynamicTexturesOptionTooltipVisible"] = "#dynamic_textures_option_tooltip_visible";
|
|
2445
|
+
BindingName2["DynamicTexturesOptionTooltipText"] = "#dynamic_textures_option_tooltip_text";
|
|
2446
|
+
BindingName2["MaxFramerateOptionTooltipVisible"] = "#max_framerate_option_tooltip_visible";
|
|
2447
|
+
BindingName2["MaxFramerateOptionTooltipText"] = "#max_framerate_option_tooltip_text";
|
|
2448
|
+
BindingName2["RtxDisabledOptionUpsellTooltipText"] = "#rtx_disabled_option_upsell_tooltip_text";
|
|
2449
|
+
BindingName2["RtxDisabledOptionUpsellVisible"] = "#rtx_disabled_option_upsell_visible";
|
|
2450
|
+
BindingName2["RtxDisabledOptionUpsellTooltipVisible"] = "#rtx_disabled_option_upsell_tooltip_visible";
|
|
2451
|
+
BindingName2["GuiScaleDisabledOptionTooltipText"] = "#gui_scale_disabled_option_tooltip_text";
|
|
2452
|
+
BindingName2["UiProfileRadioClassic"] = "#ui_profile_radio_classic";
|
|
2453
|
+
BindingName2["UiProfileRadioPocket"] = "#ui_profile_radio_pocket";
|
|
2454
|
+
BindingName2["SplitScreenRadioHorizontal"] = "#split_screen_radio_horizontal";
|
|
2455
|
+
BindingName2["SplitScreenRadioVertical"] = "#split_screen_radio_vertical";
|
|
2456
|
+
BindingName2["ThirdpersonRadioFirst"] = "#thirdperson_radio_first";
|
|
2457
|
+
BindingName2["ThirdpersonRadioThirdBack"] = "#thirdperson_radio_third_back";
|
|
2458
|
+
BindingName2["ThirdpersonRadioThirdFront"] = "#thirdperson_radio_third_front";
|
|
2459
|
+
BindingName2["NotificationDurationRadioThreeSec"] = "#notification_duration_radio_ThreeSec";
|
|
2460
|
+
BindingName2["NotificationDurationRadioTenSec"] = "#notification_duration_radio_TenSec";
|
|
2461
|
+
BindingName2["NotificationDurationRadioThirtySec"] = "#notification_duration_radio_ThirtySec";
|
|
2462
|
+
BindingName2["ChatMessageDurationRadioThreeSec"] = "#chat_message_duration_radio_ThreeSec";
|
|
2463
|
+
BindingName2["ChatMessageDurationRadioTenSec"] = "#chat_message_duration_radio_TenSec";
|
|
2464
|
+
BindingName2["ChatMessageDurationRadioThirtySec"] = "#chat_message_duration_radio_ThirtySec";
|
|
2465
|
+
BindingName2["CsbPrice"] = "#csb_price";
|
|
2466
|
+
BindingName2["RealmPriceLoaded"] = "#realm_price_loaded";
|
|
2467
|
+
BindingName2["LeftButtonVisible"] = "#left_button_visible";
|
|
2468
|
+
BindingName2["PadVisible"] = "#pad_visible";
|
|
2469
|
+
BindingName2["RightButtonVisible"] = "#right_button_visible";
|
|
2470
|
+
BindingName2["DescriptionText"] = "#description_text";
|
|
2471
|
+
BindingName2["RealmsSubscriptionText"] = "#realms_subscription_text";
|
|
2472
|
+
BindingName2["ConsumableNotExtendableVisible"] = "#consumable_not_extendable_visible";
|
|
2473
|
+
BindingName2["StoreMismatchVisible"] = "#store_mismatch_visible";
|
|
2474
|
+
BindingName2["DeviceSunsettingText"] = "#device_sunsetting_text";
|
|
2475
|
+
BindingName2["RealmsSubscriptionsLoadingFailedVisible"] = "#realms_subscriptions_loading_failed_visible";
|
|
2476
|
+
BindingName2["RealmsSubscriptionsLoadingVisible"] = "#realms_subscriptions_loading_visible";
|
|
2477
|
+
BindingName2["MySubscriptionsVisible"] = "#my_subscriptions_visible";
|
|
2478
|
+
BindingName2["RealmsPlusSubscriptionsDimensions"] = "#realms_plus_subscriptions_dimensions";
|
|
2479
|
+
BindingName2["CsbPurchasedWithCancelPanel"] = "#csb_purchased_with_cancel_panel";
|
|
2480
|
+
BindingName2["CsbPurchasedWithBuyPanel"] = "#csb_purchased_with_buy_panel";
|
|
2481
|
+
BindingName2["CsbPlatformMismatchText"] = "#csb_platform_mismatch_text";
|
|
2482
|
+
BindingName2["CsbExpiration"] = "#csb_expiration";
|
|
2483
|
+
BindingName2["ExpirationContainerVisible"] = "#expiration_container_visible";
|
|
2484
|
+
BindingName2["AdditionalRealmsSubscriptionsDimensions"] = "#additional_realms_subscriptions_dimensions";
|
|
2485
|
+
BindingName2["AvailableOrAdditionalSubscriptionsText"] = "#available_or_additional_subscriptions_text";
|
|
2486
|
+
BindingName2["CanBuyMoreSubscriptions"] = "#can_buy_more_subscriptions";
|
|
2487
|
+
BindingName2["VrLivingRoomCursorCentered"] = "#vr_living_room_cursor_centered";
|
|
2488
|
+
BindingName2["VrLivingRoomCursorCenteredEnabled"] = "#vr_living_room_cursor_centered_enabled";
|
|
2489
|
+
BindingName2["VrHmdDisplacement"] = "#vr_hmd_displacement";
|
|
2490
|
+
BindingName2["VrHmdDisplacementEnabled"] = "#vr_hmd_displacement_enabled";
|
|
2491
|
+
BindingName2["DeviceHasPositionalTracking"] = "#device_has_positional_tracking";
|
|
2492
|
+
BindingName2["VrCameraMoementDropdownEnabled"] = "#vr_camera_moement_dropdown_enabled";
|
|
2493
|
+
BindingName2["VrCameraMovementDropdownToggleLabel"] = "#vr_camera_movement_dropdown_toggle_label";
|
|
2494
|
+
BindingName2["VrSnapAngleSliderLabel"] = "#vr_snap_angle_slider_label";
|
|
2495
|
+
BindingName2["VrSnapAngle"] = "#vr_snap_angle";
|
|
2496
|
+
BindingName2["VrSnapAngleTextValue"] = "#vr_snap_angle_text_value";
|
|
2497
|
+
BindingName2["VrSnapAngleEnabled"] = "#vr_snap_angle_enabled";
|
|
2498
|
+
BindingName2["VrSnapAngleSteps"] = "#vr_snap_angle_steps";
|
|
2499
|
+
BindingName2["VrVariableSnapAngle"] = "#vr_variable_snap_angle";
|
|
2500
|
+
BindingName2["VrVariableSnapAngleEnabled"] = "#vr_variable_snap_angle_enabled";
|
|
2501
|
+
BindingName2["VrSnapSound"] = "#vr_snap_sound";
|
|
2502
|
+
BindingName2["VrSnapSoundEnabled"] = "#vr_snap_sound_enabled";
|
|
2503
|
+
BindingName2["VrMovementDropdownEnabled"] = "#vr_movement_dropdown_enabled";
|
|
2504
|
+
BindingName2["VrMovementDropdownToggleLabel"] = "#vr_movement_dropdown_toggle_label";
|
|
2505
|
+
BindingName2["VrJumpDropdownEnabled"] = "#vr_jump_dropdown_enabled";
|
|
2506
|
+
BindingName2["VrJumpDropdownToggleLabel"] = "#vr_jump_dropdown_toggle_label";
|
|
2507
|
+
BindingName2["VrHeadSteeringDropdownEnabled"] = "#vr_head_steering_dropdown_enabled";
|
|
2508
|
+
BindingName2["VrHeadSteeringDropdownToggleLabel"] = "#vr_head_steering_dropdown_toggle_label";
|
|
2509
|
+
BindingName2["VrStickyMiningDropdownEnabled"] = "#vr_sticky_mining_dropdown_enabled";
|
|
2510
|
+
BindingName2["VrStickyMiningDropdownToggleLabel"] = "#vr_sticky_mining_dropdown_toggle_label";
|
|
2511
|
+
BindingName2["VrHudPositionDropdownEnabled"] = "#vr_hud_position_dropdown_enabled";
|
|
2512
|
+
BindingName2["VrHudPositionDropdownToggleLabel"] = "#vr_hud_position_dropdown_toggle_label";
|
|
2513
|
+
BindingName2["VrHudDistanceSliderLabel"] = "#vr_hud_distance_slider_label";
|
|
2514
|
+
BindingName2["VrHudDistance"] = "#vr_hud_distance";
|
|
2515
|
+
BindingName2["VrHudDistanceTextValue"] = "#vr_hud_distance_text_value";
|
|
2516
|
+
BindingName2["VrHudDistanceEnabled"] = "#vr_hud_distance_enabled";
|
|
2517
|
+
BindingName2["VrHandControlsItem"] = "#vr_hand_controls_item";
|
|
2518
|
+
BindingName2["VrHandControlsItemEnabled"] = "#vr_hand_controls_item_enabled";
|
|
2519
|
+
BindingName2["VrCameraMovementRadioSnap"] = "#vr_camera_movement_radio_snap";
|
|
2520
|
+
BindingName2["VrCameraMovementRadioClassic"] = "#vr_camera_movement_radio_classic";
|
|
2521
|
+
BindingName2["VrCameraMovementRadioWheel"] = "#vr_camera_movement_radio_wheel";
|
|
2522
|
+
BindingName2["VrCameraMovementRadioSnapWheel"] = "#vr_camera_movement_radio_snap_wheel";
|
|
2523
|
+
BindingName2["VrMovementRadioLinear"] = "#vr_movement_radio_linear";
|
|
2524
|
+
BindingName2["VrMovementRadioClassic"] = "#vr_movement_radio_classic";
|
|
2525
|
+
BindingName2["VrJumpRadioLinear"] = "#vr_jump_radio_linear";
|
|
2526
|
+
BindingName2["VrJumpRadioClassic"] = "#vr_jump_radio_classic";
|
|
2527
|
+
BindingName2["VrHeadSteeringRadioGaze"] = "#vr_head_steering_radio_gaze";
|
|
2528
|
+
BindingName2["VrHeadSteeringRadioPlayer"] = "#vr_head_steering_radio_player";
|
|
2529
|
+
BindingName2["VrStickyMiningRadioLock"] = "#vr_sticky_mining_radio_lock";
|
|
2530
|
+
BindingName2["VrStickyMiningRadioController"] = "#vr_sticky_mining_radio_controller";
|
|
2531
|
+
BindingName2["VrStickyMiningRadioDisabled"] = "#vr_sticky_mining_radio_disabled";
|
|
2532
|
+
BindingName2["VrHudPositionRadioDrift"] = "#vr_hud_position_radio_drift";
|
|
2533
|
+
BindingName2["VrHudPositionRadioOffhand"] = "#vr_hud_position_radio_offhand";
|
|
2534
|
+
BindingName2["VrHudPositionRadioFixed"] = "#vr_hud_position_radio_fixed";
|
|
2535
|
+
BindingName2["EnableAutoTextToSpeech"] = "#enable_auto_text_to_speech";
|
|
2536
|
+
BindingName2["EnableAutoTextToSpeechEnabled"] = "#enable_auto_text_to_speech_enabled";
|
|
2537
|
+
BindingName2["EnableUiTextToSpeech"] = "#enable_ui_text_to_speech";
|
|
2538
|
+
BindingName2["EnableUiTextToSpeechEnabled"] = "#enable_ui_text_to_speech_enabled";
|
|
2539
|
+
BindingName2["EnableChatTextToSpeech"] = "#enable_chat_text_to_speech";
|
|
2540
|
+
BindingName2["EnableChatTextToSpeechEnabled"] = "#enable_chat_text_to_speech_enabled";
|
|
2541
|
+
BindingName2["NotHideChat"] = "#not_hide_chat";
|
|
2542
|
+
BindingName2["TexttospeechVolumeSliderLabel"] = "#texttospeech_volume_slider_label";
|
|
2543
|
+
BindingName2["TexttospeechVolume"] = "#texttospeech_volume";
|
|
2544
|
+
BindingName2["TexttospeechVolumeTextValue"] = "#texttospeech_volume_text_value";
|
|
2545
|
+
BindingName2["TexttospeechVolumeEnabled"] = "#texttospeech_volume_enabled";
|
|
2546
|
+
BindingName2["EnableOpenChatMessage"] = "#enable_open_chat_message";
|
|
2547
|
+
BindingName2["EnableOpenChatMessageEnabled"] = "#enable_open_chat_message_enabled";
|
|
2548
|
+
BindingName2["TextBackgroundOpacitySliderLabel"] = "#text_background_opacity_slider_label";
|
|
2549
|
+
BindingName2["TextBackgroundOpacity"] = "#text_background_opacity";
|
|
2550
|
+
BindingName2["TextBackgroundOpacityTextValue"] = "#text_background_opacity_text_value";
|
|
2551
|
+
BindingName2["TextBackgroundOpacityEnabled"] = "#text_background_opacity_enabled";
|
|
2552
|
+
BindingName2["ActionbarTextBackgroundOpacitySliderLabel"] = "#actionbar_text_background_opacity_slider_label";
|
|
2553
|
+
BindingName2["ActionbarTextBackgroundOpacity"] = "#actionbar_text_background_opacity";
|
|
2554
|
+
BindingName2["ActionbarTextBackgroundOpacityTextValue"] = "#actionbar_text_background_opacity_text_value";
|
|
2555
|
+
BindingName2["ActionbarTextBackgroundOpacityEnabled"] = "#actionbar_text_background_opacity_enabled";
|
|
2556
|
+
BindingName2["DarknessSliderLabel"] = "#darkness_slider_label";
|
|
2557
|
+
BindingName2["Darkness"] = "#darkness";
|
|
2558
|
+
BindingName2["DarknessTextValue"] = "#darkness_text_value";
|
|
2559
|
+
BindingName2["DarknessEnabled"] = "#darkness_enabled";
|
|
2560
|
+
BindingName2["GlintStrengthSliderLabel"] = "#glint_strength_slider_label";
|
|
2561
|
+
BindingName2["GlintStrength"] = "#glint_strength";
|
|
2562
|
+
BindingName2["GlintStrengthTextValue"] = "#glint_strength_text_value";
|
|
2563
|
+
BindingName2["GlintStrengthEnabled"] = "#glint_strength_enabled";
|
|
2564
|
+
BindingName2["GlintSpeedSliderLabel"] = "#glint_speed_slider_label";
|
|
2565
|
+
BindingName2["GlintSpeed"] = "#glint_speed";
|
|
2566
|
+
BindingName2["GlintSpeedTextValue"] = "#glint_speed_text_value";
|
|
2567
|
+
BindingName2["GlintSpeedEnabled"] = "#glint_speed_enabled";
|
|
2568
|
+
BindingName2["ToastNotificationDurationDropdownEnabled"] = "#toast_notification_duration_dropdown_enabled";
|
|
2569
|
+
BindingName2["ToastNotificationDurationDropdownToggleLabel"] = "#toast_notification_duration_dropdown_toggle_label";
|
|
2570
|
+
BindingName2["ChatMessageDurationDropdownEnabled"] = "#chat_message_duration_dropdown_enabled";
|
|
2571
|
+
BindingName2["ChatMessageDurationDropdownToggleLabel"] = "#chat_message_duration_dropdown_toggle_label";
|
|
2572
|
+
BindingName2["MainVolumeSliderLabel"] = "#main_volume_slider_label";
|
|
2573
|
+
BindingName2["MainVolume"] = "#main_volume";
|
|
2574
|
+
BindingName2["MainVolumeTextValue"] = "#main_volume_text_value";
|
|
2575
|
+
BindingName2["MainVolumeEnabled"] = "#main_volume_enabled";
|
|
2576
|
+
BindingName2["MusicVolumeSliderLabel"] = "#music_volume_slider_label";
|
|
2577
|
+
BindingName2["MusicVolume"] = "#music_volume";
|
|
2578
|
+
BindingName2["MusicVolumeTextValue"] = "#music_volume_text_value";
|
|
2579
|
+
BindingName2["MusicVolumeEnabled"] = "#music_volume_enabled";
|
|
2580
|
+
BindingName2["SoundVolumeSliderLabel"] = "#sound_volume_slider_label";
|
|
2581
|
+
BindingName2["SoundVolume"] = "#sound_volume";
|
|
2582
|
+
BindingName2["SoundVolumeTextValue"] = "#sound_volume_text_value";
|
|
2583
|
+
BindingName2["SoundVolumeEnabled"] = "#sound_volume_enabled";
|
|
2584
|
+
BindingName2["AmbientVolumeSliderLabel"] = "#ambient_volume_slider_label";
|
|
2585
|
+
BindingName2["AmbientVolume"] = "#ambient_volume";
|
|
2586
|
+
BindingName2["AmbientVolumeTextValue"] = "#ambient_volume_text_value";
|
|
2587
|
+
BindingName2["AmbientVolumeEnabled"] = "#ambient_volume_enabled";
|
|
2588
|
+
BindingName2["BlockVolumeSliderLabel"] = "#block_volume_slider_label";
|
|
2589
|
+
BindingName2["BlockVolume"] = "#block_volume";
|
|
2590
|
+
BindingName2["BlockVolumeTextValue"] = "#block_volume_text_value";
|
|
2591
|
+
BindingName2["BlockVolumeEnabled"] = "#block_volume_enabled";
|
|
2592
|
+
BindingName2["HostileVolumeSliderLabel"] = "#hostile_volume_slider_label";
|
|
2593
|
+
BindingName2["HostileVolume"] = "#hostile_volume";
|
|
2594
|
+
BindingName2["HostileVolumeTextValue"] = "#hostile_volume_text_value";
|
|
2595
|
+
BindingName2["HostileVolumeEnabled"] = "#hostile_volume_enabled";
|
|
2596
|
+
BindingName2["NeutralVolumeSliderLabel"] = "#neutral_volume_slider_label";
|
|
2597
|
+
BindingName2["NeutralVolume"] = "#neutral_volume";
|
|
2598
|
+
BindingName2["NeutralVolumeTextValue"] = "#neutral_volume_text_value";
|
|
2599
|
+
BindingName2["NeutralVolumeEnabled"] = "#neutral_volume_enabled";
|
|
2600
|
+
BindingName2["PlayerVolumeSliderLabel"] = "#player_volume_slider_label";
|
|
2601
|
+
BindingName2["PlayerVolume"] = "#player_volume";
|
|
2602
|
+
BindingName2["PlayerVolumeTextValue"] = "#player_volume_text_value";
|
|
2603
|
+
BindingName2["PlayerVolumeEnabled"] = "#player_volume_enabled";
|
|
2604
|
+
BindingName2["RecordVolumeSliderLabel"] = "#record_volume_slider_label";
|
|
2605
|
+
BindingName2["RecordVolume"] = "#record_volume";
|
|
2606
|
+
BindingName2["RecordVolumeTextValue"] = "#record_volume_text_value";
|
|
2607
|
+
BindingName2["RecordVolumeEnabled"] = "#record_volume_enabled";
|
|
2608
|
+
BindingName2["WeatherVolumeSliderLabel"] = "#weather_volume_slider_label";
|
|
2609
|
+
BindingName2["WeatherVolume"] = "#weather_volume";
|
|
2610
|
+
BindingName2["WeatherVolumeTextValue"] = "#weather_volume_text_value";
|
|
2611
|
+
BindingName2["WeatherVolumeEnabled"] = "#weather_volume_enabled";
|
|
2612
|
+
BindingName2["LanguageInitialSelected"] = "#language_initial_selected";
|
|
2613
|
+
BindingName2["LanguageDescription"] = "#language_description";
|
|
2614
|
+
BindingName2["LanguageGridDimension"] = "#language_grid_dimension";
|
|
2615
|
+
BindingName2["PreviewApp1ButtonText"] = "#preview_app1_button_text";
|
|
2616
|
+
BindingName2["PreviewApp2ButtonText"] = "#preview_app2_button_text";
|
|
2617
|
+
BindingName2["DevDateYearOverride"] = "#dev_date_year_override";
|
|
2618
|
+
BindingName2["DevDateMonthOverride"] = "#dev_date_month_override";
|
|
2619
|
+
BindingName2["DevDateDayOverride"] = "#dev_date_day_override";
|
|
2620
|
+
BindingName2["DevDateHourOverride"] = "#dev_date_hour_override";
|
|
2621
|
+
BindingName2["DevDateMinuteOverride"] = "#dev_date_minute_override";
|
|
2622
|
+
BindingName2["TimezonetypeRadioLocal"] = "#timezonetype_radio_local";
|
|
2623
|
+
BindingName2["TimezonetypeRadioUtc"] = "#timezonetype_radio_utc";
|
|
2624
|
+
BindingName2["DevDisplayOverrideDatetime"] = "#dev_display_override_datetime";
|
|
2625
|
+
BindingName2["DevDisplayOverrideDatetimeEnabled"] = "#dev_display_override_datetime_enabled";
|
|
2626
|
+
BindingName2["DevUseOverrideDate"] = "#dev_use_override_date";
|
|
2627
|
+
BindingName2["DevUseOverrideDateEnabled"] = "#dev_use_override_date_enabled";
|
|
2628
|
+
BindingName2["DevLoadOverrideDate"] = "#dev_load_override_date";
|
|
2629
|
+
BindingName2["DevLoadOverrideDateEnabled"] = "#dev_load_override_date_enabled";
|
|
2630
|
+
BindingName2["TimezonetypeDropdownToggleLabel"] = "#timezonetype_dropdown_toggle_label";
|
|
2631
|
+
BindingName2["TimezonetypeDropdownEnabled"] = "#timezonetype_dropdown_enabled";
|
|
2632
|
+
BindingName2["DevOverrideTimeScale"] = "#dev_override_time_scale";
|
|
2633
|
+
BindingName2["OverrideDateOptionsVisible"] = "#override_date_options_visible";
|
|
2634
|
+
BindingName2["DevOverrideXboxSandbox"] = "#dev_override_xbox_sandbox";
|
|
2635
|
+
BindingName2["DevOverrideXboxSandboxEnabled"] = "#dev_override_xbox_sandbox_enabled";
|
|
2636
|
+
BindingName2["OverrideXboxSandboxOnWindows"] = "#override_xbox_sandbox_on_windows";
|
|
2637
|
+
BindingName2["DevXboxEnvironmentDropdownToggleLabel"] = "#dev_xbox_environment_dropdown_toggle_label";
|
|
2638
|
+
BindingName2["DevXboxEnvironmentDropdownEnabled"] = "#dev_xbox_environment_dropdown_enabled";
|
|
2639
|
+
BindingName2["OverrideXboxSandboxVisible"] = "#override_xbox_sandbox_visible";
|
|
2640
|
+
BindingName2["UpdateOverrideVersionButtonVisible"] = "#update_override_version_button_visible";
|
|
2641
|
+
BindingName2["OverrideVersionOptionsVisible"] = "#override_version_options_visible";
|
|
2642
|
+
BindingName2["DevVersionMajorOverride"] = "#dev_version_major_override";
|
|
2643
|
+
BindingName2["DevVersionMinorOverride"] = "#dev_version_minor_override";
|
|
2644
|
+
BindingName2["DevVersionPatchOverride"] = "#dev_version_patch_override";
|
|
2645
|
+
BindingName2["DevShowOverrideTreatments"] = "#dev_show_override_treatments";
|
|
2646
|
+
BindingName2["DevShowOverrideTreatmentsEnabled"] = "#dev_show_override_treatments_enabled";
|
|
2647
|
+
BindingName2["DevTreatmentId"] = "#dev_treatment_id";
|
|
2648
|
+
BindingName2["DevTreatmentIdEnabled"] = "#dev_treatment_id_enabled";
|
|
2649
|
+
BindingName2["OverrideProgressionsLoadingVisible"] = "#override_progressions_loading_visible";
|
|
2650
|
+
BindingName2["TreatmentsGridDimension"] = "#treatments_grid_dimension";
|
|
2651
|
+
BindingName2["UnusedTreatmentsGridDimension"] = "#unused_treatments_grid_dimension";
|
|
2652
|
+
BindingName2["DevDisplayTreatmentsPanel"] = "#dev_display_treatments_panel";
|
|
2653
|
+
BindingName2["DevShowOverrideProgressions"] = "#dev_show_override_progressions";
|
|
2654
|
+
BindingName2["DevShowOverrideProgressionsEnabled"] = "#dev_show_override_progressions_enabled";
|
|
2655
|
+
BindingName2["DevProgressionId"] = "#dev_progression_id";
|
|
2656
|
+
BindingName2["DevProgressionIdEnabled"] = "#dev_progression_id_enabled";
|
|
2657
|
+
BindingName2["ProgressionsGridDimension"] = "#progressions_grid_dimension";
|
|
2658
|
+
BindingName2["DevDisplayProgressionsPanel"] = "#dev_display_progressions_panel";
|
|
2659
|
+
BindingName2["ProgressionId"] = "#progression_id";
|
|
2660
|
+
BindingName2["TreatmentId"] = "#treatment_id";
|
|
2661
|
+
BindingName2["UnusedTreatmentId"] = "#unused_treatment_id";
|
|
2662
|
+
BindingName2["SelectWindowsStoreVisible"] = "#select_windows_store_visible";
|
|
2663
|
+
BindingName2["WindowsStoreDropdownToggleLabel"] = "#windows_store_dropdown_toggle_label";
|
|
2664
|
+
BindingName2["ActiveStoresLabel"] = "#active_stores_label";
|
|
2665
|
+
BindingName2["WindowsStoreModeRadioAuto"] = "#windows_store_mode_radio_auto";
|
|
2666
|
+
BindingName2["WindowsStoreModeRadioV6"] = "#windows_store_mode_radio_v6";
|
|
2667
|
+
BindingName2["WindowsStoreModeRadioV8"] = "#windows_store_mode_radio_v8";
|
|
2668
|
+
BindingName2["DevDisplayMockHttpPanel"] = "#dev_display_mock_http_panel";
|
|
2669
|
+
BindingName2["DevDisplayMockHttpPanelEnabled"] = "#dev_display_mock_http_panel_enabled";
|
|
2670
|
+
BindingName2["MockHttpRuleCount"] = "#mock_http_rule_count";
|
|
2671
|
+
BindingName2["RuleDetailsLabel"] = "#rule_details_label";
|
|
2672
|
+
BindingName2["TestAssets"] = "#test_assets";
|
|
2673
|
+
BindingName2["AutomationFunctionalTestTags"] = "#automation_functional_test_tags";
|
|
2674
|
+
BindingName2["AutomationServerTestTags"] = "#automation_server_test_tags";
|
|
2675
|
+
BindingName2["AutomationUnitTestTags"] = "#automation_unit_test_tags";
|
|
2676
|
+
BindingName2["AutomationBrokenFunctionalTestTags"] = "#automation_broken_functional_test_tags";
|
|
2677
|
+
BindingName2["AutomationBrokenServerTestTags"] = "#automation_broken_server_test_tags";
|
|
2678
|
+
BindingName2["AutomationBrokenUnitTestTags"] = "#automation_broken_unit_test_tags";
|
|
2679
|
+
BindingName2["AutomationRepeatCount"] = "#automation_repeat_count";
|
|
2680
|
+
BindingName2["AutomationSoakTestDurationMinutes"] = "#automation_soak_test_duration_minutes";
|
|
2681
|
+
BindingName2["AutomationRepeatFailuresOnly"] = "#automation_repeat_failures_only";
|
|
2682
|
+
BindingName2["AutomationRunEntireServerTestGroup"] = "#automation_run_entire_server_test_group";
|
|
2683
|
+
BindingName2["AutomationTestbuildId"] = "#automation_testbuild_id";
|
|
2684
|
+
BindingName2["AutomationFunctionalTestBlockInput"] = "#automation_functional_test_block_input";
|
|
2685
|
+
BindingName2["AutomationFunctionalTestBlockInputEnabled"] = "#automation_functional_test_block_input_enabled";
|
|
2686
|
+
BindingName2["AutomationServerTestAssertOnLevelDiff"] = "#automation_server_test_assert_on_level_diff";
|
|
2687
|
+
BindingName2["AutomationServerTestAssertOnLevelDiffEnabled"] = "#automation_server_test_assert_on_level_diff_enabled";
|
|
2688
|
+
BindingName2["DevDiscoveryEnvironmentDropdownToggleLabel"] = "#dev_discovery_environment_dropdown_toggle_label";
|
|
2689
|
+
BindingName2["DevDiscoveryEnvironmentDropdownEnabled"] = "#dev_discovery_environment_dropdown_enabled";
|
|
2690
|
+
BindingName2["DevShowDiscoveryOverrides"] = "#dev_show_discovery_overrides";
|
|
2691
|
+
BindingName2["DevShowDiscoveryOverridesEnabled"] = "#dev_show_discovery_overrides_enabled";
|
|
2692
|
+
BindingName2["DevDiscoveryOverrideServiceName"] = "#dev_discovery_override_service_name";
|
|
2693
|
+
BindingName2["DevDiscoveryOverrideServiceNameEnabled"] = "#dev_discovery_override_service_name_enabled";
|
|
2694
|
+
BindingName2["DevServiceOverrideTypeDropdownToggleLabel"] = "#dev_service_override_type_dropdown_toggle_label";
|
|
2695
|
+
BindingName2["DevDiscoveryOverrideBranch"] = "#dev_discovery_override_branch";
|
|
2696
|
+
BindingName2["DevDiscoveryOverrideBranchEnabled"] = "#dev_discovery_override_branch_enabled";
|
|
2697
|
+
BindingName2["DevDiscoveryOverrideCustom"] = "#dev_discovery_override_custom";
|
|
2698
|
+
BindingName2["DevDiscoveryOverrideCustomEnabled"] = "#dev_discovery_override_custom_enabled";
|
|
2699
|
+
BindingName2["ActiveServiceOverridesLabelText"] = "#active_service_overrides_label_text";
|
|
2700
|
+
BindingName2["ShowResetAllEndpointOverridesButton"] = "#show_reset_all_endpoint_overrides_button";
|
|
2701
|
+
BindingName2["FeatureToggleState"] = "#feature_toggle_state";
|
|
2702
|
+
BindingName2["FeatureToggleEnabled"] = "#feature_toggle_enabled";
|
|
2703
|
+
BindingName2["FeatureToggleText"] = "#feature_toggle_text";
|
|
2704
|
+
BindingName2["DevShowDevConsoleButton"] = "#dev_show_dev_console_button";
|
|
2705
|
+
BindingName2["DevShowDevConsoleButtonEnabled"] = "#dev_show_dev_console_button_enabled";
|
|
2706
|
+
BindingName2["DevAssertionsDebugBreak"] = "#dev_assertions_debug_break";
|
|
2707
|
+
BindingName2["DevAssertionsDebugBreakEnabled"] = "#dev_assertions_debug_break_enabled";
|
|
2708
|
+
BindingName2["DevAssertionsShowDialog"] = "#dev_assertions_show_dialog";
|
|
2709
|
+
BindingName2["DevAssertionsShowDialogEnabled"] = "#dev_assertions_show_dialog_enabled";
|
|
2710
|
+
BindingName2["DevForceTrialMode"] = "#dev_force_trial_mode";
|
|
2711
|
+
BindingName2["DevForceTrialModeEnabled"] = "#dev_force_trial_mode_enabled";
|
|
2712
|
+
BindingName2["FeatureToggleCount"] = "#feature_toggle_count";
|
|
2713
|
+
BindingName2["DevEnableDebugUi"] = "#dev_enable_debug_ui";
|
|
2714
|
+
BindingName2["DevEnableDebugUiEnabled"] = "#dev_enable_debug_ui_enabled";
|
|
2715
|
+
BindingName2["DevActorMovementDropdownToggleLabel"] = "#dev_actor_movement_dropdown_toggle_label";
|
|
2716
|
+
BindingName2["DevActorMovementDropdownEnabled"] = "#dev_actor_movement_dropdown_enabled";
|
|
2717
|
+
BindingName2["DevNethernetLoggingVerbosityDropdownToggleLabel"] = "#dev_nethernet_logging_verbosity_dropdown_toggle_label";
|
|
2718
|
+
BindingName2["DevNethernetLoggingVerbosityDropdownEnabled"] = "#dev_nethernet_logging_verbosity_dropdown_enabled";
|
|
2719
|
+
BindingName2["RemoteImgui"] = "#remote_imgui";
|
|
2720
|
+
BindingName2["RemoteImguiEnabled"] = "#remote_imgui_enabled";
|
|
2721
|
+
BindingName2["DevDebugHudDropdownToggleLabel"] = "#dev_debug_hud_dropdown_toggle_label";
|
|
2722
|
+
BindingName2["DevDebugHudDropdownEnabled"] = "#dev_debug_hud_dropdown_enabled";
|
|
2723
|
+
BindingName2["DevShowExtraDebugHudInfo"] = "#dev_show_extra_debug_hud_info";
|
|
2724
|
+
BindingName2["DevRenderBoundingBox"] = "#dev_render_bounding_box";
|
|
2725
|
+
BindingName2["DevRenderBoundingBoxEnabled"] = "#dev_render_bounding_box_enabled";
|
|
2726
|
+
BindingName2["DevFindMobs"] = "#dev_find_mobs";
|
|
2727
|
+
BindingName2["DevFindMobsEnabled"] = "#dev_find_mobs_enabled";
|
|
2728
|
+
BindingName2["DevRenderAttachPosSliderLabel"] = "#dev_render_attach_pos_slider_label";
|
|
2729
|
+
BindingName2["DevRenderAttachPos"] = "#dev_render_attach_pos";
|
|
2730
|
+
BindingName2["DevRenderAttachPosTextValue"] = "#dev_render_attach_pos_text_value";
|
|
2731
|
+
BindingName2["DevRenderAttachPosEnabled"] = "#dev_render_attach_pos_enabled";
|
|
2732
|
+
BindingName2["DevRenderAttachPosSteps"] = "#dev_render_attach_pos_steps";
|
|
2733
|
+
BindingName2["DevRenderPaths"] = "#dev_render_paths";
|
|
2734
|
+
BindingName2["DevRenderPathsEnabled"] = "#dev_render_paths_enabled";
|
|
2735
|
+
BindingName2["DevRenderGoalState"] = "#dev_render_goal_state";
|
|
2736
|
+
BindingName2["DevRenderGoalStateEnabled"] = "#dev_render_goal_state_enabled";
|
|
2737
|
+
BindingName2["DevResetClientId"] = "#dev_reset_client_id";
|
|
2738
|
+
BindingName2["DevResetClientIdEnabled"] = "#dev_reset_client_id_enabled";
|
|
2739
|
+
BindingName2["DevShowChunkMap"] = "#dev_show_chunk_map";
|
|
2740
|
+
BindingName2["DevShowChunkMapEnabled"] = "#dev_show_chunk_map_enabled";
|
|
2741
|
+
BindingName2["DevChunkMapModeDropdownEnabled"] = "#dev_chunk_map_mode_dropdown_enabled";
|
|
2742
|
+
BindingName2["DevChunkMapModeDropdownToggleLabel"] = "#dev_chunk_map_mode_dropdown_toggle_label";
|
|
2743
|
+
BindingName2["DevRenderMobInfoState"] = "#dev_render_mob_info_state";
|
|
2744
|
+
BindingName2["DevRenderMobInfoStateEnabled"] = "#dev_render_mob_info_state_enabled";
|
|
2745
|
+
BindingName2["DevDisableRenderTerrain"] = "#dev_disable_render_terrain";
|
|
2746
|
+
BindingName2["DevDisableRenderTerrainEnabled"] = "#dev_disable_render_terrain_enabled";
|
|
2747
|
+
BindingName2["DevDisableRenderEntities"] = "#dev_disable_render_entities";
|
|
2748
|
+
BindingName2["DevDisableRenderEntitiesEnabled"] = "#dev_disable_render_entities_enabled";
|
|
2749
|
+
BindingName2["DevDisableRenderBlockentities"] = "#dev_disable_render_blockentities";
|
|
2750
|
+
BindingName2["DevDisableRenderBlockentitiesEnabled"] = "#dev_disable_render_blockentities_enabled";
|
|
2751
|
+
BindingName2["DevDisableRenderParticles"] = "#dev_disable_render_particles";
|
|
2752
|
+
BindingName2["DevDisableRenderParticlesEnabled"] = "#dev_disable_render_particles_enabled";
|
|
2753
|
+
BindingName2["DevDisableRenderSky"] = "#dev_disable_render_sky";
|
|
2754
|
+
BindingName2["DevDisableRenderSkyEnabled"] = "#dev_disable_render_sky_enabled";
|
|
2755
|
+
BindingName2["DevDisableRenderWeather"] = "#dev_disable_render_weather";
|
|
2756
|
+
BindingName2["DevDisableRenderWeatherEnabled"] = "#dev_disable_render_weather_enabled";
|
|
2757
|
+
BindingName2["DevDisableRenderHud"] = "#dev_disable_render_hud";
|
|
2758
|
+
BindingName2["DevDisableRenderHudEnabled"] = "#dev_disable_render_hud_enabled";
|
|
2759
|
+
BindingName2["DevDisableRenderItemInHand"] = "#dev_disable_render_item_in_hand";
|
|
2760
|
+
BindingName2["DevDisableRenderItemInHandEnabled"] = "#dev_disable_render_item_in_hand_enabled";
|
|
2761
|
+
BindingName2["DevDisableRenderMainMenuCubeMap"] = "#dev_disable_render_main_menu_cube_map";
|
|
2762
|
+
BindingName2["DevDisableRenderMainMenuCubeMapEnabled"] = "#dev_disable_render_main_menu_cube_map_enabled";
|
|
2763
|
+
BindingName2["DevDisableRenderMainMenuPaperdollAnimation"] = "#dev_disable_render_main_menu_paperdoll_animation";
|
|
2764
|
+
BindingName2["DevDisableRenderMainMenuPaperdollAnimationEnabled"] = "#dev_disable_render_main_menu_paperdoll_animation_enabled";
|
|
2765
|
+
BindingName2["LeakMemoryValue"] = "#leak_memory_value";
|
|
2766
|
+
BindingName2["LeakMemoryEnabled"] = "#leak_memory_enabled";
|
|
2767
|
+
BindingName2["LogAreaTextBox"] = "#log_area_text_box";
|
|
2768
|
+
BindingName2["LogPriorityTextBox"] = "#log_priority_text_box";
|
|
2769
|
+
BindingName2["DevShowBuildInfo"] = "#dev_show_build_info";
|
|
2770
|
+
BindingName2["DevShowBuildInfoEnabled"] = "#dev_show_build_info_enabled";
|
|
2771
|
+
BindingName2["PerfTurtle"] = "#perf_turtle";
|
|
2772
|
+
BindingName2["PerfTurtleEnabled"] = "#perf_turtle_enabled";
|
|
2773
|
+
BindingName2["DefaultProfilingGroupToggleLabel"] = "#default_profiling_group_toggle_label";
|
|
2774
|
+
BindingName2["DefaultProfilingGroupEnabled"] = "#default_profiling_group_enabled";
|
|
2775
|
+
BindingName2["DevEnableProfiler"] = "#dev_enable_profiler";
|
|
2776
|
+
BindingName2["DevEnableProfilerEnabled"] = "#dev_enable_profiler_enabled";
|
|
2777
|
+
BindingName2["DevAchievementsAlwaysEnabled"] = "#dev_achievements_always_enabled";
|
|
2778
|
+
BindingName2["DevAchievementsAlwaysEnabledEnabled"] = "#dev_achievements_always_enabled_enabled";
|
|
2779
|
+
BindingName2["DevGameTip"] = "#dev_game_tip";
|
|
2780
|
+
BindingName2["DevGameTipEnabled"] = "#dev_game_tip_enabled";
|
|
2781
|
+
BindingName2["DevUseIpv6Only"] = "#dev_use_ipv6_only";
|
|
2782
|
+
BindingName2["DevUseIpv6OnlyEnabled"] = "#dev_use_ipv6_only_enabled";
|
|
2783
|
+
BindingName2["DevDisableClientBlobCache"] = "#dev_disable_client_blob_cache";
|
|
2784
|
+
BindingName2["DevDisableClientBlobCacheEnabled"] = "#dev_disable_client_blob_cache_enabled";
|
|
2785
|
+
BindingName2["DevForceClientBlobCache"] = "#dev_force_client_blob_cache";
|
|
2786
|
+
BindingName2["DevForceClientBlobCacheEnabled"] = "#dev_force_client_blob_cache_enabled";
|
|
2787
|
+
BindingName2["DevConnectionQualityToggleLabel"] = "#dev_connection_quality_toggle_label";
|
|
2788
|
+
BindingName2["DevConnectionQualityEnabled"] = "#dev_connection_quality_enabled";
|
|
2789
|
+
BindingName2["DevAddHttpDelaySecondsSliderLabel"] = "#dev_add_http_delay_seconds_slider_label";
|
|
2790
|
+
BindingName2["DevAddHttpDelaySeconds"] = "#dev_add_http_delay_seconds";
|
|
2791
|
+
BindingName2["DevAddHttpDelaySecondsTextValue"] = "#dev_add_http_delay_seconds_text_value";
|
|
2792
|
+
BindingName2["DevAddHttpDelaySecondsEnabled"] = "#dev_add_http_delay_seconds_enabled";
|
|
2793
|
+
BindingName2["DevAddHttpDelaySecondsSteps"] = "#dev_add_http_delay_seconds_steps";
|
|
2794
|
+
BindingName2["DevShowLatencyGraph"] = "#dev_show_latency_graph";
|
|
2795
|
+
BindingName2["DevShowLatencyGraphEnabled"] = "#dev_show_latency_graph_enabled";
|
|
2796
|
+
BindingName2["MultithreadedRendering"] = "#multithreaded_rendering";
|
|
2797
|
+
BindingName2["MultithreadedRenderingEnabled"] = "#multithreaded_rendering_enabled";
|
|
2798
|
+
BindingName2["ShowMultithreadedRendering"] = "#show_multithreaded_rendering";
|
|
2799
|
+
BindingName2["FileWatcher"] = "#file_watcher";
|
|
2800
|
+
BindingName2["FileWatcherEnabled"] = "#file_watcher_enabled";
|
|
2801
|
+
BindingName2["EnableTextureHotReloader"] = "#enable_texture_hot_reloader";
|
|
2802
|
+
BindingName2["TextureHotReloaderEnabled"] = "#texture_hot_reloader_enabled";
|
|
2803
|
+
BindingName2["VsyncDropdownToggleLabel"] = "#vsync_dropdown_toggle_label";
|
|
2804
|
+
BindingName2["VsyncDropdownEnabled"] = "#vsync_dropdown_enabled";
|
|
2805
|
+
BindingName2["DevUseSunsetOverrides"] = "#dev_use_sunset_overrides";
|
|
2806
|
+
BindingName2["DevUseSunsetOverridesEnabled"] = "#dev_use_sunset_overrides_enabled";
|
|
2807
|
+
BindingName2["SunsettingOverrideEnabled"] = "#sunsetting_override_enabled";
|
|
2808
|
+
BindingName2["DevSunsetState"] = "#dev_sunset_state";
|
|
2809
|
+
BindingName2["DevSunsetStateEnabled"] = "#dev_sunset_state_enabled";
|
|
2810
|
+
BindingName2["DevSunsettingTierDropdownToggleLabel"] = "#dev_sunsetting_tier_dropdown_toggle_label";
|
|
2811
|
+
BindingName2["DevSunsettingTierDropdownEnabled"] = "#dev_sunsetting_tier_dropdown_enabled";
|
|
2812
|
+
BindingName2["DevRealmsEndpointPayment"] = "#dev_realms_endpoint_payment";
|
|
2813
|
+
BindingName2["DevRealmsEndpointPaymentEnabled"] = "#dev_realms_endpoint_payment_enabled";
|
|
2814
|
+
BindingName2["DevRealmsEnvironmentRadioLocal"] = "#dev_realms_environment_radio_local";
|
|
2815
|
+
BindingName2["DevRealmsRelyingParty"] = "#dev_realms_relying_party";
|
|
2816
|
+
BindingName2["DevRealmsRelyingPartyEnabled"] = "#dev_realms_relying_party_enabled";
|
|
2817
|
+
BindingName2["DevRealmsRelyingPartyPayment"] = "#dev_realms_relying_party_payment";
|
|
2818
|
+
BindingName2["DevRealmsRelyingPartyPaymentEnabled"] = "#dev_realms_relying_party_payment_enabled";
|
|
2819
|
+
BindingName2["ShadersdkServiceIp"] = "#shadersdk_service_ip";
|
|
2820
|
+
BindingName2["ShadersdkServiceIpEnabled"] = "#shadersdk_service_ip_enabled";
|
|
2821
|
+
BindingName2["ShadersdkServicePort"] = "#shadersdk_service_port";
|
|
2822
|
+
BindingName2["ShadersdkServicePortEnabled"] = "#shadersdk_service_port_enabled";
|
|
2823
|
+
BindingName2["ShadersdkTargetPort"] = "#shadersdk_target_port";
|
|
2824
|
+
BindingName2["ShadersdkTargetPortEnabled"] = "#shadersdk_target_port_enabled";
|
|
2825
|
+
BindingName2["RealmsFeatureToggleCount"] = "#realms_feature_toggle_count";
|
|
2826
|
+
BindingName2["DevCreateRealmWithoutPurchase"] = "#dev_create_realm_without_purchase";
|
|
2827
|
+
BindingName2["DevCreateRealmWithoutPurchaseEnabled"] = "#dev_create_realm_without_purchase_enabled";
|
|
2828
|
+
BindingName2["DevRealmsEnvironmentDropdownToggleLabel"] = "#dev_realms_environment_dropdown_toggle_label";
|
|
2829
|
+
BindingName2["DevRealmsEnvironmentDropdownEnabled"] = "#dev_realms_environment_dropdown_enabled";
|
|
2830
|
+
BindingName2["DevRealmsSkuDropdownToggleLabel"] = "#dev_realms_sku_dropdown_toggle_label";
|
|
2831
|
+
BindingName2["DevRealmsSkuDropdownEnabled"] = "#dev_realms_sku_dropdown_enabled";
|
|
2832
|
+
BindingName2["DevRealmsEndpoint"] = "#dev_realms_endpoint";
|
|
2833
|
+
BindingName2["DevRealmsEndpointEnabled"] = "#dev_realms_endpoint_enabled";
|
|
2834
|
+
BindingName2["MarketplaceFeatureToggleCount"] = "#marketplace_feature_toggle_count";
|
|
2835
|
+
BindingName2["PlayfabTokenRefreshThresholdSliderLabel"] = "#playfab_token_refresh_threshold_slider_label";
|
|
2836
|
+
BindingName2["PlayfabTokenRefreshThreshold"] = "#playfab_token_refresh_threshold";
|
|
2837
|
+
BindingName2["PlayfabTokenRefreshThresholdTextValue"] = "#playfab_token_refresh_threshold_text_value";
|
|
2838
|
+
BindingName2["PlayfabTokenRefreshThresholdEnabled"] = "#playfab_token_refresh_threshold_enabled";
|
|
2839
|
+
BindingName2["PlayfabTokenRefreshThresholdSteps"] = "#playfab_token_refresh_threshold_steps";
|
|
2840
|
+
BindingName2["DevDebugSkinRotationSpeedMultiplierDropdownToggleLabel"] = "#dev_debug_skin_rotation_speed_multiplier_dropdown_toggle_label";
|
|
2841
|
+
BindingName2["DevDebugSkinRotationSpeedMultiplierDropdownEnabled"] = "#dev_debug_skin_rotation_speed_multiplier_dropdown_enabled";
|
|
2842
|
+
BindingName2["DevMarketplaceToggleAllSkinsRotate"] = "#dev_marketplace_toggle_all_skins_rotate";
|
|
2843
|
+
BindingName2["DevMarketplaceToggleAllSkinsRotateEnabled"] = "#dev_marketplace_toggle_all_skins_rotate_enabled";
|
|
2844
|
+
BindingName2["DevShowDocId"] = "#dev_show_doc_id";
|
|
2845
|
+
BindingName2["DevShowDocIdEnabled"] = "#dev_show_doc_id_enabled";
|
|
2846
|
+
BindingName2["DevShowPlatformOfferCheck"] = "#dev_show_platform_offer_check";
|
|
2847
|
+
BindingName2["DevShowPlatformOfferCheckEnabled"] = "#dev_show_platform_offer_check_enabled";
|
|
2848
|
+
BindingName2["DevUseVersionOverride"] = "#dev_use_version_override";
|
|
2849
|
+
BindingName2["DevUseVersionOverrideEnabled"] = "#dev_use_version_override_enabled";
|
|
2850
|
+
BindingName2["SwitchCoinDebug"] = "#switch_coin_debug";
|
|
2851
|
+
BindingName2["SwitchCoinDebugEnabled"] = "#switch_coin_debug_enabled";
|
|
2852
|
+
BindingName2["ShowSwitchCoinDebug"] = "#show_switch_coin_debug";
|
|
2853
|
+
BindingName2["Add500Text"] = "#add_500_text";
|
|
2854
|
+
BindingName2["Add100000Text"] = "#add_100000_text";
|
|
2855
|
+
BindingName2["DevGatheringFilter"] = "#dev_gathering_filter";
|
|
2856
|
+
BindingName2["DevGatheringFilterEnabled"] = "#dev_gathering_filter_enabled";
|
|
2857
|
+
BindingName2["GatheringName"] = "#gathering_name";
|
|
2858
|
+
BindingName2["GatheringUuid"] = "#gathering_uuid";
|
|
2859
|
+
BindingName2["GatheringsGridDimension"] = "#gatherings_grid_dimension";
|
|
2860
|
+
BindingName2["InitialSelected"] = "#initial_selected";
|
|
2861
|
+
BindingName2["DevNewDeathScreenRadioEnabled"] = "#dev_new_death_screen_radio_enabled";
|
|
2862
|
+
BindingName2["DevNewBedScreenRadioEnabled"] = "#dev_new_bed_screen_radio_enabled";
|
|
2863
|
+
BindingName2["DevOreUiGameplayUiRadioEnabled"] = "#dev_ore_ui_gameplay_ui_radio_enabled";
|
|
2864
|
+
BindingName2["UiFeatureToggleCount"] = "#ui_feature_toggle_count";
|
|
2865
|
+
BindingName2["DevNewEduCreateWorldScreenRadioDimension"] = "#dev_new_edu_create_world_screen_radio_dimension";
|
|
2866
|
+
BindingName2["DevNewPlayScreenRadioDimension"] = "#dev_new_play_screen_radio_dimension";
|
|
2867
|
+
BindingName2["DevNewEditWorldScreenRadioDimension"] = "#dev_new_edit_world_screen_radio_dimension";
|
|
2868
|
+
BindingName2["DevNewTrialScreenRadioDimension"] = "#dev_new_trial_screen_radio_dimension";
|
|
2869
|
+
BindingName2["DevNewDeathScreenRadioDimension"] = "#dev_new_death_screen_radio_dimension";
|
|
2870
|
+
BindingName2["DevNewBedScreenRadioDimension"] = "#dev_new_bed_screen_radio_dimension";
|
|
2871
|
+
BindingName2["DevOreUiGameplayUiRadioDimension"] = "#dev_ore_ui_gameplay_ui_radio_dimension";
|
|
2872
|
+
BindingName2["DevToggleDefaultFontOverrides"] = "#dev_toggle_default_font_overrides";
|
|
2873
|
+
BindingName2["DevToggleDefaultFontOverridesVisible"] = "#dev_toggle_default_font_overrides_visible";
|
|
2874
|
+
BindingName2["DevShowTcuiReplacement"] = "#dev_show_tcui_replacement";
|
|
2875
|
+
BindingName2["DevShowTcuiReplacementEnabled"] = "#dev_show_tcui_replacement_enabled";
|
|
2876
|
+
BindingName2["DevAllowMobileDataBlockedModal"] = "#dev_allow_mobile_data_blocked_modal";
|
|
2877
|
+
BindingName2["DevAllowMobileDataBlockedModalEnabled"] = "#dev_allow_mobile_data_blocked_modal_enabled";
|
|
2878
|
+
BindingName2["ShowTouchControlSelectionScreen"] = "#show_touch_control_selection_screen";
|
|
2879
|
+
BindingName2["ShowTouchControlSelectionScreenEnabled"] = "#show_touch_control_selection_screen_enabled";
|
|
2880
|
+
BindingName2["ResetOnStart"] = "#reset_on_start";
|
|
2881
|
+
BindingName2["ResetOnStartEnabled"] = "#reset_on_start_enabled";
|
|
2882
|
+
BindingName2["DwellBeforeDragTimeSliderLabel"] = "#dwell_before_drag_time_slider_label";
|
|
2883
|
+
BindingName2["DwellBeforeDragTime"] = "#dwell_before_drag_time";
|
|
2884
|
+
BindingName2["DwellBeforeDragTimeTextValue"] = "#dwell_before_drag_time_text_value";
|
|
2885
|
+
BindingName2["DwellBeforeDragTimeEnabled"] = "#dwell_before_drag_time_enabled";
|
|
2886
|
+
BindingName2["StackSplittingTriggerTimeSliderLabel"] = "#stack_splitting_trigger_time_slider_label";
|
|
2887
|
+
BindingName2["StackSplittingTriggerTime"] = "#stack_splitting_trigger_time";
|
|
2888
|
+
BindingName2["StackSplittingTriggerTimeTextValue"] = "#stack_splitting_trigger_time_text_value";
|
|
2889
|
+
BindingName2["StackSplittingTriggerTimeEnabled"] = "#stack_splitting_trigger_time_enabled";
|
|
2890
|
+
BindingName2["DevEduDemo"] = "#dev_edu_demo";
|
|
2891
|
+
BindingName2["DevEduDemoEnabled"] = "#dev_edu_demo_enabled";
|
|
2892
|
+
BindingName2["DevEduCloudResumableUpload"] = "#dev_edu_cloud_resumable_upload";
|
|
2893
|
+
BindingName2["DevEduCloudResumableUploadEnabled"] = "#dev_edu_cloud_resumable_upload_enabled";
|
|
2894
|
+
BindingName2["ShowAdDebugPanelButton"] = "#show_ad_debug_panel_button";
|
|
2895
|
+
BindingName2["ShowAdDebugPanelButtonEnabled"] = "#show_ad_debug_panel_button_enabled";
|
|
2896
|
+
BindingName2["AdTokenRefreshThresholdSliderLabel"] = "#ad_token_refresh_threshold_slider_label";
|
|
2897
|
+
BindingName2["AdTokenRefreshThreshold"] = "#ad_token_refresh_threshold";
|
|
2898
|
+
BindingName2["AdTokenRefreshThresholdTextValue"] = "#ad_token_refresh_threshold_text_value";
|
|
2899
|
+
BindingName2["AdTokenRefreshThresholdEnabled"] = "#ad_token_refresh_threshold_enabled";
|
|
2900
|
+
BindingName2["AdTokenRefreshThresholdSteps"] = "#ad_token_refresh_threshold_steps";
|
|
2901
|
+
BindingName2["AdMaxSigninTokenRefreshSliderLabel"] = "#ad_max_signin_token_refresh_slider_label";
|
|
2902
|
+
BindingName2["AdMaxSigninTokenRefresh"] = "#ad_max_signin_token_refresh";
|
|
2903
|
+
BindingName2["AdMaxSigninTokenRefreshTextValue"] = "#ad_max_signin_token_refresh_text_value";
|
|
2904
|
+
BindingName2["AdMaxSigninTokenRefreshEnabled"] = "#ad_max_signin_token_refresh_enabled";
|
|
2905
|
+
BindingName2["AdMaxSigninTokenRefreshSteps"] = "#ad_max_signin_token_refresh_steps";
|
|
2906
|
+
BindingName2["AdMaxGraphTokenRefreshSliderLabel"] = "#ad_max_graph_token_refresh_slider_label";
|
|
2907
|
+
BindingName2["AdMaxGraphTokenRefresh"] = "#ad_max_graph_token_refresh";
|
|
2908
|
+
BindingName2["AdMaxGraphTokenRefreshTextValue"] = "#ad_max_graph_token_refresh_text_value";
|
|
2909
|
+
BindingName2["AdMaxGraphTokenRefreshEnabled"] = "#ad_max_graph_token_refresh_enabled";
|
|
2910
|
+
BindingName2["AdMaxGraphTokenRefreshSteps"] = "#ad_max_graph_token_refresh_steps";
|
|
2911
|
+
BindingName2["DevEducationEnvDropdownToggleLabel"] = "#dev_education_env_dropdown_toggle_label";
|
|
2912
|
+
BindingName2["DevEducationEnvDropdownEnabled"] = "#dev_education_env_dropdown_enabled";
|
|
2913
|
+
BindingName2["DevAzurenotebooksEnvDropdownToggleLabel"] = "#dev_azurenotebooks_env_dropdown_toggle_label";
|
|
2914
|
+
BindingName2["DevAzurenotebooksEnvDropdownEnabled"] = "#dev_azurenotebooks_env_dropdown_enabled";
|
|
2915
|
+
BindingName2["DevDisplayTreatmentsPanelEnabled"] = "#dev_display_treatments_panel_enabled";
|
|
2916
|
+
BindingName2["DevDisplayProgressionsPanelEnabled"] = "#dev_display_progressions_panel_enabled";
|
|
2917
|
+
BindingName2["HowToPlayGamepadHelperLabelText"] = "#how_to_play_gamepad_helper_label_text";
|
|
2918
|
+
BindingName2["HowToPlayGamepadHelperLabelVisible"] = "#how_to_play_gamepad_helper_label_visible";
|
|
2919
|
+
BindingName2["DevXboxEnvironmentRadioRetail"] = "#dev_xbox_environment_radio_retail";
|
|
2920
|
+
BindingName2["DevXboxEnvironmentRadioDev"] = "#dev_xbox_environment_radio_dev";
|
|
2921
|
+
BindingName2["DevXboxEnvironmentRadioDevAchievement"] = "#dev_xbox_environment_radio_dev_achievement";
|
|
2922
|
+
BindingName2["DevDiscoveryEnvironmentRadioProduction"] = "#dev_discovery_environment_radio_production";
|
|
2923
|
+
BindingName2["DevDiscoveryEnvironmentRadioStaging"] = "#dev_discovery_environment_radio_staging";
|
|
2924
|
+
BindingName2["DevDiscoveryEnvironmentRadioDev"] = "#dev_discovery_environment_radio_dev";
|
|
2925
|
+
BindingName2["DevDiscoveryEnvironmentRadioPerf"] = "#dev_discovery_environment_radio_perf";
|
|
2926
|
+
BindingName2["DevDiscoveryEnvironmentRadioLocal"] = "#dev_discovery_environment_radio_local";
|
|
2927
|
+
BindingName2["DevServiceOverrideTypeRadioMultibranch"] = "#dev_service_override_type_radio_multibranch";
|
|
2928
|
+
BindingName2["DevServiceOverrideTypeRadioCustom"] = "#dev_service_override_type_radio_custom";
|
|
2929
|
+
BindingName2["DevRealmsEnvironmentRadioProduction"] = "#dev_realms_environment_radio_production";
|
|
2930
|
+
BindingName2["DevRealmsEnvironmentRadioStaging"] = "#dev_realms_environment_radio_staging";
|
|
2931
|
+
BindingName2["DevRealmsEnvironmentRadioDev"] = "#dev_realms_environment_radio_dev";
|
|
2932
|
+
BindingName2["DevRealmsSkuRadioProduction"] = "#dev_realms_sku_radio_production";
|
|
2933
|
+
BindingName2["DevRealmsSkuRadioFiveday"] = "#dev_realms_sku_radio_fiveday";
|
|
2934
|
+
BindingName2["DevRealmsSkuRadioDefault"] = "#dev_realms_sku_radio_default";
|
|
2935
|
+
BindingName2["InternalProfilingBootstrap"] = "#internal_profiling_bootstrap";
|
|
2936
|
+
BindingName2["CreatorProfilingBootstrap"] = "#creator_profiling_bootstrap";
|
|
2937
|
+
BindingName2["DevActorMovementDefault"] = "#dev_actor_movement_default";
|
|
2938
|
+
BindingName2["DevActorMovementLegacyClient"] = "#dev_actor_movement_legacy_client";
|
|
2939
|
+
BindingName2["DevActorMovementClient"] = "#dev_actor_movement_client";
|
|
2940
|
+
BindingName2["DevActorMovementServer"] = "#dev_actor_movement_server";
|
|
2941
|
+
BindingName2["DevNethernetLoggingVerbosityDisabled"] = "#dev_nethernet_logging_verbosity_disabled";
|
|
2942
|
+
BindingName2["DevNethernetLoggingVerbosityCriticalonly"] = "#dev_nethernet_logging_verbosity_criticalonly";
|
|
2943
|
+
BindingName2["DevNethernetLoggingVerbosityError"] = "#dev_nethernet_logging_verbosity_error";
|
|
2944
|
+
BindingName2["DevNethernetLoggingVerbosityWarning"] = "#dev_nethernet_logging_verbosity_warning";
|
|
2945
|
+
BindingName2["DevNethernetLoggingVerbosityInformation"] = "#dev_nethernet_logging_verbosity_information";
|
|
2946
|
+
BindingName2["DevNethernetLoggingVerbosityVerbose"] = "#dev_nethernet_logging_verbosity_verbose";
|
|
2947
|
+
BindingName2["DevMarketplaceRotationSpeedMultiplierOne"] = "#dev_marketplace_rotation_speed_multiplier_one";
|
|
2948
|
+
BindingName2["DevMarketplaceRotationSpeedMultiplierTwo"] = "#dev_marketplace_rotation_speed_multiplier_two";
|
|
2949
|
+
BindingName2["DevMarketplaceRotationSpeedMultiplierThree"] = "#dev_marketplace_rotation_speed_multiplier_three";
|
|
2950
|
+
BindingName2["DevMarketplaceRotationSpeedMultiplierFour"] = "#dev_marketplace_rotation_speed_multiplier_four";
|
|
2951
|
+
BindingName2["DebugHudRadioOff"] = "#debug_hud_radio_off";
|
|
2952
|
+
BindingName2["DebugHudRadioBasic"] = "#debug_hud_radio_basic";
|
|
2953
|
+
BindingName2["DebugHudRadioImgui"] = "#debug_hud_radio_imgui";
|
|
2954
|
+
BindingName2["DebugHudRadioWorkerthreads"] = "#debug_hud_radio_workerthreads";
|
|
2955
|
+
BindingName2["DebugHudRadioRenderchunks"] = "#debug_hud_radio_renderchunks";
|
|
2956
|
+
BindingName2["DebugHudRadioProfiler"] = "#debug_hud_radio_profiler";
|
|
2957
|
+
BindingName2["DebugHudRadioTexturememory"] = "#debug_hud_radio_texturememory";
|
|
2958
|
+
BindingName2["DebugHudRadioImagememory"] = "#debug_hud_radio_imagememory";
|
|
2959
|
+
BindingName2["DebugHudRadioPerimagememory"] = "#debug_hud_radio_perimagememory";
|
|
2960
|
+
BindingName2["DebugHudRadioBufferMemory"] = "#debug_hud_radio_buffer_memory";
|
|
2961
|
+
BindingName2["DebugHudRadioMaterialMemory"] = "#debug_hud_radio_material_memory";
|
|
2962
|
+
BindingName2["DebugHudRadioCamera"] = "#debug_hud_radio_camera";
|
|
2963
|
+
BindingName2["DebugHudRadioAudio"] = "#debug_hud_radio_audio";
|
|
2964
|
+
BindingName2["DebugHudRadioClientNetwork"] = "#debug_hud_radio_client_network";
|
|
2965
|
+
BindingName2["DebugHudRadioServerNetwork"] = "#debug_hud_radio_server_network";
|
|
2966
|
+
BindingName2["DebugHudRadioClientMobPrediction"] = "#debug_hud_radio_client_mob_prediction";
|
|
2967
|
+
BindingName2["DebugHudRadioSpatialPacketOptimizations"] = "#debug_hud_radio_spatial_packet_optimizations";
|
|
2968
|
+
BindingName2["DebugHudRadioLockContention"] = "#debug_hud_radio_lock_contention";
|
|
2969
|
+
BindingName2["DebugHudRadioOreui"] = "#debug_hud_radio_oreui";
|
|
2970
|
+
BindingName2["ChunkMapModeOff"] = "#chunk_map_mode_off";
|
|
2971
|
+
BindingName2["ChunkMapModeClient"] = "#chunk_map_mode_client";
|
|
2972
|
+
BindingName2["ChunkMapModeClientMainChunksource"] = "#chunk_map_mode_client_main_chunksource";
|
|
2973
|
+
BindingName2["ChunkMapModeServerChunkState"] = "#chunk_map_mode_server_chunk_state";
|
|
2974
|
+
BindingName2["ChunkMapModeServerChunkDebugDisplayState"] = "#chunk_map_mode_server_chunk_debug_display_state";
|
|
2975
|
+
BindingName2["DevConnectionOff"] = "#dev_connection_off";
|
|
2976
|
+
BindingName2["DevConnectionNolimit"] = "#dev_connection_nolimit";
|
|
2977
|
+
BindingName2["DevConnection4g"] = "#dev_connection_4g";
|
|
2978
|
+
BindingName2["DevConnection3g"] = "#dev_connection_3g";
|
|
2979
|
+
BindingName2["DevConnectionSlow"] = "#dev_connection_slow";
|
|
2980
|
+
BindingName2["DevConnectionVeryslow"] = "#dev_connection_veryslow";
|
|
2981
|
+
BindingName2["VsyncOff"] = "#vsync_off";
|
|
2982
|
+
BindingName2["VsyncOn"] = "#vsync_on";
|
|
2983
|
+
BindingName2["VsyncAdaptive"] = "#vsync_adaptive";
|
|
2984
|
+
BindingName2["IdentityEnvironmentDev"] = "#identity_environment_dev";
|
|
2985
|
+
BindingName2["IdentityEnvironmentTest"] = "#identity_environment_test";
|
|
2986
|
+
BindingName2["IdentityEnvironmentProd"] = "#identity_environment_prod";
|
|
2987
|
+
BindingName2["EducationEnvironmentDev"] = "#education_environment_dev";
|
|
2988
|
+
BindingName2["EducationEnvironmentStaging"] = "#education_environment_staging";
|
|
2989
|
+
BindingName2["EducationEnvironmentPreprod"] = "#education_environment_preprod";
|
|
2990
|
+
BindingName2["EducationEnvironmentProd"] = "#education_environment_prod";
|
|
2991
|
+
BindingName2["EducationEnvironmentLocal"] = "#education_environment_local";
|
|
2992
|
+
BindingName2["AzureNotebooksEnvironmentStaging"] = "#azure_notebooks_environment_staging";
|
|
2993
|
+
BindingName2["AzureNotebooksEnvironmentProd"] = "#azure_notebooks_environment_prod";
|
|
2994
|
+
BindingName2["SunsettingTier1"] = "#sunsetting_tier1";
|
|
2995
|
+
BindingName2["SunsettingTier2"] = "#sunsetting_tier2";
|
|
2996
|
+
BindingName2["SunsettingTier3"] = "#sunsetting_tier3";
|
|
2997
|
+
BindingName2["SunsettingTier4"] = "#sunsetting_tier4";
|
|
2998
|
+
BindingName2["SunsettingTier5"] = "#sunsetting_tier5";
|
|
2999
|
+
BindingName2["SunsettingTier6"] = "#sunsetting_tier6";
|
|
3000
|
+
BindingName2["SunsettingNotPending"] = "#sunsetting_not_pending";
|
|
3001
|
+
BindingName2["GraphicsModeRadioSimple"] = "#graphics_mode_radio_simple";
|
|
3002
|
+
BindingName2["GraphicsModeRadioFancy"] = "#graphics_mode_radio_fancy";
|
|
3003
|
+
BindingName2["GraphicsModeRadioDeferred"] = "#graphics_mode_radio_deferred";
|
|
3004
|
+
BindingName2["GraphicsModeRadioDeferredEnabled"] = "#graphics_mode_radio_deferred_enabled";
|
|
3005
|
+
BindingName2["GraphicsModeRadioRayTraced"] = "#graphics_mode_radio_ray_traced";
|
|
3006
|
+
BindingName2["GraphicsModeRadioRayTracedEnabled"] = "#graphics_mode_radio_ray_traced_enabled";
|
|
3007
|
+
BindingName2["GraphicsModeToggleLabel"] = "#graphics_mode_toggle_label";
|
|
3008
|
+
BindingName2["GraphicsModeIsDeferred"] = "#graphics_mode_is_deferred";
|
|
3009
|
+
BindingName2["ShadowQualitySliderLabel"] = "#shadow_quality_slider_label";
|
|
3010
|
+
BindingName2["ShadowQuality"] = "#shadow_quality";
|
|
3011
|
+
BindingName2["ShadowQualityTextValue"] = "#shadow_quality_text_value";
|
|
3012
|
+
BindingName2["ShadowQualitySteps"] = "#shadow_quality_steps";
|
|
3013
|
+
BindingName2["PointLightShadowQualitySliderLabel"] = "#point_light_shadow_quality_slider_label";
|
|
3014
|
+
BindingName2["PointLightShadowQuality"] = "#point_light_shadow_quality";
|
|
3015
|
+
BindingName2["PointLightShadowQualityTextValue"] = "#point_light_shadow_quality_text_value";
|
|
3016
|
+
BindingName2["PointLightShadowQualitySteps"] = "#point_light_shadow_quality_steps";
|
|
3017
|
+
BindingName2["PointLightLodingQualitySliderLabel"] = "#point_light_loding_quality_slider_label";
|
|
3018
|
+
BindingName2["PointLightLodingQuality"] = "#point_light_loding_quality";
|
|
3019
|
+
BindingName2["PointLightLodingQualityTextValue"] = "#point_light_loding_quality_text_value";
|
|
3020
|
+
BindingName2["PointLightLodingQualitySteps"] = "#point_light_loding_quality_steps";
|
|
3021
|
+
BindingName2["VolumetricFogQualitySliderLabel"] = "#volumetric_fog_quality_slider_label";
|
|
3022
|
+
BindingName2["VolumetricFogQuality"] = "#volumetric_fog_quality";
|
|
3023
|
+
BindingName2["VolumetricFogQualityTextValue"] = "#volumetric_fog_quality_text_value";
|
|
3024
|
+
BindingName2["VolumetricFogQualitySteps"] = "#volumetric_fog_quality_steps";
|
|
3025
|
+
BindingName2["ReflectionsQualitySliderLabel"] = "#reflections_quality_slider_label";
|
|
3026
|
+
BindingName2["ReflectionsQuality"] = "#reflections_quality";
|
|
3027
|
+
BindingName2["ReflectionsQualityTextValue"] = "#reflections_quality_text_value";
|
|
3028
|
+
BindingName2["ReflectionsQualitySteps"] = "#reflections_quality_steps";
|
|
3029
|
+
BindingName2["BloomStrengthSliderLabel"] = "#bloom_strength_slider_label";
|
|
3030
|
+
BindingName2["BloomStrength"] = "#bloom_strength";
|
|
3031
|
+
BindingName2["BloomStrengthTextValue"] = "#bloom_strength_text_value";
|
|
3032
|
+
BindingName2["BloomStrengthEnabled"] = "#bloom_strength_enabled";
|
|
3033
|
+
BindingName2["GraphicsModeIsRayTraced"] = "#graphics_mode_is_ray_traced";
|
|
3034
|
+
BindingName2["UpscalingPercentageSliderLabel"] = "#upscaling_percentage_slider_label";
|
|
3035
|
+
BindingName2["UpscalingPercentage"] = "#upscaling_percentage";
|
|
3036
|
+
BindingName2["UpscalingPercentageTextValue"] = "#upscaling_percentage_text_value";
|
|
3037
|
+
BindingName2["UpscalingPercentageSteps"] = "#upscaling_percentage_steps";
|
|
3038
|
+
BindingName2["GraphicsModeIsSimpleOrFancy"] = "#graphics_mode_is_simple_or_fancy";
|
|
3039
|
+
BindingName2["RealmNameEnabled"] = "#realm_name_enabled";
|
|
3040
|
+
BindingName2["WorldName"] = "#world_name";
|
|
3041
|
+
BindingName2["RealmDescription"] = "#realm_description";
|
|
3042
|
+
BindingName2["RealmDescriptionEnabled"] = "#realm_description_enabled";
|
|
3043
|
+
BindingName2["RealmDescriptionVisible"] = "#realm_description_visible";
|
|
3044
|
+
BindingName2["DownloadButtonVisible"] = "#download_button_visible";
|
|
3045
|
+
BindingName2["ResetButtonVisible"] = "#reset_button_visible";
|
|
3046
|
+
BindingName2["ResetButtonEnabled"] = "#reset_button_enabled";
|
|
3047
|
+
BindingName2["ManageFeedButtonEnabled"] = "#manage_feed_button_enabled";
|
|
3048
|
+
BindingName2["ManageFeedButtonVisible"] = "#manage_feed_button_visible";
|
|
3049
|
+
BindingName2["ClubInfotext"] = "#club_infotext";
|
|
3050
|
+
BindingName2["ClubInfotextVisible"] = "#club_infotext_visible";
|
|
3051
|
+
BindingName2["DifficultyOptionLabel"] = "#difficulty_option_label";
|
|
3052
|
+
BindingName2["RealmsDifficultyDropdownEnabled"] = "#realms_difficulty_dropdown_enabled";
|
|
3053
|
+
BindingName2["GameModeOptionLabel"] = "#gameMode_option_label";
|
|
3054
|
+
BindingName2["RealmsGameModeDropdownEnabled"] = "#realms_game_mode_dropdown_enabled";
|
|
3055
|
+
BindingName2["AchievementWarningText"] = "#achievement_warning_text";
|
|
3056
|
+
BindingName2["AchievmentWarningVisible"] = "#achievment_warning_visible";
|
|
3057
|
+
BindingName2["HardcoreWarningText"] = "#hardcore_warning_text";
|
|
3058
|
+
BindingName2["HardcoreWarningVisible"] = "#hardcore_warning_visible";
|
|
3059
|
+
BindingName2["IsHardcore"] = "#is_hardcore";
|
|
3060
|
+
BindingName2["IsHardcoreEnabled"] = "#is_hardcore_enabled";
|
|
3061
|
+
BindingName2["Pvp"] = "#pvp";
|
|
3062
|
+
BindingName2["PvpEnabled"] = "#pvp_enabled";
|
|
3063
|
+
BindingName2["ShowCoordinates"] = "#show_coordinates";
|
|
3064
|
+
BindingName2["ShowCoordinatesEnabled"] = "#show_coordinates_enabled";
|
|
3065
|
+
BindingName2["ShowDaysPlayed"] = "#show_days_played";
|
|
3066
|
+
BindingName2["ShowDaysPlayedEnabled"] = "#show_days_played_enabled";
|
|
3067
|
+
BindingName2["FireSpreads"] = "#fire_spreads";
|
|
3068
|
+
BindingName2["FireSpreadsEnabled"] = "#fire_spreads_enabled";
|
|
3069
|
+
BindingName2["RecipesUnlock"] = "#recipes_unlock";
|
|
3070
|
+
BindingName2["RecipesUnlockEnabled"] = "#recipes_unlock_enabled";
|
|
3071
|
+
BindingName2["TntExplodes"] = "#tnt_explodes";
|
|
3072
|
+
BindingName2["TntExplodesEnabled"] = "#tnt_explodes_enabled";
|
|
3073
|
+
BindingName2["RespawnBlocksExplode"] = "#respawn_blocks_explode";
|
|
3074
|
+
BindingName2["RespawnBlocksExplodeEnabled"] = "#respawn_blocks_explode_enabled";
|
|
3075
|
+
BindingName2["MobLoot"] = "#mob_loot";
|
|
3076
|
+
BindingName2["MobLootEnabled"] = "#mob_loot_enabled";
|
|
3077
|
+
BindingName2["NaturalRegeneration"] = "#natural_regeneration";
|
|
3078
|
+
BindingName2["NaturalRegenerationEnabled"] = "#natural_regeneration_enabled";
|
|
3079
|
+
BindingName2["TileDrops"] = "#tile_drops";
|
|
3080
|
+
BindingName2["TileDropsEnabled"] = "#tile_drops_enabled";
|
|
3081
|
+
BindingName2["DoImmediateRespawn"] = "#do_immediate_respawn";
|
|
3082
|
+
BindingName2["DoImmediateRespawnEnabled"] = "#do_immediate_respawn_enabled";
|
|
3083
|
+
BindingName2["RespawnRadius"] = "#respawn_radius";
|
|
3084
|
+
BindingName2["RespawnRadiusEnabled"] = "#respawn_radius_enabled";
|
|
3085
|
+
BindingName2["AllowCheats"] = "#allow_cheats";
|
|
3086
|
+
BindingName2["AllowCheatsEnabled"] = "#allow_cheats_enabled";
|
|
3087
|
+
BindingName2["DaylightCycle"] = "#daylight_cycle";
|
|
3088
|
+
BindingName2["DaylightCycleEnabled"] = "#daylight_cycle_enabled";
|
|
3089
|
+
BindingName2["KeepInventory"] = "#keep_inventory";
|
|
3090
|
+
BindingName2["KeepInventoryEnabled"] = "#keep_inventory_enabled";
|
|
3091
|
+
BindingName2["MobSpawn"] = "#mob_spawn";
|
|
3092
|
+
BindingName2["MobSpawnEnabled"] = "#mob_spawn_enabled";
|
|
3093
|
+
BindingName2["MobGriefing"] = "#mob_griefing";
|
|
3094
|
+
BindingName2["MobGriefingEnabled"] = "#mob_griefing_enabled";
|
|
3095
|
+
BindingName2["EntitiesDropLoot"] = "#entities_drop_loot";
|
|
3096
|
+
BindingName2["EntitiesDropLootEnabled"] = "#entities_drop_loot_enabled";
|
|
3097
|
+
BindingName2["WeatherCycle"] = "#weather_cycle";
|
|
3098
|
+
BindingName2["WeatherCycleEnabled"] = "#weather_cycle_enabled";
|
|
3099
|
+
BindingName2["CommandBlocksEnabled"] = "#command_blocks_enabled";
|
|
3100
|
+
BindingName2["CommandBlocksEnabledEnabled"] = "#command_blocks_enabled_enabled";
|
|
3101
|
+
BindingName2["RandomTickSpeed"] = "#random_tick_speed";
|
|
3102
|
+
BindingName2["RandomTickSpeedEnabled"] = "#random_tick_speed_enabled";
|
|
3103
|
+
BindingName2["NotDataBound"] = "#not_data_bound";
|
|
3104
|
+
BindingName2["GameModeRadioSurvival"] = "#game_mode_radio_survival";
|
|
3105
|
+
BindingName2["GameModeRadioCreative"] = "#game_mode_radio_creative";
|
|
3106
|
+
BindingName2["WorldTextureName"] = "#world_texture_name";
|
|
3107
|
+
BindingName2["WorldTextureLocationtype"] = "#world_texture_locationtype";
|
|
3108
|
+
BindingName2["ServerSettingsVisible"] = "#server_settings_visible";
|
|
3109
|
+
BindingName2["CreateOnRealmVisible"] = "#create_on_realm_visible";
|
|
3110
|
+
BindingName2["UploadWorldVisible"] = "#upload_world_visible";
|
|
3111
|
+
BindingName2["ShouldHost"] = "#should_host";
|
|
3112
|
+
BindingName2["ServerIcon"] = "#server_icon";
|
|
3113
|
+
BindingName2["ServerIconFileSystem"] = "#server_icon_file_system";
|
|
3114
|
+
BindingName2["ServerOutlineIcon"] = "#server_outline_icon";
|
|
3115
|
+
BindingName2["ShowNewEditWorldOptIn"] = "#show_new_edit_world_opt_in";
|
|
3116
|
+
BindingName2["WorldTemplateOptionsLockWarningText"] = "#world_template_options_lock_warning_text";
|
|
3117
|
+
BindingName2["PlayerHasWorldTemplateOptionUnlockPermissions"] = "#player_has_world_template_option_unlock_permissions";
|
|
3118
|
+
BindingName2["WorldNameEnabled"] = "#world_name_enabled";
|
|
3119
|
+
BindingName2["WorldGameModeDropdownToggleLabel"] = "#world_game_mode_dropdown_toggle_label";
|
|
3120
|
+
BindingName2["WorldGameModeDropdownEnabled"] = "#world_game_mode_dropdown_enabled";
|
|
3121
|
+
BindingName2["PlayerGameModeDropdownToggleLabel"] = "#player_game_mode_dropdown_toggle_label";
|
|
3122
|
+
BindingName2["PlayerGameModeDropdownEnabled"] = "#player_game_mode_dropdown_enabled";
|
|
3123
|
+
BindingName2["PlayerGameModeDropdownVisible"] = "#player_game_mode_dropdown_visible";
|
|
3124
|
+
BindingName2["WorldDifficultyDropdownToggleLabel"] = "#world_difficulty_dropdown_toggle_label";
|
|
3125
|
+
BindingName2["WorldDifficultyDropdownEnabled"] = "#world_difficulty_dropdown_enabled";
|
|
3126
|
+
BindingName2["StartWithMap"] = "#start_with_map";
|
|
3127
|
+
BindingName2["StartWithMapEnabled"] = "#start_with_map_enabled";
|
|
3128
|
+
BindingName2["BonusChest"] = "#bonus_chest";
|
|
3129
|
+
BindingName2["BonusChestEnabled"] = "#bonus_chest_enabled";
|
|
3130
|
+
BindingName2["ShowPermissionsDropdown"] = "#show_permissions_dropdown";
|
|
3131
|
+
BindingName2["WorldTypeDropdownToggleLabel"] = "#world_type_dropdown_toggle_label";
|
|
3132
|
+
BindingName2["WorldTypeDropdownEnabled"] = "#world_type_dropdown_enabled";
|
|
3133
|
+
BindingName2["WorldSeed"] = "#world_seed";
|
|
3134
|
+
BindingName2["WorldSeedEnabled"] = "#world_seed_enabled";
|
|
3135
|
+
BindingName2["ServerSimDistanceSliderLabel"] = "#server_sim_distance_slider_label";
|
|
3136
|
+
BindingName2["ServerSimDistance"] = "#server_sim_distance";
|
|
3137
|
+
BindingName2["ServerSimDistanceEnabled"] = "#server_sim_distance_enabled";
|
|
3138
|
+
BindingName2["ServerSimDistanceTextValue"] = "#server_sim_distance_text_value";
|
|
3139
|
+
BindingName2["ServerSimDistanceSteps"] = "#server_sim_distance_steps";
|
|
3140
|
+
BindingName2["PlayerSleep"] = "#player_sleep";
|
|
3141
|
+
BindingName2["PlayerSleepEnabled"] = "#player_sleep_enabled";
|
|
3142
|
+
BindingName2["PlayerSleepPercentageSliderLabel"] = "#player_sleep_percentage_slider_label";
|
|
3143
|
+
BindingName2["PlayerSleepPercentage"] = "#player_sleep_percentage";
|
|
3144
|
+
BindingName2["PlayerSleepPercentageEnabled"] = "#player_sleep_percentage_enabled";
|
|
3145
|
+
BindingName2["PlayerSleepPercentageTextValue"] = "#player_sleep_percentage_text_value";
|
|
3146
|
+
BindingName2["PlayerSleepPercentageSteps"] = "#player_sleep_percentage_steps";
|
|
3147
|
+
BindingName2["Immediaterespawn"] = "#immediaterespawn";
|
|
3148
|
+
BindingName2["ImmediaterespawnEnabled"] = "#immediaterespawn_enabled";
|
|
3149
|
+
BindingName2["ExperimentalToggleCount"] = "#experimental_toggle_count";
|
|
3150
|
+
BindingName2["EducationToggle"] = "#education_toggle";
|
|
3151
|
+
BindingName2["EducationToggleEnabled"] = "#education_toggle_enabled";
|
|
3152
|
+
BindingName2["AlwaysDay"] = "#always_day";
|
|
3153
|
+
BindingName2["AlwaysDayEnabled"] = "#always_day_enabled";
|
|
3154
|
+
BindingName2["CommandBlocksEnabledOn"] = "#command_blocks_enabled_on";
|
|
3155
|
+
BindingName2["ShowConvertToInfiniteButton"] = "#show_convert_to_infinite_button";
|
|
3156
|
+
BindingName2["MinimumTemplateVersion"] = "#minimum_template_version";
|
|
3157
|
+
BindingName2["MinimumTemplateEnabled"] = "#minimum_template_enabled";
|
|
3158
|
+
BindingName2["LotUploadOrDownload"] = "#lot_upload_or_download";
|
|
3159
|
+
BindingName2["SlotUploadOrDownload"] = "#slot_upload_or_download";
|
|
3160
|
+
BindingName2["SlotNewWorld"] = "#slot_new_world";
|
|
3161
|
+
BindingName2["CyclingIconPathLevel"] = "#cycling_icon_path_level";
|
|
3162
|
+
BindingName2["CyclingIconZipLevel"] = "#cycling_icon_zip_level";
|
|
3163
|
+
BindingName2["CyclingIconFileSystemLevel"] = "#cycling_icon_file_system_level";
|
|
3164
|
+
BindingName2["SelectedPackItemsLevel"] = "#selected_pack_items_level";
|
|
3165
|
+
BindingName2["AvailablePackItemsLevel"] = "#available_pack_items_level";
|
|
3166
|
+
BindingName2["RealmsPackItemsLevel"] = "#realms_pack_items_level";
|
|
3167
|
+
BindingName2["UnownedPackItemsLevel"] = "#unowned_pack_items_level";
|
|
3168
|
+
BindingName2["DefaultItemTextureLevel"] = "#default_item_texture_level";
|
|
3169
|
+
BindingName2["DefaultItemFileSystemLevel"] = "#default_item_file_system_level";
|
|
3170
|
+
BindingName2["DefaultItemZipLevel"] = "#default_item_zip_level";
|
|
3171
|
+
BindingName2["SelectedGridDimensionsLevel"] = "#selected_grid_dimensions_level";
|
|
3172
|
+
BindingName2["AvailableGridDimensionsLevel"] = "#available_grid_dimensions_level";
|
|
3173
|
+
BindingName2["RealmsGridDimensionsLevel"] = "#realms_grid_dimensions_level";
|
|
3174
|
+
BindingName2["UnownedGridDimensionsLevel"] = "#unowned_grid_dimensions_level";
|
|
3175
|
+
BindingName2["UnownedVisibleLevel"] = "#unowned_visible_level";
|
|
3176
|
+
BindingName2["PlatformLockedLevel"] = "#platform_locked_level";
|
|
3177
|
+
BindingName2["TotalSizeBindingLevel"] = "#total_size_binding_level";
|
|
3178
|
+
BindingName2["InvalidPackItemsLevel"] = "#invalid_pack_items_level";
|
|
3179
|
+
BindingName2["InvalidGridDimensionsLevel"] = "#invalid_grid_dimensions_level";
|
|
3180
|
+
BindingName2["SuggestedOffersCollectionLevel"] = "#suggested_offers_collection_level";
|
|
3181
|
+
BindingName2["SuggestedOffersLoadingLevel"] = "#suggested_offers_loading_level";
|
|
3182
|
+
BindingName2["SuggestedOffersTitleLevel"] = "#suggested_offers_title_level";
|
|
3183
|
+
BindingName2["NoAvailablePacksVisibilityLevel"] = "#no_available_packs_visibility_level";
|
|
3184
|
+
BindingName2["NoRealmsPacksVisibilityLevel"] = "#no_realms_packs_visibility_level";
|
|
3185
|
+
BindingName2["NoUnownedPacksVisibilityLevel"] = "#no_unowned_packs_visibility_level";
|
|
3186
|
+
BindingName2["SuggestedContentVisibleLevel"] = "#suggested_content_visible_level";
|
|
3187
|
+
BindingName2["CyclingIconPathAddon"] = "#cycling_icon_path_addon";
|
|
3188
|
+
BindingName2["CyclingIconZipAddon"] = "#cycling_icon_zip_addon";
|
|
3189
|
+
BindingName2["CyclingIconFileSystemAddon"] = "#cycling_icon_file_system_addon";
|
|
3190
|
+
BindingName2["SelectedPackItemsAddon"] = "#selected_pack_items_addon";
|
|
3191
|
+
BindingName2["AvailablePackItemsAddon"] = "#available_pack_items_addon";
|
|
3192
|
+
BindingName2["RealmsPackItemsAddon"] = "#realms_pack_items_addon";
|
|
3193
|
+
BindingName2["UnownedPackItemsAddon"] = "#unowned_pack_items_addon";
|
|
3194
|
+
BindingName2["SelectedGridDimensionsAddon"] = "#selected_grid_dimensions_addon";
|
|
3195
|
+
BindingName2["AvailableGridDimensionsAddon"] = "#available_grid_dimensions_addon";
|
|
3196
|
+
BindingName2["RealmsGridDimensionsAddon"] = "#realms_grid_dimensions_addon";
|
|
3197
|
+
BindingName2["UnownedGridDimensionsAddon"] = "#unowned_grid_dimensions_addon";
|
|
3198
|
+
BindingName2["UnownedVisibleAddon"] = "#unowned_visible_addon";
|
|
3199
|
+
BindingName2["DefaultItemTextureAddon"] = "#default_item_texture_addon";
|
|
3200
|
+
BindingName2["DefaultItemFileSystemAddon"] = "#default_item_file_system_addon";
|
|
3201
|
+
BindingName2["DefaultItemZipAddon"] = "#default_item_zip_addon";
|
|
3202
|
+
BindingName2["PlatformLockedAddon"] = "#platform_locked_addon";
|
|
3203
|
+
BindingName2["TotalSizeBindingAddon"] = "#total_size_binding_addon";
|
|
3204
|
+
BindingName2["InvalidPackItemsAddon"] = "#invalid_pack_items_addon";
|
|
3205
|
+
BindingName2["InvalidGridDimensionsAddon"] = "#invalid_grid_dimensions_addon";
|
|
3206
|
+
BindingName2["SuggestedOffersCollectionAddon"] = "#suggested_offers_collection_addon";
|
|
3207
|
+
BindingName2["SuggestedOffersLoadingAddon"] = "#suggested_offers_loading_addon";
|
|
3208
|
+
BindingName2["SuggestedOffersTitleAddon"] = "#suggested_offers_title_addon";
|
|
3209
|
+
BindingName2["NoAvailablePacksVisibilityAddon"] = "#no_available_packs_visibility_addon";
|
|
3210
|
+
BindingName2["NoRealmsPacksVisibilityAddon"] = "#no_realms_packs_visibility_addon";
|
|
3211
|
+
BindingName2["NoUnownedPacksVisibilityAddon"] = "#no_unowned_packs_visibility_addon";
|
|
3212
|
+
BindingName2["SuggestedContentVisibleAddon"] = "#suggested_content_visible_addon";
|
|
3213
|
+
BindingName2["WorldGameModeRadioSurvival"] = "#world_game_mode_radio_survival";
|
|
3214
|
+
BindingName2["WorldGameModeRadioCreative"] = "#world_game_mode_radio_creative";
|
|
3215
|
+
BindingName2["WorldGameModeRadioAdventure"] = "#world_game_mode_radio_adventure";
|
|
3216
|
+
BindingName2["WorldGameModeRadioSpectator"] = "#world_game_mode_radio_spectator";
|
|
3217
|
+
BindingName2["WorldGameModeRadioHardcore"] = "#world_game_mode_radio_hardcore";
|
|
3218
|
+
BindingName2["XblBroadcastInviteOnly"] = "#xbl_broadcast_invite_only";
|
|
3219
|
+
BindingName2["XblBroadcastFriendsOnly"] = "#xbl_broadcast_friends_only";
|
|
3220
|
+
BindingName2["XblBroadcastFriendsOfFriends"] = "#xbl_broadcast_friends_of_friends";
|
|
3221
|
+
BindingName2["PlatformBroadcastInviteOnly"] = "#platform_broadcast_invite_only";
|
|
3222
|
+
BindingName2["PlatformToggleVisibleInviteOnly"] = "#platform_toggle_visible_invite_only";
|
|
3223
|
+
BindingName2["PlatformBroadcastFriendsOnly"] = "#platform_broadcast_friends_only";
|
|
3224
|
+
BindingName2["PlatformBroadcastFriendsOfFriends"] = "#platform_broadcast_friends_of_friends";
|
|
3225
|
+
BindingName2["PlatformToggleVisibleFriendsOfFriends"] = "#platform_toggle_visible_friends_of_friends";
|
|
3226
|
+
BindingName2["PlayerGameModeRadioDefault"] = "#player_game_mode_radio_default";
|
|
3227
|
+
BindingName2["PlayerGameModeRadioSurvival"] = "#player_game_mode_radio_survival";
|
|
3228
|
+
BindingName2["PlayerGameModeRadioCreative"] = "#player_game_mode_radio_creative";
|
|
3229
|
+
BindingName2["PlayerGameModeRadioAdventure"] = "#player_game_mode_radio_adventure";
|
|
3230
|
+
BindingName2["PlayerGameModeRadioSpectator"] = "#player_game_mode_radio_spectator";
|
|
3231
|
+
BindingName2["PlayerGameModeRadioHardcore"] = "#player_game_mode_radio_hardcore";
|
|
3232
|
+
BindingName2["WorldTypeRadioFlat"] = "#world_type_radio_flat";
|
|
3233
|
+
BindingName2["WorldTypeRadioInfinite"] = "#world_type_radio_infinite";
|
|
3234
|
+
BindingName2["WorldTypeRadioLargeBiomees"] = "#world_type_radio_large_biomees";
|
|
3235
|
+
BindingName2["WorldTypeRadioAmplified"] = "#world_type_radio_amplified";
|
|
3236
|
+
BindingName2["WorldTypeRadioOld"] = "#world_type_radio_old";
|
|
3237
|
+
BindingName2["WorldDifficultyRadioPeaceful"] = "#world_difficulty_radio_peaceful";
|
|
3238
|
+
BindingName2["WorldDifficultyRadioEasy"] = "#world_difficulty_radio_easy";
|
|
3239
|
+
BindingName2["WorldDifficultyRadioNormal"] = "#world_difficulty_radio_normal";
|
|
3240
|
+
BindingName2["WorldDifficultyRadioHard"] = "#world_difficulty_radio_hard";
|
|
3241
|
+
BindingName2["MultiplayerGame"] = "#multiplayer_game";
|
|
3242
|
+
BindingName2["MultiplayerGameEnabled"] = "#multiplayer_game_enabled";
|
|
3243
|
+
BindingName2["PlatformBroadcastDropdownToggleLabel"] = "#platform_broadcast_dropdown_toggle_label";
|
|
3244
|
+
BindingName2["PlatformBroadcastDropdownEnabled"] = "#platform_broadcast_dropdown_enabled";
|
|
3245
|
+
BindingName2["PlatformSettingsDropdownVisible"] = "#platform_settings_dropdown_visible";
|
|
3246
|
+
BindingName2["XblBroadcastDropdownToggleLabel"] = "#xbl_broadcast_dropdown_toggle_label";
|
|
3247
|
+
BindingName2["XblShowBroadcastDropdown"] = "#xbl_show_broadcast_dropdown";
|
|
3248
|
+
BindingName2["CanBeXblEnabled"] = "#can_be_xbl_enabled";
|
|
3249
|
+
BindingName2["ServerVisible"] = "#server_visible";
|
|
3250
|
+
BindingName2["ServerVisibilityEnabled"] = "#server_visibility_enabled";
|
|
3251
|
+
BindingName2["CanBeServerVisible"] = "#can_be_server_visible";
|
|
3252
|
+
BindingName2["CanBeServerEnabled"] = "#can_be_server_enabled";
|
|
3253
|
+
BindingName2["GeneralMultiplayerWarningText"] = "#general_multiplayer_warning_text";
|
|
3254
|
+
BindingName2["GeneralMultiplayerWarningLabelVisible"] = "#general_multiplayer_warning_label_visible";
|
|
3255
|
+
BindingName2["PlatformMultiplayerWarningText"] = "#platform_multiplayer_warning_text";
|
|
3256
|
+
BindingName2["PlatformMultiplayerWarningLabelVisible"] = "#platform_multiplayer_warning_label_visible";
|
|
3257
|
+
BindingName2["XblMultiplayerWarningText"] = "#xbl_multiplayer_warning_text";
|
|
3258
|
+
BindingName2["XblMultiplayerWarningLabelVisible"] = "#xbl_multiplayer_warning_label_visible";
|
|
3259
|
+
BindingName2["ExperimentalToggleValue"] = "#experimental_toggle_value";
|
|
3260
|
+
BindingName2["ExperimentalToggleEnabled"] = "#experimental_toggle_enabled";
|
|
3261
|
+
BindingName2["ShowExperimentalToggle"] = "#show_experimental_toggle";
|
|
3262
|
+
BindingName2["ExperimentalToggleText"] = "#experimental_toggle_text";
|
|
3263
|
+
BindingName2["CloudFileName"] = "#cloud_file_name";
|
|
3264
|
+
BindingName2["CloudFileNameEnabled"] = "#cloud_file_name_enabled";
|
|
3265
|
+
BindingName2["CloudFileLastChanged"] = "#cloud_file_last_changed";
|
|
3266
|
+
BindingName2["CloudFileLastChangedEnabled"] = "#cloud_file_last_changed_enabled";
|
|
3267
|
+
BindingName2["EduCloudUpload"] = "#edu_cloud_upload";
|
|
3268
|
+
BindingName2["EduCloudUploadEnabled"] = "#edu_cloud_upload_enabled";
|
|
3269
|
+
BindingName2["FlatNether"] = "#flat_nether";
|
|
3270
|
+
BindingName2["FlatNetherEnabled"] = "#flat_nether_enabled";
|
|
3271
|
+
BindingName2["GameVersionOverrideToggle"] = "#game_version_override_toggle";
|
|
3272
|
+
BindingName2["GameVersionOverrideToggleEnabled"] = "#game_version_override_toggle_enabled";
|
|
3273
|
+
BindingName2["GameVersionOverride"] = "#game_version_override";
|
|
3274
|
+
BindingName2["GameVersionOverrideEnabled"] = "#game_version_override_enabled";
|
|
3275
|
+
BindingName2["DebugSpawnDimensionDropdownToggleLabel"] = "#debug_spawn_dimension_dropdown_toggle_label";
|
|
3276
|
+
BindingName2["DebugSpawnDimensionDropdownEnabled"] = "#debug_spawn_dimension_dropdown_enabled";
|
|
3277
|
+
BindingName2["DebugSpawnBiomeDropdownToggleLabel"] = "#debug_spawn_biome_dropdown_toggle_label";
|
|
3278
|
+
BindingName2["DebugSpawnBiomeDropdownEnabled"] = "#debug_spawn_biome_dropdown_enabled";
|
|
3279
|
+
BindingName2["DebugBiomeOverrideDropdownToggleLabel"] = "#debug_biome_override_dropdown_toggle_label";
|
|
3280
|
+
BindingName2["DebugBiomeOverrideDropdownDropdownEnabled"] = "#debug_biome_override_dropdown_dropdown_enabled";
|
|
3281
|
+
BindingName2["BaseGameVersionDebugText"] = "#base_game_version_debug_text";
|
|
3282
|
+
BindingName2["DebugSpawnInOverworld"] = "#debug_spawn_in_overworld";
|
|
3283
|
+
BindingName2["DebugSpawnInNether"] = "#debug_spawn_in_nether";
|
|
3284
|
+
BindingName2["DebugSpawnInRandomBiome"] = "#debug_spawn_in_random_biome";
|
|
3285
|
+
BindingName2["DebugSpawnInBasaltDeltas"] = "#debug_spawn_in_basalt_deltas";
|
|
3286
|
+
BindingName2["DebugSpawnInSoulsandValley"] = "#debug_spawn_in_soulsand_valley";
|
|
3287
|
+
BindingName2["DebugSpawnInCrimsonForest"] = "#debug_spawn_in_crimson_forest";
|
|
3288
|
+
BindingName2["DebugSpawnInWarpedForest"] = "#debug_spawn_in_warped_forest";
|
|
3289
|
+
BindingName2["DebugSpawnInHell"] = "#debug_spawn_in_hell";
|
|
3290
|
+
BindingName2["DebugSpawnInDesert"] = "#debug_spawn_in_desert";
|
|
3291
|
+
BindingName2["DebugSpawnInExtremeHills"] = "#debug_spawn_in_extreme_hills";
|
|
3292
|
+
BindingName2["DebugSpawnInForest"] = "#debug_spawn_in_forest";
|
|
3293
|
+
BindingName2["DebugSpawnInTaiga"] = "#debug_spawn_in_taiga";
|
|
3294
|
+
BindingName2["DebugSpawnInSwampland"] = "#debug_spawn_in_swampland";
|
|
3295
|
+
BindingName2["DebugSpawnInRiver"] = "#debug_spawn_in_river";
|
|
3296
|
+
BindingName2["DebugSpawnInFrozenRiver"] = "#debug_spawn_in_frozen_river";
|
|
3297
|
+
BindingName2["DebugSpawnInIcePlains"] = "#debug_spawn_in_ice_plains";
|
|
3298
|
+
BindingName2["DebugSpawnInIceMountains"] = "#debug_spawn_in_ice_mountains";
|
|
3299
|
+
BindingName2["DebugSpawnInMushroomIsland"] = "#debug_spawn_in_mushroom_island";
|
|
3300
|
+
BindingName2["DebugSpawnInMushroomIslandShore"] = "#debug_spawn_in_mushroom_island_shore";
|
|
3301
|
+
BindingName2["DebugSpawnInBeach"] = "#debug_spawn_in_beach";
|
|
3302
|
+
BindingName2["DebugSpawnInDesertHills"] = "#debug_spawn_in_desert_hills";
|
|
3303
|
+
BindingName2["DebugSpawnInForestHills"] = "#debug_spawn_in_forest_hills";
|
|
3304
|
+
BindingName2["DebugSpawnInTaigaHills"] = "#debug_spawn_in_taiga_hills";
|
|
3305
|
+
BindingName2["DebugSpawnInExtremeHillsEdge"] = "#debug_spawn_in_extreme_hills_edge";
|
|
3306
|
+
BindingName2["DebugSpawnInJungle"] = "#debug_spawn_in_jungle";
|
|
3307
|
+
BindingName2["DebugSpawnInJungleHills"] = "#debug_spawn_in_jungle_hills";
|
|
3308
|
+
BindingName2["DebugSpawnInJungleEdge"] = "#debug_spawn_in_jungle_edge";
|
|
3309
|
+
BindingName2["DebugSpawnInStoneBeach"] = "#debug_spawn_in_stone_beach";
|
|
3310
|
+
BindingName2["DebugSpawnInColdBeach"] = "#debug_spawn_in_cold_beach";
|
|
3311
|
+
BindingName2["DebugSpawnInBirchForest"] = "#debug_spawn_in_birch_forest";
|
|
3312
|
+
BindingName2["DebugSpawnInBirchForestHills"] = "#debug_spawn_in_birch_forest_hills";
|
|
3313
|
+
BindingName2["DebugSpawnInRoofedForest"] = "#debug_spawn_in_roofed_forest";
|
|
3314
|
+
BindingName2["DebugSpawnInColdTaiga"] = "#debug_spawn_in_cold_taiga";
|
|
3315
|
+
BindingName2["DebugSpawnInColdTaigaHills"] = "#debug_spawn_in_cold_taiga_hills";
|
|
3316
|
+
BindingName2["DebugSpawnInMegaTaiga"] = "#debug_spawn_in_mega_taiga";
|
|
3317
|
+
BindingName2["DebugSpawnInMegaTaigaHills"] = "#debug_spawn_in_mega_taiga_hills";
|
|
3318
|
+
BindingName2["DebugSpawnInExtremeHillsPlusTrees"] = "#debug_spawn_in_extreme_hills_plus_trees";
|
|
3319
|
+
BindingName2["DebugSpawnInSavanna"] = "#debug_spawn_in_savanna";
|
|
3320
|
+
BindingName2["DebugSpawnInSavannaPlateau"] = "#debug_spawn_in_savanna_plateau";
|
|
3321
|
+
BindingName2["DebugSpawnInMesa"] = "#debug_spawn_in_mesa";
|
|
3322
|
+
BindingName2["DebugSpawnInMesaPlateauStone"] = "#debug_spawn_in_mesa_plateau_stone";
|
|
3323
|
+
BindingName2["DebugSpawnInMesaPlateau"] = "#debug_spawn_in_mesa_plateau";
|
|
3324
|
+
BindingName2["DebugSpawnInOcean"] = "#debug_spawn_in_ocean";
|
|
3325
|
+
BindingName2["DebugSpawnInDeepOcean"] = "#debug_spawn_in_deep_ocean";
|
|
3326
|
+
BindingName2["DebugSpawnInWarmOcean"] = "#debug_spawn_in_warm_ocean";
|
|
3327
|
+
BindingName2["DebugSpawnInDeepWarmOcean"] = "#debug_spawn_in_deep_warm_ocean";
|
|
3328
|
+
BindingName2["DebugSpawnInLukewarmOcean"] = "#debug_spawn_in_lukewarm_ocean";
|
|
3329
|
+
BindingName2["DebugSpawnInDeepLukewarmOcean"] = "#debug_spawn_in_deep_lukewarm_ocean";
|
|
3330
|
+
BindingName2["DebugSpawnInColdOcean"] = "#debug_spawn_in_cold_ocean";
|
|
3331
|
+
BindingName2["DebugSpawnInDeepColdOcean"] = "#debug_spawn_in_deep_cold_ocean";
|
|
3332
|
+
BindingName2["DebugSpawnInFrozenOcean"] = "#debug_spawn_in_frozen_ocean";
|
|
3333
|
+
BindingName2["DebugSpawnInDeepFrozenOcean"] = "#debug_spawn_in_deep_frozen_ocean";
|
|
3334
|
+
BindingName2["DebugSpawnInBambooJungle"] = "#debug_spawn_in_bamboo_jungle";
|
|
3335
|
+
BindingName2["DebugSpawnInBambooJungleHills"] = "#debug_spawn_in_bamboo_jungle_hills";
|
|
3336
|
+
BindingName2["DebugSpawnInSunflowerPlains"] = "#debug_spawn_in_sunflower_plains";
|
|
3337
|
+
BindingName2["DebugSpawnInSwamplandMutated"] = "#debug_spawn_in_swampland_mutated";
|
|
3338
|
+
BindingName2["DebugSpawnInIcePlainsSpikes"] = "#debug_spawn_in_ice_plains_spikes";
|
|
3339
|
+
BindingName2["DebugSpawnInColdTaigaMutated"] = "#debug_spawn_in_cold_taiga_mutated";
|
|
3340
|
+
BindingName2["DebugSpawnInSavannaMutated"] = "#debug_spawn_in_savanna_mutated";
|
|
3341
|
+
BindingName2["DebugSpawnInSavannaPlateauMutated"] = "#debug_spawn_in_savanna_plateau_mutated";
|
|
3342
|
+
BindingName2["DebugSpawnInRoofedForestMutated"] = "#debug_spawn_in_roofed_forest_mutated";
|
|
3343
|
+
BindingName2["DebugSpawnInDesertMutated"] = "#debug_spawn_in_desert_mutated";
|
|
3344
|
+
BindingName2["DebugSpawnInFlowerForest"] = "#debug_spawn_in_flower_forest";
|
|
3345
|
+
BindingName2["DebugSpawnInTaigaMutated"] = "#debug_spawn_in_taiga_mutated";
|
|
3346
|
+
BindingName2["DebugSpawnInJungleMutated"] = "#debug_spawn_in_jungle_mutated";
|
|
3347
|
+
BindingName2["DebugSpawnInJungleEdgeMutated"] = "#debug_spawn_in_jungle_edge_mutated";
|
|
3348
|
+
BindingName2["DebugSpawnInMesaBryce"] = "#debug_spawn_in_mesa_bryce";
|
|
3349
|
+
BindingName2["DebugSpawnInMesaPlateauStoneMutated"] = "#debug_spawn_in_mesa_plateau_stone_mutated";
|
|
3350
|
+
BindingName2["DebugSpawnInMesaPlateauMutated"] = "#debug_spawn_in_mesa_plateau_mutated";
|
|
3351
|
+
BindingName2["DebugSpawnInBirchForestMutated"] = "#debug_spawn_in_birch_forest_mutated";
|
|
3352
|
+
BindingName2["DebugSpawnInBirchForestHillsMutated"] = "#debug_spawn_in_birch_forest_hills_mutated";
|
|
3353
|
+
BindingName2["DebugSpawnInRedwoodTaigaMutated"] = "#debug_spawn_in_redwood_taiga_mutated";
|
|
3354
|
+
BindingName2["DebugSpawnInExtremeHillsMutated"] = "#debug_spawn_in_extreme_hills_mutated";
|
|
3355
|
+
BindingName2["DebugSpawnInExtremeHillsPlusTreesMutated"] = "#debug_spawn_in_extreme_hills_plus_trees_mutated";
|
|
3356
|
+
BindingName2["DebugSpawnInRedwoodTaigaHillsMutated"] = "#debug_spawn_in_redwood_taiga_hills_mutated";
|
|
3357
|
+
BindingName2["DebugSpawnInPlains"] = "#debug_spawn_in_plains";
|
|
3358
|
+
BindingName2["DebugBiomeOverrideRandomBiome"] = "#debug_biome_override_random_biome";
|
|
3359
|
+
BindingName2["DebugBiomeOverrideBasaltDeltas"] = "#debug_biome_override_basalt_deltas";
|
|
3360
|
+
BindingName2["DebugBiomeOverrideSoulsandValley"] = "#debug_biome_override_soulsand_valley";
|
|
3361
|
+
BindingName2["DebugBiomeOverrideCrimsonForest"] = "#debug_biome_override_crimson_forest";
|
|
3362
|
+
BindingName2["DebugBiomeOverrideWarpedForest"] = "#debug_biome_override_warped_forest";
|
|
3363
|
+
BindingName2["DebugBiomeOverrideHell"] = "#debug_biome_override_hell";
|
|
3364
|
+
BindingName2["DebugBiomeOverrideDesert"] = "#debug_biome_override_desert";
|
|
3365
|
+
BindingName2["DebugBiomeOverrideExtremeHills"] = "#debug_biome_override_extreme_hills";
|
|
3366
|
+
BindingName2["DebugBiomeOverrideForest"] = "#debug_biome_override_forest";
|
|
3367
|
+
BindingName2["DebugBiomeOverrideTaiga"] = "#debug_biome_override_taiga";
|
|
3368
|
+
BindingName2["DebugBiomeOverrideSwampland"] = "#debug_biome_override_swampland";
|
|
3369
|
+
BindingName2["DebugBiomeOverrideRiver"] = "#debug_biome_override_river";
|
|
3370
|
+
BindingName2["DebugBiomeOverrideFrozenRiver"] = "#debug_biome_override_frozen_river";
|
|
3371
|
+
BindingName2["DebugBiomeOverrideIcePlains"] = "#debug_biome_override_ice_plains";
|
|
3372
|
+
BindingName2["DebugBiomeOverrideIceMountains"] = "#debug_biome_override_ice_mountains";
|
|
3373
|
+
BindingName2["DebugBiomeOverrideMushroomIsland"] = "#debug_biome_override_mushroom_island";
|
|
3374
|
+
BindingName2["DebugBiomeOverrideMushroomIslandShore"] = "#debug_biome_override_mushroom_island_shore";
|
|
3375
|
+
BindingName2["DebugBiomeOverrideBeach"] = "#debug_biome_override_beach";
|
|
3376
|
+
BindingName2["DebugBiomeOverrideDesertHills"] = "#debug_biome_override_desert_hills";
|
|
3377
|
+
BindingName2["DebugBiomeOverrideForestHills"] = "#debug_biome_override_forest_hills";
|
|
3378
|
+
BindingName2["DebugBiomeOverrideTaigaHills"] = "#debug_biome_override_taiga_hills";
|
|
3379
|
+
BindingName2["DebugBiomeOverrideExtremeHillsEdge"] = "#debug_biome_override_extreme_hills_edge";
|
|
3380
|
+
BindingName2["DebugBiomeOverrideJungle"] = "#debug_biome_override_jungle";
|
|
3381
|
+
BindingName2["DebugBiomeOverrideJungleHills"] = "#debug_biome_override_jungle_hills";
|
|
3382
|
+
BindingName2["DebugBiomeOverrideJungleEdge"] = "#debug_biome_override_jungle_edge";
|
|
3383
|
+
BindingName2["DebugBiomeOverrideStoneBeach"] = "#debug_biome_override_stone_beach";
|
|
3384
|
+
BindingName2["DebugBiomeOverrideColdBeach"] = "#debug_biome_override_cold_beach";
|
|
3385
|
+
BindingName2["DebugBiomeOverrideBirchForest"] = "#debug_biome_override_birch_forest";
|
|
3386
|
+
BindingName2["DebugBiomeOverrideBirchForestHills"] = "#debug_biome_override_birch_forest_hills";
|
|
3387
|
+
BindingName2["DebugBiomeOverrideRoofedForest"] = "#debug_biome_override_roofed_forest";
|
|
3388
|
+
BindingName2["DebugBiomeOverrideColdTaiga"] = "#debug_biome_override_cold_taiga";
|
|
3389
|
+
BindingName2["DebugBiomeOverrideColdTaigaHills"] = "#debug_biome_override_cold_taiga_hills";
|
|
3390
|
+
BindingName2["DebugBiomeOverrideMegaTaiga"] = "#debug_biome_override_mega_taiga";
|
|
3391
|
+
BindingName2["DebugBiomeOverrideMegaTaigaHills"] = "#debug_biome_override_mega_taiga_hills";
|
|
3392
|
+
BindingName2["DebugBiomeOverrideExtremeHillsPlusTrees"] = "#debug_biome_override_extreme_hills_plus_trees";
|
|
3393
|
+
BindingName2["DebugBiomeOverrideSavanna"] = "#debug_biome_override_savanna";
|
|
3394
|
+
BindingName2["DebugBiomeOverrideSavannaPlateau"] = "#debug_biome_override_savanna_plateau";
|
|
3395
|
+
BindingName2["DebugBiomeOverrideMesa"] = "#debug_biome_override_mesa";
|
|
3396
|
+
BindingName2["DebugBiomeOverrideMesaPlateauStone"] = "#debug_biome_override_mesa_plateau_stone";
|
|
3397
|
+
BindingName2["DebugBiomeOverrideMesaPlateau"] = "#debug_biome_override_mesa_plateau";
|
|
3398
|
+
BindingName2["DebugBiomeOverrideOcean"] = "#debug_biome_override_ocean";
|
|
3399
|
+
BindingName2["DebugBiomeOverrideDeepOcean"] = "#debug_biome_override_deep_ocean";
|
|
3400
|
+
BindingName2["DebugBiomeOverrideWarmOcean"] = "#debug_biome_override_warm_ocean";
|
|
3401
|
+
BindingName2["DebugBiomeOverrideDeepWarmOcean"] = "#debug_biome_override_deep_warm_ocean";
|
|
3402
|
+
BindingName2["DebugBiomeOverrideLukewarmOcean"] = "#debug_biome_override_lukewarm_ocean";
|
|
3403
|
+
BindingName2["DebugBiomeOverrideDeepLukewarmOcean"] = "#debug_biome_override_deep_lukewarm_ocean";
|
|
3404
|
+
BindingName2["DebugBiomeOverrideColdOcean"] = "#debug_biome_override_cold_ocean";
|
|
3405
|
+
BindingName2["DebugBiomeOverrideDeepColdOcean"] = "#debug_biome_override_deep_cold_ocean";
|
|
3406
|
+
BindingName2["DebugBiomeOverrideFrozenOcean"] = "#debug_biome_override_frozen_ocean";
|
|
3407
|
+
BindingName2["DebugBiomeOverrideDeepFrozenOcean"] = "#debug_biome_override_deep_frozen_ocean";
|
|
3408
|
+
BindingName2["DebugBiomeOverrideBambooJungle"] = "#debug_biome_override_bamboo_jungle";
|
|
3409
|
+
BindingName2["DebugBiomeOverrideBambooJungleHills"] = "#debug_biome_override_bamboo_jungle_hills";
|
|
3410
|
+
BindingName2["DebugBiomeOverrideSunflowerPlains"] = "#debug_biome_override_sunflower_plains";
|
|
3411
|
+
BindingName2["DebugBiomeOverrideSwamplandMutated"] = "#debug_biome_override_swampland_mutated";
|
|
3412
|
+
BindingName2["DebugBiomeOverrideIcePlainsSpikes"] = "#debug_biome_override_ice_plains_spikes";
|
|
3413
|
+
BindingName2["DebugBiomeOverrideColdTaigaMutated"] = "#debug_biome_override_cold_taiga_mutated";
|
|
3414
|
+
BindingName2["DebugBiomeOverrideSavannaMutated"] = "#debug_biome_override_savanna_mutated";
|
|
3415
|
+
BindingName2["DebugBiomeOverrideSavannaPlateauMutated"] = "#debug_biome_override_savanna_plateau_mutated";
|
|
3416
|
+
BindingName2["DebugBiomeOverrideRoofedForestMutated"] = "#debug_biome_override_roofed_forest_mutated";
|
|
3417
|
+
BindingName2["DebugBiomeOverrideDesertMutated"] = "#debug_biome_override_desert_mutated";
|
|
3418
|
+
BindingName2["DebugBiomeOverrideFlowerForest"] = "#debug_biome_override_flower_forest";
|
|
3419
|
+
BindingName2["DebugBiomeOverrideTaigaMutated"] = "#debug_biome_override_taiga_mutated";
|
|
3420
|
+
BindingName2["DebugBiomeOverrideJungleMutated"] = "#debug_biome_override_jungle_mutated";
|
|
3421
|
+
BindingName2["DebugBiomeOverrideJungleEdgeMutated"] = "#debug_biome_override_jungle_edge_mutated";
|
|
3422
|
+
BindingName2["DebugBiomeOverrideMesaBryce"] = "#debug_biome_override_mesa_bryce";
|
|
3423
|
+
BindingName2["DebugBiomeOverrideMesaPlateauStoneMutated"] = "#debug_biome_override_mesa_plateau_stone_mutated";
|
|
3424
|
+
BindingName2["DebugBiomeOverrideMesaPlateauMutated"] = "#debug_biome_override_mesa_plateau_mutated";
|
|
3425
|
+
BindingName2["DebugBiomeOverrideBirchForestMutated"] = "#debug_biome_override_birch_forest_mutated";
|
|
3426
|
+
BindingName2["DebugBiomeOverrideBirchForestHillsMutated"] = "#debug_biome_override_birch_forest_hills_mutated";
|
|
3427
|
+
BindingName2["DebugBiomeOverrideRedwoodTaigaMutated"] = "#debug_biome_override_redwood_taiga_mutated";
|
|
3428
|
+
BindingName2["DebugBiomeOverrideExtremeHillsMutated"] = "#debug_biome_override_extreme_hills_mutated";
|
|
3429
|
+
BindingName2["DebugBiomeOverrideExtremeHillsPlusTreesMutated"] = "#debug_biome_override_extreme_hills_plus_trees_mutated";
|
|
3430
|
+
BindingName2["DebugBiomeOverrideRedwoodTaigaHillsMutated"] = "#debug_biome_override_redwood_taiga_hills_mutated";
|
|
3431
|
+
BindingName2["DebugBiomeOverridePlains"] = "#debug_biome_override_plains";
|
|
3432
|
+
BindingName2["SidebarNavImage"] = "#sidebar_nav_image";
|
|
3433
|
+
BindingName2["SidebarNavImageFileSystem"] = "#sidebar_nav_image_file_system";
|
|
3434
|
+
BindingName2["SidebarNavImageBilinearEnabled"] = "#sidebar_nav_image_bilinear_enabled";
|
|
3435
|
+
BindingName2["Bilinear"] = "#bilinear";
|
|
3436
|
+
BindingName2["DropdownCheckedColor"] = "#dropdown_checked_color";
|
|
3437
|
+
BindingName2["ExpandedColor"] = "#expanded_color";
|
|
3438
|
+
BindingName2["SelectedColor"] = "#selected_color";
|
|
3439
|
+
BindingName2["SidebarToggleTts"] = "#sidebar_toggle_tts";
|
|
3440
|
+
BindingName2["SimpleSidebarOptionToggleCheck"] = "#simple_sidebar_option_toggle_check";
|
|
3441
|
+
BindingName2["SidebarOptionLabel"] = "#sidebar_option_label";
|
|
3442
|
+
BindingName2["VerboseSidebarOptionToggleCheck"] = "#verbose_sidebar_option_toggle_check";
|
|
3443
|
+
BindingName2["VerboseOptionFocusId"] = "#verbose_option_focus_id";
|
|
3444
|
+
BindingName2["DropdownToggleIcon"] = "#dropdown_toggle_icon";
|
|
3445
|
+
BindingName2["DropdownToggleTexture"] = "#dropdown_toggle_texture";
|
|
3446
|
+
BindingName2["ExpandOptionFocusId"] = "#expand_option_focus_id";
|
|
3447
|
+
BindingName2["SidebarVerboseToggleCheck"] = "#sidebar_verbose_toggle_check";
|
|
3448
|
+
BindingName2["VerboseToggleTts"] = "#verbose_toggle_tts";
|
|
3449
|
+
BindingName2["SidebarOptionToggleCheck"] = "#sidebar_option_toggle_check";
|
|
3450
|
+
BindingName2["IsSimpleSidebarStateActive"] = "#is_simple_sidebar_state_active";
|
|
3451
|
+
BindingName2["SidebarScreenNavScreenButtonLabel"] = "#sidebar_screen_nav_screen_button_label";
|
|
3452
|
+
BindingName2["IsScreenNavButtonVisible"] = "#is_screen_nav_button_visible";
|
|
3453
|
+
BindingName2["IsVerboseSidebarNavButtonVisible"] = "#is_verbose_sidebar_nav_button_visible";
|
|
3454
|
+
BindingName2["IsSidebarNavReady"] = "#is_sidebar_nav_ready";
|
|
3455
|
+
BindingName2["SidebarSections"] = "#sidebar_sections";
|
|
3456
|
+
BindingName2["IsControllerCloseHoverVisible"] = "#is_controller_close_hover_visible";
|
|
3457
|
+
BindingName2["IsSidebarNavVisible"] = "#is_sidebar_nav_visible";
|
|
3458
|
+
BindingName2["SimpleSidebarFactoryCollection"] = "#simple_sidebar_factory_collection";
|
|
3459
|
+
BindingName2["VerboseSidebarFactoryCollection"] = "#verbose_sidebar_factory_collection";
|
|
3460
|
+
BindingName2["IsControllerHoverVisible"] = "#is_controller_hover_visible";
|
|
3461
|
+
BindingName2["PageLoadingFinished"] = "#page_loading_finished";
|
|
3462
|
+
BindingName2["ShowingPlatformStoreIcon"] = "#showing_platform_store_icon";
|
|
3463
|
+
BindingName2["SignTextMulti"] = "#sign_text_multi";
|
|
3464
|
+
BindingName2["SignText"] = "#sign_text";
|
|
3465
|
+
BindingName2["InProgressTitle"] = "#in_progress_title";
|
|
3466
|
+
BindingName2["InProgressTextBinding"] = "#in_progress_text_binding";
|
|
3467
|
+
BindingName2["SkinCyclePackLeftButtonEnabled"] = "#skin_cycle_pack_left_button_enabled";
|
|
3468
|
+
BindingName2["SkinCyclePackRightButtonEnabled"] = "#skin_cycle_pack_right_button_enabled";
|
|
3469
|
+
BindingName2["SkinAnimations"] = "#skin_animations";
|
|
3470
|
+
BindingName2["SkinLockVisible"] = "#skin_lock_visible";
|
|
3471
|
+
BindingName2["GridButtonFocusId"] = "#grid_button_focus_id";
|
|
3472
|
+
BindingName2["SkinButtonGamePadVisible"] = "#skin_button_game_pad_visible";
|
|
3473
|
+
BindingName2["SkinButtonVisible"] = "#skin_button_visible";
|
|
3474
|
+
BindingName2["ValidSkinOfferIndex"] = "#valid_skin_offer_index";
|
|
3475
|
+
BindingName2["IsLoadingOutlineVisible"] = "#is_loading_outline_visible";
|
|
3476
|
+
BindingName2["SkinPackLoadingProgressVisible"] = "#skin_pack_loading_progress_visible";
|
|
3477
|
+
BindingName2["IsUsingGamepadIcon"] = "#is_using_gamepad_icon";
|
|
3478
|
+
BindingName2["LeftBumper"] = "#left_bumper";
|
|
3479
|
+
BindingName2["RightBumper"] = "#right_bumper";
|
|
3480
|
+
BindingName2["ShowReloadCustomSkinButton"] = "#show_reload_custom_skin_button";
|
|
3481
|
+
BindingName2["AcceptSkinButtonText"] = "#accept_skin_button_text";
|
|
3482
|
+
BindingName2["AcceptSkinButtonEnabled"] = "#accept_skin_button_enabled";
|
|
3483
|
+
BindingName2["LimitedStatusVisible"] = "#limited_status_visible";
|
|
3484
|
+
BindingName2["AppearanceStatusBriefLabel"] = "#appearance_status_brief_label";
|
|
3485
|
+
BindingName2["IsAppearanceStatusVisible"] = "#is_appearance_status_visible";
|
|
3486
|
+
BindingName2["AppearanceStatusHoverLabel"] = "#appearance_status_hover_label";
|
|
3487
|
+
BindingName2["FocusOverrideRight"] = "#focus_override_right";
|
|
3488
|
+
BindingName2["ShowPackLocked"] = "#show_pack_locked";
|
|
3489
|
+
BindingName2["ShowPackUnlocked"] = "#show_pack_unlocked";
|
|
3490
|
+
BindingName2["PremiumSkinsGridDimensions"] = "#premium_skins_grid_dimensions";
|
|
3491
|
+
BindingName2["ShowNewPackIcon"] = "#show_new_pack_icon";
|
|
3492
|
+
BindingName2["PackLoadingNoConnectionVisible"] = "#pack_loading_no_connection_visible";
|
|
3493
|
+
BindingName2["PackLoadingProgressVisible"] = "#pack_loading_progress_visible";
|
|
3494
|
+
BindingName2["PremiumPacksGridDimensions"] = "#premium_packs_grid_dimensions";
|
|
3495
|
+
BindingName2["DefaultSkinsGridDimensions"] = "#default_skins_grid_dimensions";
|
|
3496
|
+
BindingName2["RecentSkinsGridDimensions"] = "#recent_skins_grid_dimensions";
|
|
3497
|
+
BindingName2["IsRecentGridReady"] = "#is_recent_grid_ready";
|
|
3498
|
+
BindingName2["SkinContentVisible"] = "#skin_content_visible";
|
|
3499
|
+
BindingName2["SkinSearchProgressVisible"] = "#skin_search_progress_visible";
|
|
3500
|
+
BindingName2["NoResultArrowTooltip"] = "#no_result_arrow_tooltip";
|
|
3501
|
+
BindingName2["ShowInputOverlayTemplates"] = "#show_input_overlay_templates";
|
|
3502
|
+
BindingName2["ShowInputOverlayArmorsAndTools"] = "#show_input_overlay_armors_and_tools";
|
|
3503
|
+
BindingName2["ShowInputOverlayArmors"] = "#show_input_overlay_armors";
|
|
3504
|
+
BindingName2["ShowMaterialOverlayAll"] = "#show_material_overlay_all";
|
|
3505
|
+
BindingName2["ShowMaterialOverlayIngot"] = "#show_material_overlay_ingot";
|
|
3506
|
+
BindingName2["ArmorTrimPattern"] = "#armor_trim_pattern";
|
|
3507
|
+
BindingName2["ArmorTrimMaterial"] = "#armor_trim_material";
|
|
3508
|
+
BindingName2["IsRightTabSmithingTable"] = "#is_right_tab_smithing_table";
|
|
3509
|
+
BindingName2["UnreadNotificationIcon"] = "#unread_notification_icon";
|
|
3510
|
+
BindingName2["UnreadNotificationIconVisibility"] = "#unread_notification_icon_visibility";
|
|
3511
|
+
BindingName2["EduAiLessonCrafterOn"] = "#edu_ai_lesson_crafter_on";
|
|
3512
|
+
BindingName2["EduSignedInOnlyUiVisible"] = "#edu_signed_in_only_ui_visible";
|
|
3513
|
+
BindingName2["EduDemoOnlyUiVisible"] = "#edu_demo_only_ui_visible";
|
|
3514
|
+
BindingName2["PersonaAndSkinsEnabled"] = "#persona_and_skins_enabled";
|
|
3515
|
+
BindingName2["ShowGamerpic"] = "#show_gamerpic";
|
|
3516
|
+
BindingName2["IsAppearanceVisible"] = "#is_appearance_visible";
|
|
3517
|
+
BindingName2["GatheringButtonText"] = "#gathering_button_text";
|
|
3518
|
+
BindingName2["GatheringButtonEnabled"] = "#gathering_button_enabled";
|
|
3519
|
+
BindingName2["GatheringBadge"] = "#gathering_badge";
|
|
3520
|
+
BindingName2["GatheringBadgeVisible"] = "#gathering_badge_visible";
|
|
3521
|
+
BindingName2["GatheringCountdownText"] = "#gathering_countdown_text";
|
|
3522
|
+
BindingName2["GatheringCaptionForegroundColor"] = "#gathering_caption_foreground_color";
|
|
3523
|
+
BindingName2["GatheringCaptionBackgroundColor"] = "#gathering_caption_background_color";
|
|
3524
|
+
BindingName2["UpperOnlineButtonsVisible"] = "#upper_online_buttons_visible";
|
|
3525
|
+
BindingName2["GatheringEnabled"] = "#gathering_enabled";
|
|
3526
|
+
BindingName2["PlatformSigninText"] = "#platform_signin_text";
|
|
3527
|
+
BindingName2["GamertagPicAndLabelVisible"] = "#gamertag_pic_and_label_visible";
|
|
3528
|
+
BindingName2["FeedbackVisible"] = "#feedback_visible";
|
|
3529
|
+
BindingName2["SigninginText"] = "#signingin_text";
|
|
3530
|
+
BindingName2["SigninginVisible"] = "#signingin_visible";
|
|
3531
|
+
BindingName2["AchievementsIconVisible"] = "#achievements_icon_visible";
|
|
3532
|
+
BindingName2["GetStartedButtonText"] = "#get_started_button_text";
|
|
3533
|
+
BindingName2["UnlockFullGameButtonText"] = "#unlock_full_game_button_text";
|
|
3534
|
+
BindingName2["UpdateIconVisible"] = "#update_icon_visible";
|
|
3535
|
+
BindingName2["NewOffers"] = "#new_offers";
|
|
3536
|
+
BindingName2["ShowingNewPlayerFlowButtons"] = "#showing_new_player_flow_buttons";
|
|
3537
|
+
BindingName2["RealmsPromoVisible"] = "#realms_promo_visible";
|
|
3538
|
+
BindingName2["EditionsVisible"] = "#editions_visible";
|
|
3539
|
+
BindingName2["NotRealmsPromoVisibleAndSupportsLaunchingLegacyVersion"] = "#not_realms_promo_visible_and_supports_launching_legacy_version";
|
|
3540
|
+
BindingName2["EditionsVisibleAndNotRealmsPromoVisible"] = "#editions_visible_and_not_realms_promo_visible";
|
|
3541
|
+
BindingName2["YHelperVisible"] = "#y_helper_visible";
|
|
3542
|
+
BindingName2["XHelperVisible"] = "#x_helper_visible";
|
|
3543
|
+
BindingName2["ButtonKeyboardDescription"] = "#button_keyboard_description";
|
|
3544
|
+
BindingName2["SwapVrKeyboardHelperVisible"] = "#swap_vr_keyboard_helper_visible";
|
|
3545
|
+
BindingName2["RealmsNotificationCount"] = "#realms_notification_count";
|
|
3546
|
+
BindingName2["CloudUploadDoNotShowAgain"] = "#cloud_upload_do_not_show_again";
|
|
3547
|
+
BindingName2["ScreenNeedsRebuild"] = "#screen_needs_rebuild";
|
|
3548
|
+
BindingName2["StoneCellBackgroundTexture"] = "#stone_cell_background_texture";
|
|
3549
|
+
BindingName2["ItemStackCount"] = "#item_stack_count";
|
|
3550
|
+
BindingName2["StoneSelectorTotalItems"] = "#stone_selector_total_items";
|
|
3551
|
+
BindingName2["IsRightTabStonecutter"] = "#is_right_tab_stonecutter";
|
|
3552
|
+
BindingName2["IsLeftTabStones"] = "#is_left_tab_stones";
|
|
3553
|
+
BindingName2["FileStorageLocationEnabled"] = "#file_storage_location_enabled";
|
|
3554
|
+
BindingName2["FileStorageLocationToggleLabel"] = "#file_storage_location_toggle_label";
|
|
3555
|
+
BindingName2["ScreenshotsShowcaseEnabled"] = "#screenshots_showcase_enabled";
|
|
3556
|
+
BindingName2["ScreenshotsGalleryEnabled"] = "#screenshots_gallery_enabled";
|
|
3557
|
+
BindingName2["GroupDropdown"] = "#group_dropdown";
|
|
3558
|
+
BindingName2["TextEditSelected"] = "#text_edit_selected";
|
|
3559
|
+
BindingName2["SortDropdown"] = "#sort_dropdown";
|
|
3560
|
+
BindingName2["MultiselectEnabled"] = "#multiselectEnabled";
|
|
3561
|
+
BindingName2["Sub_"] = "#sub_";
|
|
3562
|
+
BindingName2["StorageDropdown"] = "#storage_dropdown";
|
|
3563
|
+
BindingName2["CategoryPanelVisible"] = "#category_panel_visible";
|
|
3564
|
+
BindingName2["StoragePanelLength"] = "#storage_panel_length";
|
|
3565
|
+
BindingName2["LegacyWorldVisible"] = "#legacy_world_visible";
|
|
3566
|
+
BindingName2["RetailtopreviewWorldVisible"] = "#retailtopreview_world_visible";
|
|
3567
|
+
BindingName2["PackInfoTexture"] = "#pack_info_texture";
|
|
3568
|
+
BindingName2["LegacyWorldStorageDropdown"] = "#legacy_world_storage_dropdown";
|
|
3569
|
+
BindingName2["SyncLegacyWorldButtonVisible"] = "#sync_legacy_world_button_visible";
|
|
3570
|
+
BindingName2["LegacyWorldLength"] = "#legacy_world_length";
|
|
3571
|
+
BindingName2["IsLoadingLegacyWorld"] = "#is_loading_legacy_world";
|
|
3572
|
+
BindingName2["RetailtopreviewWorldStorageDropdown"] = "#retailtopreview_world_storage_dropdown";
|
|
3573
|
+
BindingName2["SyncRetailtopreviewWorldButtonVisible"] = "#sync_retailtopreview_world_button_visible";
|
|
3574
|
+
BindingName2["RetailtopreviewWorldLength"] = "#retailtopreview_world_length";
|
|
3575
|
+
BindingName2["IsLoadingRetailtopreviewWorld"] = "#is_loading_retailtopreview_world";
|
|
3576
|
+
BindingName2["ScrollbarHitBottom"] = "#scrollbar_hit_bottom";
|
|
3577
|
+
BindingName2["DependencyLabelText"] = "#dependency_label_text";
|
|
3578
|
+
BindingName2["DependentPacksLength"] = "#dependent_packs_length";
|
|
3579
|
+
BindingName2["SdlTextureComponentImagePath"] = "#sdl_texture_component_image_path";
|
|
3580
|
+
BindingName2["SdlTextureComponentImageSystem"] = "#sdl_texture_component_image_system";
|
|
3581
|
+
BindingName2["SdlTextureComponentImageVisible"] = "#sdl_texture_component_image_visible";
|
|
3582
|
+
BindingName2["SdlTextureColor"] = "#sdl_texture_color";
|
|
3583
|
+
BindingName2["SdlTextureAlpha"] = "#sdl_texture_alpha";
|
|
3584
|
+
BindingName2["TopRowFocusOverrideUp"] = "#top_row_focus_override_up";
|
|
3585
|
+
BindingName2["OfferGridItemButtonFocusId"] = "#offer_grid_item_button_focus_id";
|
|
3586
|
+
BindingName2["LastItemFocusOverrideRight"] = "#last_item_focus_override_right";
|
|
3587
|
+
BindingName2["IconOverlayPositionCollection"] = "#icon_overlay_position_collection";
|
|
3588
|
+
BindingName2["NewOfferIconVisible"] = "#new_offer_icon_visible";
|
|
3589
|
+
BindingName2["IconOverlayTextureName"] = "#icon_overlay_texture_name";
|
|
3590
|
+
BindingName2["IconOverlayLeftPaddingVisible"] = "#icon_overlay_left_padding_visible";
|
|
3591
|
+
BindingName2["IconOverlayRightPaddingVisible"] = "#icon_overlay_right_padding_visible";
|
|
3592
|
+
BindingName2["IconOverlayImageText"] = "#icon_overlay_image_text";
|
|
3593
|
+
BindingName2["IconOverlayTextColor"] = "#icon_overlay_text_color";
|
|
3594
|
+
BindingName2["IconOverlayTextAlignment"] = "#icon_overlay_text_alignment";
|
|
3595
|
+
BindingName2["IconOverlayFontScaleFactor"] = "#icon_overlay_font_scale_factor";
|
|
3596
|
+
BindingName2["IconOverlayFontType"] = "#icon_overlay_font_type";
|
|
3597
|
+
BindingName2["IconOverlayTextureFilepath"] = "#icon_overlay_texture_filepath";
|
|
3598
|
+
BindingName2["IconOverlayHeight"] = "#icon_overlay_height";
|
|
3599
|
+
BindingName2["PromptIconVisible"] = "#prompt_icon_visible";
|
|
3600
|
+
BindingName2["PromptIconTexture"] = "#prompt_icon_texture";
|
|
3601
|
+
BindingName2["ButtonBackDescription"] = "#button_back_description";
|
|
3602
|
+
BindingName2["InventoryButtonVisible"] = "#inventory_button_visible";
|
|
3603
|
+
BindingName2["StoreFailureText"] = "#store_failure_text";
|
|
3604
|
+
BindingName2["StoreFailureImage"] = "#store_failure_image";
|
|
3605
|
+
BindingName2["StoreFailureCode"] = "#store_failure_code";
|
|
3606
|
+
BindingName2["IsOfferCollectionQuery"] = "#is_offer_collection_query";
|
|
3607
|
+
BindingName2["OfferTimerLabel"] = "#offer_timer_label";
|
|
3608
|
+
BindingName2["TimerFieldCountToShow"] = "#timer_field_count_to_show";
|
|
3609
|
+
BindingName2["CsbExpirationLabel"] = "#csb_expiration_label";
|
|
3610
|
+
BindingName2["PackIconSectionContent"] = "#pack_icon_section_content";
|
|
3611
|
+
BindingName2["PackIconSaleSectionVisible"] = "#pack_icon_sale_section_visible";
|
|
3612
|
+
BindingName2["CyclePackButton"] = "#cycle_pack_button";
|
|
3613
|
+
BindingName2["IsCycleButtonFocused"] = "#is_cycle_button_focused";
|
|
3614
|
+
BindingName2["CyclePackLeftButtonEnabled"] = "#cycle_pack_left_button_enabled";
|
|
3615
|
+
BindingName2["CycleLeftButtonAccessibilityText"] = "#cycle_left_button_accessibility_text";
|
|
3616
|
+
BindingName2["CycleRightButtonAccessibilityText"] = "#cycle_right_button_accessibility_text";
|
|
3617
|
+
BindingName2["CyclePackRightButtonEnabled"] = "#cycle_pack_right_button_enabled";
|
|
3618
|
+
BindingName2["SearchHeaderBoxTextContent"] = "#search_header_box_text_content";
|
|
3619
|
+
BindingName2["SearchHeaderClearVisible"] = "#search_header_clear_visible";
|
|
3620
|
+
BindingName2["SearchHeaderVisible"] = "#search_header_visible";
|
|
3621
|
+
BindingName2["CoinPurchaseInProgress"] = "#coin_purchase_in_progress";
|
|
3622
|
+
BindingName2["AccessibilityMinecoinsAmount"] = "#accessibility_minecoins_amount";
|
|
3623
|
+
BindingName2["CoinBalance"] = "#coin_balance";
|
|
3624
|
+
BindingName2["ShowXblProfileInfo"] = "#show_xbl_profile_info";
|
|
3625
|
+
BindingName2["PurchaseWithCurrencyDisclaimer"] = "#purchase_with_currency_disclaimer";
|
|
3626
|
+
BindingName2["ThisPageSelected"] = "#this_page_selected";
|
|
3627
|
+
BindingName2["TabNameText"] = "#tab_name_text";
|
|
3628
|
+
BindingName2["PackIconSectionVisible"] = "#pack_icon_section_visible";
|
|
3629
|
+
BindingName2["RatingsVisible"] = "#ratings_visible";
|
|
3630
|
+
BindingName2["OfferFullPrice"] = "#offer_full_price";
|
|
3631
|
+
BindingName2["StarterBundleStrikethroughVisible"] = "#starter_bundle_strikethrough_visible";
|
|
3632
|
+
BindingName2["StarterBundleOfferPromptText"] = "#starter_bundle_offer_prompt_text";
|
|
3633
|
+
BindingName2["OfferPromptTextVisibility"] = "#offer_prompt_text_visibility";
|
|
3634
|
+
BindingName2["RowOutlineColor"] = "#row_outline_color";
|
|
3635
|
+
BindingName2["ShowRowOutline"] = "#show_row_outline";
|
|
3636
|
+
BindingName2["RowBgColor"] = "#row_bg_color";
|
|
3637
|
+
BindingName2["ShowRowBackground"] = "#show_row_background";
|
|
3638
|
+
BindingName2["StoreSectionContent"] = "#store_section_content";
|
|
3639
|
+
BindingName2["SubscriptionChevronVisibility"] = "#subscription_chevron_visibility";
|
|
3640
|
+
BindingName2["CsbChevronVisibility"] = "#csb_chevron_visibility";
|
|
3641
|
+
BindingName2["FirstEnabled"] = "#first_enabled";
|
|
3642
|
+
BindingName2["PaginationVisible"] = "#pagination_visible";
|
|
3643
|
+
BindingName2["OfferCollectionVisible"] = "#offer_collection_visible";
|
|
3644
|
+
BindingName2["PageNumberText"] = "#page_number_text";
|
|
3645
|
+
BindingName2["NextEnabled"] = "#next_enabled";
|
|
3646
|
+
BindingName2["IsCarouselRowVisible"] = "#is_carousel_row_visible";
|
|
3647
|
+
BindingName2["GreyBarSectionContent"] = "#grey_bar_section_content";
|
|
3648
|
+
BindingName2["TabNamesVisible"] = "#tab_names_visible";
|
|
3649
|
+
BindingName2["CarouselSectionContent"] = "#carousel_section_content";
|
|
3650
|
+
BindingName2["ScreenshotTexturePath"] = "#screenshot_texture_path";
|
|
3651
|
+
BindingName2["OfferMarkdownPercentage"] = "#offer_markdown_percentage";
|
|
3652
|
+
BindingName2["TtsOfferMarkdownPercentage"] = "#tts_offer_markdown_percentage";
|
|
3653
|
+
BindingName2["BladeMarkdownVisible"] = "#blade_markdown_visible";
|
|
3654
|
+
BindingName2["OfferButtonFocusId"] = "#offer_button_focus_id";
|
|
3655
|
+
BindingName2["HeroFeaturedPackIconSectionVisible"] = "#hero_featured_pack_icon_section_visible";
|
|
3656
|
+
BindingName2["OwnedStatusText"] = "#owned_status_text";
|
|
3657
|
+
BindingName2["OfferDownloadProgressLabel"] = "#offer_download_progress_label";
|
|
3658
|
+
BindingName2["RatingText"] = "#rating_text";
|
|
3659
|
+
BindingName2["RatingsCountText"] = "#ratings_count_text";
|
|
3660
|
+
BindingName2["SectionHeaderColor"] = "#section_header_color";
|
|
3661
|
+
BindingName2["HeaderRightPaddingVisible"] = "#header_right_padding_visible";
|
|
3662
|
+
BindingName2["HeaderLeftPaddingVisible"] = "#header_left_padding_visible";
|
|
3663
|
+
BindingName2["VerticalSectionContent"] = "#vertical_section_content";
|
|
3664
|
+
BindingName2["ShowMoreText"] = "#show_more_text";
|
|
3665
|
+
BindingName2["ShowMoreVisible"] = "#show_more_visible";
|
|
3666
|
+
BindingName2["OfferStrikethroughPriceVisible"] = "#offer_strikethrough_price_visible";
|
|
3667
|
+
BindingName2["TtsOverrrideOfferFullPrice"] = "#tts_overrride_offer_full_price";
|
|
3668
|
+
BindingName2["IsOddRow"] = "#is_odd_row";
|
|
3669
|
+
BindingName2["OfferMinecoinText"] = "#offer_minecoin_text";
|
|
3670
|
+
BindingName2["TtsOfferMinecoinText"] = "#tts_offer_minecoin_text";
|
|
3671
|
+
BindingName2["TtsOverrideControlValue"] = "#tts_override_control_value";
|
|
3672
|
+
BindingName2["IsOfferCollectionQueryAndNotSaleCollection"] = "#is_offer_collection_query_and_not_sale_collection";
|
|
3673
|
+
BindingName2["BundleOrHeroPackIconSectionVisible"] = "#bundle_or_hero_pack_icon_section_visible";
|
|
3674
|
+
BindingName2["IsCollectionQueryOnSale"] = "#is_collection_query_on_sale";
|
|
3675
|
+
BindingName2["HeaderTextColor"] = "#header_text_color";
|
|
3676
|
+
BindingName2["HeaderFontType"] = "#header_font_type";
|
|
3677
|
+
BindingName2["HeaderFontScalar"] = "#header_font_scalar";
|
|
3678
|
+
BindingName2["HeaderAlignment"] = "#header_alignment";
|
|
3679
|
+
BindingName2["OfferGridType"] = "#offer_grid_type";
|
|
3680
|
+
BindingName2["StoreOfferRowContent"] = "#store_offer_row_content";
|
|
3681
|
+
BindingName2["SdlDropdownDataRowVisible"] = "#sdl_dropdown_data_row_visible";
|
|
3682
|
+
BindingName2["HeaderBgColor"] = "#header_bg_color";
|
|
3683
|
+
BindingName2["ShowHeaderBackground"] = "#show_header_background";
|
|
3684
|
+
BindingName2["OfferCollectionReady"] = "#offer_collection_ready";
|
|
3685
|
+
BindingName2["Indent"] = "#indent";
|
|
3686
|
+
BindingName2["SizeBindingXAbsolute"] = "#size_binding_x_absolute";
|
|
3687
|
+
BindingName2["HideBanner"] = "#hide_banner";
|
|
3688
|
+
BindingName2["ShowBanner"] = "#show_banner";
|
|
3689
|
+
BindingName2["TimeRemainingLabel"] = "#time_remaining_label";
|
|
3690
|
+
BindingName2["ShowTimer"] = "#show_timer";
|
|
3691
|
+
BindingName2["CycleButtonWidth"] = "#cycle_button_width";
|
|
3692
|
+
BindingName2["CycleButtonsVisible"] = "#cycle_buttons_visible";
|
|
3693
|
+
BindingName2["FirstOfThreeVisible"] = "#first_of_three_visible";
|
|
3694
|
+
BindingName2["SecondOfThreeVisible"] = "#second_of_three_visible";
|
|
3695
|
+
BindingName2["ThirdOfThreeVisible"] = "#third_of_three_visible";
|
|
3696
|
+
BindingName2["FirstOfTwoVisible"] = "#first_of_two_visible";
|
|
3697
|
+
BindingName2["SecondOfTwoVisible"] = "#second_of_two_visible";
|
|
3698
|
+
BindingName2["SuggestedOffersCollection"] = "#suggested_offers_collection";
|
|
3699
|
+
BindingName2["OfferTypeLabel"] = "#offer_type_label";
|
|
3700
|
+
BindingName2["SuggestedOffersLoading"] = "#suggested_offers_loading";
|
|
3701
|
+
BindingName2["SearchBoxTextContent"] = "#search_box_text_content";
|
|
3702
|
+
BindingName2["PlaceHolderText"] = "#place_holder_text";
|
|
3703
|
+
BindingName2["SearchBarEnabled"] = "#search_bar_enabled";
|
|
3704
|
+
BindingName2["SearchResultsCloseFocusId"] = "#search_results_close_focus_id";
|
|
3705
|
+
BindingName2["SearchClearVisible"] = "#search_clear_visible";
|
|
3706
|
+
BindingName2["SearchSpinnerVisible"] = "#search_spinner_visible";
|
|
3707
|
+
BindingName2["SearchLabelText"] = "#search_label_text";
|
|
3708
|
+
BindingName2["SearchErrorText"] = "#search_error_text";
|
|
3709
|
+
BindingName2["SearchErrorPanelVisible"] = "#search_error_panel_visible";
|
|
3710
|
+
BindingName2["SearchResultsText"] = "#search_results_text";
|
|
3711
|
+
BindingName2["SeachResultsCloseButtonVisible"] = "#seach_results_close_button_visible";
|
|
3712
|
+
BindingName2["SearchResultsPanelVisible"] = "#search_results_panel_visible";
|
|
3713
|
+
BindingName2["FilterSelectedCount"] = "#filter_selected_count";
|
|
3714
|
+
BindingName2["SortToggleLabelTtsOverride"] = "#sort_toggle_label_tts_override";
|
|
3715
|
+
BindingName2["TtsFiltersAppliedCountText"] = "#tts_filters_appliedCount_text";
|
|
3716
|
+
BindingName2["SearchScreenEnabled"] = "#search_screen_enabled";
|
|
3717
|
+
BindingName2["IsSearchOfferListVisible"] = "#is_search_offer_list_visible";
|
|
3718
|
+
BindingName2["FilterScreenVisible"] = "#filter_screen_visible";
|
|
3719
|
+
BindingName2["SortScreenVisible"] = "#sort_screen_visible";
|
|
3720
|
+
BindingName2["IsSdlDropdownHeaderToggleSelected"] = "#is_sdl_dropdown_header_toggle_selected";
|
|
3721
|
+
BindingName2["NavButtonLabel"] = "#nav_button_label";
|
|
3722
|
+
BindingName2["NavButtonAnimation"] = "#nav_button_animation";
|
|
3723
|
+
BindingName2["NavButtonTexture"] = "#nav_button_texture";
|
|
3724
|
+
BindingName2["NavSectionContent"] = "#nav_section_content";
|
|
3725
|
+
BindingName2["ScreenHeaderTitle"] = "#screen_header_title";
|
|
3726
|
+
BindingName2["DialogButtonText"] = "#dialog_button_text";
|
|
3727
|
+
BindingName2["IsTopRowButtonFocusEnabled"] = "#is_top_row_button_focus_enabled";
|
|
3728
|
+
BindingName2["RegisterAsDressingRoomScene"] = "#register_as_dressing_room_scene";
|
|
3729
|
+
BindingName2["XBindNotOverriden"] = "#x_bind_not_overriden";
|
|
3730
|
+
BindingName2["FilterSelected_"] = "#filter_selected_";
|
|
3731
|
+
BindingName2["Filter_"] = "#filter_";
|
|
3732
|
+
BindingName2["FilterOptionVisible_"] = "#filter_option_visible_";
|
|
3733
|
+
BindingName2["AddonFilterVisible"] = "#addon_filter_visible";
|
|
3734
|
+
BindingName2["FilterSelectedOfferType"] = "#filter_selected_offer_type";
|
|
3735
|
+
BindingName2["FilterOfferTypeSelectedVisible"] = "#filter_offer_type_selected_visible";
|
|
3736
|
+
BindingName2["FilterSelectedPacktype"] = "#filter_selected_packtype";
|
|
3737
|
+
BindingName2["FilterPacktypeSelectedVisible"] = "#filter_packtype_selected_visible";
|
|
3738
|
+
BindingName2["NonDropdownFilterSectionVisible"] = "#non_dropdown_filter_section_visible";
|
|
3739
|
+
BindingName2["MainFilterSectionVisible"] = "#main_filter_section_visible";
|
|
3740
|
+
BindingName2["PackTypeFilterSectionVisible"] = "#pack_type_filter_section_visible";
|
|
3741
|
+
BindingName2["OfferTypeFilterSectionVisible"] = "#offer_type_filter_section_visible";
|
|
3742
|
+
BindingName2["MinecoinFilterSectionVisible"] = "#minecoin_filter_section_visible";
|
|
3743
|
+
BindingName2["RatingFilterSectionVisible"] = "#rating_filter_section_visible";
|
|
3744
|
+
BindingName2["CreatorFilterSectionVisible"] = "#creator_filter_section_visible";
|
|
3745
|
+
BindingName2["InstalledStateFilterSectionVisible"] = "#installed_state_filter_section_visible";
|
|
3746
|
+
BindingName2["DressingroomstyleFilterSectionVisible"] = "#dressingroomstyle_filter_section_visible";
|
|
3747
|
+
BindingName2["DressingroombodyFilterSectionVisible"] = "#dressingroombody_filter_section_visible";
|
|
3748
|
+
BindingName2["IsDressingRoomScene"] = "#is_dressing_room_scene";
|
|
3749
|
+
BindingName2["ShowSigninButton"] = "#show_signin_button";
|
|
3750
|
+
BindingName2["ShowNoXblAndLocalContentWarning"] = "#show_no_xbl_and_local_content_warning";
|
|
3751
|
+
BindingName2["ShowNoXblAndNoLocalContentWarning"] = "#show_no_xbl_and_no_local_content_warning";
|
|
3752
|
+
BindingName2["RealmsEnabled"] = "#realms_enabled";
|
|
3753
|
+
BindingName2["CollectionCount"] = "#collection_count";
|
|
3754
|
+
BindingName2["SubcategoriesVisible"] = "#subcategories_visible";
|
|
3755
|
+
BindingName2["CollectionsIconVisible"] = "#collections_icon_visible";
|
|
3756
|
+
BindingName2["AddonsCount"] = "#addons_count";
|
|
3757
|
+
BindingName2["CategoryAddonsIconVisible"] = "#category_addons_icon_visible";
|
|
3758
|
+
BindingName2["AddonsVisible"] = "#addons_visible";
|
|
3759
|
+
BindingName2["SkinsCount"] = "#skins_count";
|
|
3760
|
+
BindingName2["CategorySkinsIconVisible"] = "#category_skins_icon_visible";
|
|
3761
|
+
BindingName2["WorldsCount"] = "#worlds_count";
|
|
3762
|
+
BindingName2["CategoryWorldsIconVisible"] = "#category_worlds_icon_visible";
|
|
3763
|
+
BindingName2["TexturesCount"] = "#textures_count";
|
|
3764
|
+
BindingName2["CategoryTexturesIconVisible"] = "#category_textures_icon_visible";
|
|
3765
|
+
BindingName2["MashupsCount"] = "#mashups_count";
|
|
3766
|
+
BindingName2["CategoryMashupsIconVisible"] = "#category_mashups_icon_visible";
|
|
3767
|
+
BindingName2["MaxGridOffers"] = "#max_grid_offers";
|
|
3768
|
+
BindingName2["GridListVisible"] = "#grid_list_visible";
|
|
3769
|
+
BindingName2["InventorySectionContent"] = "#inventory_section_content";
|
|
3770
|
+
BindingName2["InventoryGridClipEvent"] = "#inventory_grid_clip_event";
|
|
3771
|
+
BindingName2["CollectionPrefix"] = "#collection_prefix";
|
|
3772
|
+
BindingName2["BannerButtonText"] = "#banner_button_text";
|
|
3773
|
+
BindingName2["BannerTitleText"] = "#banner_title_text";
|
|
3774
|
+
BindingName2["TitleTextColor"] = "#title_text_color";
|
|
3775
|
+
BindingName2["BannerTitleLeftPaddingVisible"] = "#banner_title_left_padding_visible";
|
|
3776
|
+
BindingName2["BannerTitleRightPaddingVisible"] = "#banner_title_right_padding_visible";
|
|
3777
|
+
BindingName2["BannerDescriptionText"] = "#banner_description_text";
|
|
3778
|
+
BindingName2["DescriptionTextColor"] = "#description_text_color";
|
|
3779
|
+
BindingName2["BannerDescriptionLeftPaddingVisible"] = "#banner_description_left_padding_visible";
|
|
3780
|
+
BindingName2["BannerDescriptionRightPaddingVisible"] = "#banner_description_right_padding_visible";
|
|
3781
|
+
BindingName2["BannerButtonLeftPaddingVisible"] = "#banner_button_left_padding_visible";
|
|
3782
|
+
BindingName2["BannerButtonRightPaddingVisible"] = "#banner_button_right_padding_visible";
|
|
3783
|
+
BindingName2["RowMessageText"] = "#row_message_text";
|
|
3784
|
+
BindingName2["StoreRowImageAnimationName"] = "#store_row_image_animation_name";
|
|
3785
|
+
BindingName2["StoreRowImageTextureName"] = "#store_row_image_texture_name";
|
|
3786
|
+
BindingName2["ImageIsReady"] = "#image_is_ready";
|
|
3787
|
+
BindingName2["StoreRowImageTextureFilepath"] = "#store_row_image_texture_filepath";
|
|
3788
|
+
BindingName2["LeftCornerImageTexturePath"] = "#left_corner_image_texture_path";
|
|
3789
|
+
BindingName2["LeftCornerImageTextureFileSystem"] = "#left_corner_image_texture_file_system";
|
|
3790
|
+
BindingName2["RightCornerImageTexturePath"] = "#right_corner_image_texture_path";
|
|
3791
|
+
BindingName2["RightCornerImageTextureFileSystem"] = "#right_corner_image_texture_file_system";
|
|
3792
|
+
BindingName2["CyclePromotionsLeftButtonEnabled"] = "#cycle_promotions_left_button_enabled";
|
|
3793
|
+
BindingName2["LeftCycleButtonRightFocusOverride"] = "#left_cycle_button_right_focus_override";
|
|
3794
|
+
BindingName2["CyclePromotionsRightButtonEnabled"] = "#cycle_promotions_right_button_enabled";
|
|
3795
|
+
BindingName2["RightCycleButtonLeftFocusOverride"] = "#right_cycle_button_left_focus_override";
|
|
3796
|
+
BindingName2["PromoSingleItemSelected"] = "#promo_single_item_selected";
|
|
3797
|
+
BindingName2["BackButtonVisible"] = "#back_button_visible";
|
|
3798
|
+
BindingName2["PromotionDayHeader"] = "#promotion_day_header";
|
|
3799
|
+
BindingName2["IsClaimAllEnabled"] = "#is_claim_all_enabled";
|
|
3800
|
+
BindingName2["IsClaimAllVisible"] = "#is_claim_all_visible";
|
|
3801
|
+
BindingName2["PromoGridOffers"] = "#promo_grid_offers";
|
|
3802
|
+
BindingName2["PlatformRestricted"] = "#platform_restricted";
|
|
3803
|
+
BindingName2["PromoItemIsPersona"] = "#promo_item_is_persona";
|
|
3804
|
+
BindingName2["PromotionThumbnailTexturePath"] = "#promotion_thumbnail_texture_path";
|
|
3805
|
+
BindingName2["PromotionThumbnailTextureFileSystem"] = "#promotion_thumbnail_texture_file_system";
|
|
3806
|
+
BindingName2["PromoPersonaThumbnailTexture"] = "#promo_persona_thumbnail_texture";
|
|
3807
|
+
BindingName2["PromoPersonaThumbnailFileSystem"] = "#promo_persona_thumbnail_file_system";
|
|
3808
|
+
BindingName2["PromotionOfferVisible"] = "#promotion_offer_visible";
|
|
3809
|
+
BindingName2["ItemTitleText"] = "#item_title_text";
|
|
3810
|
+
BindingName2["IsValid"] = "#is_valid";
|
|
3811
|
+
BindingName2["ThisPromoSelected"] = "#this_promo_selected";
|
|
3812
|
+
BindingName2["PromotionDayText"] = "#promotion_day_text";
|
|
3813
|
+
BindingName2["PeriodHasBeenClaimed"] = "#period_has_been_claimed";
|
|
3814
|
+
BindingName2["PromoDayToggleCheck"] = "#promo_day_toggle_check";
|
|
3815
|
+
BindingName2["PromoDayFocusOverrideRight"] = "#promo_day_focus_override_right";
|
|
3816
|
+
BindingName2["PromoTimerToolTip"] = "#promo_timer_tool_tip";
|
|
3817
|
+
BindingName2["PromoItemTimerVisible"] = "#promo_item_timer_visible";
|
|
3818
|
+
BindingName2["PromoTimerToolTipRightVisible"] = "#promo_timer_tool_tip_right_visible";
|
|
3819
|
+
BindingName2["PromoTimerToolTipLeftVisible"] = "#promo_timer_tool_tip_left_visible";
|
|
3820
|
+
BindingName2["PromoTimerToolTipNotVisible"] = "#promo_timer_tool_tip_not_visible";
|
|
3821
|
+
BindingName2["PromoItemTimerText"] = "#promo_item_timer_text";
|
|
3822
|
+
BindingName2["PromoItemTitleText"] = "#promo_item_title_text";
|
|
3823
|
+
BindingName2["PromoItemCreatorText"] = "#promo_item_creator_text";
|
|
3824
|
+
BindingName2["PromoItemSkinCountAndLabel"] = "#promo_item_skin_count_and_label";
|
|
3825
|
+
BindingName2["PromoItemSkinCountVisible"] = "#promo_item_skin_count_visible";
|
|
3826
|
+
BindingName2["PromoItemSkinCount"] = "#promo_item_skin_count";
|
|
3827
|
+
BindingName2["PromoItemWorldTemplateCountAndLabel"] = "#promo_item_world_template_count_and_label";
|
|
3828
|
+
BindingName2["PromoItemWorldTemplateCountVisible"] = "#promo_item_world_template_count_visible";
|
|
3829
|
+
BindingName2["PromoItemWorldTemplateCount"] = "#promo_item_world_template_count";
|
|
3830
|
+
BindingName2["PromoItemResourcePackCountAndLabel"] = "#promo_item_resource_pack_count_and_label";
|
|
3831
|
+
BindingName2["PromoItemResourcePackCountVisible"] = "#promo_item_resource_pack_count_visible";
|
|
3832
|
+
BindingName2["PromoItemResourcePackCount"] = "#promo_item_resource_pack_count";
|
|
3833
|
+
BindingName2["PromoKeyArtTexture"] = "#promo_key_art_texture";
|
|
3834
|
+
BindingName2["PromoKeyArtFileSystem"] = "#promo_key_art_file_system";
|
|
3835
|
+
BindingName2["PromoButtonText"] = "#promo_button_text";
|
|
3836
|
+
BindingName2["ItemIsNotOwned"] = "#item_is_not_owned";
|
|
3837
|
+
BindingName2["PromoItemFullPrice"] = "#promo_item_full_price";
|
|
3838
|
+
BindingName2["PlatformRestrictedItem"] = "#platform_restricted_item";
|
|
3839
|
+
BindingName2["PromoItemActionButtonText"] = "#promo_item_action_button_text";
|
|
3840
|
+
BindingName2["WorldDownloadInfoVisible"] = "#world_download_info_visible";
|
|
3841
|
+
BindingName2["WorldDownloadProgressBarPercentage"] = "#world_download_progress_bar_percentage";
|
|
3842
|
+
BindingName2["PromoDescriptionLabel"] = "#promo_description_label";
|
|
3843
|
+
BindingName2["HasPromoItemDescription"] = "#has_promo_item_description";
|
|
3844
|
+
BindingName2["PromoActionButtonVisible"] = "#promo_action_button_visible";
|
|
3845
|
+
BindingName2["PromoBottomButtonFocusOverrideDown"] = "#promo_bottom_button_focus_override_down";
|
|
3846
|
+
BindingName2["PromoScreenshotTexture"] = "#promo_screenshot_texture";
|
|
3847
|
+
BindingName2["PromoScreenshotLocation"] = "#promo_screenshot_location";
|
|
3848
|
+
BindingName2["ThisPromoScreenshotSelected"] = "#this_promo_screenshot_selected";
|
|
3849
|
+
BindingName2["PromoScreenshotCollectionLength"] = "#promo_screenshot_collection_length";
|
|
3850
|
+
BindingName2["PreviewPromoPersonaItem"] = "#preview_promo_persona_item";
|
|
3851
|
+
BindingName2["PromoItemIsWorld"] = "#promo_item_is_world";
|
|
3852
|
+
BindingName2["PromoItemIsSkin"] = "#promo_item_is_skin";
|
|
3853
|
+
BindingName2["CharacterLoadingInProgress"] = "#character_loading_in_progress";
|
|
3854
|
+
BindingName2["IsSalesGridVisible"] = "#is_sales_grid_visible";
|
|
3855
|
+
BindingName2["SalesHeaderText"] = "#sales_header_text";
|
|
3856
|
+
BindingName2["ShowSalesBanner"] = "#show_sales_banner";
|
|
3857
|
+
BindingName2["SalesGridItemCount"] = "#sales_grid_item_count";
|
|
3858
|
+
BindingName2["IsStoreOfferGridPanelVisible"] = "#is_store_offer_grid_panel_visible";
|
|
3859
|
+
BindingName2["TrendingRowName"] = "#trending_row_name";
|
|
3860
|
+
BindingName2["TrendingOffersDimensions"] = "#trending_offers_dimensions";
|
|
3861
|
+
BindingName2["TrendingRowsDimensions"] = "#trending_rows_dimensions";
|
|
3862
|
+
BindingName2["TrendingRowsVisible"] = "#trending_rows_visible";
|
|
3863
|
+
BindingName2["TrendingPageLoadingVisible"] = "#trending_page_loading_visible";
|
|
3864
|
+
BindingName2["SortToggleLabel"] = "#sort_toggle_label";
|
|
3865
|
+
BindingName2["SortTypeText"] = "#sort_type_text";
|
|
3866
|
+
BindingName2["RelevanceToggleVisible"] = "#relevance_toggle_visible";
|
|
3867
|
+
BindingName2["3dExportEnabled"] = "#3d_export_enabled";
|
|
3868
|
+
BindingName2["SaveEnabled"] = "#save_enabled";
|
|
3869
|
+
BindingName2["ExportEnabled"] = "#export_enabled";
|
|
3870
|
+
BindingName2["LoadEnabled"] = "#load_enabled";
|
|
3871
|
+
BindingName2["ImportEnabled"] = "#import_enabled";
|
|
3872
|
+
BindingName2["IncludeEntitiesBindingName"] = "#include_entities_binding_name";
|
|
3873
|
+
BindingName2["IncludeEntitiesEnabled"] = "#include_entities_enabled";
|
|
3874
|
+
BindingName2["IncludeEntitiesToggle"] = "#include_entities_toggle";
|
|
3875
|
+
BindingName2["IncludeEntitiesToggleOff"] = "#include_entities_toggle_off";
|
|
3876
|
+
BindingName2["IncludeEntitiesToggleOn"] = "#include_entities_toggle_on";
|
|
3877
|
+
BindingName2["WaterlogBlocksBindingName"] = "#waterlog_blocks_binding_name";
|
|
3878
|
+
BindingName2["WaterlogBlocksOn"] = "#waterlog_blocks_on";
|
|
3879
|
+
BindingName2["WaterlogBlocksToggle"] = "#waterlog_blocks_toggle";
|
|
3880
|
+
BindingName2["WaterlogBlocksToggleOff"] = "#waterlog_blocks_toggle_off";
|
|
3881
|
+
BindingName2["WaterlogBlocksToggleOn"] = "#waterlog_blocks_toggle_on";
|
|
3882
|
+
BindingName2["BoundingToggleVisible"] = "#bounding_toggle_visible";
|
|
3883
|
+
BindingName2["ShowBoundingBoxBindingName"] = "#show_bounding_box_binding_name";
|
|
3884
|
+
BindingName2["ShowBoundingBoxEnabled"] = "#show_bounding_box_enabled";
|
|
3885
|
+
BindingName2["ShowBoundingBoxToggle"] = "#show_bounding_box_toggle";
|
|
3886
|
+
BindingName2["ShowBoundingBoxToggleOff"] = "#show_bounding_box_toggle_off";
|
|
3887
|
+
BindingName2["ShowBoundingBoxToggleOn"] = "#show_bounding_box_toggle_on";
|
|
3888
|
+
BindingName2["IncludePlayersBindingName"] = "#include_players_binding_name";
|
|
3889
|
+
BindingName2["IncludePlayersEnabled"] = "#include_players_enabled";
|
|
3890
|
+
BindingName2["IncludePlayersToggle"] = "#include_players_toggle";
|
|
3891
|
+
BindingName2["IncludePlayersToggleOff"] = "#include_players_toggle_off";
|
|
3892
|
+
BindingName2["IncludePlayersToggleOn"] = "#include_players_toggle_on";
|
|
3893
|
+
BindingName2["RemoveBlocksBindingName"] = "#remove_blocks_binding_name";
|
|
3894
|
+
BindingName2["RemoveBlocksEnabled"] = "#remove_blocks_enabled";
|
|
3895
|
+
BindingName2["RemoveBlocksToggle"] = "#remove_blocks_toggle";
|
|
3896
|
+
BindingName2["RemoveBlocksToggleOff"] = "#remove_blocks_toggle_off";
|
|
3897
|
+
BindingName2["RemoveBlocksToggleOn"] = "#remove_blocks_toggle_on";
|
|
3898
|
+
BindingName2["3dExportModePanelVisible"] = "#3d_export_mode_panel_visible";
|
|
3899
|
+
BindingName2["ExportSizeEditBox"] = "#export_size_edit_box";
|
|
3900
|
+
BindingName2["ExportOffsetEditBox"] = "#export_offset_edit_box";
|
|
3901
|
+
BindingName2["SaveModePanelVisible"] = "#save_mode_panel_visible";
|
|
3902
|
+
BindingName2["SaveSizeEditBox"] = "#save_size_edit_box";
|
|
3903
|
+
BindingName2["SaveOffsetEditBox"] = "#save_offset_edit_box";
|
|
3904
|
+
BindingName2["MirrorX"] = "#mirror_x";
|
|
3905
|
+
BindingName2["MirrorXEnabled"] = "#mirror_x_enabled";
|
|
3906
|
+
BindingName2["MirrorZ"] = "#mirror_z";
|
|
3907
|
+
BindingName2["MirrorZEnabled"] = "#mirror_z_enabled";
|
|
3908
|
+
BindingName2["LoadModePanelVisible"] = "#load_mode_panel_visible";
|
|
3909
|
+
BindingName2["LoadOffsetEditBox"] = "#load_offset_edit_box";
|
|
3910
|
+
BindingName2["IntegrityField"] = "#integrity_field";
|
|
3911
|
+
BindingName2["IntegrityContentEditBox"] = "#integrity_content_edit_box";
|
|
3912
|
+
BindingName2["SeedField"] = "#seed_field";
|
|
3913
|
+
BindingName2["SeedContentEditBox"] = "#seed_content_edit_box";
|
|
3914
|
+
BindingName2["RotationSliderLabel"] = "#rotation_slider_label";
|
|
3915
|
+
BindingName2["Rotation"] = "#rotation";
|
|
3916
|
+
BindingName2["RotationEnabled"] = "#rotation_enabled";
|
|
3917
|
+
BindingName2["RotationSteps"] = "#rotation_steps";
|
|
3918
|
+
BindingName2["RotationTextValue"] = "#rotation_text_value";
|
|
3919
|
+
BindingName2["AnimationTimeField"] = "#animation_time_field";
|
|
3920
|
+
BindingName2["AnimationTimeContentEditBox"] = "#animation_time_content_edit_box";
|
|
3921
|
+
BindingName2["DataModePanelVisible"] = "#data_mode_panel_visible";
|
|
3922
|
+
BindingName2["DataField"] = "#data_field";
|
|
3923
|
+
BindingName2["DataContentEditBox"] = "#data_content_edit_box";
|
|
3924
|
+
BindingName2["CornerModePanelVisible"] = "#corner_mode_panel_visible";
|
|
3925
|
+
BindingName2["SaveVisible"] = "#save_visible";
|
|
3926
|
+
BindingName2["LoadVisible"] = "#load_visible";
|
|
3927
|
+
BindingName2["3dExportVisible"] = "#3d_export_visible";
|
|
3928
|
+
BindingName2["StructureRedstoneMemory"] = "#structure_redstone_memory";
|
|
3929
|
+
BindingName2["StructureRedstoneDisk"] = "#structure_redstone_disk";
|
|
3930
|
+
BindingName2["StructureAnimationNone"] = "#structure_animation_none";
|
|
3931
|
+
BindingName2["StructureAnimationLayers"] = "#structure_animation_layers";
|
|
3932
|
+
BindingName2["StructureAnimationBlocks"] = "#structure_animation_blocks";
|
|
3933
|
+
BindingName2["AnimationModeDropdownEnabled"] = "#animation_mode_dropdown_enabled";
|
|
3934
|
+
BindingName2["AnimationModeDropdownToggleLabel"] = "#animation_mode_dropdown_toggle_label";
|
|
3935
|
+
BindingName2["StructureName"] = "#structure_name";
|
|
3936
|
+
BindingName2["StructureNameContentBindingName"] = "#structure_name_content_binding_name";
|
|
3937
|
+
BindingName2["NameBoxColor"] = "#name_box_color";
|
|
3938
|
+
BindingName2["StructureSaveMode"] = "#structure_save_mode";
|
|
3939
|
+
BindingName2["StructureLoadMode"] = "#structure_load_mode";
|
|
3940
|
+
BindingName2["StructureDataMode"] = "#structure_data_mode";
|
|
3941
|
+
BindingName2["StructureCornerMode"] = "#structure_corner_mode";
|
|
3942
|
+
BindingName2["Structure3dExportMode"] = "#structure_3d_export_mode";
|
|
3943
|
+
BindingName2["ModeDropdownEnabled"] = "#mode_dropdown_enabled";
|
|
3944
|
+
BindingName2["ModeDropdownToggleLabel"] = "#mode_dropdown_toggle_label";
|
|
3945
|
+
BindingName2["ExportDisabledVisible"] = "#export_disabled_visible";
|
|
3946
|
+
BindingName2["HasFocus"] = "#has_focus";
|
|
3947
|
+
BindingName2["CornerTextVisible"] = "#corner_text_visible";
|
|
3948
|
+
BindingName2["StructureRendererVisible"] = "#structure_renderer_visible";
|
|
3949
|
+
BindingName2["BlockPosition"] = "#block_position";
|
|
3950
|
+
BindingName2["BottomLeftBlock"] = "#bottom_left_block";
|
|
3951
|
+
BindingName2["TopRightBlock"] = "#top_right_block";
|
|
3952
|
+
BindingName2["IncludeEntities"] = "#include_entities";
|
|
3953
|
+
BindingName2["RemoveBlocks"] = "#remove_blocks";
|
|
3954
|
+
BindingName2["IncludePlayers"] = "#include_players";
|
|
3955
|
+
BindingName2["GestureMouseDeltaY"] = "#gesture_mouse_delta_y";
|
|
3956
|
+
BindingName2["RotationArrowsVisible"] = "#rotation_arrows_visible";
|
|
3957
|
+
BindingName2["HasFeedbackText"] = "#has_feedback_text";
|
|
3958
|
+
BindingName2["WriteFeedbackTextbox"] = "#write_feedback_textbox";
|
|
3959
|
+
BindingName2["RemainingCharactersCount"] = "#remaining_characters_count";
|
|
3960
|
+
BindingName2["ShowSubmitFeedbackScreen"] = "#show_submit_feedback_screen";
|
|
3961
|
+
BindingName2["SubmitFeedbackInProgress"] = "#submit_feedback_in_progress";
|
|
3962
|
+
BindingName2["ToastIconSectionContent"] = "#toast_icon_section_content";
|
|
3963
|
+
BindingName2["TextPaddingVisible"] = "#text_padding_visible";
|
|
3964
|
+
BindingName2["RecipeUnlocked"] = "#recipe_unlocked";
|
|
3965
|
+
BindingName2["IsAchievement"] = "#is_achievement";
|
|
3966
|
+
BindingName2["ToastSubtitleVisible"] = "#toast_subtitle_visible";
|
|
3967
|
+
BindingName2["ToastSubtitle"] = "#toast_subtitle";
|
|
3968
|
+
BindingName2["ToastFontType"] = "#toast_font_type";
|
|
3969
|
+
BindingName2["ControllerStartIcon"] = "#controller_start_icon";
|
|
3970
|
+
BindingName2["LeftButtonEnabled"] = "#left_button_enabled";
|
|
3971
|
+
BindingName2["RightButtonEnabled"] = "#right_button_enabled";
|
|
3972
|
+
BindingName2["TradeItemFocusOverrideLeft"] = "#trade_item_focus_override_left";
|
|
3973
|
+
BindingName2["TradeItemFocusOverrideRight"] = "#trade_item_focus_override_right";
|
|
3974
|
+
BindingName2["ShowSecondTradeSlot"] = "#show_second_trade_slot";
|
|
3975
|
+
BindingName2["ItemGrayedOut"] = "#item_grayed_out";
|
|
3976
|
+
BindingName2["SellItemName"] = "#sell_item_name";
|
|
3977
|
+
BindingName2["TradeCellBackgroundTexture"] = "#trade_cell_background_texture";
|
|
3978
|
+
BindingName2["TradeItemCount"] = "#trade_item_count";
|
|
3979
|
+
BindingName2["SingleSlashVisible"] = "#single_slash_visible";
|
|
3980
|
+
BindingName2["DoubleSlashVisible"] = "#double_slash_visible";
|
|
3981
|
+
BindingName2["SecondTradeItemCount"] = "#second_trade_item_count";
|
|
3982
|
+
BindingName2["ItemPickupTime"] = "#item_pickup_time";
|
|
3983
|
+
BindingName2["TradePriceDifferent"] = "#trade_price_different";
|
|
3984
|
+
BindingName2["TradeToggleEnabled"] = "#trade_toggle_enabled";
|
|
3985
|
+
BindingName2["TradeCrossOutVisible"] = "#trade_cross_out_visible";
|
|
3986
|
+
BindingName2["PaddingAroundSellItem"] = "#padding_around_sell_item";
|
|
3987
|
+
BindingName2["TradePossible"] = "#trade_possible";
|
|
3988
|
+
BindingName2["TradeToggleState"] = "#trade_toggle_state";
|
|
3989
|
+
BindingName2["TradeTierTotal"] = "#trade_tier_total";
|
|
3990
|
+
BindingName2["TierName"] = "#tier_name";
|
|
3991
|
+
BindingName2["IsTierUnlocked"] = "#is_tier_unlocked";
|
|
3992
|
+
BindingName2["ShowLevel"] = "#show_level";
|
|
3993
|
+
BindingName2["TierVisible"] = "#tier_visible";
|
|
3994
|
+
BindingName2["TradeSelectorTotal"] = "#trade_selector_total";
|
|
3995
|
+
BindingName2["ExpBarVisible"] = "#exp_bar_visible";
|
|
3996
|
+
BindingName2["ExpPossibleProgress"] = "#exp_possible_progress";
|
|
3997
|
+
BindingName2["SelectedHoverText"] = "#selected_hover_text";
|
|
3998
|
+
BindingName2["TradeDetailsButton1Visible"] = "#trade_details_button_1_visible";
|
|
3999
|
+
BindingName2["TradeDetailsButton2Visible"] = "#trade_details_button_2_visible";
|
|
4000
|
+
BindingName2["EnchantmentDetailsButtonVisible"] = "#enchantment_details_button_visible";
|
|
4001
|
+
BindingName2["ItemValid"] = "#item_valid";
|
|
4002
|
+
BindingName2["TradeButtonEnabled"] = "#trade_button_enabled";
|
|
4003
|
+
BindingName2["NameLabel"] = "#name_label";
|
|
4004
|
+
BindingName2["IsLeftTabTrade"] = "#is_left_tab_trade";
|
|
4005
|
+
BindingName2["HasSecondBuyItem"] = "#has_second_buy_item";
|
|
4006
|
+
BindingName2["TrialUpsellContinueButton"] = "#trial_upsell_continue_button";
|
|
4007
|
+
BindingName2["TrialUpsellBuyButton"] = "#trial_upsell_buy_button";
|
|
4008
|
+
BindingName2["TrialUpsellUpdatedDescription"] = "#trial_upsell_updatedDescription";
|
|
4009
|
+
BindingName2["TrialUpsellExpiredUpdatedDescription"] = "#trial_upsell_expired_updatedDescription";
|
|
4010
|
+
BindingName2["TextureLocationtype"] = "#texture_locationtype";
|
|
4011
|
+
BindingName2["SearchBoxBinding"] = "#search_box_binding";
|
|
4012
|
+
BindingName2["SearchBoxName"] = "#search_box_name";
|
|
4013
|
+
BindingName2["UgcMaxGridItems"] = "#ugc_max_grid_items";
|
|
4014
|
+
BindingName2["ToggleEnabled"] = "#toggle_enabled";
|
|
4015
|
+
BindingName2["SliderValue"] = "#slider_value";
|
|
4016
|
+
BindingName2["SliderSteps"] = "#slider_steps";
|
|
4017
|
+
BindingName2["SliderEnabled"] = "#slider_enabled";
|
|
4018
|
+
BindingName2["IsDropdown"] = "#is_dropdown";
|
|
4019
|
+
BindingName2["NewlineRefresh"] = "#newline_refresh";
|
|
4020
|
+
BindingName2["TextBoxName"] = "#text_box_name";
|
|
4021
|
+
BindingName2["EditBoxTextColor"] = "#edit_box_text_color";
|
|
4022
|
+
BindingName2["TextBoxEnabled"] = "#text_box_enabled";
|
|
4023
|
+
BindingName2["CanBeDeselected"] = "#can_be_deselected";
|
|
4024
|
+
BindingName2["TextEditBoxFocusable"] = "#text_edit_box_focusable";
|
|
4025
|
+
BindingName2["TextEditBoxVisible"] = "#text_edit_box_visible";
|
|
4026
|
+
BindingName2["ShowClearTextButton"] = "#show_clear_text_button";
|
|
4027
|
+
BindingName2["BarColor"] = "#bar_color";
|
|
4028
|
+
BindingName2["GamepadHelperIconDescription"] = "#gamepad_helper_icon_description";
|
|
4029
|
+
BindingName2["ButtonStartDescription"] = "#button_start_description";
|
|
4030
|
+
BindingName2["ControllerFaceDownIcon"] = "#controller_face_down_icon";
|
|
4031
|
+
BindingName2["ButtonADescription"] = "#button_a_description";
|
|
4032
|
+
BindingName2["ControllerFaceDownIcon14"] = "#controller_face_down_icon_14";
|
|
4033
|
+
BindingName2["ControllerFaceRightIcon"] = "#controller_face_right_icon";
|
|
4034
|
+
BindingName2["ButtonBDescription"] = "#button_b_description";
|
|
4035
|
+
BindingName2["ControllerFaceRightIcon14"] = "#controller_face_right_icon_14";
|
|
4036
|
+
BindingName2["ControllerFaceLeftIcon"] = "#controller_face_left_icon";
|
|
4037
|
+
BindingName2["ButtonXDescription"] = "#button_x_description";
|
|
4038
|
+
BindingName2["ControllerFaceLeftIcon14"] = "#controller_face_left_icon_14";
|
|
4039
|
+
BindingName2["ControllerFaceUpIcon"] = "#controller_face_up_icon";
|
|
4040
|
+
BindingName2["ButtonYDescription"] = "#button_y_description";
|
|
4041
|
+
BindingName2["ControllerFaceUpIcon14"] = "#controller_face_up_icon_14";
|
|
4042
|
+
BindingName2["ControllerLeftTrigger"] = "#controller_left_trigger";
|
|
4043
|
+
BindingName2["ControllerLeftTriggerDescription"] = "#controller_left_trigger_description";
|
|
4044
|
+
BindingName2["ControllerRightTrigger"] = "#controller_right_trigger";
|
|
4045
|
+
BindingName2["ControllerRightTriggerDescription"] = "#controller_right_trigger_description";
|
|
4046
|
+
BindingName2["KeyboardLeftTriggerDescription"] = "#keyboard_left_trigger_description";
|
|
4047
|
+
BindingName2["KeyboardRightTriggerDescription"] = "#keyboard_right_trigger_description";
|
|
4048
|
+
BindingName2["ButtonDpadDescription"] = "#button_dpad_description";
|
|
4049
|
+
BindingName2["ControllerDpadDownIcon"] = "#controller_dpad_down_icon";
|
|
4050
|
+
BindingName2["ButtonDpadDownDescription"] = "#button_dpad_down_description";
|
|
4051
|
+
BindingName2["ControllerDpadLeftIcon"] = "#controller_dpad_left_icon";
|
|
4052
|
+
BindingName2["ButtonDpadLeftDescription"] = "#button_dpad_left_description";
|
|
4053
|
+
BindingName2["ControllerDpadRightIcon"] = "#controller_dpad_right_icon";
|
|
4054
|
+
BindingName2["ButtonDpadRightDescription"] = "#button_dpad_right_description";
|
|
4055
|
+
BindingName2["ControllerDpadUpIcon"] = "#controller_dpad_up_icon";
|
|
4056
|
+
BindingName2["ButtonDpadUpDescription"] = "#button_dpad_up_description";
|
|
4057
|
+
BindingName2["ButtonThumbstickDescription"] = "#button_thumbstick_description";
|
|
4058
|
+
BindingName2["ControllerRightStickIcon"] = "#controller_right_stick_icon";
|
|
4059
|
+
BindingName2["ButtonThumbstickRightDescription"] = "#button_thumbstick_right_description";
|
|
4060
|
+
BindingName2["ControllerLeftStickIcon"] = "#controller_left_stick_icon";
|
|
4061
|
+
BindingName2["ButtonThumbstickLeftDescription"] = "#button_thumbstick_left_description";
|
|
4062
|
+
BindingName2["ControllerLeftBumperIcon"] = "#controller_left_bumper_icon";
|
|
4063
|
+
BindingName2["ControllerLeftBumperDescription"] = "#controller_left_bumper_description";
|
|
4064
|
+
BindingName2["ControllerRightBumperIcon"] = "#controller_right_bumper_icon";
|
|
4065
|
+
BindingName2["ControllerRightBumperDescription"] = "#controller_right_bumper_description";
|
|
4066
|
+
BindingName2["IsSelectedSlot"] = "#is_selected_slot";
|
|
4067
|
+
BindingName2["ProgressiveSelectBarRatio"] = "#progressive_select_bar_ratio";
|
|
4068
|
+
BindingName2["ProgressiveSelectText"] = "#progressive_select_text";
|
|
4069
|
+
BindingName2["ClassicStackSplittingOverlayVisible"] = "#classic_stack_splitting_overlay_visible";
|
|
4070
|
+
BindingName2["PocketStackSplittingOverlayVisible"] = "#pocket_stack_splitting_overlay_visible";
|
|
4071
|
+
BindingName2["ProgressiveSelectDownVisible"] = "#progressive_select_down_visible";
|
|
4072
|
+
BindingName2["ProgressiveSelectUpVisible"] = "#progressive_select_up_visible";
|
|
4073
|
+
BindingName2["ProgressiveSelectLeftSideVisible"] = "#progressive_select_left_side_visible";
|
|
4074
|
+
BindingName2["ProgressiveSelectRightSideVisible"] = "#progressive_select_right_side_visible";
|
|
4075
|
+
BindingName2["StackSplittingBarOffsetX"] = "#stack_splitting_bar_offset_x";
|
|
4076
|
+
BindingName2["StackSplittingBarOffsetY"] = "#stack_splitting_bar_offset_y";
|
|
4077
|
+
BindingName2["StackSplittingBarVisible"] = "#stack_splitting_bar_visible";
|
|
4078
|
+
BindingName2["ItemDurabilityVisible"] = "#item_durability_visible";
|
|
4079
|
+
BindingName2["ItemDurabilityTotalAmount"] = "#item_durability_total_amount";
|
|
4080
|
+
BindingName2["ItemDurabilityCurrentAmount"] = "#item_durability_current_amount";
|
|
4081
|
+
BindingName2["SelectedItemDurabilityVisible"] = "#selected_item_durability_visible";
|
|
4082
|
+
BindingName2["SelectedItemDurabilityTotalAmount"] = "#selected_item_durability_total_amount";
|
|
4083
|
+
BindingName2["SelectedItemDurabilityCurrentAmount"] = "#selected_item_durability_current_amount";
|
|
4084
|
+
BindingName2["ItemStorageVisible"] = "#item_storage_visible";
|
|
4085
|
+
BindingName2["ProgressBarVisible"] = "#progress_bar_visible";
|
|
4086
|
+
BindingName2["ItemStorageTotalAmount"] = "#item_storage_total_amount";
|
|
4087
|
+
BindingName2["ItemStorageCurrentAmount"] = "#item_storage_current_amount";
|
|
4088
|
+
BindingName2["SelectedItemStorageVisible"] = "#selected_item_storage_visible";
|
|
4089
|
+
BindingName2["SelectedItemStorageTotalAmount"] = "#selected_item_storage_total_amount";
|
|
4090
|
+
BindingName2["SelectedItemStorageCurrentAmount"] = "#selected_item_storage_current_amount";
|
|
4091
|
+
BindingName2["ItemRendererData"] = "#item_renderer_data";
|
|
4092
|
+
BindingName2["InactiveItem"] = "#inactive_item";
|
|
4093
|
+
BindingName2["GroupItemGroupName"] = "#group_item_group_name";
|
|
4094
|
+
BindingName2["FadeInIconTimeSeconds"] = "#fade_in_icon_time_seconds";
|
|
4095
|
+
BindingName2["ChargedItem"] = "#charged_item";
|
|
4096
|
+
BindingName2["ShieldBaseColorHovered"] = "#shield_base_color_hovered";
|
|
4097
|
+
BindingName2["ItemLodestoneTrackingHandle"] = "#item_lodestone_tracking_handle";
|
|
4098
|
+
BindingName2["FlyingItemRenderer"] = "#flying_item_renderer";
|
|
4099
|
+
BindingName2["RecipeDetailsLabel"] = "#recipe_details_label";
|
|
4100
|
+
BindingName2["NotificationText"] = "#notification_text";
|
|
4101
|
+
BindingName2["FocusForTtsEnabledBinding"] = "#focus_for_tts_enabled_binding";
|
|
4102
|
+
BindingName2["GestureControlEnabled"] = "#gesture_control_enabled";
|
|
4103
|
+
BindingName2["ShowHoveredSelectedInventorySlot"] = "#show_hovered_selected_inventory_slot";
|
|
4104
|
+
BindingName2["ItemLockInInventory"] = "#item_lock_in_inventory";
|
|
4105
|
+
BindingName2["ItemLockInSlot"] = "#item_lock_in_slot";
|
|
4106
|
+
BindingName2["ItemLock"] = "#item_lock";
|
|
4107
|
+
BindingName2["CollectionTotalItems"] = "#collection_total_items";
|
|
4108
|
+
BindingName2["InventorySelectedItem"] = "#inventory_selected_item";
|
|
4109
|
+
BindingName2["InventorySelectedItemChargedItem"] = "#inventory_selected_item_charged_item";
|
|
4110
|
+
BindingName2["InventorySelectedItemColor"] = "#inventory_selected_item_color";
|
|
4111
|
+
BindingName2["InventorySelectedArmorTrimMaterial"] = "#inventory_selected_armor_trim_material";
|
|
4112
|
+
BindingName2["InventorySelectedBannerPatterns"] = "#inventory_selected_banner_patterns";
|
|
4113
|
+
BindingName2["InventorySelectedBannerColors"] = "#inventory_selected_banner_colors";
|
|
4114
|
+
BindingName2["InventorySelectedBannerType"] = "#inventory_selected_banner_type";
|
|
4115
|
+
BindingName2["InventorySelectedDecoratedPotSherds"] = "#inventory_selected_decorated_pot_sherds";
|
|
4116
|
+
BindingName2["InventorySelectedItemStackCount"] = "#inventory_selected_item_stack_count";
|
|
4117
|
+
BindingName2["InventorySelectedItemLockInInventory"] = "#inventory_selected_item_lock_in_inventory";
|
|
4118
|
+
BindingName2["InventorySelectedItemLockInSlot"] = "#inventory_selected_item_lock_in_slot";
|
|
4119
|
+
BindingName2["GamepadCursorVisible"] = "#gamepad_cursor_visible";
|
|
4120
|
+
BindingName2["SafezoneOuterTop"] = "#safezone_outer_top";
|
|
4121
|
+
BindingName2["SafezoneInnerTop"] = "#safezone_inner_top";
|
|
4122
|
+
BindingName2["SafezoneInnerBottom"] = "#safezone_inner_bottom";
|
|
4123
|
+
BindingName2["SafezoneOuterBottom"] = "#safezone_outer_bottom";
|
|
4124
|
+
BindingName2["SafezoneOuterLeft"] = "#safezone_outer_left";
|
|
4125
|
+
BindingName2["SafezoneInnerLeft"] = "#safezone_inner_left";
|
|
4126
|
+
BindingName2["SafezoneInnerRight"] = "#safezone_inner_right";
|
|
4127
|
+
BindingName2["SafezoneOuterRight"] = "#safezone_outer_right";
|
|
4128
|
+
BindingName2["IsContainerScreen"] = "#is_container_screen";
|
|
4129
|
+
BindingName2["TooltipText"] = "#tooltip_text";
|
|
4130
|
+
BindingName2["ImageName"] = "#image_name";
|
|
4131
|
+
BindingName2["ServiceImageTextureFilename"] = "#service_image_texture_filename";
|
|
4132
|
+
BindingName2["ServiceImageTextureLocation"] = "#service_image_texture_location";
|
|
4133
|
+
BindingName2["ServiceImageRepoReady"] = "#service_image_repo_ready";
|
|
4134
|
+
BindingName2["NotBound"] = "#not_bound";
|
|
4135
|
+
BindingName2["IsDownloadInProgress"] = "#is_download_in_progress";
|
|
4136
|
+
BindingName2["IsLoadingInProgress"] = "#is_loading_in_progress";
|
|
4137
|
+
BindingName2["Textbox"] = "#textbox";
|
|
4138
|
+
BindingName2["HasResourceUriError"] = "#has_resource_uri_error";
|
|
4139
|
+
BindingName2["ResourceUriDoneEnabled"] = "#resource_uri_done_enabled";
|
|
4140
|
+
BindingName2["HasEduExternalLink"] = "#has_edu_external_link";
|
|
4141
|
+
BindingName2["IsAddingResource"] = "#is_adding_resource";
|
|
4142
|
+
BindingName2["ShareLink"] = "#share_link";
|
|
4143
|
+
BindingName2["HotbarHintBoundKey"] = "#hotbar_hint_bound_key";
|
|
4144
|
+
BindingName2["HotbarHintBoundKeyGlyphVisible"] = "#hotbar_hint_bound_key_glyph_visible";
|
|
4145
|
+
BindingName2["HotbarHintVisible"] = "#hotbar_hint_visible";
|
|
4146
|
+
BindingName2["EduCloudConflictResolutionDescription"] = "#edu_cloud_conflict_resolution_description";
|
|
4147
|
+
BindingName2["EduCloudConflictResolutionLocalName"] = "#edu_cloud_conflict_resolution_local_name";
|
|
4148
|
+
BindingName2["EduCloudConflictResolutionLocalDate"] = "#edu_cloud_conflict_resolution_local_date";
|
|
4149
|
+
BindingName2["EduCloudConflictResolutionCloudName"] = "#edu_cloud_conflict_resolution_cloud_name";
|
|
4150
|
+
BindingName2["EduCloudConflictResolutionCloudDate"] = "#edu_cloud_conflict_resolution_cloud_date";
|
|
4151
|
+
BindingName2["ScreenshotTextureName"] = "#screenshot_texture_name";
|
|
4152
|
+
BindingName2["GridButtonOverrideRight"] = "#grid_button_override_right";
|
|
4153
|
+
BindingName2["GridButtonOverrideLeft"] = "#grid_button_override_left";
|
|
4154
|
+
BindingName2["GridButtonOverrideUp"] = "#grid_button_override_up";
|
|
4155
|
+
BindingName2["ScreenshotsGridDimensions"] = "#screenshots_grid_dimensions";
|
|
4156
|
+
BindingName2["ZoomedTextureName"] = "#zoomed_texture_name";
|
|
4157
|
+
BindingName2["ZoomedTextureFileSystem"] = "#zoomed_texture_file_system";
|
|
4158
|
+
BindingName2["OfferTextureName"] = "#offer_texture_name";
|
|
4159
|
+
BindingName2["OfferTextureFileSystem"] = "#offer_texture_file_system";
|
|
4160
|
+
BindingName2["DynamicTooltipNotificationVisibilityBindingName"] = "#dynamic_tooltip_notification_visibility_binding_name";
|
|
4161
|
+
BindingName2["ContentToggleLabel"] = "#content_toggle_label";
|
|
4162
|
+
BindingName2["FillTogglePropertyBag"] = "#fill_toggle_property_bag";
|
|
4163
|
+
BindingName2["FocusOverrideLeft"] = "#focus_override_left";
|
|
4164
|
+
BindingName2["UpdateDimensionsMakeBackup"] = "#update_dimensions_make_backup";
|
|
4165
|
+
BindingName2["UpdateScreenTitle"] = "#update_screen_title";
|
|
4166
|
+
BindingName2["UpdateScreenPatchNotes"] = "#update_screen_patch_notes";
|
|
4167
|
+
BindingName2["UpdateScreenDescription"] = "#update_screen_description";
|
|
4168
|
+
BindingName2["RecoveryText"] = "#recovery_text";
|
|
4169
|
+
BindingName2["GenerateRandomButtonText"] = "#generate_random_button_text";
|
|
4170
|
+
BindingName2["GenerateRandomButtonEnabled"] = "#generate_random_button_enabled";
|
|
4171
|
+
BindingName2["GenerateRandomButtonVisible"] = "#generate_random_button_visible";
|
|
4172
|
+
BindingName2["RealmsInfoText"] = "#realms_info_text";
|
|
4173
|
+
BindingName2["RealmsInfoVisible"] = "#realms_info_visible";
|
|
4174
|
+
BindingName2["WorldTemplateName"] = "#world_template_name";
|
|
4175
|
+
BindingName2["WorldTemplateDescription"] = "#world_template_description";
|
|
4176
|
+
BindingName2["WorldTemplateVersion"] = "#world_template_version";
|
|
4177
|
+
BindingName2["TemplateDownloadText"] = "#template_download_text";
|
|
4178
|
+
BindingName2["CsbExpirationVisible"] = "#csb_expiration_visible";
|
|
4179
|
+
BindingName2["WorldTemplateItemGridDimension"] = "#world_template_item_grid_dimension";
|
|
4180
|
+
BindingName2["TemplateListVisible"] = "#template_list_visible";
|
|
4181
|
+
BindingName2["CreatedByLabel"] = "#created_by_label";
|
|
4182
|
+
BindingName2["SuggestedTemplateFactoryCollection"] = "#suggested_template_factory_collection";
|
|
4183
|
+
BindingName2["RealmsPlusListVisible"] = "#realms_plus_list_visible";
|
|
4184
|
+
BindingName2["RealmsPlusTemplateFactoryCollection"] = "#realms_plus_template_factory_collection";
|
|
4185
|
+
BindingName2["WorldTemplateInventoryFactoryCollection"] = "#world_template_inventory_factory_collection";
|
|
4186
|
+
BindingName2["CustomTemplateListVisible"] = "#custom_template_list_visible";
|
|
4187
|
+
BindingName2["CustomWorldTemplateFactoryCollection"] = "#custom_world_template_factory_collection";
|
|
4188
|
+
BindingName2["CustomWorldTemplateItemGridDimension"] = "#custom_world_template_item_grid_dimension";
|
|
4189
|
+
BindingName2["AreWorldListGridsReady"] = "#are_world_list_grids_ready";
|
|
4190
|
+
BindingName2["SubscriptionWorldTemplateText"] = "#subscription_world_template_text";
|
|
4191
|
+
BindingName2["SuggestedContentVisible"] = "#suggested_content_visible";
|
|
4192
|
+
BindingName2["QrCodeContent"] = "#qr_code_content";
|
|
4193
|
+
BindingName2["Url"] = "#url";
|
|
4194
|
+
BindingName2["Code"] = "#code";
|
|
4195
|
+
BindingName2["Ps4WarningMessageVisible"] = "#ps4_warning_message_visible";
|
|
4196
|
+
BindingName2["IsNewAccount"] = "#is_new_account";
|
|
4197
|
+
BindingName2["WelcomeMessage"] = "#welcome_message";
|
|
4198
|
+
BindingName2["Message"] = "#message";
|
|
4199
|
+
BindingName2["PackTexture"] = "#pack_texture";
|
|
4200
|
+
BindingName2["TitleName"] = "#title_name";
|
|
4201
|
+
BindingName2["StarterGridDimension"] = "#starter_grid_dimension";
|
|
4202
|
+
BindingName2["MasterGridDimension"] = "#master_grid_dimension";
|
|
4203
|
+
return BindingName2;
|
|
4204
|
+
})(BindingName || {});
|
|
4205
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
4206
|
+
0 && (module.exports = {
|
|
4207
|
+
BindingName
|
|
4208
|
+
});
|