Traduction

This commit is contained in:
nawfe 2020-04-28 18:29:53 +02:00
parent 853534ce91
commit 502a9fcc62
19 changed files with 64 additions and 61 deletions

View File

@ -3,6 +3,7 @@ package ihm.controller;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.net.URL; import java.net.URL;
import java.util.Locale;
import java.util.ResourceBundle; import java.util.ResourceBundle;
import ihm.Musique; import ihm.Musique;
@ -81,8 +82,10 @@ public class ParametreController implements Initializable {
* } * }
*/ */
final URL fxmlURL = getClass().getResource("../ressources/Jouer_tour(3)attaquer.fxml");
Pane pane = FXMLLoader.load(getClass().getResource("../ressources/Jouer_tour(3)attaquer.fxml")); final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.ENGLISH);
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
Pane pane = fxmlLoader.load();
rootPane.getChildren().setAll(pane); rootPane.getChildren().setAll(pane);

View File

@ -8,16 +8,16 @@
<Pane fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.JouerSonTour1Controller"> <Pane fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.JouerSonTour1Controller">
<children> <children>
<Label layoutX="135.0" layoutY="29.0" text="C'est au tour de"> <Label layoutX="135.0" layoutY="29.0" text="%au.tour.de">
<font> <font>
<Font size="36.0" /> <Font size="36.0" />
</font> </font>
</Label> </Label>
<Button layoutX="262.0" layoutY="388.0" mnemonicParsing="false" onMouseClicked="#lancerDes" text="Lancer les dés"> <Button layoutX="262.0" layoutY="388.0" mnemonicParsing="false" onMouseClicked="#lancerDes" text="%lancer.de.des">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font></Button> </font></Button>
<Label fx:id="nomJoueur" layoutX="405.0" layoutY="29.0" text="joueur 1"> <Label fx:id="nomJoueur" layoutX="405.0" layoutY="29.0" text="%joueur1">
<font> <font>
<Font size="36.0" /> <Font size="36.0" />
</font> </font>

View File

@ -6,7 +6,7 @@
<Pane fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.JouerSonTour6Controller"> <Pane fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.JouerSonTour6Controller">
<children> <children>
<Label layoutX="250.0" layoutY="227.0" text="Piochez une carte"> <Label layoutX="250.0" layoutY="227.0" text="%piocher.carte">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>

View File

@ -13,7 +13,7 @@
<children> <children>
<HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0"> <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0">
<children> <children>
<Label prefHeight="27.0" prefWidth="54.0" text="Carte"> <Label prefHeight="27.0" prefWidth="54.0" text="%carte">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
@ -28,7 +28,7 @@
<ImageView fitHeight="326.0" fitWidth="233.5" pickOnBounds="true" preserveRatio="true" /> <ImageView fitHeight="326.0" fitWidth="233.5" pickOnBounds="true" preserveRatio="true" />
<HBox alignment="CENTER" prefHeight="111.0" prefWidth="600.0"> <HBox alignment="CENTER" prefHeight="111.0" prefWidth="600.0">
<children> <children>
<Label prefHeight="27.0" prefWidth="54.0" text="Effet :"> <Label prefHeight="27.0" prefWidth="54.0" text="%effet">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>

View File

@ -12,18 +12,18 @@
<children> <children>
<VBox alignment="CENTER" prefHeight="480.0" prefWidth="640.0"> <VBox alignment="CENTER" prefHeight="480.0" prefWidth="640.0">
<children> <children>
<Label prefHeight="27.0" prefWidth="106.0" text="Carte Vision"> <Label prefHeight="27.0" prefWidth="106.0" text="%carte.vision">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
</Label> </Label>
<ImageView fitHeight="326.0" fitWidth="233.5" pickOnBounds="true" preserveRatio="true" /> <ImageView fitHeight="326.0" fitWidth="233.5" pickOnBounds="true" preserveRatio="true" />
<Label prefHeight="27.0" prefWidth="473.0" text="Cette carte ne peut être vu que par le joueur qui la pioche."> <Label prefHeight="27.0" prefWidth="473.0" text="%carte.vue.par.joueur.pioche">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
</Label> </Label>
<Button mnemonicParsing="false" onMouseClicked="#voirCarte" text="Voir carte"> <Button mnemonicParsing="false" onMouseClicked="#voirCarte" text="%voir.carte">
<VBox.margin> <VBox.margin>
<Insets top="5.0" /> <Insets top="5.0" />
</VBox.margin> </VBox.margin>

View File

@ -15,7 +15,7 @@
<children> <children>
<VBox alignment="CENTER" prefHeight="178.0" prefWidth="599.0"> <VBox alignment="CENTER" prefHeight="178.0" prefWidth="599.0">
<children> <children>
<Label prefHeight="27.0" prefWidth="103.0" text="Carte Vision"> <Label prefHeight="27.0" prefWidth="103.0" text="%voir.carte">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
@ -34,7 +34,7 @@
</HBox> </HBox>
</children> </children>
</HBox> </HBox>
<Label prefHeight="27.0" prefWidth="340.0" text="Choisissez un joueur à qui donner la carte."> <Label prefHeight="27.0" prefWidth="340.0" text="%jouer.a.qui.donner.carte">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>

View File

@ -15,12 +15,12 @@
</Label> </Label>
<HBox alignment="CENTER" layoutX="-1.0" layoutY="179.0" prefHeight="21.0" prefWidth="600.0"> <HBox alignment="CENTER" layoutX="-1.0" layoutY="179.0" prefHeight="21.0" prefWidth="600.0">
<children> <children>
<Label text="Joueur"> <Label text="%joueur">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
</Label> </Label>
<Label text="conséquence"> <Label text="%consequence">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>

View File

@ -7,12 +7,12 @@
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1"> <Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children> <children>
<Label layoutX="66.0" layoutY="200.0" text="Attaquez un joueur ou se soigner de 2 blessures"> <Label layoutX="66.0" layoutY="200.0" text="%attaquer.ou.soigner">
<font> <font>
<Font size="24.0" /> <Font size="24.0" />
</font> </font>
</Label> </Label>
<Button layoutX="278.0" layoutY="255.0" mnemonicParsing="false" text="Se soigner"> <Button layoutX="278.0" layoutY="255.0" mnemonicParsing="false" text="%se.soigner">
<font> <font>
<Font size="14.0" /> <Font size="14.0" />
</font></Button> </font></Button>

View File

@ -7,12 +7,12 @@
<Pane fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.JouerSonTour3Controller"> <Pane fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="480.0" prefWidth="640.0" stylesheets="@style/popUp.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.JouerSonTour3Controller">
<children> <children>
<Label layoutX="191.0" layoutY="163.0" text="Attaquer un autre joueur !"> <Label layoutX="191.0" layoutY="163.0" text="%attaquer.joueur">
<font> <font>
<Font size="24.0" /> <Font size="24.0" />
</font> </font>
</Label> </Label>
<Button layoutX="277.0" layoutY="265.0" mnemonicParsing="false" onMouseClicked="#pasAttaquer" text="Ne pas attaquer" /> <Button layoutX="277.0" layoutY="265.0" mnemonicParsing="false" onMouseClicked="#pasAttaquer" text="%ne.pas.attaqur" />
<Label layoutX="182.0" layoutY="208.0" text="Cliquez sur le nom du joueur que vous voulez attaquer" /> <Label layoutX="182.0" layoutY="208.0" text="Cliquez sur le nom du joueur que vous voulez attaquer" />
</children> </children>
</Pane> </Pane>

View File

@ -16,7 +16,7 @@
</Label> </Label>
<Rectangle arcHeight="5.0" arcWidth="5.0" fill="WHITE" height="173.0" layoutX="117.0" layoutY="151.0" stroke="BLACK" strokeType="INSIDE" width="173.0" /> <Rectangle arcHeight="5.0" arcWidth="5.0" fill="WHITE" height="173.0" layoutX="117.0" layoutY="151.0" stroke="BLACK" strokeType="INSIDE" width="173.0" />
<Polygon fill="WHITE" layoutX="434.0" layoutY="218.0" points="-75.79998779296875, 98.80001831054688, 97.0, 98.80001831054688, 8.20001220703125, -59.199981689453125" stroke="BLACK" strokeType="INSIDE" /> <Polygon fill="WHITE" layoutX="434.0" layoutY="218.0" points="-75.79998779296875, 98.80001831054688, 97.0, 98.80001831054688, 8.20001220703125, -59.199981689453125" stroke="BLACK" strokeType="INSIDE" />
<Button layoutX="267.0" layoutY="387.0" mnemonicParsing="false" text="Lancer les dés"> <Button layoutX="267.0" layoutY="387.0" mnemonicParsing="false" text="%lancer.de.des">
<font> <font>
<Font size="14.0" /> <Font size="14.0" />
</font></Button> </font></Button>
@ -28,12 +28,12 @@
<font> <font>
<Font size="64.0" /> <Font size="64.0" />
</font></Label> </font></Label>
<Label layoutX="418.0" layoutY="31.0" text="joueur 2"> <Label layoutX="418.0" layoutY="31.0" text="%joueur2">
<font> <font>
<Font size="36.0" /> <Font size="36.0" />
</font> </font>
</Label> </Label>
<Label layoutX="136.0" layoutY="31.0" text="Joueur 1"> <Label layoutX="136.0" layoutY="31.0" text="%joueur3">
<font> <font>
<Font size="36.0" /> <Font size="36.0" />
</font> </font>

View File

@ -14,7 +14,7 @@
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
</Label> </Label>
<Label contentDisplay="CENTER" prefHeight="27.0" prefWidth="52.0" text="reçoit" textAlignment="CENTER"> <Label contentDisplay="CENTER" prefHeight="27.0" prefWidth="52.0" text="%recoit" textAlignment="CENTER">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
@ -24,7 +24,7 @@
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
</Label> </Label>
<Label contentDisplay="CENTER" prefHeight="27.0" prefWidth="82.0" text="Blessures." textAlignment="CENTER"> <Label contentDisplay="CENTER" prefHeight="27.0" prefWidth="82.0" text="%blessure" textAlignment="CENTER">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>

View File

@ -8,7 +8,7 @@
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1"> <Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children> <children>
<Label layoutX="137.0" layoutY="100.0" prefHeight="46.0" prefWidth="362.0" text="Joueur 1 soigne Joueur 2"> <Label layoutX="137.0" layoutY="100.0" prefHeight="46.0" prefWidth="362.0" text="%joueur1.soigne.joueur2">
<font> <font>
<Font size="29.0" /> <Font size="29.0" />
</font> </font>
@ -18,6 +18,6 @@
<Font size="47.0" /> <Font size="47.0" />
</font> </font>
</Button> </Button>
<Button layoutX="243.0" layoutY="313.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="116.0" text="Lancer les dès" /> <Button layoutX="243.0" layoutY="313.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="116.0" text="%lancer.de.des" />
</children> </children>
</Pane> </Pane>

View File

@ -7,25 +7,25 @@
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="638.0" prefWidth="951.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1"> <Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="638.0" prefWidth="951.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children> <children>
<Button layoutX="73.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 1" /> <Button layoutX="73.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur1" />
<Button layoutX="298.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 2" /> <Button layoutX="298.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur2" />
<Button layoutX="515.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 3" /> <Button layoutX="515.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur3" />
<Button layoutX="745.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 4" /> <Button layoutX="745.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur4" />
<Button layoutX="73.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 5" /> <Button layoutX="73.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur5" />
<Button layoutX="298.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 6" /> <Button layoutX="298.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur6" />
<Button layoutX="515.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 7" /> <Button layoutX="515.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur7" />
<Button layoutX="745.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 8" /> <Button layoutX="745.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur8" />
<Button layoutX="177.0" layoutY="134.0" mnemonicParsing="false" prefHeight="327.0" prefWidth="194.0" text="Premier secours"> <Button layoutX="177.0" layoutY="134.0" mnemonicParsing="false" prefHeight="327.0" prefWidth="194.0" text="%premier.secours">
<font> <font>
<Font size="23.0" /> <Font size="23.0" />
</font> </font>
</Button> </Button>
<Label layoutX="524.0" layoutY="134.0" prefHeight="105.0" prefWidth="254.0" text="Effet carte"> <Label layoutX="524.0" layoutY="134.0" prefHeight="105.0" prefWidth="254.0" text="%effet.carte">
<font> <font>
<Font size="37.0" /> <Font size="37.0" />
</font> </font>
</Label> </Label>
<Label layoutX="438.0" layoutY="306.0" prefHeight="115.0" prefWidth="385.0" text="Choisissez un joueur" wrapText="true"> <Label layoutX="438.0" layoutY="306.0" prefHeight="115.0" prefWidth="385.0" text="%choisr.joueur" wrapText="true">
<font> <font>
<Font size="35.0" /> <Font size="35.0" />
</font> </font>

View File

@ -26,7 +26,7 @@
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
</Label> </Label>
<Label prefHeight="34.0" prefWidth="154.0" text="révèle son identité!" textFill="WHITE"> <Label prefHeight="34.0" prefWidth="154.0" text="%reveler.identite" textFill="WHITE">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
@ -35,7 +35,7 @@
</HBox> </HBox>
<HBox prefHeight="36.0" prefWidth="334.0"> <HBox prefHeight="36.0" prefWidth="334.0">
<children> <children>
<Label prefHeight="35.0" prefWidth="55.0" text="C'est" textFill="WHITE"> <Label prefHeight="35.0" prefWidth="55.0" text="%c.est" textFill="WHITE">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
@ -49,7 +49,7 @@
</HBox> </HBox>
<HBox prefHeight="36.0" prefWidth="334.0"> <HBox prefHeight="36.0" prefWidth="334.0">
<children> <children>
<Label prefHeight="35.0" prefWidth="75.0" text="Faction : " textFill="WHITE"> <Label prefHeight="35.0" prefWidth="75.0" text="%faction" textFill="WHITE">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>

View File

@ -8,25 +8,25 @@
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="638.0" prefWidth="951.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1"> <Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="638.0" prefWidth="951.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children> <children>
<Button layoutX="73.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 1" /> <Button layoutX="73.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur1" />
<Button layoutX="298.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 2" /> <Button layoutX="298.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur2" />
<Button layoutX="515.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 3" /> <Button layoutX="515.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur3" />
<Button layoutX="745.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 4" /> <Button layoutX="745.0" layoutY="33.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur4" />
<Button layoutX="73.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 5" /> <Button layoutX="73.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur5" />
<Button layoutX="298.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 6" /> <Button layoutX="298.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur6" />
<Button layoutX="515.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 7" /> <Button layoutX="515.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur7" />
<Button layoutX="745.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="Joueur 8" /> <Button layoutX="745.0" layoutY="510.0" mnemonicParsing="false" prefHeight="55.0" prefWidth="156.0" text="%joueur8" />
<Button layoutX="177.0" layoutY="134.0" mnemonicParsing="false" prefHeight="327.0" prefWidth="173.0" text="nediction"> <Button layoutX="177.0" layoutY="134.0" mnemonicParsing="false" prefHeight="327.0" prefWidth="173.0" text="%benediction">
<font> <font>
<Font size="23.0" /> <Font size="23.0" />
</font> </font>
</Button> </Button>
<Label layoutX="524.0" layoutY="134.0" prefHeight="105.0" prefWidth="254.0" text="Effet carte"> <Label layoutX="524.0" layoutY="134.0" prefHeight="105.0" prefWidth="254.0" text="%effet.carte">
<font> <font>
<Font size="37.0" /> <Font size="37.0" />
</font> </font>
</Label> </Label>
<Label layoutX="438.0" layoutY="306.0" prefHeight="115.0" prefWidth="385.0" text="Choisissez un joueur que vous voulez soigner" wrapText="true"> <Label layoutX="438.0" layoutY="306.0" prefHeight="115.0" prefWidth="385.0" text="%choisir.joueur.soigner" wrapText="true">
<font> <font>
<Font size="35.0" /> <Font size="35.0" />
</font> </font>

View File

@ -25,7 +25,7 @@
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
</Label> </Label>
<Label text="utilise sa capacité."> <Label text="%utiliser.capacite">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
@ -34,7 +34,7 @@
</HBox> </HBox>
<HBox alignment="CENTER" prefHeight="54.0" prefWidth="331.0"> <HBox alignment="CENTER" prefHeight="54.0" prefWidth="331.0">
<children> <children>
<Label prefHeight="27.0" prefWidth="76.0" text="Effet :"> <Label prefHeight="27.0" prefWidth="76.0" text="%effet.carte">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>

View File

@ -22,7 +22,7 @@
<Font size="24.0" /> <Font size="24.0" />
</font> </font>
</Label> </Label>
<Button layoutX="277.0" layoutY="213.0" mnemonicParsing="false" text="Ne pas attaquer" /> <Button layoutX="277.0" layoutY="213.0" mnemonicParsing="false" text="%ne.pas.attaqur" />
<HBox alignment="CENTER" layoutY="337.0" prefHeight="100.0" prefWidth="661.0" spacing="60.0"> <HBox alignment="CENTER" layoutY="337.0" prefHeight="100.0" prefWidth="661.0" spacing="60.0">
<children> <children>
<Button mnemonicParsing="false" text="%joueur5" /> <Button mnemonicParsing="false" text="%joueur5" />

View File

@ -15,12 +15,12 @@
<children> <children>
<VBox prefHeight="309.0" prefWidth="127.0" spacing="50.0"> <VBox prefHeight="309.0" prefWidth="127.0" spacing="50.0">
<children> <children>
<CheckBox fx:id="clair" mnemonicParsing="false" styleClass="checkBox" text="Mode clair" /> <CheckBox fx:id="clair" mnemonicParsing="false" styleClass="checkBox" text="%mode.claire" />
<CheckBox fx:id="cmusique" mnemonicParsing="false" styleClass="checkBox" text="Musique" /> <CheckBox fx:id="cmusique" mnemonicParsing="false" styleClass="checkBox" text="%musique" />
<CheckBox mnemonicParsing="false" styleClass="checkBox" text="Effet" /> <CheckBox mnemonicParsing="false" styleClass="checkBox" text="%effet" />
<VBox prefHeight="200.0" prefWidth="100.0" spacing="10.0"> <VBox prefHeight="200.0" prefWidth="100.0" spacing="10.0">
<children> <children>
<Label styleClass="titre" text="Langue"> <Label styleClass="titre" text="%langue">
<font> <font>
<Font size="18.0" /> <Font size="18.0" />
</font> </font>
@ -32,11 +32,11 @@
</VBox> </VBox>
</children> </children>
</HBox> </HBox>
<Label layoutX="309.0" layoutY="23.0" styleClass="titre" text="Paramètre"> <Label layoutX="309.0" layoutY="23.0" styleClass="titre" text="%parametre">
<font> <font>
<Font size="36.0" /> <Font size="36.0" />
</font> </font>
</Label> </Label>
<Button layoutX="340.0" layoutY="525.0" mnemonicParsing="false" onMouseClicked="#enregistre" styleClass="bouton" stylesheets="@style/menu.css" text="Enregistrer" /> <Button layoutX="340.0" layoutY="525.0" mnemonicParsing="false" onMouseClicked="#enregistre" styleClass="bouton" stylesheets="@style/menu.css" text="%enregistrer" />
</children> </children>
</Pane> </Pane>