fix: batch URL download i18n and CSS polish (#936)

- Add common.actions.remove/change translation keys across all locales
- Remove hardcoded #e74c3c error colors, use --lora-error CSS variable
This commit is contained in:
Will Miao
2026-06-08 21:28:24 +08:00
parent c0e2578640
commit 23c6863a3a
11 changed files with 33 additions and 13 deletions

View File

@@ -16,7 +16,9 @@
"help": "Hilfe", "help": "Hilfe",
"add": "Hinzufügen", "add": "Hinzufügen",
"close": "Schließen", "close": "Schließen",
"menu": "Menü" "menu": "Menü",
"remove": "Entfernen",
"change": "Ändern"
}, },
"status": { "status": {
"loading": "Wird geladen...", "loading": "Wird geladen...",

View File

@@ -16,7 +16,9 @@
"help": "Help", "help": "Help",
"add": "Add", "add": "Add",
"close": "Close", "close": "Close",
"menu": "Menu" "menu": "Menu",
"remove": "Remove",
"change": "Change"
}, },
"status": { "status": {
"loading": "Loading...", "loading": "Loading...",

View File

@@ -16,7 +16,9 @@
"help": "Ayuda", "help": "Ayuda",
"add": "Añadir", "add": "Añadir",
"close": "Cerrar", "close": "Cerrar",
"menu": "Menú" "menu": "Menú",
"remove": "Eliminar",
"change": "Cambiar"
}, },
"status": { "status": {
"loading": "Cargando...", "loading": "Cargando...",

View File

@@ -16,7 +16,9 @@
"help": "Aide", "help": "Aide",
"add": "Ajouter", "add": "Ajouter",
"close": "Fermer", "close": "Fermer",
"menu": "Menu" "menu": "Menu",
"remove": "Supprimer",
"change": "Modifier"
}, },
"status": { "status": {
"loading": "Chargement...", "loading": "Chargement...",

View File

@@ -16,7 +16,9 @@
"help": "עזרה", "help": "עזרה",
"add": "הוספה", "add": "הוספה",
"close": "סגור", "close": "סגור",
"menu": "תפריט" "menu": "תפריט",
"remove": "הסר",
"change": "שנה"
}, },
"status": { "status": {
"loading": "טוען...", "loading": "טוען...",

View File

@@ -16,7 +16,9 @@
"help": "ヘルプ", "help": "ヘルプ",
"add": "追加", "add": "追加",
"close": "閉じる", "close": "閉じる",
"menu": "メニュー" "menu": "メニュー",
"remove": "削除",
"change": "変更"
}, },
"status": { "status": {
"loading": "読み込み中...", "loading": "読み込み中...",

View File

@@ -16,7 +16,9 @@
"help": "도움말", "help": "도움말",
"add": "추가", "add": "추가",
"close": "닫기", "close": "닫기",
"menu": "메뉴" "menu": "메뉴",
"remove": "제거",
"change": "변경"
}, },
"status": { "status": {
"loading": "로딩 중...", "loading": "로딩 중...",

View File

@@ -16,7 +16,9 @@
"help": "Справка", "help": "Справка",
"add": "Добавить", "add": "Добавить",
"close": "Закрыть", "close": "Закрыть",
"menu": "Меню" "menu": "Меню",
"remove": "Удалить",
"change": "Изменить"
}, },
"status": { "status": {
"loading": "Загрузка...", "loading": "Загрузка...",

View File

@@ -16,7 +16,9 @@
"help": "帮助", "help": "帮助",
"add": "添加", "add": "添加",
"close": "关闭", "close": "关闭",
"menu": "菜单" "menu": "菜单",
"remove": "移除",
"change": "更换"
}, },
"status": { "status": {
"loading": "加载中...", "loading": "加载中...",

View File

@@ -16,7 +16,9 @@
"help": "說明", "help": "說明",
"add": "新增", "add": "新增",
"close": "關閉", "close": "關閉",
"menu": "選單" "menu": "選單",
"remove": "移除",
"change": "更換"
}, },
"status": { "status": {
"loading": "載入中...", "loading": "載入中...",

View File

@@ -739,7 +739,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
color: #e74c3c; color: var(--lora-error);
font-size: 1.2em; font-size: 1.2em;
} }
@@ -766,7 +766,7 @@
} }
.batch-preview-error-text { .batch-preview-error-text {
color: #e74c3c; color: var(--lora-error);
opacity: 1; opacity: 1;
} }
@@ -798,7 +798,7 @@
.batch-preview-remove:hover { .batch-preview-remove:hover {
opacity: 1; opacity: 1;
color: #e74c3c; color: var(--lora-error);
} }
.batch-preview-error { .batch-preview-error {