Skip to content

Commit

Permalink
Updates in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cesar-rgon committed Feb 27, 2025
1 parent 884c21e commit 5daa2bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LEEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Idiomas: Inglés, Español, Francés, Ruso
Traducción a inglés y español: César Rodríguez González
Traducción a francés por: -foG.Nox
Traducción a ruso por: Dreadmor404
Traducción a vietnamita por: DIOS
Traducción a vietnamita por: InsDude
```
**Servidor Discord: https://discord.gg/WdwRU522Fb**

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Languages: English, Spanish, French, Russian
Translation to english and spanish: César Rodríguez González
Translation to french by: -foG.Nox
Translation to russian by: Dreadmor404
Translation to vietnamese by: DIOS
Translation to vietnamese by: InsDude
```
**Discord server: https://discord.gg/WdwRU522Fb**

Expand Down
12 changes: 6 additions & 6 deletions src/main/java/stories/template/TemplateController.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,11 @@ private void aboutMenuOnAction() {
dreadmore404ImageView.setPreserveRatio(true);
dreadmore404ImageView.setFitWidth(100);

InputStream diosInputStream = getClass().getClassLoader().getResourceAsStream("images/dios-photo.png");
Image diosImage = new Image(diosInputStream);
ImageView diosImageView = new ImageView(diosImage);
diosImageView.setPreserveRatio(true);
diosImageView.setFitWidth(100);
InputStream insdudeInputStream = getClass().getClassLoader().getResourceAsStream("images/insdude-photo.png");
Image insdudeImage = new Image(insdudeInputStream);
ImageView insdudeImageView = new ImageView(insdudeImage);
insdudeImageView.setPreserveRatio(true);
insdudeImageView.setFitWidth(100);

Label frenchTranslationLabel = new Label(translatedToFrenchBy + " -foG.Nox");
Label russianTranslationLabel = new Label(translatedToRussianBy + " Dreadmore404");
Expand All @@ -240,7 +240,7 @@ private void aboutMenuOnAction() {
gridPane.add(dreadmore404ImageView, 1, 4);
gridPane.add(russianTranslationLabel, 2, 4);

gridPane.add(diosImageView, 1, 5);
gridPane.add(insdudeImageView, 1, 5);
gridPane.add(vietnameseTranslationLabel, 2, 5);

gridPane.setPrefWidth(450);
Expand Down
File renamed without changes

0 comments on commit 5daa2bd

Please sign in to comment.