Compare commits

..

1 Commits

Author SHA1 Message Date
Henry
3fe7758710 feat: add polish language support 2025-10-16 20:40:28 +01:00
2 changed files with 9 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ const Header = ({ isLoggedIn }: { isLoggedIn: boolean }) => {
const menuItems = [ const menuItems = [
{ label: t`Roadmap`, href: "/kan/roadmap", openInNewTab: true }, { label: t`Roadmap`, href: "/kan/roadmap", openInNewTab: true },
{ label: t`Features`, href: "/#features" }, { label: t`Features`, href: "#features" },
{ label: t`Pricing`, href: "/pricing" }, { label: t`Pricing`, href: "/pricing" },
{ label: t`Docs`, href: "https://docs.kan.bn", openInNewTab: true }, { label: t`Docs`, href: "https://docs.kan.bn", openInNewTab: true },
]; ];

View File

@@ -73,13 +73,13 @@ const FeatureComparisonTable = ({
kan: true, kan: true,
trello: false, trello: false,
}, },
{ key: "labels", label: t`Labels & filters`, kan: true, trello: true }, { key: "labels", label: t`Labels & filters`, kan: true, trello: false },
{ key: "checklists", label: t`Checklists`, kan: true, trello: true }, { key: "checklists", label: t`Checklists`, kan: true, trello: true },
{ {
key: "import", key: "import",
label: t`Import from Trello`, label: t`Import from Trello`,
kan: true, kan: true,
trello: false, trello: true,
}, },
{ {
key: "visibility", key: "visibility",
@@ -99,6 +99,12 @@ const FeatureComparisonTable = ({
kan: true, kan: true,
trello: false, trello: false,
}, },
{
key: "this-is-a-joke",
label: t`Owned by Atlassian`,
kan: false,
trello: true,
},
], ],
}, },
{ {
@@ -169,12 +175,6 @@ const FeatureComparisonTable = ({
kan: true, kan: true,
trello: false, trello: false,
}, },
{
key: "this-is-a-joke",
label: t`Owned by Atlassian`,
kan: false,
trello: true,
},
], ],
}, },
]; ];