@@ -15,6 +15,7 @@ public class Messages {
1515 public static final String EDITOR_BAR_ASSET_OPEN_ASSET ;
1616 public static final String EDITOR_BAR_ASSET_OPEN_ASSET_DIRECTORY_CHOOSER ;
1717
18+ public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_NEW_FILE ;
1819 public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_OPEN_FILE ;
1920 public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_OPEN_WITH_FILE ;
2021 public static final String ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_COPY_FILE ;
@@ -58,6 +59,14 @@ public class Messages {
5859 public static final String POST_FILTER_EDITOR_NAME ;
5960 public static final String MATERIAL_EDITOR_NAME ;
6061
62+ public static final String FILE_CREATOR_BUTTON_OK ;
63+ public static final String FILE_CREATOR_BUTTON_CANCEL ;
64+ public static final String FILE_CREATOR_FILE_NAME_LABEL ;
65+
66+ public static final String MATERIAL_FILE_CREATOR_TITLE ;
67+ public static final String MATERIAL_FILE_CREATOR_MATERIAL_TYPE_LABEL ;
68+ public static final String MATERIAL_FILE_CREATOR_FILE_DESCRIPTION ;
69+
6170 static {
6271
6372 final ResourceBundle bundle = ResourceBundle .getBundle (BUNDLE_NAME , ResourceControl .getInstance ());
@@ -66,6 +75,7 @@ public class Messages {
6675 EDITOR_BAR_ASSET_OPEN_ASSET = bundle .getString ("EditorBarComponent.asset.openAsset" );
6776 EDITOR_BAR_ASSET_OPEN_ASSET_DIRECTORY_CHOOSER = bundle .getString ("EditorBarComponent.asset.openAsset.DirectoryChooser" );
6877
78+ ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_NEW_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuNewFile" );
6979 ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_OPEN_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuOpenFile" );
7080 ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_OPEN_WITH_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuOpenWithFile" );
7181 ASSET_COMPONENT_RESOURCE_TREE_CONTEXT_MENU_COPY_FILE = bundle .getString ("AssetComponentResourceTreeContextMenuCopyFile" );
@@ -108,5 +118,13 @@ public class Messages {
108118 TEXT_FILE_EDITOR_NAME = bundle .getString ("TextFileEditorName" );
109119 POST_FILTER_EDITOR_NAME = bundle .getString ("PostFilterEditorName" );
110120 MATERIAL_EDITOR_NAME = bundle .getString ("MaterialEditorName" );
121+
122+ FILE_CREATOR_BUTTON_OK = bundle .getString ("FileCreatorButtonOk" );
123+ FILE_CREATOR_BUTTON_CANCEL = bundle .getString ("FileCreatorButtonCancel" );
124+ FILE_CREATOR_FILE_NAME_LABEL = bundle .getString ("FileCreatorFileNameLabel" );
125+
126+ MATERIAL_FILE_CREATOR_TITLE = bundle .getString ("MaterialFileCreatorTitle" );
127+ MATERIAL_FILE_CREATOR_MATERIAL_TYPE_LABEL = bundle .getString ("MaterialFileCreatorMaterialTypeLabel" );
128+ MATERIAL_FILE_CREATOR_FILE_DESCRIPTION = bundle .getString ("MaterialFileCreatorFileDescription" );
111129 }
112130}
0 commit comments