All checks were successful
CD / Build and push images (push) Successful in 3m43s
CI / Lint, typecheck, test (push) Successful in 2m56s
CI / Auth e2e pack (push) Successful in 3m53s
CI / Build container images (push) Has been skipped
CD / Deploy to Test (push) Successful in 10s
CD / Smoke tests against Test (push) Successful in 1m20s
CD / Promote to Int (push) Successful in 11s
An "Import document" action in the pond sidebar: pick a .docx/.odt/.md file
(or several), upload with per-file progress, and open the new page. A
.docx/.odt polls the conversion job (queued → converting → done); a .md
imports directly and comes back already succeeded. Failures stay listed with
the localized error and a retry; concurrent imports all complete and appear.
- web apps/web/src/import/: useImport hook (upload via apiUploadFile → poll
GET /jobs/:id → resolve the page slug → navigate; first success of a batch
navigates, every success refreshes the sidebar) and ImportControl (hidden
file input, accept from shared IMPORT_EXTENSIONS, per-file status list).
Wired into Sidebar next to "new page"; `import` i18n namespace (de+en).
- api: ImportService accepts .md/.markdown and imports in-process (no job),
returning a succeeded ConversionJobView with the created resultPageId
("Markdown imports directly"); the media+parse+create tail is now shared
between the job path and the sync path (createPageFromMarkdown), and a
conversion error on the sync path maps to an HTTP status. shared
IMPORT_EXTENSIONS gains md/markdown.
- e2e apps/web/e2e/import.spec.ts + CI step: .docx corpus fixture opens the
converted page (self-skips without a reachable pandoc sidecar — CI's e2e
stack has none, same as #63; verified locally + on stage), .md opens
directly, an unsupported .txt shows the localized error with no page
created, and two concurrent .md imports both complete.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01EwZ4jR4KFAPvpjWevfUGX1
89 lines
3.4 KiB
TypeScript
89 lines
3.4 KiB
TypeScript
import deAccess from '@dorfteich/shared/i18n/de/access.json';
|
|
import deAuth from '@dorfteich/shared/i18n/de/auth.json';
|
|
import deCommon from '@dorfteich/shared/i18n/de/common.json';
|
|
import deEditor from '@dorfteich/shared/i18n/de/editor.json';
|
|
import deErrors from '@dorfteich/shared/i18n/de/errors.json';
|
|
import deFiles from '@dorfteich/shared/i18n/de/files.json';
|
|
import deImport from '@dorfteich/shared/i18n/de/import.json';
|
|
import deLabels from '@dorfteich/shared/i18n/de/labels.json';
|
|
import deLinks from '@dorfteich/shared/i18n/de/links.json';
|
|
import deMembers from '@dorfteich/shared/i18n/de/members.json';
|
|
import dePublic from '@dorfteich/shared/i18n/de/public.json';
|
|
import deQuotas from '@dorfteich/shared/i18n/de/quotas.json';
|
|
import deSearch from '@dorfteich/shared/i18n/de/search.json';
|
|
import deUsers from '@dorfteich/shared/i18n/de/users.json';
|
|
import deSettings from '@dorfteich/shared/i18n/de/settings.json';
|
|
import enAccess from '@dorfteich/shared/i18n/en/access.json';
|
|
import enAuth from '@dorfteich/shared/i18n/en/auth.json';
|
|
import enCommon from '@dorfteich/shared/i18n/en/common.json';
|
|
import enEditor from '@dorfteich/shared/i18n/en/editor.json';
|
|
import enErrors from '@dorfteich/shared/i18n/en/errors.json';
|
|
import enFiles from '@dorfteich/shared/i18n/en/files.json';
|
|
import enImport from '@dorfteich/shared/i18n/en/import.json';
|
|
import enLabels from '@dorfteich/shared/i18n/en/labels.json';
|
|
import enLinks from '@dorfteich/shared/i18n/en/links.json';
|
|
import enMembers from '@dorfteich/shared/i18n/en/members.json';
|
|
import enPublic from '@dorfteich/shared/i18n/en/public.json';
|
|
import enQuotas from '@dorfteich/shared/i18n/en/quotas.json';
|
|
import enSearch from '@dorfteich/shared/i18n/en/search.json';
|
|
import enUsers from '@dorfteich/shared/i18n/en/users.json';
|
|
import enSettings from '@dorfteich/shared/i18n/en/settings.json';
|
|
import i18n from 'i18next';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
import { initReactI18next } from 'react-i18next';
|
|
|
|
/**
|
|
* Translation resources are bundled (no async loading): the whole catalog
|
|
* is small, and the offline-capable editor (ADR 0003) must not depend on
|
|
* fetching language files. Detection: ?lng=… wins, then the browser
|
|
* language; the user-profile setting (issue #17) will be layered on top.
|
|
*/
|
|
void i18n
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
resources: {
|
|
en: {
|
|
common: enCommon,
|
|
errors: enErrors,
|
|
access: enAccess,
|
|
auth: enAuth,
|
|
settings: enSettings,
|
|
editor: enEditor,
|
|
files: enFiles,
|
|
import: enImport,
|
|
labels: enLabels,
|
|
links: enLinks,
|
|
members: enMembers,
|
|
public: enPublic,
|
|
quotas: enQuotas,
|
|
search: enSearch,
|
|
users: enUsers,
|
|
},
|
|
de: {
|
|
common: deCommon,
|
|
errors: deErrors,
|
|
access: deAccess,
|
|
auth: deAuth,
|
|
settings: deSettings,
|
|
editor: deEditor,
|
|
files: deFiles,
|
|
import: deImport,
|
|
labels: deLabels,
|
|
links: deLinks,
|
|
members: deMembers,
|
|
public: dePublic,
|
|
quotas: deQuotas,
|
|
search: deSearch,
|
|
users: deUsers,
|
|
},
|
|
},
|
|
defaultNS: 'common',
|
|
fallbackLng: 'en',
|
|
supportedLngs: ['de', 'en'],
|
|
interpolation: { escapeValue: false }, // React already escapes.
|
|
detection: { order: ['querystring', 'navigator'], lookupQuerystring: 'lng', caches: [] },
|
|
});
|
|
|
|
export default i18n;
|