mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -03:00
- Created zh-CN.json and zh-TW.json for Simplified and Traditional Chinese translations respectively. - Added comprehensive test suite in test_i18n.py to validate JSON structure, server-side i18n functionality, and translation completeness across multiple languages.
25 lines
1021 B
HTML
25 lines
1021 B
HTML
<!-- Hover detection area -->
|
|
<div class="sidebar-hover-area" id="sidebarHoverArea"></div>
|
|
|
|
<!-- Folder Navigation Sidebar -->
|
|
<div class="folder-sidebar" id="folderSidebar">
|
|
<div class="sidebar-header" id="sidebarHeader">
|
|
<h3><i class="fas fa-home"></i> <span id="sidebarTitle">{{ t('sidebar.modelRoot') }}</span></h3>
|
|
<div class="sidebar-header-actions">
|
|
<button class="sidebar-action-btn" id="sidebarCollapseAll" title="{{ t('sidebar.collapseAll') }}">
|
|
<i class="fas fa-compress-alt"></i>
|
|
</button>
|
|
<button class="sidebar-action-btn" id="sidebarPinToggle" title="{{ t('sidebar.pinToggle') }}">
|
|
<i class="fas fa-thumbtack"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="sidebar-content">
|
|
<div class="sidebar-tree-container">
|
|
<div class="sidebar-tree" id="sidebarFolderTree">
|
|
<!-- Tree will be populated by JavaScript -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|