Compare commits

..

2 Commits

Author SHA1 Message Date
Henry
0fb144993c feat: add small fade out to testimonials 2025-10-28 22:02:03 +00:00
Henry
61e88de216 fix: improve faq text eligibility on dark mode 2025-10-28 21:51:46 +00:00
25 changed files with 291 additions and 608 deletions

View File

@@ -89,7 +89,6 @@ checksums:
Card%20title/singular: 7c34f59f4005e6cb3a6ff546ea0b96e3
Change%20Password/singular: a552fc5c4189ebc3e2e6018edda7d18f
Change%20your%20language%20preferences./singular: 293d49fc3c75e9c425b64bd7126e6b46
Check%20out%20some%20of%20our%20favorite%20open%20source%20projects./singular: b0d0be4f63c16552b3aa795af29240d1
Check%20your%20inbox/singular: e9a430fcd298def74212238df0f680d6
Checklist%20name/singular: 5eb5de823f7ca5a4d97bb41e6a3f675a
Checklists/singular: 6f79129c8f08ee54d858a2af57d16dd9
@@ -286,7 +285,6 @@ checksums:
Launch%20offer/singular: 624592ba2ecf647a3fe60d493c1ee71a
Launch%20offer%3A%20Get%20unlimited%20members%20with%20Pro/singular: 8c1be80f5b2fcc112922282afbe30287
Launch%20offer%3A%20unlimited%20seats%20for%20just%20%2429%2Fmonth%20with%20Pro/singular: 235d1cda21811c296afdc0dcc438cc24
Learn%20more/singular: e598091d132f890c37a6d4ed94f6d794
Learning/singular: 90e91da3f870f065f2da9aa9adf53514
Legal/singular: 00d3f08da61a21887009819cf93fb414
License/singular: ac2bcac75151e2fcd9eb768cea275a77
@@ -337,10 +335,8 @@ checksums:
Once%20you%20delete%20your%20account%2C%20there%20is%20no%20going%20back.%20This%20action%20cannot%20be%20undone./singular: 9cf7aa6ef30890e5124e266c081bae1c
Once%20you%20delete%20your%20workspace%2C%20there%20is%20no%20going%20back.%20This%20action%20cannot%20be%20undone./singular: c9ce6a516ed1f361653e8f8db3dd5ffd
Open%20source/singular: 81a747dc664de1a3389b495c8f84843b
Open%20Source%20Friends/singular: ffe3d75e5d03b8469c9dcb019dceb164
or/singular: 7b133c38bec0d5ee23cc6bcf9a8de50b
Organize%20and%20find%20cards%20quickly%20with%20powerful%20filtering%20tools./singular: 1b9898c4b21e9dff413b4f76dc59db56
OSS%20Friends/singular: 706e10666dfe26130c17fedb5366a25d
Own%20your%20data/singular: cc2178dac4bdf6b07f030cfc2a7510e6
Owned%20by%20Atlassian/singular: ace4ed076a5318ad48c296fa09afed69
Part-time/singular: 213d63da450f35dabb3ab0e35e29feed
@@ -541,7 +537,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

View File

@@ -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, {

View File

@@ -48,14 +48,15 @@ export default function WorkspaceMenu({
) : (
<div
className={twMerge(
"flex items-center justify-start gap-1",
"flex items-center gap-1",
isCollapsed && "md:flex-col-reverse md:items-stretch",
)}
>
<Menu.Button
className={twMerge(
"mb-1 flex h-[34px] min-w-0 flex-1 items-center justify-start 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:p-0",
"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",
)}
title={isCollapsed ? workspace.name : undefined}
>
@@ -66,7 +67,7 @@ export default function WorkspaceMenu({
</span>
<span
className={twMerge(
"ml-2 min-w-0 flex-1 truncate text-left 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",
)}
>
@@ -86,7 +87,7 @@ export default function WorkspaceMenu({
<Button
className={twMerge(
"mb-1 h-[34px] w-[34px] flex-shrink-0 rounded-lg bg-light-200 p-2 hover:bg-light-300 focus:outline-none dark:bg-dark-200 dark:hover:bg-dark-300",
isCollapsed && "md:mb-2 md:h-9 md:w-9",
isCollapsed && "md:mb-2 md:h-9 md:w-9 md:self-center",
)}
onClick={() => setIsOpen(true)}
>

View File

@@ -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"
@@ -406,10 +406,6 @@ msgstr "Passwort ändern"
msgid "Change your language preferences."
msgstr "Ändern Sie Ihre Spracheinstellungen."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Entdecken Sie einige unserer liebsten Open-Source-Projekte."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -445,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"
@@ -459,7 +455,7 @@ msgstr "Kommentare"
msgid "Comments & mentions"
msgstr "Kommentare & Erwähnungen"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Unternehmen"
@@ -589,8 +585,8 @@ msgstr "Neue Liste erstellen"
msgid "Create template"
msgstr "Vorlage erstellen"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Arbeitsbereich erstellen"
@@ -623,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"
@@ -631,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"
@@ -749,7 +745,7 @@ msgstr "Dokumente"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Dokumentation"
@@ -886,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"
@@ -932,7 +928,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "Häufig gestellte Fragen"
@@ -954,7 +950,7 @@ msgid "Feature Request"
msgstr "Feature-Anfrage"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -983,8 +979,6 @@ msgid "For long-term sustainability, we recognise all good open source projects
msgstr "Für langfristige Nachhaltigkeit erkennen wir an, dass alle guten Open-Source-Projekte eine Einnahmequelle benötigen. Unsere stammt aus dem kostenpflichtigen Cloud-Angebot für Workspaces mit mehreren Benutzern und für benutzerdefinierte Workspace-Slugs. Es besteht keine Verpflichtung, es zu nutzen, und Sie können die Software kostenlos auf Ihrer eigenen Infrastruktur selbst hosten."
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/PricingTiers.tsx:30
#: src/views/pricing/components/PricingTiers.tsx:30
msgid "Free"
msgstr "Kostenlos"
@@ -1258,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"
@@ -1272,19 +1266,15 @@ msgstr "Einführungsangebot: Erhalten Sie unbegrenzte Mitglieder mit Pro"
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Einführungsangebot: unbegrenzte Plätze für nur $29/Monat mit Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "Mehr erfahren"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Lernen"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Rechtliches"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "Lizenz"
@@ -1438,7 +1428,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"
@@ -1491,10 +1481,6 @@ msgstr "Sobald Sie Ihren Arbeitsbereich löschen, gibt es kein Zurück mehr. Die
msgid "Open source"
msgstr "Open Source"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Open-Source-Freunde"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "oder"
@@ -1503,11 +1489,6 @@ msgstr "oder"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Organisiere und finde Karten schnell mit leistungsstarken Filterwerkzeugen."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "OSS-Freunde"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1595,7 +1576,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
@@ -1643,7 +1624,7 @@ msgstr "Bitte versuche es später erneut."
msgid "Price per user/month"
msgstr "Preis pro Benutzer/Monat"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1658,7 +1639,7 @@ msgstr "Preise"
msgid "Priority email support"
msgstr "Prioritäts-E-Mail-Support"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Datenschutzrichtlinie"
@@ -1753,7 +1734,7 @@ msgstr "Recherche"
msgid "Resolution"
msgstr "Lösung"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Ressourcen"
@@ -1972,7 +1953,7 @@ msgstr "Vorlagenname ist erforderlich"
msgid "Templates"
msgstr "Vorlagen"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Nutzungsbedingungen"
@@ -2041,11 +2022,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"
@@ -2112,7 +2093,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"
@@ -2216,7 +2197,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"
@@ -2263,7 +2244,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)"
@@ -2276,17 +2257,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"
@@ -2377,7 +2358,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."
@@ -2407,17 +2388,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"
@@ -2437,7 +2417,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"

File diff suppressed because one or more lines are too long

View File

@@ -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"
@@ -467,10 +467,6 @@ msgstr "Change Password"
msgid "Change your language preferences."
msgstr "Change your language preferences."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Check out some of our favorite open source projects."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -506,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"
@@ -520,7 +516,7 @@ msgstr "Comments"
msgid "Comments & mentions"
msgstr "Comments & mentions"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Company"
@@ -670,8 +666,8 @@ msgstr "Create new list"
msgid "Create template"
msgstr "Create template"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Create workspace"
@@ -712,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"
@@ -720,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"
@@ -838,7 +834,7 @@ msgstr "Docs"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Documentation"
@@ -975,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"
@@ -1021,7 +1017,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "FAQs"
@@ -1043,7 +1039,7 @@ msgid "Feature Request"
msgstr "Feature Request"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -1367,7 +1363,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"
@@ -1381,19 +1377,15 @@ msgstr "Launch offer: Get unlimited members with Pro"
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Launch offer: unlimited seats for just $29/month with Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "Learn more"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Learning"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Legal"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "License"
@@ -1563,7 +1555,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"
@@ -1620,10 +1612,6 @@ msgstr "Once you delete your workspace, there is no going back. This action cann
msgid "Open source"
msgstr "Open source"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Open Source Friends"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "or"
@@ -1632,11 +1620,6 @@ msgstr "or"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Organize and find cards quickly with powerful filtering tools."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "OSS Friends"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1724,7 +1707,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
@@ -1772,7 +1755,7 @@ msgstr "Please try again later."
msgid "Price per user/month"
msgstr "Price per user/month"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1787,7 +1770,7 @@ msgstr "Pricing"
msgid "Priority email support"
msgstr "Priority email support"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Privacy policy"
@@ -1886,7 +1869,7 @@ msgstr "Research"
msgid "Resolution"
msgstr "Resolution"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Resources"
@@ -2121,7 +2104,7 @@ msgstr "Template name is required"
msgid "Templates"
msgstr "Templates"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Terms of service"
@@ -2190,11 +2173,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"
@@ -2269,7 +2252,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"
@@ -2377,7 +2360,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"
@@ -2428,7 +2411,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)"
@@ -2441,17 +2424,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"
@@ -2550,7 +2533,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."
@@ -2580,21 +2563,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"
@@ -2614,7 +2592,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"

File diff suppressed because one or more lines are too long

View File

@@ -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"
@@ -406,10 +406,6 @@ msgstr "Cambiar contraseña"
msgid "Change your language preferences."
msgstr "Cambia tus preferencias de idioma."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Descubre algunos de nuestros proyectos de código abierto favoritos."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -445,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"
@@ -459,7 +455,7 @@ msgstr "Comentarios"
msgid "Comments & mentions"
msgstr "Comentarios y menciones"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Empresa"
@@ -589,8 +585,8 @@ msgstr "Crear nueva lista"
msgid "Create template"
msgstr "Crear plantilla"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Crear espacio de trabajo"
@@ -623,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"
@@ -631,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"
@@ -749,7 +745,7 @@ msgstr "Documentos"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Documentación"
@@ -886,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"
@@ -932,7 +928,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "Preguntas frecuentes"
@@ -954,7 +950,7 @@ msgid "Feature Request"
msgstr "Solicitud de función"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -983,8 +979,6 @@ msgid "For long-term sustainability, we recognise all good open source projects
msgstr "Para la sostenibilidad a largo plazo, reconocemos que todos los buenos proyectos de código abierto necesitan una fuente de ingresos. La nuestra proviene de la oferta de nube de pago para espacios de trabajo con múltiples usuarios y para slugs de espacio de trabajo personalizados. No hay obligación de usarla, y puedes alojar el software en tu propia infraestructura sin costo alguno."
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/PricingTiers.tsx:30
#: src/views/pricing/components/PricingTiers.tsx:30
msgid "Free"
msgstr "Gratis"
@@ -1258,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"
@@ -1272,19 +1266,15 @@ msgstr "Oferta de lanzamiento: Obtén miembros ilimitados con Pro"
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Oferta de lanzamiento: asientos ilimitados por solo $29/mes con Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "Saber más"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Aprendizaje"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Legal"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "Licencia"
@@ -1438,7 +1428,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"
@@ -1491,10 +1481,6 @@ msgstr "Una vez que elimines tu espacio de trabajo, no hay vuelta atrás. Esta a
msgid "Open source"
msgstr "Código abierto"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Amigos de código abierto"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "o"
@@ -1503,11 +1489,6 @@ msgstr "o"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Organiza y encuentra tarjetas rápidamente con potentes herramientas de filtrado."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "Amigos OSS"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1595,7 +1576,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
@@ -1643,7 +1624,7 @@ msgstr "Por favor, inténtalo de nuevo más tarde."
msgid "Price per user/month"
msgstr "Precio por usuario/mes"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1658,7 +1639,7 @@ msgstr "Precios"
msgid "Priority email support"
msgstr "Soporte prioritario por email"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Política de privacidad"
@@ -1753,7 +1734,7 @@ msgstr "Investigación"
msgid "Resolution"
msgstr "Resolución"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Recursos"
@@ -1972,7 +1953,7 @@ msgstr "El nombre de la plantilla es obligatorio"
msgid "Templates"
msgstr "Plantillas"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Términos de servicio"
@@ -2041,11 +2022,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"
@@ -2112,7 +2093,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"
@@ -2216,7 +2197,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"
@@ -2263,7 +2244,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)"
@@ -2276,17 +2257,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"
@@ -2377,7 +2358,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."
@@ -2407,17 +2388,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"
@@ -2437,7 +2417,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"

File diff suppressed because one or more lines are too long

View File

@@ -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"
@@ -406,10 +406,6 @@ msgstr "Modifier le mot de passe"
msgid "Change your language preferences."
msgstr "Modifiez vos préférences linguistiques."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Découvrez certains de nos projets open source préférés."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -445,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"
@@ -459,7 +455,7 @@ msgstr "Commentaires"
msgid "Comments & mentions"
msgstr "Commentaires & mentions"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Entreprise"
@@ -589,8 +585,8 @@ msgstr "Créer une nouvelle liste"
msgid "Create template"
msgstr "Créer un modèle"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Créer un espace de travail"
@@ -623,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"
@@ -631,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"
@@ -749,7 +745,7 @@ msgstr "Documentation"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Documentation"
@@ -886,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"
@@ -932,7 +928,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "FAQ"
@@ -954,7 +950,7 @@ msgid "Feature Request"
msgstr "Demande de fonctionnalité"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -983,8 +979,6 @@ msgid "For long-term sustainability, we recognise all good open source projects
msgstr "Pour une durabilité à long terme, nous reconnaissons que tous les bons projets open source ont besoin d'une source de revenus. La nôtre provient de l'offre cloud payante pour les espaces de travail avec plusieurs utilisateurs et pour les slugs d'espace de travail personnalisés. Il n'y a aucune obligation de l'utiliser, et vous pouvez auto-héberger le logiciel sur votre propre infrastructure gratuitement."
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/PricingTiers.tsx:30
#: src/views/pricing/components/PricingTiers.tsx:30
msgid "Free"
msgstr "Gratuit"
@@ -1258,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"
@@ -1272,19 +1266,15 @@ msgstr "Offre de lancement : obtenez des membres illimités avec Pro"
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Offre de lancement : sièges illimités pour seulement 29 $/mois avec Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "En savoir plus"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Apprentissage"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Mentions légales"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "Licence"
@@ -1438,7 +1428,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"
@@ -1491,10 +1481,6 @@ msgstr "Une fois que vous supprimez votre espace de travail, il n'y a pas de ret
msgid "Open source"
msgstr "Open source"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Amis Open Source"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "ou"
@@ -1503,11 +1489,6 @@ msgstr "ou"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Organisez et trouvez rapidement des cartes avec des outils de filtrage puissants."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "Amis OSS"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1595,7 +1576,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
@@ -1643,7 +1624,7 @@ msgstr "Veuillez réessayer plus tard."
msgid "Price per user/month"
msgstr "Prix par utilisateur/mois"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1658,7 +1639,7 @@ msgstr "Tarifs"
msgid "Priority email support"
msgstr "Support par e-mail prioritaire"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Politique de confidentialité"
@@ -1753,7 +1734,7 @@ msgstr "Recherche"
msgid "Resolution"
msgstr "Résolution"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Ressources"
@@ -1972,7 +1953,7 @@ msgstr "Le nom du modèle est requis"
msgid "Templates"
msgstr "Modèles"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Conditions d'utilisation"
@@ -2041,11 +2022,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"
@@ -2112,7 +2093,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"
@@ -2216,7 +2197,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"
@@ -2263,7 +2244,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)"
@@ -2276,17 +2257,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"
@@ -2377,7 +2358,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."
@@ -2407,17 +2388,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"
@@ -2437,7 +2417,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"

File diff suppressed because one or more lines are too long

View File

@@ -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"
@@ -406,10 +406,6 @@ msgstr "Cambia password"
msgid "Change your language preferences."
msgstr "Modifica le tue preferenze di lingua."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Dai un'occhiata ad alcuni dei nostri progetti open source preferiti."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -445,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"
@@ -459,7 +455,7 @@ msgstr "Commenti"
msgid "Comments & mentions"
msgstr "Commenti & menzioni"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Azienda"
@@ -589,8 +585,8 @@ msgstr "Crea nuova lista"
msgid "Create template"
msgstr "Crea template"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Crea spazio di lavoro"
@@ -623,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"
@@ -631,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"
@@ -749,7 +745,7 @@ msgstr "Documenti"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Documentazione"
@@ -886,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"
@@ -932,7 +928,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "FAQ"
@@ -954,7 +950,7 @@ msgid "Feature Request"
msgstr "Richiesta funzionalità"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -983,8 +979,6 @@ msgid "For long-term sustainability, we recognise all good open source projects
msgstr "Per la sostenibilità a lungo termine, riconosciamo che tutti i buoni progetti open source necessitano di una fonte di entrate. La nostra proviene dall'offerta cloud a pagamento per gli spazi di lavoro con più utenti e per gli slug personalizzati degli spazi di lavoro. Non c'è alcun obbligo di utilizzarla, e puoi ospitare autonomamente il software sulla tua infrastruttura gratuitamente."
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/PricingTiers.tsx:30
#: src/views/pricing/components/PricingTiers.tsx:30
msgid "Free"
msgstr "Gratuito"
@@ -1258,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"
@@ -1272,19 +1266,15 @@ msgstr "Offerta di lancio: ottieni membri illimitati con Pro"
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Offerta di lancio: posti illimitati a soli $29/mese con Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "Scopri di più"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Apprendimento"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Legale"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "Licenza"
@@ -1438,7 +1428,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"
@@ -1491,10 +1481,6 @@ msgstr "Una volta eliminata l'area di lavoro, non si può tornare indietro. Ques
msgid "Open source"
msgstr "Open source"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Amici Open Source"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "o"
@@ -1503,11 +1489,6 @@ msgstr "o"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Organizza e trova le schede rapidamente con potenti strumenti di filtraggio."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "Amici OSS"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1595,7 +1576,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
@@ -1643,7 +1624,7 @@ msgstr "Riprova più tardi."
msgid "Price per user/month"
msgstr "Prezzo per utente/mese"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1658,7 +1639,7 @@ msgstr "Prezzi"
msgid "Priority email support"
msgstr "Supporto email prioritario"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Informativa sulla privacy"
@@ -1753,7 +1734,7 @@ msgstr "Ricerca"
msgid "Resolution"
msgstr "Risoluzione"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Risorse"
@@ -1972,7 +1953,7 @@ msgstr "Il nome del template è obbligatorio"
msgid "Templates"
msgstr "Template"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Termini di servizio"
@@ -2041,11 +2022,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"
@@ -2112,7 +2093,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"
@@ -2216,7 +2197,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"
@@ -2263,7 +2244,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)"
@@ -2276,17 +2257,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"
@@ -2377,7 +2358,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."
@@ -2407,17 +2388,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"
@@ -2437,7 +2417,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"

File diff suppressed because one or more lines are too long

View File

@@ -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"
@@ -406,10 +406,6 @@ msgstr "Wachtwoord wijzigen"
msgid "Change your language preferences."
msgstr "Wijzig je taalvoorkeuren."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Bekijk enkele van onze favoriete open source projecten."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -445,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"
@@ -459,7 +455,7 @@ msgstr "Opmerkingen"
msgid "Comments & mentions"
msgstr "Opmerkingen & vermeldingen"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Bedrijf"
@@ -589,8 +585,8 @@ msgstr "Maak nieuwe lijst"
msgid "Create template"
msgstr "Sjabloon maken"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Werkruimte maken"
@@ -623,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"
@@ -631,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"
@@ -749,7 +745,7 @@ msgstr "Docs"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Documentatie"
@@ -886,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"
@@ -932,7 +928,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "Veelgestelde vragen"
@@ -954,7 +950,7 @@ msgid "Feature Request"
msgstr "Functieverzoek"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -983,8 +979,6 @@ msgid "For long-term sustainability, we recognise all good open source projects
msgstr "Voor duurzaamheid op lange termijn erkennen we dat alle goede open source projecten een inkomstenbron nodig hebben. De onze komt van de betaalde cloudoplossing voor werkruimtes met meerdere gebruikers en voor aangepaste werkruimte-slugs. Er is geen verplichting om het te gebruiken, en je kunt de software gratis op je eigen infrastructuur hosten."
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/PricingTiers.tsx:30
#: src/views/pricing/components/PricingTiers.tsx:30
msgid "Free"
msgstr "Gratis"
@@ -1258,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"
@@ -1272,19 +1266,15 @@ msgstr "Lanceringsaanbieding: krijg onbeperkt aantal leden met Pro"
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Introductieaanbieding: onbeperkt aantal gebruikers voor slechts $29/maand met Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "Meer informatie"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Leren"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Juridisch"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "Licentie"
@@ -1438,7 +1428,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"
@@ -1491,10 +1481,6 @@ msgstr "Zodra je je werkruimte verwijdert, is er geen weg terug. Deze actie kan
msgid "Open source"
msgstr "Open source"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Open Source Vrienden"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "of"
@@ -1503,11 +1489,6 @@ msgstr "of"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Organiseer en vind kaarten snel met krachtige filtertools."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "OSS Vrienden"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1595,7 +1576,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
@@ -1643,7 +1624,7 @@ msgstr "Probeer het later opnieuw."
msgid "Price per user/month"
msgstr "Prijs per gebruiker/maand"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1658,7 +1639,7 @@ msgstr "Prijzen"
msgid "Priority email support"
msgstr "Prioriteit e-mailondersteuning"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Privacybeleid"
@@ -1753,7 +1734,7 @@ msgstr "Onderzoek"
msgid "Resolution"
msgstr "Oplossing"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Bronnen"
@@ -1972,7 +1953,7 @@ msgstr "Sjabloonnaam is verplicht"
msgid "Templates"
msgstr "Sjablonen"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Servicevoorwaarden"
@@ -2041,11 +2022,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"
@@ -2112,7 +2093,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"
@@ -2216,7 +2197,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"
@@ -2263,7 +2244,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)"
@@ -2276,17 +2257,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"
@@ -2377,7 +2358,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."
@@ -2407,17 +2388,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"
@@ -2437,7 +2417,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"

File diff suppressed because one or more lines are too long

View File

@@ -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"
@@ -411,10 +411,6 @@ msgstr "Zmień hasło"
msgid "Change your language preferences."
msgstr "Zmień swoje preferencje językowe."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Sprawdź niektóre z naszych ulubionych projektów otwartoźródłowych."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -450,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"
@@ -464,7 +460,7 @@ msgstr "Komentarze"
msgid "Comments & mentions"
msgstr "Komentarze i wzmianki"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Firma"
@@ -594,8 +590,8 @@ msgstr "Utwórz nową listę"
msgid "Create template"
msgstr "Utwórz szablon"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Utwórz przestrzeń roboczą"
@@ -628,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"
@@ -636,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"
@@ -754,7 +750,7 @@ msgstr "Dokumentacja"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Dokumentacja"
@@ -891,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"
@@ -937,7 +933,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "Pytania i Odpowiedzi"
@@ -959,7 +955,7 @@ msgid "Feature Request"
msgstr "Prośba o funkcję"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -988,8 +984,6 @@ msgid "For long-term sustainability, we recognise all good open source projects
msgstr "Dla długoterminowej trwałości uznajemy, że wszystkie dobre projekty open source potrzebują źródła dochodu. Nasze pochodzi z płatnej oferty w chmurze dla przestrzeni roboczych z wieloma użytkownikami oraz dla niestandardowych nazw przestrzeni roboczych. Nie ma obowiązku korzystania z niej, a oprogramowanie można hostować samodzielnie na własnej infrastrukturze bezpłatnie."
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/PricingTiers.tsx:30
#: src/views/pricing/components/PricingTiers.tsx:30
msgid "Free"
msgstr "Darmowy"
@@ -1263,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"
@@ -1277,19 +1271,15 @@ msgstr "Oferta startowa: Nieograniczona liczba członków z Pro"
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Oferta startowa: nieograniczona liczba miejsc za jedyne 29 USD/miesiąc z Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "Dowiedz się więcej"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Nauka"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Prawne"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "Licencja"
@@ -1443,7 +1433,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"
@@ -1496,10 +1486,6 @@ msgstr "Po usunięciu przestrzeni roboczej nie będzie możliwości jej przywró
msgid "Open source"
msgstr "Otwartoźródłowe"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Przyjaciele Open Source"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "lub"
@@ -1508,11 +1494,6 @@ msgstr "lub"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Organizuj i znajduj karty szybko dzięki zaawansowanym narzędziom filtrowania."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "Przyjaciele OSS"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1600,7 +1581,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
@@ -1648,7 +1629,7 @@ msgstr "Proszę spróbować ponownie później."
msgid "Price per user/month"
msgstr "Cena za użytkownika/miesiąc"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1663,7 +1644,7 @@ msgstr "Cennik"
msgid "Priority email support"
msgstr "Priorytetowe wsparcie e-mail"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Polityka prywatności"
@@ -1758,7 +1739,7 @@ msgstr "Badania"
msgid "Resolution"
msgstr "Rezolucja"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Zasoby"
@@ -1977,7 +1958,7 @@ msgstr "Nazwa szablonu jest wymagana"
msgid "Templates"
msgstr "Szablony"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Warunki korzystania z usługi"
@@ -2046,11 +2027,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"
@@ -2117,7 +2098,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"
@@ -2221,7 +2202,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"
@@ -2268,7 +2249,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)"
@@ -2281,17 +2262,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"
@@ -2382,7 +2363,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."
@@ -2412,17 +2393,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"
@@ -2442,7 +2422,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"

File diff suppressed because one or more lines are too long

View File

@@ -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 "Аналитика доски"
@@ -406,10 +406,6 @@ msgstr "Изменить пароль"
msgid "Change your language preferences."
msgstr "Измените настройки языка."
#: src/views/oss-friends/index.tsx:61
msgid "Check out some of our favorite open source projects."
msgstr "Ознакомьтесь с некоторыми из наших любимых проектов с открытым исходным кодом."
#: src/views/auth/login/index.tsx:43
#: src/views/auth/signup/index.tsx:69
msgid "Check your inbox"
@@ -445,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"
@@ -459,7 +455,7 @@ msgstr "Комментарии"
msgid "Comments & mentions"
msgstr "Комментарии и упоминания"
#: src/views/home/components/Footer.tsx:95
#: src/views/home/components/Footer.tsx:94
msgid "Company"
msgstr "Компания"
@@ -589,8 +585,8 @@ msgstr "Создать новый список"
msgid "Create template"
msgstr "Создать шаблон"
#: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:148
#: src/components/NewWorkspaceForm.tsx:384
#: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace"
msgstr "Создать рабочее пространство"
@@ -623,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-плана"
@@ -631,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 рабочего пространства"
@@ -749,7 +745,7 @@ msgstr "Документы"
#: src/components/UserMenu.tsx:191
#: src/views/boards/components/TemplateBoards.tsx:24
#: src/views/home/components/Footer.tsx:78
#: src/views/home/components/Footer.tsx:77
#: src/views/home/components/Header.tsx:36
msgid "Documentation"
msgstr "Документация"
@@ -886,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"
@@ -932,7 +928,7 @@ msgid "FAQ"
msgstr "FAQ"
#: src/views/home/components/Faqs.tsx:143
#: src/views/home/components/Footer.tsx:52
#: src/views/home/components/Footer.tsx:51
msgid "FAQs"
msgstr "Часто задаваемые вопросы"
@@ -954,7 +950,7 @@ msgid "Feature Request"
msgstr "Запрос функции"
#: src/views/home/components/Features.tsx:132
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Footer.tsx:49
#: src/views/home/components/Header.tsx:17
#: src/views/home/components/Header.tsx:33
#: src/views/pricing/index.tsx:63
@@ -983,8 +979,6 @@ msgid "For long-term sustainability, we recognise all good open source projects
msgstr "Для долгосрочной устойчивости мы признаем, что всем хорошим проектам с открытым исходным кодом необходим источник дохода. Наш доход поступает от платного облачного предложения для рабочих пространств с несколькими пользователями и для пользовательских идентификаторов рабочих пространств. Нет обязательства использовать его, и вы можете самостоятельно разместить программное обеспечение на своей инфраструктуре бесплатно."
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/Pricing.tsx:32
#: src/views/pricing/components/PricingTiers.tsx:30
#: src/views/pricing/components/PricingTiers.tsx:30
msgid "Free"
msgstr "Бесплатно"
@@ -1258,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 "Стартовое предложение"
@@ -1272,19 +1266,15 @@ msgstr "Стартовое предложение: получите неогра
msgid "Launch offer: unlimited seats for just $29/month with Pro"
msgstr "Стартовое предложение: неограниченное количество мест всего за $29/месяц с Pro"
#: src/views/oss-friends/index.tsx:110
msgid "Learn more"
msgstr "Узнать больше"
#: src/views/boards/components/TemplateBoards.tsx:84
msgid "Learning"
msgstr "Обучение"
#: src/views/home/components/Footer.tsx:131
#: src/views/home/components/Footer.tsx:130
msgid "Legal"
msgstr "Юридическое"
#: src/views/home/components/Footer.tsx:45
#: src/views/home/components/Footer.tsx:44
msgid "License"
msgstr "Лицензия"
@@ -1438,7 +1428,7 @@ msgstr "Новый шаблон"
msgid "New Ticket"
msgstr "Новый тикет"
#: src/components/NewWorkspaceForm.tsx:243
#: src/components/NewWorkspaceForm.tsx:240
msgid "New workspace"
msgstr "Новое рабочее пространство"
@@ -1491,10 +1481,6 @@ msgstr "После удаления рабочего пространства в
msgid "Open source"
msgstr "С открытым исходным кодом"
#: src/views/oss-friends/index.tsx:58
msgid "Open Source Friends"
msgstr "Друзья с открытым исходным кодом"
#: src/components/AuthForm.tsx:365
msgid "or"
msgstr "или"
@@ -1503,11 +1489,6 @@ msgstr "или"
msgid "Organize and find cards quickly with powerful filtering tools."
msgstr "Организуйте и находите карточки быстро с помощью мощных инструментов фильтрации."
#: src/views/home/components/Footer.tsx:39
#: src/views/oss-friends/index.tsx:52
msgid "OSS Friends"
msgstr "Друзья OSS"
#: src/views/pricing/components/Pricing.tsx:73
#: src/views/pricing/components/PricingTiers.tsx:70
msgid "Own your data"
@@ -1595,7 +1576,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
@@ -1643,7 +1624,7 @@ msgstr "Пожалуйста, попробуйте позже."
msgid "Price per user/month"
msgstr "Цена за пользователя/месяц"
#: src/views/home/components/Footer.tsx:51
#: src/views/home/components/Footer.tsx:50
#: src/views/home/components/Header.tsx:18
#: src/views/home/components/Header.tsx:34
#: src/views/pricing/components/Pricing.tsx:85
@@ -1658,7 +1639,7 @@ msgstr "Цены"
msgid "Priority email support"
msgstr "Приоритетная поддержка по электронной почте"
#: src/views/home/components/Footer.tsx:43
#: src/views/home/components/Footer.tsx:42
msgid "Privacy policy"
msgstr "Политика конфиденциальности"
@@ -1753,7 +1734,7 @@ msgstr "Исследование"
msgid "Resolution"
msgstr "Решение"
#: src/views/home/components/Footer.tsx:114
#: src/views/home/components/Footer.tsx:113
msgid "Resources"
msgstr "Ресурсы"
@@ -1972,7 +1953,7 @@ msgstr "Имя шаблона обязательно"
msgid "Templates"
msgstr "Шаблоны"
#: src/views/home/components/Footer.tsx:42
#: src/views/home/components/Footer.tsx:41
msgid "Terms of service"
msgstr "Условия обслуживания"
@@ -2041,11 +2022,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 рабочего пространства зарезервирован."
@@ -2112,7 +2093,7 @@ msgstr "Не удалось создать список."
msgid "Unable to create template"
msgstr "Не удалось создать шаблон"
#: src/components/NewWorkspaceForm.tsx:157
#: src/components/NewWorkspaceForm.tsx:154
msgid "Unable to create workspace"
msgstr "Не удалось создать рабочее пространство."
@@ -2216,7 +2197,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 "Неограниченное количество участников"
@@ -2263,7 +2244,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/месяц)"
@@ -2276,17 +2257,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 символов"
@@ -2377,7 +2358,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 "Рабочее пространство успешно создано. Вы можете обновить его позже в настройках."
@@ -2407,17 +2388,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 "Название рабочего пространства обязательно"
@@ -2437,7 +2417,7 @@ msgstr "Slug рабочего пространства обновлен"
msgid "Workspace URL"
msgstr "URL рабочего пространства"
#: src/components/NewWorkspaceForm.tsx:276
#: src/components/NewWorkspaceForm.tsx:273
msgid "workspace-url"
msgstr "workspace-url"

File diff suppressed because one or more lines are too long

View File

@@ -1,23 +0,0 @@
import type { NextApiRequest, NextApiResponse } from "next";
export default async function handler(
req: NextApiRequest,
res: NextApiResponse,
) {
if (req.method !== "GET") {
return res.status(405).json({ message: "Method not allowed" });
}
try {
const response = await fetch("https://formbricks.com/api/oss-friends");
if (!response.ok) {
throw new Error("Failed to fetch from Formbricks");
}
const data = await response.json();
return res.status(200).json(data);
} catch (error) {
console.error("Error fetching OSS friends:", error);
return res.status(500).json({ message: "Failed to fetch OSS friends" });
}
}

View File

@@ -1,5 +0,0 @@
import OSSFriendsView from "~/views/oss-friends";
export default function OSSFriends() {
return <OSSFriendsView />;
}

View File

@@ -36,7 +36,6 @@ const Footer = () => {
{ name: t`Roadmap`, href: "/kan/roadmap" },
{ name: t`GitHub`, href: "https://github.com/kanbn/kan" },
{ name: t`Contact`, href: "mailto:support@kan.bn" },
{ name: t`OSS Friends`, href: "/oss-friends" },
],
legal: [
{ name: t`Terms of service`, href: "/terms" },

View File

@@ -1,120 +0,0 @@
import Link from "next/link";
import { t } from "@lingui/core/macro";
import { useEffect, useState } from "react";
import Button from "~/components/Button";
import { PageHead } from "~/components/PageHead";
import Layout from "../home/components/Layout";
interface OSSFriend {
name: string;
description: string;
href: string;
}
interface OSSFriendsResponse {
data: OSSFriend[];
}
export default function OSSFriendsView() {
const [ossFriends, setOSSFriends] = useState<OSSFriend[]>([]);
const [isLoading, setIsLoading] = useState<boolean>(true);
const fetchOSSFriends = async (): Promise<OSSFriend[]> => {
try {
const response = await fetch("/api/oss-friends");
if (!response.ok) {
throw new Error("Failed to fetch OSS friends");
}
const { data } = (await response.json()) as OSSFriendsResponse;
return data;
} catch (error) {
console.error("Error fetching OSS friends:", error);
return [];
}
};
useEffect(() => {
async function fetchData() {
try {
const data = await fetchOSSFriends();
setOSSFriends(data);
} finally {
setIsLoading(false);
}
}
void fetchData();
}, []);
return (
<Layout>
<PageHead title={`${t`OSS Friends`} | kan.bn`} />
<div className="flex h-full w-full flex-col lg:pt-[5rem]">
<div className="w-full pb-10 pt-32">
<div className="flex flex-col items-center justify-center px-4 pb-10">
<p className="mt-4 text-center text-3xl font-bold text-light-1000 dark:text-dark-1000 lg:text-3xl">
{t`Open Source Friends`}
</p>
<p className="text:md lg:text-md mt-4 max-w-[500px] text-center text-light-950 dark:text-dark-900">
{t`Check out some of our favorite open source projects.`}
</p>
</div>
</div>
<div className="mx-auto w-full max-w-7xl px-4 pb-24">
<div className="grid grid-cols-1 gap-4 md:grid-cols-3">
{isLoading &&
Array.from({ length: 12 }).map((_, idx) => (
<div
key={`oss-friend-skeleton-${idx}`}
className="group relative h-[200px] rounded-2xl border border-light-200 bg-light-50 p-6 dark:border-dark-200 dark:bg-dark-50"
>
<div className="mb-4 flex flex-col gap-3">
<div className="h-5 w-2/3 animate-pulse rounded-sm bg-light-200 dark:bg-dark-200" />
<div className="h-3 w-full animate-pulse rounded-sm bg-light-200 dark:bg-dark-200" />
<div className="h-3 w-5/6 animate-pulse rounded-sm bg-light-200 dark:bg-dark-200" />
</div>
<div className="h-8 w-28 animate-pulse rounded-md bg-light-200 dark:bg-dark-200" />
</div>
))}
{!isLoading &&
ossFriends.map((friend, idx) => {
return (
<div
key={`oss-friend-${idx}`}
className="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"
>
<div className="mb-4 flex flex-col gap-2">
<Link
href={friend.href}
target="_blank"
rel="noopener noreferrer"
>
<h3 className="text-lg font-semibold text-light-1000 dark:text-dark-1000">
{friend.name}
</h3>
</Link>
<p className="text-sm leading-relaxed text-light-900 dark:text-dark-900">
{friend.description}
</p>
</div>
<Button
href={friend.href}
variant="secondary"
rel="noopener noreferrer"
size="sm"
>
{t`Learn more`}
</Button>
</div>
);
})}
</div>
</div>
</div>
</Layout>
);
}

View File

@@ -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>;

View File

@@ -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)