@@ -25,6 +25,8 @@ public class Messages {
2525 public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_PASTE_FILE ;
2626 public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_DELETE_FILE ;
2727 public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_CONVERT_FILE ;
28+ public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_OPEN_FILE_BY_EXTERNAL_EDITOR ;
29+ public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_RENAME_FILE ;
2830
2931 public static final String FILE_EDITOR_ACTION_SAVE ;
3032
@@ -106,6 +108,12 @@ public class Messages {
106108
107109 public static final String MATERIAL_MODEL_PROPERTY_CONTROL_NO_MATERIAL ;
108110
111+ public static final String RENAME_DIALOG_TITLE ;
112+ public static final String RENAME_DIALOG_NEW_NAME_LABEL ;
113+ public static final String RENAME_DIALOG_BUTTON_OK ;
114+ public static final String RENAME_DIALOG_BUTTON_CANCEL ;
115+ ;
116+
109117 static {
110118
111119 final ResourceBundle bundle = ResourceBundle .getBundle (BUNDLE_NAME , ResourceControl .getInstance ());
@@ -125,6 +133,8 @@ public class Messages {
125133 ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_PASTE_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuPasteFile" );
126134 ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_DELETE_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuDeleteFile" );
127135 ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_CONVERT_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuConvertFile" );
136+ ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_OPEN_FILE_BY_EXTERNAL_EDITOR = bundle .getString ("AssetComponentResourceTreeContextMenuOpenFileByExternalEditor" );
137+ ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_RENAME_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuRenameFile" );
128138
129139 FILE_EDITOR_ACTION_SAVE = bundle .getString ("FileEditorActionSave" );
130140
@@ -205,5 +215,10 @@ public class Messages {
205215 MODEL_PROPERTY_MATERIAL = bundle .getString ("ModelPropertyMaterial" );
206216
207217 MATERIAL_MODEL_PROPERTY_CONTROL_NO_MATERIAL = bundle .getString ("MaterialModelPropertyControlNoMaterial" );
218+
219+ RENAME_DIALOG_TITLE = bundle .getString ("RenameDialogTitle" );
220+ RENAME_DIALOG_NEW_NAME_LABEL = bundle .getString ("RenameDialogNewNameLabel" );
221+ RENAME_DIALOG_BUTTON_OK = bundle .getString ("RenameDialogButtonOk" );
222+ RENAME_DIALOG_BUTTON_CANCEL = bundle .getString ("RenameDialogButtonCancel" );
208223 }
209224}
0 commit comments