mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
- Added new localization keys for usage statistics, collection analysis, storage efficiency, and insights in English and Chinese. - Updated modal templates to utilize localization for delete, exclude, and bulk delete confirmations. - Improved download modal with localized labels and placeholders. - Enhanced example access modal with localized titles and descriptions. - Updated help modal to include localized content for update vlogs and documentation sections. - Refactored move modal to use localization for labels and buttons. - Implemented localization in relink Civitai modal for warnings and help text. - Updated update modal to reflect localized text for actions and progress messages. - Enhanced statistics template with localized titles for charts and lists.
64 lines
2.9 KiB
HTML
64 lines
2.9 KiB
HTML
<!-- Update Modal -->
|
|
<div id="updateModal" class="modal">
|
|
<div class="modal-content update-modal">
|
|
<button class="close" onclick="modalManager.closeModal('updateModal')">×</button>
|
|
<div class="update-header">
|
|
<i class="fas fa-bell update-icon"></i>
|
|
<h2>{{ t('update.title') }}</h2>
|
|
</div>
|
|
<div class="update-content">
|
|
<div class="update-info">
|
|
<div class="version-info">
|
|
<div class="current-version">
|
|
<span class="label">{{ t('update.currentVersion') }}:</span>
|
|
<span class="version-number">v0.0.0</span>
|
|
</div>
|
|
<div class="git-info" style="display:none;">{{ t('update.commit') }}: unknown</div>
|
|
<div class="new-version">
|
|
<span class="label">{{ t('update.newVersion') }}:</span>
|
|
<span class="version-number">v0.0.0</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="update-actions">
|
|
<a href="https://github.com/willmiao/ComfyUI-Lora-Manager" target="_blank" class="update-link">
|
|
<i class="fas fa-external-link-alt"></i> {{ t('update.viewOnGitHub') }}
|
|
</a>
|
|
<button id="updateBtn" class="primary-btn disabled">
|
|
<i class="fas fa-download"></i>
|
|
<span id="updateBtnText">{{ t('update.updateNow') }}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Update Progress Section -->
|
|
<div class="update-progress" id="updateProgress" style="display: none;">
|
|
<div class="progress-info">
|
|
<div class="progress-text" id="updateProgressText">{{ t('update.preparingUpdate') }}</div>
|
|
<div class="update-progress-bar">
|
|
<div class="progress-fill" id="updateProgressFill"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="changelog-section">
|
|
<h3>{{ t('update.changelog') }}</h3>
|
|
<div class="changelog-content">
|
|
<!-- Dynamic changelog content will be inserted here -->
|
|
<div class="changelog-item">
|
|
<h4>{{ t('update.checkingUpdates') }}</h4>
|
|
<p>{{ t('update.checkingMessage') }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="update-preferences">
|
|
<label class="toggle-switch">
|
|
<input type="checkbox" id="updateNotifications" checked>
|
|
<span class="toggle-slider"></span>
|
|
<span class="toggle-label">{{ t('update.showNotifications') }}</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |