ns-usbloader/src/main/resources/SettingsBlockTinfoil.fxml
Dmitry Isaenko b02bc7ed2d Using idea from #90: Replace 'Tinfoil' by 'Awoo' everywhere on the front end. Also touched translation files (hope didn't broke it, but could be)
Add 'Fusee Geelee' and 'RCM' labels used on 'RCM' tab to 'properties' files in case someone wants to translate it.. I don't think if someone should but there is an option.
(note: CLI arguments remains the same while only description updated)
2021-08-10 17:00:33 +03:00

81 lines
3.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox spacing="5.0" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="nsusbloader.Controllers.SettingsBlockTinfoilController">
<children>
<Label text="%tab2_Lbl_AwooBlockTitle" />
<CheckBox mnemonicParsing="false" text="%tab2_Cb_AllowXciNszXcz" fx:id="xciNszXczSupportCB">
<VBox.margin>
<Insets left="5.0" />
</VBox.margin></CheckBox>
<Label disable="true" text="%tab2_Lbl_AllowXciNszXczDesc" wrapText="true">
<VBox.margin>
<Insets left="5.0" />
</VBox.margin></Label>
<CheckBox fx:id="validateNSHostNameCB" mnemonicParsing="false" text="%tab2_Cb_ValidateNSHostName">
<VBox.margin>
<Insets left="5.0" />
</VBox.margin>
</CheckBox>
<CheckBox fx:id="networkExpertModeCB" mnemonicParsing="false" text="%tab2_Cb_ExpertMode">
<VBox.margin>
<Insets left="5.0" />
</VBox.margin></CheckBox>
<VBox fx:id="networkExpertSettingsVBox" spacing="5.0">
<children>
<CheckBox fx:id="autoDetectIpCB" mnemonicParsing="false" text="%tab2_Cb_AutoDetectIp">
<VBox.margin>
<Insets />
</VBox.margin>
</CheckBox>
<CheckBox fx:id="randomlySelectPortCB" mnemonicParsing="false" text="%tab2_Cb_RandSelectPort">
<VBox.margin>
<Insets />
</VBox.margin>
</CheckBox>
<HBox>
<children>
<Label text="%tab2_Lbl_HostIP" />
<Label text=":" />
<Label text="%tab2_Lbl_HostPort" />
<Label text="/" />
<Label text="%tab2_Lbl_HostExtra" />
</children>
</HBox>
<HBox>
<children>
<TextField fx:id="pcIpTF" promptText="XXX.XXX.XXX.XXX" />
<Label text=":" />
<TextField fx:id="pcPortTF" promptText="0-65535" />
<Label text="/" />
<TextField fx:id="pcExtraTF" HBox.hgrow="ALWAYS">
<HBox.margin>
<Insets />
</HBox.margin>
</TextField>
</children>
</HBox>
<CheckBox fx:id="noRequestsServeCB" mnemonicParsing="false" text="%tab2_Cb_DontServeRequests">
<VBox.margin>
<Insets />
</VBox.margin>
</CheckBox>
<Label disable="true" text="%tab2_Lbl_DontServeRequestsDesc" wrapText="true">
<VBox.margin>
<Insets />
</VBox.margin>
</Label>
</children>
<padding>
<Insets left="15.0" />
</padding>
</VBox>
</children>
</VBox>