Compare commits

...

1 Commits

Author SHA1 Message Date
Henry
284629e1c8 fix: extend workspace name max character limit and truncate 2025-10-28 21:13:36 +00:00
21 changed files with 214 additions and 199 deletions

View File

@@ -537,7 +537,7 @@ checksums:
Workspace%20description%20updated/singular: 19ddb6ee9ead26982a90dee426f3ee1f Workspace%20description%20updated/singular: 19ddb6ee9ead26982a90dee426f3ee1f
Workspace%20members/singular: 1857292f9567c556c781a23bd7e10544 Workspace%20members/singular: 1857292f9567c556c781a23bd7e10544
Workspace%20name/singular: 855614bbf862fd6a9f6a3e76943f92d4 Workspace%20name/singular: 855614bbf862fd6a9f6a3e76943f92d4
Workspace%20name%20cannot%20exceed%2024%20characters/singular: c8b8f79fb83abf8329cc34c1f51fcfc9 Workspace%20name%20cannot%20exceed%2064%20characters/singular: 681f86c9ca31699fc5a3ca3790e5972c
Workspace%20name%20is%20required/singular: b8c5162dd08c4d941bc57f9d0cbee451 Workspace%20name%20is%20required/singular: b8c5162dd08c4d941bc57f9d0cbee451
Workspace%20name%20must%20be%20at%20least%203%20characters%20long/singular: e448ea97418d44b18b4c21c22b8ba779 Workspace%20name%20must%20be%20at%20least%203%20characters%20long/singular: e448ea97418d44b18b4c21c22b8ba779
Workspace%20name%20updated/singular: 3206ea410ee1ea4182b27ac0d89f92a1 Workspace%20name%20updated/singular: 3206ea410ee1ea4182b27ac0d89f92a1

View File

@@ -24,7 +24,10 @@ import { api } from "~/utils/api";
import LoadingSpinner from "./LoadingSpinner"; import LoadingSpinner from "./LoadingSpinner";
const schema = z.object({ const schema = z.object({
name: z.string().min(1, { message: t`Workspace name is required` }), name: z
.string()
.min(1, { message: t`Workspace name is required` })
.max(64, { message: t`Workspace name cannot exceed 64 characters` }),
slug: z slug: z
.string() .string()
.min(3, { .min(3, {

View File

@@ -54,7 +54,7 @@ export default function WorkspaceMenu({
> >
<Menu.Button <Menu.Button
className={twMerge( className={twMerge(
"mb-1 flex h-[34px] flex-1 items-center rounded-md p-1.5 hover:bg-light-200 dark:hover:bg-dark-200", "mb-1 flex h-[34px] min-w-0 flex-1 items-center rounded-md p-1.5 hover:bg-light-200 dark:hover:bg-dark-200",
isCollapsed && isCollapsed &&
"md:mb-1.5 md:h-9 md:w-9 md:flex-none md:justify-center md:p-0", "md:mb-1.5 md:h-9 md:w-9 md:flex-none md:justify-center md:p-0",
)} )}
@@ -67,7 +67,7 @@ export default function WorkspaceMenu({
</span> </span>
<span <span
className={twMerge( className={twMerge(
"ml-2 truncate text-sm font-bold text-neutral-900 dark:text-dark-1000", "ml-2 min-w-0 flex-1 truncate text-sm font-bold text-neutral-900 dark:text-dark-1000",
isCollapsed && "md:hidden", isCollapsed && "md:hidden",
)} )}
> >

View File

@@ -306,7 +306,7 @@ msgstr "Blogbeitrag"
msgid "Board" msgid "Board"
msgstr "Board" msgstr "Board"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Board-Analytik" msgstr "Board-Analytik"
@@ -441,7 +441,7 @@ msgstr "Code-Review"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Arbeite nahtlos mit deinem Team zusammen." msgstr "Arbeite nahtlos mit deinem Team zusammen."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -585,7 +585,7 @@ msgstr "Neue Liste erstellen"
msgid "Create template" msgid "Create template"
msgstr "Vorlage erstellen" msgstr "Vorlage erstellen"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Arbeitsbereich erstellen" msgstr "Arbeitsbereich erstellen"
@@ -619,7 +619,7 @@ msgstr "Benutzerdefinierte Domain"
msgid "Custom templates" msgid "Custom templates"
msgstr "Benutzerdefinierte Vorlagen" msgstr "Benutzerdefinierte Vorlagen"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan" msgstr "Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan"
@@ -627,7 +627,7 @@ msgstr "Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan"
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Benutzerdefinierter Workspace-Link" msgstr "Benutzerdefinierter Workspace-Link"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "Benutzerdefinierte Workspace-URL" msgstr "Benutzerdefinierte Workspace-URL"
@@ -882,7 +882,7 @@ msgstr "Fehler beim Aktualisieren der Workspace-URL"
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Fehler beim Upgrade des Abonnements" msgstr "Fehler beim Upgrade des Abonnements"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Fehler beim Upgrade auf Pro" msgstr "Fehler beim Upgrade auf Pro"
@@ -1252,7 +1252,7 @@ msgstr "Labels & Filter"
msgid "Language" msgid "Language"
msgstr "Sprache" msgstr "Sprache"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Einführungsangebot" msgstr "Einführungsangebot"
@@ -1428,7 +1428,7 @@ msgstr "Neue Vorlage"
msgid "New Ticket" msgid "New Ticket"
msgstr "Neues Ticket" msgstr "Neues Ticket"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "Neuer Workspace" msgstr "Neuer Workspace"
@@ -1576,7 +1576,7 @@ msgstr "Bitte wähle eine Datei zum Hochladen aus."
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2022,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." 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." msgstr "Dies führt zur permanenten Löschung aller mit deinem Konto verbundenen Daten."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "Diese Workspace-URL ist bereits vergeben" msgstr "Diese Workspace-URL ist bereits vergeben"
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "Diese Workspace-URL ist reserviert" msgstr "Diese Workspace-URL ist reserviert"
@@ -2093,7 +2093,7 @@ msgstr "Liste konnte nicht erstellt werden"
msgid "Unable to create template" msgid "Unable to create template"
msgstr "Vorlage konnte nicht erstellt werden" msgstr "Vorlage konnte nicht erstellt werden"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "Workspace konnte nicht erstellt werden" msgstr "Workspace konnte nicht erstellt werden"
@@ -2197,7 +2197,7 @@ msgstr "Unbegrenzte kommentare"
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Unbegrenzte listen" msgstr "Unbegrenzte listen"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Unbegrenzte Mitglieder" msgstr "Unbegrenzte Mitglieder"
@@ -2244,7 +2244,7 @@ msgstr "Upgrade"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Upgrade auf Pro" msgstr "Upgrade auf Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Upgrade auf Pro ($29/Monat)" msgstr "Upgrade auf Pro ($29/Monat)"
@@ -2257,17 +2257,17 @@ msgstr "Upgrade auf Team-Plan"
msgid "Urgent" msgid "Urgent"
msgstr "Dringend" msgstr "Dringend"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" msgid "URL can only contain letters, numbers, and hyphens"
msgstr "URL darf nur Buchstaben, Zahlen und Bindestriche enthalten" msgstr "URL darf nur Buchstaben, Zahlen und Bindestriche enthalten"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "URL darf nicht länger als 24 Zeichen sein" msgstr "URL darf nicht länger als 24 Zeichen sein"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "URL muss mindestens 3 Zeichen lang sein" msgstr "URL muss mindestens 3 Zeichen lang sein"
@@ -2358,7 +2358,7 @@ msgstr "Warum ein open source Trello entwickeln?"
msgid "Workspace" msgid "Workspace"
msgstr "Arbeitsbereich" msgstr "Arbeitsbereich"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." msgid "Workspace created successfully. You can upgrade later in settings."
msgstr "Workspace erfolgreich erstellt. Du kannst später in den Einstellungen upgraden." msgstr "Workspace erfolgreich erstellt. Du kannst später in den Einstellungen upgraden."
@@ -2388,16 +2388,17 @@ msgstr "Workspace-Beschreibung aktualisiert"
msgid "Workspace members" msgid "Workspace members"
msgstr "Workspace-mitglieder" msgstr "Workspace-mitglieder"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Name des Workspaces" msgstr "Name des Workspaces"
#: src/components/NewWorkspaceForm.tsx:30
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" msgid "Workspace name cannot exceed 64 characters"
msgstr "Der Workspace-Name darf nicht länger als 24 Zeichen sein" msgstr "Der Workspace-Name darf 64 Zeichen nicht überschreiten"
#: src/components/NewWorkspaceForm.tsx:27 #: src/components/NewWorkspaceForm.tsx:29
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "Workspace-Name ist erforderlich" msgstr "Workspace-Name ist erforderlich"
@@ -2417,7 +2418,7 @@ msgstr "Workspace-Slug aktualisiert"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "Workspace-URL" msgstr "Workspace-URL"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "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" msgid "Board"
msgstr "Board" msgstr "Board"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Board analytics" msgstr "Board analytics"
@@ -502,7 +502,7 @@ msgstr "Code Review"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Collaborate seamlessly with your team." msgstr "Collaborate seamlessly with your team."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -666,7 +666,7 @@ msgstr "Create new list"
msgid "Create template" msgid "Create template"
msgstr "Create template" msgstr "Create template"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Create workspace" msgstr "Create workspace"
@@ -708,7 +708,7 @@ msgstr "Custom templates"
#~ msgid "Custom URLs require Pro plan ($29/month)" #~ msgid "Custom URLs require Pro plan ($29/month)"
#~ msgstr "Custom URLs require Pro plan ($29/month)" #~ msgstr "Custom URLs require Pro plan ($29/month)"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Custom URLs require upgrading to a Pro plan" msgstr "Custom URLs require upgrading to a Pro plan"
@@ -716,7 +716,7 @@ msgstr "Custom URLs require upgrading to a Pro plan"
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Custom workspace link" msgstr "Custom workspace link"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "Custom workspace URL" msgstr "Custom workspace URL"
@@ -971,7 +971,7 @@ msgstr "Error updating workspace URL"
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Error upgrading subscription" msgstr "Error upgrading subscription"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Error upgrading to Pro" msgstr "Error upgrading to Pro"
@@ -1355,7 +1355,7 @@ msgstr "Labels & Filters"
msgid "Language" msgid "Language"
msgstr "Language" msgstr "Language"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Launch offer" msgstr "Launch offer"
@@ -1547,7 +1547,7 @@ msgstr "New Ticket"
#~ msgid "New Ticket, Triaging, In Progress, Awaiting Customer, Resolution, Done" #~ msgid "New Ticket, Triaging, In Progress, Awaiting Customer, Resolution, Done"
#~ msgstr "New Ticket, Triaging, In Progress, Awaiting Customer, Resolution, Done" #~ msgstr "New Ticket, Triaging, In Progress, Awaiting Customer, Resolution, Done"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "New workspace" msgstr "New workspace"
@@ -1699,7 +1699,7 @@ msgstr "Please select a file to upload."
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2165,11 +2165,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." 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." msgstr "This will result in the permanent deletion of all data associated with your account."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "This workspace URL has already been taken" msgstr "This workspace URL has already been taken"
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "This workspace URL is reserved" msgstr "This workspace URL is reserved"
@@ -2244,7 +2244,7 @@ msgstr "Unable to create list"
msgid "Unable to create template" msgid "Unable to create template"
msgstr "Unable to create template" msgstr "Unable to create template"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "Unable to create workspace" msgstr "Unable to create workspace"
@@ -2352,7 +2352,7 @@ msgstr "Unlimited comments"
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Unlimited lists" msgstr "Unlimited lists"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Unlimited members" msgstr "Unlimited members"
@@ -2403,7 +2403,7 @@ msgstr "Upgrade"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Upgrade to Pro" msgstr "Upgrade to Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Upgrade to Pro ($29/month)" msgstr "Upgrade to Pro ($29/month)"
@@ -2416,17 +2416,17 @@ msgstr "Upgrade to Team Plan"
msgid "Urgent" msgid "Urgent"
msgstr "Urgent" msgstr "Urgent"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" msgid "URL can only contain letters, numbers, and hyphens"
msgstr "URL can only contain letters, numbers, and hyphens" msgstr "URL can only contain letters, numbers, and hyphens"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "URL cannot exceed 24 characters" msgstr "URL cannot exceed 24 characters"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "URL must be at least 3 characters long" msgstr "URL must be at least 3 characters long"
@@ -2521,7 +2521,7 @@ msgstr "Why make an open source Trello?"
msgid "Workspace" msgid "Workspace"
msgstr "Workspace" msgstr "Workspace"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." msgid "Workspace created successfully. You can upgrade later in settings."
msgstr "Workspace created successfully. You can upgrade later in settings." msgstr "Workspace created successfully. You can upgrade later in settings."
@@ -2551,16 +2551,21 @@ msgstr "Workspace description updated"
msgid "Workspace members" msgid "Workspace members"
msgstr "Workspace members" msgstr "Workspace members"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Workspace name" msgstr "Workspace name"
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" #~ msgid "Workspace name cannot exceed 24 characters"
msgstr "Workspace name cannot exceed 24 characters" #~ msgstr "Workspace name cannot exceed 24 characters"
#: src/components/NewWorkspaceForm.tsx:27 #: 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
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "Workspace name is required" msgstr "Workspace name is required"
@@ -2580,7 +2585,7 @@ msgstr "Workspace slug updated"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "Workspace URL" msgstr "Workspace URL"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "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" msgid "Board"
msgstr "Tablero" msgstr "Tablero"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Análisis del tablero" msgstr "Análisis del tablero"
@@ -441,7 +441,7 @@ msgstr "Revisión de código"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Colabora sin problemas con tu equipo." msgstr "Colabora sin problemas con tu equipo."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -585,7 +585,7 @@ msgstr "Crear nueva lista"
msgid "Create template" msgid "Create template"
msgstr "Crear plantilla" msgstr "Crear plantilla"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Crear espacio de trabajo" msgstr "Crear espacio de trabajo"
@@ -619,7 +619,7 @@ msgstr "Dominio personalizado"
msgid "Custom templates" msgid "Custom templates"
msgstr "Plantillas personalizadas" msgstr "Plantillas personalizadas"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Las URLs personalizadas requieren actualizar a un plan Pro" msgstr "Las URLs personalizadas requieren actualizar a un plan Pro"
@@ -627,7 +627,7 @@ msgstr "Las URLs personalizadas requieren actualizar a un plan Pro"
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Enlace de espacio de trabajo personalizado" msgstr "Enlace de espacio de trabajo personalizado"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "URL personalizada del espacio de trabajo" msgstr "URL personalizada del espacio de trabajo"
@@ -882,7 +882,7 @@ msgstr "Error al actualizar la URL del espacio de trabajo"
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Error al actualizar la suscripción" msgstr "Error al actualizar la suscripción"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Error al actualizar a Pro" msgstr "Error al actualizar a Pro"
@@ -1252,7 +1252,7 @@ msgstr "Etiquetas y filtros"
msgid "Language" msgid "Language"
msgstr "Idioma" msgstr "Idioma"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Oferta de lanzamiento" msgstr "Oferta de lanzamiento"
@@ -1428,7 +1428,7 @@ msgstr "Nueva plantilla"
msgid "New Ticket" msgid "New Ticket"
msgstr "Nuevo ticket" msgstr "Nuevo ticket"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "Nuevo espacio de trabajo" msgstr "Nuevo espacio de trabajo"
@@ -1576,7 +1576,7 @@ msgstr "Por favor selecciona un archivo para subir."
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2022,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." 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." msgstr "Esto resultará en la eliminación permanente de todos los datos asociados con tu cuenta."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "Esta URL de espacio de trabajo ya ha sido tomada" msgstr "Esta URL de espacio de trabajo ya ha sido tomada"
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "Esta URL de espacio de trabajo está reservada" msgstr "Esta URL de espacio de trabajo está reservada"
@@ -2093,7 +2093,7 @@ msgstr "No se puede crear la lista"
msgid "Unable to create template" msgid "Unable to create template"
msgstr "No se puede crear la plantilla" msgstr "No se puede crear la plantilla"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "No se puede crear el espacio de trabajo" msgstr "No se puede crear el espacio de trabajo"
@@ -2197,7 +2197,7 @@ msgstr "Comentarios ilimitados"
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Listas ilimitadas" msgstr "Listas ilimitadas"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Miembros ilimitados" msgstr "Miembros ilimitados"
@@ -2244,7 +2244,7 @@ msgstr "Actualizar"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Actualizar a Pro" msgstr "Actualizar a Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Actualizar a Pro ($29/mes)" msgstr "Actualizar a Pro ($29/mes)"
@@ -2257,17 +2257,17 @@ msgstr "Actualizar al Plan de Equipo"
msgid "Urgent" msgid "Urgent"
msgstr "Urgente" msgstr "Urgente"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" msgid "URL can only contain letters, numbers, and hyphens"
msgstr "La URL solo puede contener letras, números y guiones" msgstr "La URL solo puede contener letras, números y guiones"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "La URL no puede exceder los 24 caracteres" msgstr "La URL no puede exceder los 24 caracteres"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "La URL debe tener al menos 3 caracteres" msgstr "La URL debe tener al menos 3 caracteres"
@@ -2358,7 +2358,7 @@ msgstr "¿Por qué crear un Trello de código abierto?"
msgid "Workspace" msgid "Workspace"
msgstr "Espacio de trabajo" msgstr "Espacio de trabajo"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." 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." msgstr "Espacio de trabajo creado con éxito. Puedes actualizar más tarde en configuración."
@@ -2388,16 +2388,17 @@ msgstr "Descripción del espacio de trabajo actualizada"
msgid "Workspace members" msgid "Workspace members"
msgstr "Miembros del espacio de trabajo" msgstr "Miembros del espacio de trabajo"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Nombre del espacio de trabajo" msgstr "Nombre del espacio de trabajo"
#: src/components/NewWorkspaceForm.tsx:30
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" msgid "Workspace name cannot exceed 64 characters"
msgstr "El nombre del espacio de trabajo no puede exceder los 24 caracteres" msgstr "El nombre del espacio de trabajo no puede exceder los 64 caracteres"
#: src/components/NewWorkspaceForm.tsx:27 #: src/components/NewWorkspaceForm.tsx:29
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "El nombre del espacio de trabajo es obligatorio" msgstr "El nombre del espacio de trabajo es obligatorio"
@@ -2417,7 +2418,7 @@ msgstr "Slug del espacio de trabajo actualizado"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "URL del espacio de trabajo" msgstr "URL del espacio de trabajo"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "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" msgid "Board"
msgstr "Tableau" msgstr "Tableau"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Analyses du tableau" msgstr "Analyses du tableau"
@@ -441,7 +441,7 @@ msgstr "Revue de code"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Collaborez en toute fluidité avec votre équipe." msgstr "Collaborez en toute fluidité avec votre équipe."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -585,7 +585,7 @@ msgstr "Créer une nouvelle liste"
msgid "Create template" msgid "Create template"
msgstr "Créer un modèle" msgstr "Créer un modèle"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Créer un espace de travail" msgstr "Créer un espace de travail"
@@ -619,7 +619,7 @@ msgstr "Domaine personnalisé"
msgid "Custom templates" msgid "Custom templates"
msgstr "Modèles personnalisés" msgstr "Modèles personnalisés"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Les URL personnalisées nécessitent une mise à niveau vers un forfait Pro" msgstr "Les URL personnalisées nécessitent une mise à niveau vers un forfait Pro"
@@ -627,7 +627,7 @@ msgstr "Les URL personnalisées nécessitent une mise à niveau vers un forfait
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Lien d'espace de travail personnalisé" msgstr "Lien d'espace de travail personnalisé"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "URL d'espace de travail personnalisée" msgstr "URL d'espace de travail personnalisée"
@@ -882,7 +882,7 @@ msgstr "Erreur lors de la mise à jour de l'URL de l'espace de travail"
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Erreur lors de la mise à niveau de l'abonnement" msgstr "Erreur lors de la mise à niveau de l'abonnement"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Erreur lors de la mise à niveau vers Pro" msgstr "Erreur lors de la mise à niveau vers Pro"
@@ -1252,7 +1252,7 @@ msgstr "Étiquettes & filtres"
msgid "Language" msgid "Language"
msgstr "Langue" msgstr "Langue"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Offre de lancement" msgstr "Offre de lancement"
@@ -1428,7 +1428,7 @@ msgstr "Nouveau modèle"
msgid "New Ticket" msgid "New Ticket"
msgstr "Nouveau ticket" msgstr "Nouveau ticket"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "Nouvel espace de travail" msgstr "Nouvel espace de travail"
@@ -1576,7 +1576,7 @@ msgstr "Veuillez sélectionner un fichier à télécharger."
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2022,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." 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." msgstr "Cela entraînera la suppression définitive de toutes les données associées à votre compte."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "Cette URL d'espace de travail est déjà prise" msgstr "Cette URL d'espace de travail est déjà prise"
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "Cette URL d'espace de travail est réservée" msgstr "Cette URL d'espace de travail est réservée"
@@ -2093,7 +2093,7 @@ msgstr "Impossible de créer une liste"
msgid "Unable to create template" msgid "Unable to create template"
msgstr "Impossible de créer le modèle" msgstr "Impossible de créer le modèle"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "Impossible de créer l'espace de travail" msgstr "Impossible de créer l'espace de travail"
@@ -2197,7 +2197,7 @@ msgstr "Commentaires illimités"
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Listes illimitées" msgstr "Listes illimitées"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Membres illimités" msgstr "Membres illimités"
@@ -2244,7 +2244,7 @@ msgstr "Mettre à niveau"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Passer à Pro" msgstr "Passer à Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Passer à Pro (29 $/mois)" msgstr "Passer à Pro (29 $/mois)"
@@ -2257,17 +2257,17 @@ msgstr "Passer au forfait d'équipe"
msgid "Urgent" msgid "Urgent"
msgstr "Urgent" msgstr "Urgent"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" 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" msgstr "L'URL ne peut contenir que des lettres, des chiffres et des traits d'union"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "L'URL ne peut pas dépasser 24 caractères" msgstr "L'URL ne peut pas dépasser 24 caractères"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "L'URL doit comporter au moins 3 caractères" msgstr "L'URL doit comporter au moins 3 caractères"
@@ -2358,7 +2358,7 @@ msgstr "Pourquoi créer un Trello open source ?"
msgid "Workspace" msgid "Workspace"
msgstr "Espace de travail" msgstr "Espace de travail"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." 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." msgstr "Espace de travail créé avec succès. Vous pourrez effectuer la mise à niveau ultérieurement dans les paramètres."
@@ -2388,16 +2388,17 @@ msgstr "Description de l'espace de travail mise à jour"
msgid "Workspace members" msgid "Workspace members"
msgstr "Membres de l'espace de travail" msgstr "Membres de l'espace de travail"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Nom de l'espace de travail" msgstr "Nom de l'espace de travail"
#: src/components/NewWorkspaceForm.tsx:30
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" msgid "Workspace name cannot exceed 64 characters"
msgstr "Le nom de l'espace de travail ne peut pas dépasser 24 caractères" msgstr "Le nom de l'espace de travail ne peut pas dépasser 64 caractères"
#: src/components/NewWorkspaceForm.tsx:27 #: src/components/NewWorkspaceForm.tsx:29
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "Le nom de l'espace de travail est requis" msgstr "Le nom de l'espace de travail est requis"
@@ -2417,7 +2418,7 @@ msgstr "Slug de l'espace de travail mis à jour"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "URL de l'espace de travail" msgstr "URL de l'espace de travail"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "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" msgid "Board"
msgstr "Bacheca" msgstr "Bacheca"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Analisi della bacheca" msgstr "Analisi della bacheca"
@@ -441,7 +441,7 @@ msgstr "Revisione del codice"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Collabora senza problemi con il tuo team." msgstr "Collabora senza problemi con il tuo team."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -585,7 +585,7 @@ msgstr "Crea nuova lista"
msgid "Create template" msgid "Create template"
msgstr "Crea template" msgstr "Crea template"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Crea spazio di lavoro" msgstr "Crea spazio di lavoro"
@@ -619,7 +619,7 @@ msgstr "Dominio personalizzato"
msgid "Custom templates" msgid "Custom templates"
msgstr "Template personalizzati" msgstr "Template personalizzati"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Gli URL personalizzati richiedono l'aggiornamento a un piano Pro" msgstr "Gli URL personalizzati richiedono l'aggiornamento a un piano Pro"
@@ -627,7 +627,7 @@ msgstr "Gli URL personalizzati richiedono l'aggiornamento a un piano Pro"
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Link personalizzato dell'area di lavoro" msgstr "Link personalizzato dell'area di lavoro"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "URL personalizzato dell'area di lavoro" msgstr "URL personalizzato dell'area di lavoro"
@@ -882,7 +882,7 @@ msgstr "Errore durante l'aggiornamento dell'URL dell'area di lavoro"
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Errore nell'aggiornamento dell'abbonamento" msgstr "Errore nell'aggiornamento dell'abbonamento"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Errore durante l'aggiornamento a Pro" msgstr "Errore durante l'aggiornamento a Pro"
@@ -1252,7 +1252,7 @@ msgstr "Etichette & Filtri"
msgid "Language" msgid "Language"
msgstr "Lingua" msgstr "Lingua"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Offerta di lancio" msgstr "Offerta di lancio"
@@ -1428,7 +1428,7 @@ msgstr "Nuovo template"
msgid "New Ticket" msgid "New Ticket"
msgstr "Nuovo ticket" msgstr "Nuovo ticket"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "Nuovo spazio di lavoro" msgstr "Nuovo spazio di lavoro"
@@ -1576,7 +1576,7 @@ msgstr "Seleziona un file da caricare."
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2022,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." 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." msgstr "Questo comporterà l'eliminazione permanente di tutti i dati associati al tuo account."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "Questo URL dello spazio di lavoro è già stato utilizzato" msgstr "Questo URL dello spazio di lavoro è già stato utilizzato"
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "Questo URL dello spazio di lavoro è riservato" msgstr "Questo URL dello spazio di lavoro è riservato"
@@ -2093,7 +2093,7 @@ msgstr "Impossibile creare la lista"
msgid "Unable to create template" msgid "Unable to create template"
msgstr "Impossibile creare il template" msgstr "Impossibile creare il template"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "Impossibile creare lo spazio di lavoro" msgstr "Impossibile creare lo spazio di lavoro"
@@ -2197,7 +2197,7 @@ msgstr "Commenti illimitati"
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Liste illimitate" msgstr "Liste illimitate"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Membri illimitati" msgstr "Membri illimitati"
@@ -2244,7 +2244,7 @@ msgstr "Aggiorna"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Passa a Pro" msgstr "Passa a Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Passa a Pro ($29/mese)" msgstr "Passa a Pro ($29/mese)"
@@ -2257,17 +2257,17 @@ msgstr "Passa al Piano Team"
msgid "Urgent" msgid "Urgent"
msgstr "Urgente" msgstr "Urgente"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" msgid "URL can only contain letters, numbers, and hyphens"
msgstr "L'URL può contenere solo lettere, numeri e trattini" msgstr "L'URL può contenere solo lettere, numeri e trattini"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "L'URL non può superare i 24 caratteri" msgstr "L'URL non può superare i 24 caratteri"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "L'URL deve contenere almeno 3 caratteri" msgstr "L'URL deve contenere almeno 3 caratteri"
@@ -2358,7 +2358,7 @@ msgstr "Perché creare un Trello open source?"
msgid "Workspace" msgid "Workspace"
msgstr "Spazio di lavoro" msgstr "Spazio di lavoro"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." 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." msgstr "Spazio di lavoro creato con successo. Puoi effettuare l'aggiornamento più tardi nelle impostazioni."
@@ -2388,16 +2388,17 @@ msgstr "Descrizione dell'area di lavoro aggiornata"
msgid "Workspace members" msgid "Workspace members"
msgstr "Membri del workspace" msgstr "Membri del workspace"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Nome dello spazio di lavoro" msgstr "Nome dello spazio di lavoro"
#: src/components/NewWorkspaceForm.tsx:30
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" msgid "Workspace name cannot exceed 64 characters"
msgstr "Il nome dello spazio di lavoro non può superare i 24 caratteri" msgstr "Il nome dello spazio di lavoro non può superare i 64 caratteri"
#: src/components/NewWorkspaceForm.tsx:27 #: src/components/NewWorkspaceForm.tsx:29
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "Il nome dello spazio di lavoro è obbligatorio" msgstr "Il nome dello spazio di lavoro è obbligatorio"
@@ -2417,7 +2418,7 @@ msgstr "Slug dell'area di lavoro aggiornato"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "URL dello spazio di lavoro" msgstr "URL dello spazio di lavoro"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "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" msgid "Board"
msgstr "Bord" msgstr "Bord"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Bordanalyses" msgstr "Bordanalyses"
@@ -441,7 +441,7 @@ msgstr "Code review"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Werk naadloos samen met je team." msgstr "Werk naadloos samen met je team."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -585,7 +585,7 @@ msgstr "Maak nieuwe lijst"
msgid "Create template" msgid "Create template"
msgstr "Sjabloon maken" msgstr "Sjabloon maken"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Werkruimte maken" msgstr "Werkruimte maken"
@@ -619,7 +619,7 @@ msgstr "Aangepast domein"
msgid "Custom templates" msgid "Custom templates"
msgstr "Aangepaste sjablonen" msgstr "Aangepaste sjablonen"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Aangepaste URL's vereisen een upgrade naar een Pro-abonnement" msgstr "Aangepaste URL's vereisen een upgrade naar een Pro-abonnement"
@@ -627,7 +627,7 @@ msgstr "Aangepaste URL's vereisen een upgrade naar een Pro-abonnement"
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Aangepaste werkruimtelink" msgstr "Aangepaste werkruimtelink"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "Aangepaste werkruimte-URL" msgstr "Aangepaste werkruimte-URL"
@@ -882,7 +882,7 @@ msgstr "Fout bij het bijwerken van werkruimte-URL"
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Fout bij het upgraden van abonnement" msgstr "Fout bij het upgraden van abonnement"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Fout bij upgraden naar Pro" msgstr "Fout bij upgraden naar Pro"
@@ -1252,7 +1252,7 @@ msgstr "Labels & filters"
msgid "Language" msgid "Language"
msgstr "Taal" msgstr "Taal"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Introductieaanbieding" msgstr "Introductieaanbieding"
@@ -1428,7 +1428,7 @@ msgstr "Nieuw sjabloon"
msgid "New Ticket" msgid "New Ticket"
msgstr "Nieuw ticket" msgstr "Nieuw ticket"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "Nieuwe werkruimte" msgstr "Nieuwe werkruimte"
@@ -1576,7 +1576,7 @@ msgstr "Selecteer een bestand om te uploaden."
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2022,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." 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." msgstr "Dit zal resulteren in het permanent verwijderen van alle gegevens die aan je account zijn gekoppeld."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "Deze werkruimte-URL is al in gebruik" msgstr "Deze werkruimte-URL is al in gebruik"
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "Deze werkruimte-URL is gereserveerd" msgstr "Deze werkruimte-URL is gereserveerd"
@@ -2093,7 +2093,7 @@ msgstr "Kan geen lijst maken"
msgid "Unable to create template" msgid "Unable to create template"
msgstr "Kan sjabloon niet maken" msgstr "Kan sjabloon niet maken"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "Kan werkruimte niet aanmaken" msgstr "Kan werkruimte niet aanmaken"
@@ -2197,7 +2197,7 @@ msgstr "Onbeperkt aantal opmerkingen"
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Onbeperkt aantal lijsten" msgstr "Onbeperkt aantal lijsten"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Onbeperkt aantal leden" msgstr "Onbeperkt aantal leden"
@@ -2244,7 +2244,7 @@ msgstr "Upgraden"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Upgraden naar Pro" msgstr "Upgraden naar Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Upgrade naar Pro ($29/maand)" msgstr "Upgrade naar Pro ($29/maand)"
@@ -2257,17 +2257,17 @@ msgstr "Upgraden naar teamplan"
msgid "Urgent" msgid "Urgent"
msgstr "Urgent" msgstr "Urgent"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" msgid "URL can only contain letters, numbers, and hyphens"
msgstr "URL kan alleen letters, cijfers en koppeltekens bevatten" msgstr "URL kan alleen letters, cijfers en koppeltekens bevatten"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "URL mag niet langer zijn dan 24 tekens" msgstr "URL mag niet langer zijn dan 24 tekens"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "URL moet minimaal 3 tekens lang zijn" msgstr "URL moet minimaal 3 tekens lang zijn"
@@ -2358,7 +2358,7 @@ msgstr "Waarom een open source Trello maken?"
msgid "Workspace" msgid "Workspace"
msgstr "Werkruimte" msgstr "Werkruimte"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." msgid "Workspace created successfully. You can upgrade later in settings."
msgstr "Werkruimte succesvol aangemaakt. Je kunt later upgraden in de instellingen." msgstr "Werkruimte succesvol aangemaakt. Je kunt later upgraden in de instellingen."
@@ -2388,16 +2388,17 @@ msgstr "Werkruimtebeschrijving bijgewerkt"
msgid "Workspace members" msgid "Workspace members"
msgstr "Werkruimteleden" msgstr "Werkruimteleden"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Naam werkruimte" msgstr "Naam werkruimte"
#: src/components/NewWorkspaceForm.tsx:30
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" msgid "Workspace name cannot exceed 64 characters"
msgstr "Werkruimtenaam mag niet langer zijn dan 24 tekens" msgstr "Werkruimtenaam mag niet langer zijn dan 64 tekens"
#: src/components/NewWorkspaceForm.tsx:27 #: src/components/NewWorkspaceForm.tsx:29
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "Naam van werkruimte is verplicht" msgstr "Naam van werkruimte is verplicht"
@@ -2417,7 +2418,7 @@ msgstr "Werkruimte-slug bijgewerkt"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "Werkruimte URL" msgstr "Werkruimte URL"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "werkruimte-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" msgid "Board"
msgstr "Tablica" msgstr "Tablica"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Analiza tablicy" msgstr "Analiza tablicy"
@@ -446,7 +446,7 @@ msgstr "Przegląd kodu"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Współpracuj płynnie ze swoim zespołem." msgstr "Współpracuj płynnie ze swoim zespołem."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -590,7 +590,7 @@ msgstr "Utwórz nową listę"
msgid "Create template" msgid "Create template"
msgstr "Utwórz szablon" msgstr "Utwórz szablon"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Utwórz przestrzeń roboczą" msgstr "Utwórz przestrzeń roboczą"
@@ -624,7 +624,7 @@ msgstr "Niestandardowa domena"
msgid "Custom templates" msgid "Custom templates"
msgstr "Niestandardowe szablony" msgstr "Niestandardowe szablony"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Niestandardowe adresy URL wymagają przejścia na plan Pro" msgstr "Niestandardowe adresy URL wymagają przejścia na plan Pro"
@@ -632,7 +632,7 @@ msgstr "Niestandardowe adresy URL wymagają przejścia na plan Pro"
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Niestandardowy link do przestrzeni roboczej" msgstr "Niestandardowy link do przestrzeni roboczej"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "Niestandardowy adres URL przestrzeni roboczej" msgstr "Niestandardowy adres URL przestrzeni roboczej"
@@ -887,7 +887,7 @@ msgstr "Błąd podczas aktualizacji adresu URL przestrzeni roboczej"
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Błąd podczas aktualizacji subskrypcji" msgstr "Błąd podczas aktualizacji subskrypcji"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Błąd podczas aktualizacji do wersji Pro" msgstr "Błąd podczas aktualizacji do wersji Pro"
@@ -1257,7 +1257,7 @@ msgstr "Etykiety i Filtry"
msgid "Language" msgid "Language"
msgstr "Język" msgstr "Język"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Oferta startowa" msgstr "Oferta startowa"
@@ -1433,7 +1433,7 @@ msgstr "Nowy szablon"
msgid "New Ticket" msgid "New Ticket"
msgstr "Nowe zgłoszenie" msgstr "Nowe zgłoszenie"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "Nowa przestrzeń robocza" msgstr "Nowa przestrzeń robocza"
@@ -1581,7 +1581,7 @@ msgstr "Proszę wybrać plik do przesłania."
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2027,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." 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." msgstr "Spowoduje to trwałe usunięcie wszystkich danych powiązanych z Twoim kontem."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "Ten adres URL obszaru roboczego jest już zajęty" msgstr "Ten adres URL obszaru roboczego jest już zajęty"
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "Ten adres URL obszaru roboczego jest zarezerwowany" msgstr "Ten adres URL obszaru roboczego jest zarezerwowany"
@@ -2098,7 +2098,7 @@ msgstr "Nie można utworzyć listy"
msgid "Unable to create template" msgid "Unable to create template"
msgstr "Nie można utworzyć szablonu" msgstr "Nie można utworzyć szablonu"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "Nie można utworzyć przestrzeni roboczej" msgstr "Nie można utworzyć przestrzeni roboczej"
@@ -2202,7 +2202,7 @@ msgstr "Nieograniczona liczba komentarzy"
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Nieograniczona liczba list" msgstr "Nieograniczona liczba list"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Nieograniczona liczba członków" msgstr "Nieograniczona liczba członków"
@@ -2249,7 +2249,7 @@ msgstr "Ulepsz"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Ulepsz do planu Pro" msgstr "Ulepsz do planu Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Ulepsz do planu Pro (29 USD/miesiąc)" msgstr "Ulepsz do planu Pro (29 USD/miesiąc)"
@@ -2262,17 +2262,17 @@ msgstr "Ulepsz do planu zespołowego"
msgid "Urgent" msgid "Urgent"
msgstr "Pilne" msgstr "Pilne"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" msgid "URL can only contain letters, numbers, and hyphens"
msgstr "Adres URL może zawierać tylko litery, cyfry i myślniki" msgstr "Adres URL może zawierać tylko litery, cyfry i myślniki"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "Adres URL nie może przekraczać 24 znaków" msgstr "Adres URL nie może przekraczać 24 znaków"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "Adres URL musi mieć co najmniej 3 znaki" msgstr "Adres URL musi mieć co najmniej 3 znaki"
@@ -2363,7 +2363,7 @@ msgstr "Dlaczego próbujecie stworzyć Trello w wersji otwartoźródłowej?"
msgid "Workspace" msgid "Workspace"
msgstr "Obszar roboczy" msgstr "Obszar roboczy"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." 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." msgstr "Obszar roboczy został pomyślnie utworzony. Możesz go ulepszyć później w ustawieniach."
@@ -2393,16 +2393,17 @@ msgstr "Opis przestrzeni roboczej został zaktualizowany"
msgid "Workspace members" msgid "Workspace members"
msgstr "Członkowie przestrzeni roboczej" msgstr "Członkowie przestrzeni roboczej"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Nazwa przestrzeni roboczej" msgstr "Nazwa przestrzeni roboczej"
#: src/components/NewWorkspaceForm.tsx:30
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" msgid "Workspace name cannot exceed 64 characters"
msgstr "Nazwa przestrzeni roboczej nie może przekraczać 24 znaków" msgstr "Nazwa przestrzeni roboczej nie może przekraczać 64 znaków"
#: src/components/NewWorkspaceForm.tsx:27 #: src/components/NewWorkspaceForm.tsx:29
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "Nazwa przestrzeni roboczej jest wymagana" msgstr "Nazwa przestrzeni roboczej jest wymagana"
@@ -2422,7 +2423,7 @@ msgstr "Slug przestrzeni roboczej został zaktualizowany"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "URL przestrzeni roboczej" msgstr "URL przestrzeni roboczej"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "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" msgid "Board"
msgstr "Доска" msgstr "Доска"
#: src/components/NewWorkspaceForm.tsx:346 #: src/components/NewWorkspaceForm.tsx:349
#: src/views/settings/components/UpgradeToProConfirmation.tsx:81 #: src/views/settings/components/UpgradeToProConfirmation.tsx:81
msgid "Board analytics" msgid "Board analytics"
msgstr "Аналитика доски" msgstr "Аналитика доски"
@@ -441,7 +441,7 @@ msgstr "Код-ревью"
msgid "Collaborate seamlessly with your team." msgid "Collaborate seamlessly with your team."
msgstr "Сотрудничайте с вашей командой без препятствий." msgstr "Сотрудничайте с вашей командой без препятствий."
#: src/components/NewWorkspaceForm.tsx:349 #: src/components/NewWorkspaceForm.tsx:352
#: src/views/home/components/Features.tsx:67 #: src/views/home/components/Features.tsx:67
#: src/views/settings/components/UpgradeToProConfirmation.tsx:84 #: src/views/settings/components/UpgradeToProConfirmation.tsx:84
msgid "Coming soon" msgid "Coming soon"
@@ -585,7 +585,7 @@ msgstr "Создать новый список"
msgid "Create template" msgid "Create template"
msgstr "Создать шаблон" msgstr "Создать шаблон"
#: src/components/NewWorkspaceForm.tsx:384 #: src/components/NewWorkspaceForm.tsx:387
#: src/components/WorkspaceMenu.tsx:149 #: src/components/WorkspaceMenu.tsx:149
msgid "Create workspace" msgid "Create workspace"
msgstr "Создать рабочее пространство" msgstr "Создать рабочее пространство"
@@ -619,7 +619,7 @@ msgstr "Пользовательский домен"
msgid "Custom templates" msgid "Custom templates"
msgstr "Пользовательские шаблоны" msgstr "Пользовательские шаблоны"
#: src/components/NewWorkspaceForm.tsx:315 #: src/components/NewWorkspaceForm.tsx:318
msgid "Custom URLs require upgrading to a Pro plan" msgid "Custom URLs require upgrading to a Pro plan"
msgstr "Для пользовательских URL требуется обновление до Pro-плана" msgstr "Для пользовательских URL требуется обновление до Pro-плана"
@@ -627,7 +627,7 @@ msgstr "Для пользовательских URL требуется обно
msgid "Custom workspace link" msgid "Custom workspace link"
msgstr "Пользовательская ссылка рабочего пространства" msgstr "Пользовательская ссылка рабочего пространства"
#: src/components/NewWorkspaceForm.tsx:339 #: src/components/NewWorkspaceForm.tsx:342
#: src/views/settings/components/UpgradeToProConfirmation.tsx:74 #: src/views/settings/components/UpgradeToProConfirmation.tsx:74
msgid "Custom workspace URL" msgid "Custom workspace URL"
msgstr "Пользовательский URL рабочего пространства" msgstr "Пользовательский URL рабочего пространства"
@@ -882,7 +882,7 @@ msgstr "Ошибка при обновлении URL рабочей област
msgid "Error upgrading subscription" msgid "Error upgrading subscription"
msgstr "Ошибка при обновлении подписки" msgstr "Ошибка при обновлении подписки"
#: src/components/NewWorkspaceForm.tsx:142 #: src/components/NewWorkspaceForm.tsx:145
msgid "Error upgrading to Pro" msgid "Error upgrading to Pro"
msgstr "Ошибка при обновлении до Pro" msgstr "Ошибка при обновлении до Pro"
@@ -1252,7 +1252,7 @@ msgstr "Метки и фильтры"
msgid "Language" msgid "Language"
msgstr "Язык" msgstr "Язык"
#: src/components/NewWorkspaceForm.tsx:332 #: src/components/NewWorkspaceForm.tsx:335
#: src/views/settings/components/UpgradeToProConfirmation.tsx:67 #: src/views/settings/components/UpgradeToProConfirmation.tsx:67
msgid "Launch offer" msgid "Launch offer"
msgstr "Стартовое предложение" msgstr "Стартовое предложение"
@@ -1428,7 +1428,7 @@ msgstr "Новый шаблон"
msgid "New Ticket" msgid "New Ticket"
msgstr "Новый тикет" msgstr "Новый тикет"
#: src/components/NewWorkspaceForm.tsx:240 #: src/components/NewWorkspaceForm.tsx:243
msgid "New workspace" msgid "New workspace"
msgstr "Новое рабочее пространство" msgstr "Новое рабочее пространство"
@@ -1576,7 +1576,7 @@ msgstr "Пожалуйста, выберите файл для загрузки.
#: src/components/DeleteLabelConfirmation.tsx:26 #: src/components/DeleteLabelConfirmation.tsx:26
#: src/components/FeedbackModal.tsx:41 #: src/components/FeedbackModal.tsx:41
#: src/components/NewWorkspaceForm.tsx:155 #: src/components/NewWorkspaceForm.tsx:158
#: src/views/board/components/NewCardForm.tsx:176 #: src/views/board/components/NewCardForm.tsx:176
#: src/views/board/components/NewListForm.tsx:78 #: src/views/board/components/NewListForm.tsx:78
#: src/views/board/components/NewTemplateForm.tsx:61 #: src/views/board/components/NewTemplateForm.tsx:61
@@ -2022,11 +2022,11 @@ msgstr "Это приведет к безвозвратному удалению
msgid "This will result in the permanent deletion of all data associated with your account." msgid "This will result in the permanent deletion of all data associated with your account."
msgstr "Это приведет к безвозвратному удалению всех данных, связанных с вашей учетной записью." msgstr "Это приведет к безвозвратному удалению всех данных, связанных с вашей учетной записью."
#: src/components/NewWorkspaceForm.tsx:284 #: src/components/NewWorkspaceForm.tsx:287
msgid "This workspace URL has already been taken" msgid "This workspace URL has already been taken"
msgstr "Этот URL рабочего пространства уже занят." msgstr "Этот URL рабочего пространства уже занят."
#: src/components/NewWorkspaceForm.tsx:286 #: src/components/NewWorkspaceForm.tsx:289
msgid "This workspace URL is reserved" msgid "This workspace URL is reserved"
msgstr "Этот URL рабочего пространства зарезервирован." msgstr "Этот URL рабочего пространства зарезервирован."
@@ -2093,7 +2093,7 @@ msgstr "Не удалось создать список."
msgid "Unable to create template" msgid "Unable to create template"
msgstr "Не удалось создать шаблон" msgstr "Не удалось создать шаблон"
#: src/components/NewWorkspaceForm.tsx:154 #: src/components/NewWorkspaceForm.tsx:157
msgid "Unable to create workspace" msgid "Unable to create workspace"
msgstr "Не удалось создать рабочее пространство." msgstr "Не удалось создать рабочее пространство."
@@ -2197,7 +2197,7 @@ msgstr "Неограниченное количество комментарие
msgid "Unlimited lists" msgid "Unlimited lists"
msgstr "Неограниченное количество списков" msgstr "Неограниченное количество списков"
#: src/components/NewWorkspaceForm.tsx:329 #: src/components/NewWorkspaceForm.tsx:332
#: src/views/settings/components/UpgradeToProConfirmation.tsx:64 #: src/views/settings/components/UpgradeToProConfirmation.tsx:64
msgid "Unlimited members" msgid "Unlimited members"
msgstr "Неограниченное количество участников" msgstr "Неограниченное количество участников"
@@ -2244,7 +2244,7 @@ msgstr "Обновить"
msgid "Upgrade to Pro" msgid "Upgrade to Pro"
msgstr "Обновить до Pro" msgstr "Обновить до Pro"
#: src/components/NewWorkspaceForm.tsx:369 #: src/components/NewWorkspaceForm.tsx:372
msgid "Upgrade to Pro ($29/month)" msgid "Upgrade to Pro ($29/month)"
msgstr "Обновить до Pro ($29/месяц)" msgstr "Обновить до Pro ($29/месяц)"
@@ -2257,17 +2257,17 @@ msgstr "Обновить до командного плана"
msgid "Urgent" msgid "Urgent"
msgstr "Срочно" msgstr "Срочно"
#: src/components/NewWorkspaceForm.tsx:35 #: src/components/NewWorkspaceForm.tsx:38
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:36
msgid "URL can only contain letters, numbers, and hyphens" msgid "URL can only contain letters, numbers, and hyphens"
msgstr "URL может содержать только буквы, цифры и дефисы" msgstr "URL может содержать только буквы, цифры и дефисы"
#: src/components/NewWorkspaceForm.tsx:33 #: src/components/NewWorkspaceForm.tsx:36
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:34
msgid "URL cannot exceed 24 characters" msgid "URL cannot exceed 24 characters"
msgstr "URL не может превышать 24 символа" msgstr "URL не может превышать 24 символа"
#: src/components/NewWorkspaceForm.tsx:31 #: src/components/NewWorkspaceForm.tsx:34
#: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32 #: src/views/settings/components/UpdateWorkspaceUrlForm.tsx:32
msgid "URL must be at least 3 characters long" msgid "URL must be at least 3 characters long"
msgstr "URL должен содержать не менее 3 символов" msgstr "URL должен содержать не менее 3 символов"
@@ -2358,7 +2358,7 @@ msgstr "Зачем создавать Trello с открытым исходны
msgid "Workspace" msgid "Workspace"
msgstr "Рабочее пространство" msgstr "Рабочее пространство"
#: src/components/NewWorkspaceForm.tsx:143 #: src/components/NewWorkspaceForm.tsx:146
msgid "Workspace created successfully. You can upgrade later in settings." msgid "Workspace created successfully. You can upgrade later in settings."
msgstr "Рабочее пространство успешно создано. Вы можете обновить его позже в настройках." msgstr "Рабочее пространство успешно создано. Вы можете обновить его позже в настройках."
@@ -2388,16 +2388,17 @@ msgstr "Описание рабочего пространства обновл
msgid "Workspace members" msgid "Workspace members"
msgstr "Участники рабочего пространства" msgstr "Участники рабочего пространства"
#: src/components/NewWorkspaceForm.tsx:259 #: src/components/NewWorkspaceForm.tsx:262
#: src/views/settings/WorkspaceSettings.tsx:58 #: src/views/settings/WorkspaceSettings.tsx:58
msgid "Workspace name" msgid "Workspace name"
msgstr "Название рабочего пространства" msgstr "Название рабочего пространства"
#: src/components/NewWorkspaceForm.tsx:30
#: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15 #: src/views/settings/components/UpdateWorkspaceNameForm.tsx:15
msgid "Workspace name cannot exceed 24 characters" msgid "Workspace name cannot exceed 64 characters"
msgstr "Название рабочего пространства не может превышать 24 символа" msgstr "Название рабочего пространства не может превышать 64 символа"
#: src/components/NewWorkspaceForm.tsx:27 #: src/components/NewWorkspaceForm.tsx:29
msgid "Workspace name is required" msgid "Workspace name is required"
msgstr "Название рабочего пространства обязательно" msgstr "Название рабочего пространства обязательно"
@@ -2417,7 +2418,7 @@ msgstr "Slug рабочего пространства обновлен"
msgid "Workspace URL" msgid "Workspace URL"
msgstr "URL рабочего пространства" msgstr "URL рабочего пространства"
#: src/components/NewWorkspaceForm.tsx:273 #: src/components/NewWorkspaceForm.tsx:276
msgid "workspace-url" msgid "workspace-url"
msgstr "workspace-url" msgstr "workspace-url"

File diff suppressed because one or more lines are too long

View File

@@ -12,7 +12,7 @@ const schema = z.object({
name: z name: z
.string() .string()
.min(3, { message: t`Workspace name must be at least 3 characters long` }) .min(3, { message: t`Workspace name must be at least 3 characters long` })
.max(24, { message: t`Workspace name cannot exceed 24 characters` }), .max(64, { message: t`Workspace name cannot exceed 64 characters` }),
}); });
type FormValues = z.infer<typeof schema>; type FormValues = z.infer<typeof schema>;

View File

@@ -139,7 +139,7 @@ export const workspaceRouter = createTRPCRouter({
}) })
.input( .input(
z.object({ z.object({
name: z.string().min(1), name: z.string().min(1).max(64),
slug: z slug: z
.string() .string()
.min(3) .min(3)
@@ -222,7 +222,7 @@ export const workspaceRouter = createTRPCRouter({
.input( .input(
z.object({ z.object({
workspacePublicId: z.string().min(12), workspacePublicId: z.string().min(12),
name: z.string().min(3).max(24).optional(), name: z.string().min(3).max(64).optional(),
slug: z slug: z
.string() .string()
.min(3) .min(3)