openpencil/packages/docs/.vitepress/locales.ts
Danila Poyarkov f3973202eb
chore: refresh compatible dependencies (#545)
- Refresh compatible workspace dependencies and lockfiles.\n- Preserve package exports and documentation compatibility.\n- Update affected compatibility tests.
2026-08-18 17:44:40 +03:00

137 lines
3.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {
DE,
DE_PROG,
ES,
ES_PROG,
FR,
FR_PROG,
IT,
IT_PROG,
PL,
PL_PROG,
RU,
RU_PROG,
} from './labels.ts'
import { localeThemeConfig } from './locale-theme.ts'
export const docsLocales = {
root: {
label: 'English',
lang: 'en',
},
de: {
label: 'Deutsch',
lang: 'de',
description: 'Open-Source, KI-nativer Design-Editor. Figma-Alternative.',
themeConfig: localeThemeConfig(
'/de',
{
overview: 'Überblick',
userGuide: 'Benutzerhandbuch',
programmable: 'Automation',
sdk: 'SDK',
reference: 'Referenz',
development: 'Entwicklung',
openApp: 'App öffnen',
},
DE,
DE_PROG,
),
},
it: {
label: 'Italiano',
lang: 'it',
description: 'Editor di design open-source, IA-nativo. Alternativa a Figma.',
themeConfig: localeThemeConfig(
'/it',
{
overview: 'Panoramica',
userGuide: 'Guida utente',
programmable: 'Automation',
sdk: 'SDK',
reference: 'Riferimento',
development: 'Sviluppo',
openApp: 'Apri app',
},
IT,
IT_PROG,
),
},
fr: {
label: 'Français',
lang: 'fr',
description: 'Éditeur de design open-source, IA-natif. Alternative à Figma.',
themeConfig: localeThemeConfig(
'/fr',
{
overview: 'Vue densemble',
userGuide: 'Guide utilisateur',
programmable: 'Automation',
sdk: 'SDK',
reference: 'Référence',
development: 'Développement',
openApp: "Ouvrir l'app",
},
FR,
FR_PROG,
),
},
es: {
label: 'Español',
lang: 'es',
description: 'Editor de diseño open-source, IA-nativo. Alternativa a Figma.',
themeConfig: localeThemeConfig(
'/es',
{
overview: 'Resumen',
userGuide: 'Guía del usuario',
programmable: 'Automation',
sdk: 'SDK',
reference: 'Referencia',
development: 'Desarrollo',
openApp: 'Abrir app',
},
ES,
ES_PROG,
),
},
pl: {
label: 'Polski',
lang: 'pl',
description: "Open-source'owy edytor graficzny z natywnym AI. Alternatywa dla Figmy.",
themeConfig: localeThemeConfig(
'/pl',
{
overview: 'Przegląd',
userGuide: 'Podręcznik',
programmable: 'Automation',
sdk: 'SDK',
reference: 'Referencja',
development: 'Rozwój',
openApp: 'Otwórz app',
},
PL,
PL_PROG,
),
},
ru: {
label: 'Русский',
lang: 'ru',
description: 'Дизайн-редактор с открытым исходным кодом. Альтернатива Figma с встроенным ИИ.',
themeConfig: localeThemeConfig(
'/ru',
{
overview: 'Обзор',
userGuide: 'Руководство',
programmable: 'Automation',
sdk: 'SDK',
reference: 'Справочник',
development: 'Разработка',
openApp: 'Открыть приложение',
},
RU,
RU_PROG,
),
},
}