feat(back-end front-end): traslate alt and description images
All checks were successful
PR Checks / prettier-autofix (pull_request) Successful in 10s
PR Checks / security-sast (pull_request) Successful in 29s
PR Checks / test-backend (pull_request) Successful in 25s
PR Checks / test-frontend (pull_request) Successful in 1m4s

This commit is contained in:
2026-03-09 18:49:03 +01:00
parent 85598dee3b
commit e8ebef926e
18 changed files with 788 additions and 52 deletions

View File

@@ -222,6 +222,67 @@
gap: var(--space-1);
}
.language-toolbar {
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--space-2);
padding: var(--space-2);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
background: #fbfaf6;
}
.language-copy {
display: grid;
gap: 2px;
}
.language-copy span {
font-size: 0.76rem;
font-weight: 700;
color: var(--color-text);
}
.language-copy p {
margin: 0;
font-size: 0.76rem;
color: var(--color-text-muted);
}
.language-toggle {
display: inline-flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 0.35rem;
}
.language-toggle-btn {
min-width: 2.8rem;
padding: 0.4rem 0.6rem;
border: 1px solid var(--color-border);
border-radius: 999px;
background: #ffffff;
color: var(--color-text-muted);
font-size: 0.78rem;
font-weight: 700;
line-height: 1;
}
.language-toggle-btn.complete {
border-color: #c9d8c4;
}
.language-toggle-btn.incomplete {
border-color: #e8c8c2;
}
.language-toggle-btn.active {
background: #fff5b8;
border-color: var(--color-brand);
color: var(--color-text);
}
.sr-only {
position: absolute;
width: 1px;
@@ -503,6 +564,15 @@ button.ghost.danger:hover:not(:disabled) {
grid-template-columns: 1fr;
}
.language-toolbar {
flex-direction: column;
align-items: stretch;
}
.language-toggle {
justify-content: flex-start;
}
.file-picker {
flex-direction: column;
align-items: stretch;