Strings to resources
This commit is contained in:
parent
307c78deac
commit
6b06414368
4 changed files with 5 additions and 1 deletions
|
@ -213,7 +213,8 @@ public class DashboardController implements Initializable, MapComponentInitializ
|
|||
|
||||
private void load() throws JAXBException {
|
||||
FileChooser fileChooser = new FileChooser();
|
||||
fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("estraba files", "*.gpx"));
|
||||
fileChooser.getExtensionFilters().add(
|
||||
new FileChooser.ExtensionFilter(App.GENERAL_BUNDLE.getString("app.extension.filter.name"), "*.gpx"));
|
||||
File file = fileChooser.showOpenDialog(root.getScene().getWindow());
|
||||
if (file == null) return;
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
app.extension.filter.name=GPX data files
|
||||
app.title=ESTRABA
|
||||
label.cadence=Cadence
|
||||
label.distance=Distance
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
app.extension.filter.name=Arxius GPX
|
||||
app.title=ESTRABA
|
||||
label.cadence=Cadencia
|
||||
label.distance=Distancia
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
app.extension.filter.name=Archivos de datos GPX
|
||||
app.title=ESTRABA
|
||||
label.cadence=Cadencia
|
||||
label.distance=Distancia
|
||||
|
|
Reference in a new issue