Hiyve Components - v1.0.0
    Preparing search index...

    Customizable text labels for FileManager component. All labels support internationalization (i18n) by allowing custom strings.

    // Spanish localization
    const spanishLabels: Partial<FileManagerLabels> = {
    refresh: 'Actualizar',
    upload: 'Subir archivo',
    download: 'Descargar',
    delete: 'Eliminar',
    createFolder: 'Nueva carpeta',
    rename: 'Renombrar',
    share: 'Compartir',
    noFiles: 'No hay archivos',
    loading: 'Cargando...'
    };

    <FileManager labels={spanishLabels} />
    interface FileManagerLabels {
        allTypes: string;
        cardView: string;
        clearSearch: string;
        contextOpen: string;
        createFolder: string;
        delete: string;
        deleteFolder: string;
        deleteMultiple: string;
        download: string;
        downloading: string;
        downloadMultiple: string;
        errorLoading: string;
        filterByType: string;
        folderNotEmpty: string;
        headerModified: string;
        headerName: string;
        headerOwner: string;
        headerRoom: string;
        headerShared: string;
        headerType: string;
        home: string;
        loading: string;
        noFiles: string;
        refresh: string;
        rename: string;
        searchPlaceholder: string;
        share: string;
        shared: string;
        shareMultiple: string;
        showAllFiles: string;
        showRoomFilesOnly: string;
        sortBy: string;
        sortModified: string;
        sortName: string;
        sortOwner: string;
        sortRoom: string;
        sortType: string;
        tableView: string;
        unshared: string;
        upload: string;
        uploading: string;
    }
    Index

    Properties

    allTypes: string

    All file types option in filter

    cardView: string

    Card view toggle tooltip

    clearSearch: string

    Clear search button tooltip

    contextOpen: string

    Context menu "Open" action label

    createFolder: string

    Create folder button tooltip

    delete: string

    Delete button tooltip

    deleteFolder: string

    Delete folder button tooltip

    deleteMultiple: string

    Delete multiple files tooltip (use {count} placeholder)

    download: string

    Download button tooltip

    downloading: string

    Download in progress message

    downloadMultiple: string

    Download multiple files tooltip (use {count} placeholder)

    errorLoading: string

    Error loading files message

    filterByType: string

    Filter by type button tooltip

    folderNotEmpty: string

    Cannot delete non-empty folder message

    headerModified: string

    Table header: Modified date

    headerName: string

    Table header: File name

    headerOwner: string

    Table header: Owner

    headerRoom: string

    Table header: Room

    headerShared: string

    Table header: Shared with

    headerType: string

    Table header: Type

    home: string

    Breadcrumb home/root label

    loading: string

    Loading indicator text

    noFiles: string

    Empty folder message

    refresh: string

    Refresh button tooltip

    rename: string

    Rename button tooltip

    searchPlaceholder: string

    Search input placeholder

    share: string

    Share button tooltip

    shared: string

    Shared chip label (file is shared)

    shareMultiple: string

    Share multiple files tooltip (use {count} placeholder)

    showAllFiles: string

    Toggle all files scope tooltip

    showRoomFilesOnly: string

    Toggle room files scope tooltip

    sortBy: string

    Sort button label prefix

    sortModified: string

    Sort by modified label

    sortName: string

    Sort by name label

    sortOwner: string

    Sort by owner label

    sortRoom: string

    Sort by room label

    sortType: string

    Sort by type label

    tableView: string

    Table view toggle tooltip

    unshared: string

    Unshared chip label (file is not shared)

    upload: string

    Upload button tooltip

    uploading: string

    File upload in progress message