From 61123f708d33a189f35324c0e7bddca66b83ab4c Mon Sep 17 00:00:00 2001 From: shiyue <935732994@qq.com> Date: Sun, 23 Aug 2026 15:05:45 +0800 Subject: [PATCH] fix: complete Chinese frontend localization --- apps/web/src/components/SideNavigation.tsx | 4 +- apps/web/src/components/WorkspaceMenu.tsx | 4 +- apps/web/src/locales/en/messages.json | 396 ++++++++++++++--- apps/web/src/locales/en/messages.ts | 2 +- apps/web/src/locales/index.ts | 3 +- apps/web/src/locales/zh-CN/messages.json | 406 +++++++++++++++--- apps/web/src/locales/zh-CN/messages.ts | 2 +- apps/web/src/pages/_app.tsx | 8 +- apps/web/src/providers/keyboard-shortcuts.tsx | 4 +- apps/web/src/providers/lingui.tsx | 2 +- apps/web/src/utils/i18n.ts | 9 +- .../components/DeleteBoardConfirmation.tsx | 3 +- .../views/board/components/MoveBoardForm.tsx | 2 +- .../board/components/VisibilityButton.tsx | 3 +- apps/web/src/views/board/index.tsx | 4 +- .../views/boards/components/BoardsList.tsx | 8 +- .../views/boards/components/NewBoardForm.tsx | 5 +- apps/web/src/views/boards/index.tsx | 19 +- 18 files changed, 721 insertions(+), 163 deletions(-) diff --git a/apps/web/src/components/SideNavigation.tsx b/apps/web/src/components/SideNavigation.tsx index c5619ed2..fc83c21a 100644 --- a/apps/web/src/components/SideNavigation.tsx +++ b/apps/web/src/components/SideNavigation.tsx @@ -28,6 +28,7 @@ import ButtonComponent from "~/components/Button"; import ReactiveButton from "~/components/ReactiveButton"; import UserMenu from "~/components/UserMenu"; import WorkspaceMenu from "~/components/WorkspaceMenu"; +import { useLinguiContext } from "~/providers/lingui"; import { useWorkspace } from "~/providers/workspace"; import { api } from "~/utils/api"; @@ -50,6 +51,7 @@ export default function SideNavigation({ }: SideNavigationProps) { const router = useRouter(); const { workspace } = useWorkspace(); + const { locale } = useLinguiContext(); const [isCollapsed, setIsCollapsed] = useState(false); const [isInitialised, setIsInitialised] = useState(false); @@ -143,7 +145,7 @@ export default function SideNavigation({ }, }, ], - [isDarkMode], + [isDarkMode, locale, router], ); const toggleCollapse = () => { diff --git a/apps/web/src/components/WorkspaceMenu.tsx b/apps/web/src/components/WorkspaceMenu.tsx index 888b5776..b59c7ea7 100644 --- a/apps/web/src/components/WorkspaceMenu.tsx +++ b/apps/web/src/components/WorkspaceMenu.tsx @@ -7,6 +7,7 @@ import { HiCheck, HiMagnifyingGlass } from "react-icons/hi2"; import { twMerge } from "tailwind-merge"; import { useKeyboardShortcut } from "~/providers/keyboard-shortcuts"; +import { useLinguiContext } from "~/providers/lingui"; import { useModal } from "~/providers/modal"; import { useWorkspace } from "~/providers/workspace"; import { api } from "~/utils/api"; @@ -20,6 +21,7 @@ export default function WorkspaceMenu({ }) { const { workspace, isLoading, availableWorkspaces, switchWorkspace } = useWorkspace(); + const { locale } = useLinguiContext(); const { openModal } = useModal(); const { data: hasPartnerSlot } = api.workspace.hasAvailablePartnerSlot.useQuery(); @@ -37,7 +39,7 @@ export default function WorkspaceMenu({ description: t`Open command menu`, group: "GENERAL" as const, }), - [], + [locale], ); const { tooltipContent: commandPaletteShortcutTooltipContent } = diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json index 9ffd1fcc..6d61c27a 100644 --- a/apps/web/src/locales/en/messages.json +++ b/apps/web/src/locales/en/messages.json @@ -37,26 +37,21 @@ 62 ] ], - "translation": "{0}" + "translation": "{0}", + "obsolete": true }, "JArWcF": { "message": "{0} | {1}", "placeholders": { "0": [ - "card?.title ?? t`Card`", - "isTemplate ? \"Templates\" : \"Boards\"" + "card?.title ?? t`Card`" ], "1": [ - "board?.name ?? t`Board`", - "workspace.name ?? t`Workspace`" + "board?.name ?? t`Board`" ] }, "comments": [], "origin": [ - [ - "src/views/boards/index.tsx", - 57 - ], [ "src/views/card/index.tsx", 321 @@ -126,7 +121,8 @@ 570 ] ], - "translation": "{0} not found" + "translation": "{0} not found", + "obsolete": true }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", @@ -144,6 +140,25 @@ ], "translation": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}" }, + "xbAVoi": { + "translation": "{boardLabel} | {0}", + "message": "{boardLabel} | {0}", + "placeholders": { + "0": [ + "workspace.name ?? t`Workspace`" + ], + "boardLabel": [ + "boardLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/index.tsx", + 58 + ] + ] + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { @@ -335,7 +350,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 56 + 57 ] ], "translation": "Actions" @@ -371,7 +386,7 @@ "origin": [ [ "src/views/boards/index.tsx", - 30 + 37 ], [ "src/views/settings/components/NewWebhookModal.tsx", @@ -1121,7 +1136,7 @@ "origin": [ [ "src/views/boards/index.tsx", - 31 + 38 ] ], "translation": "Archived" @@ -1188,7 +1203,24 @@ 36 ] ], - "translation": "Are you sure you want to delete this {0}?" + "translation": "Are you sure you want to delete this {0}?", + "obsolete": true + }, + "I/URsS": { + "translation": "Are you sure you want to delete this {boardTypeLabel}?", + "message": "Are you sure you want to delete this {boardTypeLabel}?", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 37 + ] + ] }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", @@ -1478,6 +1510,30 @@ ], "translation": "Blog Post" }, + "TwoUcd": { + "translation": "board", + "message": "board", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 17 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 17 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 35 + ], + [ + "src/views/boards/index.tsx", + 35 + ] + ] + }, "QD8opX": { "message": "Board", "placeholders": {}, @@ -1563,6 +1619,10 @@ "placeholders": {}, "comments": [], "origin": [ + [ + "src/views/board/index.tsx", + 570 + ], [ "src/views/public/board/index.tsx", 181 @@ -1669,11 +1729,23 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 49 + 50 ] ], "translation": "Board visibility updated" }, + "DaBhdY": { + "translation": "boards", + "message": "boards", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 18 + ] + ] + }, "8TveY+": { "message": "Boards", "placeholders": {}, @@ -1681,7 +1753,11 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 98 + 100 + ], + [ + "src/views/boards/index.tsx", + 34 ], [ "src/views/pricing/components/FeatureComparisonTable.tsx", @@ -1697,7 +1773,7 @@ "origin": [ [ "src/views/boards/components/BoardsList.tsx", - 66 + 68 ] ], "translation": "Boards you archive will appear here." @@ -2141,7 +2217,7 @@ ], [ "src/views/board/components/DeleteBoardConfirmation.tsx", - 44 + 45 ], [ "src/views/board/components/MoveBoardForm.tsx", @@ -3057,7 +3133,24 @@ 166 ] ], - "translation": "Create {0}" + "translation": "Create {0}", + "obsolete": true + }, + "d+ACJK": { + "translation": "Create {boardTypeLabel}", + "message": "Create {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 167 + ] + ] }, "vgdzLf": { "message": "Create another", @@ -3169,7 +3262,28 @@ 45 ] ], - "translation": "Create new {0}" + "translation": "Create new {0}", + "obsolete": true + }, + "O6v9mX": { + "translation": "Create new {boardTypeLabel}", + "message": "Create new {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 82 + ], + [ + "src/views/boards/index.tsx", + 46 + ] + ] }, "okpxfB": { "message": "Create new key", @@ -3250,7 +3364,7 @@ ], [ "src/components/WorkspaceMenu.tsx", - 176 + 178 ] ], "translation": "Create workspace" @@ -3535,7 +3649,7 @@ ], [ "src/views/board/components/DeleteBoardConfirmation.tsx", - 47 + 48 ], [ "src/views/card/components/DeleteCardConfirmation.tsx", @@ -4448,11 +4562,11 @@ "origin": [ [ "src/views/boards/components/NewBoardForm.tsx", - 77 + 78 ], [ "src/views/boards/components/NewBoardForm.tsx", - 92 + 93 ], [ "src/views/members/components/InviteMemberForm.tsx", @@ -4781,11 +4895,11 @@ "origin": [ [ "src/views/boards/components/NewBoardForm.tsx", - 78 + 79 ], [ "src/views/boards/components/NewBoardForm.tsx", - 93 + 94 ] ], "translation": "Failed to create board" @@ -5189,7 +5303,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 54 + 55 ] ], "translation": "General" @@ -5256,7 +5370,24 @@ 66 ] ], - "translation": "Get started by creating a new {0}" + "translation": "Get started by creating a new {0}", + "obsolete": true + }, + "sllapH": { + "translation": "Get started by creating a new {boardTypeLabel}", + "message": "Get started by creating a new {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 68 + ] + ] }, "zC8Whw": { "message": "Get started by creating a new list", @@ -5393,7 +5524,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 106 + 108 ], [ "src/pages/404.tsx", @@ -5421,7 +5552,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 130 + 132 ] ], "translation": "Go to members" @@ -5433,7 +5564,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 142 + 144 ] ], "translation": "Go to settings" @@ -5445,7 +5576,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 118 + 120 ] ], "translation": "Go to templates" @@ -5693,7 +5824,7 @@ "origin": [ [ "src/views/boards/index.tsx", - 82 + 83 ] ], "translation": "Import" @@ -6110,7 +6241,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 321 + 323 ] ], "translation": "Keyboard Shortcuts" @@ -6643,7 +6774,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 122 + 124 ], [ "src/views/board/components/Filters.tsx", @@ -6858,7 +6989,7 @@ ], [ "src/views/boards/components/NewBoardForm.tsx", - 134 + 135 ], [ "src/views/settings/components/NewWebhookModal.tsx", @@ -6878,7 +7009,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 55 + 56 ] ], "translation": "Navigation" @@ -6902,7 +7033,7 @@ "origin": [ [ "src/views/boards/index.tsx", - 104 + 105 ], [ "src/views/home/components/Features.tsx", @@ -6925,7 +7056,24 @@ 120 ] ], - "translation": "New {0}" + "translation": "New {0}", + "obsolete": true + }, + "DKeyWA": { + "translation": "New {boardTypeLabel}", + "message": "New {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 121 + ] + ] }, "TjREUS": { "message": "New API key", @@ -7113,7 +7261,24 @@ 63 ] ], - "translation": "No {0}" + "translation": "No {0}", + "obsolete": true + }, + "NcHwr6": { + "translation": "No {boardLabel}", + "message": "No {boardLabel}", + "placeholders": { + "boardLabel": [ + "boardLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 65 + ] + ] }, "tlhgDC": { "message": "No archived boards", @@ -7122,7 +7287,7 @@ "origin": [ [ "src/views/boards/components/BoardsList.tsx", - 63 + 65 ] ], "translation": "No archived boards" @@ -7194,7 +7359,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 334 + 336 ] ], "translation": "No keyboard shortcuts registered." @@ -7366,7 +7531,7 @@ "origin": [ [ "src/components/WorkspaceMenu.tsx", - 37 + 39 ] ], "translation": "Open command menu" @@ -7378,7 +7543,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 172 + 174 ] ], "translation": "Open keyboard shortcuts" @@ -7938,7 +8103,7 @@ ], [ "src/views/board/components/VisibilityButton.tsx", - 57 + 58 ], [ "src/views/board/index.tsx", @@ -8235,6 +8400,18 @@ ], "translation": "Privacy policy" }, + "3KKSM4": { + "translation": "private", + "message": "private", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 45 + ] + ] + }, "zwBp5t": { "message": "Private", "placeholders": {}, @@ -8242,7 +8419,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 84 + 85 ] ], "translation": "Private" @@ -8319,6 +8496,18 @@ ], "translation": "Profile picture" }, + "qvFa8r": { + "translation": "public", + "message": "public", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 45 + ] + ] + }, "7d1a0d": { "message": "Public", "placeholders": {}, @@ -8326,7 +8515,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 79 + 80 ] ], "translation": "Public" @@ -9153,7 +9342,7 @@ ], [ "src/components/SideNavigation.tsx", - 134 + 136 ] ], "translation": "Settings" @@ -9541,15 +9730,15 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 228 + 230 ], [ "src/components/SideNavigation.tsx", - 229 + 231 ], [ "src/components/SideNavigation.tsx", - 239 + 241 ] ], "translation": "Start free trial" @@ -9734,6 +9923,30 @@ ], "translation": "Teams" }, + "1ZwmkP": { + "translation": "template", + "message": "template", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 17 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 17 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 35 + ], + [ + "src/views/boards/index.tsx", + 35 + ] + ] + }, "/K2CvV": { "message": "Template", "placeholders": {}, @@ -9798,6 +10011,30 @@ ], "translation": "Template name is required" }, + "p2sbyZ": { + "translation": "Template not found", + "message": "Template not found", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/index.tsx", + 570 + ] + ] + }, + "UZREi+": { + "translation": "templates", + "message": "templates", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 18 + ] + ] + }, "iTylMl": { "message": "Templates", "placeholders": {}, @@ -9805,7 +10042,11 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 110 + 112 + ], + [ + "src/views/boards/index.tsx", + 34 ], [ "src/views/home/components/Features.tsx", @@ -9938,7 +10179,7 @@ "message": "The board has been moved to {0}.", "placeholders": { "0": [ - "targetWorkspace?.name ?? \"the workspace\"" + "targetWorkspace?.name ?? t`the workspace`" ] }, "comments": [], @@ -10064,7 +10305,36 @@ 50 ] ], - "translation": "The visibility of your board has been set to {0}." + "translation": "The visibility of your board has been set to {0}.", + "obsolete": true + }, + "7ENRJu": { + "translation": "The visibility of your board has been set to {visibilityLabel}.", + "message": "The visibility of your board has been set to {visibilityLabel}.", + "placeholders": { + "visibilityLabel": [ + "visibilityLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 51 + ] + ] + }, + "VTpWX6": { + "translation": "the workspace", + "message": "the workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/MoveBoardForm.tsx", + 34 + ] + ] }, "FEr96N": { "message": "Theme", @@ -10101,7 +10371,7 @@ ], [ "src/views/board/components/DeleteBoardConfirmation.tsx", - 39 + 40 ], [ "src/views/card/components/DeleteCardConfirmation.tsx", @@ -10821,7 +11091,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 56 + 57 ] ], "translation": "Unable to update board visibility" @@ -11486,7 +11756,7 @@ "origin": [ [ "src/views/boards/components/NewBoardForm.tsx", - 154 + 155 ] ], "translation": "Use template" @@ -11618,7 +11888,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 103 + 104 ] ], "translation": "Visibility" @@ -11903,7 +12173,7 @@ ], [ "src/views/boards/index.tsx", - 57 + 58 ], [ "src/views/members/index.tsx", @@ -12276,7 +12546,7 @@ ], [ "src/views/board/components/VisibilityButton.tsx", - 72 + 73 ], [ "src/views/board/index.tsx", @@ -12288,15 +12558,15 @@ ], [ "src/views/boards/components/BoardsList.tsx", - 71 + 73 ], [ "src/views/boards/index.tsx", - 68 + 69 ], [ "src/views/boards/index.tsx", - 89 + 90 ] ], "translation": "You don't have permission" diff --git a/apps/web/src/locales/en/messages.ts b/apps/web/src/locales/en/messages.ts index b1a7a39e..0a572707 100644 --- a/apps/web/src/locales/en/messages.ts +++ b/apps/web/src/locales/en/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"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.\"],\"+5kO8P\":[\"Saturday\"],\"+8Nek/\":[\"Monthly\"],\"+A6Wuq\":[\"Your license is not active. Please check your account.\"],\"+EkBs0\":[\"We couldn't update your preferences. Please try again.\"],\"+MdEsf\":[\"New password is required\"],\"+OhFss\":[\"Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.\"],\"+VoTOr\":[\"billed monthly\"],\"+djOzj\":[\"Invite member\"],\"+h2faV\":[\"Settings | Webhooks\"],\"+jbXzb\":[\"Your projects have been imported.\"],\"+nvZ6j\":[\"Labels & Filters\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Template\"],\"/asTmx\":[\"Bug Report\"],\"/bBVaD\":[\"GitHub disconnected\"],\"/bZzdR\":[\"Mentions\"],\"/f3t6v\":[\"Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"No \",[\"0\"]],\"/jd3aj\":[\"Advanced admin roles\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.\"],\"/tOdd2\":[\"Your profile image has been updated.\"],\"0+0/3e\":[\"Create new label\"],\"0+ewPp\":[\"Enhancement\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Duplicating…\"],\"0KjpAr\":[\"Can view members\"],\"0RE1AJ\":[\"Boards you archive will appear here.\"],\"0StR7t\":[\"Enter your new password\"],\"0jV46i\":[\"Unable to delete checklist item\"],\"0qyZ4b\":[\"Loading permissions...\"],\"0rPv1T\":[\"Profile image updated\"],\"0utuU6\":[\"Copy checklists\"],\"0xD8Of\":[\"The page you're looking for doesn't exist or has been moved.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Import board (1)\"],\"other\":[\"Import boards (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Adding a new member will cost an additional \",[\"price\"],\" (\",[\"billingType\"],\") per seat.\"],\"1H5u1m\":[\"Questions?\"],\"1WuwiM\":[\"Go to settings\"],\"1bJKhj\":[\"Copy link to card\"],\"1hzdxO\":[\"Workspace permissions\"],\"1iShX0\":[\"Due today\"],\"1njn7W\":[\"Light\"],\"1rVAfU\":[\"Load more activities\"],\"1rWxEw\":[\"Awaiting Customer\"],\"1sRmLC\":[\"Discuss and collaborate on cards.\"],\"1wCGT0\":[\"Unlimited boards\"],\"23nvb2\":[\"Unable to delete webhook\"],\"25fAUC\":[\"Your unsubscribe link is missing a token. Please open the latest email and try again.\"],\"25mvI+\":[\"Invite links require a Team or Pro subscription. Please upgrade your workspace.\"],\"29sSki\":[\"completed checklist item <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"List\"],\"2Bu8xj\":[\"No boards found\"],\"2M84k3\":[\"Custom permissions\"],\"2MPcep\":[\"Import complete\"],\"2POOFK\":[\"Free\"],\"2Py5S/\":[\"I acknowledge that all of the workspace data will be permanently deleted and want to proceed.\"],\"2Q871c\":[\"Unable to add label\"],\"2QGEbi\":[\"Unable to delete comment\"],\"2SePRT\":[\"You've been invited to join a workspace on kan.bn.\"],\"2X4ecw\":[\"Webhook deleted successfully\"],\"2gHjVM\":[\"Set Password\"],\"2h4PVB\":[\"Your workspace name has been updated.\"],\"2liqDZ\":[\"I acknowledge that all of my account data will be permanently deleted and want to proceed.\"],\"2q/Q7x\":[\"Visibility\"],\"2roTVj\":[\"Feedback sent\"],\"3LDCpD\":[\"This action can't be undone.\"],\"3WXdoZ\":[\"You can always change these later in settings.\"],\"3ZjRJY\":[\"renamed checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Anyone with this link can join your workspace\"],\"3d54Wj\":[\"Webhook updated successfully\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connect GitHub\"],\"3pIq39\":[\"Admin roles\"],\"4+JaWo\":[\"Start free trial\"],\"479pdJ\":[\"Confirm your new password\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"Small\"],\"4RoY9J\":[\"Blog Post\"],\"4XF0BB\":[\"Profile picture\"],\"4dGN6E\":[\"Sign in or create an account to activate your license\"],\"4gAX8s\":[\"Toggle menu\"],\"4kJRen\":[\"Writing\"],\"4obmDr\":[\"404 - Page Not Found | kan.bn\"],\"51UCsN\":[\"Move to another list\"],\"53QYh8\":[\"Failed to create board\"],\"55xJ/O\":[\"Error Changing Password\"],\"58AiWX\":[\"Please confirm your new password\"],\"5ACX4z\":[\"Newsletter\"],\"5EMoSo\":[\"Choose plan\"],\"5IXWmO\":[\"Check your inbox\"],\"5MPY04\":[\"Unable to copy ID\"],\"5P4rhH\":[\"Unable to update members\"],\"5RkSzq\":[\"Copy board link\"],\"5eZwRW\":[\"Connect your Trello account to import boards.\"],\"5h8ooz\":[\"API keys\"],\"5iplxh\":[\"New password must be different from current password\"],\"5k0NLb\":[\"Review\"],\"5lWFkC\":[\"Sign in\"],\"5ntVtp\":[\"Failed to test webhook\"],\"5y6qY8\":[\"added an attachment\"],\"66Jmqh\":[\"Seat limit reached\"],\"69b7aE\":[\"Open command menu\"],\"6EWT6T\":[\"Recruitment\"],\"6FDocz\":[\"Sign up with \"],\"6FsGbN\":[\"Get started by creating a new \",[\"0\"]],\"6OTo9n\":[\"Template name is required\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"New \",[\"0\"]],\"6YtxFj\":[\"Name\"],\"6mbe4b\":[\"Individuals\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"The member's permissions have been updated.\"],\"6uBU1F\":[\"Full API access\"],\"6zeSBB\":[\"Can create cards\"],\"74F7N/\":[\"Are you sure you want to delete your account?\"],\"7EhE4k\":[\"Update label\"],\"7L01XJ\":[\"Actions\"],\"7PzzBU\":[\"User\"],\"7RpHg/\":[\"Custom username\"],\"7Ufoyg\":[\"Unlimited lists\"],\"7aONWr\":[\"URL cannot exceed 2048 characters\"],\"7b2yuC\":[\"Please enter a valid password\"],\"7d1a0d\":[\"Public\"],\"7eMo+U\":[\"Go Home\"],\"7hktsm\":[\"Getting started\"],\"7i8j3G\":[\"Company\"],\"7mrkyO\":[\"Copy ticket ID\"],\"7sdSkl\":[\"We sent a link to \",[\"magicLinkRecipient\"]],\"8+BY11\":[\"Board URL copied to clipboard\"],\"86FLn5\":[\"Unlimited file uploads\"],\"86XI28\":[\"Confirm your email preferences:\"],\"8AbRER\":[\"Set due date\"],\"8AwlaR\":[\"Unlimited members and a custom workspace username for teams ready to scale.\"],\"8F1i42\":[\"Page not found\"],\"8Is1ih\":[\"Launch offer\"],\"8LLt89\":[\"Free (1 member)\"],\"8RdLDU\":[\"Personal Project\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Can create lists\"],\"8Zjc7q\":[\"Your account already has a password. You can change it from your account settings.\"],\"8iP0S8\":[\"Everything in the free plan, plus:\"],\"8iP9oQ\":[\"Webhook test failed\"],\"8yFGGF\":[\"Unable to remove member\"],\"99VIgC\":[\"Remove member\"],\"9PaIxv\":[\"Core features\"],\"9Xigls\":[\"Under Review\"],\"9YPBHv\":[\"Failed to delete webhook\"],\"9cDpsw\":[\"Permissions\"],\"9eF5oV\":[\"Welcome back\"],\"9h7RDh\":[\"Offer\"],\"9lFfqv\":[\"/month\"],\"9s9O5h\":[\"Error deleting workspace\"],\"9trBXW\":[\"Card duplicated successfully.\"],\"9u5BOr\":[\"Members | \",[\"0\"]],\"9wdpwp\":[\"Billing portal\"],\"9x4DAL\":[[\"0\"],\" not found\"],\"9y1RcT\":[\"We're just getting started. \"],\"A23Y7X\":[\"Join workspace | kan.bn\"],\"A42Dqn\":[\"Custom branding\"],\"A5hiCy\":[\"Create template\"],\"A8jqN7\":[\"Unable to send feedback\"],\"ABCjd9\":[\"Publishing\"],\"ADEin1\":[\"Settings | Billing\"],\"ALhEZV\":[\"Can invite members\"],\"ANyn0x\":[\"Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.\"],\"ARvBT/\":[\"billed annually\"],\"ASjvm9\":[\"Workspace URL\"],\"AUYALh\":[\"Coming soon\"],\"AX4ktp\":[\"Content Creation\"],\"AZI/wb\":[\"Labels & filters\"],\"AdxYds\":[\"Your GitHub account has been disconnected.\"],\"AeXO77\":[\"Account\"],\"AgE2vR\":[\"Card member assignments will be cleared when moving to a different workspace.\"],\"Alp2ti\":[\"Contact Sales\"],\"Ax/hYa\":[\"Workspace description cannot exceed 280 characters\"],\"B3xxao\":[\"Add a card\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Import failed\"],\"BJbLe4\":[\"We are using the <0>AGPL-3.0 license.\"],\"BMkVQ3\":[\"deleted checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"moved the card from <0>\",[\"0\"],\" to<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicate card\"],\"BZkYSt\":[\"removed \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Are you sure you want to delete the workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contact us\"],\"BzEFor\":[\"or\"],\"C56tim\":[\"Unable to update due date\"],\"C6gv54\":[\"The board has been unarchived.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"High Priority\"],\"CHZ1jC\":[\"deleted checklist item <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Please enter a valid name\"],\"CJWDTP\":[\"Your Trello account has been disconnected.\"],\"CJukzS\":[[\"0\"],\" labels\"],\"CTqTgr\":[\"Shortcuts\"],\"CYWHT+\":[\"Error uploading profile image\"],\"Cd4sTD\":[\"Best for individuals and solo creators getting started\"],\"Ci/KUX\":[\"Settings | Workspace\"],\"CkVV1t\":[\"Error updating workspace description\"],\"Cmudpi\":[\"Can delete workspace\"],\"CozWO1\":[\"Workspace name\"],\"CujNX4\":[\"added an attachment <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Activity log\"],\"D3C4Yx\":[\"Current password is required\"],\"D7/JvJ\":[\"Adjust the square crop to fit your avatar.\"],\"D9ROdV\":[\"Invite links\"],\"DAV3uK\":[\"Permissions updated\"],\"DBC3t5\":[\"Sunday\"],\"DFjdv0\":[\"Delete template\"],\"DMeWZD\":[\"Are you sure you want to delete this \",[\"0\"],\"?\"],\"DPfwMq\":[\"Done\"],\"DSGzV+\":[\"Workspace username\"],\"DahTzR\":[\"Unable to delete checklist\"],\"DbZgsJ\":[\"Make template\"],\"DtXlZq\":[\"Unable to update checklist\"],\"Dz63YI\":[\"An error occurred while disconnecting your GitHub account.\"],\"E0t3jO\":[\"added checklist item <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Per-seat pricing\"],\"E8zYtd\":[\"unassigned <0>\",[\"0\"],\" from the card\"],\"ECJKc4\":[\"API key created\"],\"EEHmPC\":[\"Launch offer: Get unlimited members with Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"All Teams features +\"],\"ERpq2P\":[\"No results found for \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Priority email support\"],\"Eg99Sc\":[\"No authentication methods are currently available\"],\"Eit43O\":[\"set the due date\"],\"EkH9pt\":[\"Update\"],\"EuK5ez\":[\"Your password has been set.\"],\"EvArWh\":[\"Collaborate seamlessly with your team.\"],\"F/FPk/\":[\"Settings | Permissions\"],\"F/vB2g\":[\"Ideas to improve this page...\"],\"F0YmUY\":[\"Copy card link\"],\"F3bW6y\":[\"Platform\"],\"F4KRmY\":[\"$8/month\"],\"F4PLG4\":[\"Workspace description updated\"],\"F6m23G\":[\"File uploads\"],\"F6pfE9\":[\"Active\"],\"F8DaWi\":[\"View only\"],\"FEr96N\":[\"Theme\"],\"FdtSNC\":[\"Create workspace\"],\"FmN5me\":[\"Resolution\"],\"FmfJjN\":[\"View and manage your API keys.\"],\"Fpci8b\":[\"Are you sure you want to delete this checklist?\"],\"G1Gw0v\":[\"New template\"],\"GAD3Dx\":[\"Custom domain\"],\"GDvlUT\":[\"Role\"],\"GRAGsB\":[\"Your workspace\"],\"GXGbXi\":[\"Set a password to enable password-based login.\"],\"GYv20o\":[\"Unable to update permissions\"],\"GdWB+V\":[\"Webhook created successfully\"],\"GdgCoi\":[\"Plan\"],\"GnG6Oy\":[\"members\"],\"GnRmu4\":[\"Checklist name\"],\"GnSSGm\":[\"Your workspace description has been updated.\"],\"GoDLB9\":[\"Your account has been deleted.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Extended Roadmap\"],\"Gxxi5J\":[\"Add checklist\"],\"H5G+qG\":[\"What's the difference between Kan and Trello?\"],\"HBI6nY\":[\"Need help?\"],\"HO+uOC\":[\"Triaging\"],\"HOMO91\":[\"No license key was provided. Please try activating again.\"],\"HQVm6e\":[\"This URL has already been taken\"],\"HVIzNO\":[\"Can view lists\"],\"HYV6Lq\":[\"Failed to accept invitation. Please try again later, or contact customer support.\"],\"HcT8J4\":[\"Your GitHub account has been connected.\"],\"HeFWjW\":[\"Next Steps\"],\"Hf1cEZ\":[\"Webhook URL is required\"],\"Hg1qE9\":[\"Your workspace slug has been updated.\"],\"I+AROe\":[\"Can edit cards\"],\"I0gAKM\":[\"Unable to update list\"],\"IDvohQ\":[\"marked a checklist item as incomplete\"],\"IFgUX6\":[\"Can remove members\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Upgrade to Pro\"],\"InJcdo\":[\"Test failed\"],\"Iqh0Uv\":[\"Planned\"],\"IqjpYe\":[\"Email visibility\"],\"IrZaAn\":[\"Password Changed\"],\"It4/FS\":[\"Unarchive board\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continue with \"],\"J4+OTA\":[\"Move to list\"],\"J5nbej\":[\"Critical\"],\"J5pbP6\":[\"Can edit member roles and permissions\"],\"J9+zIR\":[\"Something went wrong during activation. Please try again.\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Feature Request\"],\"JEt3q7\":[\"Activate | kan.bn\"],\"JUce1S\":[\"Assignees\"],\"JbXXUW\":[\"Keep in mind that this action is irreversible.\"],\"JcCDm9\":[\"Template created\"],\"Jgaz7E\":[\"Permissions reset\"],\"JjEJSy\":[\"Set up your workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3LUJr\":[\"License activation failed\"],\"K3iLeO\":[\"See what our users are saying about Kan\"],\"K7k9u3\":[\"Unable to move card\"],\"KAsRdK\":[\"Go to members\"],\"KEim/+\":[\"removed an attachment\"],\"KFJgmZ\":[\"Display name must be at least 3 characters long\"],\"KLJ4eD\":[\"Invite link copied\"],\"KM6m8p\":[\"Team\"],\"KNK33q\":[\"Unable to test webhook\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Advanced admin controls\"],\"KiVc+q\":[\"Full-time\"],\"KuSt9W\":[\"How do I self-host?\"],\"L5WQLg\":[\"Token is required\"],\"L5ZPjz\":[\"updated a checklist item\"],\"LTGE7Y\":[\"Workspace created successfully. You can upgrade later in settings.\"],\"LeM5RY\":[\"Unable to clear overrides\"],\"LnaC5y\":[\"Webhook deleted\"],\"LoUCpj\":[\"Error updating workspace name\"],\"LqWW5F\":[\"Your display name has been updated.\"],\"LrcnbT\":[\"Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.\"],\"Lt+ZP3\":[\"completed a checklist item\"],\"M2zwdn\":[\"Inviting members requires a Team or Pro plan. You'll be redirected to upgrade your workspace.\"],\"M9p3Vw\":[\"Unlimited activity log\"],\"MCIXdZ\":[\"Connect your GitHub account to import projects.\"],\"MFKlMB\":[\"Invite\"],\"MHrjPM\":[\"Title\"],\"MI5OBT\":[\"URL can only contain letters, numbers, and hyphens\"],\"MK16u2\":[\"No dates\"],\"MKAScN\":[\"Can view boards\"],\"MN6YzG\":[\"Workspace slug updated\"],\"MWrbWq\":[\"Settings | Account\"],\"MdN5zD\":[\"You need to be an admin to manage workspace permissions.\"],\"MdwUGG\":[\"Save time with reusable board templates.\"],\"MeO/vH\":[\"This will result in the permanent deletion of all data associated with this workspace.\"],\"MlyjJu\":[\"Display name cannot exceed 280 characters\"],\"MpFIca\":[\"seats\"],\"MxQXhL\":[\"Unable to create workspace\"],\"N/bcWA\":[\"Login | kan.bn\"],\"N3380t\":[\"Can create boards\"],\"N7aud6\":[\"Intelligent search\"],\"NH54UR\":[\"renamed checklist item to <0>\",[\"0\"],\"\"],\"NM2hyD\":[\"Select a workspace\"],\"NcFrgC\":[\"The board has been archived.\"],\"NgaR6B\":[\"Enter your password\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inactive\"],\"NwiNTb\":[\"member\"],\"NypLoL\":[\"renamed a checklist\"],\"O0li0W\":[\"Enter your current password and choose a new secure password.\"],\"O1wAlQ\":[\"Guest\"],\"O3oNi5\":[\"Email\"],\"O83K21\":[\"added a checklist item\"],\"O9jVbx\":[\"Low Priority\"],\"OAYToL\":[\"This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.\"],\"OIA0ad\":[\"Workspace name updated\"],\"OTxjpR\":[\"your-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Disconnect GitHub\"],\"Oi+J+N\":[\"Pick a plan to get started. All paid plans include a 14-day free trial.\"],\"OkTY4+\":[\"Secret cannot exceed 512 characters\"],\"Oo4E6p\":[\"Unable to duplicate card\"],\"OpNhRn\":[\"No credit card required\"],\"OtjenF\":[\"Please enter a valid email address\"],\"OvoEq7\":[\"Member\"],\"OwneeH\":[\"Custom workspace username\"],\"Ozt2vv\":[\"Your password has been changed.\"],\"P6dJdq\":[\"Overrides cleared\"],\"P8Cunr\":[\"Default username\"],\"PCIlOO\":[\"Add member\"],\"PELbXB\":[\"Your GitHub account is connected.\"],\"PRjvDT\":[\"Are you sure you want to delete this comment?\"],\"PRofO0\":[\"Edit YouTube Video\"],\"PTzsxH\":[\"Board visibility updated\"],\"PV7XRK\":[\"This workspace has reached its member limit. The workspace owner will need to upgrade their plan.\"],\"PVT7q7\":[\"GitHub connected\"],\"PZCqeW\":[\"Please try again later.\"],\"Pat4r8\":[\"Basic Roadmap\"],\"PpZkda\":[\"Features\"],\"PyYD/v\":[\"assigned <0>\",[\"0\"],\" to the card\"],\"Q60WUZ\":[\"Unable to start checkout\"],\"Q9pQaX\":[\"No roles found for this workspace yet.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Template created successfully\"],\"QNtP5M\":[\"Use template\"],\"Qh7QmR\":[\"Removed from favorites\"],\"QnzD50\":[\"On-premise\"],\"QriiAI\":[\"You've reached your \",[\"0\"],\"-seat limit. Please upgrade your plan to add more members.\"],\"QtACvI\":[\"Create label\"],\"Qtzfdk\":[\"Pro Plan ∞\"],\"R+w/Va\":[\"Billing\"],\"R1c3Mq\":[\"Board name is required\"],\"R275Pz\":[\"You have unlimited seats with your Pro Plan. There is no additional charge for new members!\"],\"R3FsF4\":[\"Download failed\"],\"R41XLH\":[\"Failed to update webhook\"],\"R6pB8R\":[\"Star on Github\"],\"RHZu7R\":[\"Loved by teams worldwide\"],\"RJA+sg\":[\"New Ticket\"],\"RRn9jf\":[\"Click on the link we've sent to \",[\"magicLinkRecipient\"],\" to sign in.\"],\"RSGOS1\":[\"Can delete lists\"],\"RfgJqw\":[\"updated the due date\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Send feedback\"],\"RtlIYB\":[\"You are about to change your password.\"],\"RzxgOE\":[\"Roles & permissions\"],\"S3wq2O\":[\"Move to workspace\"],\"SFnH1j\":[\"Why make an open source Trello?\"],\"SMaFdc\":[\"Unsubscribe\"],\"SNfg0e\":[\"Can view workspace\"],\"SPLN9O\":[\"Own your data\"],\"SRvxId\":[\"HMAC secret for signature verification\"],\"STSYcd\":[\"Can delete comments\"],\"SUXBxp\":[\"Engineering\"],\"SUvm1Y\":[\"Good for individuals starting out who just need the essentials.\"],\"SWEskc\":[\"URL must be at least 3 characters long\"],\"Sb2gYF\":[\"New list\"],\"ScJ9fj\":[\"Privacy policy\"],\"Se/UIp\":[\"To Do\"],\"SiPp29\":[\"Create webhook\"],\"SkCNhl\":[\"Search boards and cards...\"],\"SlfejT\":[\"Error\"],\"T/pF0Z\":[\"Remove from favorites\"],\"T21jY/\":[\"added a label to the card\"],\"T7DJ2k\":[\"Unable to add comment\"],\"T7LJic\":[\"moved the card to another list\"],\"T7Mywq\":[\"Unable to update board\"],\"TCOMOO\":[\"Edit permissions\"],\"TCt/8K\":[\"Limited API access\"],\"TFv5tM\":[\"Unable to update role\"],\"TH3Irz\":[\"Permission\"],\"TKFUnX\":[\"Account deleted\"],\"TX0bT7\":[\"No webhooks configured. Add a webhook to receive notifications.\"],\"TXO5TM\":[\"No keyboard shortcuts registered.\"],\"TYli1B\":[\"Can edit comments\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code Review\"],\"TdfEV7\":[\"Archived\"],\"TjREUS\":[\"New API key\"],\"TmvrjU\":[\"Board URL must be at least 3 characters long\"],\"TvY/XA\":[\"Documentation\"],\"Tz0i8g\":[\"Settings\"],\"TztLaN\":[\"Unable to create list\"],\"U2+rn0\":[\"Webhook name is required\"],\"U3pytU\":[\"Admin\"],\"U5dMR6\":[\"View workspace\"],\"UCLeG0\":[\"Terms of service\"],\"UGCIzB\":[\"Add / edit label\"],\"UQbwrz\":[\"All systems operational\"],\"URAE3q\":[\"Paused\"],\"USVCGU\":[\"Error deactivating invite link\"],\"UbRKMZ\":[\"Pending\"],\"UbYdrA\":[\"Payment frequency\"],\"UeDFpo\":[\"How is the project funded?\"],\"Uf+1DF\":[\"Destination workspace\"],\"UirJfL\":[\"Custom SLA\"],\"UlhdTP\":[\"Workspace deleted\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Best for small and growing teams that need collaboration\"],\"UveK6V\":[\"Go to app\"],\"Uworke\":[\"Part-time\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"Email notifications for mentions\"],\"V1o9Jo\":[\"Unable to update webhook\"],\"V3MPSQ\":[\"updated the title\"],\"V8YWP3\":[\"Enter a custom title\"],\"VHS0aJ\":[\"Clear all custom permissions?\"],\"VKoDQD\":[\"Create new \",[\"0\"]],\"VOwhhz\":[\"ID copied\"],\"VUZDlr\":[\"Testimonials\"],\"VXk54Y\":[\"self-assigned the card\"],\"VbyRUy\":[\"Comments\"],\"VhMDMg\":[\"Change Password\"],\"Vt50G1\":[\"Basic Kanban\"],\"VvCMyU\":[\"Move board to another workspace\"],\"W/Elkg\":[\"Medium Priority\"],\"W/nQk1\":[\"Free Plan\"],\"W1ewR0\":[\"Unable to copy link\"],\"W5r8Qh\":[\"deleted a checklist item\"],\"W8oT+L\":[\"Failed to fetch video information\"],\"WHHLh9\":[\"Unable to delete attachment\"],\"WI4eGo\":[\"How do I get a custom URL?\"],\"WQPDcG\":[\"Unable to update checklist item\"],\"WRkpB1\":[\"Sign up disabled\"],\"WRsbHO\":[\"Your Trello account is connected.\"],\"WYDptz\":[\"Subscription Required\"],\"WYwN1G\":[\"New import\"],\"WbTDwg\":[\"In Progress\"],\"Weq9zb\":[\"General\"],\"WmPhYW\":[\"An error occurred while disconnecting your Trello account.\"],\"WnEwDO\":[\"Already have an account? <0><1>Sign in\"],\"Ws+3X+\":[\"Unlimited seats and advanced features for growing teams.\"],\"Wy6pcF\":[\"Unable to update board visibility\"],\"X0N0PA\":[\" (edited)\"],\"XDRXbZ\":[\"Workspace description must be at least 3 characters long\"],\"XEoGkQ\":[\"Go to homepage\"],\"XILg0L\":[\"Invalid email address\"],\"XJOV1Y\":[\"Activity\"],\"XNxYxq\":[\"Board templates\"],\"XTKtey\":[\"Create list\"],\"XXbgHS\":[\"Hired\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Due date\"],\"Xid3K6\":[\"Board URL can only contain letters, numbers, and hyphens\"],\"Xjj/kS\":[\"Kanban reimagined\"],\"Xlkxmi\":[\"Password Set\"],\"XpcjLO\":[\"Unable to update board URL\"],\"Y8yzGg\":[\"Start free. Upgrade as your team grows. No hidden fees, no contracts.\"],\"YBBifR\":[\"Disconnect Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Unable to reorder checklist item\"],\"YRk79X\":[\"Advanced security, compliance, and dedicated support for large organizations.\"],\"YVT40D\":[\"removed label <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Error upgrading subscription\"],\"YcyP2z\":[\"Unable to create template\"],\"Yf9FAx\":[\"They won't be able to access this workspace.\"],\"YhvWXb\":[\"Board analytics\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Annual\"],\"YoyKbT\":[\"This API key will only be shown once. Please save it in a secure location.\"],\"Ypy5pZ\":[\"Are you sure you want to delete the webhook \\\"\",[\"webhookName\"],\"\\\"? This action cannot be undone.\"],\"YtUfwW\":[\"Failed to login with \",[\"0\"],\". Please try again.\"],\"Yx0Ud8\":[\"Requested\"],\"Z3FXyt\":[\"Loading...\"],\"Z3krJD\":[\"Allow workspace members to see each other's email addresses\"],\"Z6r9z1\":[\"Unable to delete card\"],\"ZAs2NN\":[\"All Pro features +\"],\"ZDGm40\":[\"Delete account\"],\"ZDIydz\":[\"Get started\"],\"ZDPJBc\":[\"Custom usernames require upgrading to a Pro plan\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Card title\"],\"ZL1A+p\":[\"Failed to upload attachment. Please try again.\"],\"ZT4Khw\":[\"Are you sure you want to delete this card?\"],\"ZU5IYI\":[\"Unlimited boards, unlimited lists, unlimited cards. No credit card required.\"],\"ZWk38w\":[\"The board has been moved to \",[\"0\"],\".\"],\"ZXSPJt\":[\"An unexpected error occurred. Please try again later.\"],\"ZhQoZn\":[\"You signed in without a password. Set a password to enable password-based login.\"],\"ZqDqbi\":[\"Organize and find cards quickly with powerful filtering tools.\"],\"Zz1qkk\":[\"Unlimited cards\"],\"a3LDKx\":[\"Security\"],\"aDzbuM\":[\"License activated\"],\"aHCEmh\":[\"Pricing\"],\"aHRWVI\":[\"removed the due date\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Archive board\"],\"aW3TOw\":[\"Email notifications\"],\"aWDhU5\":[\"Kanban is better with a team. Perfect for small and growing teams looking to collaborate.\"],\"aWlSc/\":[\"Create new list\"],\"abUZlY\":[\"Add details...\"],\"aelko+\":[\"You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!\"],\"agPptk\":[\"Medium\"],\"aiHZVP\":[\"View docs\"],\"an6ayw\":[\"Webhook created\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Upload failed\"],\"b5FKyH\":[\"added label <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Create \",[\"0\"]],\"bD8I7O\":[\"Complete\"],\"bDI6VI\":[[\"0\"],\" has been removed from your favorites.\"],\"bFREhu\":[\"End of list\"],\"bJZm1W\":[\"Applicants\"],\"bJtM0P\":[\"This workspace URL is reserved\"],\"bKzM8L\":[\"Dedicated account manager\"],\"bZSICm\":[\"Unable to add checklist item\"],\"bcIybO\":[\"Workspace name is required\"],\"bdztP2\":[\"Research\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"The member's role has been updated.\"],\"bff61F\":[\"Team Plan\"],\"bfgr/e\":[\"Question\"],\"bmXKoX\":[\"added \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Error deleting account\"],\"c/IAuR\":[\"Important\"],\"c1vOQR\":[\"Unable to create webhook\"],\"c3b0B0\":[\"Get Started\"],\"c4nMcR\":[\"Your avatar\"],\"c9AJhn\":[\"Join workspace\"],\"cAgBMh\":[\"Complete control and ownership:\"],\"cFQEU/\":[\"Open keyboard shortcuts\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Add webhook\"],\"cWcxrL\":[\"New checklist\"],\"cWtfn1\":[\"Upgrade to Pro ($29/month)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace description\"],\"cji2nM\":[\"Error creating invite link\"],\"cnGeoo\":[\"Delete\"],\"cp1rsD\":[\"Deactivate invite link\"],\"csFbe+\":[\"Go to templates\"],\"curoK5\":[\"New workspace\"],\"d+F6q9\":[\"Created\"],\"d196/6\":[\"Unable to move board\"],\"d33Usy\":[\"Create checklist\"],\"dEgA5A\":[\"Cancel\"],\"dUh9QW\":[\"Planning\"],\"ddrz1m\":[\"Overdue\"],\"delOXn\":[\"Unable to update labels\"],\"dgr4Kq\":[\"Edit label\"],\"dmKdk0\":[\"Once you delete your workspace, there is no going back. This action cannot be undone.\"],\"dsLT3m\":[\"Create card\"],\"dtQIWT\":[\"Collaboration\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"This workspace URL has already been taken\"],\"e1v+J3\":[\"Secret (optional)\"],\"e4hPSt\":[\"Reset to role defaults\"],\"eEQyz+\":[\"Track all card changes with detailed activity history.\"],\"ePK91l\":[\"Edit\"],\"eZCGbT\":[\"Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.\"],\"edWbV6\":[\"Link copied\"],\"ekCRTP\":[\"Rejected\"],\"en3oy5\":[\"Feature\"],\"euc6Ns\":[\"Duplicate\"],\"eus61c\":[\"Send test\"],\"evg7+A\":[\"Your boards have been imported.\"],\"evj0lK\":[\"Do you offer a free plan?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"created the card\"],\"fDQ7hA\":[\"Copy labels\"],\"fEY2vP\":[\"Card not found\"],\"fQCrjt\":[\"The visibility of your board has been set to \",[\"0\"],\".\"],\"fR9laE\":[\"Enter your current password\"],\"fSf2ee\":[\"View our roadmap.\"],\"fW5sSv\":[\"Edit webhook\"],\"fYVH36\":[\"Unable to update comment\"],\"fcWrnU\":[\"Sign out\"],\"fuwKpE\":[\"Please try again.\"],\"fvLNDy\":[\"No lists have been created yet\"],\"fzGyWs\":[\"Change the application font size.\"],\"fziA2d\":[\"Unlimited comments\"],\"g2xBxu\":[\"Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.\"],\"g9NChz\":[\"Account manager\"],\"gGx5tM\":[\"Editing\"],\"gKmoow\":[\"This URL is reserved\"],\"gL/7jw\":[\"Add description... (type '/' to open commands or '@' to mention)\"],\"gQ/02p\":[\"Error disconnecting GitHub\"],\"gUX7b+\":[\"The open source <0/> alternative to Trello\"],\"gZxH/p\":[\"changed the due date to <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Workspace name cannot exceed 64 characters\"],\"gkxGkF\":[\"14 day free trial · Switch plans or cancel anytime\"],\"gkzAEM\":[\"Continue with \",[\"0\"]],\"goklcJ\":[\"Interviewing\"],\"gpfJ3v\":[\"Free, forever\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board URL cannot exceed 60 characters\"],\"h16FyT\":[\"Lists\"],\"h2FKMV\":[\"You don't have permission\"],\"h2ztFt\":[\"All Free features +\"],\"h4VV67\":[\"added a checklist\"],\"h7MgpO\":[\"Keyboard Shortcuts\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"unassigned themselves from the card\"],\"hB02vO\":[\"Manage members\"],\"hQRttt\":[\"Submit\"],\"hXMFoN\":[\"No lists\"],\"hYzsXr\":[\"Settings | Integrations\"],\"hty0d5\":[\"Monday\"],\"i0ZMQl\":[\"Board archived\"],\"i30J2U\":[\"No projects found\"],\"i5rE2/\":[\"URL cannot exceed 64 characters\"],\"i5yNAO\":[\"Unlimited seats\"],\"iH8pgl\":[\"Back\"],\"iHcdea\":[\"Due next week\"],\"iLbjv+\":[\"Can edit workspace\"],\"iQmbPb\":[\"License\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iVIGZb\":[\"Attachment uploaded\"],\"isRobC\":[\"New\"],\"itgYbC\":[\"Test webhook sent successfully!\"],\"iwr7AP\":[\"Ideas\"],\"iy1wb+\":[\"Settings | API\"],\"j0o6ml\":[\"Your workspace description\"],\"j1+HPc\":[\"An error occurred while connecting your GitHub account.\"],\"j2+d/o\":[\"API Reference\"],\"j9IZZ0\":[\"Custom workspace URL\"],\"jDRt4n\":[\"Do you want to unsubscribe?\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"jIuWsV\":[\"Webhook name cannot exceed 255 characters\"],\"jL82rC\":[\"Clear custom permissions\"],\"jNuzV/\":[\"Can delete cards\"],\"jQ6I8X\":[\"Role updated\"],\"jZBHkN\":[\"Workspace name must be at least 3 characters long\"],\"jbGGzf\":[\"Sign in or create an account to activate your \",[\"partnerName\"],\" license\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"marked checklist item <0>\",[\"0\"],\" as incomplete\"],\"jlB2RY\":[\"The current password you entered is incorrect.\"],\"jwI32v\":[\"Board not found\"],\"k7rCa/\":[\"Large\"],\"kECVpo\":[\"Are you sure you want to delete this label?\"],\"kQwvU8\":[\"removed a label from the card\"],\"kSxwQL\":[\"You can invite team members by clicking the \\\"Invite\\\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.\"],\"kYu0eF\":[\"Delete workspace\"],\"kfOGMr\":[\"Quick Win\"],\"klpSmb\":[\"Edit workspace URL\"],\"kp6L3T\":[\"This workspace username has already been taken\"],\"kryGs+\":[\"Card\"],\"kuoc68\":[\"$10/month\"],\"kwkhPe\":[\"Upgrade\"],\"kxEs5t\":[\"Trello imports\"],\"kxZ7LS\":[\"Webhook updated\"],\"l2PIAy\":[\"Self host with Github\"],\"l31EoQ\":[\"Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.\"],\"l3s5ri\":[\"Import\"],\"l4asa1\":[\"This board is private or does not exist\"],\"lGjicL\":[\", or see our\"],\"lKAvEd\":[\"Error disconnecting Trello\"],\"lXvXNI\":[\"Failed to copy invite link\"],\"lYT7pQ\":[\"Delete list\"],\"lkz85l\":[\"The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.\"],\"lo8xBK\":[\"Are you sure want to remove \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Passwords do not match\"],\"lsgnzd\":[\"Error upgrading to Pro\"],\"lyqwgn\":[\"Add label\"],\"m2nk0i\":[\"Simple pricing\"],\"mErq7F\":[\"Sign Up\"],\"mHhffx\":[\"Unable to create checklist\"],\"mTGd3+\":[\"deleted a checklist\"],\"mTwGOf\":[\"This invitation link is invalid or has expired.\"],\"mU+M00\":[[\"0\"],\" has been added to your favorites.\"],\"mVZH9V\":[\"When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \\\"Jira Lite\\\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.\"],\"mZGPxt\":[\"Invite link copied to clipboard\"],\"mchgzf\":[\"You have been signed up successfully.\"],\"mgXgHu\":[\"Go to boards\"],\"mkehy7\":[\"Activate your account\"],\"mrhyIB\":[\"Perfect for small and growing teams looking to collaborate.\"],\"mwBdZ2\":[\"This will result in the permanent deletion of all data associated with your account.\"],\"mx8+1u\":[\"Unlimited members\"],\"n+xLOH\":[\"Customer Support\"],\"n1GRql\":[\"New label\"],\"n1ekoW\":[\"Sign In\"],\"n6EWYz\":[\"Used to sign webhook payloads for verification. Leave blank to keep existing secret.\"],\"n9V+ps\":[\"Enter your name\"],\"nG7mus\":[\"Password already set\"],\"nKBUeF\":[\"The card has been duplicated.\"],\"nOhz3x\":[\"Logout\"],\"nYNMZZ\":[\"Position in list (0 = first, leave empty for end)\"],\"nabda1\":[\"Delete card\"],\"nbfdhU\":[\"Integrations\"],\"ngBZOd\":[\"Add comment... (type '/' to open commands or '@' to mention)\"],\"nhMhRr\":[\"Thank you for your feedback!\"],\"njJFtc\":[\"Delete comment\"],\"nk7caK\":[\"Connect Trello\"],\"nol/Fb\":[\"How do I invite team members?\"],\"notwF1\":[\"Template name cannot exceed 100 characters\"],\"nq7q3Z\":[\"API key name cannot exceed 30 characters\"],\"nqdIhs\":[\"Custom board templates\"],\"nryrgW\":[\"All member permission overrides have been reset to their role defaults.\"],\"o+JCfN\":[\"Trusted by fast-moving teams<0/>around the world\"],\"o4e/70\":[\"Select at least one event\"],\"o4sQAg\":[\"Failed to create webhook\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10mb file uploads\"],\"o9WLwO\":[\"Unable to update card\"],\"oVBq1w\":[\"per user/month\"],\"oW13KZ\":[\"Get started for free today\"],\"odFCYX\":[\"Invalid invitation\"],\"okpxfB\":[\"Create new key\"],\"oyRjD/\":[\"Pro Plan\"],\"p/hk9N\":[\"You have been logged in successfully.\"],\"pBsoKL\":[\"Add to favorites\"],\"pEb95p\":[\"Ticket ID copied to clipboard\"],\"pFGfsR\":[\"Check out some of our favorite open source projects.\"],\"pFKC6A\":[\"API key name\"],\"pL78ec\":[\"Added to favorites\"],\"pVctI7\":[\"On-premise deployment option\"],\"pXVFJy\":[\"Can delete boards\"],\"pa9o5D\":[\"Crop your avatar\"],\"pfa8F0\":[\"Display name\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"New card\"],\"ppaRWv\":[\"Self Host\"],\"pvnfJD\":[\"Dark\"],\"q+lt9D\":[\"Error deleting label\"],\"q3il6U\":[\"Font size\"],\"qPP4lD\":[\"Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.\"],\"qQXocp\":[\"Can manage workspace settings\"],\"qaS+1/\":[\"Best for teams that want to scale without limits\"],\"qfUS/w\":[\"Open Source Friends\"],\"qkjvgj\":[\"Your workspace has been deleted.\"],\"qlAIQ1\":[\"Remote\"],\"qtE5nt\":[\"Add an item...\"],\"qzdST2\":[\"Board visibility\"],\"r+dxEH\":[\"Something went wrong during license activation.\"],\"r6BgwX\":[\"Password is required to login.\"],\"rD6UIt\":[\"Get started on Cloud\"],\"rF8SEQ\":[\"Edit comment\"],\"rQRXo8\":[\"Enter new secret to update\"],\"rQXTmd\":[\"Card URL copied to clipboard\"],\"rRM7r0\":[\"Import your Trello boards and hit the ground running.\"],\"rYUZIe\":[\"Select source\"],\"raHesj\":[\"You have been unsubscribed!\"],\"rarRW/\":[\"Error inviting member\"],\"ri1hHe\":[\"Due next month\"],\"rmN315\":[\"Fun\"],\"rs7L54\":[\"added a member to the card\"],\"rtbVvN\":[\"Can edit lists\"],\"s+MGs7\":[\"Resources\"],\"s6iE/c\":[\"Sign up is currently disabled. Please try again later.\"],\"sBhOFG\":[\"Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.\"],\"sDLCvT\":[\"Connect your favorite tools to streamline your workflow.\"],\"sDuhfK\":[\"Launch offer: unlimited seats for just $29/month with Pro\"],\"sU2uWc\":[\"Card duplicated\"],\"sUZo7y\":[\"Sign up | kan.bn\"],\"sVBn4K\":[\"Error updating display name\"],\"sY2lzr\":[\"No download URL available for this attachment.\"],\"sZ/WDz\":[\"Move board\"],\"sZixXc\":[\"Error Setting Password\"],\"sbNNyi\":[\"New webhook\"],\"snMaH4\":[\"Delete webhook\"],\"ssK7k+\":[\"That license key could not be found. Please contact support.\"],\"t+R8+P\":[\"Execution\"],\"t/YqKh\":[\"Remove\"],\"t0dTPm\":[\"Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.\"],\"t2nDzl\":[\"View and manage your billing and subscription.\"],\"t6FvJH\":[\"Can add comments\"],\"tGwwnq\":[\"updated the description\"],\"tHcbLF\":[\"Can edit boards\"],\"tIdipJ\":[\"Edit board URL\"],\"tMYIu7\":[\"Activity logs\"],\"tOZp9v\":[\"Configurable user roles and permissions\"],\"tTbref\":[\"Password is required to sign up.\"],\"tUL16u\":[\"You don't have any other workspaces to move this board to.\"],\"tYN21H\":[\"User is already a member of this workspace\"],\"tbNcu4\":[\"Board unarchived\"],\"tca56/\":[\"Your file has been uploaded successfully.\"],\"tfDRzk\":[\"Save\"],\"tlhgDC\":[\"No archived boards\"],\"tmlJN1\":[\"Please enter a valid YouTube URL\"],\"tmpW+w\":[\"Delete board\"],\"tst44n\":[\"Events\"],\"tyHiOa\":[\"Please try again later, or contact customer support.\"],\"u2+JIh\":[\"Custom URLs require upgrading to a Pro plan\"],\"u8JHrO\":[\"Clear filters\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"My webhook\"],\"uOqaMC\":[\"You've been invited to join a workspace.\"],\"uP4V6I\":[\"Free for everyone\"],\"uXGLuq\":[\"Create API key\"],\"uXKtPH\":[\"unlimited members\"],\"uZg2+w\":[\"Supercharge your workspace for just $29/month. Here's what you'll get:\"],\"uck1tz\":[\"removed a member from the card\"],\"usVytm\":[\"Once you delete your account, there is no going back. This action cannot be undone.\"],\"uvH2xS\":[\"Copy members\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Run on your own infrastructure\"],\"vAj6xG\":[\"You can self-host by following the instructions in our <0>repo.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Don't have an account? <0><1>Sign up\"],\"vXIe7J\":[\"Language\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Control who can view and edit your boards.\"],\"vbskQn\":[\"API key name is required\"],\"veIDCY\":[\"Start 14 day free trial\"],\"vfRdCZ\":[\"Unable to reset permissions\"],\"vgdzLf\":[\"Create another\"],\"vifyyw\":[\"Legal\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"This member's permissions have been reset to their role defaults.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"monthly billing\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Long-term\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"wE3hGS\":[\"Board moved\"],\"wIb7Ng\":[\"Software Development\"],\"wK4OTM\":[\"Title (optional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Please select a file to upload.\"],\"wY+6Ye\":[\"This board URL has already been taken\"],\"wakO3W\":[\"added checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Board name cannot exceed 100 characters\"],\"wgNoIs\":[\"Select all\"],\"wlQNTg\":[\"Members\"],\"wqkcin\":[\"Can view comments\"],\"wqxglO\":[\"Learning\"],\"wruKPE\":[\"Support the development of the project\"],\"wsy94z\":[\"Best for large organizations with advanced needs\"],\"wtxjAY\":[\"Workspace members\"],\"x0kMO/\":[\"Error updating workspace URL\"],\"x8GeCD\":[\"Display name updated\"],\"xEbBrW\":[\"What license are you using?\"],\"xGVfLh\":[\"Continue\"],\"xLTZVf\":[\"Week start day\"],\"xMn+V9\":[\"Importing from Trello\"],\"xRPn3U\":[\"Enter your email address\"],\"xvcYhz\":[\"Clear any custom member permissions so that all members only inherit permissions from their role defaults.\"],\"y3aU20\":[\"Save changes\"],\"yD3ZSw\":[\"Change your language preferences.\"],\"yV7o5I\":[\"How do I import my Trello boards?\"],\"yb/fjw\":[\"Approval\"],\"ygpeZ8\":[\"Your license has been activated successfully.\"],\"yhLUU8\":[\"Error connecting GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Import project (1)\"],\"other\":[\"Import projects (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Close\"],\"zC8Whw\":[\"Get started by creating a new list\"],\"zDNL2V\":[\"Test sent\"],\"zERArS\":[\"updated the title to <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Create invite link\"],\"zMlxCA\":[\"1 user\"],\"zMquA7\":[\"Choose a plan\"],\"zQPhSa\":[\"Convert to link\"],\"zQX5Dj\":[\"List name\"],\"zYRVNp\":[\"Select a list\"],\"zkWmBh\":[\"Yearly\"],\"zl1b97\":[\"Unable to create card\"],\"zoEbXq\":[\"Can view cards\"],\"zt/6cS\":[\"Best for small teams who want to collaborate and move faster together.\"],\"zto8aj\":[\"Trello disconnected\"],\"zwBp5t\":[\"Private\"],\"zwTiVn\":[\"removed an attachment <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Learn more\"],\"zxKs+y\":[\"Due tomorrow\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"Social Media\"],\"+3TYXa\":[\"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.\"],\"+5kO8P\":[\"Saturday\"],\"+8Nek/\":[\"Monthly\"],\"+A6Wuq\":[\"Your license is not active. Please check your account.\"],\"+EkBs0\":[\"We couldn't update your preferences. Please try again.\"],\"+MdEsf\":[\"New password is required\"],\"+OhFss\":[\"Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team.\"],\"+VoTOr\":[\"billed monthly\"],\"+djOzj\":[\"Invite member\"],\"+h2faV\":[\"Settings | Webhooks\"],\"+jbXzb\":[\"Your projects have been imported.\"],\"+nvZ6j\":[\"Labels & Filters\"],\"/8pTF/\":[\"workspace-url\"],\"/K2CvV\":[\"Template\"],\"/asTmx\":[\"Bug Report\"],\"/bBVaD\":[\"GitHub disconnected\"],\"/bZzdR\":[\"Mentions\"],\"/f3t6v\":[\"Configure which actions are allowed for each workspace role. These permissions apply to all members with that role.\"],\"/gaSVU\":[\"Roadmap\"],\"/glL9Q\":[\"No \",[\"0\"]],\"/jd3aj\":[\"Advanced admin roles\"],\"/lDBHm\":[\"FAQ\"],\"/rn4RE\":[\"A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place.\"],\"/tOdd2\":[\"Your profile image has been updated.\"],\"0+0/3e\":[\"Create new label\"],\"0+ewPp\":[\"Enhancement\"],\"02i3WU\":[\"Imports\"],\"06EQqT\":[\"Duplicating…\"],\"0KjpAr\":[\"Can view members\"],\"0RE1AJ\":[\"Boards you archive will appear here.\"],\"0StR7t\":[\"Enter your new password\"],\"0jV46i\":[\"Unable to delete checklist item\"],\"0qyZ4b\":[\"Loading permissions...\"],\"0rPv1T\":[\"Profile image updated\"],\"0utuU6\":[\"Copy checklists\"],\"0xD8Of\":[\"The page you're looking for doesn't exist or has been moved.\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"Import board (1)\"],\"other\":[\"Import boards (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"Adding a new member will cost an additional \",[\"price\"],\" (\",[\"billingType\"],\") per seat.\"],\"1H5u1m\":[\"Questions?\"],\"1WuwiM\":[\"Go to settings\"],\"1ZwmkP\":[\"template\"],\"1bJKhj\":[\"Copy link to card\"],\"1hzdxO\":[\"Workspace permissions\"],\"1iShX0\":[\"Due today\"],\"1njn7W\":[\"Light\"],\"1rVAfU\":[\"Load more activities\"],\"1rWxEw\":[\"Awaiting Customer\"],\"1sRmLC\":[\"Discuss and collaborate on cards.\"],\"1wCGT0\":[\"Unlimited boards\"],\"23nvb2\":[\"Unable to delete webhook\"],\"25fAUC\":[\"Your unsubscribe link is missing a token. Please open the latest email and try again.\"],\"25mvI+\":[\"Invite links require a Team or Pro subscription. Please upgrade your workspace.\"],\"29sSki\":[\"completed checklist item <0>\",[\"0\"],\"\"],\"2BBAbc\":[\"List\"],\"2Bu8xj\":[\"No boards found\"],\"2M84k3\":[\"Custom permissions\"],\"2MPcep\":[\"Import complete\"],\"2POOFK\":[\"Free\"],\"2Py5S/\":[\"I acknowledge that all of the workspace data will be permanently deleted and want to proceed.\"],\"2Q871c\":[\"Unable to add label\"],\"2QGEbi\":[\"Unable to delete comment\"],\"2SePRT\":[\"You've been invited to join a workspace on kan.bn.\"],\"2X4ecw\":[\"Webhook deleted successfully\"],\"2gHjVM\":[\"Set Password\"],\"2h4PVB\":[\"Your workspace name has been updated.\"],\"2liqDZ\":[\"I acknowledge that all of my account data will be permanently deleted and want to proceed.\"],\"2q/Q7x\":[\"Visibility\"],\"2roTVj\":[\"Feedback sent\"],\"3KKSM4\":[\"private\"],\"3LDCpD\":[\"This action can't be undone.\"],\"3WXdoZ\":[\"You can always change these later in settings.\"],\"3ZjRJY\":[\"renamed checklist <0>\",[\"0\"],\"\"],\"3bqt9U\":[\"Anyone with this link can join your workspace\"],\"3d54Wj\":[\"Webhook updated successfully\"],\"3fPjUY\":[\"Pro\"],\"3jod3l\":[\"Connect GitHub\"],\"3pIq39\":[\"Admin roles\"],\"4+JaWo\":[\"Start free trial\"],\"479pdJ\":[\"Confirm your new password\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"Small\"],\"4RoY9J\":[\"Blog Post\"],\"4XF0BB\":[\"Profile picture\"],\"4dGN6E\":[\"Sign in or create an account to activate your license\"],\"4gAX8s\":[\"Toggle menu\"],\"4kJRen\":[\"Writing\"],\"4obmDr\":[\"404 - Page Not Found | kan.bn\"],\"51UCsN\":[\"Move to another list\"],\"53QYh8\":[\"Failed to create board\"],\"55xJ/O\":[\"Error Changing Password\"],\"58AiWX\":[\"Please confirm your new password\"],\"5ACX4z\":[\"Newsletter\"],\"5EMoSo\":[\"Choose plan\"],\"5IXWmO\":[\"Check your inbox\"],\"5MPY04\":[\"Unable to copy ID\"],\"5P4rhH\":[\"Unable to update members\"],\"5RkSzq\":[\"Copy board link\"],\"5eZwRW\":[\"Connect your Trello account to import boards.\"],\"5h8ooz\":[\"API keys\"],\"5iplxh\":[\"New password must be different from current password\"],\"5k0NLb\":[\"Review\"],\"5lWFkC\":[\"Sign in\"],\"5ntVtp\":[\"Failed to test webhook\"],\"5y6qY8\":[\"added an attachment\"],\"66Jmqh\":[\"Seat limit reached\"],\"69b7aE\":[\"Open command menu\"],\"6EWT6T\":[\"Recruitment\"],\"6FDocz\":[\"Sign up with \"],\"6FsGbN\":[\"Get started by creating a new \",[\"0\"]],\"6OTo9n\":[\"Template name is required\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"New \",[\"0\"]],\"6YtxFj\":[\"Name\"],\"6mbe4b\":[\"Individuals\"],\"6sKjjx\":[\"Solo\"],\"6tDFBe\":[\"The member's permissions have been updated.\"],\"6uBU1F\":[\"Full API access\"],\"6zeSBB\":[\"Can create cards\"],\"74F7N/\":[\"Are you sure you want to delete your account?\"],\"7ENRJu\":[\"The visibility of your board has been set to \",[\"visibilityLabel\"],\".\"],\"7EhE4k\":[\"Update label\"],\"7L01XJ\":[\"Actions\"],\"7PzzBU\":[\"User\"],\"7RpHg/\":[\"Custom username\"],\"7Ufoyg\":[\"Unlimited lists\"],\"7aONWr\":[\"URL cannot exceed 2048 characters\"],\"7b2yuC\":[\"Please enter a valid password\"],\"7d1a0d\":[\"Public\"],\"7eMo+U\":[\"Go Home\"],\"7hktsm\":[\"Getting started\"],\"7i8j3G\":[\"Company\"],\"7mrkyO\":[\"Copy ticket ID\"],\"7sdSkl\":[\"We sent a link to \",[\"magicLinkRecipient\"]],\"8+BY11\":[\"Board URL copied to clipboard\"],\"86FLn5\":[\"Unlimited file uploads\"],\"86XI28\":[\"Confirm your email preferences:\"],\"8AbRER\":[\"Set due date\"],\"8AwlaR\":[\"Unlimited members and a custom workspace username for teams ready to scale.\"],\"8F1i42\":[\"Page not found\"],\"8Is1ih\":[\"Launch offer\"],\"8LLt89\":[\"Free (1 member)\"],\"8RdLDU\":[\"Personal Project\"],\"8TveY+\":[\"Boards\"],\"8Z4pNX\":[\"Can create lists\"],\"8Zjc7q\":[\"Your account already has a password. You can change it from your account settings.\"],\"8iP0S8\":[\"Everything in the free plan, plus:\"],\"8iP9oQ\":[\"Webhook test failed\"],\"8yFGGF\":[\"Unable to remove member\"],\"99VIgC\":[\"Remove member\"],\"9PaIxv\":[\"Core features\"],\"9Xigls\":[\"Under Review\"],\"9YPBHv\":[\"Failed to delete webhook\"],\"9cDpsw\":[\"Permissions\"],\"9eF5oV\":[\"Welcome back\"],\"9h7RDh\":[\"Offer\"],\"9lFfqv\":[\"/month\"],\"9s9O5h\":[\"Error deleting workspace\"],\"9trBXW\":[\"Card duplicated successfully.\"],\"9u5BOr\":[\"Members | \",[\"0\"]],\"9wdpwp\":[\"Billing portal\"],\"9x4DAL\":[[\"0\"],\" not found\"],\"9y1RcT\":[\"We're just getting started. \"],\"A23Y7X\":[\"Join workspace | kan.bn\"],\"A42Dqn\":[\"Custom branding\"],\"A5hiCy\":[\"Create template\"],\"A8jqN7\":[\"Unable to send feedback\"],\"ABCjd9\":[\"Publishing\"],\"ADEin1\":[\"Settings | Billing\"],\"ALhEZV\":[\"Can invite members\"],\"ANyn0x\":[\"Everything you need, free forever. Unlimited boards, unlimited lists, unlimited cards. Upgrade any time.\"],\"ARvBT/\":[\"billed annually\"],\"ASjvm9\":[\"Workspace URL\"],\"AUYALh\":[\"Coming soon\"],\"AX4ktp\":[\"Content Creation\"],\"AZI/wb\":[\"Labels & filters\"],\"AdxYds\":[\"Your GitHub account has been disconnected.\"],\"AeXO77\":[\"Account\"],\"AgE2vR\":[\"Card member assignments will be cleared when moving to a different workspace.\"],\"Alp2ti\":[\"Contact Sales\"],\"Ax/hYa\":[\"Workspace description cannot exceed 280 characters\"],\"B3xxao\":[\"Add a card\"],\"BBUDfW\":[\"Urgent\"],\"BEVzjL\":[\"Import failed\"],\"BJbLe4\":[\"We are using the <0>AGPL-3.0 license.\"],\"BMkVQ3\":[\"deleted checklist <0>\",[\"0\"],\"\"],\"BOqTi5\":[\"moved the card from <0>\",[\"0\"],\" to<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"Duplicate card\"],\"BZkYSt\":[\"removed \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"Are you sure you want to delete the workspace \",[\"0\"],\"?\"],\"Bhgd0l\":[\"Contact us\"],\"BzEFor\":[\"or\"],\"C56tim\":[\"Unable to update due date\"],\"C6gv54\":[\"The board has been unarchived.\"],\"CAL6E9\":[\"Teams\"],\"CB/NpV\":[\"High Priority\"],\"CHZ1jC\":[\"deleted checklist item <0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"Please enter a valid name\"],\"CJWDTP\":[\"Your Trello account has been disconnected.\"],\"CJukzS\":[[\"0\"],\" labels\"],\"CTqTgr\":[\"Shortcuts\"],\"CYWHT+\":[\"Error uploading profile image\"],\"Cd4sTD\":[\"Best for individuals and solo creators getting started\"],\"Ci/KUX\":[\"Settings | Workspace\"],\"CkVV1t\":[\"Error updating workspace description\"],\"Cmudpi\":[\"Can delete workspace\"],\"CozWO1\":[\"Workspace name\"],\"CujNX4\":[\"added an attachment <0>\",[\"0\"],\"\"],\"D+NlUC\":[\"System\"],\"D0esZz\":[\"Activity log\"],\"D3C4Yx\":[\"Current password is required\"],\"D7/JvJ\":[\"Adjust the square crop to fit your avatar.\"],\"D9ROdV\":[\"Invite links\"],\"DAV3uK\":[\"Permissions updated\"],\"DBC3t5\":[\"Sunday\"],\"DFjdv0\":[\"Delete template\"],\"DKeyWA\":[\"New \",[\"boardTypeLabel\"]],\"DMeWZD\":[\"Are you sure you want to delete this \",[\"0\"],\"?\"],\"DPfwMq\":[\"Done\"],\"DSGzV+\":[\"Workspace username\"],\"DaBhdY\":[\"boards\"],\"DahTzR\":[\"Unable to delete checklist\"],\"DbZgsJ\":[\"Make template\"],\"DtXlZq\":[\"Unable to update checklist\"],\"Dz63YI\":[\"An error occurred while disconnecting your GitHub account.\"],\"E0t3jO\":[\"added checklist item <0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"Per-seat pricing\"],\"E8zYtd\":[\"unassigned <0>\",[\"0\"],\" from the card\"],\"ECJKc4\":[\"API key created\"],\"EEHmPC\":[\"Launch offer: Get unlimited members with Pro\"],\"EH8IL3\":[\"Checklists\"],\"EII/X8\":[\"All Teams features +\"],\"ERpq2P\":[\"No results found for \\\"\",[\"debouncedQuery\"],\"\\\".\"],\"ESClHO\":[\"Priority email support\"],\"Eg99Sc\":[\"No authentication methods are currently available\"],\"Eit43O\":[\"set the due date\"],\"EkH9pt\":[\"Update\"],\"EuK5ez\":[\"Your password has been set.\"],\"EvArWh\":[\"Collaborate seamlessly with your team.\"],\"F/FPk/\":[\"Settings | Permissions\"],\"F/vB2g\":[\"Ideas to improve this page...\"],\"F0YmUY\":[\"Copy card link\"],\"F3bW6y\":[\"Platform\"],\"F4KRmY\":[\"$8/month\"],\"F4PLG4\":[\"Workspace description updated\"],\"F6m23G\":[\"File uploads\"],\"F6pfE9\":[\"Active\"],\"F8DaWi\":[\"View only\"],\"FEr96N\":[\"Theme\"],\"FdtSNC\":[\"Create workspace\"],\"FmN5me\":[\"Resolution\"],\"FmfJjN\":[\"View and manage your API keys.\"],\"Fpci8b\":[\"Are you sure you want to delete this checklist?\"],\"G1Gw0v\":[\"New template\"],\"GAD3Dx\":[\"Custom domain\"],\"GDvlUT\":[\"Role\"],\"GRAGsB\":[\"Your workspace\"],\"GXGbXi\":[\"Set a password to enable password-based login.\"],\"GYv20o\":[\"Unable to update permissions\"],\"GdWB+V\":[\"Webhook created successfully\"],\"GdgCoi\":[\"Plan\"],\"GnG6Oy\":[\"members\"],\"GnRmu4\":[\"Checklist name\"],\"GnSSGm\":[\"Your workspace description has been updated.\"],\"GoDLB9\":[\"Your account has been deleted.\"],\"GpB8YV\":[\"Enterprise\"],\"GwNIE2\":[\"Extended Roadmap\"],\"Gxxi5J\":[\"Add checklist\"],\"H5G+qG\":[\"What's the difference between Kan and Trello?\"],\"HBI6nY\":[\"Need help?\"],\"HO+uOC\":[\"Triaging\"],\"HOMO91\":[\"No license key was provided. Please try activating again.\"],\"HQVm6e\":[\"This URL has already been taken\"],\"HVIzNO\":[\"Can view lists\"],\"HYV6Lq\":[\"Failed to accept invitation. Please try again later, or contact customer support.\"],\"HcT8J4\":[\"Your GitHub account has been connected.\"],\"HeFWjW\":[\"Next Steps\"],\"Hf1cEZ\":[\"Webhook URL is required\"],\"Hg1qE9\":[\"Your workspace slug has been updated.\"],\"I+AROe\":[\"Can edit cards\"],\"I/URsS\":[\"Are you sure you want to delete this \",[\"boardTypeLabel\"],\"?\"],\"I0gAKM\":[\"Unable to update list\"],\"IDvohQ\":[\"marked a checklist item as incomplete\"],\"IFgUX6\":[\"Can remove members\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"Upgrade to Pro\"],\"InJcdo\":[\"Test failed\"],\"Iqh0Uv\":[\"Planned\"],\"IqjpYe\":[\"Email visibility\"],\"IrZaAn\":[\"Password Changed\"],\"It4/FS\":[\"Unarchive board\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"Continue with \"],\"J4+OTA\":[\"Move to list\"],\"J5nbej\":[\"Critical\"],\"J5pbP6\":[\"Can edit member roles and permissions\"],\"J9+zIR\":[\"Something went wrong during activation. Please try again.\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"Feature Request\"],\"JEt3q7\":[\"Activate | kan.bn\"],\"JUce1S\":[\"Assignees\"],\"JbXXUW\":[\"Keep in mind that this action is irreversible.\"],\"JcCDm9\":[\"Template created\"],\"Jgaz7E\":[\"Permissions reset\"],\"JjEJSy\":[\"Set up your workspace\"],\"JnWJXY\":[\"magic link\"],\"JxhWxU\":[\"in\"],\"JyXBgS\":[\"docs\"],\"K3LUJr\":[\"License activation failed\"],\"K3iLeO\":[\"See what our users are saying about Kan\"],\"K7k9u3\":[\"Unable to move card\"],\"KAsRdK\":[\"Go to members\"],\"KEim/+\":[\"removed an attachment\"],\"KFJgmZ\":[\"Display name must be at least 3 characters long\"],\"KLJ4eD\":[\"Invite link copied\"],\"KM6m8p\":[\"Team\"],\"KNK33q\":[\"Unable to test webhook\"],\"KNKCTb\":[\"Backlog\"],\"Kec+/t\":[\"Advanced admin controls\"],\"KiVc+q\":[\"Full-time\"],\"KuSt9W\":[\"How do I self-host?\"],\"L5WQLg\":[\"Token is required\"],\"L5ZPjz\":[\"updated a checklist item\"],\"LTGE7Y\":[\"Workspace created successfully. You can upgrade later in settings.\"],\"LeM5RY\":[\"Unable to clear overrides\"],\"LnaC5y\":[\"Webhook deleted\"],\"LoUCpj\":[\"Error updating workspace name\"],\"LqWW5F\":[\"Your display name has been updated.\"],\"LrcnbT\":[\"Host Kan on your own infrastructure. Ideal for organisations that need complete control over their data.\"],\"Lt+ZP3\":[\"completed a checklist item\"],\"M2zwdn\":[\"Inviting members requires a Team or Pro plan. You'll be redirected to upgrade your workspace.\"],\"M9p3Vw\":[\"Unlimited activity log\"],\"MCIXdZ\":[\"Connect your GitHub account to import projects.\"],\"MFKlMB\":[\"Invite\"],\"MHrjPM\":[\"Title\"],\"MI5OBT\":[\"URL can only contain letters, numbers, and hyphens\"],\"MK16u2\":[\"No dates\"],\"MKAScN\":[\"Can view boards\"],\"MN6YzG\":[\"Workspace slug updated\"],\"MWrbWq\":[\"Settings | Account\"],\"MdN5zD\":[\"You need to be an admin to manage workspace permissions.\"],\"MdwUGG\":[\"Save time with reusable board templates.\"],\"MeO/vH\":[\"This will result in the permanent deletion of all data associated with this workspace.\"],\"MlyjJu\":[\"Display name cannot exceed 280 characters\"],\"MpFIca\":[\"seats\"],\"MxQXhL\":[\"Unable to create workspace\"],\"N/bcWA\":[\"Login | kan.bn\"],\"N3380t\":[\"Can create boards\"],\"N7aud6\":[\"Intelligent search\"],\"NH54UR\":[\"renamed checklist item to <0>\",[\"0\"],\"\"],\"NM2hyD\":[\"Select a workspace\"],\"NcFrgC\":[\"The board has been archived.\"],\"NcHwr6\":[\"No \",[\"boardLabel\"]],\"NgaR6B\":[\"Enter your password\"],\"NnH3pK\":[\"Test\"],\"NoNwIX\":[\"Inactive\"],\"NwiNTb\":[\"member\"],\"NypLoL\":[\"renamed a checklist\"],\"O0li0W\":[\"Enter your current password and choose a new secure password.\"],\"O1wAlQ\":[\"Guest\"],\"O3oNi5\":[\"Email\"],\"O6v9mX\":[\"Create new \",[\"boardTypeLabel\"]],\"O83K21\":[\"added a checklist item\"],\"O9jVbx\":[\"Low Priority\"],\"OAYToL\":[\"This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.\"],\"OIA0ad\":[\"Workspace name updated\"],\"OTxjpR\":[\"your-workspace\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"Disconnect GitHub\"],\"Oi+J+N\":[\"Pick a plan to get started. All paid plans include a 14-day free trial.\"],\"OkTY4+\":[\"Secret cannot exceed 512 characters\"],\"Oo4E6p\":[\"Unable to duplicate card\"],\"OpNhRn\":[\"No credit card required\"],\"OtjenF\":[\"Please enter a valid email address\"],\"OvoEq7\":[\"Member\"],\"OwneeH\":[\"Custom workspace username\"],\"Ozt2vv\":[\"Your password has been changed.\"],\"P6dJdq\":[\"Overrides cleared\"],\"P8Cunr\":[\"Default username\"],\"PCIlOO\":[\"Add member\"],\"PELbXB\":[\"Your GitHub account is connected.\"],\"PRjvDT\":[\"Are you sure you want to delete this comment?\"],\"PRofO0\":[\"Edit YouTube Video\"],\"PTzsxH\":[\"Board visibility updated\"],\"PV7XRK\":[\"This workspace has reached its member limit. The workspace owner will need to upgrade their plan.\"],\"PVT7q7\":[\"GitHub connected\"],\"PZCqeW\":[\"Please try again later.\"],\"Pat4r8\":[\"Basic Roadmap\"],\"PpZkda\":[\"Features\"],\"PyYD/v\":[\"assigned <0>\",[\"0\"],\" to the card\"],\"Q60WUZ\":[\"Unable to start checkout\"],\"Q9pQaX\":[\"No roles found for this workspace yet.\"],\"QD8opX\":[\"Board\"],\"QHhZeE\":[\"Template created successfully\"],\"QNtP5M\":[\"Use template\"],\"Qh7QmR\":[\"Removed from favorites\"],\"QnzD50\":[\"On-premise\"],\"QriiAI\":[\"You've reached your \",[\"0\"],\"-seat limit. Please upgrade your plan to add more members.\"],\"QtACvI\":[\"Create label\"],\"Qtzfdk\":[\"Pro Plan ∞\"],\"R+w/Va\":[\"Billing\"],\"R1c3Mq\":[\"Board name is required\"],\"R275Pz\":[\"You have unlimited seats with your Pro Plan. There is no additional charge for new members!\"],\"R3FsF4\":[\"Download failed\"],\"R41XLH\":[\"Failed to update webhook\"],\"R6pB8R\":[\"Star on Github\"],\"RHZu7R\":[\"Loved by teams worldwide\"],\"RJA+sg\":[\"New Ticket\"],\"RRn9jf\":[\"Click on the link we've sent to \",[\"magicLinkRecipient\"],\" to sign in.\"],\"RSGOS1\":[\"Can delete lists\"],\"RfgJqw\":[\"updated the due date\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"Send feedback\"],\"RtlIYB\":[\"You are about to change your password.\"],\"RzxgOE\":[\"Roles & permissions\"],\"S3wq2O\":[\"Move to workspace\"],\"SFnH1j\":[\"Why make an open source Trello?\"],\"SMaFdc\":[\"Unsubscribe\"],\"SNfg0e\":[\"Can view workspace\"],\"SPLN9O\":[\"Own your data\"],\"SRvxId\":[\"HMAC secret for signature verification\"],\"STSYcd\":[\"Can delete comments\"],\"SUXBxp\":[\"Engineering\"],\"SUvm1Y\":[\"Good for individuals starting out who just need the essentials.\"],\"SWEskc\":[\"URL must be at least 3 characters long\"],\"Sb2gYF\":[\"New list\"],\"ScJ9fj\":[\"Privacy policy\"],\"Se/UIp\":[\"To Do\"],\"SiPp29\":[\"Create webhook\"],\"SkCNhl\":[\"Search boards and cards...\"],\"SlfejT\":[\"Error\"],\"T/pF0Z\":[\"Remove from favorites\"],\"T21jY/\":[\"added a label to the card\"],\"T7DJ2k\":[\"Unable to add comment\"],\"T7LJic\":[\"moved the card to another list\"],\"T7Mywq\":[\"Unable to update board\"],\"TCOMOO\":[\"Edit permissions\"],\"TCt/8K\":[\"Limited API access\"],\"TFv5tM\":[\"Unable to update role\"],\"TH3Irz\":[\"Permission\"],\"TKFUnX\":[\"Account deleted\"],\"TX0bT7\":[\"No webhooks configured. Add a webhook to receive notifications.\"],\"TXO5TM\":[\"No keyboard shortcuts registered.\"],\"TYli1B\":[\"Can edit comments\"],\"TbjyhA\":[\"Docs\"],\"TcXcmk\":[\"Code Review\"],\"TdfEV7\":[\"Archived\"],\"TjREUS\":[\"New API key\"],\"TmvrjU\":[\"Board URL must be at least 3 characters long\"],\"TvY/XA\":[\"Documentation\"],\"TwoUcd\":[\"board\"],\"Tz0i8g\":[\"Settings\"],\"TztLaN\":[\"Unable to create list\"],\"U2+rn0\":[\"Webhook name is required\"],\"U3pytU\":[\"Admin\"],\"U5dMR6\":[\"View workspace\"],\"UCLeG0\":[\"Terms of service\"],\"UGCIzB\":[\"Add / edit label\"],\"UQbwrz\":[\"All systems operational\"],\"URAE3q\":[\"Paused\"],\"USVCGU\":[\"Error deactivating invite link\"],\"UZREi+\":[\"templates\"],\"UbRKMZ\":[\"Pending\"],\"UbYdrA\":[\"Payment frequency\"],\"UeDFpo\":[\"How is the project funded?\"],\"Uf+1DF\":[\"Destination workspace\"],\"UirJfL\":[\"Custom SLA\"],\"UlhdTP\":[\"Workspace deleted\"],\"Un80BR\":[\"OSS Friends\"],\"UoSI+i\":[\"Best for small and growing teams that need collaboration\"],\"UveK6V\":[\"Go to app\"],\"Uworke\":[\"Part-time\"],\"UxKoFf\":[\"Navigation\"],\"V1KOLq\":[\"Email notifications for mentions\"],\"V1o9Jo\":[\"Unable to update webhook\"],\"V3MPSQ\":[\"updated the title\"],\"V8YWP3\":[\"Enter a custom title\"],\"VHS0aJ\":[\"Clear all custom permissions?\"],\"VKoDQD\":[\"Create new \",[\"0\"]],\"VOwhhz\":[\"ID copied\"],\"VTpWX6\":[\"the workspace\"],\"VUZDlr\":[\"Testimonials\"],\"VXk54Y\":[\"self-assigned the card\"],\"VbyRUy\":[\"Comments\"],\"VhMDMg\":[\"Change Password\"],\"Vt50G1\":[\"Basic Kanban\"],\"VvCMyU\":[\"Move board to another workspace\"],\"W/Elkg\":[\"Medium Priority\"],\"W/nQk1\":[\"Free Plan\"],\"W1ewR0\":[\"Unable to copy link\"],\"W5r8Qh\":[\"deleted a checklist item\"],\"W8oT+L\":[\"Failed to fetch video information\"],\"WHHLh9\":[\"Unable to delete attachment\"],\"WI4eGo\":[\"How do I get a custom URL?\"],\"WQPDcG\":[\"Unable to update checklist item\"],\"WRkpB1\":[\"Sign up disabled\"],\"WRsbHO\":[\"Your Trello account is connected.\"],\"WYDptz\":[\"Subscription Required\"],\"WYwN1G\":[\"New import\"],\"WbTDwg\":[\"In Progress\"],\"Weq9zb\":[\"General\"],\"WmPhYW\":[\"An error occurred while disconnecting your Trello account.\"],\"WnEwDO\":[\"Already have an account? <0><1>Sign in\"],\"Ws+3X+\":[\"Unlimited seats and advanced features for growing teams.\"],\"Wy6pcF\":[\"Unable to update board visibility\"],\"X0N0PA\":[\" (edited)\"],\"XDRXbZ\":[\"Workspace description must be at least 3 characters long\"],\"XEoGkQ\":[\"Go to homepage\"],\"XILg0L\":[\"Invalid email address\"],\"XJOV1Y\":[\"Activity\"],\"XNxYxq\":[\"Board templates\"],\"XTKtey\":[\"Create list\"],\"XXbgHS\":[\"Hired\"],\"XYLcNv\":[\"Support\"],\"XicmhT\":[\"Due date\"],\"Xid3K6\":[\"Board URL can only contain letters, numbers, and hyphens\"],\"Xjj/kS\":[\"Kanban reimagined\"],\"Xlkxmi\":[\"Password Set\"],\"XpcjLO\":[\"Unable to update board URL\"],\"Y8yzGg\":[\"Start free. Upgrade as your team grows. No hidden fees, no contracts.\"],\"YBBifR\":[\"Disconnect Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"Unable to reorder checklist item\"],\"YRk79X\":[\"Advanced security, compliance, and dedicated support for large organizations.\"],\"YVT40D\":[\"removed label <0>\",[\"0\"],\"\"],\"YaZDYI\":[\"Error upgrading subscription\"],\"YcyP2z\":[\"Unable to create template\"],\"Yf9FAx\":[\"They won't be able to access this workspace.\"],\"YhvWXb\":[\"Board analytics\"],\"YirHq7\":[\"Feedback\"],\"YkfDoz\":[\"Annual\"],\"YoyKbT\":[\"This API key will only be shown once. Please save it in a secure location.\"],\"Ypy5pZ\":[\"Are you sure you want to delete the webhook \\\"\",[\"webhookName\"],\"\\\"? This action cannot be undone.\"],\"YtUfwW\":[\"Failed to login with \",[\"0\"],\". Please try again.\"],\"Yx0Ud8\":[\"Requested\"],\"Z3FXyt\":[\"Loading...\"],\"Z3krJD\":[\"Allow workspace members to see each other's email addresses\"],\"Z6r9z1\":[\"Unable to delete card\"],\"ZAs2NN\":[\"All Pro features +\"],\"ZDGm40\":[\"Delete account\"],\"ZDIydz\":[\"Get started\"],\"ZDPJBc\":[\"Custom usernames require upgrading to a Pro plan\"],\"ZDo4HN\":[\"Brainstorming\"],\"ZH7TVS\":[\"Card title\"],\"ZL1A+p\":[\"Failed to upload attachment. Please try again.\"],\"ZT4Khw\":[\"Are you sure you want to delete this card?\"],\"ZU5IYI\":[\"Unlimited boards, unlimited lists, unlimited cards. No credit card required.\"],\"ZWk38w\":[\"The board has been moved to \",[\"0\"],\".\"],\"ZXSPJt\":[\"An unexpected error occurred. Please try again later.\"],\"ZhQoZn\":[\"You signed in without a password. Set a password to enable password-based login.\"],\"ZqDqbi\":[\"Organize and find cards quickly with powerful filtering tools.\"],\"Zz1qkk\":[\"Unlimited cards\"],\"a3LDKx\":[\"Security\"],\"aDzbuM\":[\"License activated\"],\"aHCEmh\":[\"Pricing\"],\"aHRWVI\":[\"removed the due date\"],\"aJ4pMe\":[\"FAQs\"],\"aKJHG+\":[\"Archive board\"],\"aW3TOw\":[\"Email notifications\"],\"aWDhU5\":[\"Kanban is better with a team. Perfect for small and growing teams looking to collaborate.\"],\"aWlSc/\":[\"Create new list\"],\"abUZlY\":[\"Add details...\"],\"aelko+\":[\"You can get a custom workspace URL, like <0>kan.bn/kan, by going into your <1>workspace settings and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!\"],\"agPptk\":[\"Medium\"],\"aiHZVP\":[\"View docs\"],\"an6ayw\":[\"Webhook created\"],\"b/LfJo\":[\"email\"],\"b3Thhd\":[\"Upload failed\"],\"b5FKyH\":[\"added label <0>\",[\"0\"],\"\"],\"b9XOHo\":[\"Create \",[\"0\"]],\"bD8I7O\":[\"Complete\"],\"bDI6VI\":[[\"0\"],\" has been removed from your favorites.\"],\"bFREhu\":[\"End of list\"],\"bJZm1W\":[\"Applicants\"],\"bJtM0P\":[\"This workspace URL is reserved\"],\"bKzM8L\":[\"Dedicated account manager\"],\"bZSICm\":[\"Unable to add checklist item\"],\"bcIybO\":[\"Workspace name is required\"],\"bdztP2\":[\"Research\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"The member's role has been updated.\"],\"bff61F\":[\"Team Plan\"],\"bfgr/e\":[\"Question\"],\"bmXKoX\":[\"added \",[\"0\"],\" labels: <0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"Error deleting account\"],\"c/IAuR\":[\"Important\"],\"c1vOQR\":[\"Unable to create webhook\"],\"c3b0B0\":[\"Get Started\"],\"c4nMcR\":[\"Your avatar\"],\"c9AJhn\":[\"Join workspace\"],\"cAgBMh\":[\"Complete control and ownership:\"],\"cFQEU/\":[\"Open keyboard shortcuts\"],\"cOh+MI\":[\"Screening\"],\"cWXW+7\":[\"Add webhook\"],\"cWcxrL\":[\"New checklist\"],\"cWtfn1\":[\"Upgrade to Pro ($29/month)\"],\"cdyS7J\":[\"Google SSO\"],\"chyf4J\":[\"Workspace description\"],\"cji2nM\":[\"Error creating invite link\"],\"cnGeoo\":[\"Delete\"],\"cp1rsD\":[\"Deactivate invite link\"],\"csFbe+\":[\"Go to templates\"],\"curoK5\":[\"New workspace\"],\"d+ACJK\":[\"Create \",[\"boardTypeLabel\"]],\"d+F6q9\":[\"Created\"],\"d196/6\":[\"Unable to move board\"],\"d33Usy\":[\"Create checklist\"],\"dEgA5A\":[\"Cancel\"],\"dUh9QW\":[\"Planning\"],\"ddrz1m\":[\"Overdue\"],\"delOXn\":[\"Unable to update labels\"],\"dgr4Kq\":[\"Edit label\"],\"dmKdk0\":[\"Once you delete your workspace, there is no going back. This action cannot be undone.\"],\"dsLT3m\":[\"Create card\"],\"dtQIWT\":[\"Collaboration\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"This workspace URL has already been taken\"],\"e1v+J3\":[\"Secret (optional)\"],\"e4hPSt\":[\"Reset to role defaults\"],\"eEQyz+\":[\"Track all card changes with detailed activity history.\"],\"ePK91l\":[\"Edit\"],\"eZCGbT\":[\"Yes, we offer an forever free plan for individual use. No restrictions, no paywalls, no limits.\"],\"edWbV6\":[\"Link copied\"],\"ekCRTP\":[\"Rejected\"],\"en3oy5\":[\"Feature\"],\"euc6Ns\":[\"Duplicate\"],\"eus61c\":[\"Send test\"],\"evg7+A\":[\"Your boards have been imported.\"],\"evj0lK\":[\"Do you offer a free plan?\"],\"f8fH8W\":[\"Design\"],\"f8lDFq\":[\"created the card\"],\"fDQ7hA\":[\"Copy labels\"],\"fEY2vP\":[\"Card not found\"],\"fQCrjt\":[\"The visibility of your board has been set to \",[\"0\"],\".\"],\"fR9laE\":[\"Enter your current password\"],\"fSf2ee\":[\"View our roadmap.\"],\"fW5sSv\":[\"Edit webhook\"],\"fYVH36\":[\"Unable to update comment\"],\"fcWrnU\":[\"Sign out\"],\"fuwKpE\":[\"Please try again.\"],\"fvLNDy\":[\"No lists have been created yet\"],\"fzGyWs\":[\"Change the application font size.\"],\"fziA2d\":[\"Unlimited comments\"],\"g2xBxu\":[\"Importing your Trello boards into Kan is easy. You can follow our step-by-step guide <0>here.\"],\"g9NChz\":[\"Account manager\"],\"gGx5tM\":[\"Editing\"],\"gKmoow\":[\"This URL is reserved\"],\"gL/7jw\":[\"Add description... (type '/' to open commands or '@' to mention)\"],\"gQ/02p\":[\"Error disconnecting GitHub\"],\"gUX7b+\":[\"The open source <0/> alternative to Trello\"],\"gZxH/p\":[\"changed the due date to <0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"Workspace name cannot exceed 64 characters\"],\"gkxGkF\":[\"14 day free trial · Switch plans or cancel anytime\"],\"gkzAEM\":[\"Continue with \",[\"0\"]],\"goklcJ\":[\"Interviewing\"],\"gpfJ3v\":[\"Free, forever\"],\"gukxZ5\":[\"Onboarding\"],\"gv5kbo\":[\"Board URL cannot exceed 60 characters\"],\"h16FyT\":[\"Lists\"],\"h2FKMV\":[\"You don't have permission\"],\"h2ztFt\":[\"All Free features +\"],\"h4VV67\":[\"added a checklist\"],\"h7MgpO\":[\"Keyboard Shortcuts\"],\"h8DugX\":[\"Labels\"],\"hAMddS\":[\"unassigned themselves from the card\"],\"hB02vO\":[\"Manage members\"],\"hQRttt\":[\"Submit\"],\"hXMFoN\":[\"No lists\"],\"hYzsXr\":[\"Settings | Integrations\"],\"hty0d5\":[\"Monday\"],\"i0ZMQl\":[\"Board archived\"],\"i30J2U\":[\"No projects found\"],\"i5rE2/\":[\"URL cannot exceed 64 characters\"],\"i5yNAO\":[\"Unlimited seats\"],\"iH8pgl\":[\"Back\"],\"iHcdea\":[\"Due next week\"],\"iLbjv+\":[\"Can edit workspace\"],\"iQmbPb\":[\"License\"],\"iSLIjg\":[\"Connect\"],\"iTylMl\":[\"Templates\"],\"iVIGZb\":[\"Attachment uploaded\"],\"isRobC\":[\"New\"],\"itgYbC\":[\"Test webhook sent successfully!\"],\"iwr7AP\":[\"Ideas\"],\"iy1wb+\":[\"Settings | API\"],\"j0o6ml\":[\"Your workspace description\"],\"j1+HPc\":[\"An error occurred while connecting your GitHub account.\"],\"j2+d/o\":[\"API Reference\"],\"j9IZZ0\":[\"Custom workspace URL\"],\"jDRt4n\":[\"Do you want to unsubscribe?\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"jIuWsV\":[\"Webhook name cannot exceed 255 characters\"],\"jL82rC\":[\"Clear custom permissions\"],\"jNuzV/\":[\"Can delete cards\"],\"jQ6I8X\":[\"Role updated\"],\"jZBHkN\":[\"Workspace name must be at least 3 characters long\"],\"jbGGzf\":[\"Sign in or create an account to activate your \",[\"partnerName\"],\" license\"],\"jfC/xh\":[\"Contact\"],\"jl3aEJ\":[\"marked checklist item <0>\",[\"0\"],\" as incomplete\"],\"jlB2RY\":[\"The current password you entered is incorrect.\"],\"jwI32v\":[\"Board not found\"],\"k7rCa/\":[\"Large\"],\"kECVpo\":[\"Are you sure you want to delete this label?\"],\"kQwvU8\":[\"removed a label from the card\"],\"kSxwQL\":[\"You can invite team members by clicking the \\\"Invite\\\" button in the top right corner of the <0>members page and entering their email address. They will receive an email with a link to join the workspace.\"],\"kYu0eF\":[\"Delete workspace\"],\"kfOGMr\":[\"Quick Win\"],\"klpSmb\":[\"Edit workspace URL\"],\"kp6L3T\":[\"This workspace username has already been taken\"],\"kryGs+\":[\"Card\"],\"kuoc68\":[\"$10/month\"],\"kwkhPe\":[\"Upgrade\"],\"kxEs5t\":[\"Trello imports\"],\"kxZ7LS\":[\"Webhook updated\"],\"l2PIAy\":[\"Self host with Github\"],\"l31EoQ\":[\"Find answers to common questions about Kan. Can't find what you're looking for? Feel free to <0>contact us.\"],\"l3s5ri\":[\"Import\"],\"l4asa1\":[\"This board is private or does not exist\"],\"lGjicL\":[\", or see our\"],\"lKAvEd\":[\"Error disconnecting Trello\"],\"lXvXNI\":[\"Failed to copy invite link\"],\"lYT7pQ\":[\"Delete list\"],\"lkz85l\":[\"The main difference between Kan and Trello is that Kan is open source, allowing anyone to view, modify, and contribute to our code. Our cloud offering also offers no restrictions on features for individual use, whereas Trello locks basic features such as the number of boards you can create behind a paywall.\"],\"lo8xBK\":[\"Are you sure want to remove \",[\"entityLabel\"],\"?\"],\"lpIMne\":[\"Passwords do not match\"],\"lsgnzd\":[\"Error upgrading to Pro\"],\"lyqwgn\":[\"Add label\"],\"m2nk0i\":[\"Simple pricing\"],\"mErq7F\":[\"Sign Up\"],\"mHhffx\":[\"Unable to create checklist\"],\"mTGd3+\":[\"deleted a checklist\"],\"mTwGOf\":[\"This invitation link is invalid or has expired.\"],\"mU+M00\":[[\"0\"],\" has been added to your favorites.\"],\"mVZH9V\":[\"When Trello launched in 2011, it blew everyone away with its carefully designed simplicity, but over the years it lost its magic and grew into something closer to \\\"Jira Lite\\\". This project is our attempt to recapture the original magic of Trello's simplicity, in open source.\"],\"mZGPxt\":[\"Invite link copied to clipboard\"],\"mchgzf\":[\"You have been signed up successfully.\"],\"mgXgHu\":[\"Go to boards\"],\"mkehy7\":[\"Activate your account\"],\"mrhyIB\":[\"Perfect for small and growing teams looking to collaborate.\"],\"mwBdZ2\":[\"This will result in the permanent deletion of all data associated with your account.\"],\"mx8+1u\":[\"Unlimited members\"],\"n+xLOH\":[\"Customer Support\"],\"n1GRql\":[\"New label\"],\"n1ekoW\":[\"Sign In\"],\"n6EWYz\":[\"Used to sign webhook payloads for verification. Leave blank to keep existing secret.\"],\"n9V+ps\":[\"Enter your name\"],\"nG7mus\":[\"Password already set\"],\"nKBUeF\":[\"The card has been duplicated.\"],\"nOhz3x\":[\"Logout\"],\"nYNMZZ\":[\"Position in list (0 = first, leave empty for end)\"],\"nabda1\":[\"Delete card\"],\"nbfdhU\":[\"Integrations\"],\"ngBZOd\":[\"Add comment... (type '/' to open commands or '@' to mention)\"],\"nhMhRr\":[\"Thank you for your feedback!\"],\"njJFtc\":[\"Delete comment\"],\"nk7caK\":[\"Connect Trello\"],\"nol/Fb\":[\"How do I invite team members?\"],\"notwF1\":[\"Template name cannot exceed 100 characters\"],\"nq7q3Z\":[\"API key name cannot exceed 30 characters\"],\"nqdIhs\":[\"Custom board templates\"],\"nryrgW\":[\"All member permission overrides have been reset to their role defaults.\"],\"o+JCfN\":[\"Trusted by fast-moving teams<0/>around the world\"],\"o4e/70\":[\"Select at least one event\"],\"o4sQAg\":[\"Failed to create webhook\"],\"o7J4JM\":[\"Filter\"],\"o8adVG\":[\"10mb file uploads\"],\"o9WLwO\":[\"Unable to update card\"],\"oVBq1w\":[\"per user/month\"],\"oW13KZ\":[\"Get started for free today\"],\"odFCYX\":[\"Invalid invitation\"],\"okpxfB\":[\"Create new key\"],\"oyRjD/\":[\"Pro Plan\"],\"p/hk9N\":[\"You have been logged in successfully.\"],\"p2sbyZ\":[\"Template not found\"],\"pBsoKL\":[\"Add to favorites\"],\"pEb95p\":[\"Ticket ID copied to clipboard\"],\"pFGfsR\":[\"Check out some of our favorite open source projects.\"],\"pFKC6A\":[\"API key name\"],\"pL78ec\":[\"Added to favorites\"],\"pVctI7\":[\"On-premise deployment option\"],\"pXVFJy\":[\"Can delete boards\"],\"pa9o5D\":[\"Crop your avatar\"],\"pfa8F0\":[\"Display name\"],\"pmUArF\":[\"Workspace\"],\"pnrmSP\":[\"New card\"],\"ppaRWv\":[\"Self Host\"],\"pvnfJD\":[\"Dark\"],\"q+lt9D\":[\"Error deleting label\"],\"q3il6U\":[\"Font size\"],\"qPP4lD\":[\"Inviting members requires a Team Plan. You'll be redirected to upgrade your workspace.\"],\"qQXocp\":[\"Can manage workspace settings\"],\"qaS+1/\":[\"Best for teams that want to scale without limits\"],\"qfUS/w\":[\"Open Source Friends\"],\"qkjvgj\":[\"Your workspace has been deleted.\"],\"qlAIQ1\":[\"Remote\"],\"qtE5nt\":[\"Add an item...\"],\"qvFa8r\":[\"public\"],\"qzdST2\":[\"Board visibility\"],\"r+dxEH\":[\"Something went wrong during license activation.\"],\"r6BgwX\":[\"Password is required to login.\"],\"rD6UIt\":[\"Get started on Cloud\"],\"rF8SEQ\":[\"Edit comment\"],\"rQRXo8\":[\"Enter new secret to update\"],\"rQXTmd\":[\"Card URL copied to clipboard\"],\"rRM7r0\":[\"Import your Trello boards and hit the ground running.\"],\"rYUZIe\":[\"Select source\"],\"raHesj\":[\"You have been unsubscribed!\"],\"rarRW/\":[\"Error inviting member\"],\"ri1hHe\":[\"Due next month\"],\"rmN315\":[\"Fun\"],\"rs7L54\":[\"added a member to the card\"],\"rtbVvN\":[\"Can edit lists\"],\"s+MGs7\":[\"Resources\"],\"s6iE/c\":[\"Sign up is currently disabled. Please try again later.\"],\"sBhOFG\":[\"Simple, visual task management that just works. Drag and drop cards, collaborate with your team, and get more done.\"],\"sDLCvT\":[\"Connect your favorite tools to streamline your workflow.\"],\"sDuhfK\":[\"Launch offer: unlimited seats for just $29/month with Pro\"],\"sU2uWc\":[\"Card duplicated\"],\"sUZo7y\":[\"Sign up | kan.bn\"],\"sVBn4K\":[\"Error updating display name\"],\"sY2lzr\":[\"No download URL available for this attachment.\"],\"sZ/WDz\":[\"Move board\"],\"sZixXc\":[\"Error Setting Password\"],\"sbNNyi\":[\"New webhook\"],\"sllapH\":[\"Get started by creating a new \",[\"boardTypeLabel\"]],\"snMaH4\":[\"Delete webhook\"],\"ssK7k+\":[\"That license key could not be found. Please contact support.\"],\"t+R8+P\":[\"Execution\"],\"t/YqKh\":[\"Remove\"],\"t0dTPm\":[\"Configure webhooks to receive notifications when cards are created, updated, moved, or deleted.\"],\"t2nDzl\":[\"View and manage your billing and subscription.\"],\"t6FvJH\":[\"Can add comments\"],\"tGwwnq\":[\"updated the description\"],\"tHcbLF\":[\"Can edit boards\"],\"tIdipJ\":[\"Edit board URL\"],\"tMYIu7\":[\"Activity logs\"],\"tOZp9v\":[\"Configurable user roles and permissions\"],\"tTbref\":[\"Password is required to sign up.\"],\"tUL16u\":[\"You don't have any other workspaces to move this board to.\"],\"tYN21H\":[\"User is already a member of this workspace\"],\"tbNcu4\":[\"Board unarchived\"],\"tca56/\":[\"Your file has been uploaded successfully.\"],\"tfDRzk\":[\"Save\"],\"tlhgDC\":[\"No archived boards\"],\"tmlJN1\":[\"Please enter a valid YouTube URL\"],\"tmpW+w\":[\"Delete board\"],\"tst44n\":[\"Events\"],\"tyHiOa\":[\"Please try again later, or contact customer support.\"],\"u2+JIh\":[\"Custom URLs require upgrading to a Pro plan\"],\"u8JHrO\":[\"Clear filters\"],\"uAQUqI\":[\"Status\"],\"uEGGDs\":[\"My webhook\"],\"uOqaMC\":[\"You've been invited to join a workspace.\"],\"uP4V6I\":[\"Free for everyone\"],\"uXGLuq\":[\"Create API key\"],\"uXKtPH\":[\"unlimited members\"],\"uZg2+w\":[\"Supercharge your workspace for just $29/month. Here's what you'll get:\"],\"uck1tz\":[\"removed a member from the card\"],\"usVytm\":[\"Once you delete your account, there is no going back. This action cannot be undone.\"],\"uvH2xS\":[\"Copy members\"],\"v+Wp++\":[\"Open source\"],\"v1kQyJ\":[\"Webhooks\"],\"v3YoMA\":[\"Senior\"],\"vAR/I8\":[\"Run on your own infrastructure\"],\"vAj6xG\":[\"You can self-host by following the instructions in our <0>repo.\"],\"vSJd18\":[\"Video\"],\"vUr5JT\":[\"Don't have an account? <0><1>Sign up\"],\"vXIe7J\":[\"Language\"],\"vXemf6\":[\"Bug\"],\"va/3u1\":[\"Control who can view and edit your boards.\"],\"vbskQn\":[\"API key name is required\"],\"veIDCY\":[\"Start 14 day free trial\"],\"vfRdCZ\":[\"Unable to reset permissions\"],\"vgdzLf\":[\"Create another\"],\"vifyyw\":[\"Legal\"],\"vkqf1W\":[\"Google SSO + SAML\"],\"vlxQFL\":[\"This member's permissions have been reset to their role defaults.\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"monthly billing\"],\"vo2a+a\":[\"Marketing\"],\"vuxdLS\":[\"Long-term\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"wE3hGS\":[\"Board moved\"],\"wIb7Ng\":[\"Software Development\"],\"wK4OTM\":[\"Title (optional)\"],\"wM8xd8\":[\"Junior\"],\"wPZBpR\":[\"Please select a file to upload.\"],\"wY+6Ye\":[\"This board URL has already been taken\"],\"wakO3W\":[\"added checklist <0>\",[\"0\"],\"\"],\"wewm3j\":[\"Board name cannot exceed 100 characters\"],\"wgNoIs\":[\"Select all\"],\"wlQNTg\":[\"Members\"],\"wqkcin\":[\"Can view comments\"],\"wqxglO\":[\"Learning\"],\"wruKPE\":[\"Support the development of the project\"],\"wsy94z\":[\"Best for large organizations with advanced needs\"],\"wtxjAY\":[\"Workspace members\"],\"x0kMO/\":[\"Error updating workspace URL\"],\"x8GeCD\":[\"Display name updated\"],\"xEbBrW\":[\"What license are you using?\"],\"xGVfLh\":[\"Continue\"],\"xLTZVf\":[\"Week start day\"],\"xMn+V9\":[\"Importing from Trello\"],\"xRPn3U\":[\"Enter your email address\"],\"xbAVoi\":[[\"boardLabel\"],\" | \",[\"0\"]],\"xvcYhz\":[\"Clear any custom member permissions so that all members only inherit permissions from their role defaults.\"],\"y3aU20\":[\"Save changes\"],\"yD3ZSw\":[\"Change your language preferences.\"],\"yV7o5I\":[\"How do I import my Trello boards?\"],\"yb/fjw\":[\"Approval\"],\"ygpeZ8\":[\"Your license has been activated successfully.\"],\"yhLUU8\":[\"Error connecting GitHub\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"Import project (1)\"],\"other\":[\"Import projects (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"Close\"],\"zC8Whw\":[\"Get started by creating a new list\"],\"zDNL2V\":[\"Test sent\"],\"zERArS\":[\"updated the title to <0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"Create invite link\"],\"zMlxCA\":[\"1 user\"],\"zMquA7\":[\"Choose a plan\"],\"zQPhSa\":[\"Convert to link\"],\"zQX5Dj\":[\"List name\"],\"zYRVNp\":[\"Select a list\"],\"zkWmBh\":[\"Yearly\"],\"zl1b97\":[\"Unable to create card\"],\"zoEbXq\":[\"Can view cards\"],\"zt/6cS\":[\"Best for small teams who want to collaborate and move faster together.\"],\"zto8aj\":[\"Trello disconnected\"],\"zwBp5t\":[\"Private\"],\"zwTiVn\":[\"removed an attachment <0>\",[\"0\"],\"\"],\"zwWKhA\":[\"Learn more\"],\"zxKs+y\":[\"Due tomorrow\"],\"zzDlyQ\":[\"Success\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/locales/index.ts b/apps/web/src/locales/index.ts index 8a0ee0d0..b29147f4 100644 --- a/apps/web/src/locales/index.ts +++ b/apps/web/src/locales/index.ts @@ -13,7 +13,8 @@ export const locales = [ export type Locale = (typeof locales)[number]; -export const defaultLocale: Locale = "en"; +// 自托管实例默认使用简体中文,用户仍可在设置中切换其他语言。 +export const defaultLocale: Locale = "zh-CN"; export const localeNames: Record = { en: "English", diff --git a/apps/web/src/locales/zh-CN/messages.json b/apps/web/src/locales/zh-CN/messages.json index 1feed89b..9754347d 100644 --- a/apps/web/src/locales/zh-CN/messages.json +++ b/apps/web/src/locales/zh-CN/messages.json @@ -37,26 +37,21 @@ 62 ] ], - "translation": "{0}" + "translation": "{0}", + "obsolete": true }, "JArWcF": { "message": "{0} | {1}", "placeholders": { "0": [ - "card?.title ?? t`Card`", - "isTemplate ? \"Templates\" : \"Boards\"" + "card?.title ?? t`Card`" ], "1": [ - "board?.name ?? t`Board`", - "workspace.name ?? t`Workspace`" + "board?.name ?? t`Board`" ] }, "comments": [], "origin": [ - [ - "src/views/boards/index.tsx", - 57 - ], [ "src/views/card/index.tsx", 321 @@ -126,7 +121,8 @@ 570 ] ], - "translation": "没有找到{0}" + "translation": "没有找到{0}", + "obsolete": true }, "0xWkkH": { "message": "{boardCount, plural, one {Import board (1)} other {Import boards ({boardCount})}}", @@ -144,6 +140,25 @@ ], "translation": "{boardCount, plural, one {导入看板 (1)} other {导入看板 ({boardCount})}}" }, + "xbAVoi": { + "translation": "{boardLabel} | {0}", + "message": "{boardLabel} | {0}", + "placeholders": { + "0": [ + "workspace.name ?? t`Workspace`" + ], + "boardLabel": [ + "boardLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/index.tsx", + 58 + ] + ] + }, "yndBF+": { "message": "{projectCount, plural, one {Import project (1)} other {Import projects ({projectCount})}}", "placeholders": { @@ -335,7 +350,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 56 + 57 ] ], "translation": "行动" @@ -371,7 +386,7 @@ "origin": [ [ "src/views/boards/index.tsx", - 30 + 37 ], [ "src/views/settings/components/NewWebhookModal.tsx", @@ -382,7 +397,7 @@ 106 ] ], - "translation": "活跃的" + "translation": "进行中" }, "XJOV1Y": { "message": "Activity", @@ -1121,10 +1136,10 @@ "origin": [ [ "src/views/boards/index.tsx", - 31 + 38 ] ], - "translation": "存档" + "translation": "已归档" }, "lo8xBK": { "message": "Are you sure want to remove {entityLabel}?", @@ -1188,7 +1203,24 @@ 36 ] ], - "translation": "您确定要删除这个{0}吗?" + "translation": "您确定要删除这个{0}吗?", + "obsolete": true + }, + "I/URsS": { + "translation": "确定要删除此{boardTypeLabel}吗?", + "message": "Are you sure you want to delete this {boardTypeLabel}?", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 37 + ] + ] }, "ZT4Khw": { "message": "Are you sure you want to delete this card?", @@ -1478,6 +1510,30 @@ ], "translation": "博客" }, + "TwoUcd": { + "translation": "看板", + "message": "board", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 17 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 17 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 35 + ], + [ + "src/views/boards/index.tsx", + 35 + ] + ] + }, "QD8opX": { "message": "Board", "placeholders": {}, @@ -1563,6 +1619,10 @@ "placeholders": {}, "comments": [], "origin": [ + [ + "src/views/board/index.tsx", + 570 + ], [ "src/views/public/board/index.tsx", 181 @@ -1669,11 +1729,23 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 49 + 50 ] ], "translation": "董事会可见性更新" }, + "DaBhdY": { + "translation": "看板", + "message": "boards", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 18 + ] + ] + }, "8TveY+": { "message": "Boards", "placeholders": {}, @@ -1681,14 +1753,18 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 98 + 100 + ], + [ + "src/views/boards/index.tsx", + 34 ], [ "src/views/pricing/components/FeatureComparisonTable.tsx", 73 ] ], - "translation": "董事会" + "translation": "看板" }, "0RE1AJ": { "message": "Boards you archive will appear here.", @@ -1697,10 +1773,10 @@ "origin": [ [ "src/views/boards/components/BoardsList.tsx", - 66 + 68 ] ], - "translation": "您存档的版面将出现在这里。" + "translation": "您归档的看板会显示在这里。" }, "ZDo4HN": { "message": "Brainstorming", @@ -2141,7 +2217,7 @@ ], [ "src/views/board/components/DeleteBoardConfirmation.tsx", - 44 + 45 ], [ "src/views/board/components/MoveBoardForm.tsx", @@ -3057,7 +3133,24 @@ 166 ] ], - "translation": "创建{0}" + "translation": "创建{0}", + "obsolete": true + }, + "d+ACJK": { + "translation": "创建{boardTypeLabel}", + "message": "Create {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 167 + ] + ] }, "vgdzLf": { "message": "Create another", @@ -3169,7 +3262,28 @@ 45 ] ], - "translation": "创建新的{0}" + "translation": "创建新的{0}", + "obsolete": true + }, + "O6v9mX": { + "translation": "创建新的{boardTypeLabel}", + "message": "Create new {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 82 + ], + [ + "src/views/boards/index.tsx", + 46 + ] + ] }, "okpxfB": { "message": "Create new key", @@ -3250,7 +3364,7 @@ ], [ "src/components/WorkspaceMenu.tsx", - 176 + 178 ] ], "translation": "创建工作区" @@ -3535,7 +3649,7 @@ ], [ "src/views/board/components/DeleteBoardConfirmation.tsx", - 47 + 48 ], [ "src/views/card/components/DeleteCardConfirmation.tsx", @@ -4448,11 +4562,11 @@ "origin": [ [ "src/views/boards/components/NewBoardForm.tsx", - 77 + 78 ], [ "src/views/boards/components/NewBoardForm.tsx", - 92 + 93 ], [ "src/views/members/components/InviteMemberForm.tsx", @@ -4781,11 +4895,11 @@ "origin": [ [ "src/views/boards/components/NewBoardForm.tsx", - 78 + 79 ], [ "src/views/boards/components/NewBoardForm.tsx", - 93 + 94 ] ], "translation": "创建板失败" @@ -5189,7 +5303,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 54 + 55 ] ], "translation": "一般" @@ -5256,7 +5370,24 @@ 66 ] ], - "translation": "首先创建一个新的{0}" + "translation": "首先创建一个新的{0}", + "obsolete": true + }, + "sllapH": { + "translation": "创建新的{boardTypeLabel}开始", + "message": "Get started by creating a new {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 68 + ] + ] }, "zC8Whw": { "message": "Get started by creating a new list", @@ -5393,7 +5524,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 106 + 108 ], [ "src/pages/404.tsx", @@ -5421,7 +5552,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 130 + 132 ] ], "translation": "转到会员" @@ -5433,7 +5564,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 142 + 144 ] ], "translation": "进入设置" @@ -5445,7 +5576,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 118 + 120 ] ], "translation": "转到模板" @@ -5693,7 +5824,7 @@ "origin": [ [ "src/views/boards/index.tsx", - 82 + 83 ] ], "translation": "导入" @@ -6110,7 +6241,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 321 + 323 ] ], "translation": "键盘快捷键" @@ -6643,7 +6774,7 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 122 + 124 ], [ "src/views/board/components/Filters.tsx", @@ -6858,7 +6989,7 @@ ], [ "src/views/boards/components/NewBoardForm.tsx", - 134 + 135 ], [ "src/views/settings/components/NewWebhookModal.tsx", @@ -6878,7 +7009,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 55 + 56 ] ], "translation": "导航" @@ -6902,7 +7033,7 @@ "origin": [ [ "src/views/boards/index.tsx", - 104 + 105 ], [ "src/views/home/components/Features.tsx", @@ -6925,7 +7056,24 @@ 120 ] ], - "translation": "新{0}" + "translation": "新{0}", + "obsolete": true + }, + "DKeyWA": { + "translation": "新建{boardTypeLabel}", + "message": "New {boardTypeLabel}", + "placeholders": { + "boardTypeLabel": [ + "boardTypeLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/NewBoardForm.tsx", + 121 + ] + ] }, "TjREUS": { "message": "New API key", @@ -7113,7 +7261,24 @@ 63 ] ], - "translation": "没有{0}" + "translation": "没有{0}", + "obsolete": true + }, + "NcHwr6": { + "translation": "没有{boardLabel}", + "message": "No {boardLabel}", + "placeholders": { + "boardLabel": [ + "boardLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 65 + ] + ] }, "tlhgDC": { "message": "No archived boards", @@ -7122,10 +7287,10 @@ "origin": [ [ "src/views/boards/components/BoardsList.tsx", - 63 + 65 ] ], - "translation": "没有存档板" + "translation": "没有已归档的看板" }, "Eg99Sc": { "message": "No authentication methods are currently available", @@ -7194,7 +7359,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 334 + 336 ] ], "translation": "没有注册快捷键。" @@ -7366,7 +7531,7 @@ "origin": [ [ "src/components/WorkspaceMenu.tsx", - 37 + 39 ] ], "translation": "打开命令菜单" @@ -7378,7 +7543,7 @@ "origin": [ [ "src/providers/keyboard-shortcuts.tsx", - 172 + 174 ] ], "translation": "打开键盘快捷键" @@ -7938,7 +8103,7 @@ ], [ "src/views/board/components/VisibilityButton.tsx", - 57 + 58 ], [ "src/views/board/index.tsx", @@ -8235,6 +8400,18 @@ ], "translation": "隐私政策" }, + "3KKSM4": { + "translation": "私有", + "message": "private", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 45 + ] + ] + }, "zwBp5t": { "message": "Private", "placeholders": {}, @@ -8242,7 +8419,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 84 + 85 ] ], "translation": "私人" @@ -8319,6 +8496,18 @@ ], "translation": "的个人资料图片" }, + "qvFa8r": { + "translation": "公开", + "message": "public", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 45 + ] + ] + }, "7d1a0d": { "message": "Public", "placeholders": {}, @@ -8326,7 +8515,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 79 + 80 ] ], "translation": "公共" @@ -9153,7 +9342,7 @@ ], [ "src/components/SideNavigation.tsx", - 134 + 136 ] ], "translation": "设置" @@ -9541,15 +9730,15 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 228 + 230 ], [ "src/components/SideNavigation.tsx", - 229 + 231 ], [ "src/components/SideNavigation.tsx", - 239 + 241 ] ], "translation": "开始免费试用" @@ -9734,6 +9923,30 @@ ], "translation": "团队" }, + "1ZwmkP": { + "translation": "模板", + "message": "template", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/DeleteBoardConfirmation.tsx", + 17 + ], + [ + "src/views/boards/components/BoardsList.tsx", + 17 + ], + [ + "src/views/boards/components/NewBoardForm.tsx", + 35 + ], + [ + "src/views/boards/index.tsx", + 35 + ] + ] + }, "/K2CvV": { "message": "Template", "placeholders": {}, @@ -9798,6 +10011,30 @@ ], "translation": "模板名称是必需的" }, + "p2sbyZ": { + "translation": "未找到模板", + "message": "Template not found", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/index.tsx", + 570 + ] + ] + }, + "UZREi+": { + "translation": "模板", + "message": "templates", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/boards/components/BoardsList.tsx", + 18 + ] + ] + }, "iTylMl": { "message": "Templates", "placeholders": {}, @@ -9805,7 +10042,11 @@ "origin": [ [ "src/components/SideNavigation.tsx", - 110 + 112 + ], + [ + "src/views/boards/index.tsx", + 34 ], [ "src/views/home/components/Features.tsx", @@ -9938,7 +10179,7 @@ "message": "The board has been moved to {0}.", "placeholders": { "0": [ - "targetWorkspace?.name ?? \"the workspace\"" + "targetWorkspace?.name ?? t`the workspace`" ] }, "comments": [], @@ -10064,7 +10305,36 @@ 50 ] ], - "translation": "您的板的可见性已设置为{0}。" + "translation": "您的板的可见性已设置为{0}。", + "obsolete": true + }, + "7ENRJu": { + "translation": "看板可见性已设置为{visibilityLabel}。", + "message": "The visibility of your board has been set to {visibilityLabel}.", + "placeholders": { + "visibilityLabel": [ + "visibilityLabel" + ] + }, + "comments": [], + "origin": [ + [ + "src/views/board/components/VisibilityButton.tsx", + 51 + ] + ] + }, + "VTpWX6": { + "translation": "工作区", + "message": "the workspace", + "placeholders": {}, + "comments": [], + "origin": [ + [ + "src/views/board/components/MoveBoardForm.tsx", + 34 + ] + ] }, "FEr96N": { "message": "Theme", @@ -10101,7 +10371,7 @@ ], [ "src/views/board/components/DeleteBoardConfirmation.tsx", - 39 + 40 ], [ "src/views/card/components/DeleteCardConfirmation.tsx", @@ -10821,7 +11091,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 56 + 57 ] ], "translation": "无法更新电路板可见性" @@ -11486,7 +11756,7 @@ "origin": [ [ "src/views/boards/components/NewBoardForm.tsx", - 154 + 155 ] ], "translation": "使用模板" @@ -11618,7 +11888,7 @@ "origin": [ [ "src/views/board/components/VisibilityButton.tsx", - 103 + 104 ] ], "translation": "可见性" @@ -11903,7 +12173,7 @@ ], [ "src/views/boards/index.tsx", - 57 + 58 ], [ "src/views/members/index.tsx", @@ -12276,7 +12546,7 @@ ], [ "src/views/board/components/VisibilityButton.tsx", - 72 + 73 ], [ "src/views/board/index.tsx", @@ -12288,15 +12558,15 @@ ], [ "src/views/boards/components/BoardsList.tsx", - 71 + 73 ], [ "src/views/boards/index.tsx", - 68 + 69 ], [ "src/views/boards/index.tsx", - 89 + 90 ] ], "translation": "你没有得到许可" diff --git a/apps/web/src/locales/zh-CN/messages.ts b/apps/web/src/locales/zh-CN/messages.ts index 1fba1020..0ee84e6d 100644 --- a/apps/web/src/locales/zh-CN/messages.ts +++ b/apps/web/src/locales/zh-CN/messages.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"社交媒体\"],\"+3TYXa\":[\"为了长期的可持续性,我们认识到所有好的开源项目都需要一个收入来源。我们的工作区来自付费云服务,提供多用户的工作区和定制的工作区。没有使用它的义务,您可以在自己的基础设施上免费自行托管软件。\"],\"+5kO8P\":[\"周六\"],\"+8Nek/\":[\"每月\"],\"+A6Wuq\":[\"您的许可证未激活。请核对您的账户。\"],\"+EkBs0\":[\"我们无法更新您的偏好。请再试一次。\"],\"+MdEsf\":[\"需要新密码\"],\"+OhFss\":[\"免费开始,没有使用限制。对于协作,升级到适合团队规模的计划。\"],\"+VoTOr\":[\"按月计费\"],\"+djOzj\":[\"邀请成员\"],\"+h2faV\":[\"设置| Webhook\"],\"+jbXzb\":[\"您的项目已经导入。\"],\"+nvZ6j\":[\"标签和过滤器\"],\"/8pTF/\":[\"工作区-url\"],\"/K2CvV\":[\"模板\"],\"/asTmx\":[\"错误报告\"],\"/bBVaD\":[\"GitHub断开连接\"],\"/bZzdR\":[\"提到\"],\"/f3t6v\":[\"配置每个工作区角色允许哪些操作。这些权限适用于具有该角色的所有成员。\"],\"/gaSVU\":[\"路线图\"],\"/glL9Q\":[\"没有\",[\"0\"]],\"/jd3aj\":[\"高级管理角色\"],\"/lDBHm\":[\"常见问题解答\"],\"/rn4RE\":[\"一个功能强大,灵活的看板应用程序,可以帮助您组织工作,跟踪进度并交付结果-所有这些都在一个地方。\"],\"/tOdd2\":[\"您的头像已更新。\"],\"0+0/3e\":[\"创建新标签\"],\"0+ewPp\":[\"增强\"],\"02i3WU\":[\"导入\"],\"06EQqT\":[\"复制……\"],\"0KjpAr\":[\"可以查看成员\"],\"0RE1AJ\":[\"您存档的版面将出现在这里。\"],\"0StR7t\":[\"输入新密码\"],\"0jV46i\":[\"无法删除检查表项\"],\"0qyZ4b\":[\"加载权限……\"],\"0rPv1T\":[\"更新个人资料图片\"],\"0utuU6\":[\"复制检查清单\"],\"0xD8Of\":[\"您正在查找的页面不存在或已被移动。\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"导入看板 (1)\"],\"other\":[\"导入看板 (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"添加一个新成员将花费额外的\",[\"price\"],\" (\",[\"billingType\"],\")每个座位。\"],\"1H5u1m\":[\"问题吗?\"],\"1WuwiM\":[\"进入设置\"],\"1bJKhj\":[\"复制链接到卡片\"],\"1hzdxO\":[\"工作区的权限\"],\"1iShX0\":[\"今天到期\"],\"1njn7W\":[\"光\"],\"1rVAfU\":[\"加载更多活动\"],\"1rWxEw\":[\"等待客户\"],\"1sRmLC\":[\"讨论和合作卡片。\"],\"1wCGT0\":[\"无限的董事会\"],\"23nvb2\":[\"无法删除Webhook\"],\"25fAUC\":[\"您的退订链接缺少令牌。请打开最新的邮件再试一次。\"],\"25mvI+\":[\"邀请链接需要团队或专业订阅。请升级你的工作区。\"],\"29sSki\":[\"完成的检查项目<0>\",[\"0\"],\"\"],\"2BBAbc\":[\"列表\"],\"2Bu8xj\":[\"未发现板子\"],\"2M84k3\":[\"自定义权限\"],\"2MPcep\":[\"导入完成\"],\"2POOFK\":[\"免费的\"],\"2Py5S/\":[\"我承认所有的工作区数据将被永久删除,并希望继续。\"],\"2Q871c\":[\"无法添加标签\"],\"2QGEbi\":[\"无法删除评论\"],\"2SePRT\":[\"你被邀请加入一个工作区。\"],\"2X4ecw\":[\"Webhook 删除成功\"],\"2gHjVM\":[\"设置密码\"],\"2h4PVB\":[\"您的工作区名称已更新。\"],\"2liqDZ\":[\"我知道我的所有帐户资料将被永久删除,并希望继续。\"],\"2q/Q7x\":[\"可见性\"],\"2roTVj\":[\"反馈发送\"],\"3LDCpD\":[\"这个动作不能撤消。\"],\"3WXdoZ\":[\"您可以在以后的设置中更改这些。\"],\"3ZjRJY\":[\"重命名检查表<0>\",[\"0\"],\"\"],\"3bqt9U\":[\"任何有此链接的人都可以加入您的工作区\"],\"3d54Wj\":[\"Webhook更新成功\"],\"3fPjUY\":[\"箴\"],\"3jod3l\":[\"连接GitHub\"],\"3pIq39\":[\"管理角色\"],\"4+JaWo\":[\"开始免费试用\"],\"479pdJ\":[\"确认您的新密码\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"小\"],\"4RoY9J\":[\"博客\"],\"4XF0BB\":[\"的个人资料图片\"],\"4dGN6E\":[\"登录或创建一个帐户来激活您的许可证\"],\"4gAX8s\":[\"切换菜单\"],\"4kJRen\":[\"写作\"],\"4obmDr\":[\"404 -网页未找到|kan.bn\"],\"51UCsN\":[\"移动到另一个列表\"],\"53QYh8\":[\"创建板失败\"],\"55xJ/O\":[\"修改密码错误\"],\"58AiWX\":[\"请确认新密码\"],\"5ACX4z\":[\"通讯\"],\"5EMoSo\":[\"选择计划\"],\"5IXWmO\":[\"检查你的收件箱\"],\"5MPY04\":[\"无法复制ID\"],\"5P4rhH\":[\"无法更新成员\"],\"5RkSzq\":[\"抄板链接\"],\"5eZwRW\":[\"将Trello帐户连接到导入板。\"],\"5h8ooz\":[\"API 密钥\"],\"5iplxh\":[\"新密码不能与当前密码相同\"],\"5k0NLb\":[\"审查\"],\"5lWFkC\":[\"登录\"],\"5ntVtp\":[\"测试Webhook失败\"],\"5y6qY8\":[\"添加了一个附件\"],\"66Jmqh\":[\"座位数已达上限\"],\"69b7aE\":[\"打开命令菜单\"],\"6EWT6T\":[\"招聘\"],\"6FDocz\":[\"与…签约\"],\"6FsGbN\":[\"首先创建一个新的\",[\"0\"]],\"6OTo9n\":[\"模板名称是必需的\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"新\",[\"0\"]],\"6YtxFj\":[\"名字\"],\"6mbe4b\":[\"个人\"],\"6sKjjx\":[\"独奏\"],\"6tDFBe\":[\"成员的权限已更新。\"],\"6uBU1F\":[\"完整的API访问\"],\"6zeSBB\":[\"会制作卡片\"],\"74F7N/\":[\"您确定要删除您的帐户吗?\"],\"7EhE4k\":[\"更新标签\"],\"7L01XJ\":[\"行动\"],\"7PzzBU\":[\"用户\"],\"7RpHg/\":[\"自定义用户名\"],\"7Ufoyg\":[\"无限的列表\"],\"7aONWr\":[\"URL不能超过2048个字符\"],\"7b2yuC\":[\"请输入有效的密码\"],\"7d1a0d\":[\"公共\"],\"7eMo+U\":[\"回家\"],\"7hktsm\":[\"开始\"],\"7i8j3G\":[\"公司\"],\"7mrkyO\":[\"复制票ID\"],\"7sdSkl\":[\"我们发送了一个链接到\",[\"magicLinkRecipient\"]],\"8+BY11\":[\"复制到剪贴板的URL\"],\"86FLn5\":[\"无限上传文件\"],\"86XI28\":[\"确认您的电子邮件偏好:\"],\"8AbRER\":[\"设定截止日期\"],\"8AwlaR\":[\"无限成员和自定义工作区用户名为团队准备扩展。\"],\"8F1i42\":[\"找不到页面\"],\"8Is1ih\":[\"发射提供\"],\"8LLt89\":[\"免费(1名会员)\"],\"8RdLDU\":[\"个人项目\"],\"8TveY+\":[\"董事会\"],\"8Z4pNX\":[\"可以创建列表\"],\"8Zjc7q\":[\"您的帐户已经有密码了。您可以从您的帐户设置中更改它。\"],\"8iP0S8\":[\"免费计划中的所有内容,加上:\"],\"8iP9oQ\":[\"Webhook测试失败\"],\"8yFGGF\":[\"无法删除成员\"],\"99VIgC\":[\"删除成员\"],\"9PaIxv\":[\"核心功能\"],\"9Xigls\":[\"正在审查\"],\"9YPBHv\":[\"删除 Webhook 失败\"],\"9cDpsw\":[\"权限\"],\"9eF5oV\":[\"欢迎回来\"],\"9h7RDh\":[\"提供\"],\"9lFfqv\":[\"/月\"],\"9s9O5h\":[\"删除工作区错误\"],\"9trBXW\":[\"卡复制成功。\"],\"9u5BOr\":[\"成员| \",[\"0\"]],\"9wdpwp\":[\"计费门户\"],\"9x4DAL\":[\"没有找到\",[\"0\"]],\"9y1RcT\":[\"我们才刚刚开始。\"],\"A23Y7X\":[\"加入工作区|kan.bn\"],\"A42Dqn\":[\"自定义品牌\"],\"A5hiCy\":[\"创建模板\"],\"A8jqN7\":[\"无法发送反馈\"],\"ABCjd9\":[\"出版\"],\"ADEin1\":[\"设置|计费\"],\"ALhEZV\":[\"可以邀请会员\"],\"ANyn0x\":[\"你需要的一切,永远免费。无限的棋盘,无限的列表,无限的牌。随时升级。\"],\"ARvBT/\":[\"每年收费\"],\"ASjvm9\":[\"工作区 URL\"],\"AUYALh\":[\"即将到来的\"],\"AX4ktp\":[\"内容创作\"],\"AZI/wb\":[\"标签和过滤器\"],\"AdxYds\":[\"您的GitHub帐户已断开连接。\"],\"AeXO77\":[\"账户\"],\"AgE2vR\":[\"当移动到不同的工作区时,卡成员分配将被清除。\"],\"Alp2ti\":[\"联系销售\"],\"Ax/hYa\":[\"工作区描述不能超过280个字符\"],\"B3xxao\":[\"添加卡片\"],\"BBUDfW\":[\"紧急的\"],\"BEVzjL\":[\"导入失败\"],\"BJbLe4\":[\"我们使用 <0>AGPL-3.0 许可证。\"],\"BMkVQ3\":[\"删除检查表<0>\",[\"0\"],\"\"],\"BOqTi5\":[\"将卡片从<0>\",[\"0\"],\"移动到<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"复制卡\"],\"BZkYSt\":[\"移除\",[\"0\"],\"标签:<0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"您确定要删除工作区 \",[\"0\"],\" 吗?\"],\"Bhgd0l\":[\"联系我们\"],\"BzEFor\":[\"或\"],\"C56tim\":[\"无法更新到期日期\"],\"C6gv54\":[\"这块板没有存档。\"],\"CAL6E9\":[\"团队\"],\"CB/NpV\":[\"高优先级\"],\"CHZ1jC\":[\"删除了检查项<0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"请输入有效的名称\"],\"CJWDTP\":[\"您的Trello帐户已断开连接。\"],\"CJukzS\":[[\"0\"],\"标签\"],\"CTqTgr\":[\"快捷键\"],\"CYWHT+\":[\"上传个人资料图片错误\"],\"Cd4sTD\":[\"最适合个人和独立创作者开始\"],\"Ci/KUX\":[\"设置|工作区\"],\"CkVV1t\":[\"更新工作区描述出错\"],\"Cmudpi\":[\"可以删除工作区\"],\"CozWO1\":[\"工作区名称\"],\"CujNX4\":[\"增加了附件<0>\",[\"0\"],\"\"],\"D+NlUC\":[\"系统\"],\"D0esZz\":[\"活动日志\"],\"D3C4Yx\":[\"需要当前密码\"],\"D7/JvJ\":[\"调整方形裁剪以适合你的头像。\"],\"D9ROdV\":[\"邀请链接\"],\"DAV3uK\":[\"权限更新\"],\"DBC3t5\":[\"周日\"],\"DFjdv0\":[\"删除模板\"],\"DMeWZD\":[\"您确定要删除这个\",[\"0\"],\"吗?\"],\"DPfwMq\":[\"完成\"],\"DSGzV+\":[\"工作区的用户名\"],\"DahTzR\":[\"无法删除检查表\"],\"DbZgsJ\":[\"使模板\"],\"DtXlZq\":[\"无法更新检查表\"],\"Dz63YI\":[\"断开GitHub帐户连接时发生错误。\"],\"E0t3jO\":[\"增加了检查项<0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"软件的价格\"],\"E8zYtd\":[\"未分配<0>\",[\"0\"],\"\"],\"ECJKc4\":[\"创建API 密钥\"],\"EEHmPC\":[\"启动优惠:获得无限会员与专业\"],\"EH8IL3\":[\"检查检查清单\"],\"EII/X8\":[\"所有团队功能+\"],\"ERpq2P\":[\"没有找到“\",[\"debouncedQuery\"],\"”的结果。\"],\"ESClHO\":[\"优先邮件支持\"],\"Eg99Sc\":[\"目前没有可用的身份验证方法\"],\"Eit43O\":[\"设定截止日期\"],\"EkH9pt\":[\"更新\"],\"EuK5ez\":[\"您的密码已设置。\"],\"EvArWh\":[\"与团队无缝协作。\"],\"F/FPk/\":[\"设置|权限\"],\"F/vB2g\":[\"改进这个页面的想法…\"],\"F0YmUY\":[\"复制卡链接\"],\"F3bW6y\":[\"平台\"],\"F4KRmY\":[\"8美元/月\"],\"F4PLG4\":[\"工作区描述更新\"],\"F6m23G\":[\"文件上传\"],\"F6pfE9\":[\"活跃的\"],\"F8DaWi\":[\"视图只\"],\"FEr96N\":[\"主题\"],\"FdtSNC\":[\"创建工作区\"],\"FmN5me\":[\"决议\"],\"FmfJjN\":[\"查看和管理您的API 密钥。\"],\"Fpci8b\":[\"您确定要删除此检查清单吗?\"],\"G1Gw0v\":[\"新模板\"],\"GAD3Dx\":[\"定制域\"],\"GDvlUT\":[\"角色\"],\"GRAGsB\":[\"您的工作区\"],\"GXGbXi\":[\"设置密码,启用密码登录。\"],\"GYv20o\":[\"无法更新权限\"],\"GdWB+V\":[\"Webhook 创建成功\"],\"GdgCoi\":[\"计划\"],\"GnG6Oy\":[\"成员\"],\"GnRmu4\":[\"检查表的名字\"],\"GnSSGm\":[\"您的工作区描述已被更新。\"],\"GoDLB9\":[\"您的帐户已被删除。\"],\"GpB8YV\":[\"企业\"],\"GwNIE2\":[\"扩展的路线图\"],\"Gxxi5J\":[\"添加检查清单\"],\"H5G+qG\":[\"Kan和Trello有什么不同?\"],\"HBI6nY\":[\"需要帮忙吗?\"],\"HO+uOC\":[\"筛选\"],\"HOMO91\":[\"没有提供许可密钥。请重试激活。\"],\"HQVm6e\":[\"此URL已被占用\"],\"HVIzNO\":[\"可以查看列表\"],\"HYV6Lq\":[\"未能接受邀请。请稍后再试,或联系客户支持。\"],\"HcT8J4\":[\"您的GitHub帐户已连接。\"],\"HeFWjW\":[\"下一个步骤\"],\"Hf1cEZ\":[\"Webhook URL 为必填项\"],\"Hg1qE9\":[\"您的工作区段已经更新。\"],\"I+AROe\":[\"可以编辑卡片\"],\"I0gAKM\":[\"无法更新列表\"],\"IDvohQ\":[\"将检查清单项标记为未完成\"],\"IFgUX6\":[\"可以删除成员\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"升级到专业版\"],\"InJcdo\":[\"测试失败\"],\"Iqh0Uv\":[\"计划\"],\"IqjpYe\":[\"电子邮件可见性\"],\"IrZaAn\":[\"密码改变了\"],\"It4/FS\":[\"Unarchive董事会\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"继续\"],\"J4+OTA\":[\"移动到列表\"],\"J5nbej\":[\"至关重要的\"],\"J5pbP6\":[\"可以编辑成员角色和权限吗\"],\"J9+zIR\":[\"在激活过程中出错了。请再试一次。\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"功能要求\"],\"JEt3q7\":[\"激活| kan.bn\"],\"JUce1S\":[\"因此可\"],\"JbXXUW\":[\"记住,这个动作是不可逆转的。\"],\"JcCDm9\":[\"模板创建的\"],\"Jgaz7E\":[\"权限重置\"],\"JjEJSy\":[\"设置工作区\"],\"JnWJXY\":[\"神奇的链接\"],\"JxhWxU\":[\"在\"],\"JyXBgS\":[\"文档\"],\"K3LUJr\":[\"激活License失败\"],\"K3iLeO\":[\"看看我们的用户是怎么评价Kan的\"],\"K7k9u3\":[\"无法移动卡片\"],\"KAsRdK\":[\"转到会员\"],\"KEim/+\":[\"删除附件\"],\"KFJgmZ\":[\"显示名必须至少为3个字符\"],\"KLJ4eD\":[\"复制邀请链接\"],\"KM6m8p\":[\"团队\"],\"KNK33q\":[\"无法测试Webhook\"],\"KNKCTb\":[\"待办事项列表\"],\"Kec+/t\":[\"高级管理控件\"],\"KiVc+q\":[\"全职\"],\"KuSt9W\":[\"我如何自托管?\"],\"L5WQLg\":[\"需要令牌\"],\"L5ZPjz\":[\"更新检查清单项\"],\"LTGE7Y\":[\"成功创建工作区。您可以稍后在设置中升级。\"],\"LeM5RY\":[\"无法清除覆盖\"],\"LnaC5y\":[\"Webhook 删除\"],\"LoUCpj\":[\"更新工作区名称出错\"],\"LqWW5F\":[\"您的显示名称已更新。\"],\"LrcnbT\":[\"在您自己的基础设施上托管Kan。非常适合需要完全控制其数据的组织。\"],\"Lt+ZP3\":[\"完成一个检查清单项目\"],\"M2zwdn\":[\"邀请成员需要一个团队或专业计划。你将被重新定向到升级你的工作区。\"],\"M9p3Vw\":[\"无限活动日志\"],\"MCIXdZ\":[\"连接您的GitHub帐户来导入项目。\"],\"MFKlMB\":[\"邀请\"],\"MHrjPM\":[\"标题\"],\"MI5OBT\":[\"URL只能包含字母、数字、连字符\"],\"MK16u2\":[\"没有日期\"],\"MKAScN\":[\"可以查看单板\"],\"MN6YzG\":[\"工作区 slug更新\"],\"MWrbWq\":[\"设置|帐户\"],\"MdN5zD\":[\"您需要管理员才能管理工作区权限。\"],\"MdwUGG\":[\"使用可重复使用的板模板节省时间。\"],\"MeO/vH\":[\"这将导致永久删除与此工作区关联的所有数据。\"],\"MlyjJu\":[\"显示名称不能超过280个字符\"],\"MpFIca\":[\"座位\"],\"MxQXhL\":[\"无法创建工作区\"],\"N/bcWA\":[\"登录| kan.bn\"],\"N3380t\":[\"会制作板子\"],\"N7aud6\":[\"智能搜索\"],\"NH54UR\":[\"将检查项重命名为<0>\",[\"0\"],\"\"],\"NM2hyD\":[\"选择工作区\"],\"NcFrgC\":[\"董事会已存档。\"],\"NgaR6B\":[\"输入密码\"],\"NnH3pK\":[\"测试\"],\"NoNwIX\":[\"不活跃的\"],\"NwiNTb\":[\"成员\"],\"NypLoL\":[\"重命名检查表\"],\"O0li0W\":[\"输入您当前的密码,然后选择一个新的安全密码。\"],\"O1wAlQ\":[\"客人\"],\"O3oNi5\":[\"电子邮件\"],\"O83K21\":[\"增加了一个检查检查清单项\"],\"O9jVbx\":[\"低优先级\"],\"OAYToL\":[\"这将删除此工作区中的所有自定义成员权限。成员将仅从其角色继承权限。\"],\"OIA0ad\":[\"更新工作区名称\"],\"OTxjpR\":[\"你的工作区\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"断开GitHub\"],\"Oi+J+N\":[\"选择一个开始的计划。所有付费计划都包括14天的免费试用。\"],\"OkTY4+\":[\"密码长度不能超过512个字符\"],\"Oo4E6p\":[\"无法复制卡片\"],\"OpNhRn\":[\"不需要信用卡\"],\"OtjenF\":[\"请输入有效的电子邮件地址\"],\"OvoEq7\":[\"成员\"],\"OwneeH\":[\"自定义工作区用户名\"],\"Ozt2vv\":[\"您的密码已被修改。\"],\"P6dJdq\":[\"覆盖了\"],\"P8Cunr\":[\"默认用户名\"],\"PCIlOO\":[\"添加成员\"],\"PELbXB\":[\"您的GitHub帐户已连接。\"],\"PRjvDT\":[\"您确定要删除此评论吗?\"],\"PRofO0\":[\"编辑YouTube视频\"],\"PTzsxH\":[\"董事会可见性更新\"],\"PV7XRK\":[\"此工作区已达到其成员限制。工作区所有者将需要升级他们的计划。\"],\"PVT7q7\":[\"GitHub连接\"],\"PZCqeW\":[\"请稍后再试。\"],\"Pat4r8\":[\"基本路线图\"],\"PpZkda\":[\"特性\"],\"PyYD/v\":[\"将<0>\",[\"0\"],\"赋值给卡片\"],\"Q60WUZ\":[\"无法开始结帐\"],\"Q9pQaX\":[\"尚未找到此工作区的角色。\"],\"QD8opX\":[\"董事会\"],\"QHhZeE\":[\"模板创建成功\"],\"QNtP5M\":[\"使用模板\"],\"Qh7QmR\":[\"从收藏夹中删除\"],\"QnzD50\":[\"内部\"],\"QriiAI\":[\"您已达到\",[\"0\"],\"座位限制。请升级您的计划以增加更多会员。\"],\"QtACvI\":[\"创建标签\"],\"Qtzfdk\":[\"Pro Plan∞\"],\"R+w/Va\":[\"计费\"],\"R1c3Mq\":[\"董事会名称是必需的\"],\"R275Pz\":[\"您的专业计划有无限的座位。新会员不需额外收费!\"],\"R3FsF4\":[\"下载失败了\"],\"R41XLH\":[\"更新Webhook失败\"],\"R6pB8R\":[\"Github上的星星\"],\"RHZu7R\":[\"深受世界各地团队的喜爱\"],\"RJA+sg\":[\"新票\"],\"RRn9jf\":[\"点击我们发送给\",[\"magicLinkRecipient\"],\"的链接进行登录。\"],\"RSGOS1\":[\"可以删除列表\"],\"RfgJqw\":[\"更新截止日期\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"发送反馈\"],\"RtlIYB\":[\"您即将修改密码。\"],\"RzxgOE\":[\"角色和权限\"],\"S3wq2O\":[\"移动到工作区\"],\"SFnH1j\":[\"为什么要做一个开源的Trello?\"],\"SMaFdc\":[\"退订\"],\"SNfg0e\":[\"可以查看工作区\"],\"SPLN9O\":[\"拥有你的数据\"],\"SRvxId\":[\"用于签名验证的HMAC秘密\"],\"STSYcd\":[\"可以删除评论\"],\"SUXBxp\":[\"工程\"],\"SUvm1Y\":[\"适合那些刚开始只需要必需品的人。\"],\"SWEskc\":[\"URL长度必须至少为3个字符\"],\"Sb2gYF\":[\"新列表\"],\"ScJ9fj\":[\"隐私政策\"],\"Se/UIp\":[\"要做\"],\"SiPp29\":[\"创建Webhook\"],\"SkCNhl\":[\"搜索木板和卡片……\"],\"SlfejT\":[\"错误\"],\"T/pF0Z\":[\"从收藏夹中删除\"],\"T21jY/\":[\"在卡片上添加标签\"],\"T7DJ2k\":[\"无法添加评论\"],\"T7LJic\":[\"将卡片移动到另一个列表\"],\"T7Mywq\":[\"无法更新板\"],\"TCOMOO\":[\"编辑权限\"],\"TCt/8K\":[\"有限的API访问\"],\"TFv5tM\":[\"无法更新角色\"],\"TH3Irz\":[\"许可\"],\"TKFUnX\":[\"帐户被删除\"],\"TX0bT7\":[\"没有配置Webhook。添加Webhook来接收通知。\"],\"TXO5TM\":[\"没有注册快捷键。\"],\"TYli1B\":[\"可以编辑评论\"],\"TbjyhA\":[\"文档\"],\"TcXcmk\":[\"代码评审\"],\"TdfEV7\":[\"存档\"],\"TjREUS\":[\"新的API 密钥\"],\"TmvrjU\":[\"“看板 URL”长度至少为3个字符\"],\"TvY/XA\":[\"文档\"],\"Tz0i8g\":[\"设置\"],\"TztLaN\":[\"无法创建列表\"],\"U2+rn0\":[\"Webhook 名称是必需的\"],\"U3pytU\":[\"管理\"],\"U5dMR6\":[\"视图的工作区\"],\"UCLeG0\":[\"服务条款\"],\"UGCIzB\":[\"添加/编辑标签\"],\"UQbwrz\":[\"所有系统运行正常\"],\"URAE3q\":[\"停顿了一下\"],\"USVCGU\":[\"取消激活邀请链接错误\"],\"UbRKMZ\":[\"等待\"],\"UbYdrA\":[\"付款频率\"],\"UeDFpo\":[\"项目的资金来源是什么?\"],\"Uf+1DF\":[\"目的地的工作区\"],\"UirJfL\":[\"自定义SLA\"],\"UlhdTP\":[\"工作区中删除\"],\"Un80BR\":[\"OSS的朋友\"],\"UoSI+i\":[\"最适合需要协作的小型和成长中的团队\"],\"UveK6V\":[\"进入app\"],\"Uworke\":[\"兼职\"],\"UxKoFf\":[\"导航\"],\"V1KOLq\":[\"邮件通知\"],\"V1o9Jo\":[\"无法更新Webhook\"],\"V3MPSQ\":[\"更新标题\"],\"V8YWP3\":[\"输入自定义标题\"],\"VHS0aJ\":[\"清除所有自定义权限?\"],\"VKoDQD\":[\"创建新的\",[\"0\"]],\"VOwhhz\":[\"ID复制\"],\"VUZDlr\":[\"奖状\"],\"VXk54Y\":[\"自行分配卡片\"],\"VbyRUy\":[\"评论\"],\"VhMDMg\":[\"更改密码\"],\"Vt50G1\":[\"基本的看板\"],\"VvCMyU\":[\"把板子移到另一个工作区\"],\"W/Elkg\":[\"中优先级\"],\"W/nQk1\":[\"免费的计划\"],\"W1ewR0\":[\"无法复制链接\"],\"W5r8Qh\":[\"删除一个检查表项\"],\"W8oT+L\":[\"获取视频信息失败\"],\"WHHLh9\":[\"无法删除附件\"],\"WI4eGo\":[\"如何获得自定义URL?\"],\"WQPDcG\":[\"无法更新检查表项\"],\"WRkpB1\":[\"注册禁用\"],\"WRsbHO\":[\"您的Trello帐户已连接。\"],\"WYDptz\":[\"订阅所需的\"],\"WYwN1G\":[\"新的导入\"],\"WbTDwg\":[\"在进步\"],\"Weq9zb\":[\"一般\"],\"WmPhYW\":[\"断开Trello帐户连接时发生错误。\"],\"WnEwDO\":[\"已经有账户了吗?<0><1>Sign in\"],\"Ws+3X+\":[\"无限座位和先进的功能,为成长中的球队。\"],\"Wy6pcF\":[\"无法更新电路板可见性\"],\"X0N0PA\":[\"(编辑)\"],\"XDRXbZ\":[\"工作区描述必须至少有3个字符长\"],\"XEoGkQ\":[\"转到主页\"],\"XILg0L\":[\"无效的电子邮件地址\"],\"XJOV1Y\":[\"活动\"],\"XNxYxq\":[\"板模板\"],\"XTKtey\":[\"创建列表\"],\"XXbgHS\":[\"聘请了\"],\"XYLcNv\":[\"支持\"],\"XicmhT\":[\"到期日期\"],\"Xid3K6\":[\"“单板URL”只能包含字母、数字和连字符\"],\"Xjj/kS\":[\"看板备用\"],\"Xlkxmi\":[\"密码设置\"],\"XpcjLO\":[\"无法更新板URL\"],\"Y8yzGg\":[\"开始免费。随着团队的成长而升级。没有隐藏费用,没有合同。\"],\"YBBifR\":[\"断开Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"无法重新排序检查清单项目\"],\"YRk79X\":[\"为大型组织提供高级安全性、遵从性和专用支持。\"],\"YVT40D\":[\"移除标签<0>\",[\"0\"],\"\"],\"YaZDYI\":[\"升级订阅错误\"],\"YcyP2z\":[\"无法创建模板\"],\"Yf9FAx\":[\"他们将无法访问此工作区。\"],\"YhvWXb\":[\"板分析\"],\"YirHq7\":[\"反馈\"],\"YkfDoz\":[\"年度\"],\"YoyKbT\":[\"此API 密钥将只显示一次。请把它保存在安全的地方。\"],\"Ypy5pZ\":[\"您确定要删除Webhook“\",[\"webhookName\"],\"”吗?此操作不能撤消。\"],\"YtUfwW\":[\"使用\",[\"0\"],\"登录失败。请再试一次。\"],\"Yx0Ud8\":[\"要求\"],\"Z3FXyt\":[\"加载……\"],\"Z3krJD\":[\"允许工作区成员看到彼此的电子邮件地址\"],\"Z6r9z1\":[\"无法删除卡\"],\"ZAs2NN\":[\"所有专业功能+\"],\"ZDGm40\":[\"删除账户\"],\"ZDIydz\":[\"开始\"],\"ZDPJBc\":[\"自定义用户名需要升级到Pro计划\"],\"ZDo4HN\":[\"头脑风暴\"],\"ZH7TVS\":[\"卡标题\"],\"ZL1A+p\":[\"上传附件失败。请再试一次。\"],\"ZT4Khw\":[\"您确定要删除这张卡吗?\"],\"ZU5IYI\":[\"无限的棋盘,无限的列表,无限的牌。不需要信用卡。\"],\"ZWk38w\":[\"该板已移至\",[\"0\"],\"。\"],\"ZXSPJt\":[\"发生意外错误。请稍后再试。\"],\"ZhQoZn\":[\"你没有密码就登录了。设置密码,启用密码登录。\"],\"ZqDqbi\":[\"使用强大的过滤工具快速组织和查找卡片。\"],\"Zz1qkk\":[\"无限卡\"],\"a3LDKx\":[\"安全\"],\"aDzbuM\":[\"许可激活\"],\"aHCEmh\":[\"定价\"],\"aHRWVI\":[\"删除了截止日期\"],\"aJ4pMe\":[\"常见问题\"],\"aKJHG+\":[\"档案委员会\"],\"aW3TOw\":[\"邮件通知\"],\"aWDhU5\":[\"看板在团队中效果更好。适合小型和成长中的团队寻求合作。\"],\"aWlSc/\":[\"创建新列表\"],\"abUZlY\":[\"添加细节…\"],\"aelko+\":[\"您可以获得类似 <0>kan.bn/kan 的自定义工作区 URL,只需进入<1>工作区设置并购买专业版工作区订阅。所有订阅都将帮助项目开发!\"],\"agPptk\":[\"媒介\"],\"aiHZVP\":[\"查看文档\"],\"an6ayw\":[\"Webhook 创建\"],\"b/LfJo\":[\"电子邮件\"],\"b3Thhd\":[\"上传失败\"],\"b5FKyH\":[\"增加了标签<0>\",[\"0\"],\"\"],\"b9XOHo\":[\"创建\",[\"0\"]],\"bD8I7O\":[\"完整的\"],\"bDI6VI\":[[\"0\"],\"已从您的收藏夹中删除。\"],\"bFREhu\":[\"列表结束\"],\"bJZm1W\":[\"申请人\"],\"bJtM0P\":[\"这个工作区 URL是保留的\"],\"bKzM8L\":[\"专职客户经理\"],\"bZSICm\":[\"无法添加检查表项\"],\"bcIybO\":[\"工作区名称是必需的\"],\"bdztP2\":[\"研究\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"成员角色已更新。\"],\"bff61F\":[\"团队计划\"],\"bfgr/e\":[\"问题\"],\"bmXKoX\":[\"增加了\",[\"0\"],\"标签:<0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"删除帐户错误\"],\"c/IAuR\":[\"重要的\"],\"c1vOQR\":[\"无法创建Webhook\"],\"c3b0B0\":[\"开始\"],\"c4nMcR\":[\"你的头像\"],\"c9AJhn\":[\"加入工作区\"],\"cAgBMh\":[\"完全控制和所有权:\"],\"cFQEU/\":[\"打开键盘快捷键\"],\"cOh+MI\":[\"筛选\"],\"cWXW+7\":[\"添加Webhook\"],\"cWcxrL\":[\"新检查清单\"],\"cWtfn1\":[\"升级到专业版(每月29美元)\"],\"cdyS7J\":[\"谷歌SSO\"],\"chyf4J\":[\"工作描述\"],\"cji2nM\":[\"创建邀请链接错误\"],\"cnGeoo\":[\"删除\"],\"cp1rsD\":[\"取消邀请链接\"],\"csFbe+\":[\"转到模板\"],\"curoK5\":[\"新的工作区\"],\"d+F6q9\":[\"创建\"],\"d196/6\":[\"无法移动板子\"],\"d33Usy\":[\"创建检查清单\"],\"dEgA5A\":[\"取消\"],\"dUh9QW\":[\"规划\"],\"ddrz1m\":[\"逾期\"],\"delOXn\":[\"无法更新标签\"],\"dgr4Kq\":[\"编辑标签\"],\"dmKdk0\":[\"一旦你删除了你的工作区,就没有回头路了。此操作不能撤消。\"],\"dsLT3m\":[\"创建卡\"],\"dtQIWT\":[\"协作\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"这个工作区 URL已经被占用了\"],\"e1v+J3\":[\"秘密(可选)\"],\"e4hPSt\":[\"重置为角色默认值\"],\"eEQyz+\":[\"通过详细的活动历史记录跟踪所有卡片更改。\"],\"ePK91l\":[\"编辑\"],\"eZCGbT\":[\"是的,我们提供个人使用的永久免费计划。没有限制,没有付费墙,没有限制。\"],\"edWbV6\":[\"链接复制\"],\"ekCRTP\":[\"拒绝了\"],\"en3oy5\":[\"特征\"],\"euc6Ns\":[\"重复的\"],\"eus61c\":[\"发送测试\"],\"evg7+A\":[\"您的看板已经导入。\"],\"evj0lK\":[\"你们有免费的计划吗?\"],\"f8fH8W\":[\"设计\"],\"f8lDFq\":[\"创建卡片\"],\"fDQ7hA\":[\"复制标签\"],\"fEY2vP\":[\"未找到卡片\"],\"fQCrjt\":[\"您的板的可见性已设置为\",[\"0\"],\"。\"],\"fR9laE\":[\"输入您当前的密码\"],\"fSf2ee\":[\"查看我们的路线图。\"],\"fW5sSv\":[\"编辑Webhook\"],\"fYVH36\":[\"无法更新评论\"],\"fcWrnU\":[\"签出\"],\"fuwKpE\":[\"请再试一次。\"],\"fvLNDy\":[\"目前还没有创建任何列表\"],\"fzGyWs\":[\"更改应用程序字体大小。\"],\"fziA2d\":[\"无限的评论\"],\"g2xBxu\":[\"将Trello板导入Kan很容易。您可以按照我们的逐步指导<0>here。\"],\"g9NChz\":[\"客户经理\"],\"gGx5tM\":[\"编辑\"],\"gKmoow\":[\"这个URL是保留的\"],\"gL/7jw\":[\"添加描述…(键入‘/’打开命令或键入‘@’提及)\"],\"gQ/02p\":[\"断开GitHub连接错误\"],\"gUX7b+\":[\"<0/>的开源替代Trello\"],\"gZxH/p\":[\"将截止日期更改为<0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"工作区名称不能超过64个字符\"],\"gkxGkF\":[\"·随时切换计划或取消\"],\"gkzAEM\":[\"继续使用\",[\"0\"]],\"goklcJ\":[\"面试\"],\"gpfJ3v\":[\"永远免费的,\"],\"gukxZ5\":[\"新员工培训\"],\"gv5kbo\":[\"“单板URL”不能超过60个字符\"],\"h16FyT\":[\"列表\"],\"h2FKMV\":[\"你没有得到许可\"],\"h2ztFt\":[\"所有免费功能+\"],\"h4VV67\":[\"增加了一个检查清单\"],\"h7MgpO\":[\"键盘快捷键\"],\"h8DugX\":[\"标签\"],\"hAMddS\":[\"将自己从卡片中移除\"],\"hB02vO\":[\"管理成员\"],\"hQRttt\":[\"提交\"],\"hXMFoN\":[\"没有列表\"],\"hYzsXr\":[\"设置|集成\"],\"hty0d5\":[\"周一\"],\"i0ZMQl\":[\"委员会存档\"],\"i30J2U\":[\"未找到项目\"],\"i5rE2/\":[\"URL不能超过64个字符\"],\"i5yNAO\":[\"无限的席位\"],\"iH8pgl\":[\"回来\"],\"iHcdea\":[\"下周到期\"],\"iLbjv+\":[\"可以编辑工作区\"],\"iQmbPb\":[\"许可证\"],\"iSLIjg\":[\"连接\"],\"iTylMl\":[\"模板\"],\"iVIGZb\":[\"附件上传\"],\"isRobC\":[\"新\"],\"itgYbC\":[\"测试网钩发送成功!\"],\"iwr7AP\":[\"民主与经济事务研究所(Institute for Democracy and Economic Affairs)\"],\"iy1wb+\":[\"设置| API\"],\"j0o6ml\":[\"您的工作区描述\"],\"j1+HPc\":[\"连接GitHub帐户时发生错误。\"],\"j2+d/o\":[\"API参考\"],\"j9IZZ0\":[\"自定义工作区 URL\"],\"jDRt4n\":[\"您想退订吗?\"],\"jEw0Mr\":[\"请输入有效的URL\"],\"jIuWsV\":[\"Webhook 名称不能超过255个字符\"],\"jL82rC\":[\"清除自定义权限\"],\"jNuzV/\":[\"可以删除卡片\"],\"jQ6I8X\":[\"角色更新\"],\"jZBHkN\":[\"工作区的名称长度必须至少为3个字符\"],\"jbGGzf\":[\"登录或创建一个帐户来激活您的\",[\"partnerName\"],\"许可证\"],\"jfC/xh\":[\"联系\"],\"jl3aEJ\":[\"将检查项<0>\",[\"0\"],\"标记为不完整\"],\"jlB2RY\":[\"您输入的当前密码不正确。\"],\"jwI32v\":[\"找不到板子\"],\"k7rCa/\":[\"大\"],\"kECVpo\":[\"您确定要删除此标签吗?\"],\"kQwvU8\":[\"从卡片上取下标签\"],\"kSxwQL\":[\"您可以点击<0>成员页面右上角的“邀请”按钮并输入团队成员的电子邮件地址来邀请他们。他们会收到一个加入工作区的链接。\"],\"kYu0eF\":[\"删除工作区\"],\"kfOGMr\":[\"快速赢得\"],\"klpSmb\":[\"编辑工作区 URL\"],\"kp6L3T\":[\"此工作区用户名已被占用\"],\"kryGs+\":[\"卡\"],\"kuoc68\":[\"10美元/月\"],\"kwkhPe\":[\"升级\"],\"kxEs5t\":[\"Trello导入\"],\"kxZ7LS\":[\"Webhook更新\"],\"l2PIAy\":[\"自我托管与Github\"],\"l31EoQ\":[\"查找关于 Kan 的常见问题答案。如果找不到所需内容,欢迎<0>联系我们。\"],\"l3s5ri\":[\"导入\"],\"l4asa1\":[\"此板是私有的或不存在\"],\"lGjicL\":[\",或参阅我们的\"],\"lKAvEd\":[\"断开Trello连接错误\"],\"lXvXNI\":[\"复制邀请链接失败\"],\"lYT7pQ\":[\"删除表\"],\"lkz85l\":[\"Kan和Trello的主要区别在于,Kan是开源的,任何人都可以查看、修改和贡献我们的代码。我们的云产品对个人使用的功能也没有限制,而Trello锁定了基本功能,比如你可以在付费墙后面创建的电路板数量。\"],\"lo8xBK\":[\"您确定要删除\",[\"entityLabel\"],\"吗?\"],\"lpIMne\":[\"密码不匹配\"],\"lsgnzd\":[\"升级到专业版时出错\"],\"lyqwgn\":[\"添加标签\"],\"m2nk0i\":[\"简单的定价\"],\"mErq7F\":[\"报名\"],\"mHhffx\":[\"无法创建检查表\"],\"mTGd3+\":[\"删除检查检查清单\"],\"mTwGOf\":[\"此邀请链接无效或已过期。\"],\"mU+M00\":[[\"0\"],\"已添加到您的收藏夹中。\"],\"mVZH9V\":[\"当Trello于2011年推出时,它以其精心设计的简单性震惊了所有人,但多年来它失去了魔力,成长为更接近“Jira Lite”的东西。这个项目是我们试图在开源中重新获得Trello简单的原始魔力。\"],\"mZGPxt\":[\"邀请链接复制到剪贴板\"],\"mchgzf\":[\"您已成功注册。\"],\"mgXgHu\":[\"到董事会\"],\"mkehy7\":[\"激活您的帐户\"],\"mrhyIB\":[\"适合小型和成长中的团队寻求合作。\"],\"mwBdZ2\":[\"这将导致与您的帐户相关的所有数据永久删除。\"],\"mx8+1u\":[\"无限的成员\"],\"n+xLOH\":[\"客户支持\"],\"n1GRql\":[\"新标签\"],\"n1ekoW\":[\"登录\"],\"n6EWYz\":[\"用于对Webhook有效负载进行签名以进行验证。留空以保留现有的秘密。\"],\"n9V+ps\":[\"输入您的姓名\"],\"nG7mus\":[\"密码已设置\"],\"nKBUeF\":[\"这张卡已被复制。\"],\"nOhz3x\":[\"注销\"],\"nYNMZZ\":[\"在列表中的位置(0 = first, end为空)\"],\"nabda1\":[\"删除卡\"],\"nbfdhU\":[\"集成\"],\"ngBZOd\":[\"添加评论…(键入‘/’打开命令或键入‘@’提及)\"],\"nhMhRr\":[\"感谢您的反馈!\"],\"njJFtc\":[\"删除评论\"],\"nk7caK\":[\"连接Trello\"],\"nol/Fb\":[\"如何邀请团队成员?\"],\"notwF1\":[\"模板名称不能超过100个字符\"],\"nq7q3Z\":[\"API 密钥名称不能超过30个字符\"],\"nqdIhs\":[\"自定义板模板\"],\"nryrgW\":[\"所有成员权限覆盖已重置为其角色默认值。\"],\"o+JCfN\":[\"深受世界各地快速发展团队的信赖\"],\"o4e/70\":[\"至少选择一个事件\"],\"o4sQAg\":[\"创建 Webhook 失败\"],\"o7J4JM\":[\"过滤器\"],\"o8adVG\":[\"10mb文件上传\"],\"o9WLwO\":[\"无法更新卡\"],\"oVBq1w\":[\"每用户/月\"],\"oW13KZ\":[\"今天就免费开始吧\"],\"odFCYX\":[\"无效的邀请\"],\"okpxfB\":[\"创建新密钥\"],\"oyRjD/\":[\"职业计划\"],\"p/hk9N\":[\"您已成功登录。\"],\"pBsoKL\":[\"添加到收藏夹\"],\"pEb95p\":[\"机票ID已复制到剪贴板\"],\"pFGfsR\":[\"看看我们最喜欢的一些开源项目。\"],\"pFKC6A\":[\"API 密钥名称\"],\"pL78ec\":[\"添加到收藏夹\"],\"pVctI7\":[\"内部部署选项\"],\"pXVFJy\":[\"可以删除单板\"],\"pa9o5D\":[\"裁剪你的头像\"],\"pfa8F0\":[\"显示名称\"],\"pmUArF\":[\"工作区\"],\"pnrmSP\":[\"新卡\"],\"ppaRWv\":[\"自我主机\"],\"pvnfJD\":[\"黑暗\"],\"q+lt9D\":[\"删除标签错误\"],\"q3il6U\":[\"字体大小\"],\"qPP4lD\":[\"邀请成员需要一个团队计划。你将被重新定向到升级你的工作区。\"],\"qQXocp\":[\"可以管理工作区设置\"],\"qaS+1/\":[\"最适合想要无限制扩展的团队\"],\"qfUS/w\":[\"开源之友\"],\"qkjvgj\":[\"您的工作区已被删除。\"],\"qlAIQ1\":[\"远程\"],\"qtE5nt\":[\"添加一个项目…\"],\"qzdST2\":[\"董事会的可见性\"],\"r+dxEH\":[\"激活license时出错。\"],\"r6BgwX\":[\"登录时需要输入密码。\"],\"rD6UIt\":[\"开始使用云\"],\"rF8SEQ\":[\"编辑评论\"],\"rQRXo8\":[\"输入要更新的新密码\"],\"rQXTmd\":[\"卡片URL复制到剪贴板\"],\"rRM7r0\":[\"导入您的Trello板并开始运行。\"],\"rYUZIe\":[\"选择源\"],\"raHesj\":[\"您的订阅已被取消!\"],\"rarRW/\":[\"邀请成员出错\"],\"ri1hHe\":[\"下个月到期\"],\"rmN315\":[\"有趣的\"],\"rs7L54\":[\"向卡中添加了一个成员\"],\"rtbVvN\":[\"可以编辑列表\"],\"s+MGs7\":[\"资源\"],\"s6iE/c\":[\"目前无法注册。请稍后再试。\"],\"sBhOFG\":[\"简单,可视化的任务管理,只是工作。拖放卡片,与团队协作,完成更多工作。\"],\"sDLCvT\":[\"连接您最喜欢的工具,以简化您的工作流程。\"],\"sDuhfK\":[\"首发优惠:使用Pro每月只需29美元,即可获得无限座位\"],\"sU2uWc\":[\"卡复制\"],\"sUZo7y\":[\"注册bb1000日元\"],\"sVBn4K\":[\"更新显示名称错误\"],\"sY2lzr\":[\"此附件没有可用的下载URL。\"],\"sZ/WDz\":[\"移动板\"],\"sZixXc\":[\"密码设置错误\"],\"sbNNyi\":[\"新Webhook\"],\"snMaH4\":[\"删除Webhook\"],\"ssK7k+\":[\"找不到许可密钥。请联系技术支持。\"],\"t+R8+P\":[\"执行\"],\"t/YqKh\":[\"删除\"],\"t0dTPm\":[\"将Webhook配置为在创建、更新、移动或删除卡片时接收通知。\"],\"t2nDzl\":[\"查看和管理您的账单和订阅。\"],\"t6FvJH\":[\"可以添加注释\"],\"tGwwnq\":[\"更新描述。\"],\"tHcbLF\":[\"会编辑版面\"],\"tIdipJ\":[\"编辑板URL\"],\"tMYIu7\":[\"活动日志\"],\"tOZp9v\":[\"可配置用户角色和权限\"],\"tTbref\":[\"注册时需要输入密码。\"],\"tUL16u\":[\"你没有任何其他的工作区来移动这个板。\"],\"tYN21H\":[\"用户已经是此工作区的成员\"],\"tbNcu4\":[\"董事会从未归档\"],\"tca56/\":[\"您的文件已上传成功。\"],\"tfDRzk\":[\"保存\"],\"tlhgDC\":[\"没有存档板\"],\"tmlJN1\":[\"请输入有效的YouTube URL\"],\"tmpW+w\":[\"删除板\"],\"tst44n\":[\"事件\"],\"tyHiOa\":[\"请稍后再试,或联系客户支持。\"],\"u2+JIh\":[\"自定义url需要升级到专业计划\"],\"u8JHrO\":[\"清晰的过滤器\"],\"uAQUqI\":[\"状态\"],\"uEGGDs\":[\"我的 Webhook\"],\"uOqaMC\":[\"你被邀请加入一个工作区。\"],\"uP4V6I\":[\"人人免费\"],\"uXGLuq\":[\"创建API 密钥\"],\"uXKtPH\":[\"无限的成员\"],\"uZg2+w\":[\"每月只需29美元,就能让你的工作区焕然一新。下面是你将得到的:\"],\"uck1tz\":[\"从卡中删除一个成员\"],\"usVytm\":[\"一旦你删除了账号,就再也回不去了。此操作不能撤消。\"],\"uvH2xS\":[\"复制成员\"],\"v+Wp++\":[\"开源\"],\"v1kQyJ\":[\"人则\"],\"v3YoMA\":[\"高级\"],\"vAR/I8\":[\"在您自己的基础设施上运行\"],\"vAj6xG\":[\"您可以按照我们<0>仓库中的说明进行自托管。\"],\"vSJd18\":[\"视频\"],\"vUr5JT\":[\"没有账户?<0><1>Sign up\"],\"vXIe7J\":[\"语言\"],\"vXemf6\":[\"错误\"],\"va/3u1\":[\"控制谁可以查看和编辑您的板。\"],\"vbskQn\":[\"输入API 密钥名称\"],\"veIDCY\":[\"开始14天免费试用\"],\"vfRdCZ\":[\"无法重置权限\"],\"vgdzLf\":[\"创建另一个\"],\"vifyyw\":[\"法律\"],\"vkqf1W\":[\"谷歌SSO + SAML\"],\"vlxQFL\":[\"此成员的权限已重置为其角色默认值。\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"每月的账单\"],\"vo2a+a\":[\"市场营销\"],\"vuxdLS\":[\"长期\"],\"vwGkYB\":[\"密码至少为8个字符\"],\"wE3hGS\":[\"板移动\"],\"wIb7Ng\":[\"软件开发\"],\"wK4OTM\":[\"标题(可选)\"],\"wM8xd8\":[\"初级\"],\"wPZBpR\":[\"请选择要上传的文件。\"],\"wY+6Ye\":[\"此看板 URL已经有人占用了\"],\"wakO3W\":[\"增加了检查表<0>\",[\"0\"],\"\"],\"wewm3j\":[\"单板名称不能超过100个字符\"],\"wgNoIs\":[\"选择所有\"],\"wlQNTg\":[\"成员\"],\"wqkcin\":[\"可以查看评论\"],\"wqxglO\":[\"学习\"],\"wruKPE\":[\"支持项目的发展\"],\"wsy94z\":[\"最适合有高级需求的大型组织\"],\"wtxjAY\":[\"工作区成员\"],\"x0kMO/\":[\"更新工作区 URL出错\"],\"x8GeCD\":[\"显示名称已更新\"],\"xEbBrW\":[\"你使用的是什么许可证?\"],\"xGVfLh\":[\"继续\"],\"xLTZVf\":[\"工作周开始日\"],\"xMn+V9\":[\"从Trello导入\"],\"xRPn3U\":[\"输入您的电子邮件地址\"],\"xvcYhz\":[\"清除任何自定义成员权限,以便所有成员仅从其角色默认值继承权限。\"],\"y3aU20\":[\"保存更改\"],\"yD3ZSw\":[\"改变你的语言偏好。\"],\"yV7o5I\":[\"我如何导入我的Trello板?\"],\"yb/fjw\":[\"批准\"],\"ygpeZ8\":[\"您的license已成功激活。\"],\"yhLUU8\":[\"连接GitHub出错\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"导入项目 (1)\"],\"other\":[\"导入项目 (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"关闭\"],\"zC8Whw\":[\"从创建一个新列表开始\"],\"zDNL2V\":[\"测试发送\"],\"zERArS\":[\"更新标题为<0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"创建邀请链接\"],\"zMlxCA\":[\"1用户\"],\"zMquA7\":[\"选择一个计划\"],\"zQPhSa\":[\"转换为链接\"],\"zQX5Dj\":[\"列表名称\"],\"zYRVNp\":[\"选择一个列表\"],\"zkWmBh\":[\"每年\"],\"zl1b97\":[\"无法创建卡\"],\"zoEbXq\":[\"可以查看卡片\"],\"zt/6cS\":[\"最适合想要协作和快速移动的小团队。\"],\"zto8aj\":[\"Trello断开连接\"],\"zwBp5t\":[\"私人\"],\"zwTiVn\":[\"删除附件<0>\",[\"0\"],\"\"],\"zwWKhA\":[\"了解更多\"],\"zxKs+y\":[\"明天到期\"],\"zzDlyQ\":[\"成功\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"++rVAm\":[\"社交媒体\"],\"+3TYXa\":[\"为了长期的可持续性,我们认识到所有好的开源项目都需要一个收入来源。我们的工作区来自付费云服务,提供多用户的工作区和定制的工作区。没有使用它的义务,您可以在自己的基础设施上免费自行托管软件。\"],\"+5kO8P\":[\"周六\"],\"+8Nek/\":[\"每月\"],\"+A6Wuq\":[\"您的许可证未激活。请核对您的账户。\"],\"+EkBs0\":[\"我们无法更新您的偏好。请再试一次。\"],\"+MdEsf\":[\"需要新密码\"],\"+OhFss\":[\"免费开始,没有使用限制。对于协作,升级到适合团队规模的计划。\"],\"+VoTOr\":[\"按月计费\"],\"+djOzj\":[\"邀请成员\"],\"+h2faV\":[\"设置| Webhook\"],\"+jbXzb\":[\"您的项目已经导入。\"],\"+nvZ6j\":[\"标签和过滤器\"],\"/8pTF/\":[\"工作区-url\"],\"/K2CvV\":[\"模板\"],\"/asTmx\":[\"错误报告\"],\"/bBVaD\":[\"GitHub断开连接\"],\"/bZzdR\":[\"提到\"],\"/f3t6v\":[\"配置每个工作区角色允许哪些操作。这些权限适用于具有该角色的所有成员。\"],\"/gaSVU\":[\"路线图\"],\"/glL9Q\":[\"没有\",[\"0\"]],\"/jd3aj\":[\"高级管理角色\"],\"/lDBHm\":[\"常见问题解答\"],\"/rn4RE\":[\"一个功能强大,灵活的看板应用程序,可以帮助您组织工作,跟踪进度并交付结果-所有这些都在一个地方。\"],\"/tOdd2\":[\"您的头像已更新。\"],\"0+0/3e\":[\"创建新标签\"],\"0+ewPp\":[\"增强\"],\"02i3WU\":[\"导入\"],\"06EQqT\":[\"复制……\"],\"0KjpAr\":[\"可以查看成员\"],\"0RE1AJ\":[\"您归档的看板会显示在这里。\"],\"0StR7t\":[\"输入新密码\"],\"0jV46i\":[\"无法删除检查表项\"],\"0qyZ4b\":[\"加载权限……\"],\"0rPv1T\":[\"更新个人资料图片\"],\"0utuU6\":[\"复制检查清单\"],\"0xD8Of\":[\"您正在查找的页面不存在或已被移动。\"],\"0xWkkH\":[[\"boardCount\",\"plural\",{\"one\":[\"导入看板 (1)\"],\"other\":[\"导入看板 (\",[\"boardCount\"],\")\"]}]],\"14Xi3Z\":[\"添加一个新成员将花费额外的\",[\"price\"],\" (\",[\"billingType\"],\")每个座位。\"],\"1H5u1m\":[\"问题吗?\"],\"1WuwiM\":[\"进入设置\"],\"1ZwmkP\":[\"模板\"],\"1bJKhj\":[\"复制链接到卡片\"],\"1hzdxO\":[\"工作区的权限\"],\"1iShX0\":[\"今天到期\"],\"1njn7W\":[\"光\"],\"1rVAfU\":[\"加载更多活动\"],\"1rWxEw\":[\"等待客户\"],\"1sRmLC\":[\"讨论和合作卡片。\"],\"1wCGT0\":[\"无限的董事会\"],\"23nvb2\":[\"无法删除Webhook\"],\"25fAUC\":[\"您的退订链接缺少令牌。请打开最新的邮件再试一次。\"],\"25mvI+\":[\"邀请链接需要团队或专业订阅。请升级你的工作区。\"],\"29sSki\":[\"完成的检查项目<0>\",[\"0\"],\"\"],\"2BBAbc\":[\"列表\"],\"2Bu8xj\":[\"未发现板子\"],\"2M84k3\":[\"自定义权限\"],\"2MPcep\":[\"导入完成\"],\"2POOFK\":[\"免费的\"],\"2Py5S/\":[\"我承认所有的工作区数据将被永久删除,并希望继续。\"],\"2Q871c\":[\"无法添加标签\"],\"2QGEbi\":[\"无法删除评论\"],\"2SePRT\":[\"你被邀请加入一个工作区。\"],\"2X4ecw\":[\"Webhook 删除成功\"],\"2gHjVM\":[\"设置密码\"],\"2h4PVB\":[\"您的工作区名称已更新。\"],\"2liqDZ\":[\"我知道我的所有帐户资料将被永久删除,并希望继续。\"],\"2q/Q7x\":[\"可见性\"],\"2roTVj\":[\"反馈发送\"],\"3KKSM4\":[\"私有\"],\"3LDCpD\":[\"这个动作不能撤消。\"],\"3WXdoZ\":[\"您可以在以后的设置中更改这些。\"],\"3ZjRJY\":[\"重命名检查表<0>\",[\"0\"],\"\"],\"3bqt9U\":[\"任何有此链接的人都可以加入您的工作区\"],\"3d54Wj\":[\"Webhook更新成功\"],\"3fPjUY\":[\"箴\"],\"3jod3l\":[\"连接GitHub\"],\"3pIq39\":[\"管理角色\"],\"4+JaWo\":[\"开始免费试用\"],\"479pdJ\":[\"确认您的新密码\"],\"4DOCMI\":[\"YouTube URL\"],\"4Revpc\":[\"小\"],\"4RoY9J\":[\"博客\"],\"4XF0BB\":[\"的个人资料图片\"],\"4dGN6E\":[\"登录或创建一个帐户来激活您的许可证\"],\"4gAX8s\":[\"切换菜单\"],\"4kJRen\":[\"写作\"],\"4obmDr\":[\"404 -网页未找到|kan.bn\"],\"51UCsN\":[\"移动到另一个列表\"],\"53QYh8\":[\"创建板失败\"],\"55xJ/O\":[\"修改密码错误\"],\"58AiWX\":[\"请确认新密码\"],\"5ACX4z\":[\"通讯\"],\"5EMoSo\":[\"选择计划\"],\"5IXWmO\":[\"检查你的收件箱\"],\"5MPY04\":[\"无法复制ID\"],\"5P4rhH\":[\"无法更新成员\"],\"5RkSzq\":[\"抄板链接\"],\"5eZwRW\":[\"将Trello帐户连接到导入板。\"],\"5h8ooz\":[\"API 密钥\"],\"5iplxh\":[\"新密码不能与当前密码相同\"],\"5k0NLb\":[\"审查\"],\"5lWFkC\":[\"登录\"],\"5ntVtp\":[\"测试Webhook失败\"],\"5y6qY8\":[\"添加了一个附件\"],\"66Jmqh\":[\"座位数已达上限\"],\"69b7aE\":[\"打开命令菜单\"],\"6EWT6T\":[\"招聘\"],\"6FDocz\":[\"与…签约\"],\"6FsGbN\":[\"首先创建一个新的\",[\"0\"]],\"6OTo9n\":[\"模板名称是必需的\"],\"6S8zjx\":[\"https://www.youtube.com/watch?v=...\"],\"6WSYbN\":[\"新\",[\"0\"]],\"6YtxFj\":[\"名字\"],\"6mbe4b\":[\"个人\"],\"6sKjjx\":[\"独奏\"],\"6tDFBe\":[\"成员的权限已更新。\"],\"6uBU1F\":[\"完整的API访问\"],\"6zeSBB\":[\"会制作卡片\"],\"74F7N/\":[\"您确定要删除您的帐户吗?\"],\"7ENRJu\":[\"看板可见性已设置为\",[\"visibilityLabel\"],\"。\"],\"7EhE4k\":[\"更新标签\"],\"7L01XJ\":[\"行动\"],\"7PzzBU\":[\"用户\"],\"7RpHg/\":[\"自定义用户名\"],\"7Ufoyg\":[\"无限的列表\"],\"7aONWr\":[\"URL不能超过2048个字符\"],\"7b2yuC\":[\"请输入有效的密码\"],\"7d1a0d\":[\"公共\"],\"7eMo+U\":[\"回家\"],\"7hktsm\":[\"开始\"],\"7i8j3G\":[\"公司\"],\"7mrkyO\":[\"复制票ID\"],\"7sdSkl\":[\"我们发送了一个链接到\",[\"magicLinkRecipient\"]],\"8+BY11\":[\"复制到剪贴板的URL\"],\"86FLn5\":[\"无限上传文件\"],\"86XI28\":[\"确认您的电子邮件偏好:\"],\"8AbRER\":[\"设定截止日期\"],\"8AwlaR\":[\"无限成员和自定义工作区用户名为团队准备扩展。\"],\"8F1i42\":[\"找不到页面\"],\"8Is1ih\":[\"发射提供\"],\"8LLt89\":[\"免费(1名会员)\"],\"8RdLDU\":[\"个人项目\"],\"8TveY+\":[\"看板\"],\"8Z4pNX\":[\"可以创建列表\"],\"8Zjc7q\":[\"您的帐户已经有密码了。您可以从您的帐户设置中更改它。\"],\"8iP0S8\":[\"免费计划中的所有内容,加上:\"],\"8iP9oQ\":[\"Webhook测试失败\"],\"8yFGGF\":[\"无法删除成员\"],\"99VIgC\":[\"删除成员\"],\"9PaIxv\":[\"核心功能\"],\"9Xigls\":[\"正在审查\"],\"9YPBHv\":[\"删除 Webhook 失败\"],\"9cDpsw\":[\"权限\"],\"9eF5oV\":[\"欢迎回来\"],\"9h7RDh\":[\"提供\"],\"9lFfqv\":[\"/月\"],\"9s9O5h\":[\"删除工作区错误\"],\"9trBXW\":[\"卡复制成功。\"],\"9u5BOr\":[\"成员| \",[\"0\"]],\"9wdpwp\":[\"计费门户\"],\"9x4DAL\":[\"没有找到\",[\"0\"]],\"9y1RcT\":[\"我们才刚刚开始。\"],\"A23Y7X\":[\"加入工作区|kan.bn\"],\"A42Dqn\":[\"自定义品牌\"],\"A5hiCy\":[\"创建模板\"],\"A8jqN7\":[\"无法发送反馈\"],\"ABCjd9\":[\"出版\"],\"ADEin1\":[\"设置|计费\"],\"ALhEZV\":[\"可以邀请会员\"],\"ANyn0x\":[\"你需要的一切,永远免费。无限的棋盘,无限的列表,无限的牌。随时升级。\"],\"ARvBT/\":[\"每年收费\"],\"ASjvm9\":[\"工作区 URL\"],\"AUYALh\":[\"即将到来的\"],\"AX4ktp\":[\"内容创作\"],\"AZI/wb\":[\"标签和过滤器\"],\"AdxYds\":[\"您的GitHub帐户已断开连接。\"],\"AeXO77\":[\"账户\"],\"AgE2vR\":[\"当移动到不同的工作区时,卡成员分配将被清除。\"],\"Alp2ti\":[\"联系销售\"],\"Ax/hYa\":[\"工作区描述不能超过280个字符\"],\"B3xxao\":[\"添加卡片\"],\"BBUDfW\":[\"紧急的\"],\"BEVzjL\":[\"导入失败\"],\"BJbLe4\":[\"我们使用 <0>AGPL-3.0 许可证。\"],\"BMkVQ3\":[\"删除检查表<0>\",[\"0\"],\"\"],\"BOqTi5\":[\"将卡片从<0>\",[\"0\"],\"移动到<1>\",[\"1\"],\"\"],\"BTDPLo\":[\"复制卡\"],\"BZkYSt\":[\"移除\",[\"0\"],\"标签:<0>\",[\"labelList\"],\"\"],\"BhDZlc\":[\"您确定要删除工作区 \",[\"0\"],\" 吗?\"],\"Bhgd0l\":[\"联系我们\"],\"BzEFor\":[\"或\"],\"C56tim\":[\"无法更新到期日期\"],\"C6gv54\":[\"这块板没有存档。\"],\"CAL6E9\":[\"团队\"],\"CB/NpV\":[\"高优先级\"],\"CHZ1jC\":[\"删除了检查项<0>\",[\"0\"],\"\"],\"CJ3zUq\":[\"请输入有效的名称\"],\"CJWDTP\":[\"您的Trello帐户已断开连接。\"],\"CJukzS\":[[\"0\"],\"标签\"],\"CTqTgr\":[\"快捷键\"],\"CYWHT+\":[\"上传个人资料图片错误\"],\"Cd4sTD\":[\"最适合个人和独立创作者开始\"],\"Ci/KUX\":[\"设置|工作区\"],\"CkVV1t\":[\"更新工作区描述出错\"],\"Cmudpi\":[\"可以删除工作区\"],\"CozWO1\":[\"工作区名称\"],\"CujNX4\":[\"增加了附件<0>\",[\"0\"],\"\"],\"D+NlUC\":[\"系统\"],\"D0esZz\":[\"活动日志\"],\"D3C4Yx\":[\"需要当前密码\"],\"D7/JvJ\":[\"调整方形裁剪以适合你的头像。\"],\"D9ROdV\":[\"邀请链接\"],\"DAV3uK\":[\"权限更新\"],\"DBC3t5\":[\"周日\"],\"DFjdv0\":[\"删除模板\"],\"DKeyWA\":[\"新建\",[\"boardTypeLabel\"]],\"DMeWZD\":[\"您确定要删除这个\",[\"0\"],\"吗?\"],\"DPfwMq\":[\"完成\"],\"DSGzV+\":[\"工作区的用户名\"],\"DaBhdY\":[\"看板\"],\"DahTzR\":[\"无法删除检查表\"],\"DbZgsJ\":[\"使模板\"],\"DtXlZq\":[\"无法更新检查表\"],\"Dz63YI\":[\"断开GitHub帐户连接时发生错误。\"],\"E0t3jO\":[\"增加了检查项<0>\",[\"0\"],\"\"],\"E6wBCJ\":[\"软件的价格\"],\"E8zYtd\":[\"未分配<0>\",[\"0\"],\"\"],\"ECJKc4\":[\"创建API 密钥\"],\"EEHmPC\":[\"启动优惠:获得无限会员与专业\"],\"EH8IL3\":[\"检查检查清单\"],\"EII/X8\":[\"所有团队功能+\"],\"ERpq2P\":[\"没有找到“\",[\"debouncedQuery\"],\"”的结果。\"],\"ESClHO\":[\"优先邮件支持\"],\"Eg99Sc\":[\"目前没有可用的身份验证方法\"],\"Eit43O\":[\"设定截止日期\"],\"EkH9pt\":[\"更新\"],\"EuK5ez\":[\"您的密码已设置。\"],\"EvArWh\":[\"与团队无缝协作。\"],\"F/FPk/\":[\"设置|权限\"],\"F/vB2g\":[\"改进这个页面的想法…\"],\"F0YmUY\":[\"复制卡链接\"],\"F3bW6y\":[\"平台\"],\"F4KRmY\":[\"8美元/月\"],\"F4PLG4\":[\"工作区描述更新\"],\"F6m23G\":[\"文件上传\"],\"F6pfE9\":[\"进行中\"],\"F8DaWi\":[\"视图只\"],\"FEr96N\":[\"主题\"],\"FdtSNC\":[\"创建工作区\"],\"FmN5me\":[\"决议\"],\"FmfJjN\":[\"查看和管理您的API 密钥。\"],\"Fpci8b\":[\"您确定要删除此检查清单吗?\"],\"G1Gw0v\":[\"新模板\"],\"GAD3Dx\":[\"定制域\"],\"GDvlUT\":[\"角色\"],\"GRAGsB\":[\"您的工作区\"],\"GXGbXi\":[\"设置密码,启用密码登录。\"],\"GYv20o\":[\"无法更新权限\"],\"GdWB+V\":[\"Webhook 创建成功\"],\"GdgCoi\":[\"计划\"],\"GnG6Oy\":[\"成员\"],\"GnRmu4\":[\"检查表的名字\"],\"GnSSGm\":[\"您的工作区描述已被更新。\"],\"GoDLB9\":[\"您的帐户已被删除。\"],\"GpB8YV\":[\"企业\"],\"GwNIE2\":[\"扩展的路线图\"],\"Gxxi5J\":[\"添加检查清单\"],\"H5G+qG\":[\"Kan和Trello有什么不同?\"],\"HBI6nY\":[\"需要帮忙吗?\"],\"HO+uOC\":[\"筛选\"],\"HOMO91\":[\"没有提供许可密钥。请重试激活。\"],\"HQVm6e\":[\"此URL已被占用\"],\"HVIzNO\":[\"可以查看列表\"],\"HYV6Lq\":[\"未能接受邀请。请稍后再试,或联系客户支持。\"],\"HcT8J4\":[\"您的GitHub帐户已连接。\"],\"HeFWjW\":[\"下一个步骤\"],\"Hf1cEZ\":[\"Webhook URL 为必填项\"],\"Hg1qE9\":[\"您的工作区段已经更新。\"],\"I+AROe\":[\"可以编辑卡片\"],\"I/URsS\":[\"确定要删除此\",[\"boardTypeLabel\"],\"吗?\"],\"I0gAKM\":[\"无法更新列表\"],\"IDvohQ\":[\"将检查清单项标记为未完成\"],\"IFgUX6\":[\"可以删除成员\"],\"IagCbF\":[\"URL\"],\"IelE1h\":[\"升级到专业版\"],\"InJcdo\":[\"测试失败\"],\"Iqh0Uv\":[\"计划\"],\"IqjpYe\":[\"电子邮件可见性\"],\"IrZaAn\":[\"密码改变了\"],\"It4/FS\":[\"Unarchive董事会\"],\"J/hVSQ\":[[\"0\"]],\"J2Wbjt\":[\"继续\"],\"J4+OTA\":[\"移动到列表\"],\"J5nbej\":[\"至关重要的\"],\"J5pbP6\":[\"可以编辑成员角色和权限吗\"],\"J9+zIR\":[\"在激活过程中出错了。请再试一次。\"],\"JArWcF\":[[\"0\"],\" | \",[\"1\"]],\"JCdzgZ\":[\"功能要求\"],\"JEt3q7\":[\"激活| kan.bn\"],\"JUce1S\":[\"因此可\"],\"JbXXUW\":[\"记住,这个动作是不可逆转的。\"],\"JcCDm9\":[\"模板创建的\"],\"Jgaz7E\":[\"权限重置\"],\"JjEJSy\":[\"设置工作区\"],\"JnWJXY\":[\"神奇的链接\"],\"JxhWxU\":[\"在\"],\"JyXBgS\":[\"文档\"],\"K3LUJr\":[\"激活License失败\"],\"K3iLeO\":[\"看看我们的用户是怎么评价Kan的\"],\"K7k9u3\":[\"无法移动卡片\"],\"KAsRdK\":[\"转到会员\"],\"KEim/+\":[\"删除附件\"],\"KFJgmZ\":[\"显示名必须至少为3个字符\"],\"KLJ4eD\":[\"复制邀请链接\"],\"KM6m8p\":[\"团队\"],\"KNK33q\":[\"无法测试Webhook\"],\"KNKCTb\":[\"待办事项列表\"],\"Kec+/t\":[\"高级管理控件\"],\"KiVc+q\":[\"全职\"],\"KuSt9W\":[\"我如何自托管?\"],\"L5WQLg\":[\"需要令牌\"],\"L5ZPjz\":[\"更新检查清单项\"],\"LTGE7Y\":[\"成功创建工作区。您可以稍后在设置中升级。\"],\"LeM5RY\":[\"无法清除覆盖\"],\"LnaC5y\":[\"Webhook 删除\"],\"LoUCpj\":[\"更新工作区名称出错\"],\"LqWW5F\":[\"您的显示名称已更新。\"],\"LrcnbT\":[\"在您自己的基础设施上托管Kan。非常适合需要完全控制其数据的组织。\"],\"Lt+ZP3\":[\"完成一个检查清单项目\"],\"M2zwdn\":[\"邀请成员需要一个团队或专业计划。你将被重新定向到升级你的工作区。\"],\"M9p3Vw\":[\"无限活动日志\"],\"MCIXdZ\":[\"连接您的GitHub帐户来导入项目。\"],\"MFKlMB\":[\"邀请\"],\"MHrjPM\":[\"标题\"],\"MI5OBT\":[\"URL只能包含字母、数字、连字符\"],\"MK16u2\":[\"没有日期\"],\"MKAScN\":[\"可以查看单板\"],\"MN6YzG\":[\"工作区 slug更新\"],\"MWrbWq\":[\"设置|帐户\"],\"MdN5zD\":[\"您需要管理员才能管理工作区权限。\"],\"MdwUGG\":[\"使用可重复使用的板模板节省时间。\"],\"MeO/vH\":[\"这将导致永久删除与此工作区关联的所有数据。\"],\"MlyjJu\":[\"显示名称不能超过280个字符\"],\"MpFIca\":[\"座位\"],\"MxQXhL\":[\"无法创建工作区\"],\"N/bcWA\":[\"登录| kan.bn\"],\"N3380t\":[\"会制作板子\"],\"N7aud6\":[\"智能搜索\"],\"NH54UR\":[\"将检查项重命名为<0>\",[\"0\"],\"\"],\"NM2hyD\":[\"选择工作区\"],\"NcFrgC\":[\"董事会已存档。\"],\"NcHwr6\":[\"没有\",[\"boardLabel\"]],\"NgaR6B\":[\"输入密码\"],\"NnH3pK\":[\"测试\"],\"NoNwIX\":[\"不活跃的\"],\"NwiNTb\":[\"成员\"],\"NypLoL\":[\"重命名检查表\"],\"O0li0W\":[\"输入您当前的密码,然后选择一个新的安全密码。\"],\"O1wAlQ\":[\"客人\"],\"O3oNi5\":[\"电子邮件\"],\"O6v9mX\":[\"创建新的\",[\"boardTypeLabel\"]],\"O83K21\":[\"增加了一个检查检查清单项\"],\"O9jVbx\":[\"低优先级\"],\"OAYToL\":[\"这将删除此工作区中的所有自定义成员权限。成员将仅从其角色继承权限。\"],\"OIA0ad\":[\"更新工作区名称\"],\"OTxjpR\":[\"你的工作区\"],\"OZtEcz\":[\"API\"],\"Odv3J6\":[\"断开GitHub\"],\"Oi+J+N\":[\"选择一个开始的计划。所有付费计划都包括14天的免费试用。\"],\"OkTY4+\":[\"密码长度不能超过512个字符\"],\"Oo4E6p\":[\"无法复制卡片\"],\"OpNhRn\":[\"不需要信用卡\"],\"OtjenF\":[\"请输入有效的电子邮件地址\"],\"OvoEq7\":[\"成员\"],\"OwneeH\":[\"自定义工作区用户名\"],\"Ozt2vv\":[\"您的密码已被修改。\"],\"P6dJdq\":[\"覆盖了\"],\"P8Cunr\":[\"默认用户名\"],\"PCIlOO\":[\"添加成员\"],\"PELbXB\":[\"您的GitHub帐户已连接。\"],\"PRjvDT\":[\"您确定要删除此评论吗?\"],\"PRofO0\":[\"编辑YouTube视频\"],\"PTzsxH\":[\"董事会可见性更新\"],\"PV7XRK\":[\"此工作区已达到其成员限制。工作区所有者将需要升级他们的计划。\"],\"PVT7q7\":[\"GitHub连接\"],\"PZCqeW\":[\"请稍后再试。\"],\"Pat4r8\":[\"基本路线图\"],\"PpZkda\":[\"特性\"],\"PyYD/v\":[\"将<0>\",[\"0\"],\"赋值给卡片\"],\"Q60WUZ\":[\"无法开始结帐\"],\"Q9pQaX\":[\"尚未找到此工作区的角色。\"],\"QD8opX\":[\"董事会\"],\"QHhZeE\":[\"模板创建成功\"],\"QNtP5M\":[\"使用模板\"],\"Qh7QmR\":[\"从收藏夹中删除\"],\"QnzD50\":[\"内部\"],\"QriiAI\":[\"您已达到\",[\"0\"],\"座位限制。请升级您的计划以增加更多会员。\"],\"QtACvI\":[\"创建标签\"],\"Qtzfdk\":[\"Pro Plan∞\"],\"R+w/Va\":[\"计费\"],\"R1c3Mq\":[\"董事会名称是必需的\"],\"R275Pz\":[\"您的专业计划有无限的座位。新会员不需额外收费!\"],\"R3FsF4\":[\"下载失败了\"],\"R41XLH\":[\"更新Webhook失败\"],\"R6pB8R\":[\"Github上的星星\"],\"RHZu7R\":[\"深受世界各地团队的喜爱\"],\"RJA+sg\":[\"新票\"],\"RRn9jf\":[\"点击我们发送给\",[\"magicLinkRecipient\"],\"的链接进行登录。\"],\"RSGOS1\":[\"可以删除列表\"],\"RfgJqw\":[\"更新截止日期\"],\"RkXlPZ\":[\"GitHub\"],\"RoafuO\":[\"发送反馈\"],\"RtlIYB\":[\"您即将修改密码。\"],\"RzxgOE\":[\"角色和权限\"],\"S3wq2O\":[\"移动到工作区\"],\"SFnH1j\":[\"为什么要做一个开源的Trello?\"],\"SMaFdc\":[\"退订\"],\"SNfg0e\":[\"可以查看工作区\"],\"SPLN9O\":[\"拥有你的数据\"],\"SRvxId\":[\"用于签名验证的HMAC秘密\"],\"STSYcd\":[\"可以删除评论\"],\"SUXBxp\":[\"工程\"],\"SUvm1Y\":[\"适合那些刚开始只需要必需品的人。\"],\"SWEskc\":[\"URL长度必须至少为3个字符\"],\"Sb2gYF\":[\"新列表\"],\"ScJ9fj\":[\"隐私政策\"],\"Se/UIp\":[\"要做\"],\"SiPp29\":[\"创建Webhook\"],\"SkCNhl\":[\"搜索木板和卡片……\"],\"SlfejT\":[\"错误\"],\"T/pF0Z\":[\"从收藏夹中删除\"],\"T21jY/\":[\"在卡片上添加标签\"],\"T7DJ2k\":[\"无法添加评论\"],\"T7LJic\":[\"将卡片移动到另一个列表\"],\"T7Mywq\":[\"无法更新板\"],\"TCOMOO\":[\"编辑权限\"],\"TCt/8K\":[\"有限的API访问\"],\"TFv5tM\":[\"无法更新角色\"],\"TH3Irz\":[\"许可\"],\"TKFUnX\":[\"帐户被删除\"],\"TX0bT7\":[\"没有配置Webhook。添加Webhook来接收通知。\"],\"TXO5TM\":[\"没有注册快捷键。\"],\"TYli1B\":[\"可以编辑评论\"],\"TbjyhA\":[\"文档\"],\"TcXcmk\":[\"代码评审\"],\"TdfEV7\":[\"已归档\"],\"TjREUS\":[\"新的API 密钥\"],\"TmvrjU\":[\"“看板 URL”长度至少为3个字符\"],\"TvY/XA\":[\"文档\"],\"TwoUcd\":[\"看板\"],\"Tz0i8g\":[\"设置\"],\"TztLaN\":[\"无法创建列表\"],\"U2+rn0\":[\"Webhook 名称是必需的\"],\"U3pytU\":[\"管理\"],\"U5dMR6\":[\"视图的工作区\"],\"UCLeG0\":[\"服务条款\"],\"UGCIzB\":[\"添加/编辑标签\"],\"UQbwrz\":[\"所有系统运行正常\"],\"URAE3q\":[\"停顿了一下\"],\"USVCGU\":[\"取消激活邀请链接错误\"],\"UZREi+\":[\"模板\"],\"UbRKMZ\":[\"等待\"],\"UbYdrA\":[\"付款频率\"],\"UeDFpo\":[\"项目的资金来源是什么?\"],\"Uf+1DF\":[\"目的地的工作区\"],\"UirJfL\":[\"自定义SLA\"],\"UlhdTP\":[\"工作区中删除\"],\"Un80BR\":[\"OSS的朋友\"],\"UoSI+i\":[\"最适合需要协作的小型和成长中的团队\"],\"UveK6V\":[\"进入app\"],\"Uworke\":[\"兼职\"],\"UxKoFf\":[\"导航\"],\"V1KOLq\":[\"邮件通知\"],\"V1o9Jo\":[\"无法更新Webhook\"],\"V3MPSQ\":[\"更新标题\"],\"V8YWP3\":[\"输入自定义标题\"],\"VHS0aJ\":[\"清除所有自定义权限?\"],\"VKoDQD\":[\"创建新的\",[\"0\"]],\"VOwhhz\":[\"ID复制\"],\"VTpWX6\":[\"工作区\"],\"VUZDlr\":[\"奖状\"],\"VXk54Y\":[\"自行分配卡片\"],\"VbyRUy\":[\"评论\"],\"VhMDMg\":[\"更改密码\"],\"Vt50G1\":[\"基本的看板\"],\"VvCMyU\":[\"把板子移到另一个工作区\"],\"W/Elkg\":[\"中优先级\"],\"W/nQk1\":[\"免费的计划\"],\"W1ewR0\":[\"无法复制链接\"],\"W5r8Qh\":[\"删除一个检查表项\"],\"W8oT+L\":[\"获取视频信息失败\"],\"WHHLh9\":[\"无法删除附件\"],\"WI4eGo\":[\"如何获得自定义URL?\"],\"WQPDcG\":[\"无法更新检查表项\"],\"WRkpB1\":[\"注册禁用\"],\"WRsbHO\":[\"您的Trello帐户已连接。\"],\"WYDptz\":[\"订阅所需的\"],\"WYwN1G\":[\"新的导入\"],\"WbTDwg\":[\"在进步\"],\"Weq9zb\":[\"一般\"],\"WmPhYW\":[\"断开Trello帐户连接时发生错误。\"],\"WnEwDO\":[\"已经有账户了吗?<0><1>Sign in\"],\"Ws+3X+\":[\"无限座位和先进的功能,为成长中的球队。\"],\"Wy6pcF\":[\"无法更新电路板可见性\"],\"X0N0PA\":[\"(编辑)\"],\"XDRXbZ\":[\"工作区描述必须至少有3个字符长\"],\"XEoGkQ\":[\"转到主页\"],\"XILg0L\":[\"无效的电子邮件地址\"],\"XJOV1Y\":[\"活动\"],\"XNxYxq\":[\"板模板\"],\"XTKtey\":[\"创建列表\"],\"XXbgHS\":[\"聘请了\"],\"XYLcNv\":[\"支持\"],\"XicmhT\":[\"到期日期\"],\"Xid3K6\":[\"“单板URL”只能包含字母、数字和连字符\"],\"Xjj/kS\":[\"看板备用\"],\"Xlkxmi\":[\"密码设置\"],\"XpcjLO\":[\"无法更新板URL\"],\"Y8yzGg\":[\"开始免费。随着团队的成长而升级。没有隐藏费用,没有合同。\"],\"YBBifR\":[\"断开Trello\"],\"YEOVrT\":[\"SAML SSO\"],\"YKeYae\":[\"无法重新排序检查清单项目\"],\"YRk79X\":[\"为大型组织提供高级安全性、遵从性和专用支持。\"],\"YVT40D\":[\"移除标签<0>\",[\"0\"],\"\"],\"YaZDYI\":[\"升级订阅错误\"],\"YcyP2z\":[\"无法创建模板\"],\"Yf9FAx\":[\"他们将无法访问此工作区。\"],\"YhvWXb\":[\"板分析\"],\"YirHq7\":[\"反馈\"],\"YkfDoz\":[\"年度\"],\"YoyKbT\":[\"此API 密钥将只显示一次。请把它保存在安全的地方。\"],\"Ypy5pZ\":[\"您确定要删除Webhook“\",[\"webhookName\"],\"”吗?此操作不能撤消。\"],\"YtUfwW\":[\"使用\",[\"0\"],\"登录失败。请再试一次。\"],\"Yx0Ud8\":[\"要求\"],\"Z3FXyt\":[\"加载……\"],\"Z3krJD\":[\"允许工作区成员看到彼此的电子邮件地址\"],\"Z6r9z1\":[\"无法删除卡\"],\"ZAs2NN\":[\"所有专业功能+\"],\"ZDGm40\":[\"删除账户\"],\"ZDIydz\":[\"开始\"],\"ZDPJBc\":[\"自定义用户名需要升级到Pro计划\"],\"ZDo4HN\":[\"头脑风暴\"],\"ZH7TVS\":[\"卡标题\"],\"ZL1A+p\":[\"上传附件失败。请再试一次。\"],\"ZT4Khw\":[\"您确定要删除这张卡吗?\"],\"ZU5IYI\":[\"无限的棋盘,无限的列表,无限的牌。不需要信用卡。\"],\"ZWk38w\":[\"该板已移至\",[\"0\"],\"。\"],\"ZXSPJt\":[\"发生意外错误。请稍后再试。\"],\"ZhQoZn\":[\"你没有密码就登录了。设置密码,启用密码登录。\"],\"ZqDqbi\":[\"使用强大的过滤工具快速组织和查找卡片。\"],\"Zz1qkk\":[\"无限卡\"],\"a3LDKx\":[\"安全\"],\"aDzbuM\":[\"许可激活\"],\"aHCEmh\":[\"定价\"],\"aHRWVI\":[\"删除了截止日期\"],\"aJ4pMe\":[\"常见问题\"],\"aKJHG+\":[\"档案委员会\"],\"aW3TOw\":[\"邮件通知\"],\"aWDhU5\":[\"看板在团队中效果更好。适合小型和成长中的团队寻求合作。\"],\"aWlSc/\":[\"创建新列表\"],\"abUZlY\":[\"添加细节…\"],\"aelko+\":[\"您可以获得类似 <0>kan.bn/kan 的自定义工作区 URL,只需进入<1>工作区设置并购买专业版工作区订阅。所有订阅都将帮助项目开发!\"],\"agPptk\":[\"媒介\"],\"aiHZVP\":[\"查看文档\"],\"an6ayw\":[\"Webhook 创建\"],\"b/LfJo\":[\"电子邮件\"],\"b3Thhd\":[\"上传失败\"],\"b5FKyH\":[\"增加了标签<0>\",[\"0\"],\"\"],\"b9XOHo\":[\"创建\",[\"0\"]],\"bD8I7O\":[\"完整的\"],\"bDI6VI\":[[\"0\"],\"已从您的收藏夹中删除。\"],\"bFREhu\":[\"列表结束\"],\"bJZm1W\":[\"申请人\"],\"bJtM0P\":[\"这个工作区 URL是保留的\"],\"bKzM8L\":[\"专职客户经理\"],\"bZSICm\":[\"无法添加检查表项\"],\"bcIybO\":[\"工作区名称是必需的\"],\"bdztP2\":[\"研究\"],\"be30i9\":[\"$0\"],\"bfZE+Y\":[\"成员角色已更新。\"],\"bff61F\":[\"团队计划\"],\"bfgr/e\":[\"问题\"],\"bmXKoX\":[\"增加了\",[\"0\"],\"标签:<0>\",[\"labelList\"],\"\"],\"bqAQaT\":[\"删除帐户错误\"],\"c/IAuR\":[\"重要的\"],\"c1vOQR\":[\"无法创建Webhook\"],\"c3b0B0\":[\"开始\"],\"c4nMcR\":[\"你的头像\"],\"c9AJhn\":[\"加入工作区\"],\"cAgBMh\":[\"完全控制和所有权:\"],\"cFQEU/\":[\"打开键盘快捷键\"],\"cOh+MI\":[\"筛选\"],\"cWXW+7\":[\"添加Webhook\"],\"cWcxrL\":[\"新检查清单\"],\"cWtfn1\":[\"升级到专业版(每月29美元)\"],\"cdyS7J\":[\"谷歌SSO\"],\"chyf4J\":[\"工作描述\"],\"cji2nM\":[\"创建邀请链接错误\"],\"cnGeoo\":[\"删除\"],\"cp1rsD\":[\"取消邀请链接\"],\"csFbe+\":[\"转到模板\"],\"curoK5\":[\"新的工作区\"],\"d+ACJK\":[\"创建\",[\"boardTypeLabel\"]],\"d+F6q9\":[\"创建\"],\"d196/6\":[\"无法移动板子\"],\"d33Usy\":[\"创建检查清单\"],\"dEgA5A\":[\"取消\"],\"dUh9QW\":[\"规划\"],\"ddrz1m\":[\"逾期\"],\"delOXn\":[\"无法更新标签\"],\"dgr4Kq\":[\"编辑标签\"],\"dmKdk0\":[\"一旦你删除了你的工作区,就没有回头路了。此操作不能撤消。\"],\"dsLT3m\":[\"创建卡\"],\"dtQIWT\":[\"协作\"],\"dtbpdR\":[\"Trello\"],\"duf3Nr\":[\"这个工作区 URL已经被占用了\"],\"e1v+J3\":[\"秘密(可选)\"],\"e4hPSt\":[\"重置为角色默认值\"],\"eEQyz+\":[\"通过详细的活动历史记录跟踪所有卡片更改。\"],\"ePK91l\":[\"编辑\"],\"eZCGbT\":[\"是的,我们提供个人使用的永久免费计划。没有限制,没有付费墙,没有限制。\"],\"edWbV6\":[\"链接复制\"],\"ekCRTP\":[\"拒绝了\"],\"en3oy5\":[\"特征\"],\"euc6Ns\":[\"重复的\"],\"eus61c\":[\"发送测试\"],\"evg7+A\":[\"您的看板已经导入。\"],\"evj0lK\":[\"你们有免费的计划吗?\"],\"f8fH8W\":[\"设计\"],\"f8lDFq\":[\"创建卡片\"],\"fDQ7hA\":[\"复制标签\"],\"fEY2vP\":[\"未找到卡片\"],\"fQCrjt\":[\"您的板的可见性已设置为\",[\"0\"],\"。\"],\"fR9laE\":[\"输入您当前的密码\"],\"fSf2ee\":[\"查看我们的路线图。\"],\"fW5sSv\":[\"编辑Webhook\"],\"fYVH36\":[\"无法更新评论\"],\"fcWrnU\":[\"签出\"],\"fuwKpE\":[\"请再试一次。\"],\"fvLNDy\":[\"目前还没有创建任何列表\"],\"fzGyWs\":[\"更改应用程序字体大小。\"],\"fziA2d\":[\"无限的评论\"],\"g2xBxu\":[\"将Trello板导入Kan很容易。您可以按照我们的逐步指导<0>here。\"],\"g9NChz\":[\"客户经理\"],\"gGx5tM\":[\"编辑\"],\"gKmoow\":[\"这个URL是保留的\"],\"gL/7jw\":[\"添加描述…(键入‘/’打开命令或键入‘@’提及)\"],\"gQ/02p\":[\"断开GitHub连接错误\"],\"gUX7b+\":[\"<0/>的开源替代Trello\"],\"gZxH/p\":[\"将截止日期更改为<0>\",[\"formattedDate\"],\"\"],\"ghSJ4U\":[\"工作区名称不能超过64个字符\"],\"gkxGkF\":[\"·随时切换计划或取消\"],\"gkzAEM\":[\"继续使用\",[\"0\"]],\"goklcJ\":[\"面试\"],\"gpfJ3v\":[\"永远免费的,\"],\"gukxZ5\":[\"新员工培训\"],\"gv5kbo\":[\"“单板URL”不能超过60个字符\"],\"h16FyT\":[\"列表\"],\"h2FKMV\":[\"你没有得到许可\"],\"h2ztFt\":[\"所有免费功能+\"],\"h4VV67\":[\"增加了一个检查清单\"],\"h7MgpO\":[\"键盘快捷键\"],\"h8DugX\":[\"标签\"],\"hAMddS\":[\"将自己从卡片中移除\"],\"hB02vO\":[\"管理成员\"],\"hQRttt\":[\"提交\"],\"hXMFoN\":[\"没有列表\"],\"hYzsXr\":[\"设置|集成\"],\"hty0d5\":[\"周一\"],\"i0ZMQl\":[\"委员会存档\"],\"i30J2U\":[\"未找到项目\"],\"i5rE2/\":[\"URL不能超过64个字符\"],\"i5yNAO\":[\"无限的席位\"],\"iH8pgl\":[\"回来\"],\"iHcdea\":[\"下周到期\"],\"iLbjv+\":[\"可以编辑工作区\"],\"iQmbPb\":[\"许可证\"],\"iSLIjg\":[\"连接\"],\"iTylMl\":[\"模板\"],\"iVIGZb\":[\"附件上传\"],\"isRobC\":[\"新\"],\"itgYbC\":[\"测试网钩发送成功!\"],\"iwr7AP\":[\"民主与经济事务研究所(Institute for Democracy and Economic Affairs)\"],\"iy1wb+\":[\"设置| API\"],\"j0o6ml\":[\"您的工作区描述\"],\"j1+HPc\":[\"连接GitHub帐户时发生错误。\"],\"j2+d/o\":[\"API参考\"],\"j9IZZ0\":[\"自定义工作区 URL\"],\"jDRt4n\":[\"您想退订吗?\"],\"jEw0Mr\":[\"请输入有效的URL\"],\"jIuWsV\":[\"Webhook 名称不能超过255个字符\"],\"jL82rC\":[\"清除自定义权限\"],\"jNuzV/\":[\"可以删除卡片\"],\"jQ6I8X\":[\"角色更新\"],\"jZBHkN\":[\"工作区的名称长度必须至少为3个字符\"],\"jbGGzf\":[\"登录或创建一个帐户来激活您的\",[\"partnerName\"],\"许可证\"],\"jfC/xh\":[\"联系\"],\"jl3aEJ\":[\"将检查项<0>\",[\"0\"],\"标记为不完整\"],\"jlB2RY\":[\"您输入的当前密码不正确。\"],\"jwI32v\":[\"找不到板子\"],\"k7rCa/\":[\"大\"],\"kECVpo\":[\"您确定要删除此标签吗?\"],\"kQwvU8\":[\"从卡片上取下标签\"],\"kSxwQL\":[\"您可以点击<0>成员页面右上角的“邀请”按钮并输入团队成员的电子邮件地址来邀请他们。他们会收到一个加入工作区的链接。\"],\"kYu0eF\":[\"删除工作区\"],\"kfOGMr\":[\"快速赢得\"],\"klpSmb\":[\"编辑工作区 URL\"],\"kp6L3T\":[\"此工作区用户名已被占用\"],\"kryGs+\":[\"卡\"],\"kuoc68\":[\"10美元/月\"],\"kwkhPe\":[\"升级\"],\"kxEs5t\":[\"Trello导入\"],\"kxZ7LS\":[\"Webhook更新\"],\"l2PIAy\":[\"自我托管与Github\"],\"l31EoQ\":[\"查找关于 Kan 的常见问题答案。如果找不到所需内容,欢迎<0>联系我们。\"],\"l3s5ri\":[\"导入\"],\"l4asa1\":[\"此板是私有的或不存在\"],\"lGjicL\":[\",或参阅我们的\"],\"lKAvEd\":[\"断开Trello连接错误\"],\"lXvXNI\":[\"复制邀请链接失败\"],\"lYT7pQ\":[\"删除表\"],\"lkz85l\":[\"Kan和Trello的主要区别在于,Kan是开源的,任何人都可以查看、修改和贡献我们的代码。我们的云产品对个人使用的功能也没有限制,而Trello锁定了基本功能,比如你可以在付费墙后面创建的电路板数量。\"],\"lo8xBK\":[\"您确定要删除\",[\"entityLabel\"],\"吗?\"],\"lpIMne\":[\"密码不匹配\"],\"lsgnzd\":[\"升级到专业版时出错\"],\"lyqwgn\":[\"添加标签\"],\"m2nk0i\":[\"简单的定价\"],\"mErq7F\":[\"报名\"],\"mHhffx\":[\"无法创建检查表\"],\"mTGd3+\":[\"删除检查检查清单\"],\"mTwGOf\":[\"此邀请链接无效或已过期。\"],\"mU+M00\":[[\"0\"],\"已添加到您的收藏夹中。\"],\"mVZH9V\":[\"当Trello于2011年推出时,它以其精心设计的简单性震惊了所有人,但多年来它失去了魔力,成长为更接近“Jira Lite”的东西。这个项目是我们试图在开源中重新获得Trello简单的原始魔力。\"],\"mZGPxt\":[\"邀请链接复制到剪贴板\"],\"mchgzf\":[\"您已成功注册。\"],\"mgXgHu\":[\"到董事会\"],\"mkehy7\":[\"激活您的帐户\"],\"mrhyIB\":[\"适合小型和成长中的团队寻求合作。\"],\"mwBdZ2\":[\"这将导致与您的帐户相关的所有数据永久删除。\"],\"mx8+1u\":[\"无限的成员\"],\"n+xLOH\":[\"客户支持\"],\"n1GRql\":[\"新标签\"],\"n1ekoW\":[\"登录\"],\"n6EWYz\":[\"用于对Webhook有效负载进行签名以进行验证。留空以保留现有的秘密。\"],\"n9V+ps\":[\"输入您的姓名\"],\"nG7mus\":[\"密码已设置\"],\"nKBUeF\":[\"这张卡已被复制。\"],\"nOhz3x\":[\"注销\"],\"nYNMZZ\":[\"在列表中的位置(0 = first, end为空)\"],\"nabda1\":[\"删除卡\"],\"nbfdhU\":[\"集成\"],\"ngBZOd\":[\"添加评论…(键入‘/’打开命令或键入‘@’提及)\"],\"nhMhRr\":[\"感谢您的反馈!\"],\"njJFtc\":[\"删除评论\"],\"nk7caK\":[\"连接Trello\"],\"nol/Fb\":[\"如何邀请团队成员?\"],\"notwF1\":[\"模板名称不能超过100个字符\"],\"nq7q3Z\":[\"API 密钥名称不能超过30个字符\"],\"nqdIhs\":[\"自定义板模板\"],\"nryrgW\":[\"所有成员权限覆盖已重置为其角色默认值。\"],\"o+JCfN\":[\"深受世界各地快速发展团队的信赖\"],\"o4e/70\":[\"至少选择一个事件\"],\"o4sQAg\":[\"创建 Webhook 失败\"],\"o7J4JM\":[\"过滤器\"],\"o8adVG\":[\"10mb文件上传\"],\"o9WLwO\":[\"无法更新卡\"],\"oVBq1w\":[\"每用户/月\"],\"oW13KZ\":[\"今天就免费开始吧\"],\"odFCYX\":[\"无效的邀请\"],\"okpxfB\":[\"创建新密钥\"],\"oyRjD/\":[\"职业计划\"],\"p/hk9N\":[\"您已成功登录。\"],\"p2sbyZ\":[\"未找到模板\"],\"pBsoKL\":[\"添加到收藏夹\"],\"pEb95p\":[\"机票ID已复制到剪贴板\"],\"pFGfsR\":[\"看看我们最喜欢的一些开源项目。\"],\"pFKC6A\":[\"API 密钥名称\"],\"pL78ec\":[\"添加到收藏夹\"],\"pVctI7\":[\"内部部署选项\"],\"pXVFJy\":[\"可以删除单板\"],\"pa9o5D\":[\"裁剪你的头像\"],\"pfa8F0\":[\"显示名称\"],\"pmUArF\":[\"工作区\"],\"pnrmSP\":[\"新卡\"],\"ppaRWv\":[\"自我主机\"],\"pvnfJD\":[\"黑暗\"],\"q+lt9D\":[\"删除标签错误\"],\"q3il6U\":[\"字体大小\"],\"qPP4lD\":[\"邀请成员需要一个团队计划。你将被重新定向到升级你的工作区。\"],\"qQXocp\":[\"可以管理工作区设置\"],\"qaS+1/\":[\"最适合想要无限制扩展的团队\"],\"qfUS/w\":[\"开源之友\"],\"qkjvgj\":[\"您的工作区已被删除。\"],\"qlAIQ1\":[\"远程\"],\"qtE5nt\":[\"添加一个项目…\"],\"qvFa8r\":[\"公开\"],\"qzdST2\":[\"董事会的可见性\"],\"r+dxEH\":[\"激活license时出错。\"],\"r6BgwX\":[\"登录时需要输入密码。\"],\"rD6UIt\":[\"开始使用云\"],\"rF8SEQ\":[\"编辑评论\"],\"rQRXo8\":[\"输入要更新的新密码\"],\"rQXTmd\":[\"卡片URL复制到剪贴板\"],\"rRM7r0\":[\"导入您的Trello板并开始运行。\"],\"rYUZIe\":[\"选择源\"],\"raHesj\":[\"您的订阅已被取消!\"],\"rarRW/\":[\"邀请成员出错\"],\"ri1hHe\":[\"下个月到期\"],\"rmN315\":[\"有趣的\"],\"rs7L54\":[\"向卡中添加了一个成员\"],\"rtbVvN\":[\"可以编辑列表\"],\"s+MGs7\":[\"资源\"],\"s6iE/c\":[\"目前无法注册。请稍后再试。\"],\"sBhOFG\":[\"简单,可视化的任务管理,只是工作。拖放卡片,与团队协作,完成更多工作。\"],\"sDLCvT\":[\"连接您最喜欢的工具,以简化您的工作流程。\"],\"sDuhfK\":[\"首发优惠:使用Pro每月只需29美元,即可获得无限座位\"],\"sU2uWc\":[\"卡复制\"],\"sUZo7y\":[\"注册bb1000日元\"],\"sVBn4K\":[\"更新显示名称错误\"],\"sY2lzr\":[\"此附件没有可用的下载URL。\"],\"sZ/WDz\":[\"移动板\"],\"sZixXc\":[\"密码设置错误\"],\"sbNNyi\":[\"新Webhook\"],\"sllapH\":[\"创建新的\",[\"boardTypeLabel\"],\"开始\"],\"snMaH4\":[\"删除Webhook\"],\"ssK7k+\":[\"找不到许可密钥。请联系技术支持。\"],\"t+R8+P\":[\"执行\"],\"t/YqKh\":[\"删除\"],\"t0dTPm\":[\"将Webhook配置为在创建、更新、移动或删除卡片时接收通知。\"],\"t2nDzl\":[\"查看和管理您的账单和订阅。\"],\"t6FvJH\":[\"可以添加注释\"],\"tGwwnq\":[\"更新描述。\"],\"tHcbLF\":[\"会编辑版面\"],\"tIdipJ\":[\"编辑板URL\"],\"tMYIu7\":[\"活动日志\"],\"tOZp9v\":[\"可配置用户角色和权限\"],\"tTbref\":[\"注册时需要输入密码。\"],\"tUL16u\":[\"你没有任何其他的工作区来移动这个板。\"],\"tYN21H\":[\"用户已经是此工作区的成员\"],\"tbNcu4\":[\"董事会从未归档\"],\"tca56/\":[\"您的文件已上传成功。\"],\"tfDRzk\":[\"保存\"],\"tlhgDC\":[\"没有已归档的看板\"],\"tmlJN1\":[\"请输入有效的YouTube URL\"],\"tmpW+w\":[\"删除板\"],\"tst44n\":[\"事件\"],\"tyHiOa\":[\"请稍后再试,或联系客户支持。\"],\"u2+JIh\":[\"自定义url需要升级到专业计划\"],\"u8JHrO\":[\"清晰的过滤器\"],\"uAQUqI\":[\"状态\"],\"uEGGDs\":[\"我的 Webhook\"],\"uOqaMC\":[\"你被邀请加入一个工作区。\"],\"uP4V6I\":[\"人人免费\"],\"uXGLuq\":[\"创建API 密钥\"],\"uXKtPH\":[\"无限的成员\"],\"uZg2+w\":[\"每月只需29美元,就能让你的工作区焕然一新。下面是你将得到的:\"],\"uck1tz\":[\"从卡中删除一个成员\"],\"usVytm\":[\"一旦你删除了账号,就再也回不去了。此操作不能撤消。\"],\"uvH2xS\":[\"复制成员\"],\"v+Wp++\":[\"开源\"],\"v1kQyJ\":[\"人则\"],\"v3YoMA\":[\"高级\"],\"vAR/I8\":[\"在您自己的基础设施上运行\"],\"vAj6xG\":[\"您可以按照我们<0>仓库中的说明进行自托管。\"],\"vSJd18\":[\"视频\"],\"vUr5JT\":[\"没有账户?<0><1>Sign up\"],\"vXIe7J\":[\"语言\"],\"vXemf6\":[\"错误\"],\"va/3u1\":[\"控制谁可以查看和编辑您的板。\"],\"vbskQn\":[\"输入API 密钥名称\"],\"veIDCY\":[\"开始14天免费试用\"],\"vfRdCZ\":[\"无法重置权限\"],\"vgdzLf\":[\"创建另一个\"],\"vifyyw\":[\"法律\"],\"vkqf1W\":[\"谷歌SSO + SAML\"],\"vlxQFL\":[\"此成员的权限已重置为其角色默认值。\"],\"vnS6Rf\":[\"SSO\"],\"vneRvS\":[\"每月的账单\"],\"vo2a+a\":[\"市场营销\"],\"vuxdLS\":[\"长期\"],\"vwGkYB\":[\"密码至少为8个字符\"],\"wE3hGS\":[\"板移动\"],\"wIb7Ng\":[\"软件开发\"],\"wK4OTM\":[\"标题(可选)\"],\"wM8xd8\":[\"初级\"],\"wPZBpR\":[\"请选择要上传的文件。\"],\"wY+6Ye\":[\"此看板 URL已经有人占用了\"],\"wakO3W\":[\"增加了检查表<0>\",[\"0\"],\"\"],\"wewm3j\":[\"单板名称不能超过100个字符\"],\"wgNoIs\":[\"选择所有\"],\"wlQNTg\":[\"成员\"],\"wqkcin\":[\"可以查看评论\"],\"wqxglO\":[\"学习\"],\"wruKPE\":[\"支持项目的发展\"],\"wsy94z\":[\"最适合有高级需求的大型组织\"],\"wtxjAY\":[\"工作区成员\"],\"x0kMO/\":[\"更新工作区 URL出错\"],\"x8GeCD\":[\"显示名称已更新\"],\"xEbBrW\":[\"你使用的是什么许可证?\"],\"xGVfLh\":[\"继续\"],\"xLTZVf\":[\"工作周开始日\"],\"xMn+V9\":[\"从Trello导入\"],\"xRPn3U\":[\"输入您的电子邮件地址\"],\"xbAVoi\":[[\"boardLabel\"],\" | \",[\"0\"]],\"xvcYhz\":[\"清除任何自定义成员权限,以便所有成员仅从其角色默认值继承权限。\"],\"y3aU20\":[\"保存更改\"],\"yD3ZSw\":[\"改变你的语言偏好。\"],\"yV7o5I\":[\"我如何导入我的Trello板?\"],\"yb/fjw\":[\"批准\"],\"ygpeZ8\":[\"您的license已成功激活。\"],\"yhLUU8\":[\"连接GitHub出错\"],\"yndBF+\":[[\"projectCount\",\"plural\",{\"one\":[\"导入项目 (1)\"],\"other\":[\"导入项目 (\",[\"projectCount\"],\")\"]}]],\"yz7wBu\":[\"关闭\"],\"zC8Whw\":[\"从创建一个新列表开始\"],\"zDNL2V\":[\"测试发送\"],\"zERArS\":[\"更新标题为<0>\",[\"0\"],\"\"],\"zEcnBA\":[\"SLA\"],\"zKY5xi\":[\"创建邀请链接\"],\"zMlxCA\":[\"1用户\"],\"zMquA7\":[\"选择一个计划\"],\"zQPhSa\":[\"转换为链接\"],\"zQX5Dj\":[\"列表名称\"],\"zYRVNp\":[\"选择一个列表\"],\"zkWmBh\":[\"每年\"],\"zl1b97\":[\"无法创建卡\"],\"zoEbXq\":[\"可以查看卡片\"],\"zt/6cS\":[\"最适合想要协作和快速移动的小团队。\"],\"zto8aj\":[\"Trello断开连接\"],\"zwBp5t\":[\"私人\"],\"zwTiVn\":[\"删除附件<0>\",[\"0\"],\"\"],\"zwWKhA\":[\"了解更多\"],\"zxKs+y\":[\"明天到期\"],\"zzDlyQ\":[\"成功\"]}")as Messages; \ No newline at end of file diff --git a/apps/web/src/pages/_app.tsx b/apps/web/src/pages/_app.tsx index eb570325..94a463ab 100644 --- a/apps/web/src/pages/_app.tsx +++ b/apps/web/src/pages/_app.tsx @@ -82,8 +82,8 @@ const MyApp: AppType = ({ Component, pageProps }: AppPropsWithLayout) => { )}