Compare commits

...

18 Commits

Author SHA1 Message Date
Henry
a0a2047305 feat: setup opentel 2026-03-23 22:12:31 +00:00
Henry
596f346181 fix: increase maximum length for boardSlug from 24 to 60 characters (#448) 2026-03-23 16:30:29 +00:00
Henry
7b59e2ac07 feat(cloud): log to docker container 2026-03-22 07:21:30 +00:00
Henry
2a9b1fd2b5 refactor: replace @axiomhq/pino with @axiomhq/js 2026-03-20 13:56:52 +00:00
Henry
a2d4314e14 fix: update Dockerfile to include pino transport packages 2026-03-20 13:26:27 +00:00
Henry
f94e4d6da2 fix: include pino transports in outputFileTracingIncludes 2026-03-20 12:04:46 +00:00
Henry
97f4defc0e fix: add pino to serverExternalPackages 2026-03-20 11:46:08 +00:00
Henry
dd29dc89fd fix: remove broken dep 2026-03-19 21:33:44 +00:00
Henry
486cdf8313 feat(cloud): setup log drain (#447) 2026-03-19 21:16:47 +00:00
Henry
67cf523ee8 fix: API key authentication and REST handler errors (#446) 2026-03-19 12:20:19 +00:00
hjball
0b45ceff7f chore: update translations 2026-03-16 14:32:37 +00:00
Henry
76b2c58461 fix: security improvements to checklist input (#444)
* feat: sanitize input for checklists

* feat: add basic editor

* feat: use plain text editor for checklist items

* feat: remove key from user response
2026-03-16 14:31:13 +00:00
Henry
b8d1fe230d fix: prevent empty string from throwing error 2026-03-13 23:08:46 +00:00
hjball
bd652ba6c9 chore: update translations 2026-03-13 22:59:04 +00:00
Henry
1fb56aafd0 feat: add logger package to improve observability (#437)
* feat: add logger package to improve observability

* chore: add LOG_LEVEL to docker compose and readme
2026-03-13 22:57:47 +00:00
hjball
91deaca6ec chore: compile translations 2026-03-13 22:45:15 +00:00
hjball
ab81db0f56 chore: update translations 2026-03-13 22:45:11 +00:00
Andy Clemenko
29080fa851 Fontsize PR for Issue #429 (#430)
* adding font size

* removing trash

* moving font menu

* chore: revert port change in compose

---------

Co-authored-by: Henry <henry_ball@hotmail.co.uk>
2026-03-13 22:43:50 +00:00
66 changed files with 3100 additions and 525 deletions

View File

@@ -51,6 +51,9 @@ TRELLO_APP_SECRET=
# If not provided, rate limiting will use in-memory storage
REDIS_URL= # e.g. redis://default:your_password@your_host:6379
# Logging (optional - debug, info, warn, error; defaults to debug in dev, info in prod)
LOG_LEVEL=
# OAuth providers (optional)
BETTER_AUTH_TRUSTED_ORIGINS=
# Optional: Restrict OIDC/Social sign-ins to specific email domains (comma-separated)

2
.gitignore vendored
View File

@@ -54,3 +54,5 @@ i18n.cache
# pgdata
/apps/web/pgdata
.claude

View File

@@ -185,9 +185,17 @@ Use `assertUserInWorkspace` helper for workspace checks.
- Use TRPCError with appropriate codes (UNAUTHORIZED, NOT_FOUND, etc.)
- Provide user-friendly error messages
- Log errors appropriately
- Log errors appropriately using the `@kan/logger` package
- Show popup notifications for user-facing errors
### Logging
- Import from `@kan/logger`: `import { createLogger } from "@kan/logger"`
- Create a module-scoped logger: `const logger = createLogger("module-name")`
- Log level is controlled by `LOG_LEVEL` env var (debug, info, warn, error)
- Defaults to `debug` in development, `info` in production
- Never use `console.log` — always use the logger
## Common Patterns
### Creating a Card
@@ -219,6 +227,16 @@ Use `assertUserInWorkspace` helper for workspace checks.
5. **Frontend**: Add UI components in `apps/web/src/`
6. **i18n**: Add translations for new strings
## Adding a New Environment Variable
Update all of the following:
1. `.env.example` — add the variable with an empty value and a comment explaining it
2. `turbo.json` — add to `globalEnv` (or `globalPassThroughEnv` for CI/platform vars)
3. `docker-compose.yml` — add to the `web` service `environment` section
4. `cloud/docker-compose.yml` — add to the `web` service `environment` section
5. `README.md` — add a row to the Environment Variables table
## Database Changes
- Always create migrations (never modify existing migrations)

View File

@@ -213,6 +213,7 @@ pnpm dev
| `NEXT_PUBLIC_DISABLE_SIGN_UP` | Disable sign up | For authentication | `false` |
| `NEXT_PUBLIC_WHITE_LABEL_HIDE_POWERED_BY` | Hide “Powered by kan.bn” on public boards (self-host) | For white labelling | `true` |
| `KAN_ADMIN_API_KEY` | Admin API key for stats and admin endpoints | For admin/monitoring | `your-secret-admin-key` |
| `LOG_LEVEL` | Log verbosity level (debug, info, warn, error) | No (defaults to debug in dev, info in prod) | `info` |
See `.env.example` for a complete list of supported environment variables.

View File

@@ -11,10 +11,10 @@ https://kan.bn/api/v1
## Authentication
Most endpoints require authentication using your API key. You can create one in the [settings page](https://kan.bn/settings) of your account. Include this key in the `x-api-key` header of each request.
Most endpoints require authentication using your API key. You can create one in the [settings page](https://kan.bn/settings) of your account. Include this key as a Bearer token in the `Authorization` header of each request.
```
'x-api-key': kan_123456789
'Authorization': 'Bearer kan_123456789'
```
## Response codes

View File

@@ -550,6 +550,9 @@ checksums:
VhMDMg/origin/2/0: 0627e0040ca4939c9a57349e98c51797
VhMDMg/origin/3/0: 0627e0040ca4939c9a57349e98c51797
VhMDMg/translation: a552fc5c4189ebc3e2e6018edda7d18f
fzGyWs/translation: 25dbbca7a83f6af119179e7a56c953d4
fzGyWs/message: 25dbbca7a83f6af119179e7a56c953d4
fzGyWs/origin/0/0: 627b72cd19a7154ae1c28cbd7ca0c730
yD3ZSw/message: 293d49fc3c75e9c425b64bd7126e6b46
yD3ZSw/origin/0/0: 627b72cd19a7154ae1c28cbd7ca0c730
yD3ZSw/translation: 293d49fc3c75e9c425b64bd7126e6b46
@@ -1167,6 +1170,9 @@ checksums:
l31EoQ/message: b4c05c9174637f4da2a41ead0d65bc01
l31EoQ/origin/0/0: 4980d8e27a628e7cd9a70b839d844083
l31EoQ/translation: b4c05c9174637f4da2a41ead0d65bc01
q3il6U/translation: 79a4fffd70bfbedb6174ea4c767f4ab9
q3il6U/message: 79a4fffd70bfbedb6174ea4c767f4ab9
q3il6U/origin/0/0: 627b72cd19a7154ae1c28cbd7ca0c730
"%2B3TYXa/message": 9fa1c942feb40d6350322b71561df789
"%2B3TYXa/origin/0/0": 4980d8e27a628e7cd9a70b839d844083
"%2B3TYXa/translation": 9fa1c942feb40d6350322b71561df789
@@ -1433,6 +1439,9 @@ checksums:
vXIe7J/message: 277fd1a41cc237a437cd1d5e4a80463b
vXIe7J/origin/0/0: 627b72cd19a7154ae1c28cbd7ca0c730
vXIe7J/translation: 277fd1a41cc237a437cd1d5e4a80463b
k7rCa%2F/translation: 890b7851af05f97ac53644e4154c13b4
k7rCa%2F/message: 890b7851af05f97ac53644e4154c13b4
k7rCa%2F/origin/0/0: 3de48fb04f7df9bdbe399911cdb3fe86
8Is1ih/message: 624592ba2ecf647a3fe60d493c1ee71a
8Is1ih/origin/0/0: ff4a160eca5f8da4f075fd1dd6061fa6
8Is1ih/origin/1/0: fadd5a5b6963ec5f261072f7e8d2140b
@@ -1514,6 +1523,9 @@ checksums:
jl3aEJ/placeholders/0/0: 06f23520ebabfffed4999b5bcf61c9cd
jl3aEJ/origin/0/0: 1d6b5f88cdad160a67842f6b65387448
jl3aEJ/translation: 4c38799ff25321ea25017bf4cd8e2e4f
agPptk/translation: 43983f2178fb28aacaef6c5f41282c4a
agPptk/message: 43983f2178fb28aacaef6c5f41282c4a
agPptk/origin/0/0: 3de48fb04f7df9bdbe399911cdb3fe86
W%2FElkg/message: 1f527cd6d1ed602930bcaa303f503b51
W%2FElkg/origin/0/0: eb63312c63f6c8d2a5b6520c89012123
W%2FElkg/translation: 1f527cd6d1ed602930bcaa303f503b51
@@ -1537,9 +1549,9 @@ checksums:
"%2FbZzdR/message": 40ea106c56d79634e058e087ad322025
"%2FbZzdR/origin/0/0": c0b59968b2b234167c488a05cc38710b
"%2FbZzdR/translation": 40ea106c56d79634e058e087ad322025
hty0d5/translation: b4b1c8396e445e8b7956c747da2cf601
hty0d5/message: b4b1c8396e445e8b7956c747da2cf601
hty0d5/origin/0/0: 04c86ea96f180745739d59e822da4026
hty0d5/translation: b4b1c8396e445e8b7956c747da2cf601
"%2B8Nek%2F/message": 818f1192e32bb855597f930d3e78806e
"%2B8Nek%2F/origin/0/0": 9737a9cef0646ff4bbd942b1924b9a2c
"%2B8Nek%2F/origin/1/0": 82a5cf8d69f098641eb357bf102cd504
@@ -2013,9 +2025,9 @@ checksums:
YEOVrT/message: 86b76024524fc585b2c3950126ef6f62
YEOVrT/origin/0/0: fadd5a5b6963ec5f261072f7e8d2140b
YEOVrT/translation: 86b76024524fc585b2c3950126ef6f62
"%2B5kO8P/translation": 77b65adf8ae2b69eaed51b6104ded65e
"%2B5kO8P/message": 77b65adf8ae2b69eaed51b6104ded65e
"%2B5kO8P/origin/0/0": 04c86ea96f180745739d59e822da4026
"%2B5kO8P/translation": 77b65adf8ae2b69eaed51b6104ded65e
tfDRzk/message: f7a2929f33bc420195e59ac5a8bcd454
tfDRzk/origin/0/0: a50c4fbde8da6e0a77c4e0aef0b44dea
tfDRzk/origin/1/0: b2059fa4b8b99cc10440da26475b234c
@@ -2139,6 +2151,9 @@ checksums:
zEcnBA/message: 513c3b4d9f0fda60fe079d42dcbd3882
zEcnBA/origin/0/0: c0b59968b2b234167c488a05cc38710b
zEcnBA/translation: 513c3b4d9f0fda60fe079d42dcbd3882
4Revpc/translation: 3adb3ae7891c5736776df840cff2360b
4Revpc/message: 3adb3ae7891c5736776df840cff2360b
4Revpc/origin/0/0: 3de48fb04f7df9bdbe399911cdb3fe86
"%2B%2BrVAm/message": 2227508afb0d38a027e323207e47d4a2
"%2B%2BrVAm/origin/0/0": eb63312c63f6c8d2a5b6520c89012123
"%2B%2BrVAm/translation": 2227508afb0d38a027e323207e47d4a2
@@ -2168,9 +2183,9 @@ checksums:
zzDlyQ/origin/0/0: d96af8a06c2e38a72238bcd16e426859
zzDlyQ/origin/1/0: d96af8a06c2e38a72238bcd16e426859
zzDlyQ/translation: c43827becada6750f7a25890905f38b9
DBC3t5/translation: d21934fb36dd8a82e36352968207d44e
DBC3t5/message: d21934fb36dd8a82e36352968207d44e
DBC3t5/origin/0/0: 04c86ea96f180745739d59e822da4026
DBC3t5/translation: d21934fb36dd8a82e36352968207d44e
uZg2%2Bw/message: 21af8119141afcce5f12da489f34db6a
uZg2%2Bw/origin/0/0: dbad0c8d7863cb41f5495264f82e7081
uZg2%2Bw/translation: 21af8119141afcce5f12da489f34db6a
@@ -2626,9 +2641,9 @@ checksums:
v1kQyJ/origin/0/0: 77c9f6139024b2069e4fdc5120f69cb5
v1kQyJ/origin/1/0: 566b5982085ae649b2be0c614f666591
v1kQyJ/translation: 0329bc102d3ab3c73410d126e119de12
xLTZVf/translation: ce928c74255344905f5c3f02f44c991e
xLTZVf/message: ce928c74255344905f5c3f02f44c991e
xLTZVf/origin/0/0: 5f6c4a0c9be5098099167871ae1564af
xLTZVf/translation: ce928c74255344905f5c3f02f44c991e
9eF5oV/message: 4928884739ba559e6e4b960e80fe1452
9eF5oV/origin/0/0: 4a1be3707d14c696a16f453d132fb248
9eF5oV/translation: 4928884739ba559e6e4b960e80fe1452

View File

@@ -28,6 +28,7 @@ const config = {
],
},
/** Enables hot reloading for local packages without a build step */
transpilePackages: [
"@kan/api",
@@ -65,8 +66,15 @@ const config = {
},
},
},
serverExternalPackages: [
"pino",
"@opentelemetry/sdk-node",
"@opentelemetry/auto-instrumentations-node",
"@opentelemetry/exporter-trace-otlp-http",
],
experimental: {
// instrumentationHook: true,
instrumentationHook: true,
swcPlugins: [["@lingui/swc-plugin", {}]],
},

View File

@@ -27,12 +27,17 @@
"@kan/api": "workspace:*",
"@kan/auth": "workspace:*",
"@kan/db": "workspace:^",
"@kan/logger": "workspace:^",
"@kan/shared": "workspace:^",
"@lingui/babel-preset-react": "^2.9.2",
"@lingui/conf": "^5.3.2",
"@lingui/macro": "^5.3.2",
"@lingui/react": "^5.3.2",
"@novu/api": "^3.11.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.71.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
"@opentelemetry/sdk-node": "^0.213.0",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "catalog:",

View File

@@ -145,7 +145,6 @@ export default function CommandPallette({
value={result}
className="cursor-pointer select-none px-4 py-3 data-[focus]:bg-light-200 hover:bg-light-200 focus:outline-none dark:data-[focus]:bg-dark-200 dark:hover:bg-dark-200"
onClick={() => {
console.log("clicked", url);
void router.push(url);
onClose();
setQuery("");

View File

@@ -0,0 +1,32 @@
import { t } from "@lingui/core/macro";
import { HiOutlineAdjustmentsHorizontal } from "react-icons/hi2";
import { useFontSize, type FontSize } from "~/providers/font-size";
const fontSizeOptions: { value: FontSize; label: () => string }[] = [
{ value: "small", label: () => t`Small` },
{ value: "medium", label: () => t`Medium` },
{ value: "large", label: () => t`Large` },
];
export function FontSizeSelector() {
const { fontSize, setFontSize } = useFontSize();
return (
<div className="relative">
<HiOutlineAdjustmentsHorizontal className="pointer-events-none absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-gray-400" />
<select
id="font-size-select"
value={fontSize}
onChange={(e) => setFontSize(e.target.value as FontSize)}
className="block w-full max-w-[180px] rounded-lg border-0 bg-light-50 pl-10 text-sm shadow-sm ring-1 ring-inset ring-light-300 focus:ring-2 focus:ring-inset focus:ring-light-400 dark:bg-dark-50 dark:text-dark-1000 dark:ring-dark-300 dark:focus:ring-dark-500"
>
{fontSizeOptions.map((opt) => (
<option key={opt.value} value={opt.value}>
{opt.label()}
</option>
))}
</select>
</div>
);
}

View File

@@ -75,7 +75,7 @@ export function LabelForm({
reset(newFormState);
}
} catch (e) {
console.log(e);
console.error(e);
}
},
});
@@ -231,9 +231,7 @@ export function LabelForm({
<Button
type="submit"
isLoading={updateLabel.isPending || createLabel.isPending}
disabled={
!watch("name")
}
disabled={!watch("name")}
>
{isEdit ? t`Update label` : t`Create label`}
</Button>

View File

@@ -0,0 +1,130 @@
import Placeholder from "@tiptap/extension-placeholder";
import { EditorContent, useEditor } from "@tiptap/react";
import StarterKit from "@tiptap/starter-kit";
import { useEffect, useRef } from "react";
import { twMerge } from "tailwind-merge";
interface PlainTextEditorProps {
content: string;
onChange?: (value: string) => void;
onBlur?: (value: string) => void;
onEnter?: (value: string) => void;
onEscape?: () => void;
readOnly?: boolean;
placeholder?: string;
className?: string;
}
export default function PlainTextEditor({
content,
onChange,
onBlur,
onEnter,
onEscape,
readOnly = false,
placeholder,
className,
}: PlainTextEditorProps) {
const onEnterRef = useRef(onEnter);
const onEscapeRef = useRef(onEscape);
const onBlurRef = useRef(onBlur);
const onChangeRef = useRef(onChange);
const contentRef = useRef(content);
useEffect(() => {
onEnterRef.current = onEnter;
}, [onEnter]);
useEffect(() => {
onEscapeRef.current = onEscape;
}, [onEscape]);
useEffect(() => {
onBlurRef.current = onBlur;
}, [onBlur]);
useEffect(() => {
onChangeRef.current = onChange;
}, [onChange]);
useEffect(() => {
contentRef.current = content;
}, [content]);
const editor = useEditor(
{
extensions: [
StarterKit.configure({
bold: false,
italic: false,
strike: false,
code: false,
codeBlock: false,
blockquote: false,
heading: false,
bulletList: false,
orderedList: false,
listItem: false,
horizontalRule: false,
hardBreak: false,
}),
Placeholder.configure({ placeholder }),
],
content,
editable: !readOnly,
onUpdate: ({ editor }) => onChangeRef.current?.(editor.getText()),
onBlur: ({ editor }) => onBlurRef.current?.(editor.getText()),
editorProps: {
handleKeyDown: (view, event) => {
if (event.key === "Enter") {
event.preventDefault();
onEnterRef.current?.(view.state.doc.textContent.trim());
return true;
}
if (event.key === "Escape") {
event.preventDefault();
// Reset to original content before calling the callback
editor?.commands.setContent(contentRef.current, false);
editor?.commands.blur();
onEscapeRef.current?.();
return true;
}
return false;
},
attributes: {
class: "outline-none focus:outline-none focus-visible:ring-0",
},
},
},
[],
);
useEffect(() => {
if (!editor) return;
if (content !== editor.getText()) {
editor.commands.setContent(content, false);
}
}, [content, editor]);
useEffect(() => {
if (!editor) return;
editor.setEditable(!readOnly);
}, [readOnly, editor]);
return (
<>
<style jsx global>{`
.plain-text-editor p.is-empty::before {
content: attr(data-placeholder);
float: left;
height: 0;
pointer-events: none;
color: var(--placeholder-color, #9ca3af);
}
.plain-text-editor .tiptap p {
margin: 0 !important;
}
`}</style>
<EditorContent
editor={editor}
className={twMerge("plain-text-editor", className)}
/>
</>
);
}

View File

@@ -0,0 +1,32 @@
export async function register() {
if (
process.env.NEXT_RUNTIME !== "nodejs" ||
process.env.NEXT_PUBLIC_KAN_ENV !== "cloud" ||
!process.env.AXIOM_TOKEN ||
!process.env.AXIOM_DATASET
) {
return;
}
const { NodeSDK } = await import("@opentelemetry/sdk-node");
const { OTLPTraceExporter } = await import("@opentelemetry/exporter-trace-otlp-http");
const { getNodeAutoInstrumentations } = await import("@opentelemetry/auto-instrumentations-node");
const sdk = new NodeSDK({
serviceName: "kan",
traceExporter: new OTLPTraceExporter({
url: "https://api.axiom.co/v1/traces",
headers: {
Authorization: `Bearer ${process.env.AXIOM_TOKEN}`,
"X-Axiom-Dataset": process.env.AXIOM_DATASET,
},
}),
instrumentations: [
getNodeAutoInstrumentations({
"@opentelemetry/instrumentation-fs": { enabled: false },
}),
],
});
sdk.start();
}

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Details hinzufügen..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Passwort ändern"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Schriftgröße der Anwendung ändern."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Ändern Sie Ihre Spracheinstellungen."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Label erstellen"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Account löschen"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Anzeigename"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "E-Mail"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Finden Sie Antworten auf häufig gestellte Fragen zu Kan. Können Sie nicht finden, wonach Sie suchen? <0>Kontaktieren Sie uns</0> gerne."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Schriftgröße"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "in"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Sprache"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Groß"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "hat Checklistenelement <0>{0}</0> als unvollständig markiert"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Mittel"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Erwähnungen"
},
"hty0d5": {
"translation": "Montag",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Montag"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "Keine Ergebnisse für \"{debouncedQuery}\" gefunden."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "Sobald Sie Ihr Konto löschen, gibt es kein Zurück mehr. Diese Aktion kann nicht rückgängig gemacht werden."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Profilbild"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Samstag",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Samstag"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Einstellungen | Konto"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Klein"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Erfolg"
},
"DBC3t5": {
"translation": "Sonntag",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Sonntag"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "Checklistenelement konnte nicht gelöscht werden"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "Checklisten-Element konnte nicht aktualisiert werden"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Label aktualisieren"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Webhooks"
},
"xLTZVf": {
"translation": "Wochenbeginn",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "Wochenbeginn"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Sie sind dabei, Ihr Passwort zu ändern."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -471,7 +471,7 @@
"origin": [
[
"src/views/card/components/ChecklistItemRow.tsx",
200
169
]
],
"translation": "Add details..."
@@ -2169,11 +2169,11 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
77
88
],
[
"src/views/settings/AccountSettings.tsx",
87
98
],
[
"src/views/settings/components/ChangePasswordConfirmation.tsx",
@@ -2186,6 +2186,18 @@
],
"translation": "Change Password"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [
[
"src/views/settings/AccountSettings.tsx",
63
]
],
"translation": "Change the application font size."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
@@ -2193,7 +2205,7 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
52
53
]
],
"translation": "Change your language preferences."
@@ -2873,7 +2885,7 @@
"origin": [
[
"src/components/LabelForm.tsx",
238
236
]
],
"translation": "Create label"
@@ -3297,11 +3309,11 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
59
70
],
[
"src/views/settings/AccountSettings.tsx",
69
80
],
[
"src/views/settings/components/DeleteAccountConfirmation.tsx",
@@ -3513,7 +3525,7 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
35
36
]
],
"translation": "Display name"
@@ -3901,7 +3913,7 @@
],
[
"src/views/settings/AccountSettings.tsx",
42
43
]
],
"translation": "Email"
@@ -4654,6 +4666,18 @@
],
"translation": "Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [
[
"src/views/settings/AccountSettings.tsx",
60
]
],
"translation": "Font size"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -5365,7 +5389,7 @@
"origin": [
[
"src/components/CommandPallette.tsx",
168
167
]
],
"translation": "in"
@@ -5721,11 +5745,23 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
49
50
]
],
"translation": "Language"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [
[
"src/components/FontSizeSelector.tsx",
9
]
],
"translation": "Large"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -6050,6 +6086,18 @@
],
"translation": "marked checklist item <0>{0}</0> as incomplete"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [
[
"src/components/FontSizeSelector.tsx",
8
]
],
"translation": "Medium"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -6143,7 +6191,6 @@
"translation": "Mentions"
},
"hty0d5": {
"translation": "Monday",
"message": "Monday",
"placeholders": {},
"comments": [],
@@ -6152,7 +6199,8 @@
"src/views/settings/components/UpdateWeekStartDayForm.tsx",
53
]
]
],
"translation": "Monday"
},
"+8Nek/": {
"message": "Monthly",
@@ -6628,7 +6676,7 @@
"origin": [
[
"src/components/CommandPallette.tsx",
184
183
]
],
"translation": "No results found for \"{debouncedQuery}\"."
@@ -6712,7 +6760,7 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
62
73
]
],
"translation": "Once you delete your account, there is no going back. This action cannot be undone."
@@ -7284,11 +7332,11 @@
],
[
"src/views/card/components/ChecklistItemRow.tsx",
69
67
],
[
"src/views/card/components/ChecklistItemRow.tsx",
97
95
],
[
"src/views/card/components/ChecklistNameInput.tsx",
@@ -7592,7 +7640,7 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
29
30
]
],
"translation": "Profile picture"
@@ -8045,7 +8093,6 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Saturday",
"message": "Saturday",
"placeholders": {},
"comments": [],
@@ -8054,7 +8101,8 @@
"src/views/settings/components/UpdateWeekStartDayForm.tsx",
54
]
]
],
"translation": "Saturday"
},
"tfDRzk": {
"message": "Save",
@@ -8331,7 +8379,7 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
25
26
]
],
"translation": "Settings | Account"
@@ -8548,6 +8596,18 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [
[
"src/components/FontSizeSelector.tsx",
7
]
],
"translation": "Small"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -8665,7 +8725,6 @@
"translation": "Success"
},
"DBC3t5": {
"translation": "Sunday",
"message": "Sunday",
"placeholders": {},
"comments": [],
@@ -8674,7 +8733,8 @@
"src/views/settings/components/UpdateWeekStartDayForm.tsx",
52
]
]
],
"translation": "Sunday"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -9511,7 +9571,7 @@
"origin": [
[
"src/views/card/components/ChecklistItemRow.tsx",
96
94
]
],
"translation": "Unable to delete checklist item"
@@ -9647,7 +9707,7 @@
"origin": [
[
"src/views/card/components/ChecklistItemRow.tsx",
68
66
]
],
"translation": "Unable to update checklist item"
@@ -10007,7 +10067,7 @@
"origin": [
[
"src/components/LabelForm.tsx",
238
236
]
],
"translation": "Update label"
@@ -10497,7 +10557,6 @@
"translation": "Webhooks"
},
"xLTZVf": {
"translation": "Week start day",
"message": "Week start day",
"placeholders": {},
"comments": [],
@@ -10506,7 +10565,8 @@
"src/views/settings/WorkspaceSettings.tsx",
91
]
]
],
"translation": "Week start day"
},
"9eF5oV": {
"message": "Welcome back",
@@ -10867,7 +10927,7 @@
"origin": [
[
"src/views/settings/AccountSettings.tsx",
80
91
]
],
"translation": "You are about to change your password."

File diff suppressed because one or more lines are too long

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Añadir detalles..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Cambiar contraseña"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Cambia el tamaño de fuente de la aplicación."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Cambia tus preferencias de idioma."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Crear etiqueta"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Eliminar cuenta"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Nombre para mostrar"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "Email"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Encuentra respuestas a preguntas frecuentes sobre Kan. ¿No encuentras lo que buscas? No dudes en <0>contactarnos</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Tamaño de fuente"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "en"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Idioma"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Grande"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "marcó el elemento de la lista de verificación <0>{0}</0> como incompleto"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Mediano"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Menciones"
},
"hty0d5": {
"translation": "Lunes",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Lunes"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "No se encontraron resultados para \"{debouncedQuery}\"."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "Una vez que elimines tu cuenta, no hay vuelta atrás. Esta acción no se puede deshacer."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Foto de perfil"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Sábado",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Sábado"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Configuración | Cuenta"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Pequeño"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Éxito"
},
"DBC3t5": {
"translation": "Domingo",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Domingo"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "No se pudo eliminar el elemento de la lista de verificación"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "No se pudo actualizar el elemento de la lista de verificación"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Actualizar etiqueta"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Webhooks"
},
"xLTZVf": {
"translation": "Día de inicio de semana",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "Día de inicio de semana"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Estás a punto de cambiar tu contraseña."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Ajouter des détails..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Changer le mot de passe"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Modifier la taille de police de l'application."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Modifiez vos préférences de langue."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Créer une étiquette"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Supprimer le compte"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Nom d'affichage"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "E-mail"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Trouvez des réponses aux questions courantes sur Kan. Vous ne trouvez pas ce que vous cherchez ? N'hésitez pas à <0>nous contacter</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Taille de police"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "dans"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Langue"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Grande"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "a marqué l'élément de checklist <0>{0}</0> comme incomplet"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Moyenne"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Mentions"
},
"hty0d5": {
"translation": "Lundi",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Lundi"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "Aucun résultat trouvé pour « {debouncedQuery} »."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "Une fois votre compte supprimé, il n'y a pas de retour en arrière possible. Cette action ne peut pas être annulée."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Photo de profil"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Samedi",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Samedi"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Paramètres | Compte"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Petite"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Succès"
},
"DBC3t5": {
"translation": "Dimanche",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Dimanche"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "Impossible de supprimer l'élément de liste de contrôle"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "Impossible de mettre à jour l'élément de la checklist"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Mettre à jour l'étiquette"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Webhooks"
},
"xLTZVf": {
"translation": "Jour de début de semaine",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "Jour de début de semaine"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Vous êtes sur le point de modifier votre mot de passe."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Aggiungi dettagli..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Cambia password"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Modifica la dimensione del carattere dell'applicazione."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Modifica le tue preferenze di lingua."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Crea etichetta"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Elimina account"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Nome visualizzato"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "Email"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Trova risposte alle domande più comuni su Kan. Non trovi quello che cerchi? Sentiti libero di <0>contattarci</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Dimensione del carattere"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "in"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Lingua"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Grande"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "ha contrassegnato l'elemento della checklist <0>{0}</0> come incompleto"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Medio"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Menzioni"
},
"hty0d5": {
"translation": "Lunedì",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Lunedì"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "Nessun risultato trovato per \"{debouncedQuery}\"."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "Una volta eliminato il tuo account, non si può tornare indietro. Questa azione non può essere annullata."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Immagine del profilo"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Sabato",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Sabato"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Impostazioni | Account"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Piccolo"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Successo"
},
"DBC3t5": {
"translation": "Domenica",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Domenica"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "Impossibile eliminare l'elemento della checklist"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "Impossibile aggiornare l'elemento della checklist"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Aggiorna etichetta"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Webhook"
},
"xLTZVf": {
"translation": "Giorno di inizio settimana",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "Giorno di inizio settimana"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Stai per modificare la tua password."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Voeg details toe..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Wachtwoord wijzigen"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Pas de lettergrootte van de applicatie aan."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Wijzig je taalvoorkeuren."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Maak label"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Account verwijderen"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Weergavenaam"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "E-mail"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Vind antwoorden op veelgestelde vragen over Kan. Kun je niet vinden wat je zoekt? Neem gerust <0>contact met ons op</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Lettergrootte"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "in"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Taal"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Groot"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "heeft checklistitem <0>{0}</0> als onvolledig gemarkeerd"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Gemiddeld"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Vermeldingen"
},
"hty0d5": {
"translation": "Maandag",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Maandag"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "Geen resultaten gevonden voor \"{debouncedQuery}\"."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "Zodra je je account verwijdert, is er geen weg terug. Deze actie kan niet ongedaan worden gemaakt."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Profielfoto"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Zaterdag",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Zaterdag"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Instellingen | Account"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Klein"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Succes"
},
"DBC3t5": {
"translation": "Zondag",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Zondag"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "Kan checklistitem niet verwijderen"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "Kan checklistitem niet bijwerken"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Label bijwerken"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Webhooks"
},
"xLTZVf": {
"translation": "Eerste dag van de week",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "Eerste dag van de week"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Je staat op het punt je wachtwoord te wijzigen."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Dodaj szczegóły..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Zmień hasło"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Zmień rozmiar czcionki aplikacji."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Zmień preferencje językowe."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Utwórz etykietę"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Usuń konto"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Nazwa wyświetlana"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "E-mail"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Znajdź odpowiedzi na najczęstsze pytania dotyczące Kan. Nie możesz znaleźć tego, czego szukasz? Śmiało <0>skontaktuj się z nami</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Rozmiar czcionki"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "w"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Język"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Duży"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "oznaczył(a) element listy kontrolnej <0>{0}</0> jako nieukończony"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Średni"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Wzmianki"
},
"hty0d5": {
"translation": "Poniedziałek",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Poniedziałek"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "Nie znaleziono wyników dla „{debouncedQuery}”."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "Po usunięciu konta nie będzie można tego cofnąć. Tej operacji nie da się odwrócić."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Zdjęcie profilowe"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Sobota",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Sobota"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Ustawienia | Konto"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Mały"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Sukces"
},
"DBC3t5": {
"translation": "Niedziela",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Niedziela"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "Nie można usunąć elementu listy kontrolnej"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "Nie można zaktualizować elementu listy kontrolnej"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Aktualizuj etykietę"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Webhooki"
},
"xLTZVf": {
"translation": "Pierwszy dzień tygodnia",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "Pierwszy dzień tygodnia"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Zaraz zmienisz swoje hasło."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Adicionar detalhes..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Alterar senha"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Altere o tamanho da fonte do aplicativo."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Altere suas preferências de idioma."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Criar etiqueta"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Excluir conta"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Nome de exibição"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "Email"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Encontre respostas para perguntas comuns sobre o Kan. Não encontrou o que procura? Sinta-se à vontade para <0>entrar em contato</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Tamanho da fonte"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "em"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Idioma"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Grande"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "marcou o item da checklist <0>{0}</0> como incompleto"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Médio"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Menções"
},
"hty0d5": {
"translation": "Segunda-feira",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Segunda-feira"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "Nenhum resultado encontrado para \"{debouncedQuery}\"."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "Depois de excluir sua conta, não há como voltar atrás. Esta ação não pode ser desfeita."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Foto de perfil"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Sábado",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Sábado"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Configurações | Conta"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Pequeno"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Sucesso"
},
"DBC3t5": {
"translation": "Domingo",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Domingo"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "Não foi possível excluir item da checklist"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "Não foi possível atualizar o item da checklist"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Atualizar etiqueta"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Webhooks"
},
"xLTZVf": {
"translation": "Dia de início da semana",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "Dia de início da semana"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Você está prestes a alterar sua senha."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -280,7 +280,7 @@
"message": "Add details...",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 200]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 169]],
"translation": "Добавить детали..."
},
"lyqwgn": {
@@ -1293,18 +1293,25 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 77],
["src/views/settings/AccountSettings.tsx", 87],
["src/views/settings/AccountSettings.tsx", 88],
["src/views/settings/AccountSettings.tsx", 98],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 109],
["src/views/settings/components/ChangePasswordConfirmation.tsx", 178]
],
"translation": "Сменить пароль"
},
"fzGyWs": {
"message": "Change the application font size.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 63]],
"translation": "Изменить размер шрифта приложения."
},
"yD3ZSw": {
"message": "Change your language preferences.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 52]],
"origin": [["src/views/settings/AccountSettings.tsx", 53]],
"translation": "Измените языковые настройки."
},
"gZxH/p": {
@@ -1715,7 +1722,7 @@
"message": "Create label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Создать метку"
},
"XTKtey": {
@@ -1961,8 +1968,8 @@
"placeholders": {},
"comments": [],
"origin": [
["src/views/settings/AccountSettings.tsx", 59],
["src/views/settings/AccountSettings.tsx", 69],
["src/views/settings/AccountSettings.tsx", 70],
["src/views/settings/AccountSettings.tsx", 80],
["src/views/settings/components/DeleteAccountConfirmation.tsx", 96]
],
"translation": "Удалить аккаунт"
@@ -2086,7 +2093,7 @@
"message": "Display name",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 35]],
"origin": [["src/views/settings/AccountSettings.tsx", 36]],
"translation": "Отображаемое имя"
},
"MlyjJu": {
@@ -2304,7 +2311,7 @@
"comments": [],
"origin": [
["src/views/members/components/InviteMemberForm.tsx", 272],
["src/views/settings/AccountSettings.tsx", 42]
["src/views/settings/AccountSettings.tsx", 43]
],
"translation": "Email"
},
@@ -2768,6 +2775,13 @@
"origin": [["src/views/home/components/Faqs.tsx", 150]],
"translation": "Найдите ответы на часто задаваемые вопросы о Kan. Не нашли то, что искали? Не стесняйтесь <0>связаться с нами</0>."
},
"q3il6U": {
"message": "Font size",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 60]],
"translation": "Размер шрифта"
},
"+3TYXa": {
"message": "For long-term sustainability, we recognise all good open source projects need a source of revenue. Ours comes from the paid cloud offering for workspaces with multiple users and for custom workspace slugs. There's no obligation to use it, and you can self-host the software on your own infrastructure free of charge.",
"placeholders": {},
@@ -3187,7 +3201,7 @@
"message": "in",
"placeholders": {},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 168]],
"origin": [["src/components/CommandPallette.tsx", 167]],
"translation": "в"
},
"WbTDwg": {
@@ -3398,9 +3412,16 @@
"message": "Language",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 49]],
"origin": [["src/views/settings/AccountSettings.tsx", 50]],
"translation": "Язык"
},
"k7rCa/": {
"message": "Large",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 9]],
"translation": "Крупный"
},
"8Is1ih": {
"message": "Launch offer",
"placeholders": {},
@@ -3591,6 +3612,13 @@
"origin": [["src/views/card/components/ActivityList.tsx", 258]],
"translation": "отметил элемент контрольного списка <0>{0}</0> как невыполненный"
},
"agPptk": {
"message": "Medium",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 8]],
"translation": "Средний"
},
"W/Elkg": {
"message": "Medium Priority",
"placeholders": {},
@@ -3642,11 +3670,13 @@
"translation": "Упоминания"
},
"hty0d5": {
"translation": "Понедельник",
"message": "Monday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 53]
],
"translation": "Понедельник"
},
"+8Nek/": {
"message": "Monthly",
@@ -3925,7 +3955,7 @@
"debouncedQuery": ["debouncedQuery"]
},
"comments": [],
"origin": [["src/components/CommandPallette.tsx", 184]],
"origin": [["src/components/CommandPallette.tsx", 183]],
"translation": "По запросу «{debouncedQuery}» ничего не найдено."
},
"Q9pQaX": {
@@ -3976,7 +4006,7 @@
"message": "Once you delete your account, there is no going back. This action cannot be undone.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 62]],
"origin": [["src/views/settings/AccountSettings.tsx", 73]],
"translation": "После удаления аккаунта возврата не будет. Это действие необратимо."
},
"dmKdk0": {
@@ -4306,8 +4336,8 @@
["src/views/boards/components/ImportBoardsForm.tsx", 243],
["src/views/boards/components/ImportBoardsForm.tsx", 395],
["src/views/card/components/AttachmentThumbnails.tsx", 74],
["src/views/card/components/ChecklistItemRow.tsx", 69],
["src/views/card/components/ChecklistItemRow.tsx", 97],
["src/views/card/components/ChecklistItemRow.tsx", 67],
["src/views/card/components/ChecklistItemRow.tsx", 95],
["src/views/card/components/ChecklistNameInput.tsx", 47],
["src/views/card/components/Checklists.tsx", 81],
["src/views/card/components/Comment.tsx", 93],
@@ -4438,7 +4468,7 @@
"message": "Profile picture",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 29]],
"origin": [["src/views/settings/AccountSettings.tsx", 30]],
"translation": "Фото профиля"
},
"7d1a0d": {
@@ -4707,11 +4737,13 @@
"translation": "SAML SSO"
},
"+5kO8P": {
"translation": "Суббота",
"message": "Saturday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 54]
],
"translation": "Суббота"
},
"tfDRzk": {
"message": "Save",
@@ -4876,7 +4908,7 @@
"message": "Settings | Account",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 25]],
"origin": [["src/views/settings/AccountSettings.tsx", 26]],
"translation": "Настройки | Аккаунт"
},
"iy1wb+": {
@@ -5006,6 +5038,13 @@
],
"translation": "SLA"
},
"4Revpc": {
"message": "Small",
"placeholders": {},
"comments": [],
"origin": [["src/components/FontSizeSelector.tsx", 7]],
"translation": "Мелкий"
},
"++rVAm": {
"message": "Social Media",
"placeholders": {},
@@ -5078,11 +5117,13 @@
"translation": "Успех"
},
"DBC3t5": {
"translation": "Воскресенье",
"message": "Sunday",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]]
"origin": [
["src/views/settings/components/UpdateWeekStartDayForm.tsx", 52]
],
"translation": "Воскресенье"
},
"uZg2+w": {
"message": "Supercharge your workspace for just $29/month. Here's what you'll get:",
@@ -5593,7 +5634,7 @@
"message": "Unable to delete checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 96]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 94]],
"translation": "Не удалось удалить элемент контрольного списка"
},
"2QGEbi": {
@@ -5677,7 +5718,7 @@
"message": "Unable to update checklist item",
"placeholders": {},
"comments": [],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 68]],
"origin": [["src/views/card/components/ChecklistItemRow.tsx", 66]],
"translation": "Не удалось обновить элемент контрольного списка"
},
"fYVH36": {
@@ -5876,7 +5917,7 @@
"message": "Update label",
"placeholders": {},
"comments": [],
"origin": [["src/components/LabelForm.tsx", 238]],
"origin": [["src/components/LabelForm.tsx", 236]],
"translation": "Обновить метку"
},
"L5ZPjz": {
@@ -6168,11 +6209,11 @@
"translation": "Вебхуки"
},
"xLTZVf": {
"translation": "День начала недели",
"message": "Week start day",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]]
"origin": [["src/views/settings/WorkspaceSettings.tsx", 91]],
"translation": "День начала недели"
},
"9eF5oV": {
"message": "Welcome back",
@@ -6394,7 +6435,7 @@
"message": "You are about to change your password.",
"placeholders": {},
"comments": [],
"origin": [["src/views/settings/AccountSettings.tsx", 80]],
"origin": [["src/views/settings/AccountSettings.tsx", 91]],
"translation": "Вы собираетесь изменить свой пароль."
},
"aelko+": {

File diff suppressed because one or more lines are too long

View File

@@ -12,6 +12,7 @@ import posthog from "posthog-js";
import { PostHogProvider } from "posthog-js/react";
import { useEffect } from "react";
import { FontSizeProvider } from "~/providers/font-size";
import { KeyboardShortcutProvider } from "~/providers/keyboard-shortcuts";
import { LinguiProviderWrapper } from "~/providers/lingui";
import { ModalProvider } from "~/providers/modal";
@@ -83,19 +84,21 @@ const MyApp: AppType = ({ Component, pageProps }: AppPropsWithLayout) => {
<main className="font-sans">
<KeyboardShortcutProvider>
<LinguiProviderWrapper>
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
<ModalProvider>
<PopupProvider>
{posthogKey ? (
<PostHogProvider client={posthog}>
{getLayout(<Component {...pageProps} />)}
</PostHogProvider>
) : (
getLayout(<Component {...pageProps} />)
)}
</PopupProvider>
</ModalProvider>
</ThemeProvider>
<FontSizeProvider>
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
<ModalProvider>
<PopupProvider>
{posthogKey ? (
<PostHogProvider client={posthog}>
{getLayout(<Component {...pageProps} />)}
</PostHogProvider>
) : (
getLayout(<Component {...pageProps} />)
)}
</PopupProvider>
</ModalProvider>
</ThemeProvider>
</FontSizeProvider>
</LinguiProviderWrapper>
</KeyboardShortcutProvider>
</main>

View File

@@ -3,8 +3,11 @@ import type { Readable } from "node:stream";
import { createNextApiContext } from "@kan/api/trpc";
import * as workspaceRepo from "@kan/db/repository/workspace.repo";
import { createLogger } from "@kan/logger";
import { createStripeClient } from "@kan/stripe";
const log = createLogger("stripe-webhook");
async function buffer(readable: Readable) {
const chunks = [];
for await (const chunk of readable) {
@@ -41,6 +44,8 @@ export default async function handler(
const { db } = await createNextApiContext(req);
log.info({ eventType: event.type, eventId: event.id }, "Stripe webhook received");
switch (event.type) {
case "checkout.session.completed": {
const checkoutSession = event.data.object;
@@ -56,12 +61,12 @@ export default async function handler(
break;
}
default:
console.log(`Unhandled event type: ${event.type}`);
log.warn({ eventType: event.type }, "Unhandled Stripe event type");
}
return res.status(200).json({ received: true });
} catch (err) {
console.error("Webhook error:", err);
log.error({ err }, "Stripe webhook handler failed");
return res.status(400).json({ message: "Webhook handler failed" });
}
}

View File

@@ -1,24 +1,25 @@
import { useEffect } from "react";
export default function TrelloAuthorize() {
useEffect(() => {
const hash = window.location.hash;
const token = hash.split("=")[1];
if (token) {
console.log("Posting token to /api/trello/authenticate", token);
fetch("/api/trello/authenticate", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ token }),
}).then(() => {
window.close();
});
}
}, []);
useEffect(() => {
const hash = window.location.hash;
const token = hash.split("=")[1];
if (token) {
fetch("/api/trello/authenticate", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ token }),
}).then(() => {
window.close();
});
}
}, []);
return <div className="flex h-[200px] items-center justify-center">
<p className="text-center">Connecting to Trello...</p>
</div>;
}
return (
<div className="flex h-[200px] items-center justify-center">
<p className="text-center">Connecting to Trello...</p>
</div>
);
}

View File

@@ -0,0 +1,57 @@
import React, {
createContext,
useContext,
useEffect,
useState,
type ReactNode,
} from "react";
export type FontSize = "small" | "medium" | "large";
const fontSizeMap: Record<FontSize, string> = {
small: "14px",
medium: "16px",
large: "18px",
};
interface FontSizeContextProps {
fontSize: FontSize;
setFontSize: (size: FontSize) => void;
}
const FontSizeContext = createContext<FontSizeContextProps | undefined>(
undefined,
);
export const FontSizeProvider: React.FC<{ children: ReactNode }> = ({
children,
}) => {
const [fontSize, setFontSizeState] = useState<FontSize>("medium");
const setFontSize = (size: FontSize) => {
document.documentElement.style.fontSize = fontSizeMap[size];
localStorage.setItem("fontSize", size);
setFontSizeState(size);
};
useEffect(() => {
const stored = localStorage.getItem("fontSize") as FontSize | null;
const size = stored && fontSizeMap[stored] ? stored : "medium";
document.documentElement.style.fontSize = fontSizeMap[size];
setFontSizeState(size);
}, []);
return (
<FontSizeContext.Provider value={{ fontSize, setFontSize }}>
{children}
</FontSizeContext.Provider>
);
};
export const useFontSize = (): FontSizeContextProps => {
const context = useContext(FontSizeContext);
if (!context) {
throw new Error("useFontSize must be used within a FontSizeProvider");
}
return context;
};

View File

@@ -2,6 +2,10 @@
@tailwind components;
@tailwind utilities;
html {
font-size: 14px;
}
[contenteditable="true"]:empty:before {
content: attr(placeholder);
display: block;

View File

@@ -234,7 +234,7 @@ const ImportGithub: React.FC = () => {
await refetchBoards();
closeModal();
} catch (e) {
console.log(e);
console.error(e);
}
},
onError: () => {
@@ -386,7 +386,7 @@ const ImportTrello: React.FC = () => {
await refetchBoards();
closeModal();
} catch (e) {
console.log(e);
console.error(e);
}
},
onError: () => {

View File

@@ -1,11 +1,11 @@
import type { DraggableProvided } from "react-beautiful-dnd";
import { t } from "@lingui/core/macro";
import { useEffect, useState } from "react";
import ContentEditable from "react-contenteditable";
import { useState } from "react";
import { HiXMark } from "react-icons/hi2";
import { RiDraggable } from "react-icons/ri";
import { twMerge } from "tailwind-merge";
import PlainTextEditor from "~/components/PlainTextEditor";
import { usePopup } from "~/providers/popup";
import { api } from "~/utils/api";
import { invalidateCard } from "~/utils/cardInvalidation";
@@ -33,9 +33,7 @@ export default function ChecklistItemRow({
}: ChecklistItemRowProps) {
const utils = api.useUtils();
const { showPopup } = usePopup();
const [title, setTitle] = useState("");
const [completed, setCompleted] = useState(false);
const [completed, setCompleted] = useState(item.completed);
const updateItem = api.checklist.updateItem.useMutation({
onMutate: async (vars) => {
@@ -103,21 +101,6 @@ export default function ChecklistItemRow({
},
});
// Only resync from props when switching items to avoid clobbering edits
useEffect(() => {
setTitle(item.title);
setCompleted(item.completed);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [item.publicId]);
const sanitizeHtmlToPlainText = (html: string): string =>
html
.replace(/<br\s*\/?>(\n)?/gi, "\n")
.replace(/<div><br\s*\/?><\/div>/gi, "")
.replace(/<[^>]*>/g, "")
.replace(/&nbsp;/g, " ")
.trim();
const handleToggleCompleted = () => {
if (viewOnly) return;
setCompleted((prev) => !prev);
@@ -127,14 +110,8 @@ export default function ChecklistItemRow({
});
};
const commitTitle = (rawHtml: string) => {
if (viewOnly) return;
const plain = sanitizeHtmlToPlainText(rawHtml);
if (!plain || plain === item.title) {
setTitle(item.title);
return;
}
setTitle(plain);
const commitTitle = (plain: string) => {
if (!plain || plain === item.title) return;
updateItem.mutate({
checklistItemPublicId: item.publicId,
title: plain,
@@ -183,36 +160,26 @@ export default function ChecklistItemRow({
)}
/>
</label>
<div className="flex-1 pr-7">
<ContentEditable
html={title}
disabled={viewOnly}
onChange={(e) => setTitle(e.target.value)}
// @ts-expect-error - valid event
onBlur={(e: Event) => {
const innerHTML = (e.target as HTMLElement).innerHTML;
commitTitle(innerHTML);
<PlainTextEditor
key={item.publicId}
content={item.title}
readOnly={viewOnly}
placeholder={t`Add details...`}
onBlur={commitTitle}
onEnter={(plain) => {
commitTitle(plain);
onCreateNewItem?.();
}}
onEscape={() => undefined}
className={twMerge(
"m-0 min-h-[20px] w-full p-0 text-sm leading-[20px] text-light-950 outline-none focus-visible:outline-none dark:text-dark-950",
"m-0 min-h-[20px] w-full p-0 text-sm leading-[20px] text-light-950 dark:text-dark-950",
viewOnly && "cursor-default",
)}
placeholder={t`Add details...`}
onKeyDown={(e) => {
if (viewOnly) return;
if (e.key === "Enter") {
e.preventDefault();
const innerHTML = (e.currentTarget as HTMLElement).innerHTML;
commitTitle(innerHTML);
onCreateNewItem?.();
}
if (e.key === "Escape") {
e.preventDefault();
setTitle(item.title);
}
}}
/>
</div>
{!viewOnly && (
<button
type="button"

View File

@@ -3,6 +3,7 @@ import { env } from "next-runtime-env";
import Button from "~/components/Button";
import FeedbackModal from "~/components/FeedbackModal";
import { FontSizeSelector } from "~/components/FontSizeSelector";
import { LanguageSelector } from "~/components/LanguageSelector";
import Modal from "~/components/modal";
import { NewWorkspaceForm } from "~/components/NewWorkspaceForm";
@@ -54,6 +55,16 @@ export default function AccountSettings() {
<LanguageSelector />
</div>
<div className="mb-8 border-t border-light-300 dark:border-dark-300">
<h2 className="mb-4 mt-8 text-[14px] font-bold text-neutral-900 dark:text-dark-1000">
{t`Font size`}
</h2>
<p className="mb-8 text-sm text-neutral-500 dark:text-dark-900">
{t`Change the application font size.`}
</p>
<FontSizeSelector />
</div>
<div className="mb-8 border-t border-light-300 dark:border-dark-300">
<h2 className="mb-4 mt-8 text-[14px] font-bold text-neutral-900 dark:text-dark-1000">
{t`Delete account`}

View File

@@ -37,6 +37,11 @@ services:
- NEXT_PUBLIC_USE_STANDALONE_OUTPUT=${NEXT_PUBLIC_USE_STANDALONE_OUTPUT}
- REDIS_URL=${REDIS_URL}
# Logging (optional - debug, info, warn, error; defaults to debug in dev, info in prod)
- LOG_LEVEL=${LOG_LEVEL}
- AXIOM_TOKEN=${AXIOM_TOKEN}
- AXIOM_DATASET=${AXIOM_DATASET}
# Stripe
- STRIPE_SECRET_KEY=${STRIPE_SECRET_KEY}
- STRIPE_WEBHOOK_SECRET=${STRIPE_WEBHOOK_SECRET}

View File

@@ -37,6 +37,9 @@ services:
# Redis (optional - for rate limiting)
- REDIS_URL=${REDIS_URL}
# Logging (optional - debug, info, warn, error; defaults to debug in dev, info in prod)
- LOG_LEVEL=${LOG_LEVEL}
# Admin API key (optional)
- KAN_ADMIN_API_KEY=${KAN_ADMIN_API_KEY}

View File

@@ -48,6 +48,7 @@
"@kan/auth": "workspace:*",
"@kan/db": "workspace:*",
"@kan/email": "workspace:^",
"@kan/logger": "workspace:^",
"@kan/shared": "workspace:^",
"@kan/stripe": "workspace:^",
"@trpc/server": "catalog:",

View File

@@ -227,7 +227,7 @@ export const boardRouter = createTRPCRouter({
boardSlug: z
.string()
.min(3)
.max(24)
.max(60)
.regex(/^(?![-]+$)[a-zA-Z0-9-]+$/),
members: z.array(z.string().min(12)).optional(),
labels: z.array(z.string().min(12)).optional(),
@@ -657,7 +657,7 @@ export const boardRouter = createTRPCRouter({
boardSlug: z
.string()
.min(3)
.max(24)
.max(60)
.regex(/^(?![-]+$)[a-zA-Z0-9-]+$/),
boardPublicId: z.string().min(12),
}),

View File

@@ -4,6 +4,7 @@ import { z } from "zod";
import * as cardRepo from "@kan/db/repository/card.repo";
import * as cardActivityRepo from "@kan/db/repository/cardActivity.repo";
import * as checklistRepo from "@kan/db/repository/checklist.repo";
import { stripHtml } from "@kan/shared/utils";
import { createTRPCRouter, protectedProcedure } from "../trpc";
import { assertPermission } from "../utils/permissions";
@@ -223,7 +224,7 @@ export const checklistRouter = createTRPCRouter({
.input(
z.object({
checklistPublicId: z.string().length(12),
title: z.string().min(1).max(500),
title: z.string().min(1).max(500).transform(stripHtml),
}),
)
.output(checklistItemSchema)
@@ -288,7 +289,7 @@ export const checklistRouter = createTRPCRouter({
.input(
z.object({
checklistItemPublicId: z.string().length(12),
title: z.string().min(1).max(500).optional(),
title: z.string().min(1).max(500).transform(stripHtml).optional(),
completed: z.boolean().optional(),
index: z.number().int().min(0).optional(),
}),
@@ -322,30 +323,29 @@ export const checklistRouter = createTRPCRouter({
const previousTitle = item.title;
let updatedItem;
let updatedItem;
if (input.title !== undefined || input.completed !== undefined) {
updatedItem = await checklistRepo.updateItemById(ctx.db, {
id: item.id,
title: input.title,
completed: input.completed,
});
}
if (input.title !== undefined || input.completed !== undefined) {
updatedItem = await checklistRepo.updateItemById(ctx.db, {
id: item.id,
title: input.title,
completed: input.completed,
});
}
if (input.index !== undefined) {
updatedItem = await checklistRepo.reorderItem(ctx.db, {
itemId: item.id,
newIndex: input.index,
});
}
if (!updatedItem) {
throw new TRPCError({
message: `Failed to update checklist item`,
code: "INTERNAL_SERVER_ERROR",
});
}
if (input.index !== undefined) {
updatedItem = await checklistRepo.reorderItem(ctx.db, {
itemId: item.id,
newIndex: input.index,
});
}
if (!updatedItem) {
throw new TRPCError({
message: `Failed to update checklist item`,
code: "INTERNAL_SERVER_ERROR",
});
}
// Log completion toggle
if (input.completed !== undefined) {
@@ -371,7 +371,6 @@ export const checklistRouter = createTRPCRouter({
}
return updatedItem;
}),
deleteItem: protectedProcedure
.meta({

View File

@@ -19,6 +19,7 @@ import { encryptToken } from "../utils/encryption";
export const integrationRouter = createTRPCRouter({
saveGitHubToken: protectedProcedure
.input(z.object({ token: z.string() }))
.output(z.object({ success: z.boolean() }))
.mutation(async ({ ctx, input }) => {
const user = ctx.user;
@@ -43,7 +44,9 @@ export const integrationRouter = createTRPCRouter({
return { success: true };
}),
disconnectGitHub: protectedProcedure.mutation(async ({ ctx }) => {
disconnectGitHub: protectedProcedure
.output(z.object({ success: z.boolean() }))
.mutation(async ({ ctx }) => {
const user = ctx.user;
if (!user)
@@ -56,7 +59,9 @@ export const integrationRouter = createTRPCRouter({
return { success: true };
}),
getGitHubStatus: protectedProcedure.query(async ({ ctx }) => {
getGitHubStatus: protectedProcedure
.output(z.object({ connected: z.boolean() }))
.query(async ({ ctx }) => {
const user = ctx.user;
if (!user)

View File

@@ -31,7 +31,6 @@ export const userRouter = createTRPCRouter({
.object({
id: z.number(),
prefix: z.string().nullable(),
key: z.string(),
})
.nullable(),
}),
@@ -62,7 +61,7 @@ export const userRouter = createTRPCRouter({
return {
...result,
image: imageUrl,
apiKey: apiKey ?? null,
apiKey: apiKey ? { id: apiKey.id, prefix: apiKey.prefix } : null,
};
}),
update: protectedProcedure

View File

@@ -1,3 +1,4 @@
import { randomUUID } from "crypto";
import type { CreateNextContextOptions } from "@trpc/server/adapters/next";
import type { NextApiRequest } from "next";
import type { OpenApiMeta } from "trpc-to-openapi";
@@ -9,6 +10,30 @@ import { ZodError } from "zod";
import type { dbClient } from "@kan/db/client";
import { initAuth } from "@kan/auth/server";
import { createDrizzleClient } from "@kan/db/client";
import { createLogger } from "@kan/logger";
const log = createLogger("api");
const TRPC_STATUS_MAP: Partial<Record<TRPCError["code"], number>> = {
PARSE_ERROR: 400,
BAD_REQUEST: 400,
UNAUTHORIZED: 401,
FORBIDDEN: 403,
NOT_FOUND: 404,
METHOD_NOT_SUPPORTED: 405,
TIMEOUT: 408,
CONFLICT: 409,
PRECONDITION_FAILED: 412,
PAYLOAD_TOO_LARGE: 413,
UNPROCESSABLE_CONTENT: 422,
TOO_MANY_REQUESTS: 429,
CLIENT_CLOSED_REQUEST: 499,
INTERNAL_SERVER_ERROR: 500,
NOT_IMPLEMENTED: 501,
BAD_GATEWAY: 502,
SERVICE_UNAVAILABLE: 503,
GATEWAY_TIMEOUT: 504,
};
export interface User {
id: string;
@@ -47,6 +72,7 @@ interface CreateContextOptions {
db: dbClient;
auth: ReturnType<typeof createAuthWithHeaders>;
headers: Headers;
transport?: "trpc" | "rest";
}
export const createInnerTRPCContext = (opts: CreateContextOptions) => {
@@ -55,6 +81,8 @@ export const createInnerTRPCContext = (opts: CreateContextOptions) => {
db: opts.db,
auth: opts.auth,
headers: opts.headers,
transport: opts.transport ?? "trpc",
requestId: randomUUID(),
};
};
@@ -66,7 +94,13 @@ export const createTRPCContext = async ({ req }: CreateNextContextOptions) => {
const session = await auth.api.getSession();
return createInnerTRPCContext({ db, user: session?.user, auth, headers });
return createInnerTRPCContext({
db,
user: session?.user,
auth,
headers,
transport: "trpc",
});
};
export const createNextApiContext = async (req: NextApiRequest) => {
@@ -77,7 +111,13 @@ export const createNextApiContext = async (req: NextApiRequest) => {
const session = await auth.api.getSession();
return createInnerTRPCContext({ db, user: session?.user, auth, headers });
return createInnerTRPCContext({
db,
user: session?.user,
auth,
headers,
transport: "trpc",
});
};
export const createRESTContext = async ({ req }: CreateNextContextOptions) => {
@@ -90,11 +130,16 @@ export const createRESTContext = async ({ req }: CreateNextContextOptions) => {
try {
session = await auth.api.getSession();
} catch (error) {
console.error("Error getting session, ", error);
throw error;
log.warn({ err: error }, "Failed to get session, treating as unauthenticated");
}
return createInnerTRPCContext({ db, user: session?.user, auth, headers });
return createInnerTRPCContext({
db,
user: session?.user,
auth,
headers,
transport: "rest",
});
};
const t = initTRPC
@@ -118,10 +163,45 @@ export const createTRPCRouter = t.router;
export const createCallerFactory = t.createCallerFactory;
export const publicProcedure = t.procedure.meta({
openapi: { method: "GET", path: "/public" },
const loggingMiddleware = t.middleware(async ({ path, type, next, ctx }) => {
const start = Date.now();
const result = await next();
const duration = Date.now() - start;
const { user, transport, requestId } = ctx as {
user?: { id: string; email: string };
transport?: string;
requestId?: string;
};
const isCloud = process.env.NEXT_PUBLIC_KAN_ENV === "cloud";
const meta = {
requestId,
procedure: path,
type,
transport,
duration,
userId: user?.id,
...(isCloud && { email: user?.email }),
};
const label = transport === "rest" ? "REST" : "tRPC";
if (result.ok) {
log.info({ ...meta, status: 200 }, `${label} OK`);
} else {
const status = TRPC_STATUS_MAP[result.error.code] ?? 500;
const errorCode = result.error.code;
log.error(
{ ...meta, status, errorCode, err: result.error },
`${label} error`,
);
}
return result;
});
export const publicProcedure = t.procedure.use(loggingMiddleware);
const enforceUserIsAuthed = t.middleware(async ({ ctx, next }) => {
if (!ctx.user) {
throw new TRPCError({ code: "UNAUTHORIZED" });
@@ -142,14 +222,12 @@ const enforceUserIsAdmin = t.middleware(async ({ ctx, next }) => {
});
});
export const protectedProcedure = t.procedure.use(enforceUserIsAuthed).meta({
openapi: {
method: "GET",
path: "/protected",
},
});
export const protectedProcedure = t.procedure
.use(loggingMiddleware)
.use(enforceUserIsAuthed);
export const adminProtectedProcedure = t.procedure
.use(loggingMiddleware)
.use(enforceUserIsAdmin)
.meta({
openapi: {

View File

@@ -1,6 +1,9 @@
import { env } from "next-runtime-env";
import type { dbClient } from "@kan/db/client";
import { createLogger } from "@kan/logger";
const log = createLogger("notifications");
import * as cardRepo from "@kan/db/repository/card.repo";
import * as memberRepo from "@kan/db/repository/member.repo";
import * as notificationRepo from "@kan/db/repository/notification.repo";
@@ -72,6 +75,7 @@ export async function sendMentionEmails({
const baseUrl = env("NEXT_PUBLIC_BASE_URL");
const cardUrl = `${baseUrl}/cards/${cardPublicId}`;
log.info({ cardPublicId, mentionCount: membersToNotify.length, commenterUserId }, "Sending mention emails");
// Send emails to all mentioned members (only if notification doesn't exist)
await Promise.all(
membersToNotify.map(async (member) => {
@@ -91,6 +95,7 @@ export async function sendMentionEmails({
// If notification already exists, skip sending email
if (notificationExists) {
log.debug({ email, cardPublicId }, "Skipping duplicate mention email");
return;
}
@@ -114,20 +119,14 @@ export async function sendMentionEmails({
cardUrl,
},
);
log.info({ email, cardPublicId }, "Mention email sent");
} catch (error) {
console.error("Failed to send mention email:", {
email,
cardPublicId,
error: error instanceof Error ? error.message : String(error),
});
log.error({ err: error, email, cardPublicId }, "Failed to send mention email");
}
}),
);
} catch (error) {
console.error("Error sending mention emails:", {
cardPublicId,
error: error instanceof Error ? error.message : String(error),
});
log.error({ err: error, cardPublicId }, "Error sending mention emails");
}
}

View File

@@ -5,6 +5,9 @@ import {
} from "rate-limiter-flexible";
import { getRedisClient } from "@kan/db/redis";
import { createLogger } from "@kan/logger";
const log = createLogger("rateLimit");
export interface RateLimitOptions {
points?: number;
@@ -45,7 +48,7 @@ function createRateLimiter(options: RateLimitOptions = {}) {
// Use Redis if available, otherwise fall back to in-memory storage
if (redis) {
console.log("Using Redis for rate limiting");
log.debug("Using Redis for rate limiting");
return new RateLimiterRedis({
storeClient: redis,
points,
@@ -53,7 +56,7 @@ function createRateLimiter(options: RateLimitOptions = {}) {
});
}
console.log("Using in-memory for rate limiting");
log.debug("Redis unavailable, falling back to in-memory rate limiting");
return new RateLimiterMemory({
points,
duration,

View File

@@ -4,6 +4,9 @@ import { z } from "zod";
import type { dbClient } from "@kan/db/client";
import type { WebhookEvent } from "@kan/db/schema";
import * as webhookRepo from "@kan/db/repository/webhook.repo";
import { createLogger } from "@kan/logger";
const log = createLogger("webhook");
export type WebhookEventType = WebhookEvent;
@@ -199,9 +202,9 @@ export async function sendWebhooksForWorkspace(
sendWebhookToUrl(webhook.url, webhook.secret ?? undefined, payload).then(
(result) => {
if (!result.success) {
console.error(
`Webhook delivery failed to ${webhook.url}: ${result.error}`,
);
log.error({ url: webhook.url, event: payload.event, error: result.error, statusCode: result.statusCode }, "Webhook delivery failed");
} else {
log.info({ url: webhook.url, event: payload.event, statusCode: result.statusCode }, "Webhook delivered");
}
},
),
@@ -210,7 +213,7 @@ export async function sendWebhooksForWorkspace(
// Wait for all to complete but don't block on failures
await Promise.allSettled(promises);
} catch (error) {
console.error("Failed to send webhooks for workspace:", error);
log.error({ err: error, workspaceId }, "Failed to send webhooks for workspace");
}
}

View File

@@ -39,6 +39,7 @@
"prettier": "@kan/prettier-config",
"dependencies": {
"@better-auth/stripe": "^1.4.6",
"@kan/logger": "workspace:^",
"better-auth": "^1.4.6"
}
}

View File

@@ -7,8 +7,11 @@ import type { dbClient } from "@kan/db/client";
import * as memberRepo from "@kan/db/repository/member.repo";
import * as userRepo from "@kan/db/repository/user.repo";
import { notificationClient } from "@kan/email";
import { createLogger } from "@kan/logger";
import { createEmailUnsubscribeLink, createS3Client } from "@kan/shared";
const log = createLogger("auth");
import { downloadImage } from "./utils";
type BetterAuthUser = {
@@ -103,6 +106,7 @@ export function createDatabaseHooks(db: dbClient) {
const unsubscribeUrl = await createEmailUnsubscribeLink(user.id);
log.info({ workflowId: "user-signup", userId: user.id, email: user.email }, "Triggering Novu workflow");
await notificationClient.trigger({
to: {
subscriberId: user.id,
@@ -122,6 +126,7 @@ export function createDatabaseHooks(db: dbClient) {
},
workflowId: "user-signup",
});
log.info({ workflowId: "user-signup", userId: user.id }, "Novu workflow triggered");
await notificationClient.subscribers.credentials.update(
{
@@ -134,7 +139,7 @@ export function createDatabaseHooks(db: dbClient) {
user.id,
);
} catch (error) {
console.error("Error adding user to notification client", error);
log.error({ err: error }, "Error adding user to notification client");
}
}
},

View File

@@ -8,7 +8,10 @@ import * as subscriptionRepo from "@kan/db/repository/subscription.repo";
import * as userRepo from "@kan/db/repository/user.repo";
import * as workspaceRepo from "@kan/db/repository/workspace.repo";
import { sendEmail } from "@kan/email";
import { createLogger } from "@kan/logger";
import { generateUID } from "@kan/shared/utils";
const log = createLogger("auth");
import { createStripeClient } from "@kan/stripe";
import { socialProvidersPlugin } from "./providers";
@@ -101,9 +104,7 @@ export function createPlugins(db: dbClient) {
unlimitedSeats: true,
},
);
console.log(
`Pro subscription ${stripeSubscription.id} activated with unlimited seats`,
);
log.info({ subscriptionId: stripeSubscription.id }, "Pro subscription activated with unlimited seats");
const workspace = await workspaceRepo.getByPublicId(
db,
@@ -164,6 +165,13 @@ export function createPlugins(db: dbClient) {
: []),
apiKey({
enableSessionForAPIKeys: true,
customAPIKeyGetter: (ctx) => {
const authorization = ctx.headers?.get("authorization");
if (authorization?.startsWith("Bearer ")) {
return authorization.slice(7);
}
return ctx.headers?.get("x-api-key") ?? undefined;
},
rateLimit: {
enabled: true,
timeWindow: 1000 * 60, // 1 minute
@@ -175,11 +183,7 @@ export function createPlugins(db: dbClient) {
sendMagicLink: async ({ email, url }) => {
try {
const decodedUrl = decodeURIComponent(url);
console.log("Sending magic link to:", email, "URL:", url);
console.log(
"Magic link contains invite:",
decodedUrl.includes("type=invite"),
);
log.info({ email, isInvite: decodedUrl.includes("type=invite") }, "Sending magic link");
if (decodedUrl.includes("type=invite")) {
let inviterName = "";
let workspaceName = "";
@@ -211,7 +215,7 @@ export function createPlugins(db: dbClient) {
}
}
} catch (error) {
console.error("Failed to fetch invite details:", error);
log.error({ err: error }, "Failed to fetch invite details");
}
await sendEmail(
@@ -239,11 +243,7 @@ export function createPlugins(db: dbClient) {
);
}
} catch (error) {
console.error("Error sending magic link:", {
email,
url,
error,
});
log.error({ err: error, email }, "Error sending magic link");
}
},
}),
@@ -273,7 +273,7 @@ export function createPlugins(db: dbClient) {
picture?: string;
avatar?: string;
}) => {
console.log("OIDC profile:", profile);
log.debug({ profile }, "OIDC profile received");
const name =
profile.name ??

View File

@@ -4,8 +4,11 @@ import type Stripe from "stripe";
import type { dbClient } from "@kan/db/client";
import * as userRepo from "@kan/db/repository/user.repo";
import { notificationClient } from "@kan/email";
import { createLogger } from "@kan/logger";
import { createEmailUnsubscribeLink } from "@kan/shared";
const log = createLogger("auth");
export async function downloadImage(url: string): Promise<Buffer> {
const response = await fetch(url);
if (!response.ok) {
@@ -32,6 +35,7 @@ export async function triggerWorkflow(
const unsubscribeUrl = await createEmailUnsubscribeLink(user.id);
log.info({ workflowId, userId: user.id }, "Triggering Novu workflow");
await notificationClient.trigger({
to: {
subscriberId: user.id,
@@ -43,7 +47,8 @@ export async function triggerWorkflow(
},
workflowId,
});
log.info({ workflowId, userId: user.id }, "Novu workflow triggered");
} catch (error) {
console.error("Error triggering workflow", error);
log.error({ err: error, workflowId }, "Error triggering workflow");
}
}

View File

@@ -44,6 +44,7 @@
},
"dependencies": {
"@electric-sql/pglite": "^0.3.7",
"@kan/logger": "workspace:^",
"@kan/shared": "workspace:^",
"drizzle-orm": "^0.42.0",
"drizzle-zod": "^0.5.1",

View File

@@ -6,8 +6,12 @@ import { drizzle as drizzlePgLite } from "drizzle-orm/pglite";
import { migrate } from "drizzle-orm/pglite/migrator";
import { Pool } from "pg";
import { createLogger } from "@kan/logger";
import * as schema from "./schema";
const log = createLogger("db");
export type dbClient = NodePgDatabase<typeof schema> & {
$client: Pool;
};
@@ -16,7 +20,7 @@ export const createDrizzleClient = (): dbClient => {
const connectionString = process.env.POSTGRES_URL;
if (!connectionString) {
console.log("POSTGRES_URL environment variable is not set, using PGLite");
log.warn("POSTGRES_URL not set, falling back to PGLite");
const client = new PGlite({
dataDir: "./pgdata",

View File

@@ -402,8 +402,6 @@ export const softDeleteById = async (
.groupBy(lists.index)
.having(gt(countExpr, 1));
console.log(duplicateIndices);
if (duplicateIndices.length > 0) {
throw new Error(
`Duplicate indices found after reordering in board ${result.boardId}`,

View File

@@ -23,6 +23,7 @@
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
"@kan/logger": "workspace:^",
"@novu/api": "^3.11.0",
"@react-email/components": "^1.0.1",
"nodemailer": "^7.0.3",

View File

@@ -1,5 +1,8 @@
import { render } from "@react-email/render";
import nodemailer from "nodemailer";
import { createLogger } from "@kan/logger";
const log = createLogger("email");
import JoinWorkspaceTemplate from "./templates/join-workspace";
import MagicLinkTemplate from "./templates/magic-link";
@@ -44,6 +47,7 @@ export const sendEmail = async (
template: Templates,
data: Record<string, string>,
) => {
log.info({ to, subject, template }, "Sending email");
try {
const EmailTemplate = emailTemplates[template];
@@ -62,16 +66,10 @@ export const sendEmail = async (
throw new Error(`Failed to send email: ${response.response}`);
}
log.info({ to, subject, template, messageId: response.messageId }, "Email sent");
return response;
} catch (error) {
console.error("Email sending failed:", {
to,
from: process.env.EMAIL_FROM,
subject,
template,
error: error instanceof Error ? error.message : String(error),
stack: error instanceof Error ? error.stack : undefined,
});
log.error({ err: error, to, from: process.env.EMAIL_FROM, subject, template }, "Email sending failed");
throw error;
}
};

View File

@@ -0,0 +1,36 @@
{
"name": "@kan/logger",
"private": true,
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./src/index.ts"
}
},
"license": "GPL-3.0",
"scripts": {
"build": "tsc",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"dev": "tsc",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
"@axiomhq/js": "^1.4.0",
"@opentelemetry/api": "^1.9.0",
"pino": "^9.14.0",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@kan/eslint-config": "workspace:*",
"@kan/prettier-config": "workspace:*",
"@kan/tsconfig": "workspace:*",
"eslint": "catalog:",
"prettier": "catalog:",
"typescript": "catalog:"
},
"prettier": "@kan/prettier-config"
}

View File

@@ -0,0 +1,63 @@
import { Axiom } from "@axiomhq/js";
import { trace } from "@opentelemetry/api";
import pino from "pino";
const isDev = process.env.NODE_ENV !== "production";
const isCloud = process.env.NEXT_PUBLIC_KAN_ENV === "cloud";
const level = process.env.LOG_LEVEL || (isDev ? "debug" : "info");
const axiomToken = process.env.AXIOM_TOKEN;
const axiomDataset = process.env.AXIOM_DATASET;
const useAxiom = isCloud && !!axiomToken && !!axiomDataset;
function createAxiomStream(
token: string,
dataset: string,
): pino.DestinationStream {
const client = new Axiom({ token });
return {
write(msg: string) {
try {
client.ingest(dataset, [JSON.parse(msg) as Record<string, unknown>]);
} catch {
// ignore malformed log lines
}
},
};
}
export const logger = useAxiom
? pino(
{ level },
pino.multistream([
{ stream: process.stdout, level },
{ stream: createAxiomStream(axiomToken, axiomDataset), level },
]),
)
: pino({
level,
...(isDev && {
transport: {
target: "pino-pretty",
options: {
colorize: true,
ignore: "pid,hostname",
translateTime: "HH:MM:ss",
},
},
}),
});
function getTraceContext(): { traceId?: string; spanId?: string } {
try {
const span = trace.getActiveSpan();
if (!span) return {};
const ctx = span.spanContext();
return { traceId: ctx.traceId, spanId: ctx.spanId };
} catch {
return {};
}
}
export const createLogger = (module: string) =>
logger.child({ module, ...getTraceContext() });

View File

@@ -0,0 +1,6 @@
{
"extends": "@kan/tsconfig/internal-package.json",
"compilerOptions": {},
"include": ["*.ts", "src"],
"exclude": ["node_modules"]
}

View File

@@ -5,3 +5,4 @@ export * from "./email";
export * from "./dueDateFilters";
export * from "./s3";
export * from "./mentions";
export * from "./sanitize";

View File

@@ -0,0 +1,6 @@
/**
* Strips all HTML tags from a string, returning plain text.
* Use this on any user-supplied text field before storing or displaying.
*/
export const stripHtml = (value: string): string =>
value.replace(/<[^>]*>/g, "").trim();

1807
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -129,7 +129,10 @@
"BETTER_AUTH_TRUSTED_ORIGINS",
"NOVU_API_KEY",
"EMAIL_UNSUBSCRIBE_SECRET",
"REDIS_URL"
"REDIS_URL",
"LOG_LEVEL",
"AXIOM_TOKEN",
"AXIOM_DATASET"
],
"globalPassThroughEnv": [
"NODE_ENV",