mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 21:21:01 +00:00
setting for including the version number in the exported fonts for debugging (to generate exactly the same binary TTF files)
This commit is contained in:
@@ -154,6 +154,7 @@ public class ExportDialog extends AppDialog {
|
||||
|
||||
public ExportDialog(List<TreeItem> exportables) {
|
||||
setTitle(translate("dialog.title"));
|
||||
setResizable(false);
|
||||
addWindowListener(new WindowAdapter() {
|
||||
@Override
|
||||
public void windowClosing(WindowEvent e) {
|
||||
@@ -167,7 +168,7 @@ public class ExportDialog extends AppDialog {
|
||||
combos = new JComboBox[optionNames.length];
|
||||
int labWidth = 0;
|
||||
for (int i = 0; i < optionNames.length; i++) {
|
||||
JLabel label = new JLabel(optionNames[i]);
|
||||
JLabel label = new JLabel(translate(optionNames[i]));
|
||||
if (label.getPreferredSize().width > labWidth) {
|
||||
labWidth = label.getPreferredSize().width;
|
||||
}
|
||||
|
||||
@@ -335,3 +335,6 @@ config.description.allowOnlyOneInstance = FFDec can be then run only once, all f
|
||||
|
||||
config.name.scriptExportSingleFile = Export scripts to single file
|
||||
config.description.scriptExportSingleFile = Exporting texts to one file instead of multiple
|
||||
|
||||
config.name.setFFDecVersionInExportedFont = Set FFDec version number in exported font
|
||||
config.description.setFFDecVersionInExportedFont = When this setting is disabled, FFDec won't add the current FFDec version number to the exported font.
|
||||
|
||||
@@ -332,3 +332,6 @@ config.description.allowOnlyOneInstance = FFDec csak egy p\u00e9ld\u00e1nyban fu
|
||||
|
||||
config.name.scriptExportSingleFile = Szkriptek export\u00e1l\u00e1sa egy f\u00e1jlba
|
||||
config.description.scriptExportSingleFile = Szkriptek export\u00e1l\u00e1sa egyetlen f\u00e1jlba t\u00f6bb f\u00e1jl helyett
|
||||
|
||||
config.name.setFFDecVersionInExportedFont = FFDec verzi\u00f3sz\u00e1m be\u00e1ll\u00edt\u00e1sa az export\u00e1lt bet\u0171t\u00edpusban
|
||||
config.description.setFFDecVersionInExportedFont = Ha ez a be\u00e1ll\u00edt\u00e1s ki van kapcsolva, az FFDec nem fogja be\u00edrni az aktu\u00e1lis FFDec verzi\u00f3sz\u00e1m\u00e1t az export\u00e1lt bet\u0171t\u00edpus f\u00e1jlba.
|
||||
|
||||
Reference in New Issue
Block a user