Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add NL translations #147

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .vscode/beabee.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
"name": "packages/client",
"path": "../packages/client"
},
{
"name": "packages/locale",
"path": "../packages/locale"
},
{
"name": "packages/prettier-config",
"path": "../packages/prettier-config"
Expand Down
3 changes: 1 addition & 2 deletions apps/backend/src/api/dto/ContentDto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
ContentId,
ContentJoinSetupNewsletterGroupData
} from "@beabee/beabee-common";
import { Locale } from "@beabee/locale";
import { Type } from "class-transformer";
import {
IsBoolean,
Expand All @@ -28,8 +29,6 @@ import {
import { LinkDto } from "@api/dto/LinkDto";
import { GetContentTelegramDto } from "@api/dto/ContentTelegramDto";

import { Locale } from "@beabee/core/locale";

export class GetContentContactsDto implements ContentContactsData {
@IsString({ each: true })
tags!: string[];
Expand Down
2 changes: 2 additions & 0 deletions apps/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ COPY packages/common/package.json /opt/packages/common/package.json
COPY packages/core/package.json /opt/packages/core/package.json
COPY packages/docker/package.json /opt/packages/docker/package.json
COPY packages/client/package.json /opt/packages/client/package.json
COPY packages/locale/package.json /opt/packages/locale/package.json
COPY packages/test-utils/package.json /opt/packages/test-utils/package.json

# Copy dependencies info from apps
Expand All @@ -39,6 +40,7 @@ RUN yarn workspaces focus
# Copy frontend dependencies
COPY packages/common /opt/packages/common
COPY packages/client /opt/packages/client
COPY packages/locale /opt/packages/locale

# Copy and build frontend and dependencies
COPY apps/frontend /opt/apps/frontend
Expand Down
Loading
Loading