Compare commits
5 Commits
fix/create
...
refactor/w
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7367379a48 | ||
|
|
b0ac3e11de | ||
|
|
bba9a94e45 | ||
|
|
e36eb64c59 | ||
|
|
201fe05493 |
@@ -207,7 +207,7 @@ export function LabelForm({
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-12 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
{!isEdit && (
|
||||
<Toggle
|
||||
label={t`Create another`}
|
||||
|
||||
@@ -1,21 +1,14 @@
|
||||
import { zodResolver } from "@hookform/resolvers/zod";
|
||||
import { t } from "@lingui/core/macro";
|
||||
import { env } from "next-runtime-env";
|
||||
import { useEffect, useState } from "react";
|
||||
import { useEffect } from "react";
|
||||
import { useForm } from "react-hook-form";
|
||||
import {
|
||||
HiBolt,
|
||||
HiCheck,
|
||||
HiCheckBadge,
|
||||
HiInformationCircle,
|
||||
HiXMark,
|
||||
} from "react-icons/hi2";
|
||||
import { HiCheck, HiXMark } from "react-icons/hi2";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
import { z } from "zod";
|
||||
|
||||
import Button from "~/components/Button";
|
||||
import Input from "~/components/Input";
|
||||
import Toggle from "~/components/Toggle";
|
||||
import { useDebounce } from "~/hooks/useDebounce";
|
||||
import { useModal } from "~/providers/modal";
|
||||
import { usePopup } from "~/providers/popup";
|
||||
@@ -54,7 +47,6 @@ export function NewWorkspaceForm() {
|
||||
watch,
|
||||
trigger,
|
||||
clearErrors,
|
||||
setValue,
|
||||
} = useForm<FormValues>({
|
||||
resolver: zodResolver(schema),
|
||||
defaultValues: {
|
||||
@@ -67,16 +59,10 @@ export function NewWorkspaceForm() {
|
||||
|
||||
const hasAvailableWorkspaces = availableWorkspaces.length > 0;
|
||||
|
||||
const isCloudEnv = env("NEXT_PUBLIC_KAN_ENV") === "cloud";
|
||||
|
||||
const slug = watch("slug");
|
||||
const [debouncedSlug] = useDebounce(slug, 500);
|
||||
const isTyping = slug !== debouncedSlug;
|
||||
|
||||
// Pro toggle state management
|
||||
const [isProToggleEnabled, setIsProToggleEnabled] = useState(false);
|
||||
const [lastAvailableSlug, setLastAvailableSlug] = useState<string>("");
|
||||
|
||||
// Validate slug only after debounce
|
||||
useEffect(() => {
|
||||
if (isTyping) {
|
||||
@@ -101,7 +87,7 @@ export function NewWorkspaceForm() {
|
||||
const isWorkspaceSlugAvailable = checkWorkspaceSlugAvailability.data;
|
||||
|
||||
const createWorkspace = api.workspace.create.useMutation({
|
||||
onSuccess: async (values, variables) => {
|
||||
onSuccess: (values) => {
|
||||
if (values.publicId && values.name) {
|
||||
void utils.workspace.all.invalidate();
|
||||
switchWorkspace({
|
||||
@@ -114,42 +100,6 @@ export function NewWorkspaceForm() {
|
||||
weekStartDay: 1,
|
||||
});
|
||||
|
||||
// If in cloud and Pro toggle is enabled, create checkout session for pro
|
||||
if (env("NEXT_PUBLIC_KAN_ENV") === "cloud" && isProToggleEnabled) {
|
||||
try {
|
||||
const response = await fetch(
|
||||
"/api/stripe/create_checkout_session",
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify({
|
||||
slug: slug || undefined,
|
||||
workspacePublicId: values.publicId,
|
||||
cancelUrl: window.location.pathname + window.location.search,
|
||||
successUrl: "/boards",
|
||||
}),
|
||||
},
|
||||
);
|
||||
|
||||
const data = await response.json();
|
||||
const url = (data as { url: string }).url;
|
||||
|
||||
if (url) {
|
||||
window.location.href = url;
|
||||
return; // Don't close modal if redirecting to checkout
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error creating checkout session:", error);
|
||||
showPopup({
|
||||
header: t`Error upgrading to Pro`,
|
||||
message: t`Workspace created successfully. You can upgrade later in settings.`,
|
||||
icon: "warning",
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
closeModal();
|
||||
}
|
||||
},
|
||||
@@ -168,57 +118,8 @@ export function NewWorkspaceForm() {
|
||||
if (nameElement) nameElement.focus();
|
||||
}, []);
|
||||
|
||||
const [shouldShowBenefits, setShouldShowBenefits] = useState(false);
|
||||
|
||||
const isValidSlug = slug && slug.length >= 3 && !errors.slug;
|
||||
|
||||
useEffect(() => {
|
||||
if (
|
||||
isCloudEnv &&
|
||||
!checkWorkspaceSlugAvailability.isPending &&
|
||||
isValidSlug
|
||||
) {
|
||||
const isAvailable = isWorkspaceSlugAvailable?.isAvailable === true;
|
||||
setShouldShowBenefits(isAvailable);
|
||||
|
||||
// Automatically enable Pro toggle when slug is available
|
||||
if (isAvailable) {
|
||||
setIsProToggleEnabled(true);
|
||||
setLastAvailableSlug(slug);
|
||||
}
|
||||
}
|
||||
}, [
|
||||
isValidSlug,
|
||||
isWorkspaceSlugAvailable?.isAvailable,
|
||||
checkWorkspaceSlugAvailability.isPending,
|
||||
slug,
|
||||
isCloudEnv,
|
||||
]);
|
||||
|
||||
// Reset benefits when slug becomes invalid
|
||||
useEffect(() => {
|
||||
if (!isValidSlug) {
|
||||
setShouldShowBenefits(false);
|
||||
}
|
||||
}, [isValidSlug]);
|
||||
|
||||
// Handle Pro toggle changes
|
||||
const handleProToggleChange = () => {
|
||||
if (isProToggleEnabled) {
|
||||
// Turning off: clear the slug and disable Pro
|
||||
setValue("slug", "");
|
||||
setIsProToggleEnabled(false);
|
||||
} else {
|
||||
// Turning on: restore the last available slug if we have one
|
||||
if (lastAvailableSlug) {
|
||||
setValue("slug", lastAvailableSlug);
|
||||
}
|
||||
setIsProToggleEnabled(true);
|
||||
}
|
||||
};
|
||||
|
||||
const showProBenefits = isProToggleEnabled;
|
||||
|
||||
const onSubmit = (values: FormValues) => {
|
||||
// Don't submit if slug is provided but not available
|
||||
if (values.slug && isWorkspaceSlugAvailable?.isAvailable === false) {
|
||||
@@ -227,7 +128,7 @@ export function NewWorkspaceForm() {
|
||||
|
||||
createWorkspace.mutate({
|
||||
name: values.name,
|
||||
slug: !isCloudEnv && values.slug ? values.slug : undefined,
|
||||
slug: values.slug,
|
||||
});
|
||||
};
|
||||
|
||||
@@ -290,11 +191,7 @@ export function NewWorkspaceForm() {
|
||||
? t`This workspace URL is reserved`
|
||||
: undefined)
|
||||
}
|
||||
prefix={
|
||||
env("NEXT_PUBLIC_KAN_ENV") === "cloud"
|
||||
? "kan.bn/"
|
||||
: `${env("NEXT_PUBLIC_BASE_URL")}/`
|
||||
}
|
||||
prefix={`${env("NEXT_PUBLIC_BASE_URL")}/`}
|
||||
iconRight={
|
||||
slug && slug.length >= 3 && !errors.slug ? (
|
||||
isWorkspaceSlugAvailable?.isAvailable ? (
|
||||
@@ -311,68 +208,9 @@ export function NewWorkspaceForm() {
|
||||
}
|
||||
}}
|
||||
/>
|
||||
|
||||
{slug && slug.length >= 3 && shouldShowBenefits && (
|
||||
<div className="mt-2 flex items-center gap-1">
|
||||
<HiInformationCircle className="h-4 w-4 text-dark-900" />
|
||||
<p className="text-xs text-gray-500 dark:text-dark-900">
|
||||
{t`Custom URLs require upgrading to a Pro plan`}
|
||||
</p>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{showProBenefits && (
|
||||
<div className="mt-6">
|
||||
<div className="rounded-md bg-light-100 p-3 text-xs text-light-900 dark:bg-dark-200 dark:text-dark-900">
|
||||
<div className="space-y-3">
|
||||
<div className="flex items-center space-x-3">
|
||||
<HiCheckBadge className="h-[18px] w-[18px] flex-shrink-0 text-light-1000 dark:text-dark-950" />
|
||||
<div className="flex items-center space-x-2">
|
||||
<span className="text-xs text-neutral-900 dark:text-dark-1000">
|
||||
{t`Unlimited members`}
|
||||
</span>
|
||||
<span className="inline-flex items-center rounded-full bg-emerald-500/10 px-2 py-0.5 text-[10px] font-medium text-emerald-600 ring-1 ring-inset ring-emerald-500/20 dark:text-emerald-400 sm:text-[10px]">
|
||||
{t`Launch offer`}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex items-center space-x-3">
|
||||
<HiCheckBadge className="h-[18px] w-[18px] flex-shrink-0 text-light-1000 dark:text-dark-950" />
|
||||
<span className="text-xs text-neutral-900 dark:text-dark-1000">
|
||||
{t`Custom workspace URL`}
|
||||
</span>
|
||||
</div>
|
||||
<div className="flex items-center space-x-3">
|
||||
<HiCheckBadge className="h-[18px] w-[18px] flex-shrink-0 text-light-1000 dark:text-dark-950" />
|
||||
<div className="flex items-center space-x-2">
|
||||
<span className="text-xs text-neutral-900 dark:text-dark-1000">
|
||||
{t`Board analytics`}
|
||||
</span>
|
||||
<span className="inline-flex items-center rounded-full bg-gray-500/10 px-2 py-0.5 text-[10px] font-medium text-gray-600 ring-1 ring-inset ring-gray-500/20 dark:text-gray-400 sm:text-[10px]">
|
||||
{t`Coming soon`}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
<div
|
||||
className={twMerge(
|
||||
"mt-6 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600",
|
||||
!showProBenefits && "mt-12",
|
||||
)}
|
||||
>
|
||||
{/* Pro Toggle - only show in cloud environment */}
|
||||
{isCloudEnv && (
|
||||
<Toggle
|
||||
isChecked={isProToggleEnabled}
|
||||
onChange={handleProToggleChange}
|
||||
label={t`Upgrade to Pro ($29/month)`}
|
||||
/>
|
||||
)}
|
||||
<div className="mt-6 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div>
|
||||
<Button
|
||||
type="submit"
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} nicht gefunden"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es später erneut."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Jährlich",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Jährlich"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "Wartet auf Kunden"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Zurück",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Zurück"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Ideal für kleine und wachsende Teams, die zusammenarbeiten müssen"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Ideal für kleine Teams, die gemeinsam arbeiten und schneller vorankommen möchten.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Ideal für kleine Teams, die gemeinsam arbeiten und schneller vorankommen möchten."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Board-Analyse"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Abbrechen"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Checklisten"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Tarif wählen",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Tarif wählen"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Demnächst verfügbar"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Content-Erstellung"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Weiter",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Weiter"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Neue Liste erstellen"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Workspace erstellen"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "Benutzerdefinierte URLs erfordern ein Upgrade auf einen Pro-Plan"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Benutzerdefinierter Benutzername"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Benutzerdefinierte Benutzernamen erfordern ein Upgrade auf einen Pro-Tarif",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "Benutzerdefinierte Benutzernamen erfordern ein Upgrade auf einen Pro-Tarif"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "Benutzerdefinierte Workspace-URL"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Ende der Liste"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Technik",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Technik"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Fehler beim Upgrade des Abonnements"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Fehler beim Upgrade auf Pro"
|
||||
"translation": "Fehler beim Upgrade auf Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Legen Sie los, indem Sie eine neue Liste erstellen"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Zu Vorlagen gehen"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Gut geeignet für Einsteiger, die nur die wichtigsten Funktionen benötigen.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Gut geeignet für Einsteiger, die nur die wichtigsten Funktionen benötigen."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Launch-Angebot"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "hat Checklistenelement <0>{0}</0> als unvollständig markiert"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Neue Liste"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Neuer Workspace"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Keine Listen"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Es wurden noch keine Listen erstellt"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Persönliches Projekt"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Wählen Sie einen Tarif, um loszulegen. Alle kostenpflichtigen Tarife beinhalten eine 14-tägige kostenlose Testphase.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Wählen Sie einen Tarif, um loszulegen. Alle kostenpflichtigen Tarife beinhalten eine 14-tägige kostenlose Testphase."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Kundensupport."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Priorisierter E-Mail-Support"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "hat das Fälligkeitsdatum festgelegt"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Richten Sie Ihren Workspace ein",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Richten Sie Ihren Workspace ein"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Anmelden"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Abmelden",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Abmelden"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Softwareentwicklung"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Solo",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Solo"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "14-tägige kostenlose Testversion starten"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Optimieren Sie Ihren Workspace für nur 29 $/Monat. Das erhalten Sie:"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "System"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Team",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Team"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Vorlage"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "Die Berechtigungen dieses Mitglieds wurden auf die Standardwerte seiner Rolle zurückgesetzt."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Diese URL ist bereits vergeben",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Diese URL ist bereits vergeben"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Diese URL ist reserviert",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Diese URL ist reserviert"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Diese Workspace-URL ist bereits vergeben"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Diese Workspace-URL ist reserviert"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "Workspace konnte nicht erstellt werden"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "Feedback konnte nicht gesendet werden"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Checkout kann nicht gestartet werden",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "Checkout kann nicht gestartet werden"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "Karte konnte nicht aktualisiert werden"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "Liste konnte nicht aktualisiert werden"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Unbegrenzte Mitglieder"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Unbegrenzte Mitglieder und ein individueller Workspace-Benutzername für Teams, die wachsen möchten.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Unbegrenzte Mitglieder und ein individueller Workspace-Benutzername für Teams, die wachsen möchten."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Auf Pro upgraden"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Auf Pro upgraden (29 $/Monat)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Workspace erfolgreich erstellt. Sie können später in den Einstellungen upgraden."
|
||||
"translation": "Workspace erfolgreich erstellt. Sie können später in den Einstellungen upgraden.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "workspace-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Sie sind dabei, Ihr Passwort zu ändern."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Sie können diese später jederzeit in den Einstellungen ändern.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Sie können diese später jederzeit in den Einstellungen ändern."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Ihr Konto wurde gelöscht."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Ihr Avatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Ihr Avatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "Ihrem Abmelde-Link fehlt ein Token. Bitte öffnen Sie die neueste E-Mail und versuchen Sie es erneut."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Ihr Workspace",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Ihr Workspace"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "Ihre Workspace-Beschreibung",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "Ihre Workspace-Beschreibung"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "Ihr Workspace-Slug wurde aktualisiert."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "ihr-workspace",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "ihr-workspace"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -123,7 +123,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
556
|
||||
557
|
||||
]
|
||||
],
|
||||
"translation": "{0} not found"
|
||||
@@ -939,7 +939,6 @@
|
||||
"translation": "An unexpected error occurred. Please try again later."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Annual",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -948,7 +947,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
63
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Annual"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -1275,7 +1275,6 @@
|
||||
"translation": "Awaiting Customer"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Back",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -1284,7 +1283,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
275
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Back"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -1359,7 +1359,6 @@
|
||||
"translation": "Best for small and growing teams that need collaboration"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Best for small teams who want to collaborate and move faster together.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -1368,7 +1367,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
86
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Best for small teams who want to collaborate and move faster together."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -1457,7 +1457,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
529
|
||||
530
|
||||
],
|
||||
[
|
||||
"src/views/card/index.tsx",
|
||||
@@ -1477,11 +1477,11 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
350
|
||||
314
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
83
|
||||
85
|
||||
]
|
||||
],
|
||||
"translation": "Board analytics"
|
||||
@@ -2157,7 +2157,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
106
|
||||
108
|
||||
]
|
||||
],
|
||||
"translation": "Cancel"
|
||||
@@ -2221,7 +2221,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
307
|
||||
308
|
||||
],
|
||||
[
|
||||
"src/views/card/components/Dropdown.tsx",
|
||||
@@ -2359,7 +2359,6 @@
|
||||
"translation": "Checklists"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Choose a plan",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -2368,7 +2367,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
122
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Choose a plan"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -2505,7 +2505,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
353
|
||||
317
|
||||
],
|
||||
[
|
||||
"src/views/home/components/Features.tsx",
|
||||
@@ -2513,7 +2513,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
86
|
||||
88
|
||||
]
|
||||
],
|
||||
"translation": "Coming soon"
|
||||
@@ -2791,7 +2791,6 @@
|
||||
"translation": "Content Creation"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Continue",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -2804,7 +2803,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
291
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Continue"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -3105,11 +3105,11 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
91
|
||||
92
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
670
|
||||
671
|
||||
]
|
||||
],
|
||||
"translation": "Create new list"
|
||||
@@ -3145,7 +3145,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
388
|
||||
352
|
||||
],
|
||||
[
|
||||
"src/components/WorkspaceMenu.tsx",
|
||||
@@ -3293,7 +3293,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
319
|
||||
283
|
||||
]
|
||||
],
|
||||
"translation": "Custom URLs require upgrading to a Pro plan"
|
||||
@@ -3315,7 +3315,6 @@
|
||||
"translation": "Custom username"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Custom usernames require upgrading to a Pro plan",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -3324,7 +3323,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
220
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Custom usernames require upgrading to a Pro plan"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
@@ -3333,11 +3333,11 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
343
|
||||
307
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
76
|
||||
78
|
||||
]
|
||||
],
|
||||
"translation": "Custom workspace URL"
|
||||
@@ -4183,7 +4183,6 @@
|
||||
"translation": "End of list"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Engineering",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -4192,7 +4191,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
161
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Engineering"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -4529,7 +4529,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
41
|
||||
43
|
||||
]
|
||||
],
|
||||
"translation": "Error upgrading subscription"
|
||||
@@ -4544,7 +4544,8 @@
|
||||
146
|
||||
]
|
||||
],
|
||||
"translation": "Error upgrading to Pro"
|
||||
"translation": "Error upgrading to Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -5129,7 +5130,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
655
|
||||
656
|
||||
]
|
||||
],
|
||||
"translation": "Get started by creating a new list"
|
||||
@@ -5315,7 +5316,6 @@
|
||||
"translation": "Go to templates"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Good for individuals starting out who just need the essentials.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -5324,7 +5324,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
79
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Good for individuals starting out who just need the essentials."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -6033,7 +6034,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
336
|
||||
300
|
||||
],
|
||||
[
|
||||
"src/views/pricing/components/PricingTiers.tsx",
|
||||
@@ -6041,7 +6042,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
69
|
||||
71
|
||||
]
|
||||
],
|
||||
"translation": "Launch offer"
|
||||
@@ -6153,7 +6154,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
305
|
||||
306
|
||||
],
|
||||
[
|
||||
"src/views/card/components/Dropdown.tsx",
|
||||
@@ -6375,7 +6376,6 @@
|
||||
"translation": "marked checklist item <0>{0}</0> as incomplete"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -6384,7 +6384,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
161
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -6756,7 +6757,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
619
|
||||
620
|
||||
]
|
||||
],
|
||||
"translation": "New list"
|
||||
@@ -6828,7 +6829,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
244
|
||||
208
|
||||
]
|
||||
],
|
||||
"translation": "New workspace"
|
||||
@@ -6964,7 +6965,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
651
|
||||
652
|
||||
]
|
||||
],
|
||||
"translation": "No lists"
|
||||
@@ -6976,7 +6977,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
656
|
||||
657
|
||||
]
|
||||
],
|
||||
"translation": "No lists have been created yet"
|
||||
@@ -7466,7 +7467,6 @@
|
||||
"translation": "Personal Project"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -7475,7 +7475,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
125
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Pick a plan to get started. All paid plans include a 14-day free trial."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -7620,7 +7621,7 @@
|
||||
],
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
159
|
||||
123
|
||||
],
|
||||
[
|
||||
"src/views/board/components/BoardDropdown.tsx",
|
||||
@@ -7652,11 +7653,11 @@
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
217
|
||||
218
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
273
|
||||
274
|
||||
],
|
||||
[
|
||||
"src/views/boards/components/ImportBoardsForm.tsx",
|
||||
@@ -7804,7 +7805,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
42
|
||||
44
|
||||
],
|
||||
[
|
||||
"src/views/settings/PermissionsSettings.tsx",
|
||||
@@ -7844,7 +7845,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
314
|
||||
315
|
||||
],
|
||||
[
|
||||
"src/views/card/components/Dropdown.tsx",
|
||||
@@ -7924,7 +7925,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
93
|
||||
95
|
||||
]
|
||||
],
|
||||
"translation": "Priority email support"
|
||||
@@ -8757,7 +8758,6 @@
|
||||
"translation": "set the due date"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Set up your workspace",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -8766,7 +8766,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
179
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Set up your workspace"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -8905,7 +8906,6 @@
|
||||
"translation": "Sign In"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Sign out",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -8918,7 +8918,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
362
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Sign out"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -9061,7 +9062,6 @@
|
||||
"translation": "Software Development"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Solo",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -9070,7 +9070,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
76
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Solo"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -9107,7 +9108,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
111
|
||||
113
|
||||
]
|
||||
],
|
||||
"translation": "Start 14 day free trial"
|
||||
@@ -9183,7 +9184,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
57
|
||||
59
|
||||
]
|
||||
],
|
||||
"translation": "Supercharge your workspace for just $29/month. Here's what you'll get:"
|
||||
@@ -9229,7 +9230,6 @@
|
||||
"translation": "System"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Team",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -9238,7 +9238,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
83
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Team"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -9283,11 +9284,11 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
529
|
||||
530
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
565
|
||||
566
|
||||
]
|
||||
],
|
||||
"translation": "Template"
|
||||
@@ -9661,7 +9662,6 @@
|
||||
"translation": "This member's permissions have been reset to their role defaults."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "This URL has already been taken",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -9670,10 +9670,10 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
73
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "This URL has already been taken"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "This URL is reserved",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -9682,7 +9682,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
75
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "This URL is reserved"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -9727,7 +9728,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
288
|
||||
252
|
||||
]
|
||||
],
|
||||
"translation": "This workspace URL has already been taken"
|
||||
@@ -9739,7 +9740,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
290
|
||||
254
|
||||
]
|
||||
],
|
||||
"translation": "This workspace URL is reserved"
|
||||
@@ -9951,7 +9952,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
312
|
||||
313
|
||||
],
|
||||
[
|
||||
"src/views/card/components/Dropdown.tsx",
|
||||
@@ -10027,7 +10028,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
158
|
||||
122
|
||||
],
|
||||
[
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
@@ -10169,7 +10170,6 @@
|
||||
"translation": "Unable to send feedback"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Unable to start checkout",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -10178,7 +10178,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
149
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Unable to start checkout"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -10223,7 +10224,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
272
|
||||
273
|
||||
],
|
||||
[
|
||||
"src/views/card/index.tsx",
|
||||
@@ -10299,7 +10300,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
216
|
||||
217
|
||||
],
|
||||
[
|
||||
"src/views/card/components/ListSelector.tsx",
|
||||
@@ -10527,7 +10528,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
333
|
||||
297
|
||||
],
|
||||
[
|
||||
"src/views/pricing/components/FeatureComparisonTable.tsx",
|
||||
@@ -10543,13 +10544,12 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
66
|
||||
68
|
||||
]
|
||||
],
|
||||
"translation": "Unlimited members"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -10558,7 +10558,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
94
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Unlimited members and a custom workspace username for teams ready to scale."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -10703,7 +10704,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/settings/components/UpgradeToProConfirmation.tsx",
|
||||
53
|
||||
55
|
||||
],
|
||||
[
|
||||
"src/views/settings/WorkspaceSettings.tsx",
|
||||
@@ -10719,7 +10720,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
373
|
||||
337
|
||||
],
|
||||
[
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
@@ -11199,7 +11200,7 @@
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
529
|
||||
530
|
||||
],
|
||||
[
|
||||
"src/views/boards/index.tsx",
|
||||
@@ -11230,7 +11231,8 @@
|
||||
147
|
||||
]
|
||||
],
|
||||
"translation": "Workspace created successfully. You can upgrade later in settings."
|
||||
"translation": "Workspace created successfully. You can upgrade later in settings.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -11323,7 +11325,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
263
|
||||
227
|
||||
],
|
||||
[
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
@@ -11443,7 +11445,7 @@
|
||||
"origin": [
|
||||
[
|
||||
"src/components/NewWorkspaceForm.tsx",
|
||||
277
|
||||
241
|
||||
]
|
||||
],
|
||||
"translation": "workspace-url"
|
||||
@@ -11501,7 +11503,6 @@
|
||||
"translation": "You are about to change your password."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "You can always change these later in settings.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -11510,7 +11511,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
182
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "You can always change these later in settings."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -11567,11 +11569,11 @@
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
603
|
||||
604
|
||||
],
|
||||
[
|
||||
"src/views/board/index.tsx",
|
||||
661
|
||||
662
|
||||
],
|
||||
[
|
||||
"src/views/boards/components/BoardsList.tsx",
|
||||
@@ -11685,7 +11687,6 @@
|
||||
"translation": "Your account has been deleted."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Your avatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -11694,7 +11695,8 @@
|
||||
"src/views/onboarding/select-plan/index.tsx",
|
||||
229
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Your avatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -11841,7 +11843,6 @@
|
||||
"translation": "Your unsubscribe link is missing a token. Please open the latest email and try again."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Your workspace",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -11850,10 +11851,10 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
322
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Your workspace"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "Your workspace description",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -11862,7 +11863,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
325
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "Your workspace description"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -11913,7 +11915,6 @@
|
||||
"translation": "Your workspace slug has been updated."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "your-workspace",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
@@ -11926,7 +11927,8 @@
|
||||
"src/views/onboarding/workspace-details/index.tsx",
|
||||
198
|
||||
]
|
||||
]
|
||||
],
|
||||
"translation": "your-workspace"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} no encontrado"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Se produjo un error inesperado. Por favor, inténtalo de nuevo más tarde."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Anual",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Anual"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "Esperando al cliente"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Atrás",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Atrás"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Ideal para equipos pequeños y en crecimiento que necesitan colaboración"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Ideal para equipos pequeños que desean colaborar y avanzar más rápido juntos.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Ideal para equipos pequeños que desean colaborar y avanzar más rápido juntos."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Analíticas del tablero"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Cancelar"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Listas de verificación"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Elige un plan",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Elige un plan"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Próximamente"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Creación de contenido"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Continuar",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Continuar"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Crear nueva lista"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Crear espacio de trabajo"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "Las URLs personalizadas requieren actualizar a un plan Pro"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Nombre de usuario personalizado"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Los nombres de usuario personalizados requieren actualizar a un plan Pro",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "Los nombres de usuario personalizados requieren actualizar a un plan Pro"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "URL del espacio de trabajo personalizada"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Fin de la lista"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Ingeniería",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Ingeniería"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Error al actualizar la suscripción"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Error al actualizar a Pro"
|
||||
"translation": "Error al actualizar a Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Comienza creando una nueva lista"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Ir a plantillas"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Ideal para personas que comienzan y solo necesitan lo esencial.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Ideal para personas que comienzan y solo necesitan lo esencial."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Oferta de lanzamiento"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "marcó el elemento de la lista de verificación <0>{0}</0> como incompleto"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Nueva lista"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Nuevo espacio de trabajo"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Sin listas"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Aún no se han creado listas"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Proyecto personal"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Elige un plan para comenzar. Todos los planes de pago incluyen una prueba gratuita de 14 días.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Elige un plan para comenzar. Todos los planes de pago incluyen una prueba gratuita de 14 días."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Por favor, inténtalo de nuevo más tarde o contacta con atención al cliente."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Soporte prioritario por correo electrónico"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "estableció la fecha de vencimiento"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Configura tu espacio de trabajo",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Configura tu espacio de trabajo"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Iniciar sesión"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Cerrar sesión",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Cerrar sesión"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Desarrollo de software"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Individual",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Individual"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "Iniciar prueba gratuita de 14 días"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Potencia tu espacio de trabajo por solo $29/mes. Esto es lo que obtendrás:"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "Sistema"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Equipo",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Equipo"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Plantilla"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "Los permisos de este miembro se han restablecido a los valores predeterminados de su rol."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Esta URL ya está en uso",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Esta URL ya está en uso"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Esta URL está reservada",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Esta URL está reservada"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Esta URL de espacio de trabajo ya está en uso"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Esta URL de espacio de trabajo está reservada"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "No se pudo crear el espacio de trabajo"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "No se pudo enviar el comentario"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "No se pudo iniciar el proceso de pago",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "No se pudo iniciar el proceso de pago"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "No se pudo actualizar la tarjeta"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "No se pudo actualizar la lista"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Miembros ilimitados"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Miembros ilimitados y un nombre de usuario personalizado para el espacio de trabajo para equipos listos para escalar.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Miembros ilimitados y un nombre de usuario personalizado para el espacio de trabajo para equipos listos para escalar."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Actualizar a Pro"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Actualizar a Pro ($29/mes)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Espacio de trabajo creado correctamente. Puedes actualizar más tarde en la configuración."
|
||||
"translation": "Espacio de trabajo creado correctamente. Puedes actualizar más tarde en la configuración.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "workspace-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Estás a punto de cambiar tu contraseña."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Siempre puedes cambiar esto más tarde en la configuración.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Siempre puedes cambiar esto más tarde en la configuración."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Tu cuenta ha sido eliminada."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Tu avatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Tu avatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "Tu enlace de cancelación de suscripción no tiene un token. Por favor, abre el último correo electrónico e inténtalo de nuevo."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Tu espacio de trabajo",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Tu espacio de trabajo"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "Descripción de tu espacio de trabajo",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "Descripción de tu espacio de trabajo"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "El slug de tu espacio de trabajo ha sido actualizado."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "tu-espacio-de-trabajo",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "tu-espacio-de-trabajo"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} introuvable"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Une erreur inattendue s'est produite. Veuillez réessayer ultérieurement."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Annuel",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Annuel"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "En attente du client"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Retour",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Retour"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Idéal pour les petites équipes en croissance qui ont besoin de collaboration"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Idéal pour les petites équipes qui souhaitent collaborer et avancer plus rapidement ensemble.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Idéal pour les petites équipes qui souhaitent collaborer et avancer plus rapidement ensemble."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Analytiques du tableau"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Annuler"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Checklists"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Choisir un forfait",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Choisir un forfait"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Bientôt disponible"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Création de contenu"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Continuer",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Continuer"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Créer une nouvelle liste"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Créer un espace de travail"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "Les URL personnalisées nécessitent une mise à niveau vers un forfait Pro"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Nom d'utilisateur personnalisé"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Les noms d'utilisateur personnalisés nécessitent une mise à niveau vers un forfait Pro",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "Les noms d'utilisateur personnalisés nécessitent une mise à niveau vers un forfait Pro"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "URL d'espace de travail personnalisée"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Fin de la liste"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Ingénierie",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Ingénierie"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Erreur lors de la mise à niveau de l'abonnement"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Erreur lors de la mise à niveau vers Pro"
|
||||
"translation": "Erreur lors de la mise à niveau vers Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Commencez en créant une nouvelle liste"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Aller aux modèles"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Idéal pour les particuliers qui débutent et qui ont simplement besoin de l'essentiel.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Idéal pour les particuliers qui débutent et qui ont simplement besoin de l'essentiel."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Offre de lancement"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "a marqué l'élément de checklist <0>{0}</0> comme incomplet"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Nouvelle liste"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Nouveau workspace"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Aucune liste"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Aucune liste n'a encore été créée"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Projet personnel"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Choisissez un forfait pour commencer. Tous les forfaits payants incluent un essai gratuit de 14 jours.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Choisissez un forfait pour commencer. Tous les forfaits payants incluent un essai gratuit de 14 jours."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Veuillez réessayer plus tard ou contacter le support client."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Support e-mail prioritaire"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "a défini la date d'échéance"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Configurer votre espace de travail",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Configurer votre espace de travail"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Se connecter"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Se déconnecter",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Se déconnecter"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Développement logiciel"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Solo",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Solo"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "Commencer l'essai gratuit de 14 jours"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Boostez votre espace de travail pour seulement 29 $/mois. Voici ce que vous obtiendrez :"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "Système"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Équipe",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Équipe"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Modèle"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "Les permissions de ce membre ont été réinitialisées aux valeurs par défaut de son rôle."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Cette URL est déjà prise",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Cette URL est déjà prise"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Cette URL est réservée",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Cette URL est réservée"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Cette URL d'espace de travail est déjà utilisée"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Cette URL d'espace de travail est réservée"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "Impossible de créer l'espace de travail"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "Impossible d'envoyer le feedback"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Impossible de démarrer le paiement",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "Impossible de démarrer le paiement"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "Impossible de mettre à jour la carte"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "Impossible de mettre à jour la liste"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Membres illimités"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Membres illimités et un nom d'utilisateur d'espace de travail personnalisé pour les équipes prêtes à évoluer.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Membres illimités et un nom d'utilisateur d'espace de travail personnalisé pour les équipes prêtes à évoluer."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Passer à Pro"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Passer à Pro (29 $/mois)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Espace de travail créé avec succès. Vous pourrez effectuer une mise à niveau ultérieurement dans les paramètres."
|
||||
"translation": "Espace de travail créé avec succès. Vous pourrez effectuer une mise à niveau ultérieurement dans les paramètres.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "workspace-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Vous êtes sur le point de modifier votre mot de passe."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Vous pourrez toujours modifier ces paramètres plus tard dans les réglages.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Vous pourrez toujours modifier ces paramètres plus tard dans les réglages."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Votre compte a été supprimé."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Votre avatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Votre avatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "Votre lien de désinscription ne contient pas de jeton. Veuillez ouvrir le dernier e-mail et réessayer."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Votre espace de travail",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Votre espace de travail"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "La description de votre espace de travail",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "La description de votre espace de travail"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "L'identifiant de votre espace de travail a été mis à jour."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "votre-espace-de-travail",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "votre-espace-de-travail"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} non trovato"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Si è verificato un errore imprevisto. Riprova più tardi."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Annuale",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Annuale"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "In attesa del cliente"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Indietro",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Indietro"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Ideale per piccoli team in crescita che necessitano di collaborazione"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Ideale per piccoli team che vogliono collaborare e muoversi più velocemente insieme.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Ideale per piccoli team che vogliono collaborare e muoversi più velocemente insieme."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Analisi della board"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Annulla"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Checklist"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Scegli un piano",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Scegli un piano"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Prossimamente"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Creazione di contenuti"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Continua",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Continua"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Crea nuova lista"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Crea workspace"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "Gli URL personalizzati richiedono l'upgrade a un piano Pro"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Username personalizzato"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "I nomi utente personalizzati richiedono l'aggiornamento a un piano Pro",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "I nomi utente personalizzati richiedono l'aggiornamento a un piano Pro"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "URL workspace personalizzato"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Fine dell'elenco"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Ingegneria",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Ingegneria"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Errore durante l'upgrade dell'abbonamento"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Errore durante l'upgrade a Pro"
|
||||
"translation": "Errore durante l'upgrade a Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Inizia creando una nuova lista"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Vai ai modelli"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Perfetto per chi inizia e ha bisogno solo delle funzionalità essenziali.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Perfetto per chi inizia e ha bisogno solo delle funzionalità essenziali."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Offerta di lancio"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "ha contrassegnato l'elemento della checklist <0>{0}</0> come incompleto"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Nuova lista"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Nuovo workspace"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Nessuna lista"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Nessuna lista è stata ancora creata"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Progetto personale"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Scegli un piano per iniziare. Tutti i piani a pagamento includono una prova gratuita di 14 giorni.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Scegli un piano per iniziare. Tutti i piani a pagamento includono una prova gratuita di 14 giorni."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Riprova più tardi o contatta l'assistenza clienti."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Supporto email prioritario"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "ha impostato la scadenza"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Configura il tuo workspace",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Configura il tuo workspace"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Accedi"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Esci",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Esci"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Sviluppo software"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Solo",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Solo"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "Inizia la prova gratuita di 14 giorni"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Potenzia il tuo workspace per soli $29 al mese. Ecco cosa otterrai:"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "Sistema"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Team",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Team"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Template"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "I permessi di questo membro sono stati ripristinati ai valori predefiniti del suo ruolo."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Questo URL è già in uso",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Questo URL è già in uso"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Questo URL è riservato",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Questo URL è riservato"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Questo URL del workspace è già stato utilizzato"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Questo URL dello workspace è riservato"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "Impossibile creare lo workspace"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "Impossibile inviare il feedback"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Impossibile avviare il checkout",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "Impossibile avviare il checkout"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "Impossibile aggiornare la card"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "Impossibile aggiornare la lista"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Membri illimitati"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Membri illimitati e un nome utente workspace personalizzato per i team pronti a crescere.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Membri illimitati e un nome utente workspace personalizzato per i team pronti a crescere."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Passa a Pro"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Passa a Pro ($29/mese)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Workspace creato con successo. Potrai effettuare l'upgrade più tardi nelle impostazioni."
|
||||
"translation": "Workspace creato con successo. Potrai effettuare l'upgrade più tardi nelle impostazioni.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "workspace-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Stai per modificare la tua password."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Potrai sempre modificarli in seguito nelle impostazioni.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Potrai sempre modificarli in seguito nelle impostazioni."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Il tuo account è stato eliminato."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Il tuo avatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Il tuo avatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "Il tuo link di disiscrizione non contiene un token. Apri l'ultima email e riprova."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Il tuo workspace",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Il tuo workspace"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "La descrizione del tuo workspace",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "La descrizione del tuo workspace"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "Lo slug del tuo workspace è stato aggiornato."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "il-tuo-workspace",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "il-tuo-workspace"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} niet gevonden"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Er is een onverwachte fout opgetreden. Probeer het later opnieuw."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Jaarlijks",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Jaarlijks"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "Wacht op klant"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Terug",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Terug"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Het beste voor kleine en groeiende teams die samenwerking nodig hebben"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Het beste voor kleine teams die willen samenwerken en sneller vooruit willen komen.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Het beste voor kleine teams die willen samenwerken en sneller vooruit willen komen."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Bordanalyse"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Annuleren"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Checklists"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Kies een abonnement",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Kies een abonnement"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Binnenkort beschikbaar"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Content creatie"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Doorgaan",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Doorgaan"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Maak nieuwe lijst"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Maak werkruimte"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "Aangepaste URL's vereisen een upgrade naar een Pro-abonnement"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Aangepaste gebruikersnaam"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Aangepaste gebruikersnamen vereisen een upgrade naar een Pro-abonnement",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "Aangepaste gebruikersnamen vereisen een upgrade naar een Pro-abonnement"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "Aangepaste workspace-URL"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Einde van lijst"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Engineering",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Engineering"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Fout bij upgraden van abonnement"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Fout bij upgraden naar Pro"
|
||||
"translation": "Fout bij upgraden naar Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Ga aan de slag door een nieuwe lijst te maken"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Ga naar sjablonen"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Geschikt voor individuen die net beginnen en alleen de basisbehoeften hebben.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Geschikt voor individuen die net beginnen en alleen de basisbehoeften hebben."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Lanceringaanbieding"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "heeft checklistitem <0>{0}</0> als onvolledig gemarkeerd"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Nieuwe lijst"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Nieuwe werkruimte"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Geen lijsten"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Er zijn nog geen lijsten aangemaakt"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Persoonlijk project"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Kies een abonnement om te beginnen. Alle betaalde abonnementen hebben een gratis proefperiode van 14 dagen.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Kies een abonnement om te beginnen. Alle betaalde abonnementen hebben een gratis proefperiode van 14 dagen."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Probeer het later opnieuw of neem contact op met klantenservice."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Prioritaire e-mailondersteuning"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "heeft de vervaldatum ingesteld"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Stel je werkruimte in",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Stel je werkruimte in"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Inloggen"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Uitloggen",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Uitloggen"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Softwareontwikkeling"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Solo",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Solo"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "Start 14 dagen gratis proefperiode"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Geef je workspace een boost voor slechts €29/maand. Dit krijg je:"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "Systeem"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Team",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Team"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Sjabloon"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "De rechten van dit lid zijn teruggezet naar de standaardinstellingen van hun rol."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Deze URL is al in gebruik",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Deze URL is al in gebruik"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Deze URL is gereserveerd",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Deze URL is gereserveerd"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Deze workspace-URL is al in gebruik"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Deze workspace-URL is gereserveerd"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "Kan workspace niet aanmaken"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "Kan feedback niet verzenden"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Kan afrekenen niet starten",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "Kan afrekenen niet starten"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "Kan kaart niet bijwerken"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "Kan lijst niet bijwerken"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Onbeperkt leden"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Onbeperkt aantal leden en een aangepaste werkruimte-URL voor teams die klaar zijn om te groeien.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Onbeperkt aantal leden en een aangepaste werkruimte-URL voor teams die klaar zijn om te groeien."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Upgrade naar Pro"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Upgrade naar Pro ($29/maand)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Workspace succesvol aangemaakt. Je kunt later upgraden in de instellingen."
|
||||
"translation": "Workspace succesvol aangemaakt. Je kunt later upgraden in de instellingen.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "werkruimte-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Je staat op het punt je wachtwoord te wijzigen."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Je kunt dit later altijd wijzigen in de instellingen.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Je kunt dit later altijd wijzigen in de instellingen."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Je account is verwijderd."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Jouw avatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Jouw avatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "Je afmeldlink mist een token. Open de nieuwste e-mail en probeer het opnieuw."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Jouw werkruimte",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Jouw werkruimte"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "Jouw werkruimtebeschrijving",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "Jouw werkruimtebeschrijving"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "Je werkruimte-slug is bijgewerkt."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "jouw-werkruimte",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "jouw-werkruimte"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} nie znaleziono"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Wystąpił nieoczekiwany błąd. Spróbuj ponownie później."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Rocznie",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Rocznie"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "Oczekiwanie na klienta"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Wstecz",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Wstecz"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Najlepsze dla małych i rozwijających się zespołów wymagających współpracy"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Najlepszy dla małych zespołów, które chcą współpracować i działać szybciej razem.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Najlepszy dla małych zespołów, które chcą współpracować i działać szybciej razem."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Analiza tablicy"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Anuluj"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Checklisty"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Wybierz plan",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Wybierz plan"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Wkrótce dostępne"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Tworzenie treści"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Kontynuuj",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Kontynuuj"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Utwórz nową listę"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Utwórz workspace"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "Własne adresy URL wymagają przejścia na plan Pro"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Niestandardowa nazwa użytkownika"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Niestandardowe nazwy użytkownika wymagają uaktualnienia do planu Pro",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "Niestandardowe nazwy użytkownika wymagają uaktualnienia do planu Pro"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "Niestandardowy adres URL workspace"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Koniec listy"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Inżynieria",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Inżynieria"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Błąd podczas aktualizacji subskrypcji"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Błąd podczas aktualizacji do wersji Pro"
|
||||
"translation": "Błąd podczas aktualizacji do wersji Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Rozpocznij, tworząc nową listę"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Przejdź do szablonów"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Dobry dla osób zaczynających, które potrzebują tylko podstaw.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Dobry dla osób zaczynających, które potrzebują tylko podstaw."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Oferta na start"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "oznaczył(a) element listy kontrolnej <0>{0}</0> jako nieukończony"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Nowa lista"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Nowy workspace"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Brak list"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Nie utworzono jeszcze żadnych list"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Projekt osobisty"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Wybierz plan, aby rozpocząć. Wszystkie płatne plany zawierają 14-dniowy bezpłatny okres próbny.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Wybierz plan, aby rozpocząć. Wszystkie płatne plany zawierają 14-dniowy bezpłatny okres próbny."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Spróbuj ponownie później lub skontaktuj się z obsługą klienta."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Priorytetowe wsparcie e-mailowe"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "ustaw termin"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Skonfiguruj swoją przestrzeń roboczą",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Skonfiguruj swoją przestrzeń roboczą"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Zaloguj się"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Wyloguj się",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Wyloguj się"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Software Development"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Solo",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Solo"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "Rozpocznij 14-dniowy bezpłatny okres próbny"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Ulepsz swoje środowisko pracy za jedyne 29$/miesiąc. Oto co otrzymasz:"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "System"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Zespół",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Zespół"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Szablon"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "Uprawnienia tego członka zostały zresetowane do domyślnych dla jego roli."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Ten adres URL jest już zajęty",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Ten adres URL jest już zajęty"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Ten adres URL jest zarezerwowany",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Ten adres URL jest zarezerwowany"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Ten adres URL workspace’a jest już zajęty"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Ten adres URL workspace jest zarezerwowany"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "Nie można utworzyć workspace"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "Nie można wysłać opinii"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Nie można rozpocząć procesu płatności",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "Nie można rozpocząć procesu płatności"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "Nie można zaktualizować karty"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "Nie można zaktualizować listy"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Nielimitowani członkowie"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Nieograniczona liczba członków i niestandardowa nazwa użytkownika przestrzeni roboczej dla zespołów gotowych do rozwoju.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Nieograniczona liczba członków i niestandardowa nazwa użytkownika przestrzeni roboczej dla zespołów gotowych do rozwoju."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Ulepsz do Pro"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Ulepsz do Pro (29 $/miesiąc)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Przestrzeń robocza została pomyślnie utworzona. Możesz później przejść na wyższy plan w ustawieniach."
|
||||
"translation": "Przestrzeń robocza została pomyślnie utworzona. Możesz później przejść na wyższy plan w ustawieniach.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "workspace-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Zaraz zmienisz swoje hasło."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Zawsze możesz to później zmienić w ustawieniach.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Zawsze możesz to później zmienić w ustawieniach."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Twoje konto zostało usunięte."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Twój awatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Twój awatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "Twój link do wypisania się nie zawiera tokena. Otwórz najnowszy e-mail i spróbuj ponownie."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Twoja przestrzeń robocza",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Twoja przestrzeń robocza"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "Opis Twojej przestrzeni roboczej",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "Opis Twojej przestrzeni roboczej"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "Slug Twojego workspace został zaktualizowany."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "twoja-przestrzen",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "twoja-przestrzen"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} não encontrado"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Ocorreu um erro inesperado. Por favor, tente novamente mais tarde."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Anual",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Anual"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "Aguardando cliente"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Voltar",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Voltar"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Ideal para equipes pequenas e em crescimento que precisam de colaboração"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Ideal para pequenas equipes que desejam colaborar e avançar mais rápido juntas.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Ideal para pequenas equipes que desejam colaborar e avançar mais rápido juntas."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Análise do quadro"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Cancelar"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Checklists"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Escolha um plano",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Escolha um plano"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Em breve"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Criação de conteúdo"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Continuar",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Continuar"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Criar nova lista"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Criar workspace"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "URLs personalizadas exigem upgrade para um plano Pro"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Nome de usuário personalizado"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Nomes de usuário personalizados exigem atualização para um plano Pro",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "Nomes de usuário personalizados exigem atualização para um plano Pro"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "URL do workspace personalizada"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Fim da lista"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Engenharia",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Engenharia"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Erro ao fazer upgrade da assinatura"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Erro ao fazer upgrade para Pro"
|
||||
"translation": "Erro ao fazer upgrade para Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Comece criando uma nova lista"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Ir para modelos"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Bom para indivíduos começando que precisam apenas do essencial.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Bom para indivíduos começando que precisam apenas do essencial."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Oferta de lançamento"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "marcou o item da checklist <0>{0}</0> como incompleto"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Marketing",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Marketing"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Nova lista"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Novo workspace"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Nenhuma lista"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Nenhuma lista foi criada ainda"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Projeto pessoal"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Escolha um plano para começar. Todos os planos pagos incluem 14 dias de teste grátis.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Escolha um plano para começar. Todos os planos pagos incluem 14 dias de teste grátis."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Por favor, tente novamente mais tarde ou entre em contato com o suporte ao cliente."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Suporte prioritário por e-mail"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "definiu a data de vencimento"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Configure seu workspace",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Configure seu workspace"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Entrar"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Sair",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Sair"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Desenvolvimento de software"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Solo",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Solo"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "Iniciar teste grátis de 14 dias"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Turbine seu workspace por apenas $29/mês. Veja o que você vai receber:"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "Sistema"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Equipe",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Equipe"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Modelo"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "As permissões deste membro foram redefinidas para os padrões de sua função."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Esta URL já está em uso",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Esta URL já está em uso"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Esta URL é reservada",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Esta URL é reservada"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Esta URL de workspace já foi utilizada"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Esta URL de workspace está reservada"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "Não foi possível criar workspace"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "Não foi possível enviar o feedback"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Não foi possível iniciar o checkout",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "Não foi possível iniciar o checkout"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "Não foi possível atualizar o cartão"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "Não foi possível atualizar a lista"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Membros ilimitados"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Membros ilimitados e um nome de usuário personalizado para equipes prontas para crescer.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Membros ilimitados e um nome de usuário personalizado para equipes prontas para crescer."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Fazer upgrade para Pro"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Fazer upgrade para Pro ($29/mês)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Workspace criado com sucesso. Você pode fazer upgrade depois nas configurações."
|
||||
"translation": "Workspace criado com sucesso. Você pode fazer upgrade depois nas configurações.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "workspace-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Você está prestes a alterar sua senha."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Você pode alterar isso depois nas configurações.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Você pode alterar isso depois nas configurações."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Sua conta foi excluída."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Seu avatar",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Seu avatar"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "Seu link de cancelamento de inscrição está sem um token. Por favor, abra o e-mail mais recente e tente novamente."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Seu workspace",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Seu workspace"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "Descrição do seu workspace",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "Descrição do seu workspace"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "O slug do seu workspace foi atualizado."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "seu-workspace",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "seu-workspace"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"0": ["isTemplate ? \"Template\" : \"Board\""]
|
||||
},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 556]],
|
||||
"origin": [["src/views/board/index.tsx", 557]],
|
||||
"translation": "{0} не найдено"
|
||||
},
|
||||
"0xWkkH": {
|
||||
@@ -557,11 +557,11 @@
|
||||
"translation": "Произошла непредвиденная ошибка. Пожалуйста, попробуйте позже."
|
||||
},
|
||||
"YkfDoz": {
|
||||
"translation": "Ежегодно",
|
||||
"message": "Annual",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 63]],
|
||||
"translation": "Ежегодно"
|
||||
},
|
||||
"3bqt9U": {
|
||||
"message": "Anyone with this link can join your workspace",
|
||||
@@ -764,11 +764,11 @@
|
||||
"translation": "Ожидание клиента"
|
||||
},
|
||||
"iH8pgl": {
|
||||
"translation": "Назад",
|
||||
"message": "Back",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 275]],
|
||||
"translation": "Назад"
|
||||
},
|
||||
"KNKCTb": {
|
||||
"message": "Backlog",
|
||||
@@ -813,11 +813,11 @@
|
||||
"translation": "Лучше всего подходит для небольших и развивающихся команд, которым нужна совместная работа"
|
||||
},
|
||||
"zt/6cS": {
|
||||
"translation": "Идеально для небольших команд, которые хотят сотрудничать и работать быстрее вместе.",
|
||||
"message": "Best for small teams who want to collaborate and move faster together.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 86]],
|
||||
"translation": "Идеально для небольших команд, которые хотят сотрудничать и работать быстрее вместе."
|
||||
},
|
||||
"qaS+1/": {
|
||||
"message": "Best for teams that want to scale without limits",
|
||||
@@ -870,7 +870,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/card/index.tsx", 317],
|
||||
["src/views/public/board/index.tsx", 125]
|
||||
],
|
||||
@@ -881,8 +881,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 350],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 83]
|
||||
["src/components/NewWorkspaceForm.tsx", 314],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 85]
|
||||
],
|
||||
"translation": "Аналитика доски"
|
||||
},
|
||||
@@ -1280,7 +1280,7 @@
|
||||
["src/views/settings/components/DeleteAccountConfirmation.tsx", 88],
|
||||
["src/views/settings/components/DeleteWebhookConfirmation.tsx", 66],
|
||||
["src/views/settings/components/DeleteWorkspaceConfirmation.tsx", 98],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 106]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 108]
|
||||
],
|
||||
"translation": "Отмена"
|
||||
},
|
||||
@@ -1322,7 +1322,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 307],
|
||||
["src/views/board/index.tsx", 308],
|
||||
["src/views/card/components/Dropdown.tsx", 44],
|
||||
["src/views/public/board/CardModal.tsx", 38]
|
||||
],
|
||||
@@ -1401,11 +1401,11 @@
|
||||
"translation": "Чек-листы"
|
||||
},
|
||||
"zMquA7": {
|
||||
"translation": "Выберите тариф",
|
||||
"message": "Choose a plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 122]],
|
||||
"translation": "Выберите тариф"
|
||||
},
|
||||
"VHS0aJ": {
|
||||
"message": "Clear all custom permissions?",
|
||||
@@ -1497,9 +1497,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 353],
|
||||
["src/components/NewWorkspaceForm.tsx", 317],
|
||||
["src/views/home/components/Features.tsx", 67],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 86]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 88]
|
||||
],
|
||||
"translation": "Скоро появится"
|
||||
},
|
||||
@@ -1665,14 +1665,14 @@
|
||||
"translation": "Создание контента"
|
||||
},
|
||||
"xGVfLh": {
|
||||
"translation": "Продолжить",
|
||||
"message": "Continue",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 212],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 291]
|
||||
]
|
||||
],
|
||||
"translation": "Продолжить"
|
||||
},
|
||||
"J2Wbjt": {
|
||||
"message": "Continue with ",
|
||||
@@ -1857,8 +1857,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 91],
|
||||
["src/views/board/index.tsx", 670]
|
||||
["src/views/board/index.tsx", 92],
|
||||
["src/views/board/index.tsx", 671]
|
||||
],
|
||||
"translation": "Создать новый список"
|
||||
},
|
||||
@@ -1881,7 +1881,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 388],
|
||||
["src/components/NewWorkspaceForm.tsx", 352],
|
||||
["src/components/WorkspaceMenu.tsx", 160]
|
||||
],
|
||||
"translation": "Создать рабочее пространство"
|
||||
@@ -1969,7 +1969,7 @@
|
||||
"message": "Custom URLs require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 319]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 283]],
|
||||
"translation": "Для пользовательских URL требуется переход на тариф Pro"
|
||||
},
|
||||
"7RpHg/": {
|
||||
@@ -1983,19 +1983,19 @@
|
||||
"translation": "Пользовательское имя"
|
||||
},
|
||||
"ZDPJBc": {
|
||||
"translation": "Для пользовательских имен пользователей требуется обновление до тарифа Pro",
|
||||
"message": "Custom usernames require upgrading to a Pro plan",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 220]],
|
||||
"translation": "Для пользовательских имен пользователей требуется обновление до тарифа Pro"
|
||||
},
|
||||
"j9IZZ0": {
|
||||
"message": "Custom workspace URL",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 343],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 76]
|
||||
["src/components/NewWorkspaceForm.tsx", 307],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 78]
|
||||
],
|
||||
"translation": "Пользовательский URL рабочего пространства"
|
||||
},
|
||||
@@ -2480,11 +2480,11 @@
|
||||
"translation": "Конец списка"
|
||||
},
|
||||
"SUXBxp": {
|
||||
"translation": "Разработка",
|
||||
"message": "Engineering",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Разработка"
|
||||
},
|
||||
"0+ewPp": {
|
||||
"message": "Enhancement",
|
||||
@@ -2699,7 +2699,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 41]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 43]
|
||||
],
|
||||
"translation": "Ошибка при обновлении подписки"
|
||||
},
|
||||
@@ -2708,7 +2708,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 146]],
|
||||
"translation": "Ошибка при переходе на Pro"
|
||||
"translation": "Ошибка при переходе на Pro",
|
||||
"obsolete": true
|
||||
},
|
||||
"CYWHT+": {
|
||||
"message": "Error uploading profile image",
|
||||
@@ -3044,7 +3045,7 @@
|
||||
"message": "Get started by creating a new list",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 655]],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"translation": "Начните с создания нового списка"
|
||||
},
|
||||
"oW13KZ": {
|
||||
@@ -3155,11 +3156,11 @@
|
||||
"translation": "Перейти к шаблонам"
|
||||
},
|
||||
"SUvm1Y": {
|
||||
"translation": "Подходит для начинающих пользователей, которым нужны только базовые функции.",
|
||||
"message": "Good for individuals starting out who just need the essentials.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 79]],
|
||||
"translation": "Подходит для начинающих пользователей, которым нужны только базовые функции."
|
||||
},
|
||||
"cdyS7J": {
|
||||
"message": "Google SSO",
|
||||
@@ -3585,9 +3586,9 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 336],
|
||||
["src/components/NewWorkspaceForm.tsx", 300],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 159],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 69]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 71]
|
||||
],
|
||||
"translation": "Стартовое предложение"
|
||||
},
|
||||
@@ -3655,7 +3656,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 80],
|
||||
["src/views/board/index.tsx", 305],
|
||||
["src/views/board/index.tsx", 306],
|
||||
["src/views/card/components/Dropdown.tsx", 42],
|
||||
["src/views/public/board/CardModal.tsx", 36],
|
||||
["src/views/public/board/index.tsx", 77]
|
||||
@@ -3785,11 +3786,11 @@
|
||||
"translation": "отметил элемент контрольного списка <0>{0}</0> как невыполненный"
|
||||
},
|
||||
"vo2a+a": {
|
||||
"translation": "Маркетинг",
|
||||
"message": "Marketing",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 161]],
|
||||
"translation": "Маркетинг"
|
||||
},
|
||||
"agPptk": {
|
||||
"message": "Medium",
|
||||
@@ -4000,7 +4001,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/components/NewListForm.tsx", 113],
|
||||
["src/views/board/index.tsx", 619]
|
||||
["src/views/board/index.tsx", 620]
|
||||
],
|
||||
"translation": "Новый список"
|
||||
},
|
||||
@@ -4047,7 +4048,7 @@
|
||||
"message": "New workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 244]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 208]],
|
||||
"translation": "Новый рабочий пространство"
|
||||
},
|
||||
"5ACX4z": {
|
||||
@@ -4126,14 +4127,14 @@
|
||||
"message": "No lists",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 651]],
|
||||
"origin": [["src/views/board/index.tsx", 652]],
|
||||
"translation": "Нет списков"
|
||||
},
|
||||
"fvLNDy": {
|
||||
"message": "No lists have been created yet",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/board/index.tsx", 656]],
|
||||
"origin": [["src/views/board/index.tsx", 657]],
|
||||
"translation": "Списки ещё не созданы"
|
||||
},
|
||||
"i30J2U": {
|
||||
@@ -4431,11 +4432,11 @@
|
||||
"translation": "Личный проект"
|
||||
},
|
||||
"Oi+J+N": {
|
||||
"translation": "Выберите тариф, чтобы начать. Все платные тарифы включают 14-дневный бесплатный пробный период.",
|
||||
"message": "Pick a plan to get started. All paid plans include a 14-day free trial.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 125]],
|
||||
"translation": "Выберите тариф, чтобы начать. Все платные тарифы включают 14-дневный бесплатный пробный период."
|
||||
},
|
||||
"Iqh0Uv": {
|
||||
"message": "Planned",
|
||||
@@ -4524,7 +4525,7 @@
|
||||
"origin": [
|
||||
["src/components/DeleteLabelConfirmation.tsx", 26],
|
||||
["src/components/FeedbackModal.tsx", 41],
|
||||
["src/components/NewWorkspaceForm.tsx", 159],
|
||||
["src/components/NewWorkspaceForm.tsx", 123],
|
||||
["src/views/board/components/BoardDropdown.tsx", 65],
|
||||
["src/views/board/components/NewCardForm.tsx", 186],
|
||||
["src/views/board/components/NewListForm.tsx", 79],
|
||||
@@ -4532,8 +4533,8 @@
|
||||
["src/views/board/components/NewTemplateForm.tsx", 77],
|
||||
["src/views/board/components/UpdateBoardSlugForm.tsx", 73],
|
||||
["src/views/board/components/VisibilityButton.tsx", 57],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/board/index.tsx", 218],
|
||||
["src/views/board/index.tsx", 274],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 243],
|
||||
["src/views/boards/components/ImportBoardsForm.tsx", 395],
|
||||
["src/views/card/components/AttachmentThumbnails.tsx", 74],
|
||||
@@ -4570,7 +4571,7 @@
|
||||
["src/views/settings/components/UpdateWorkspaceDescriptionForm.tsx", 64],
|
||||
["src/views/settings/components/UpdateWorkspaceNameForm.tsx", 59],
|
||||
["src/views/settings/components/UpdateWorkspaceUrlForm.tsx", 76],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 42],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 44],
|
||||
["src/views/settings/PermissionsSettings.tsx", 40]
|
||||
],
|
||||
"translation": "Пожалуйста, попробуйте позже или обратитесь в службу поддержки."
|
||||
@@ -4592,7 +4593,7 @@
|
||||
"origin": [
|
||||
["src/views/board/components/CardContextDuplicateModal.tsx", 76],
|
||||
["src/views/board/components/CardContextMoveListModal.tsx", 42],
|
||||
["src/views/board/index.tsx", 314],
|
||||
["src/views/board/index.tsx", 315],
|
||||
["src/views/card/components/Dropdown.tsx", 51],
|
||||
["src/views/public/board/CardModal.tsx", 45],
|
||||
["src/views/public/board/index.tsx", 86]
|
||||
@@ -4630,7 +4631,7 @@
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 275],
|
||||
["src/views/pricing/components/Pricing.tsx", 56],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 61],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 93]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 95]
|
||||
],
|
||||
"translation": "Приоритетная поддержка по электронной почте"
|
||||
},
|
||||
@@ -5125,11 +5126,11 @@
|
||||
"translation": "установить срок"
|
||||
},
|
||||
"JjEJSy": {
|
||||
"translation": "Настройте ваше рабочее пространство",
|
||||
"message": "Set up your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 179]],
|
||||
"translation": "Настройте ваше рабочее пространство"
|
||||
},
|
||||
"Tz0i8g": {
|
||||
"message": "Settings",
|
||||
@@ -5212,14 +5213,14 @@
|
||||
"translation": "Войти"
|
||||
},
|
||||
"fcWrnU": {
|
||||
"translation": "Выйти",
|
||||
"message": "Sign out",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/select-plan/index.tsx", 284],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 362]
|
||||
]
|
||||
],
|
||||
"translation": "Выйти"
|
||||
},
|
||||
"mErq7F": {
|
||||
"message": "Sign Up",
|
||||
@@ -5307,11 +5308,11 @@
|
||||
"translation": "Разработка ПО"
|
||||
},
|
||||
"6sKjjx": {
|
||||
"translation": "Индивидуальный",
|
||||
"message": "Solo",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 76]],
|
||||
"translation": "Индивидуальный"
|
||||
},
|
||||
"vnS6Rf": {
|
||||
"message": "SSO",
|
||||
@@ -5335,7 +5336,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/members/components/InviteMemberForm.tsx", 359],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 111]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 113]
|
||||
],
|
||||
"translation": "Начните 14-дневный бесплатный пробный период"
|
||||
},
|
||||
@@ -5384,7 +5385,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 57]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 59]
|
||||
],
|
||||
"translation": "Улучшите свой workspace всего за $29 в месяц. Вы получите:"
|
||||
},
|
||||
@@ -5413,11 +5414,11 @@
|
||||
"translation": "Система"
|
||||
},
|
||||
"KM6m8p": {
|
||||
"translation": "Команда",
|
||||
"message": "Team",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 83]],
|
||||
"translation": "Команда"
|
||||
},
|
||||
"bff61F": {
|
||||
"message": "Team Plan",
|
||||
@@ -5445,8 +5446,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 565]
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/board/index.tsx", 566]
|
||||
],
|
||||
"translation": "Шаблон"
|
||||
},
|
||||
@@ -5672,18 +5673,18 @@
|
||||
"translation": "Права этого участника были сброшены до значений по умолчанию для его роли."
|
||||
},
|
||||
"HQVm6e": {
|
||||
"translation": "Этот URL уже занят",
|
||||
"message": "This URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 73]],
|
||||
"translation": "Этот URL уже занят"
|
||||
},
|
||||
"gKmoow": {
|
||||
"translation": "Этот URL зарезервирован",
|
||||
"message": "This URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 75]],
|
||||
"translation": "Этот URL зарезервирован"
|
||||
},
|
||||
"OAYToL": {
|
||||
"message": "This will remove all custom member permissions in this workspace. Members will inherit permissions only from their roles.",
|
||||
@@ -5719,14 +5720,14 @@
|
||||
"message": "This workspace URL has already been taken",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 288]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 252]],
|
||||
"translation": "Этот URL рабочего пространства уже занят"
|
||||
},
|
||||
"bJtM0P": {
|
||||
"message": "This workspace URL is reserved",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 290]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 254]],
|
||||
"translation": "Этот URL рабочей области зарезервирован"
|
||||
},
|
||||
"kp6L3T": {
|
||||
@@ -5856,7 +5857,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 312],
|
||||
["src/views/board/index.tsx", 313],
|
||||
["src/views/card/components/Dropdown.tsx", 49],
|
||||
["src/views/public/board/CardModal.tsx", 43],
|
||||
["src/views/public/board/index.tsx", 84]
|
||||
@@ -5899,7 +5900,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 158],
|
||||
["src/components/NewWorkspaceForm.tsx", 122],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 100]
|
||||
],
|
||||
"translation": "Не удалось создать рабочую область"
|
||||
@@ -5990,11 +5991,11 @@
|
||||
"translation": "Не удалось отправить отзыв"
|
||||
},
|
||||
"Q60WUZ": {
|
||||
"translation": "Не удалось начать оформление заказа",
|
||||
"message": "Unable to start checkout",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 149]],
|
||||
"translation": "Не удалось начать оформление заказа"
|
||||
},
|
||||
"T7Mywq": {
|
||||
"message": "Unable to update board",
|
||||
@@ -6022,7 +6023,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 272],
|
||||
["src/views/board/index.tsx", 273],
|
||||
["src/views/card/index.tsx", 231]
|
||||
],
|
||||
"translation": "Не удалось обновить карточку"
|
||||
@@ -6067,7 +6068,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/board/index.tsx", 216],
|
||||
["src/views/board/index.tsx", 217],
|
||||
["src/views/card/components/ListSelector.tsx", 54]
|
||||
],
|
||||
"translation": "Не удалось обновить список"
|
||||
@@ -6195,20 +6196,20 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 333],
|
||||
["src/components/NewWorkspaceForm.tsx", 297],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 84],
|
||||
["src/views/pricing/components/FeatureComparisonTable.tsx", 85],
|
||||
["src/views/pricing/components/PricingTiers.tsx", 80],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 66]
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 68]
|
||||
],
|
||||
"translation": "Неограниченное количество участников"
|
||||
},
|
||||
"8AwlaR": {
|
||||
"translation": "Неограниченное количество участников и персональное имя рабочего пространства для команд, готовых к масштабированию.",
|
||||
"message": "Unlimited members and a custom workspace username for teams ready to scale.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 94]],
|
||||
"translation": "Неограниченное количество участников и персональное имя рабочего пространства для команд, готовых к масштабированию."
|
||||
},
|
||||
"Ws+3X+": {
|
||||
"message": "Unlimited seats and advanced features for growing teams.",
|
||||
@@ -6290,7 +6291,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SideNavigation.tsx", 240],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 53],
|
||||
["src/views/settings/components/UpgradeToProConfirmation.tsx", 55],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 118]
|
||||
],
|
||||
"translation": "Перейти на Pro"
|
||||
@@ -6300,7 +6301,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 373],
|
||||
["src/components/NewWorkspaceForm.tsx", 337],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 243]
|
||||
],
|
||||
"translation": "Перейти на Pro (29 $/месяц)"
|
||||
@@ -6586,7 +6587,7 @@
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/SettingsLayout.tsx", 47],
|
||||
["src/views/board/index.tsx", 529],
|
||||
["src/views/board/index.tsx", 530],
|
||||
["src/views/boards/index.tsx", 48],
|
||||
["src/views/members/index.tsx", 258],
|
||||
["src/views/public/board/index.tsx", 125],
|
||||
@@ -6599,7 +6600,8 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 147]],
|
||||
"translation": "Рабочее пространство успешно создано. Вы сможете обновить его позже в настройках."
|
||||
"translation": "Рабочее пространство успешно создано. Вы сможете обновить его позже в настройках.",
|
||||
"obsolete": true
|
||||
},
|
||||
"UlhdTP": {
|
||||
"message": "Workspace deleted",
|
||||
@@ -6663,7 +6665,7 @@
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/components/NewWorkspaceForm.tsx", 263],
|
||||
["src/components/NewWorkspaceForm.tsx", 227],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 188],
|
||||
["src/views/settings/WorkspaceSettings.tsx", 63]
|
||||
],
|
||||
@@ -6738,7 +6740,7 @@
|
||||
"message": "workspace-url",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 277]],
|
||||
"origin": [["src/components/NewWorkspaceForm.tsx", 241]],
|
||||
"translation": "workspace-url"
|
||||
},
|
||||
"4kJRen": {
|
||||
@@ -6773,11 +6775,11 @@
|
||||
"translation": "Вы собираетесь изменить свой пароль."
|
||||
},
|
||||
"3WXdoZ": {
|
||||
"translation": "Вы всегда можете изменить это позже в настройках.",
|
||||
"message": "You can always change these later in settings.",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 182]],
|
||||
"translation": "Вы всегда можете изменить это позже в настройках."
|
||||
},
|
||||
"aelko+": {
|
||||
"message": "You can get a custom workspace URL, like <0>kan.bn/kan</0>, by going into your <1>workspace settings</1> and purchasing a pro workspace subscription. All subscriptions help fund the development of the project!",
|
||||
@@ -6808,8 +6810,8 @@
|
||||
["src/views/board/components/List.tsx", 117],
|
||||
["src/views/board/components/UpdateBoardSlugButton.tsx", 58],
|
||||
["src/views/board/components/VisibilityButton.tsx", 72],
|
||||
["src/views/board/index.tsx", 603],
|
||||
["src/views/board/index.tsx", 661],
|
||||
["src/views/board/index.tsx", 604],
|
||||
["src/views/board/index.tsx", 662],
|
||||
["src/views/boards/components/BoardsList.tsx", 71],
|
||||
["src/views/boards/index.tsx", 59],
|
||||
["src/views/boards/index.tsx", 80]
|
||||
@@ -6875,11 +6877,11 @@
|
||||
"translation": "Ваш аккаунт был удалён."
|
||||
},
|
||||
"c4nMcR": {
|
||||
"translation": "Ваш аватар",
|
||||
"message": "Your avatar",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]]
|
||||
"origin": [["src/views/onboarding/select-plan/index.tsx", 229]],
|
||||
"translation": "Ваш аватар"
|
||||
},
|
||||
"evg7+A": {
|
||||
"message": "Your boards have been imported.",
|
||||
@@ -6968,18 +6970,18 @@
|
||||
"translation": "В вашей ссылке для отписки отсутствует токен. Пожалуйста, откройте последнее письмо и попробуйте снова."
|
||||
},
|
||||
"GRAGsB": {
|
||||
"translation": "Ваше рабочее пространство",
|
||||
"message": "Your workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 322]],
|
||||
"translation": "Ваше рабочее пространство"
|
||||
},
|
||||
"j0o6ml": {
|
||||
"translation": "Описание вашего рабочего пространства",
|
||||
"message": "Your workspace description",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]]
|
||||
"origin": [["src/views/onboarding/workspace-details/index.tsx", 325]],
|
||||
"translation": "Описание вашего рабочего пространства"
|
||||
},
|
||||
"GnSSGm": {
|
||||
"message": "Your workspace description has been updated.",
|
||||
@@ -7018,14 +7020,14 @@
|
||||
"translation": "Слаг вашего рабочего пространства был обновлён."
|
||||
},
|
||||
"OTxjpR": {
|
||||
"translation": "your-workspace",
|
||||
"message": "your-workspace",
|
||||
"placeholders": {},
|
||||
"comments": [],
|
||||
"origin": [
|
||||
["src/views/onboarding/workspace-details/index.tsx", 197],
|
||||
["src/views/onboarding/workspace-details/index.tsx", 198]
|
||||
]
|
||||
],
|
||||
"translation": "your-workspace"
|
||||
},
|
||||
"4DOCMI": {
|
||||
"message": "YouTube URL",
|
||||
|
||||
@@ -20,13 +20,13 @@ const workspaceSlugSchema = z
|
||||
interface CheckoutSessionRequest {
|
||||
successUrl: string;
|
||||
cancelUrl: string;
|
||||
plan: "team" | "pro";
|
||||
billing?: string;
|
||||
workspacePublicId?: string;
|
||||
slug?: string;
|
||||
workspaceName?: string;
|
||||
workspaceDescription?: string;
|
||||
workspaceSlug?: string;
|
||||
plan?: string;
|
||||
}
|
||||
|
||||
export default withRateLimit(
|
||||
@@ -38,117 +38,114 @@ export default withRateLimit(
|
||||
return res.status(405).json({ error: "Method not allowed" });
|
||||
}
|
||||
|
||||
try {
|
||||
const { user, db } = await createNextApiContext(req);
|
||||
const { user, db } = await createNextApiContext(req);
|
||||
|
||||
if (!user) {
|
||||
return res.status(404).json({ error: "User not found" });
|
||||
if (!user) {
|
||||
return res.status(404).json({ error: "User not found" });
|
||||
}
|
||||
|
||||
const body = req.body as CheckoutSessionRequest;
|
||||
const {
|
||||
successUrl,
|
||||
cancelUrl,
|
||||
plan,
|
||||
billing,
|
||||
workspacePublicId,
|
||||
slug,
|
||||
workspaceName,
|
||||
workspaceDescription,
|
||||
workspaceSlug,
|
||||
} = body;
|
||||
|
||||
if (!successUrl || !cancelUrl || !plan) {
|
||||
return res.status(400).json({ error: "Missing required fields" });
|
||||
}
|
||||
|
||||
if (!workspacePublicId && !workspaceName) {
|
||||
return res
|
||||
.status(400)
|
||||
.json({ error: "Must provide workspacePublicId or workspaceName" });
|
||||
}
|
||||
|
||||
const resolvedSlug = slug ?? workspaceSlug;
|
||||
|
||||
if (resolvedSlug) {
|
||||
const slugResult = workspaceSlugSchema.safeParse(resolvedSlug);
|
||||
if (!slugResult.success) {
|
||||
return res.status(400).json({ error: "Invalid workspace slug" });
|
||||
}
|
||||
}
|
||||
|
||||
const body = req.body as CheckoutSessionRequest;
|
||||
const {
|
||||
successUrl,
|
||||
cancelUrl,
|
||||
billing,
|
||||
let resolvedWorkspacePublicId = workspacePublicId;
|
||||
let subscriptionId: number | undefined;
|
||||
|
||||
if (workspacePublicId) {
|
||||
// Existing workspace upgrade
|
||||
const workspace = await workspaceRepo.getByPublicId(
|
||||
db,
|
||||
workspacePublicId,
|
||||
slug,
|
||||
workspaceName,
|
||||
workspaceDescription,
|
||||
workspaceSlug,
|
||||
} = body;
|
||||
);
|
||||
|
||||
if (!successUrl || !cancelUrl) {
|
||||
return res.status(400).json({ error: "Missing required fields" });
|
||||
if (!workspace) {
|
||||
return res.status(404).json({ error: "Workspace not found" });
|
||||
}
|
||||
|
||||
if (!workspacePublicId && !workspaceName) {
|
||||
return res
|
||||
.status(400)
|
||||
.json({ error: "Must provide workspacePublicId or workspaceName" });
|
||||
try {
|
||||
await assertPermission(db, user.id, workspace.id, "workspace:manage");
|
||||
} catch {
|
||||
return res.status(403).json({ error: "Unauthorized" });
|
||||
}
|
||||
|
||||
const resolvedSlug = slug ?? workspaceSlug;
|
||||
|
||||
if (resolvedSlug) {
|
||||
const slugResult = workspaceSlugSchema.safeParse(resolvedSlug);
|
||||
if (!slugResult.success) {
|
||||
return res.status(400).json({ error: "Invalid workspace slug" });
|
||||
}
|
||||
}
|
||||
|
||||
let resolvedWorkspacePublicId = workspacePublicId;
|
||||
let subscriptionId: number | undefined;
|
||||
|
||||
if (workspacePublicId) {
|
||||
// Existing workspace upgrade
|
||||
const workspace = await workspaceRepo.getByPublicId(
|
||||
db,
|
||||
workspacePublicId,
|
||||
);
|
||||
|
||||
if (!workspace) {
|
||||
return res.status(404).json({ error: "Workspace not found" });
|
||||
}
|
||||
|
||||
try {
|
||||
await assertPermission(db, user.id, workspace.id, "workspace:manage");
|
||||
} catch {
|
||||
return res.status(403).json({ error: "Unauthorized" });
|
||||
}
|
||||
|
||||
const subscription = await subscriptionRepo.create(db, {
|
||||
plan: "pro",
|
||||
referenceId: workspacePublicId,
|
||||
userId: user.id,
|
||||
stripeCustomerId: user.stripeCustomerId ?? "",
|
||||
status: "incomplete",
|
||||
});
|
||||
|
||||
subscriptionId = subscription?.id;
|
||||
|
||||
if (!subscriptionId) {
|
||||
return res.status(500).json({ error: "Error creating subscription" });
|
||||
}
|
||||
} else {
|
||||
resolvedWorkspacePublicId = generateUID();
|
||||
}
|
||||
|
||||
const isTeam = body.plan === "team";
|
||||
const annualPriceId = isTeam
|
||||
? (process.env.STRIPE_TEAM_PLAN_ANNUAL_PRICE_ID ??
|
||||
process.env.STRIPE_TEAM_PLAN_MONTHLY_PRICE_ID)
|
||||
: (process.env.STRIPE_PRO_PLAN_ANNUAL_PRICE_ID ??
|
||||
process.env.STRIPE_PRO_PLAN_MONTHLY_PRICE_ID);
|
||||
const monthlyPriceId = isTeam
|
||||
? process.env.STRIPE_TEAM_PLAN_MONTHLY_PRICE_ID
|
||||
: process.env.STRIPE_PRO_PLAN_MONTHLY_PRICE_ID;
|
||||
const priceId = billing === "annual" ? annualPriceId : monthlyPriceId;
|
||||
|
||||
const session = await stripe.checkout.sessions.create({
|
||||
mode: "subscription",
|
||||
payment_method_collection: "always",
|
||||
line_items: [{ price: priceId, quantity: 1 }],
|
||||
subscription_data: { trial_period_days: 14 },
|
||||
success_url: `${env("NEXT_PUBLIC_BASE_URL")}${successUrl}?workspacePublicId=${resolvedWorkspacePublicId}`,
|
||||
cancel_url: `${env("NEXT_PUBLIC_BASE_URL")}${cancelUrl}`,
|
||||
client_reference_id: resolvedWorkspacePublicId,
|
||||
customer: user.stripeCustomerId ?? undefined,
|
||||
metadata: {
|
||||
workspacePublicId: resolvedWorkspacePublicId!,
|
||||
userId: user.id,
|
||||
userEmail: user.email ?? "",
|
||||
...(resolvedSlug && { workspaceSlug: resolvedSlug }),
|
||||
...(workspaceName && { workspaceName }),
|
||||
...(workspaceDescription && { workspaceDescription }),
|
||||
...(subscriptionId && { subscriptionId: String(subscriptionId) }),
|
||||
plan: body.plan ?? "pro",
|
||||
isNewWorkspace: workspaceName ? "true" : "false",
|
||||
},
|
||||
const subscription = await subscriptionRepo.create(db, {
|
||||
plan: plan,
|
||||
referenceId: workspacePublicId,
|
||||
userId: user.id,
|
||||
stripeCustomerId: user.stripeCustomerId ?? "",
|
||||
status: "incomplete",
|
||||
});
|
||||
|
||||
return res.status(200).json({ url: session.url });
|
||||
} catch (error) {
|
||||
return res.status(500).json({ error: "Error creating checkout session" });
|
||||
subscriptionId = subscription?.id;
|
||||
|
||||
if (!subscriptionId) {
|
||||
return res.status(500).json({ error: "Error creating subscription" });
|
||||
}
|
||||
} else {
|
||||
resolvedWorkspacePublicId = generateUID();
|
||||
}
|
||||
|
||||
const isTeam = body.plan === "team";
|
||||
const annualPriceId = isTeam
|
||||
? (process.env.STRIPE_TEAM_PLAN_YEARLY_PRICE_ID ??
|
||||
process.env.STRIPE_TEAM_PLAN_MONTHLY_PRICE_ID)
|
||||
: (process.env.STRIPE_PRO_PLAN_YEARLY_PRICE_ID ??
|
||||
process.env.STRIPE_PRO_PLAN_MONTHLY_PRICE_ID);
|
||||
const monthlyPriceId = isTeam
|
||||
? process.env.STRIPE_TEAM_PLAN_MONTHLY_PRICE_ID
|
||||
: process.env.STRIPE_PRO_PLAN_MONTHLY_PRICE_ID;
|
||||
const priceId = billing === "annual" ? annualPriceId : monthlyPriceId;
|
||||
|
||||
const session = await stripe.checkout.sessions.create({
|
||||
mode: "subscription",
|
||||
payment_method_collection: "always",
|
||||
line_items: [{ price: priceId, quantity: 1 }],
|
||||
subscription_data: { trial_period_days: 14 },
|
||||
success_url: `${env("NEXT_PUBLIC_BASE_URL")}${successUrl}?workspacePublicId=${resolvedWorkspacePublicId}`,
|
||||
cancel_url: `${env("NEXT_PUBLIC_BASE_URL")}${cancelUrl}`,
|
||||
client_reference_id: resolvedWorkspacePublicId,
|
||||
customer: user.stripeCustomerId ?? undefined,
|
||||
metadata: {
|
||||
workspacePublicId: resolvedWorkspacePublicId!,
|
||||
userId: user.id,
|
||||
userEmail: user.email ?? "",
|
||||
...(resolvedSlug && { workspaceSlug: resolvedSlug }),
|
||||
...(workspaceName && { workspaceName }),
|
||||
...(workspaceDescription && { workspaceDescription }),
|
||||
...(subscriptionId && { subscriptionId: String(subscriptionId) }),
|
||||
plan: plan,
|
||||
isNewWorkspace: workspaceName ? "true" : "false",
|
||||
},
|
||||
});
|
||||
|
||||
return res.status(200).json({ url: session.url });
|
||||
}),
|
||||
);
|
||||
|
||||
@@ -515,7 +515,7 @@ export function NewCardForm({
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="mt-5 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-5 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<Toggle
|
||||
label={t`Create another`}
|
||||
isChecked={isCreateAnotherEnabled}
|
||||
|
||||
@@ -136,7 +136,7 @@ export function NewListForm({
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-12 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<Toggle
|
||||
label={t`Create another`}
|
||||
isChecked={isCreateAnotherEnabled}
|
||||
|
||||
@@ -184,7 +184,7 @@ const SelectSource = ({
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-12 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div>
|
||||
<Button
|
||||
type="submit"
|
||||
@@ -310,7 +310,7 @@ const ImportGithub: React.FC = () => {
|
||||
<form onSubmit={handleSubmitProjects(onSubmitProjects)}>
|
||||
<div className="h-[105px] overflow-auto px-5">{renderContent()}</div>
|
||||
|
||||
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-12 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<Toggle
|
||||
label={t`Select all`}
|
||||
isChecked={!!isSelectAllEnabled}
|
||||
@@ -459,7 +459,7 @@ const ImportTrello: React.FC = () => {
|
||||
<form onSubmit={handleSubmitBoards(onSubmitBoards)}>
|
||||
<div className="h-[105px] overflow-auto px-5">{renderContent()}</div>
|
||||
|
||||
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-12 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<Toggle
|
||||
label={t`Select all`}
|
||||
isChecked={!!isSelectAllEnabled}
|
||||
|
||||
@@ -148,7 +148,7 @@ export function NewBoardForm({ isTemplate }: { isTemplate?: boolean }) {
|
||||
showTemplates={showTemplates}
|
||||
customTemplates={formattedTemplates ?? []}
|
||||
/>
|
||||
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-12 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
{!isTemplate && (
|
||||
<Toggle
|
||||
label={t`Use template`}
|
||||
|
||||
@@ -341,7 +341,7 @@ export function InviteMemberForm({
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="mt-12 flex items-center justify-end border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<div className="mt-12 flex items-center justify-end space-x-4 border-t border-light-600 px-5 pb-5 pt-5 dark:border-dark-600">
|
||||
<Toggle
|
||||
label={
|
||||
isShareInviteLinkEnabled
|
||||
|
||||
@@ -41,6 +41,7 @@ export default function WorkspaceNameView() {
|
||||
const returnUrl = searchParams.get("returnUrl") ?? "/boards";
|
||||
const { showPopup } = usePopup();
|
||||
const [isProToggle, setIsProToggle] = useState(plan === "pro");
|
||||
const effectivePlan = isProToggle ? "pro" : plan;
|
||||
|
||||
const [name, setName] = useState("");
|
||||
const [slug, setSlug] = useState("");
|
||||
@@ -109,7 +110,7 @@ export default function WorkspaceNameView() {
|
||||
const handleContinue = async () => {
|
||||
if (!name.trim()) return;
|
||||
|
||||
if (plan === "solo") {
|
||||
if (effectivePlan === "solo") {
|
||||
createWorkspace.mutate({
|
||||
name: name.trim(),
|
||||
...(description.trim() && { description: description.trim() }),
|
||||
@@ -128,11 +129,11 @@ export default function WorkspaceNameView() {
|
||||
...(description.trim() && {
|
||||
workspaceDescription: description.trim(),
|
||||
}),
|
||||
...(plan === "pro" && slug ? { workspaceSlug: slug } : {}),
|
||||
cancelUrl: window.location.pathname + window.location.search,
|
||||
...(effectivePlan === "pro" && slug ? { workspaceSlug: slug } : {}),
|
||||
cancelUrl: `${window.location.pathname}?plan=${effectivePlan}&billing=${billing}&returnUrl=${encodeURIComponent(returnUrl)}`,
|
||||
successUrl: "/boards",
|
||||
billing,
|
||||
plan,
|
||||
plan: effectivePlan,
|
||||
}),
|
||||
});
|
||||
const data = await response.json();
|
||||
@@ -268,7 +269,7 @@ export default function WorkspaceNameView() {
|
||||
variant="ghost"
|
||||
onClick={() =>
|
||||
router.replace(
|
||||
`/onboarding/select-plan?plan=${plan}&billing=${billing}&returnUrl=${encodeURIComponent(returnUrl)}`,
|
||||
`/onboarding/select-plan?plan=${effectivePlan}&billing=${billing}&returnUrl=${encodeURIComponent(returnUrl)}`,
|
||||
)
|
||||
}
|
||||
>
|
||||
|
||||
@@ -24,6 +24,8 @@ export function UpgradeToProConfirmation({
|
||||
body: JSON.stringify({
|
||||
...(entityId && { slug: entityId }),
|
||||
workspacePublicId: workspacePublicId,
|
||||
plan: "pro",
|
||||
billing: "monthly",
|
||||
cancelUrl: "/settings",
|
||||
successUrl: "/settings",
|
||||
}),
|
||||
|
||||
@@ -20,8 +20,11 @@ export function withApiLogging(
|
||||
const requestId = randomUUID();
|
||||
const route = req.url?.split("?")[0] ?? "unknown";
|
||||
const input = {
|
||||
...(req.query && Object.keys(req.query).length > 0 && { query: req.query }),
|
||||
...(req.body && typeof req.body === "object" && Object.keys(req.body).length > 0 && { body: req.body }),
|
||||
...(req.query &&
|
||||
Object.keys(req.query).length > 0 && { query: req.query }),
|
||||
...(req.body &&
|
||||
typeof req.body === "object" &&
|
||||
Object.keys(req.body).length > 0 && { body: req.body }),
|
||||
};
|
||||
|
||||
let statusCode = 200;
|
||||
@@ -41,7 +44,16 @@ export function withApiLogging(
|
||||
// unauthenticated or auth unavailable
|
||||
}
|
||||
|
||||
await handler(req, res);
|
||||
let handlerError: unknown;
|
||||
try {
|
||||
await handler(req, res);
|
||||
} catch (err) {
|
||||
handlerError = err;
|
||||
statusCode = 500;
|
||||
if (!res.headersSent) {
|
||||
res.status(500).json({ error: "Internal server error" });
|
||||
}
|
||||
}
|
||||
|
||||
const duration = Date.now() - start;
|
||||
const meta = {
|
||||
@@ -53,6 +65,10 @@ export function withApiLogging(
|
||||
...(isCloud && email && { email }),
|
||||
...(Object.keys(input).length > 0 && { input }),
|
||||
status: statusCode,
|
||||
...(handlerError instanceof Error && {
|
||||
error: handlerError.message,
|
||||
stack: handlerError.stack,
|
||||
}),
|
||||
};
|
||||
|
||||
if (statusCode < 400) {
|
||||
|
||||
Reference in New Issue
Block a user