Traducion
This commit is contained in:
@ -15,11 +15,7 @@ public class Main extends Application {
|
||||
public void start(Stage primaryStage) throws Exception {
|
||||
System.out.println("Lancement de l'application");
|
||||
|
||||
<<<<<<< HEAD
|
||||
final URL fxmlURL = getClass().getResource("ressources/parametre.fxml"); // "ressources/Jouer_tour(1)lancer_des.fxml"
|
||||
=======
|
||||
final URL fxmlURL = getClass().getResource("ressources/Menu.fxml"); // "ressources/Jouer_tour(1)lancer_des.fxml"
|
||||
>>>>>>> 47a2be32525b7a871993afd9411befb3fd20fac1
|
||||
final URL fxmlURL = getClass().getResource("ressources/Menu.fxml"); // "ressources/Jouer_tour(1)lancer_des.fxml"
|
||||
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.ENGLISH);
|
||||
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
|
||||
Pane root = fxmlLoader.load();
|
||||
|
@ -83,7 +83,7 @@ public class ParametreController implements Initializable {
|
||||
*/
|
||||
|
||||
final URL fxmlURL = getClass().getResource("../ressources/Jouer_tour(3)attaquer.fxml");
|
||||
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.ENGLISH);
|
||||
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRANCE);
|
||||
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
|
||||
Pane pane = fxmlLoader.load();
|
||||
|
||||
|
@ -27,10 +27,6 @@ import javafx.scene.image.ImageView;
|
||||
import javafx.scene.layout.AnchorPane;
|
||||
import javafx.scene.layout.HBox;
|
||||
import javafx.scene.layout.VBox;
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
import javafx.util.Duration;
|
||||
>>>>>>> eea99d2341b1df015a2831034aa39534addff16e
|
||||
import main.Joueur;
|
||||
import main.View;
|
||||
|
||||
|
@ -118,7 +118,7 @@ public class PlayersController implements Initializable{
|
||||
final URL fxmlURL = getClass().getResource("../ressources/Plateau.fxml");
|
||||
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRENCH);
|
||||
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
|
||||
Parent root = fxmlLoader.load();
|
||||
AnchorPane root = fxmlLoader.load();
|
||||
PlateauController pc = fxmlLoader.getController();
|
||||
GestionnaireJeu.setPlateauController(pc);
|
||||
GestionnaireJeu.setConfiguration(new Configuration(this.joueurs));
|
||||
|
Reference in New Issue
Block a user