diff --git a/src/main/java/com/github/lmh01/mgt2mt/mod/GenreMod.java b/src/main/java/com/github/lmh01/mgt2mt/mod/GenreMod.java
index b1a8ce93..4121fd9a 100644
--- a/src/main/java/com/github/lmh01/mgt2mt/mod/GenreMod.java
+++ b/src/main/java/com/github/lmh01/mgt2mt/mod/GenreMod.java
@@ -344,7 +344,7 @@ public boolean accept(File f) {
@Override
public String getDescription() {
- return ".png files";
+ return I18n.INSTANCE.get("commonText.imageFile.selectionType");
}
};
@@ -424,7 +424,7 @@ public boolean accept(File f) {
@Override
public String getDescription() {
- return ".png files";
+ return I18n.INSTANCE.get("commonText.imageFile.selectionType");
}
};
diff --git a/src/main/java/com/github/lmh01/mgt2mt/util/Utils.java b/src/main/java/com/github/lmh01/mgt2mt/util/Utils.java
index a6163e98..c6b728c8 100644
--- a/src/main/java/com/github/lmh01/mgt2mt/util/Utils.java
+++ b/src/main/java/com/github/lmh01/mgt2mt/util/Utils.java
@@ -203,24 +203,24 @@ public boolean accept(File f) {
@Override
public String getDescription() {
- return ".png files";
+ return I18n.INSTANCE.get("commonText.imageFile.selectionType");
}
};
JFileChooser fileChooser = new JFileChooser(); //Create a new GUI that will use the current(windows) Look and Feel
fileChooser.setFileFilter(fileFilter);
- fileChooser.setDialogTitle("Choose a genre image (.png):");
+ fileChooser.setDialogTitle(I18n.INSTANCE.get("commonText.imageFile.selectPngFile.fileChooser"));
int return_value = fileChooser.showOpenDialog(null);
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName()); //revert the Look and Feel back to the ugly Swing
if(return_value == JFileChooser.APPROVE_OPTION){
if(fileChooser.getSelectedFile().getName().contains(".png")){
if(showConfirmMessage){
- JOptionPane.showMessageDialog(new Frame(), "Image file set.");
+ JOptionPane.showMessageDialog(new Frame(), I18n.INSTANCE.get("commonText.imageFileSet"));
}
return fileChooser.getSelectedFile().getPath();
}else{
- JOptionPane.showMessageDialog(new Frame(), "Please select a .png file.");
+ JOptionPane.showMessageDialog(new Frame(), I18n.INSTANCE.get("commonText.imageFile.selectPngFile"));
return "error";
}
}else{
diff --git a/src/main/java/com/github/lmh01/mgt2mt/util/handler/NewModsHandler.java b/src/main/java/com/github/lmh01/mgt2mt/util/handler/NewModsHandler.java
index 87b11763..0c9995b9 100644
--- a/src/main/java/com/github/lmh01/mgt2mt/util/handler/NewModsHandler.java
+++ b/src/main/java/com/github/lmh01/mgt2mt/util/handler/NewModsHandler.java
@@ -19,7 +19,7 @@ public static void addCompanyIcon(){
try {
Files.copy(Paths.get(imageFileSource.getPath()), Paths.get(targetImage.getPath()));
TextAreaHelper.appendText(I18n.INSTANCE.get("textArea.addCompanyIcon.success"));
- JOptionPane.showMessageDialog(null, "Image has been added.", "Image added", JOptionPane.INFORMATION_MESSAGE);
+ JOptionPane.showMessageDialog(null, I18n.INSTANCE.get("mod.companyIcon.added"), I18n.INSTANCE.get("mod.companyIcon.added.title"), JOptionPane.INFORMATION_MESSAGE);
} catch (IOException e) {
TextAreaHelper.appendText(I18n.INSTANCE.get("textArea.addCompanyIcon.error") + " " + e.getMessage());
JOptionPane.showMessageDialog(null, I18n.INSTANCE.get("textArea.addCompanyIcon.error") + "\n\n" + e.getMessage(), I18n.INSTANCE.get("frame.title.error"), JOptionPane.ERROR_MESSAGE);
diff --git a/src/main/resources/locale/de.txt b/src/main/resources/locale/de.txt
index 99745ff2..34763543 100644
--- a/src/main/resources/locale/de.txt
+++ b/src/main/resources/locale/de.txt
@@ -133,8 +133,9 @@ commonText.screenshots.added|Screenhots eingestellt
commonText.imageFile.doesNotExist|Die eingegebene Bilddatei existiert nicht.
Wähle bitte eine gültige Datei aus.
commonText.imageFile.selectPngFile|Wähle bitte eine .png Datei aus.
commonText.imageFile.selectOnlyPngFile|Wähle bitte nur .png Dateien aus.
-commonText.imageFile.selectPngFile.fileChooser|Wähle ein Genre Bild aus (png.):
+commonText.imageFile.selectPngFile.fileChooser|Wähle eine Bilddatei aus (png.):
commonText.imageFile.selectPngFiles.fileChooser|Wähle .png Dateien aus:
+commonText.imageFile.selectionType|.png Dateien
commonText.followingImageFilesHaveBeenAdded.firstPart|Die folgenden Bilddateien wurden hinzugefügt:
commonText.isThisCorrect|Ist das richtig und möchtest du weiter machen?
commonText.browse|Durchsuchen
@@ -383,6 +384,8 @@ mod.genre.enterDescriptionFirst|Gib bitte zu erst eine Beschreibung für das Gen
mod.genre.translation.donNotShowInfoAgain|Diese Information nicht noch einmal anzeigen
mod.genre.translation.information|Hinweis:
Die Übersetzung, die in das "Haupt"-Textfeld geschrieben wird, wird für die Englische Übersetzung benutzt.
Fortsetzen?
mod.genre.sameSelection.text|Fortsetzung nicht möglich: Es ist nicht zulässig, dasselbe Feature in beiden Listen auszuwählen.
Bitte deaktiviere das Feature in einer Liste.
+mod.companyIcon.added|Bild wurde hinzugefügt.
+mod.companyIcon.added.title|Bild hinzugefügt.
sharer.exportFailed.generalError.firstPart|Export nicht möglich:
sharer.exportFailed.generalError.secondPart|Der folgende Fehler ist aufgetreten:
diff --git a/src/main/resources/locale/en.txt b/src/main/resources/locale/en.txt
index 8f93a0b5..ea198c2c 100644
--- a/src/main/resources/locale/en.txt
+++ b/src/main/resources/locale/en.txt
@@ -132,9 +132,10 @@ commonText.imageFileSet|Image file set
commonText.screenshots.added|Screenshots set
commonText.imageFile.doesNotExist|The entered image file does not exist.
Please select a valid file.
commonText.imageFile.selectPngFile|Please select a .png file.
-commonText.imageFile.selectPngFiles.fileChooser|Please select .png files:
commonText.imageFile.selectOnlyPngFile|Please select only .png files.
-commonText.imageFile.selectPngFile.fileChooser|Choose a genre image (.png):
+commonText.imageFile.selectPngFile.fileChooser|Choose a image file (.png):
+commonText.imageFile.selectPngFiles.fileChooser|Please select .png files:
+commonText.imageFile.selectionType|.png files
commonText.followingImageFilesHaveBeenAdded.firstPart|The following image files have been added:
commonText.isThisCorrect|Is this correct and do you want to continue?
commonText.browse|Browse
@@ -383,6 +384,8 @@ mod.genre.enterDescriptionFirst|Please enter a genre description first!
mod.genre.translation.donNotShowInfoAgain|Don't show this information again
mod.genre.translation.information|Note:
The translation that you have entered in the "main"text field
will be used as the english translation.
Continue?
mod.genre.sameSelection.text|Unable to continue: It is not allowed to select the same feature in booth lists.
Please deselect the feature from one list.
+mod.companyIcon.added|Image has been added.
+mod.companyIcon.added.title|Image added.
sharer.exportFailed.generalError.firstPart|Unable to export:
sharer.exportFailed.generalError.secondPart|The following error occurred: