Edit buttons labels for script editing now "Edit ActionScript" and "Edit P-code"

This commit is contained in:
Jindra Petřík
2016-08-28 12:25:20 +02:00
parent fb6adea8cd
commit b06f295165
4 changed files with 7 additions and 4 deletions

View File

@@ -111,13 +111,13 @@ public class ActionPanel extends JPanel implements SearchListener<ActionSearchRe
public JButton saveButton = new JButton(AppStrings.translate("button.save"), View.getIcon("save16"));
public JButton editButton = new JButton(AppStrings.translate("button.edit"), View.getIcon("edit16"));
public JButton editButton = new JButton(AppStrings.translate("button.edit.script.disassembled"), View.getIcon("edit16"));
public JButton cancelButton = new JButton(AppStrings.translate("button.cancel"), View.getIcon("cancel16"));
public JLabel experimentalLabel = new JLabel(AppStrings.translate("action.edit.experimental"));
public JButton editDecompiledButton = new JButton(AppStrings.translate("button.edit"), View.getIcon("edit16"));
public JButton editDecompiledButton = new JButton(AppStrings.translate("button.edit.script.decompiled"), View.getIcon("edit16"));
public JButton saveDecompiledButton = new JButton(AppStrings.translate("button.save"), View.getIcon("save16"));