mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 08:00:46 +00:00
committed by
Jindra Petřík
parent
8ef441fda8
commit
e137fdbca1
@@ -58,7 +58,7 @@ public class GuiAbortRetryIgnoreHandler implements AbortRetryIgnoreHandler {
|
||||
if (mf != null) {
|
||||
cmp = mf.getPanel();
|
||||
}
|
||||
int result = ViewMessages.showOptionDialog(cmp, AppStrings.translate("error.occured").replace("%error%", msg), AppStrings.translate("error"), JOptionPane.YES_NO_OPTION, JOptionPane.ERROR_MESSAGE, null, options, "");
|
||||
int result = ViewMessages.showOptionDialog(cmp, AppStrings.translate("error.occurred").replace("%error%", msg), AppStrings.translate("error"), JOptionPane.YES_NO_OPTION, JOptionPane.ERROR_MESSAGE, null, options, "");
|
||||
if (result == AbortRetryIgnoreHandler.IGNORE_ALL) {
|
||||
ignoreAll = true;
|
||||
result = AbortRetryIgnoreHandler.IGNORE;
|
||||
|
||||
@@ -3339,7 +3339,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
} catch (Exception ex) {
|
||||
logger.log(Level.SEVERE, "Error during renaming identifiers", ex);
|
||||
Main.stopWork();
|
||||
ViewMessages.showMessageDialog(MainPanel.this, translate("error.occured").replace("%error%", ex.getClass().getSimpleName()));
|
||||
ViewMessages.showMessageDialog(MainPanel.this, translate("error.occurred").replace("%error%", ex.getClass().getSimpleName()));
|
||||
}
|
||||
});
|
||||
}
|
||||
@@ -4582,7 +4582,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
|
||||
} catch (Exception ex) {
|
||||
logger.log(Level.SEVERE, "Error during renaming identifiers", ex);
|
||||
Main.stopWork();
|
||||
ViewMessages.showMessageDialog(MainPanel.this, translate("error.occured").replace("%error%", ex.getClass().getSimpleName()));
|
||||
ViewMessages.showMessageDialog(MainPanel.this, translate("error.occurred").replace("%error%", ex.getClass().getSimpleName()));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -255,7 +255,7 @@ FileChooser.fileSizeKiloBytes = {0} KB
|
||||
FileChooser.fileSizeMegaBytes = {0} MB
|
||||
FileChooser.fileSizeGigaBytes = {0} GB
|
||||
FileChooser.folderNameLabelText = Folder name:
|
||||
error.occured = Error occurred: %error%
|
||||
error.occurred = Error occurred: %error%
|
||||
button.abort = Abort
|
||||
button.retry = Retry
|
||||
button.ignore = Ignore
|
||||
|
||||
Reference in New Issue
Block a user