mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-09-20 18:51:26 -03:00
feat(ui): improve discoverability of hidden interactions
- Expand onboarding tour from 8 to 11 steps: marquee drag-select, drag card to sidebar folder, and the three context menus (card / bulk / global); enrich bulk-mode step with range-select and exit tips - Add Replay Tutorial button to help modal Getting Started tab - Add Shortcuts cheat-sheet tab to help modal, opened directly via the '?' key when not typing - Fix trigger-word tooltip to mention double-click to edit - Keep checkpoint/embedding send tooltips truthful (no replace mode) Sync new i18n keys to all locales (placeholders pending translation)
This commit is contained in:
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "Kontextmenü",
|
||||
"content": "<strong>Rechtsklick</strong> auf eine Modellkarte öffnet ein Kontextmenü mit weiteren Aktionen."
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "Tippen zum Hinzufügen oder klicken Sie auf Vorschläge unten",
|
||||
"editWord": "Trigger Word bearbeiten",
|
||||
"editPlaceholder": "Trigger Word bearbeiten",
|
||||
"copyWord": "Trigger Word kopieren",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "Trigger Word löschen",
|
||||
"suggestions": {
|
||||
"noSuggestions": "Keine Vorschläge verfügbar",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "Erste Schritte",
|
||||
"updateVlogs": "Update-Vlogs",
|
||||
"documentation": "Dokumentation"
|
||||
"documentation": "Dokumentation",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Erste Schritte mit LoRA Manager"
|
||||
"title": "Erste Schritte mit LoRA Manager",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "Neueste Updates",
|
||||
|
||||
+55
-5
@@ -96,7 +96,7 @@
|
||||
},
|
||||
"bulk": {
|
||||
"title": "Bulk Operations",
|
||||
"content": "Enter bulk mode by clicking this button or pressing <span class=\"onboarding-shortcut\">B</span>. Select multiple models and perform batch operations. Use <span class=\"onboarding-shortcut\">Ctrl+A</span> to select all visible models."
|
||||
"content": "Enter bulk mode by clicking this button or pressing <span class=\"onboarding-shortcut\">B</span> to select multiple models and perform batch operations.<br>• <span class=\"onboarding-shortcut\">Ctrl/Cmd+A</span> select all visible models, <span class=\"onboarding-shortcut\">Shift+Click</span> select a range.<br>• <span class=\"onboarding-shortcut\">Esc</span> or clicking an empty area exits bulk mode."
|
||||
},
|
||||
"searchOptions": {
|
||||
"title": "Search Options",
|
||||
@@ -116,7 +116,19 @@
|
||||
},
|
||||
"contextMenu": {
|
||||
"title": "Context Menu",
|
||||
"content": "<strong>Right-click</strong> any model card for a context menu with additional actions."
|
||||
"content": "<strong>Right-click</strong> any model card for a context menu with card actions like moving, deleting, or editing metadata."
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "Drag to Select",
|
||||
"content": "Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "Organize by Dragging",
|
||||
"content": "Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "More Context Menus",
|
||||
"content": "In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "Type to add or click suggestions below",
|
||||
"editWord": "Edit trigger word",
|
||||
"editPlaceholder": "Edit trigger word",
|
||||
"copyWord": "Copy trigger word",
|
||||
"copyOrEditWord": "Click to copy, double-click to edit",
|
||||
"deleteWord": "Delete trigger word",
|
||||
"suggestions": {
|
||||
"noSuggestions": "No suggestions available",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "Getting Started",
|
||||
"updateVlogs": "Update Vlogs",
|
||||
"documentation": "Documentation"
|
||||
"documentation": "Documentation",
|
||||
"shortcuts": "Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Getting Started with LoRA Manager"
|
||||
"title": "Getting Started with LoRA Manager",
|
||||
"replayTutorial": "Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "General",
|
||||
"selection": "Selection & Bulk Mode",
|
||||
"navigation": "Navigation",
|
||||
"modelModal": "Model / Recipe Modal",
|
||||
"mediaViewer": "Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "Click",
|
||||
"drag": "Drag",
|
||||
"rightClick": "Right-click",
|
||||
"letter": "Letter",
|
||||
"swipe": "Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "Focus search",
|
||||
"closeModal": "Close modal / panel",
|
||||
"openShortcuts": "Open this shortcuts panel",
|
||||
"toggleBulkMode": "Toggle bulk mode",
|
||||
"selectAll": "Select all visible models",
|
||||
"rangeSelect": "Range select",
|
||||
"marqueeSelect": "Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "Exit bulk mode",
|
||||
"bulkActions": "On selected card: bulk actions menu",
|
||||
"globalActions": "On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "Scroll pages",
|
||||
"jumpAlphabet": "Jump alphabet bar",
|
||||
"prevNext": "Previous / next model",
|
||||
"deleteEntry": "Delete",
|
||||
"cycleMedia": "Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "Cycle media on touch devices",
|
||||
"closeViewer": "Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "Latest Updates",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "Menú contextual",
|
||||
"content": "<strong>Clic derecho</strong> en cualquier tarjeta de modelo para ver un menú contextual con acciones adicionales."
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "Escribe para añadir o haz clic en sugerencias de abajo",
|
||||
"editWord": "Editar palabra de activación",
|
||||
"editPlaceholder": "Editar palabra de activación",
|
||||
"copyWord": "Copiar palabra de activación",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "Eliminar palabra de activación",
|
||||
"suggestions": {
|
||||
"noSuggestions": "No hay sugerencias disponibles",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "Comenzando",
|
||||
"updateVlogs": "Vlogs de actualización",
|
||||
"documentation": "Documentación"
|
||||
"documentation": "Documentación",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Comenzando con el gestor de LoRA"
|
||||
"title": "Comenzando con el gestor de LoRA",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "Últimas actualizaciones",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "Menu contextuel",
|
||||
"content": "<strong>Clic droit</strong> sur une carte de modèle pour accéder à un menu contextuel avec des actions supplémentaires."
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "Tapez pour ajouter ou cliquez sur les suggestions ci-dessous",
|
||||
"editWord": "Modifier le mot-clé",
|
||||
"editPlaceholder": "Modifier le mot-clé",
|
||||
"copyWord": "Copier le mot-clé",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "Supprimer le mot-clé",
|
||||
"suggestions": {
|
||||
"noSuggestions": "Aucune suggestion disponible",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "Commencer",
|
||||
"updateVlogs": "Vlogs de mise à jour",
|
||||
"documentation": "Documentation"
|
||||
"documentation": "Documentation",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Premiers pas avec le Gestionnaire LoRA"
|
||||
"title": "Premiers pas avec le Gestionnaire LoRA",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "Dernières mises à jour",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "תפריט הקשר",
|
||||
"content": "<strong>לחיצה ימנית</strong> על כל כרטיס מודל לתפריט הקשר עם פעולות נוספות."
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "הקלד להוספה או לחץ על הצעות למטה",
|
||||
"editWord": "עריכת מילת טריגר",
|
||||
"editPlaceholder": "עריכת מילת טריגר",
|
||||
"copyWord": "העתק מילת טריגר",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "מחק מילת טריגר",
|
||||
"suggestions": {
|
||||
"noSuggestions": "אין הצעות זמינות",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "תחילת עבודה",
|
||||
"updateVlogs": "בלוגי וידאו של עדכונים",
|
||||
"documentation": "תיעוד"
|
||||
"documentation": "תיעוד",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "תחילת עבודה עם מנהל LoRA"
|
||||
"title": "תחילת עבודה עם מנהל LoRA",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "עדכונים אחרונים",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "コンテキストメニュー",
|
||||
"content": "<strong>モデルカードを右クリック</strong>すると追加の操作ができるコンテキストメニューが表示されます。"
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "入力して追加するか、下の提案をクリック",
|
||||
"editWord": "トリガーワードを編集",
|
||||
"editPlaceholder": "トリガーワードを編集",
|
||||
"copyWord": "トリガーワードをコピー",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "トリガーワードを削除",
|
||||
"suggestions": {
|
||||
"noSuggestions": "提案はありません",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "はじめに",
|
||||
"updateVlogs": "更新Vlog",
|
||||
"documentation": "ドキュメント"
|
||||
"documentation": "ドキュメント",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "LoRA Managerを始める"
|
||||
"title": "LoRA Managerを始める",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "最新の更新",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "컨텍스트 메뉴",
|
||||
"content": "<strong>오른쪽 클릭</strong>으로 모델 카드의 추가 작업 메뉴를 사용할 수 있습니다."
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "입력하거나 아래 제안을 클릭하세요",
|
||||
"editWord": "트리거 단어 편집",
|
||||
"editPlaceholder": "트리거 단어 편집",
|
||||
"copyWord": "트리거 단어 복사",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "트리거 단어 삭제",
|
||||
"suggestions": {
|
||||
"noSuggestions": "사용 가능한 제안이 없습니다",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "시작하기",
|
||||
"updateVlogs": "업데이트 영상",
|
||||
"documentation": "문서"
|
||||
"documentation": "문서",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "LoRA Manager 시작하기"
|
||||
"title": "LoRA Manager 시작하기",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "최신 업데이트",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "Контекстное меню",
|
||||
"content": "<strong>Правый клик</strong> по карточке модели откроет контекстное меню с дополнительными действиями."
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "Введите для добавления или нажмите на предложения ниже",
|
||||
"editWord": "Редактировать триггерное слово",
|
||||
"editPlaceholder": "Редактировать триггерное слово",
|
||||
"copyWord": "Копировать триггерное слово",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "Удалить триггерное слово",
|
||||
"suggestions": {
|
||||
"noSuggestions": "Предложения недоступны",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "Начало работы",
|
||||
"updateVlogs": "Видео обновлений",
|
||||
"documentation": "Документация"
|
||||
"documentation": "Документация",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Начало работы с LoRA Manager"
|
||||
"title": "Начало работы с LoRA Manager",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "Последние обновления",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "右键菜单",
|
||||
"content": "<strong>右键点击</strong>任意模型卡片可打开更多操作菜单。"
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "输入或点击下方建议添加",
|
||||
"editWord": "编辑触发词",
|
||||
"editPlaceholder": "编辑触发词",
|
||||
"copyWord": "复制触发词",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "删除触发词",
|
||||
"suggestions": {
|
||||
"noSuggestions": "暂无建议",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "新手入门",
|
||||
"updateVlogs": "更新日志",
|
||||
"documentation": "文档"
|
||||
"documentation": "文档",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "LoRA 管理器新手入门"
|
||||
"title": "LoRA 管理器新手入门",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "最新更新",
|
||||
|
||||
+53
-3
@@ -117,6 +117,18 @@
|
||||
"contextMenu": {
|
||||
"title": "右鍵選單",
|
||||
"content": "<strong>右鍵點擊</strong>任一模型卡片可開啟更多操作選單。"
|
||||
},
|
||||
"marqueeSelect": {
|
||||
"title": "[TODO: Translate] Drag to Select",
|
||||
"content": "[TODO: Translate] Hold the <strong>left mouse button</strong> on an empty area of the grid and drag to draw a marquee that selects multiple cards at once."
|
||||
},
|
||||
"dragToSidebar": {
|
||||
"title": "[TODO: Translate] Organize by Dragging",
|
||||
"content": "[TODO: Translate] Drag a model card onto a folder in the sidebar to move the file there. This also works with multiple selected cards in bulk mode."
|
||||
},
|
||||
"contextMenus": {
|
||||
"title": "[TODO: Translate] More Context Menus",
|
||||
"content": "[TODO: Translate] In bulk mode, <strong>right-click a selected card</strong> for bulk actions. <strong>Right-click an empty area</strong> of the page for global actions like update checks and managing excluded models."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1629,7 +1641,7 @@
|
||||
"addPlaceholder": "輸入或點擊下方建議",
|
||||
"editWord": "編輯觸發詞",
|
||||
"editPlaceholder": "編輯觸發詞",
|
||||
"copyWord": "複製觸發詞",
|
||||
"copyOrEditWord": "[TODO: Translate] Click to copy, double-click to edit",
|
||||
"deleteWord": "刪除觸發詞",
|
||||
"suggestions": {
|
||||
"noSuggestions": "無可用建議",
|
||||
@@ -1954,10 +1966,48 @@
|
||||
"tabs": {
|
||||
"gettingStarted": "快速開始",
|
||||
"updateVlogs": "更新影片",
|
||||
"documentation": "文件"
|
||||
"documentation": "文件",
|
||||
"shortcuts": "[TODO: Translate] Shortcuts"
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "LoRA 管理器快速開始"
|
||||
"title": "LoRA 管理器快速開始",
|
||||
"replayTutorial": "[TODO: Translate] Replay Tutorial"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "[TODO: Translate] Keyboard & Mouse Shortcuts",
|
||||
"groups": {
|
||||
"general": "[TODO: Translate] General",
|
||||
"selection": "[TODO: Translate] Selection & Bulk Mode",
|
||||
"navigation": "[TODO: Translate] Navigation",
|
||||
"modelModal": "[TODO: Translate] Model / Recipe Modal",
|
||||
"mediaViewer": "[TODO: Translate] Media Viewer / Showcase"
|
||||
},
|
||||
"keys": {
|
||||
"click": "[TODO: Translate] Click",
|
||||
"drag": "[TODO: Translate] Drag",
|
||||
"rightClick": "[TODO: Translate] Right-click",
|
||||
"letter": "[TODO: Translate] Letter",
|
||||
"swipe": "[TODO: Translate] Swipe"
|
||||
},
|
||||
"entries": {
|
||||
"focusSearch": "[TODO: Translate] Focus search",
|
||||
"closeModal": "[TODO: Translate] Close modal / panel",
|
||||
"openShortcuts": "[TODO: Translate] Open this shortcuts panel",
|
||||
"toggleBulkMode": "[TODO: Translate] Toggle bulk mode",
|
||||
"selectAll": "[TODO: Translate] Select all visible models",
|
||||
"rangeSelect": "[TODO: Translate] Range select",
|
||||
"marqueeSelect": "[TODO: Translate] Marquee-select cards (on empty grid area)",
|
||||
"exitBulkMode": "[TODO: Translate] Exit bulk mode",
|
||||
"bulkActions": "[TODO: Translate] On selected card: bulk actions menu",
|
||||
"globalActions": "[TODO: Translate] On empty page area: global actions menu (update check, manage excluded models)",
|
||||
"scrollPages": "[TODO: Translate] Scroll pages",
|
||||
"jumpAlphabet": "[TODO: Translate] Jump alphabet bar",
|
||||
"prevNext": "[TODO: Translate] Previous / next model",
|
||||
"deleteEntry": "[TODO: Translate] Delete",
|
||||
"cycleMedia": "[TODO: Translate] Cycle media ([ / ] in showcase gallery)",
|
||||
"swipeTouch": "[TODO: Translate] Cycle media on touch devices",
|
||||
"closeViewer": "[TODO: Translate] Close viewer"
|
||||
}
|
||||
},
|
||||
"updateVlogs": {
|
||||
"title": "最新更新",
|
||||
|
||||
Reference in New Issue
Block a user