messages.toolbar.createFolderString
Defines the text for the create folder button in the toolbar. This message appears as a tooltip and button label for the create folder action in the FileManager toolbar. It provides localization support for different languages and allows customization of the user interface text.
Example
<div id="fileManager"></div>
<script>
    var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
    $("#fileManager").kendoFileManager({
        messages: {
            toolbar: {
                createFolder: "Create New Folder"
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>In this article