Compare commits
1 Commits
fix/trunca
...
chore/upda
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d602f31c2f |
@@ -295,7 +295,6 @@ checksums:
|
||||
Login%20%7C%20kan.bn/singular: 42a6c8dcd73e0d46e652646dc86871eb
|
||||
Logout/singular: 07948fdf20705e04a7bf68ab197512bf
|
||||
Long-term/singular: 51cb6f0b112250c5a091ca5f0866904b
|
||||
Loved%20by%20teams%20worldwide/singular: 41de5089fef56bb0bfcf7f8649a0cb93
|
||||
Low%20Priority/singular: 509b5cb7c1e8a185e0aa6d38c64c90e8
|
||||
magic%20link/singular: db9d17a5bd98bba8aa0d8068c68579f3
|
||||
Make%20template/singular: 7a1c63b75cea690b3fda6c3f203e31ff
|
||||
@@ -395,7 +394,6 @@ checksums:
|
||||
Save%20time%20with%20reusable%20board%20templates./singular: d0f2d7d0fd682ceaf4ca12c6353fd75a
|
||||
Screening/singular: 0327bfb25db87bdacf00d4dc297f8b26
|
||||
Search%20boards%20and%20cards.../singular: 137017b2b3e885c4894ca8c899af5bc2
|
||||
See%20what%20our%20users%20are%20saying%20about%20Kan/singular: e3bf6f95419169f460fb6918a0afc512
|
||||
Select%20all/singular: eedc7cdb02de467c15dc418a066a77f2
|
||||
Select%20source/singular: c7b0ec447415ff62856803a4d7838bd6
|
||||
Self%20Host/singular: 43fbce2027548b712002e489a20a621a
|
||||
@@ -437,7 +435,6 @@ checksums:
|
||||
Template%20name%20is%20required/singular: 34d674d59c414c2051ef5bc0a62e3c00
|
||||
Templates/singular: 8ed62f56c81fa96c0f3182acb331bf63
|
||||
Terms%20of%20service/singular: 0b8a8b23aff021a6cde79613fdb39c28
|
||||
Testimonials/singular: e958aa3d3743031e2cbfbfd8f1e381f6
|
||||
Thank%20you%20for%20your%20feedback!/singular: 07edd8c50685a52c0969d711df26d768
|
||||
The%20current%20password%20you%20entered%20is%20incorrect./singular: 67a76bf346ab4b48563269e9d941a64a
|
||||
The%20main%20difference%20between%20Kan%20and%20Trello%20is%20that%20Kan%20is%20open%20source%2C%20allowing%20anyone%20to%20view%2C%20modify%2C%20and%20contribute%20to%20our%20code.%20Our%20cloud%20offering%20also%20offers%20no%20restrictions%20on%20features%20for%20individual%20use%2C%20whereas%20Trello%20locks%20basic%20features%20such%20as%20the%20number%20of%20boards%20you%20can%20create%20behind%20a%20paywall./singular: db6e22cc955c5fbe547feedeb48f8719
|
||||
@@ -537,7 +534,7 @@ checksums:
|
||||
Workspace%20description%20updated/singular: 19ddb6ee9ead26982a90dee426f3ee1f
|
||||
Workspace%20members/singular: 1857292f9567c556c781a23bd7e10544
|
||||
Workspace%20name/singular: 855614bbf862fd6a9f6a3e76943f92d4
|
||||
Workspace%20name%20cannot%20exceed%2064%20characters/singular: 681f86c9ca31699fc5a3ca3790e5972c
|
||||
Workspace%20name%20cannot%20exceed%2024%20characters/singular: c8b8f79fb83abf8329cc34c1f51fcfc9
|
||||
Workspace%20name%20is%20required/singular: b8c5162dd08c4d941bc57f9d0cbee451
|
||||
Workspace%20name%20must%20be%20at%20least%203%20characters%20long/singular: e448ea97418d44b18b4c21c22b8ba779
|
||||
Workspace%20name%20updated/singular: 3206ea410ee1ea4182b27ac0d89f92a1
|
||||
|
||||
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 18 KiB |
@@ -39,7 +39,7 @@ export default function Dashboard({
|
||||
rightPanel,
|
||||
hasRightPanel = false,
|
||||
}: DashboardProps) {
|
||||
const { resolvedTheme } = useTheme();
|
||||
const { theme } = useTheme();
|
||||
const { openModal } = useModal();
|
||||
const { availableWorkspaces, hasLoaded } = useWorkspace();
|
||||
|
||||
@@ -95,7 +95,7 @@ export default function Dashboard({
|
||||
}
|
||||
}, [hasLoaded, availableWorkspaces.length, openModal]);
|
||||
|
||||
const isDarkMode = resolvedTheme === "dark";
|
||||
const isDarkMode = theme === "dark";
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -24,10 +24,7 @@ import { api } from "~/utils/api";
|
||||
import LoadingSpinner from "./LoadingSpinner";
|
||||
|
||||
const schema = z.object({
|
||||
name: z
|
||||
.string()
|
||||
.min(1, { message: t`Workspace name is required` })
|
||||
.max(64, { message: t`Workspace name cannot exceed 64 characters` }),
|
||||
name: z.string().min(1, { message: t`Workspace name is required` }),
|
||||
slug: z
|
||||
.string()
|
||||
.min(3, {
|
||||
|
||||
@@ -2,7 +2,7 @@ import { CgDarkMode } from "react-icons/cg";
|
||||
import { useTheme } from "next-themes";
|
||||
|
||||
const ThemeToggle = () => {
|
||||
const { theme, resolvedTheme, setTheme } = useTheme();
|
||||
const { theme, setTheme } = useTheme();
|
||||
|
||||
const toggleTheme = () => {
|
||||
setTheme(theme === "light" ? "dark" : "light");
|
||||
@@ -12,11 +12,11 @@ const ThemeToggle = () => {
|
||||
<button
|
||||
onClick={toggleTheme}
|
||||
className="rounded p-1.5 transition-all hover:bg-light-200 dark:hover:bg-dark-100"
|
||||
aria-label={`Switch to ${resolvedTheme === "light" ? "dark" : "light"} theme`}
|
||||
aria-label={`Switch to ${theme === "light" ? "dark" : "light"} theme`}
|
||||
>
|
||||
<CgDarkMode
|
||||
className={`h-4 w-4 text-light-900 transition-transform duration-200 dark:text-dark-900 ${
|
||||
resolvedTheme === "dark" ? "rotate-180" : "rotate-0"
|
||||
theme === "dark" ? "rotate-180" : "rotate-0"
|
||||
}`}
|
||||
/>
|
||||
</button>
|
||||
|
||||
@@ -3,7 +3,6 @@ import Link from "next/link";
|
||||
import { useRouter } from "next/navigation";
|
||||
import { Menu, Transition } from "@headlessui/react";
|
||||
import { t } from "@lingui/core/macro";
|
||||
import { useTheme } from "next-themes";
|
||||
import { Fragment } from "react";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
@@ -11,6 +10,7 @@ import { authClient } from "@kan/auth/client";
|
||||
|
||||
import { useIsMobile } from "~/hooks/useMediaQuery";
|
||||
import { useModal } from "~/providers/modal";
|
||||
import { useTheme } from "next-themes";
|
||||
import { getAvatarUrl } from "~/utils/helpers";
|
||||
|
||||
interface UserMenuProps {
|
||||
|
||||
@@ -54,7 +54,7 @@ export default function WorkspaceMenu({
|
||||
>
|
||||
<Menu.Button
|
||||
className={twMerge(
|
||||
"mb-1 flex h-[34px] min-w-0 flex-1 items-center rounded-md p-1.5 hover:bg-light-200 dark:hover:bg-dark-200",
|
||||
"mb-1 flex h-[34px] flex-1 items-center rounded-md p-1.5 hover:bg-light-200 dark:hover:bg-dark-200",
|
||||
isCollapsed &&
|
||||
"md:mb-1.5 md:h-9 md:w-9 md:flex-none md:justify-center md:p-0",
|
||||
)}
|
||||
@@ -67,7 +67,7 @@ export default function WorkspaceMenu({
|
||||
</span>
|
||||
<span
|
||||
className={twMerge(
|
||||
"ml-2 min-w-0 flex-1 truncate text-sm font-bold text-neutral-900 dark:text-dark-1000",
|
||||
"ml-2 truncate text-sm font-bold text-neutral-900 dark:text-dark-1000",
|
||||
isCollapsed && "md:hidden",
|
||||
)}
|
||||
>
|
||||
|
||||
@@ -63,7 +63,7 @@ msgstr "$8/Monat"
|
||||
msgid "1 user"
|
||||
msgstr "1 Benutzer"
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "Eine leistungsstarke, flexible Kanban-App, die dir hilft, Arbeit zu organisieren, Fortschritte zu verfolgen und Ergebnisse zu liefern – alles an einem Ort."
|
||||
|
||||
@@ -306,7 +306,7 @@ msgstr "Blogbeitrag"
|
||||
msgid "Board"
|
||||
msgstr "Board"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Board-Analytik"
|
||||
@@ -441,7 +441,7 @@ msgstr "Code-Review"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Arbeite nahtlos mit deinem Team zusammen."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -585,7 +585,7 @@ msgstr "Neue Liste erstellen"
|
||||
msgid "Create template"
|
||||
msgstr "Vorlage erstellen"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Arbeitsbereich erstellen"
|
||||
@@ -619,7 +619,7 @@ msgstr "Benutzerdefinierte Domain"
|
||||
msgid "Custom templates"
|
||||
msgstr "Benutzerdefinierte Vorlagen"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan"
|
||||
|
||||
@@ -627,7 +627,7 @@ msgstr "Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan"
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Benutzerdefinierter Workspace-Link"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "Benutzerdefinierte Workspace-URL"
|
||||
@@ -882,7 +882,7 @@ msgstr "Fehler beim Aktualisieren der Workspace-URL"
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Fehler beim Upgrade des Abonnements"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Fehler beim Upgrade auf Pro"
|
||||
|
||||
@@ -1033,7 +1033,7 @@ msgstr "Starten Sie noch heute kostenlos"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Starten Sie kostenlos ohne Nutzungsbeschränkungen. Für die Zusammenarbeit wechseln Sie zu einem Plan, der zur Größe Ihres Teams passt."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "In der Cloud starten"
|
||||
|
||||
@@ -1252,7 +1252,7 @@ msgstr "Labels & Filter"
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Einführungsangebot"
|
||||
@@ -1306,10 +1306,6 @@ msgstr "Abmelden"
|
||||
msgid "Long-term"
|
||||
msgstr "Langfristig"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Von Teams weltweit geliebt"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Niedrige Priorität"
|
||||
@@ -1428,7 +1424,7 @@ msgstr "Neue Vorlage"
|
||||
msgid "New Ticket"
|
||||
msgstr "Neues Ticket"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "Neuer Workspace"
|
||||
|
||||
@@ -1449,7 +1445,7 @@ msgstr "Keine {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "Keine Boards gefunden"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "Keine Kreditkarte erforderlich"
|
||||
|
||||
@@ -1576,7 +1572,7 @@ msgstr "Bitte wähle eine Datei zum Hochladen aus."
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1778,10 +1774,6 @@ msgstr "Vorauswahl"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Boards und Karten durchsuchen..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "Erfahren Sie, was unsere Nutzer über Kan sagen"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Alle auswählen"
|
||||
@@ -1795,7 +1787,7 @@ msgstr "Quelle auswählen"
|
||||
msgid "Self Host"
|
||||
msgstr "Selbst hosten"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Selbst hosten mit Github"
|
||||
|
||||
@@ -1886,7 +1878,7 @@ msgstr "Social Media"
|
||||
msgid "Software Development"
|
||||
msgstr "Softwareentwicklung"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Stern auf Github"
|
||||
|
||||
@@ -1957,10 +1949,6 @@ msgstr "Vorlagen"
|
||||
msgid "Terms of service"
|
||||
msgstr "Nutzungsbedingungen"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Kundenstimmen"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "Vielen Dank für dein Feedback!"
|
||||
@@ -1973,7 +1961,7 @@ msgstr "Das eingegebene aktuelle Passwort ist falsch."
|
||||
msgid "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."
|
||||
msgstr "Der hauptunterschied zwischen Kan und Trello ist, dass Kan open source ist und jedem ermöglicht, unseren code einzusehen, zu ändern und dazu beizutragen. Unser cloud-angebot bietet außerdem keine einschränkungen bei funktionen für die individuelle nutzung, während Trello grundlegende funktionen wie die anzahl der boards, die du erstellen kannst, hinter einer paywall versteckt."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "Die open source <0/> alternative zu Trello"
|
||||
|
||||
@@ -2022,11 +2010,11 @@ msgstr "Dies führt zur permanenten Löschung aller mit diesem Workspace verbund
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "Dies führt zur permanenten Löschung aller mit deinem Konto verbundenen Daten."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "Diese Workspace-URL ist bereits vergeben"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "Diese Workspace-URL ist reserviert"
|
||||
|
||||
@@ -2093,7 +2081,7 @@ msgstr "Liste konnte nicht erstellt werden"
|
||||
msgid "Unable to create template"
|
||||
msgstr "Vorlage konnte nicht erstellt werden"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "Workspace konnte nicht erstellt werden"
|
||||
|
||||
@@ -2197,7 +2185,7 @@ msgstr "Unbegrenzte kommentare"
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Unbegrenzte listen"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Unbegrenzte Mitglieder"
|
||||
@@ -2244,7 +2232,7 @@ msgstr "Upgrade"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Upgrade auf Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Upgrade auf Pro ($29/Monat)"
|
||||
|
||||
@@ -2257,17 +2245,17 @@ msgstr "Upgrade auf Team-Plan"
|
||||
msgid "Urgent"
|
||||
msgstr "Dringend"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "URL darf nur Buchstaben, Zahlen und Bindestriche enthalten"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "URL darf nicht länger als 24 Zeichen sein"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "URL muss mindestens 3 Zeichen lang sein"
|
||||
@@ -2358,7 +2346,7 @@ msgstr "Warum ein open source Trello entwickeln?"
|
||||
msgid "Workspace"
|
||||
msgstr "Arbeitsbereich"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Workspace erfolgreich erstellt. Du kannst später in den Einstellungen upgraden."
|
||||
|
||||
@@ -2388,17 +2376,16 @@ msgstr "Workspace-Beschreibung aktualisiert"
|
||||
msgid "Workspace members"
|
||||
msgstr "Workspace-mitglieder"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Name des Workspaces"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "Der Workspace-Name darf 64 Zeichen nicht überschreiten"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "Der Workspace-Name darf nicht länger als 24 Zeichen sein"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "Workspace-Name ist erforderlich"
|
||||
|
||||
@@ -2418,7 +2405,7 @@ msgstr "Workspace-Slug aktualisiert"
|
||||
msgid "Workspace URL"
|
||||
msgstr "Workspace-URL"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "workspace-url"
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ msgstr "1 user"
|
||||
#~ "A powerful, flexible kanban app that helps you organise work,\n"
|
||||
#~ " track progress, and deliver results—all in one place."
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
|
||||
@@ -346,7 +346,7 @@ msgstr "Blog Post"
|
||||
msgid "Board"
|
||||
msgstr "Board"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Board analytics"
|
||||
@@ -502,7 +502,7 @@ msgstr "Code Review"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Collaborate seamlessly with your team."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -666,7 +666,7 @@ msgstr "Create new list"
|
||||
msgid "Create template"
|
||||
msgstr "Create template"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Create workspace"
|
||||
@@ -708,7 +708,7 @@ msgstr "Custom templates"
|
||||
#~ msgid "Custom URLs require Pro plan ($29/month)"
|
||||
#~ msgstr "Custom URLs require Pro plan ($29/month)"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Custom URLs require upgrading to a Pro plan"
|
||||
|
||||
@@ -716,7 +716,7 @@ msgstr "Custom URLs require upgrading to a Pro plan"
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Custom workspace link"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "Custom workspace URL"
|
||||
@@ -971,7 +971,7 @@ msgstr "Error updating workspace URL"
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Error upgrading subscription"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Error upgrading to Pro"
|
||||
|
||||
@@ -1128,7 +1128,7 @@ msgstr "Get started for free today"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "Get started on Cloud"
|
||||
|
||||
@@ -1355,7 +1355,7 @@ msgstr "Labels & Filters"
|
||||
msgid "Language"
|
||||
msgstr "Language"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Launch offer"
|
||||
@@ -1409,10 +1409,6 @@ msgstr "Logout"
|
||||
msgid "Long-term"
|
||||
msgstr "Long-term"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Loved by teams worldwide"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Low Priority"
|
||||
@@ -1547,7 +1543,7 @@ msgstr "New Ticket"
|
||||
#~ msgid "New Ticket, Triaging, In Progress, Awaiting Customer, Resolution, Done"
|
||||
#~ msgstr "New Ticket, Triaging, In Progress, Awaiting Customer, Resolution, Done"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "New workspace"
|
||||
|
||||
@@ -1572,7 +1568,7 @@ msgstr "No {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "No boards found"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "No credit card required"
|
||||
|
||||
@@ -1699,7 +1695,7 @@ msgstr "Please select a file to upload."
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1909,10 +1905,6 @@ msgstr "Screening"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Search boards and cards..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "See what our users are saying about Kan"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Select all"
|
||||
@@ -1926,7 +1918,7 @@ msgstr "Select source"
|
||||
msgid "Self Host"
|
||||
msgstr "Self Host"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Self host with Github"
|
||||
|
||||
@@ -2029,7 +2021,7 @@ msgstr "Social Media"
|
||||
msgid "Software Development"
|
||||
msgstr "Software Development"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Star on Github"
|
||||
|
||||
@@ -2100,10 +2092,6 @@ msgstr "Templates"
|
||||
msgid "Terms of service"
|
||||
msgstr "Terms of service"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Testimonials"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "Thank you for your feedback!"
|
||||
@@ -2116,7 +2104,7 @@ msgstr "The current password you entered is incorrect."
|
||||
msgid "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."
|
||||
msgstr "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."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "The open source <0/> alternative to Trello"
|
||||
|
||||
@@ -2165,11 +2153,11 @@ msgstr "This will result in the permanent deletion of all data associated with t
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "This will result in the permanent deletion of all data associated with your account."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "This workspace URL has already been taken"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "This workspace URL is reserved"
|
||||
|
||||
@@ -2244,7 +2232,7 @@ msgstr "Unable to create list"
|
||||
msgid "Unable to create template"
|
||||
msgstr "Unable to create template"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "Unable to create workspace"
|
||||
|
||||
@@ -2352,7 +2340,7 @@ msgstr "Unlimited comments"
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Unlimited lists"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Unlimited members"
|
||||
@@ -2403,7 +2391,7 @@ msgstr "Upgrade"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Upgrade to Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Upgrade to Pro ($29/month)"
|
||||
|
||||
@@ -2416,17 +2404,17 @@ msgstr "Upgrade to Team Plan"
|
||||
msgid "Urgent"
|
||||
msgstr "Urgent"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "URL can only contain letters, numbers, and hyphens"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "URL cannot exceed 24 characters"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "URL must be at least 3 characters long"
|
||||
@@ -2521,7 +2509,7 @@ msgstr "Why make an open source Trello?"
|
||||
msgid "Workspace"
|
||||
msgstr "Workspace"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Workspace created successfully. You can upgrade later in settings."
|
||||
|
||||
@@ -2551,21 +2539,16 @@ msgstr "Workspace description updated"
|
||||
msgid "Workspace members"
|
||||
msgstr "Workspace members"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Workspace name"
|
||||
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
#~ msgid "Workspace name cannot exceed 24 characters"
|
||||
#~ msgstr "Workspace name cannot exceed 24 characters"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "Workspace name cannot exceed 24 characters"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "Workspace name cannot exceed 64 characters"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "Workspace name is required"
|
||||
|
||||
@@ -2585,7 +2568,7 @@ msgstr "Workspace slug updated"
|
||||
msgid "Workspace URL"
|
||||
msgstr "Workspace URL"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "workspace-url"
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ msgstr "$8/mes"
|
||||
msgid "1 user"
|
||||
msgstr "1 usuario"
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "Una aplicación kanban potente y flexible que te ayuda a organizar el trabajo, seguir el progreso y entregar resultados, todo en un solo lugar."
|
||||
|
||||
@@ -306,7 +306,7 @@ msgstr "Entrada de blog"
|
||||
msgid "Board"
|
||||
msgstr "Tablero"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Análisis del tablero"
|
||||
@@ -441,7 +441,7 @@ msgstr "Revisión de código"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Colabora sin problemas con tu equipo."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -585,7 +585,7 @@ msgstr "Crear nueva lista"
|
||||
msgid "Create template"
|
||||
msgstr "Crear plantilla"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Crear espacio de trabajo"
|
||||
@@ -619,7 +619,7 @@ msgstr "Dominio personalizado"
|
||||
msgid "Custom templates"
|
||||
msgstr "Plantillas personalizadas"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Las URLs personalizadas requieren actualizar a un plan Pro"
|
||||
|
||||
@@ -627,7 +627,7 @@ msgstr "Las URLs personalizadas requieren actualizar a un plan Pro"
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Enlace de espacio de trabajo personalizado"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "URL personalizada del espacio de trabajo"
|
||||
@@ -882,7 +882,7 @@ msgstr "Error al actualizar la URL del espacio de trabajo"
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Error al actualizar la suscripción"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Error al actualizar a Pro"
|
||||
|
||||
@@ -1033,7 +1033,7 @@ msgstr "Comienza gratis hoy mismo"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Comienza gratis, sin límites de uso. Para colaboración, actualiza a un plan que se ajuste al tamaño de tu equipo."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "Comenzar en la nube"
|
||||
|
||||
@@ -1252,7 +1252,7 @@ msgstr "Etiquetas y filtros"
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Oferta de lanzamiento"
|
||||
@@ -1306,10 +1306,6 @@ msgstr "Cerrar sesión"
|
||||
msgid "Long-term"
|
||||
msgstr "Largo plazo"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Amado por equipos en todo el mundo"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Prioridad baja"
|
||||
@@ -1428,7 +1424,7 @@ msgstr "Nueva plantilla"
|
||||
msgid "New Ticket"
|
||||
msgstr "Nuevo ticket"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "Nuevo espacio de trabajo"
|
||||
|
||||
@@ -1449,7 +1445,7 @@ msgstr "Sin {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "No se encontraron tableros"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "No se requiere tarjeta de crédito"
|
||||
|
||||
@@ -1576,7 +1572,7 @@ msgstr "Por favor selecciona un archivo para subir."
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1778,10 +1774,6 @@ msgstr "Preselección"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Buscar tableros y tarjetas..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "Mira lo que nuestros usuarios están diciendo sobre Kan"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Seleccionar todo"
|
||||
@@ -1795,7 +1787,7 @@ msgstr "Seleccionar origen"
|
||||
msgid "Self Host"
|
||||
msgstr "Autoalojamiento"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Autoalojamiento con Github"
|
||||
|
||||
@@ -1886,7 +1878,7 @@ msgstr "Redes sociales"
|
||||
msgid "Software Development"
|
||||
msgstr "Desarrollo de software"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Estrella en Github"
|
||||
|
||||
@@ -1957,10 +1949,6 @@ msgstr "Plantillas"
|
||||
msgid "Terms of service"
|
||||
msgstr "Términos de servicio"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Testimonios"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "¡Gracias por tus comentarios!"
|
||||
@@ -1973,7 +1961,7 @@ msgstr "La contraseña actual que has introducido es incorrecta."
|
||||
msgid "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."
|
||||
msgstr "La principal diferencia entre Kan y Trello es que Kan es de código abierto, permitiendo a cualquiera ver, modificar y contribuir a nuestro código. Nuestra oferta en la nube también ofrece funciones sin restricciones para uso individual, mientras que Trello bloquea características básicas como el número de tableros que puedes crear detrás de un muro de pago."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "La alternativa de código abierto <0/> a Trello"
|
||||
|
||||
@@ -2022,11 +2010,11 @@ msgstr "Esto resultará en la eliminación permanente de todos los datos asociad
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "Esto resultará en la eliminación permanente de todos los datos asociados con tu cuenta."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "Esta URL de espacio de trabajo ya ha sido tomada"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "Esta URL de espacio de trabajo está reservada"
|
||||
|
||||
@@ -2093,7 +2081,7 @@ msgstr "No se puede crear la lista"
|
||||
msgid "Unable to create template"
|
||||
msgstr "No se puede crear la plantilla"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "No se puede crear el espacio de trabajo"
|
||||
|
||||
@@ -2197,7 +2185,7 @@ msgstr "Comentarios ilimitados"
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Listas ilimitadas"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Miembros ilimitados"
|
||||
@@ -2244,7 +2232,7 @@ msgstr "Actualizar"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Actualizar a Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Actualizar a Pro ($29/mes)"
|
||||
|
||||
@@ -2257,17 +2245,17 @@ msgstr "Actualizar al Plan de Equipo"
|
||||
msgid "Urgent"
|
||||
msgstr "Urgente"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "La URL solo puede contener letras, números y guiones"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "La URL no puede exceder los 24 caracteres"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "La URL debe tener al menos 3 caracteres"
|
||||
@@ -2358,7 +2346,7 @@ msgstr "¿Por qué crear un Trello de código abierto?"
|
||||
msgid "Workspace"
|
||||
msgstr "Espacio de trabajo"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Espacio de trabajo creado con éxito. Puedes actualizar más tarde en configuración."
|
||||
|
||||
@@ -2388,17 +2376,16 @@ msgstr "Descripción del espacio de trabajo actualizada"
|
||||
msgid "Workspace members"
|
||||
msgstr "Miembros del espacio de trabajo"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Nombre del espacio de trabajo"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "El nombre del espacio de trabajo no puede exceder los 64 caracteres"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "El nombre del espacio de trabajo no puede exceder los 24 caracteres"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "El nombre del espacio de trabajo es obligatorio"
|
||||
|
||||
@@ -2418,7 +2405,7 @@ msgstr "Slug del espacio de trabajo actualizado"
|
||||
msgid "Workspace URL"
|
||||
msgstr "URL del espacio de trabajo"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "workspace-url"
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ msgstr "8 $/mois"
|
||||
msgid "1 user"
|
||||
msgstr "1 utilisateur"
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "Une application kanban puissante et flexible qui vous aide à organiser le travail, suivre les progrès et livrer des résultats—le tout en un seul endroit."
|
||||
|
||||
@@ -306,7 +306,7 @@ msgstr "Article de blog"
|
||||
msgid "Board"
|
||||
msgstr "Tableau"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Analyses du tableau"
|
||||
@@ -441,7 +441,7 @@ msgstr "Revue de code"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Collaborez en toute fluidité avec votre équipe."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -585,7 +585,7 @@ msgstr "Créer une nouvelle liste"
|
||||
msgid "Create template"
|
||||
msgstr "Créer un modèle"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Créer un espace de travail"
|
||||
@@ -619,7 +619,7 @@ msgstr "Domaine personnalisé"
|
||||
msgid "Custom templates"
|
||||
msgstr "Modèles personnalisés"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Les URL personnalisées nécessitent une mise à niveau vers un forfait Pro"
|
||||
|
||||
@@ -627,7 +627,7 @@ msgstr "Les URL personnalisées nécessitent une mise à niveau vers un forfait
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Lien d'espace de travail personnalisé"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "URL d'espace de travail personnalisée"
|
||||
@@ -882,7 +882,7 @@ msgstr "Erreur lors de la mise à jour de l'URL de l'espace de travail"
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Erreur lors de la mise à niveau de l'abonnement"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Erreur lors de la mise à niveau vers Pro"
|
||||
|
||||
@@ -1033,7 +1033,7 @@ msgstr "Commencez gratuitement aujourd'hui"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Commencez gratuitement, sans limites d'utilisation. Pour la collaboration, passez à un forfait adapté à la taille de votre équipe."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "Commencer sur le Cloud"
|
||||
|
||||
@@ -1252,7 +1252,7 @@ msgstr "Étiquettes & filtres"
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Offre de lancement"
|
||||
@@ -1306,10 +1306,6 @@ msgstr "Déconnexion"
|
||||
msgid "Long-term"
|
||||
msgstr "Long terme"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Adoré par les équipes du monde entier"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Priorité basse"
|
||||
@@ -1428,7 +1424,7 @@ msgstr "Nouveau modèle"
|
||||
msgid "New Ticket"
|
||||
msgstr "Nouveau ticket"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "Nouvel espace de travail"
|
||||
|
||||
@@ -1449,7 +1445,7 @@ msgstr "Aucun {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "Aucun tableau trouvé"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "Aucune carte de crédit requise"
|
||||
|
||||
@@ -1576,7 +1572,7 @@ msgstr "Veuillez sélectionner un fichier à télécharger."
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1778,10 +1774,6 @@ msgstr "Présélection"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Rechercher des tableaux et des cartes..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "Découvrez ce que nos utilisateurs disent de Kan"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Sélectionner tout"
|
||||
@@ -1795,7 +1787,7 @@ msgstr "Sélectionner la source"
|
||||
msgid "Self Host"
|
||||
msgstr "Auto-hébergement"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Auto-hébergement avec Github"
|
||||
|
||||
@@ -1886,7 +1878,7 @@ msgstr "Réseaux sociaux"
|
||||
msgid "Software Development"
|
||||
msgstr "Développement logiciel"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Étoile sur Github"
|
||||
|
||||
@@ -1957,10 +1949,6 @@ msgstr "Modèles"
|
||||
msgid "Terms of service"
|
||||
msgstr "Conditions d'utilisation"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Témoignages"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "Merci pour vos commentaires !"
|
||||
@@ -1973,7 +1961,7 @@ msgstr "Le mot de passe actuel que vous avez saisi est incorrect."
|
||||
msgid "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."
|
||||
msgstr "La principale différence entre Kan et Trello est que Kan est open source, permettant à chacun de consulter, modifier et contribuer à notre code. Notre offre cloud ne comporte également aucune restriction sur les fonctionnalités pour un usage individuel, alors que Trello verrouille des fonctionnalités de base comme le nombre de tableaux que vous pouvez créer derrière un paywall."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "L'alternative open source <0/> à Trello"
|
||||
|
||||
@@ -2022,11 +2010,11 @@ msgstr "Cela entraînera la suppression définitive de toutes les données assoc
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "Cela entraînera la suppression définitive de toutes les données associées à votre compte."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "Cette URL d'espace de travail est déjà prise"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "Cette URL d'espace de travail est réservée"
|
||||
|
||||
@@ -2093,7 +2081,7 @@ msgstr "Impossible de créer une liste"
|
||||
msgid "Unable to create template"
|
||||
msgstr "Impossible de créer le modèle"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "Impossible de créer l'espace de travail"
|
||||
|
||||
@@ -2197,7 +2185,7 @@ msgstr "Commentaires illimités"
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Listes illimitées"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Membres illimités"
|
||||
@@ -2244,7 +2232,7 @@ msgstr "Mettre à niveau"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Passer à Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Passer à Pro (29 $/mois)"
|
||||
|
||||
@@ -2257,17 +2245,17 @@ msgstr "Passer au forfait d'équipe"
|
||||
msgid "Urgent"
|
||||
msgstr "Urgent"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "L'URL ne peut contenir que des lettres, des chiffres et des traits d'union"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "L'URL ne peut pas dépasser 24 caractères"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "L'URL doit comporter au moins 3 caractères"
|
||||
@@ -2358,7 +2346,7 @@ msgstr "Pourquoi créer un Trello open source ?"
|
||||
msgid "Workspace"
|
||||
msgstr "Espace de travail"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Espace de travail créé avec succès. Vous pourrez effectuer la mise à niveau ultérieurement dans les paramètres."
|
||||
|
||||
@@ -2388,17 +2376,16 @@ msgstr "Description de l'espace de travail mise à jour"
|
||||
msgid "Workspace members"
|
||||
msgstr "Membres de l'espace de travail"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Nom de l'espace de travail"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "Le nom de l'espace de travail ne peut pas dépasser 64 caractères"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "Le nom de l'espace de travail ne peut pas dépasser 24 caractères"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "Le nom de l'espace de travail est requis"
|
||||
|
||||
@@ -2418,7 +2405,7 @@ msgstr "Slug de l'espace de travail mis à jour"
|
||||
msgid "Workspace URL"
|
||||
msgstr "URL de l'espace de travail"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "workspace-url"
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ msgstr "$8/mese"
|
||||
msgid "1 user"
|
||||
msgstr "1 utente"
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "Un'app kanban potente e flessibile che ti aiuta a organizzare il lavoro, monitorare i progressi e ottenere risultati, tutto in un unico posto."
|
||||
|
||||
@@ -306,7 +306,7 @@ msgstr "Post del blog"
|
||||
msgid "Board"
|
||||
msgstr "Bacheca"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Analisi della bacheca"
|
||||
@@ -441,7 +441,7 @@ msgstr "Revisione del codice"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Collabora senza problemi con il tuo team."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -585,7 +585,7 @@ msgstr "Crea nuova lista"
|
||||
msgid "Create template"
|
||||
msgstr "Crea template"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Crea spazio di lavoro"
|
||||
@@ -619,7 +619,7 @@ msgstr "Dominio personalizzato"
|
||||
msgid "Custom templates"
|
||||
msgstr "Template personalizzati"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Gli URL personalizzati richiedono l'aggiornamento a un piano Pro"
|
||||
|
||||
@@ -627,7 +627,7 @@ msgstr "Gli URL personalizzati richiedono l'aggiornamento a un piano Pro"
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Link personalizzato dell'area di lavoro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "URL personalizzato dell'area di lavoro"
|
||||
@@ -882,7 +882,7 @@ msgstr "Errore durante l'aggiornamento dell'URL dell'area di lavoro"
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Errore nell'aggiornamento dell'abbonamento"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Errore durante l'aggiornamento a Pro"
|
||||
|
||||
@@ -1033,7 +1033,7 @@ msgstr "Inizia gratuitamente oggi"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Inizia gratuitamente, senza limiti di utilizzo. Per la collaborazione, passa a un piano adatto alle dimensioni del tuo team."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "Inizia su Cloud"
|
||||
|
||||
@@ -1252,7 +1252,7 @@ msgstr "Etichette & Filtri"
|
||||
msgid "Language"
|
||||
msgstr "Lingua"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Offerta di lancio"
|
||||
@@ -1306,10 +1306,6 @@ msgstr "Esci"
|
||||
msgid "Long-term"
|
||||
msgstr "A lungo termine"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Amato dai team di tutto il mondo"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Bassa priorità"
|
||||
@@ -1428,7 +1424,7 @@ msgstr "Nuovo template"
|
||||
msgid "New Ticket"
|
||||
msgstr "Nuovo ticket"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "Nuovo spazio di lavoro"
|
||||
|
||||
@@ -1449,7 +1445,7 @@ msgstr "Nessun {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "Nessuna bacheca trovata"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "Nessuna carta di credito richiesta"
|
||||
|
||||
@@ -1576,7 +1572,7 @@ msgstr "Seleziona un file da caricare."
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1778,10 +1774,6 @@ msgstr "Selezione"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Cerca bacheche e schede..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "Scopri cosa dicono i nostri utenti su Kan"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Seleziona tutto"
|
||||
@@ -1795,7 +1787,7 @@ msgstr "Seleziona fonte"
|
||||
msgid "Self Host"
|
||||
msgstr "Self Host"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Self host con Github"
|
||||
|
||||
@@ -1886,7 +1878,7 @@ msgstr "Social media"
|
||||
msgid "Software Development"
|
||||
msgstr "Sviluppo software"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Metti una stella su Github"
|
||||
|
||||
@@ -1957,10 +1949,6 @@ msgstr "Template"
|
||||
msgid "Terms of service"
|
||||
msgstr "Termini di servizio"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Testimonianze"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "Grazie per il tuo feedback!"
|
||||
@@ -1973,7 +1961,7 @@ msgstr "La password attuale inserita non è corretta."
|
||||
msgid "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."
|
||||
msgstr "La principale differenza tra Kan e Trello è che Kan è open source, permettendo a chiunque di visualizzare, modificare e contribuire al nostro codice. La nostra offerta cloud non impone inoltre alcuna restrizione sulle funzionalità per uso individuale, mentre Trello blocca funzionalità di base come il numero di bacheche che puoi creare dietro un paywall."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "L'alternativa open source <0/> a Trello"
|
||||
|
||||
@@ -2022,11 +2010,11 @@ msgstr "Questo comporterà l'eliminazione permanente di tutti i dati associati a
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "Questo comporterà l'eliminazione permanente di tutti i dati associati al tuo account."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "Questo URL dello spazio di lavoro è già stato utilizzato"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "Questo URL dello spazio di lavoro è riservato"
|
||||
|
||||
@@ -2093,7 +2081,7 @@ msgstr "Impossibile creare la lista"
|
||||
msgid "Unable to create template"
|
||||
msgstr "Impossibile creare il template"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "Impossibile creare lo spazio di lavoro"
|
||||
|
||||
@@ -2197,7 +2185,7 @@ msgstr "Commenti illimitati"
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Liste illimitate"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Membri illimitati"
|
||||
@@ -2244,7 +2232,7 @@ msgstr "Aggiorna"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Passa a Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Passa a Pro ($29/mese)"
|
||||
|
||||
@@ -2257,17 +2245,17 @@ msgstr "Passa al Piano Team"
|
||||
msgid "Urgent"
|
||||
msgstr "Urgente"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "L'URL può contenere solo lettere, numeri e trattini"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "L'URL non può superare i 24 caratteri"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "L'URL deve contenere almeno 3 caratteri"
|
||||
@@ -2358,7 +2346,7 @@ msgstr "Perché creare un Trello open source?"
|
||||
msgid "Workspace"
|
||||
msgstr "Spazio di lavoro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Spazio di lavoro creato con successo. Puoi effettuare l'aggiornamento più tardi nelle impostazioni."
|
||||
|
||||
@@ -2388,17 +2376,16 @@ msgstr "Descrizione dell'area di lavoro aggiornata"
|
||||
msgid "Workspace members"
|
||||
msgstr "Membri del workspace"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Nome dello spazio di lavoro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "Il nome dello spazio di lavoro non può superare i 64 caratteri"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "Il nome dello spazio di lavoro non può superare i 24 caratteri"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "Il nome dello spazio di lavoro è obbligatorio"
|
||||
|
||||
@@ -2418,7 +2405,7 @@ msgstr "Slug dell'area di lavoro aggiornato"
|
||||
msgid "Workspace URL"
|
||||
msgstr "URL dello spazio di lavoro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "workspace-url"
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ msgstr "$8/maand"
|
||||
msgid "1 user"
|
||||
msgstr "1 gebruiker"
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "Een krachtige, flexibele kanban-app die je helpt werk te organiseren, voortgang bij te houden en resultaten te leveren—allemaal op één plek."
|
||||
|
||||
@@ -306,7 +306,7 @@ msgstr "Blogbericht"
|
||||
msgid "Board"
|
||||
msgstr "Bord"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Bordanalyses"
|
||||
@@ -441,7 +441,7 @@ msgstr "Code review"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Werk naadloos samen met je team."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -585,7 +585,7 @@ msgstr "Maak nieuwe lijst"
|
||||
msgid "Create template"
|
||||
msgstr "Sjabloon maken"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Werkruimte maken"
|
||||
@@ -619,7 +619,7 @@ msgstr "Aangepast domein"
|
||||
msgid "Custom templates"
|
||||
msgstr "Aangepaste sjablonen"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Aangepaste URL's vereisen een upgrade naar een Pro-abonnement"
|
||||
|
||||
@@ -627,7 +627,7 @@ msgstr "Aangepaste URL's vereisen een upgrade naar een Pro-abonnement"
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Aangepaste werkruimtelink"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "Aangepaste werkruimte-URL"
|
||||
@@ -882,7 +882,7 @@ msgstr "Fout bij het bijwerken van werkruimte-URL"
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Fout bij het upgraden van abonnement"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Fout bij upgraden naar Pro"
|
||||
|
||||
@@ -1033,7 +1033,7 @@ msgstr "Begin vandaag nog gratis"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Begin gratis, zonder gebruikslimieten. Voor samenwerking kun je upgraden naar een abonnement dat past bij de grootte van je team."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "Begin in de cloud"
|
||||
|
||||
@@ -1252,7 +1252,7 @@ msgstr "Labels & filters"
|
||||
msgid "Language"
|
||||
msgstr "Taal"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Introductieaanbieding"
|
||||
@@ -1306,10 +1306,6 @@ msgstr "Uitloggen"
|
||||
msgid "Long-term"
|
||||
msgstr "Lange termijn"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Geliefd door teams wereldwijd"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Lage prioriteit"
|
||||
@@ -1428,7 +1424,7 @@ msgstr "Nieuw sjabloon"
|
||||
msgid "New Ticket"
|
||||
msgstr "Nieuw ticket"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "Nieuwe werkruimte"
|
||||
|
||||
@@ -1449,7 +1445,7 @@ msgstr "Geen {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "Geen borden gevonden"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "Geen creditcard vereist"
|
||||
|
||||
@@ -1576,7 +1572,7 @@ msgstr "Selecteer een bestand om te uploaden."
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1778,10 +1774,6 @@ msgstr "Screening"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Zoek in borden en kaarten..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "Bekijk wat onze gebruikers over Kan zeggen"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Alles selecteren"
|
||||
@@ -1795,7 +1787,7 @@ msgstr "Selecteer bron"
|
||||
msgid "Self Host"
|
||||
msgstr "Zelf hosten"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Zelf hosten met Github"
|
||||
|
||||
@@ -1886,7 +1878,7 @@ msgstr "Social media"
|
||||
msgid "Software Development"
|
||||
msgstr "Softwareontwikkeling"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Star op Github"
|
||||
|
||||
@@ -1957,10 +1949,6 @@ msgstr "Sjablonen"
|
||||
msgid "Terms of service"
|
||||
msgstr "Servicevoorwaarden"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Getuigenissen"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "Bedankt voor je feedback!"
|
||||
@@ -1973,7 +1961,7 @@ msgstr "Het ingevoerde huidige wachtwoord is onjuist."
|
||||
msgid "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."
|
||||
msgstr "Het belangrijkste verschil tussen Kan en Trello is dat Kan open source is, waardoor iedereen onze code kan bekijken, wijzigen en eraan kan bijdragen. Onze cloudoplossing biedt ook geen beperkingen op functies voor individueel gebruik, terwijl Trello basisfuncties zoals het aantal borden dat je kunt maken achter een betaalmuur plaatst."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "Het open source <0/> alternatief voor Trello"
|
||||
|
||||
@@ -2022,11 +2010,11 @@ msgstr "Dit zal resulteren in het permanent verwijderen van alle gegevens die aa
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "Dit zal resulteren in het permanent verwijderen van alle gegevens die aan je account zijn gekoppeld."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "Deze werkruimte-URL is al in gebruik"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "Deze werkruimte-URL is gereserveerd"
|
||||
|
||||
@@ -2093,7 +2081,7 @@ msgstr "Kan geen lijst maken"
|
||||
msgid "Unable to create template"
|
||||
msgstr "Kan sjabloon niet maken"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "Kan werkruimte niet aanmaken"
|
||||
|
||||
@@ -2197,7 +2185,7 @@ msgstr "Onbeperkt aantal opmerkingen"
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Onbeperkt aantal lijsten"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Onbeperkt aantal leden"
|
||||
@@ -2244,7 +2232,7 @@ msgstr "Upgraden"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Upgraden naar Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Upgrade naar Pro ($29/maand)"
|
||||
|
||||
@@ -2257,17 +2245,17 @@ msgstr "Upgraden naar teamplan"
|
||||
msgid "Urgent"
|
||||
msgstr "Urgent"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "URL kan alleen letters, cijfers en koppeltekens bevatten"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "URL mag niet langer zijn dan 24 tekens"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "URL moet minimaal 3 tekens lang zijn"
|
||||
@@ -2358,7 +2346,7 @@ msgstr "Waarom een open source Trello maken?"
|
||||
msgid "Workspace"
|
||||
msgstr "Werkruimte"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Werkruimte succesvol aangemaakt. Je kunt later upgraden in de instellingen."
|
||||
|
||||
@@ -2388,17 +2376,16 @@ msgstr "Werkruimtebeschrijving bijgewerkt"
|
||||
msgid "Workspace members"
|
||||
msgstr "Werkruimteleden"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Naam werkruimte"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "Werkruimtenaam mag niet langer zijn dan 64 tekens"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "Werkruimtenaam mag niet langer zijn dan 24 tekens"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "Naam van werkruimte is verplicht"
|
||||
|
||||
@@ -2418,7 +2405,7 @@ msgstr "Werkruimte-slug bijgewerkt"
|
||||
msgid "Workspace URL"
|
||||
msgstr "Werkruimte URL"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "werkruimte-url"
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ msgstr "8 USD/miesiąc"
|
||||
msgid "1 user"
|
||||
msgstr "1 użytkownik"
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "Potężna, elastyczna aplikacja kanban, która pomaga organizować pracę, śledzić postępy i dostarczać wyniki — wszystko w jednym miejscu."
|
||||
|
||||
@@ -311,7 +311,7 @@ msgstr "Post na blogu"
|
||||
msgid "Board"
|
||||
msgstr "Tablica"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Analiza tablicy"
|
||||
@@ -446,7 +446,7 @@ msgstr "Przegląd kodu"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Współpracuj płynnie ze swoim zespołem."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -590,7 +590,7 @@ msgstr "Utwórz nową listę"
|
||||
msgid "Create template"
|
||||
msgstr "Utwórz szablon"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Utwórz przestrzeń roboczą"
|
||||
@@ -624,7 +624,7 @@ msgstr "Niestandardowa domena"
|
||||
msgid "Custom templates"
|
||||
msgstr "Niestandardowe szablony"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Niestandardowe adresy URL wymagają przejścia na plan Pro"
|
||||
|
||||
@@ -632,7 +632,7 @@ msgstr "Niestandardowe adresy URL wymagają przejścia na plan Pro"
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Niestandardowy link do przestrzeni roboczej"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "Niestandardowy adres URL przestrzeni roboczej"
|
||||
@@ -887,7 +887,7 @@ msgstr "Błąd podczas aktualizacji adresu URL przestrzeni roboczej"
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Błąd podczas aktualizacji subskrypcji"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Błąd podczas aktualizacji do wersji Pro"
|
||||
|
||||
@@ -1038,7 +1038,7 @@ msgstr "Rozpocznij za darmo już dziś"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Rozpocznij za darmo, bez ograniczeń użytkowania. Aby współpracować, przejdź na plan dopasowany do wielkości Twojego zespołu."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "Rozpocznij w chmurze"
|
||||
|
||||
@@ -1257,7 +1257,7 @@ msgstr "Etykiety i Filtry"
|
||||
msgid "Language"
|
||||
msgstr "Język"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Oferta startowa"
|
||||
@@ -1311,10 +1311,6 @@ msgstr "Wyloguj się"
|
||||
msgid "Long-term"
|
||||
msgstr "Długoterminowy"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Uwielbiane przez zespoły na całym świecie"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Niski priorytet"
|
||||
@@ -1433,7 +1429,7 @@ msgstr "Nowy szablon"
|
||||
msgid "New Ticket"
|
||||
msgstr "Nowe zgłoszenie"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "Nowa przestrzeń robocza"
|
||||
|
||||
@@ -1454,7 +1450,7 @@ msgstr "Brak {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "Nie znaleziono tablic"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "Nie wymagana karta kredytowa"
|
||||
|
||||
@@ -1581,7 +1577,7 @@ msgstr "Proszę wybrać plik do przesłania."
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1783,10 +1779,6 @@ msgstr "Selekcja"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Wyszukaj tablice i karty..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "Zobacz, co nasi użytkownicy mówią o Kan"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Zaznacz wszystko"
|
||||
@@ -1800,7 +1792,7 @@ msgstr "Wybierz źródło"
|
||||
msgid "Self Host"
|
||||
msgstr "Hostuj samodzielnie"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Hostuj samodzielnie z Github"
|
||||
|
||||
@@ -1891,7 +1883,7 @@ msgstr "Media społecznościowe"
|
||||
msgid "Software Development"
|
||||
msgstr "Rozwój oprogramowania"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Oznacz gwiazdką na Githubie"
|
||||
|
||||
@@ -1962,10 +1954,6 @@ msgstr "Szablony"
|
||||
msgid "Terms of service"
|
||||
msgstr "Warunki korzystania z usługi"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Opinie"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "Dziękujemy za Twoją opinię!"
|
||||
@@ -1978,7 +1966,7 @@ msgstr "Wprowadzone obecne hasło jest nieprawidłowe."
|
||||
msgid "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."
|
||||
msgstr "Główna różnica między Kan a Trello polega na tym, że Kan jest oprogramowaniem otwartoźródłowym, co pozwala każdemu przeglądać, modyfikować i współtworzyć nasz kod. Nasza oferta w chmurze nie nakłada również żadnych ograniczeń na funkcje do użytku indywidualnego, podczas gdy Trello blokuje podstawowe funkcje, takie jak liczba tablic, które można utworzyć, za dodatkowymi kosztami."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "Otwarta alternatywa <0/> dla Trello"
|
||||
|
||||
@@ -2027,11 +2015,11 @@ msgstr "Spowoduje to trwałe usunięcie wszystkich danych powiązanych z tym obs
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "Spowoduje to trwałe usunięcie wszystkich danych powiązanych z Twoim kontem."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "Ten adres URL obszaru roboczego jest już zajęty"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "Ten adres URL obszaru roboczego jest zarezerwowany"
|
||||
|
||||
@@ -2098,7 +2086,7 @@ msgstr "Nie można utworzyć listy"
|
||||
msgid "Unable to create template"
|
||||
msgstr "Nie można utworzyć szablonu"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "Nie można utworzyć przestrzeni roboczej"
|
||||
|
||||
@@ -2202,7 +2190,7 @@ msgstr "Nieograniczona liczba komentarzy"
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Nieograniczona liczba list"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Nieograniczona liczba członków"
|
||||
@@ -2249,7 +2237,7 @@ msgstr "Ulepsz"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Ulepsz do planu Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Ulepsz do planu Pro (29 USD/miesiąc)"
|
||||
|
||||
@@ -2262,17 +2250,17 @@ msgstr "Ulepsz do planu zespołowego"
|
||||
msgid "Urgent"
|
||||
msgstr "Pilne"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "Adres URL może zawierać tylko litery, cyfry i myślniki"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "Adres URL nie może przekraczać 24 znaków"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "Adres URL musi mieć co najmniej 3 znaki"
|
||||
@@ -2363,7 +2351,7 @@ msgstr "Dlaczego próbujecie stworzyć Trello w wersji otwartoźródłowej?"
|
||||
msgid "Workspace"
|
||||
msgstr "Obszar roboczy"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Obszar roboczy został pomyślnie utworzony. Możesz go ulepszyć później w ustawieniach."
|
||||
|
||||
@@ -2393,17 +2381,16 @@ msgstr "Opis przestrzeni roboczej został zaktualizowany"
|
||||
msgid "Workspace members"
|
||||
msgstr "Członkowie przestrzeni roboczej"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Nazwa przestrzeni roboczej"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "Nazwa przestrzeni roboczej nie może przekraczać 64 znaków"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "Nazwa przestrzeni roboczej nie może przekraczać 24 znaków"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "Nazwa przestrzeni roboczej jest wymagana"
|
||||
|
||||
@@ -2423,7 +2410,7 @@ msgstr "Slug przestrzeni roboczej został zaktualizowany"
|
||||
msgid "Workspace URL"
|
||||
msgstr "URL przestrzeni roboczej"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "workspace-url"
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ msgstr "$8/месяц"
|
||||
msgid "1 user"
|
||||
msgstr "1 пользователь"
|
||||
|
||||
#: src/views/home/index.tsx:71
|
||||
#: src/views/home/index.tsx:70
|
||||
msgid "A powerful, flexible kanban app that helps you organise work, track progress, and deliver results—all in one place."
|
||||
msgstr "Мощное и гибкое приложение для канбана, которое помогает организовать работу, отслеживать прогресс и достигать результатов — всё в одном месте."
|
||||
|
||||
@@ -306,7 +306,7 @@ msgstr "Пост в блоге"
|
||||
msgid "Board"
|
||||
msgstr "Доска"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/components/NewWorkspaceForm.tsx:346
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81
|
||||
msgid "Board analytics"
|
||||
msgstr "Аналитика доски"
|
||||
@@ -441,7 +441,7 @@ msgstr "Код-ревью"
|
||||
msgid "Collaborate seamlessly with your team."
|
||||
msgstr "Сотрудничайте с вашей командой без препятствий."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:352
|
||||
#: src/components/NewWorkspaceForm.tsx:349
|
||||
#: src/views/home/components/Features.tsx:67
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84
|
||||
msgid "Coming soon"
|
||||
@@ -585,7 +585,7 @@ msgstr "Создать новый список"
|
||||
msgid "Create template"
|
||||
msgstr "Создать шаблон"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:387
|
||||
#: src/components/NewWorkspaceForm.tsx:384
|
||||
#: src/components/WorkspaceMenu.tsx:149
|
||||
msgid "Create workspace"
|
||||
msgstr "Создать рабочее пространство"
|
||||
@@ -619,7 +619,7 @@ msgstr "Пользовательский домен"
|
||||
msgid "Custom templates"
|
||||
msgstr "Пользовательские шаблоны"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:318
|
||||
#: src/components/NewWorkspaceForm.tsx:315
|
||||
msgid "Custom URLs require upgrading to a Pro plan"
|
||||
msgstr "Для пользовательских URL требуется обновление до Pro-плана"
|
||||
|
||||
@@ -627,7 +627,7 @@ msgstr "Для пользовательских URL требуется обно
|
||||
msgid "Custom workspace link"
|
||||
msgstr "Пользовательская ссылка рабочего пространства"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:342
|
||||
#: src/components/NewWorkspaceForm.tsx:339
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74
|
||||
msgid "Custom workspace URL"
|
||||
msgstr "Пользовательский URL рабочего пространства"
|
||||
@@ -882,7 +882,7 @@ msgstr "Ошибка при обновлении URL рабочей област
|
||||
msgid "Error upgrading subscription"
|
||||
msgstr "Ошибка при обновлении подписки"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:145
|
||||
#: src/components/NewWorkspaceForm.tsx:142
|
||||
msgid "Error upgrading to Pro"
|
||||
msgstr "Ошибка при обновлении до Pro"
|
||||
|
||||
@@ -1033,7 +1033,7 @@ msgstr "Начните бесплатно уже сегодня"
|
||||
msgid "Get started for free, with no usage limits. For collaboration, upgrade to a plan that fits the size of your team."
|
||||
msgstr "Начните бесплатно, без ограничений на использование. Для совместной работы обновитесь до плана, который подходит для размера вашей команды."
|
||||
|
||||
#: src/views/home/index.tsx:75
|
||||
#: src/views/home/index.tsx:74
|
||||
msgid "Get started on Cloud"
|
||||
msgstr "Начните работу в облаке"
|
||||
|
||||
@@ -1252,7 +1252,7 @@ msgstr "Метки и фильтры"
|
||||
msgid "Language"
|
||||
msgstr "Язык"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:335
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67
|
||||
msgid "Launch offer"
|
||||
msgstr "Стартовое предложение"
|
||||
@@ -1306,10 +1306,6 @@ msgstr "Выход"
|
||||
msgid "Long-term"
|
||||
msgstr "Долгосрочный"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:236
|
||||
msgid "Loved by teams worldwide"
|
||||
msgstr "Любим командами по всему миру"
|
||||
|
||||
#: src/views/boards/components/TemplateBoards.tsx:18
|
||||
msgid "Low Priority"
|
||||
msgstr "Низкий приоритет"
|
||||
@@ -1428,7 +1424,7 @@ msgstr "Новый шаблон"
|
||||
msgid "New Ticket"
|
||||
msgstr "Новый тикет"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:243
|
||||
#: src/components/NewWorkspaceForm.tsx:240
|
||||
msgid "New workspace"
|
||||
msgstr "Новое рабочее пространство"
|
||||
|
||||
@@ -1449,7 +1445,7 @@ msgstr "Нет {0}"
|
||||
msgid "No boards found"
|
||||
msgstr "Доски не найдены"
|
||||
|
||||
#: src/views/home/index.tsx:85
|
||||
#: src/views/home/index.tsx:84
|
||||
msgid "No credit card required"
|
||||
msgstr "Кредитная карта не требуется"
|
||||
|
||||
@@ -1576,7 +1572,7 @@ msgstr "Пожалуйста, выберите файл для загрузки.
|
||||
|
||||
#: src/components/DeleteLabelConfirmation.tsx:26
|
||||
#: src/components/FeedbackModal.tsx:41
|
||||
#: src/components/NewWorkspaceForm.tsx:158
|
||||
#: src/components/NewWorkspaceForm.tsx:155
|
||||
#: src/views/board/components/NewCardForm.tsx:176
|
||||
#: src/views/board/components/NewListForm.tsx:78
|
||||
#: src/views/board/components/NewTemplateForm.tsx:61
|
||||
@@ -1778,10 +1774,6 @@ msgstr "Отбор"
|
||||
msgid "Search boards and cards..."
|
||||
msgstr "Поиск досок и карточек..."
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:239
|
||||
msgid "See what our users are saying about Kan"
|
||||
msgstr "Узнайте, что наши пользователи говорят о Kan"
|
||||
|
||||
#: src/views/boards/components/ImportBoardsForm.tsx:274
|
||||
msgid "Select all"
|
||||
msgstr "Выбрать все"
|
||||
@@ -1795,7 +1787,7 @@ msgstr "Выбрать источник"
|
||||
msgid "Self Host"
|
||||
msgstr "Самостоятельный хостинг"
|
||||
|
||||
#: src/views/home/index.tsx:81
|
||||
#: src/views/home/index.tsx:80
|
||||
msgid "Self host with Github"
|
||||
msgstr "Самостоятельный хостинг с Github"
|
||||
|
||||
@@ -1886,7 +1878,7 @@ msgstr "Социальные сети"
|
||||
msgid "Software Development"
|
||||
msgstr "Разработка программного обеспечения"
|
||||
|
||||
#: src/views/home/index.tsx:37
|
||||
#: src/views/home/index.tsx:36
|
||||
msgid "Star on Github"
|
||||
msgstr "Поставить звезду на Github"
|
||||
|
||||
@@ -1957,10 +1949,6 @@ msgstr "Шаблоны"
|
||||
msgid "Terms of service"
|
||||
msgstr "Условия обслуживания"
|
||||
|
||||
#: src/views/home/components/Testimonials.tsx:232
|
||||
msgid "Testimonials"
|
||||
msgstr "Отзывы"
|
||||
|
||||
#: src/components/FeedbackModal.tsx:34
|
||||
msgid "Thank you for your feedback!"
|
||||
msgstr "Спасибо за ваш отзыв!"
|
||||
@@ -1973,7 +1961,7 @@ msgstr "Введённый вами текущий пароль неверен."
|
||||
msgid "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."
|
||||
msgstr "Основное отличие Kan от Trello заключается в том, что Kan является проектом с открытым исходным кодом, позволяющим любому просматривать, изменять и вносить вклад в наш код. Наше облачное предложение также не имеет ограничений на функции для индивидуального использования, тогда как Trello блокирует базовые функции, такие как количество досок, которые вы можете создать, за платным доступом."
|
||||
|
||||
#: src/views/home/index.tsx:65
|
||||
#: src/views/home/index.tsx:64
|
||||
msgid "The open source <0/> alternative to Trello"
|
||||
msgstr "Альтернатива Trello с открытым исходным кодом <0/>"
|
||||
|
||||
@@ -2022,11 +2010,11 @@ msgstr "Это приведет к безвозвратному удалению
|
||||
msgid "This will result in the permanent deletion of all data associated with your account."
|
||||
msgstr "Это приведет к безвозвратному удалению всех данных, связанных с вашей учетной записью."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:287
|
||||
#: src/components/NewWorkspaceForm.tsx:284
|
||||
msgid "This workspace URL has already been taken"
|
||||
msgstr "Этот URL рабочего пространства уже занят."
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:289
|
||||
#: src/components/NewWorkspaceForm.tsx:286
|
||||
msgid "This workspace URL is reserved"
|
||||
msgstr "Этот URL рабочего пространства зарезервирован."
|
||||
|
||||
@@ -2093,7 +2081,7 @@ msgstr "Не удалось создать список."
|
||||
msgid "Unable to create template"
|
||||
msgstr "Не удалось создать шаблон"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:157
|
||||
#: src/components/NewWorkspaceForm.tsx:154
|
||||
msgid "Unable to create workspace"
|
||||
msgstr "Не удалось создать рабочее пространство."
|
||||
|
||||
@@ -2197,7 +2185,7 @@ msgstr "Неограниченное количество комментарие
|
||||
msgid "Unlimited lists"
|
||||
msgstr "Неограниченное количество списков"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:332
|
||||
#: src/components/NewWorkspaceForm.tsx:329
|
||||
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64
|
||||
msgid "Unlimited members"
|
||||
msgstr "Неограниченное количество участников"
|
||||
@@ -2244,7 +2232,7 @@ msgstr "Обновить"
|
||||
msgid "Upgrade to Pro"
|
||||
msgstr "Обновить до Pro"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:372
|
||||
#: src/components/NewWorkspaceForm.tsx:369
|
||||
msgid "Upgrade to Pro ($29/month)"
|
||||
msgstr "Обновить до Pro ($29/месяц)"
|
||||
|
||||
@@ -2257,17 +2245,17 @@ msgstr "Обновить до командного плана"
|
||||
msgid "Urgent"
|
||||
msgstr "Срочно"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:38
|
||||
#: src/components/NewWorkspaceForm.tsx:35
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
|
||||
msgid "URL can only contain letters, numbers, and hyphens"
|
||||
msgstr "URL может содержать только буквы, цифры и дефисы"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:36
|
||||
#: src/components/NewWorkspaceForm.tsx:33
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
|
||||
msgid "URL cannot exceed 24 characters"
|
||||
msgstr "URL не может превышать 24 символа"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:34
|
||||
#: src/components/NewWorkspaceForm.tsx:31
|
||||
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
|
||||
msgid "URL must be at least 3 characters long"
|
||||
msgstr "URL должен содержать не менее 3 символов"
|
||||
@@ -2358,7 +2346,7 @@ msgstr "Зачем создавать Trello с открытым исходны
|
||||
msgid "Workspace"
|
||||
msgstr "Рабочее пространство"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:146
|
||||
#: src/components/NewWorkspaceForm.tsx:143
|
||||
msgid "Workspace created successfully. You can upgrade later in settings."
|
||||
msgstr "Рабочее пространство успешно создано. Вы можете обновить его позже в настройках."
|
||||
|
||||
@@ -2388,17 +2376,16 @@ msgstr "Описание рабочего пространства обновл
|
||||
msgid "Workspace members"
|
||||
msgstr "Участники рабочего пространства"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:262
|
||||
#: src/components/NewWorkspaceForm.tsx:259
|
||||
#: src/views/settings/WorkspaceSettings.tsx:58
|
||||
msgid "Workspace name"
|
||||
msgstr "Название рабочего пространства"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:30
|
||||
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
|
||||
msgid "Workspace name cannot exceed 64 characters"
|
||||
msgstr "Название рабочего пространства не может превышать 64 символа"
|
||||
msgid "Workspace name cannot exceed 24 characters"
|
||||
msgstr "Название рабочего пространства не может превышать 24 символа"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:29
|
||||
#: src/components/NewWorkspaceForm.tsx:27
|
||||
msgid "Workspace name is required"
|
||||
msgstr "Название рабочего пространства обязательно"
|
||||
|
||||
@@ -2418,7 +2405,7 @@ msgstr "Slug рабочего пространства обновлен"
|
||||
msgid "Workspace URL"
|
||||
msgstr "URL рабочего пространства"
|
||||
|
||||
#: src/components/NewWorkspaceForm.tsx:276
|
||||
#: src/components/NewWorkspaceForm.tsx:273
|
||||
msgid "workspace-url"
|
||||
msgstr "workspace-url"
|
||||
|
||||
|
||||
@@ -7,13 +7,13 @@ import Footer from "./Footer";
|
||||
import Header from "./Header";
|
||||
|
||||
export default function Layout({ children }: { children: React.ReactNode }) {
|
||||
const { resolvedTheme } = useTheme();
|
||||
const { theme } = useTheme();
|
||||
|
||||
const { data: session } = authClient.useSession();
|
||||
|
||||
const isLoggedIn = !!session?.user;
|
||||
|
||||
const isDarkMode = resolvedTheme === "dark";
|
||||
const isDarkMode = theme === "dark";
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
@@ -1,258 +0,0 @@
|
||||
import Image from "next/image";
|
||||
import { t } from "@lingui/core/macro";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
interface Testimonial {
|
||||
name: string;
|
||||
handle: string;
|
||||
image?: string;
|
||||
colour?: string;
|
||||
text: string | React.ReactNode;
|
||||
role?: string;
|
||||
link?: string;
|
||||
rowSpan?: number;
|
||||
}
|
||||
|
||||
const TestimonialCard = ({
|
||||
testimonial,
|
||||
rowSpan,
|
||||
}: {
|
||||
testimonial: Testimonial;
|
||||
rowSpan?: number;
|
||||
}) => {
|
||||
// Generate initials for avatar
|
||||
const initials = testimonial.name
|
||||
.split(" ")
|
||||
.map((n) => n[0])
|
||||
.join("")
|
||||
.toUpperCase();
|
||||
|
||||
return (
|
||||
<div
|
||||
className={twMerge(
|
||||
"group relative rounded-2xl border border-light-200 bg-light-50 p-6 transition-all duration-200 hover:shadow-sm dark:border-dark-200 dark:bg-dark-50",
|
||||
rowSpan === 2 ? "md:row-span-2" : "",
|
||||
)}
|
||||
>
|
||||
<div className="flex items-start gap-3">
|
||||
{testimonial.image ? (
|
||||
<div className="relative h-10 w-10 shrink-0 overflow-hidden rounded-full">
|
||||
<Image
|
||||
src={testimonial.image}
|
||||
alt={testimonial.name}
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
</div>
|
||||
) : (
|
||||
<div
|
||||
className="flex h-10 w-10 shrink-0 items-center justify-center rounded-full text-sm font-semibold text-light-50 dark:text-dark-1000"
|
||||
style={
|
||||
testimonial.colour
|
||||
? { backgroundColor: testimonial.colour }
|
||||
: undefined
|
||||
}
|
||||
>
|
||||
{initials}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="flex-1">
|
||||
<div className="flex items-center gap-2">
|
||||
<p className="font-semibold text-light-1000 dark:text-dark-1000">
|
||||
{testimonial.name}
|
||||
</p>
|
||||
</div>
|
||||
{testimonial.link ? (
|
||||
<a
|
||||
href={testimonial.link}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="-mt-1 block text-sm text-light-800 transition-colors hover:text-light-900 dark:text-dark-800 dark:hover:text-dark-900"
|
||||
>
|
||||
{testimonial.handle}
|
||||
</a>
|
||||
) : (
|
||||
<p className="-mt-0.5 block text-sm text-light-800 dark:text-dark-800">
|
||||
{testimonial.handle}
|
||||
</p>
|
||||
)}
|
||||
{testimonial.role && (
|
||||
<p className="text-xs text-light-600 dark:text-dark-600">
|
||||
{testimonial.role}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="mt-4 text-sm leading-relaxed text-light-950 dark:text-dark-900">
|
||||
<p>{testimonial.text}</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
const Testimonials = () => {
|
||||
const testimonials: Testimonial[] = [
|
||||
{
|
||||
name: "Bobby Compüters",
|
||||
handle: "@bobbycomputers",
|
||||
image: "/testimonials/avatars/bobby_computers.jpg",
|
||||
text: (
|
||||
<>
|
||||
Holy crap I love this app. It's brutally minimal but somehow has
|
||||
everything I need.
|
||||
</>
|
||||
),
|
||||
link: "https://x.com/bobbycomputers",
|
||||
},
|
||||
{
|
||||
name: "JR Raphael",
|
||||
handle: "@JRRaphael",
|
||||
image: "/testimonials/avatars/jrraphael.png",
|
||||
link: "https://www.fastcompany.com/91376028/trello-alternative-kan",
|
||||
rowSpan: 2,
|
||||
text: (
|
||||
<>
|
||||
The interesting thing about signing into Kan for the first time is
|
||||
that it feels new and electrifying—and yet simultaneously quite
|
||||
familiar, especially if you’ve spent any time in Trello over the
|
||||
years.
|
||||
<br />
|
||||
<br />
|
||||
As someone who connected more with Trello’s original vision and mostly
|
||||
just tolerated the more recent pivots and additions, it’s a bit of a
|
||||
revelation to use.
|
||||
<br />
|
||||
<br />
|
||||
At its core, Kan gives you a super-minimalist and frills-free
|
||||
Trello-style Kanban board. And the extent to which it has been able to
|
||||
build upon the original Trello vision is staggering.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: "singiamtel",
|
||||
handle: "@singiamtel",
|
||||
colour: "#ff6600",
|
||||
text: <>The project seems nice, but how good is that domain name</>,
|
||||
link: "https://news.ycombinator.com/item?id=44157177",
|
||||
},
|
||||
|
||||
{
|
||||
name: "Jan Stgmnn",
|
||||
handle: "@JanStgmnn",
|
||||
image: "/testimonials/avatars/jan_stgmnn.jpg",
|
||||
link: "https://x.com/JanStgmnn",
|
||||
text: (
|
||||
<>
|
||||
Just wanted to say, that I really love the project. It's so easy to
|
||||
use and has a really nice UI!
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: "Fox",
|
||||
handle: "@dscfox",
|
||||
image: "/testimonials/avatars/fox.png",
|
||||
link: "https://discord.gg/e6ejRb6CmT",
|
||||
rowSpan: 2,
|
||||
text: (
|
||||
<>
|
||||
I've been looking at alternatives for months, but everything came up
|
||||
short.
|
||||
<br />
|
||||
<br />
|
||||
Some were direct clones, but lacked features I was dependent on.
|
||||
Others were rich in features, but strayed too far away from the
|
||||
simplicity of Trello.
|
||||
<br />
|
||||
<br />
|
||||
This seems like the best alternative to Trello for me.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: "Hanno Braun",
|
||||
handle: "@hannobraun",
|
||||
image: "/testimonials/avatars/hanno_braun.webp",
|
||||
link: "https://discord.gg/e6ejRb6CmT",
|
||||
text: (
|
||||
<>
|
||||
I've been very impressed with the app so far! It's great to have such
|
||||
a nice open source alternative to Trello.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: "headlessdev_",
|
||||
handle: "@headlessdev_",
|
||||
image: "/testimonials/avatars/headless_dev.png",
|
||||
link: "https://www.reddit.com/r/selfhosted/comments/1l1f2st/i_made_an_opensource_alternative_to_trello/",
|
||||
text: <>This is the best thing I've seen here in a long time</>,
|
||||
},
|
||||
{
|
||||
name: "EHB",
|
||||
handle: "@ehb3839",
|
||||
image: "/testimonials/avatars/ehb.webp",
|
||||
link: "https://www.reddit.com/r/selfhosted/comments/1l1f2st/i_made_an_opensource_alternative_to_trello/",
|
||||
text: (
|
||||
<>
|
||||
It's exactly what I've been looking for recently. The simplicity of
|
||||
the overall app is a pleasure to use.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: "Tasneema Waquar",
|
||||
handle: "@tasneema_waquar",
|
||||
image: "/testimonials/avatars/tasneema_waquar.jpeg",
|
||||
link: "https://www.producthunt.com/products/kan-bn/reviews",
|
||||
text: (
|
||||
<>
|
||||
The design of this project management tool is impressive. The
|
||||
interface is intuitive, free of unnecessary clutter, and comes with a
|
||||
solid selection of templates.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: "BRAVO68WEB",
|
||||
handle: "@bravo68web",
|
||||
image: "/testimonials/avatars/bravo68web.jpeg",
|
||||
link: "https://discord.gg/e6ejRb6CmT",
|
||||
text: <>I have fallen in love with the project.</>,
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="flex flex-col items-center justify-center px-4 pb-24">
|
||||
<div className="flex items-center gap-2 rounded-full border bg-light-50 px-4 py-1 text-center text-xs text-light-1000 dark:border-dark-300 dark:bg-dark-50 dark:text-dark-900 lg:text-sm">
|
||||
<p>{t`Testimonials`}</p>
|
||||
</div>
|
||||
|
||||
<p className="mt-2 text-center text-3xl font-bold text-light-1000 dark:text-dark-1000 lg:text-4xl">
|
||||
{t`Loved by teams worldwide`}
|
||||
</p>
|
||||
<p className="text-md lg:text-md mt-3 max-w-[500px] text-center text-light-950 dark:text-dark-900">
|
||||
{t`See what our users are saying about Kan`}
|
||||
</p>
|
||||
|
||||
<div className="mx-auto mt-16 w-full max-w-7xl">
|
||||
<div className="grid grid-cols-1 gap-4 md:auto-rows-fr md:grid-cols-3">
|
||||
{testimonials.map((testimonial, index) => (
|
||||
<TestimonialCard
|
||||
key={`testimonial-${index}`}
|
||||
testimonial={testimonial}
|
||||
rowSpan={testimonial.rowSpan}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Testimonials;
|
||||
@@ -12,7 +12,6 @@ import FAQs from "./components/Faqs";
|
||||
import Features from "./components/Features";
|
||||
import Layout from "./components/Layout";
|
||||
import Logos from "./components/Logos";
|
||||
import Testimonials from "./components/Testimonials";
|
||||
|
||||
export default function HomeView() {
|
||||
const { resolvedTheme } = useTheme();
|
||||
@@ -111,10 +110,6 @@ export default function HomeView() {
|
||||
<div id="features" className="absolute -top-20" />
|
||||
<Features theme={resolvedTheme === "dark" ? "dark" : "light"} />
|
||||
</div>
|
||||
<div className="relative pt-10">
|
||||
<div id="testimonials" className="absolute -top-20" />
|
||||
<Testimonials />
|
||||
</div>
|
||||
<div className="relative pt-10">
|
||||
<div id="faq" className="absolute -top-20" />
|
||||
<FAQs />
|
||||
|
||||
@@ -12,7 +12,7 @@ const schema = z.object({
|
||||
name: z
|
||||
.string()
|
||||
.min(3, { message: t`Workspace name must be at least 3 characters long` })
|
||||
.max(64, { message: t`Workspace name cannot exceed 64 characters` }),
|
||||
.max(24, { message: t`Workspace name cannot exceed 24 characters` }),
|
||||
});
|
||||
|
||||
type FormValues = z.infer<typeof schema>;
|
||||
|
||||
@@ -139,7 +139,7 @@ export const workspaceRouter = createTRPCRouter({
|
||||
})
|
||||
.input(
|
||||
z.object({
|
||||
name: z.string().min(1).max(64),
|
||||
name: z.string().min(1),
|
||||
slug: z
|
||||
.string()
|
||||
.min(3)
|
||||
@@ -222,7 +222,7 @@ export const workspaceRouter = createTRPCRouter({
|
||||
.input(
|
||||
z.object({
|
||||
workspacePublicId: z.string().min(12),
|
||||
name: z.string().min(3).max(64).optional(),
|
||||
name: z.string().min(3).max(24).optional(),
|
||||
slug: z
|
||||
.string()
|
||||
.min(3)
|
||||
|
||||