Traduction

This commit is contained in:
nawfe
2020-04-24 16:35:59 +02:00
parent 60764f7bba
commit c7ca4ec822
42 changed files with 1206 additions and 650 deletions

View File

@@ -2,6 +2,7 @@ package ihm.controller;
import java.io.IOException;
import java.net.URL;
import java.util.Locale;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
@@ -19,8 +20,11 @@ public class PiocherVisionController implements Initializable{
}
@FXML
public void voirCarte(MouseEvent mouseEvent) throws IOException{
Pane pane = FXMLLoader.load(getClass().getResource("../ressources/jouer_Son_Tour_donner_vision.fxml"));
final URL fxmlURL = getClass().getResource("../ressources/jouer_Son_Tour_donner_vision.fxml");
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRANCE);
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
Pane pane = fxmlLoader.load();
rootPane.getChildren().setAll(pane);
}